commit bfdf169ad2e1f5576f93fd3481a1165ba21901a4 Author: lilia Date: Mon Jun 6 19:02:26 2016 -0700 Version 1.0.0 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/.jscsrc b/.jscsrc new file mode 100644 index 0000000..9c02fff --- /dev/null +++ b/.jscsrc @@ -0,0 +1,33 @@ +{ + "disallowMixedSpacesAndTabs": true, + "disallowTrailingWhitespace": true, + "disallowNewlineBeforeBlockStatements": true, + "requireCommaBeforeLineBreak": true, + "requireSemicolons": true, + "requireSpaceBeforeBlockStatements": true, + "disallowSpacesInNamedFunctionExpression": { + "beforeOpeningRoundBrace": true + }, + "requireSpacesInNamedFunctionExpression": { + "beforeOpeningCurlyBrace": true + }, + "requireCurlyBraces": [ + "if", + "else", + "for", + "while", + "do", + "try", + "catch" + ], + "requireSpaceAfterKeywords": [ + "if", + "else", + "for", + "while", + "case", + "try", + "typeof", + "return" + ] +} diff --git a/.jshintrc b/.jshintrc new file mode 100644 index 0000000..41a3f88 --- /dev/null +++ b/.jshintrc @@ -0,0 +1,71 @@ +{ + "maxerr" : 50, + "bitwise" : false, + "camelcase" : false, + "curly" : false, + "eqeqeq" : false, + "forin" : false, + "freeze" : false, + "immed" : false, + "indent" : 4, + "latedef" : false, + "newcap" : false, + "noarg" : false, + "noempty" : false, + "nonbsp" : false, + "nonew" : false, + "plusplus" : false, + "quotmark" : false, + "undef" : false, + "unused" : false, + "strict" : false, + "maxparams" : false, + "maxdepth" : false, + "maxstatements" : false, + "maxcomplexity" : false, + "maxlen" : false, + "asi" : false, + "boss" : false, + "debug" : false, + "eqnull" : false, + "es5" : false, + "esnext" : false, + "moz" : false, + "evil" : false, + "expr" : false, + "funcscope" : false, + "globalstrict" : false, + "iterator" : false, + "lastsemic" : false, + "laxbreak" : false, + "laxcomma" : false, + "loopfunc" : false, + "multistr" : false, + "noyield" : false, + "notypeof" : false, + "proto" : true, + "scripturl" : false, + "shadow" : false, + "sub" : false, + "supernew" : false, + "validthis" : false, + "browser" : false, + "browserify" : false, + "couch" : false, + "devel" : false, + "dojo" : false, + "jasmine" : false, + "jquery" : false, + "mocha" : false, + "mootools" : false, + "node" : false, + "nonstandard" : false, + "prototypejs" : false, + "qunit" : false, + "rhino" : false, + "shelljs" : false, + "worker" : false, + "wsh" : false, + "yui" : false, + "globals" : {} +} \ No newline at end of file diff --git a/Gruntfile.js b/Gruntfile.js new file mode 100644 index 0000000..52d1a94 --- /dev/null +++ b/Gruntfile.js @@ -0,0 +1,223 @@ +var child_process = require('child_process'); +var util = require('util'); + +module.exports = function(grunt) { + 'use strict'; + + grunt.initConfig({ + pkg: grunt.file.readJSON('package.json'), + concat: { + components: { + src: [ + 'node_modules/long/dist/long.js', + 'node_modules/bytebuffer/dist/ByteBufferAB.js', + 'node_modules/protobufjs/dist/protobuf.js' + ], + dest: 'build/components_concat.js', + }, + curve25519: { + src: [ + 'build/curve25519_compiled.js', + 'src/curve25519_wrapper.js', + ], + dest: 'build/curve25519_concat.js' + }, + protos: { + src: [ + 'protos/WhisperTextProtocol.proto' + ], + dest: 'build/protoText.js', + options: { + banner: 'var Internal = Internal || {};\n\nInternal.protoText = function() {\n\tvar protoText = {};\n\n', + footer: '\n\treturn protoText;\n}();', + process: function(src, file) { + var res = "\tprotoText['" + file + "'] = \n"; + var lines = src.match(/[^\r\n]+/g); + for (var i in lines) { + res += "\t\t'" + lines[i] + "\\n' +\n"; + } + return res + "''\t;\n"; + } + } + }, + protos_concat: { + src: [ + 'build/protoText.js', + 'src/protobufs.js', + ], + dest: 'build/protobufs_concat.js' + }, + + worker: { + src: [ + 'build/curve25519_concat.js', + 'src/curve25519_worker.js', + ], + dest: 'dist/libsignal-protocol-worker.js', + options: { + banner: ';(function(){\nvar Internal = {};\nvar libsignal = {};\n', + footer: '\n})();' + } + + }, + libsignalprotocol: { + src: [ + 'build/curve25519_concat.js', + 'src/curve25519_worker_manager.js', + 'build/components_concat.js', + + 'src/Curve.js', + 'src/crypto.js', + 'src/helpers.js', + 'src/KeyHelper.js', + 'build/protobufs_concat.js', + 'src/SessionRecord.js', + 'src/SignalProtocolAddress.js', + 'src/SessionBuilder.js', + 'src/SessionCipher.js', + 'src/SessionLock.js' + ], + dest: 'dist/libsignal-protocol.js', + options: { + banner: ';(function(){\nvar Internal = {};\nwindow.libsignal = {};\n', + footer: '\n})();' + } + + }, + test: { + src: [ + 'node_modules/mocha/mocha.js', + 'node_modules/chai/chai.js', + 'node_modules/jquery/dist/jquery.js', + 'node_modules/blanket/dist/mocha/blanket_mocha.js', + 'test/_test.js' + ], + dest: 'test/test.js', + options: { + banner: 'var Internal = {};\nwindow.libsignal = {};\n' + } + } + }, + compile: { + curve25519_compiled: { + src_files: [ + 'native/ed25519/additions/*.c', + 'native/curve25519-donna.c', + 'native/ed25519/*.c', + 'native/ed25519/sha512/sha2big.c' + ], + methods: [ + 'curve25519_donna', + 'curve25519_sign', + 'curve25519_verify', + 'crypto_sign_ed25519_ref10_ge_scalarmult_base', + 'sph_sha512_init', + 'malloc' + ] + } + }, + + jshint: { + files: [ + 'Gruntfile.js', + 'src/**/*.js' + ], // TODO add 'test/**/*.js' + options: { jshintrc: '.jshintrc' }, + }, + jscs: { + all: { + src: [ + 'Gruntfile.js', + 'src/**/*.js' + ] + } + }, + watch: { + jshint: { + files: ['<%= jshint.files %>', '.jshintrc'], + tasks: ['jshint'] + }, + worker: { + files: ['<%= concat.worker.src %>'], + tasks: ['concat:worker'] + }, + libsignalprotocol: { + files: ['<%= concat.libsignalprotocol.src %>'], + tasks: ['concat:libsignalprotocol'] + }, + protos: { + files: ['<%= concat.protos.src %>'], + tasks: ['concat:protos_concat'] + }, + protos_concat: { + files: ['<%= concat.protos_concat.src %>'], + tasks: ['concat:protos_concat'] + } + }, + + connect: { + server: { + options: { + base: '.', + port: 9998 + } + } + }, + 'saucelabs-mocha': { + all: { + options: { + urls: ['http://127.0.0.1:9998/test/index.html'], + build: process.env.TRAVIS_JOB_ID, + browsers: [{ browserName: 'chrome', version: '38' }, { browserName: 'firefox', version: '34' }], + testname: 'libsignal-protocol tests' + } + } + } + }); + + Object.keys(grunt.config.get('pkg').devDependencies).forEach(function(key) { + if (/^grunt(?!(-cli)?$)/.test(key)) { // ignore grunt and grunt-cli + grunt.loadNpmTasks(key); + } + }); + + grunt.registerMultiTask('compile', 'Compile the C libraries with emscripten.', function() { + var callback = this.async(); + var outfile = 'build/' + this.target + '.js'; + + var exported_functions = this.data.methods.map(function(name) { + return "'_" + name + "'"; + }); + var flags = [ + '-O1', + '-Qunused-arguments', + '-o', outfile, + '-Inative/ed25519/nacl_includes -Inative/ed25519 -Inative/ed25519/sha512', + '-s', "EXPORTED_FUNCTIONS=\"[" + exported_functions.join(',') + "]\""]; + var command = [].concat('emcc', this.data.src_files, flags).join(' '); + grunt.log.writeln('Compiling via emscripten to ' + outfile); + + var exitCode = 0; + grunt.verbose.subhead(command); + grunt.verbose.writeln(util.format('Expecting exit code %d', exitCode)); + + var child = child_process.exec(command); + child.stdout.on('data', function (d) { grunt.log.write(d); }); + child.stderr.on('data', function (d) { grunt.log.error(d); }); + child.on('exit', function(code) { + if (code !== exitCode) { + grunt.log.error(util.format('Exited with code: %d.', code)); + return callback(false); + } + + grunt.verbose.ok(util.format('Exited with code: %d.', code)); + callback(true); + }); + }); + + grunt.registerTask('dev', ['connect', 'watch']); + grunt.registerTask('test', ['jshint', 'jscs', 'connect', 'saucelabs-mocha']); + grunt.registerTask('default', ['concat']); + grunt.registerTask('build', ['compile', 'concat']); + +}; diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..94a0453 --- /dev/null +++ b/LICENSE @@ -0,0 +1,621 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS diff --git a/README.md b/README.md new file mode 100644 index 0000000..ba6b2f5 --- /dev/null +++ b/README.md @@ -0,0 +1,194 @@ +#libsignal-protocol-javascript + +Signal Protocol implementation for the browser based on +[libsignal-protocol-java](https://github.com/WhisperSystems/libsignal-protocol-java). + +``` +/dist # Distributables +/build # Intermediate build files +/src # JS source files +/native # C source files for curve25519 +/protos # Protobuf definitions +/test # Tests +``` + +## Overview +A ratcheting forward secrecy protocol that works in synchronous and +asynchronous messaging environments. + +### PreKeys + +This protocol uses a concept called 'PreKeys'. A PreKey is an ECPublicKey and +an associated unique ID which are stored together by a server. PreKeys can also +be signed. + +At install time, clients generate a single signed PreKey, as well as a large +list of unsigned PreKeys, and transmit all of them to the server. + +### Sessions + +Signal Protocol is session-oriented. Clients establish a "session," which is +then used for all subsequent encrypt/decrypt operations. There is no need to +ever tear down a session once one has been established. + +Sessions are established in one of two ways: + +1. PreKeyBundles. A client that wishes to send a message to a recipient can + establish a session by retrieving a PreKeyBundle for that recipient from the + server. +1. PreKeySignalMessages. A client can receive a PreKeySignalMessage from a + recipient and use it to establish a session. + +### State + +An established session encapsulates a lot of state between two clients. That +state is maintained in durable records which need to be kept for the life of +the session. + +State is kept in the following places: + +* Identity State. Clients will need to maintain the state of their own identity + key pair, as well as identity keys received from other clients. +* PreKey State. Clients will need to maintain the state of their generated + PreKeys. +* Signed PreKey States. Clients will need to maintain the state of their signed + PreKeys. +* Session State. Clients will need to maintain the state of the sessions they + have established. + +## Requirements + +This implementation currently depends on the presence of the following +types/interfaces, which are available in most modern browsers. + +* [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer) +* [TypedArray](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray) +* [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) +* [WebCrypto](https://developer.mozilla.org/en-US/docs/Web/API/Crypto) with support for: + - AES-CBC + - HMAC SHA-256 + +## Usage + +Include dist/libsignal-protocol.js in your webpage. + +### Install time + +At install time, a libsignal client needs to generate its identity keys, +registration id, and prekeys. + +``` +var KeyHelper = libsignal.KeyHelper; + +var registrationId = KeyHelper.generateRegistrationId(); +// Store registrationId somewhere durable and safe. + +KeyHelper.generateIdentityKeyPair().then(function(identityKeyPair) { + // keyPair -> { pubKey: ArrayBuffer, privKey: ArrayBuffer } + // Store identityKeyPair somewhere durable and safe. +}); + +KeyHelper.generatePreKey(keyId).then(function(preKey) { + store.storePreKey(preKey.keyId, preKey.keyPair); +}); + +KeyHelper.generateSignedPreKey(identityKeyPair, keyId).then(function(signedPreKey) { + store.storeSignedPreKey(signedPreKey.keyId, signedPreKey.keyPair); +}); + +// Register preKeys and signedPreKey with the server +``` + +### Building a session + +A libsignal client needs to implement a storage interface that will manage +loading and storing of identity, prekeys, signed prekeys, and session state. +See test/InMemorySignalProtocolStore.js for an example. + +Once this is implemented, building a session is fairly straightforward: + +``` +var store = new MySignalProtocolStore(); +var address = new libsignal.SignalProtocolAddress(recipientId, deviceId); + +// Instantiate a SessionBuilder for a remote recipientId + deviceId tuple. +SessionBuilder sessionBuilder = new libsignal.SessionBuilder(store, address); + +// Process a prekey fetched from the server. Returns a promise that resolves +// once a session is created and saved in the store, or rejects if the +// identityKey differs from a previously seen identity for this address. +var promise = sessionBuilder.processPreKey({ + registrationId: , + identityKey: , + signedPreKey: { + keyId : , + publicKey : , + signature : + }, + preKey: { + keyId : , + publicKey : + } +}); + +promise.then(function onsuccess() { + // encrypt messages +}); + +promise.catch(function onerror(error) { + // handle identity key conflict +}); +``` + +### Encrypting + +Once you have a session established with an address, you can encrypt messages +using SessionCipher. + +``` +var plaintext = "Hello world"; +var sessionCipher = new libsignal.SessionCipher(store, address); +sessionCipher.encrypt(plaintext).then(function(ciphertext) { + // ciphertext -> { type: , body: } + handle(ciphertext.type, ciphertext.body); +}); +``` + +### Decrypting + +Ciphertexts come in two flavors: WhisperMessage and PreKeyWhisperMessage. + +``` +var address = new SignalProtocolAddress(recipientId, deviceId); +var sessionCipher = new SessionCipher(store, address); + +// Decrypt a PreKeyWhisperMessage by first establishing a new session. +// Returns a promise that resolves when the message is decrypted or +// rejects if the identityKey differs from a previously seen identity for this +// address. +sessionCipher.decryptPreKeyWhisperMessage(ciphertext).then(function(plaintext) { + // handle plaintext ArrayBuffer +}).catch(function(error) { + // handle identity key conflict +}); + +// Decrypt a normal message using an existing session +var sessionCipher = new SessionCipher(store, address); +sessionCipher.decryptWhisperMessage(ciphertext).then(function(plaintext) { + // handle plaintext ArrayBuffer +}); +``` + +## Building + +To compile curve25519 from C souce files in /native, install +[emscripten](https://kripken.github.io/emscripten-site/docs/getting_started/downloads.html). + +``` +grunt compile +``` +## License + +Copyright 2015-2016 Open Whisper Systems + +Licensed under the GPLv3: http://www.gnu.org/licenses/gpl-3.0.html diff --git a/build/components_concat.js b/build/components_concat.js new file mode 100644 index 0000000..0a2506a --- /dev/null +++ b/build/components_concat.js @@ -0,0 +1,9747 @@ +/* + Copyright 2013 Daniel Wirtz + Copyright 2009 The Closure Library Authors. All Rights Reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS-IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + */ + +/** + * @license long.js (c) 2013 Daniel Wirtz + * Released under the Apache License, Version 2.0 + * see: https://github.com/dcodeIO/long.js for details + */ +(function(global, factory) { + + /* AMD */ if (typeof define === 'function' && define["amd"]) + define([], factory); + /* CommonJS */ else if (typeof require === 'function' && typeof module === "object" && module && module["exports"]) + module["exports"] = factory(); + /* Global */ else + (global["dcodeIO"] = global["dcodeIO"] || {})["Long"] = factory(); + +})(this, function() { + "use strict"; + + /** + * Constructs a 64 bit two's-complement integer, given its low and high 32 bit values as *signed* integers. + * See the from* functions below for more convenient ways of constructing Longs. + * @exports Long + * @class A Long class for representing a 64 bit two's-complement integer value. + * @param {number} low The low (signed) 32 bits of the long + * @param {number} high The high (signed) 32 bits of the long + * @param {boolean=} unsigned Whether unsigned or not, defaults to `false` for signed + * @constructor + */ + function Long(low, high, unsigned) { + + /** + * The low 32 bits as a signed value. + * @type {number} + * @expose + */ + this.low = low | 0; + + /** + * The high 32 bits as a signed value. + * @type {number} + * @expose + */ + this.high = high | 0; + + /** + * Whether unsigned or not. + * @type {boolean} + * @expose + */ + this.unsigned = !!unsigned; + } + + // The internal representation of a long is the two given signed, 32-bit values. + // We use 32-bit pieces because these are the size of integers on which + // Javascript performs bit-operations. For operations like addition and + // multiplication, we split each number into 16 bit pieces, which can easily be + // multiplied within Javascript's floating-point representation without overflow + // or change in sign. + // + // In the algorithms below, we frequently reduce the negative case to the + // positive case by negating the input(s) and then post-processing the result. + // Note that we must ALWAYS check specially whether those values are MIN_VALUE + // (-2^63) because -MIN_VALUE == MIN_VALUE (since 2^63 cannot be represented as + // a positive number, it overflows back into a negative). Not handling this + // case would often result in infinite recursion. + // + // Common constant values ZERO, ONE, NEG_ONE, etc. are defined below the from* + // methods on which they depend. + + /** + * An indicator used to reliably determine if an object is a Long or not. + * @type {boolean} + * @const + * @expose + * @private + */ + Long.__isLong__; + + Object.defineProperty(Long.prototype, "__isLong__", { + value: true, + enumerable: false, + configurable: false + }); + + /** + * @function + * @param {*} obj Object + * @returns {boolean} + * @inner + */ + function isLong(obj) { + return (obj && obj["__isLong__"]) === true; + } + + /** + * Tests if the specified object is a Long. + * @function + * @param {*} obj Object + * @returns {boolean} + * @expose + */ + Long.isLong = isLong; + + /** + * A cache of the Long representations of small integer values. + * @type {!Object} + * @inner + */ + var INT_CACHE = {}; + + /** + * A cache of the Long representations of small unsigned integer values. + * @type {!Object} + * @inner + */ + var UINT_CACHE = {}; + + /** + * @param {number} value + * @param {boolean=} unsigned + * @returns {!Long} + * @inner + */ + function fromInt(value, unsigned) { + var obj, cachedObj, cache; + if (unsigned) { + value >>>= 0; + if (cache = (0 <= value && value < 256)) { + cachedObj = UINT_CACHE[value]; + if (cachedObj) + return cachedObj; + } + obj = fromBits(value, (value | 0) < 0 ? -1 : 0, true); + if (cache) + UINT_CACHE[value] = obj; + return obj; + } else { + value |= 0; + if (cache = (-128 <= value && value < 128)) { + cachedObj = INT_CACHE[value]; + if (cachedObj) + return cachedObj; + } + obj = fromBits(value, value < 0 ? -1 : 0, false); + if (cache) + INT_CACHE[value] = obj; + return obj; + } + } + + /** + * Returns a Long representing the given 32 bit integer value. + * @function + * @param {number} value The 32 bit integer in question + * @param {boolean=} unsigned Whether unsigned or not, defaults to `false` for signed + * @returns {!Long} The corresponding Long value + * @expose + */ + Long.fromInt = fromInt; + + /** + * @param {number} value + * @param {boolean=} unsigned + * @returns {!Long} + * @inner + */ + function fromNumber(value, unsigned) { + if (isNaN(value) || !isFinite(value)) + return unsigned ? UZERO : ZERO; + if (unsigned) { + if (value < 0) + return UZERO; + if (value >= TWO_PWR_64_DBL) + return MAX_UNSIGNED_VALUE; + } else { + if (value <= -TWO_PWR_63_DBL) + return MIN_VALUE; + if (value + 1 >= TWO_PWR_63_DBL) + return MAX_VALUE; + } + if (value < 0) + return fromNumber(-value, unsigned).neg(); + return fromBits((value % TWO_PWR_32_DBL) | 0, (value / TWO_PWR_32_DBL) | 0, unsigned); + } + + /** + * Returns a Long representing the given value, provided that it is a finite number. Otherwise, zero is returned. + * @function + * @param {number} value The number in question + * @param {boolean=} unsigned Whether unsigned or not, defaults to `false` for signed + * @returns {!Long} The corresponding Long value + * @expose + */ + Long.fromNumber = fromNumber; + + /** + * @param {number} lowBits + * @param {number} highBits + * @param {boolean=} unsigned + * @returns {!Long} + * @inner + */ + function fromBits(lowBits, highBits, unsigned) { + return new Long(lowBits, highBits, unsigned); + } + + /** + * Returns a Long representing the 64 bit integer that comes by concatenating the given low and high bits. Each is + * assumed to use 32 bits. + * @function + * @param {number} lowBits The low 32 bits + * @param {number} highBits The high 32 bits + * @param {boolean=} unsigned Whether unsigned or not, defaults to `false` for signed + * @returns {!Long} The corresponding Long value + * @expose + */ + Long.fromBits = fromBits; + + /** + * @function + * @param {number} base + * @param {number} exponent + * @returns {number} + * @inner + */ + var pow_dbl = Math.pow; // Used 4 times (4*8 to 15+4) + + /** + * @param {string} str + * @param {(boolean|number)=} unsigned + * @param {number=} radix + * @returns {!Long} + * @inner + */ + function fromString(str, unsigned, radix) { + if (str.length === 0) + throw Error('empty string'); + if (str === "NaN" || str === "Infinity" || str === "+Infinity" || str === "-Infinity") + return ZERO; + if (typeof unsigned === 'number') { + // For goog.math.long compatibility + radix = unsigned, + unsigned = false; + } else { + unsigned = !! unsigned; + } + radix = radix || 10; + if (radix < 2 || 36 < radix) + throw RangeError('radix'); + + var p; + if ((p = str.indexOf('-')) > 0) + throw Error('interior hyphen'); + else if (p === 0) { + return fromString(str.substring(1), unsigned, radix).neg(); + } + + // Do several (8) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + var radixToPower = fromNumber(pow_dbl(radix, 8)); + + var result = ZERO; + for (var i = 0; i < str.length; i += 8) { + var size = Math.min(8, str.length - i), + value = parseInt(str.substring(i, i + size), radix); + if (size < 8) { + var power = fromNumber(pow_dbl(radix, size)); + result = result.mul(power).add(fromNumber(value)); + } else { + result = result.mul(radixToPower); + result = result.add(fromNumber(value)); + } + } + result.unsigned = unsigned; + return result; + } + + /** + * Returns a Long representation of the given string, written using the specified radix. + * @function + * @param {string} str The textual representation of the Long + * @param {(boolean|number)=} unsigned Whether unsigned or not, defaults to `false` for signed + * @param {number=} radix The radix in which the text is written (2-36), defaults to 10 + * @returns {!Long} The corresponding Long value + * @expose + */ + Long.fromString = fromString; + + /** + * @function + * @param {!Long|number|string|!{low: number, high: number, unsigned: boolean}} val + * @returns {!Long} + * @inner + */ + function fromValue(val) { + if (val /* is compatible */ instanceof Long) + return val; + if (typeof val === 'number') + return fromNumber(val); + if (typeof val === 'string') + return fromString(val); + // Throws for non-objects, converts non-instanceof Long: + return fromBits(val.low, val.high, val.unsigned); + } + + /** + * Converts the specified value to a Long. + * @function + * @param {!Long|number|string|!{low: number, high: number, unsigned: boolean}} val Value + * @returns {!Long} + * @expose + */ + Long.fromValue = fromValue; + + // NOTE: the compiler should inline these constant values below and then remove these variables, so there should be + // no runtime penalty for these. + + /** + * @type {number} + * @const + * @inner + */ + var TWO_PWR_16_DBL = 1 << 16; + + /** + * @type {number} + * @const + * @inner + */ + var TWO_PWR_24_DBL = 1 << 24; + + /** + * @type {number} + * @const + * @inner + */ + var TWO_PWR_32_DBL = TWO_PWR_16_DBL * TWO_PWR_16_DBL; + + /** + * @type {number} + * @const + * @inner + */ + var TWO_PWR_64_DBL = TWO_PWR_32_DBL * TWO_PWR_32_DBL; + + /** + * @type {number} + * @const + * @inner + */ + var TWO_PWR_63_DBL = TWO_PWR_64_DBL / 2; + + /** + * @type {!Long} + * @const + * @inner + */ + var TWO_PWR_24 = fromInt(TWO_PWR_24_DBL); + + /** + * @type {!Long} + * @inner + */ + var ZERO = fromInt(0); + + /** + * Signed zero. + * @type {!Long} + * @expose + */ + Long.ZERO = ZERO; + + /** + * @type {!Long} + * @inner + */ + var UZERO = fromInt(0, true); + + /** + * Unsigned zero. + * @type {!Long} + * @expose + */ + Long.UZERO = UZERO; + + /** + * @type {!Long} + * @inner + */ + var ONE = fromInt(1); + + /** + * Signed one. + * @type {!Long} + * @expose + */ + Long.ONE = ONE; + + /** + * @type {!Long} + * @inner + */ + var UONE = fromInt(1, true); + + /** + * Unsigned one. + * @type {!Long} + * @expose + */ + Long.UONE = UONE; + + /** + * @type {!Long} + * @inner + */ + var NEG_ONE = fromInt(-1); + + /** + * Signed negative one. + * @type {!Long} + * @expose + */ + Long.NEG_ONE = NEG_ONE; + + /** + * @type {!Long} + * @inner + */ + var MAX_VALUE = fromBits(0xFFFFFFFF|0, 0x7FFFFFFF|0, false); + + /** + * Maximum signed value. + * @type {!Long} + * @expose + */ + Long.MAX_VALUE = MAX_VALUE; + + /** + * @type {!Long} + * @inner + */ + var MAX_UNSIGNED_VALUE = fromBits(0xFFFFFFFF|0, 0xFFFFFFFF|0, true); + + /** + * Maximum unsigned value. + * @type {!Long} + * @expose + */ + Long.MAX_UNSIGNED_VALUE = MAX_UNSIGNED_VALUE; + + /** + * @type {!Long} + * @inner + */ + var MIN_VALUE = fromBits(0, 0x80000000|0, false); + + /** + * Minimum signed value. + * @type {!Long} + * @expose + */ + Long.MIN_VALUE = MIN_VALUE; + + /** + * @alias Long.prototype + * @inner + */ + var LongPrototype = Long.prototype; + + /** + * Converts the Long to a 32 bit integer, assuming it is a 32 bit integer. + * @returns {number} + * @expose + */ + LongPrototype.toInt = function toInt() { + return this.unsigned ? this.low >>> 0 : this.low; + }; + + /** + * Converts the Long to a the nearest floating-point representation of this value (double, 53 bit mantissa). + * @returns {number} + * @expose + */ + LongPrototype.toNumber = function toNumber() { + if (this.unsigned) + return ((this.high >>> 0) * TWO_PWR_32_DBL) + (this.low >>> 0); + return this.high * TWO_PWR_32_DBL + (this.low >>> 0); + }; + + /** + * Converts the Long to a string written in the specified radix. + * @param {number=} radix Radix (2-36), defaults to 10 + * @returns {string} + * @override + * @throws {RangeError} If `radix` is out of range + * @expose + */ + LongPrototype.toString = function toString(radix) { + radix = radix || 10; + if (radix < 2 || 36 < radix) + throw RangeError('radix'); + if (this.isZero()) + return '0'; + if (this.isNegative()) { // Unsigned Longs are never negative + if (this.eq(MIN_VALUE)) { + // We need to change the Long value before it can be negated, so we remove + // the bottom-most digit in this base and then recurse to do the rest. + var radixLong = fromNumber(radix), + div = this.div(radixLong), + rem1 = div.mul(radixLong).sub(this); + return div.toString(radix) + rem1.toInt().toString(radix); + } else + return '-' + this.neg().toString(radix); + } + + // Do several (6) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + var radixToPower = fromNumber(pow_dbl(radix, 6), this.unsigned), + rem = this; + var result = ''; + while (true) { + var remDiv = rem.div(radixToPower), + intval = rem.sub(remDiv.mul(radixToPower)).toInt() >>> 0, + digits = intval.toString(radix); + rem = remDiv; + if (rem.isZero()) + return digits + result; + else { + while (digits.length < 6) + digits = '0' + digits; + result = '' + digits + result; + } + } + }; + + /** + * Gets the high 32 bits as a signed integer. + * @returns {number} Signed high bits + * @expose + */ + LongPrototype.getHighBits = function getHighBits() { + return this.high; + }; + + /** + * Gets the high 32 bits as an unsigned integer. + * @returns {number} Unsigned high bits + * @expose + */ + LongPrototype.getHighBitsUnsigned = function getHighBitsUnsigned() { + return this.high >>> 0; + }; + + /** + * Gets the low 32 bits as a signed integer. + * @returns {number} Signed low bits + * @expose + */ + LongPrototype.getLowBits = function getLowBits() { + return this.low; + }; + + /** + * Gets the low 32 bits as an unsigned integer. + * @returns {number} Unsigned low bits + * @expose + */ + LongPrototype.getLowBitsUnsigned = function getLowBitsUnsigned() { + return this.low >>> 0; + }; + + /** + * Gets the number of bits needed to represent the absolute value of this Long. + * @returns {number} + * @expose + */ + LongPrototype.getNumBitsAbs = function getNumBitsAbs() { + if (this.isNegative()) // Unsigned Longs are never negative + return this.eq(MIN_VALUE) ? 64 : this.neg().getNumBitsAbs(); + var val = this.high != 0 ? this.high : this.low; + for (var bit = 31; bit > 0; bit--) + if ((val & (1 << bit)) != 0) + break; + return this.high != 0 ? bit + 33 : bit + 1; + }; + + /** + * Tests if this Long's value equals zero. + * @returns {boolean} + * @expose + */ + LongPrototype.isZero = function isZero() { + return this.high === 0 && this.low === 0; + }; + + /** + * Tests if this Long's value is negative. + * @returns {boolean} + * @expose + */ + LongPrototype.isNegative = function isNegative() { + return !this.unsigned && this.high < 0; + }; + + /** + * Tests if this Long's value is positive. + * @returns {boolean} + * @expose + */ + LongPrototype.isPositive = function isPositive() { + return this.unsigned || this.high >= 0; + }; + + /** + * Tests if this Long's value is odd. + * @returns {boolean} + * @expose + */ + LongPrototype.isOdd = function isOdd() { + return (this.low & 1) === 1; + }; + + /** + * Tests if this Long's value is even. + * @returns {boolean} + * @expose + */ + LongPrototype.isEven = function isEven() { + return (this.low & 1) === 0; + }; + + /** + * Tests if this Long's value equals the specified's. + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.equals = function equals(other) { + if (!isLong(other)) + other = fromValue(other); + if (this.unsigned !== other.unsigned && (this.high >>> 31) === 1 && (other.high >>> 31) === 1) + return false; + return this.high === other.high && this.low === other.low; + }; + + /** + * Tests if this Long's value equals the specified's. This is an alias of {@link Long#equals}. + * @function + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.eq = LongPrototype.equals; + + /** + * Tests if this Long's value differs from the specified's. + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.notEquals = function notEquals(other) { + return !this.eq(/* validates */ other); + }; + + /** + * Tests if this Long's value differs from the specified's. This is an alias of {@link Long#notEquals}. + * @function + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.neq = LongPrototype.notEquals; + + /** + * Tests if this Long's value is less than the specified's. + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.lessThan = function lessThan(other) { + return this.comp(/* validates */ other) < 0; + }; + + /** + * Tests if this Long's value is less than the specified's. This is an alias of {@link Long#lessThan}. + * @function + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.lt = LongPrototype.lessThan; + + /** + * Tests if this Long's value is less than or equal the specified's. + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.lessThanOrEqual = function lessThanOrEqual(other) { + return this.comp(/* validates */ other) <= 0; + }; + + /** + * Tests if this Long's value is less than or equal the specified's. This is an alias of {@link Long#lessThanOrEqual}. + * @function + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.lte = LongPrototype.lessThanOrEqual; + + /** + * Tests if this Long's value is greater than the specified's. + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.greaterThan = function greaterThan(other) { + return this.comp(/* validates */ other) > 0; + }; + + /** + * Tests if this Long's value is greater than the specified's. This is an alias of {@link Long#greaterThan}. + * @function + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.gt = LongPrototype.greaterThan; + + /** + * Tests if this Long's value is greater than or equal the specified's. + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.greaterThanOrEqual = function greaterThanOrEqual(other) { + return this.comp(/* validates */ other) >= 0; + }; + + /** + * Tests if this Long's value is greater than or equal the specified's. This is an alias of {@link Long#greaterThanOrEqual}. + * @function + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.gte = LongPrototype.greaterThanOrEqual; + + /** + * Compares this Long's value with the specified's. + * @param {!Long|number|string} other Other value + * @returns {number} 0 if they are the same, 1 if the this is greater and -1 + * if the given one is greater + * @expose + */ + LongPrototype.compare = function compare(other) { + if (!isLong(other)) + other = fromValue(other); + if (this.eq(other)) + return 0; + var thisNeg = this.isNegative(), + otherNeg = other.isNegative(); + if (thisNeg && !otherNeg) + return -1; + if (!thisNeg && otherNeg) + return 1; + // At this point the sign bits are the same + if (!this.unsigned) + return this.sub(other).isNegative() ? -1 : 1; + // Both are positive if at least one is unsigned + return (other.high >>> 0) > (this.high >>> 0) || (other.high === this.high && (other.low >>> 0) > (this.low >>> 0)) ? -1 : 1; + }; + + /** + * Compares this Long's value with the specified's. This is an alias of {@link Long#compare}. + * @function + * @param {!Long|number|string} other Other value + * @returns {number} 0 if they are the same, 1 if the this is greater and -1 + * if the given one is greater + * @expose + */ + LongPrototype.comp = LongPrototype.compare; + + /** + * Negates this Long's value. + * @returns {!Long} Negated Long + * @expose + */ + LongPrototype.negate = function negate() { + if (!this.unsigned && this.eq(MIN_VALUE)) + return MIN_VALUE; + return this.not().add(ONE); + }; + + /** + * Negates this Long's value. This is an alias of {@link Long#negate}. + * @function + * @returns {!Long} Negated Long + * @expose + */ + LongPrototype.neg = LongPrototype.negate; + + /** + * Returns the sum of this and the specified Long. + * @param {!Long|number|string} addend Addend + * @returns {!Long} Sum + * @expose + */ + LongPrototype.add = function add(addend) { + if (!isLong(addend)) + addend = fromValue(addend); + + // Divide each number into 4 chunks of 16 bits, and then sum the chunks. + + var a48 = this.high >>> 16; + var a32 = this.high & 0xFFFF; + var a16 = this.low >>> 16; + var a00 = this.low & 0xFFFF; + + var b48 = addend.high >>> 16; + var b32 = addend.high & 0xFFFF; + var b16 = addend.low >>> 16; + var b00 = addend.low & 0xFFFF; + + var c48 = 0, c32 = 0, c16 = 0, c00 = 0; + c00 += a00 + b00; + c16 += c00 >>> 16; + c00 &= 0xFFFF; + c16 += a16 + b16; + c32 += c16 >>> 16; + c16 &= 0xFFFF; + c32 += a32 + b32; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c48 += a48 + b48; + c48 &= 0xFFFF; + return fromBits((c16 << 16) | c00, (c48 << 16) | c32, this.unsigned); + }; + + /** + * Returns the difference of this and the specified Long. + * @param {!Long|number|string} subtrahend Subtrahend + * @returns {!Long} Difference + * @expose + */ + LongPrototype.subtract = function subtract(subtrahend) { + if (!isLong(subtrahend)) + subtrahend = fromValue(subtrahend); + return this.add(subtrahend.neg()); + }; + + /** + * Returns the difference of this and the specified Long. This is an alias of {@link Long#subtract}. + * @function + * @param {!Long|number|string} subtrahend Subtrahend + * @returns {!Long} Difference + * @expose + */ + LongPrototype.sub = LongPrototype.subtract; + + /** + * Returns the product of this and the specified Long. + * @param {!Long|number|string} multiplier Multiplier + * @returns {!Long} Product + * @expose + */ + LongPrototype.multiply = function multiply(multiplier) { + if (this.isZero()) + return ZERO; + if (!isLong(multiplier)) + multiplier = fromValue(multiplier); + if (multiplier.isZero()) + return ZERO; + if (this.eq(MIN_VALUE)) + return multiplier.isOdd() ? MIN_VALUE : ZERO; + if (multiplier.eq(MIN_VALUE)) + return this.isOdd() ? MIN_VALUE : ZERO; + + if (this.isNegative()) { + if (multiplier.isNegative()) + return this.neg().mul(multiplier.neg()); + else + return this.neg().mul(multiplier).neg(); + } else if (multiplier.isNegative()) + return this.mul(multiplier.neg()).neg(); + + // If both longs are small, use float multiplication + if (this.lt(TWO_PWR_24) && multiplier.lt(TWO_PWR_24)) + return fromNumber(this.toNumber() * multiplier.toNumber(), this.unsigned); + + // Divide each long into 4 chunks of 16 bits, and then add up 4x4 products. + // We can skip products that would overflow. + + var a48 = this.high >>> 16; + var a32 = this.high & 0xFFFF; + var a16 = this.low >>> 16; + var a00 = this.low & 0xFFFF; + + var b48 = multiplier.high >>> 16; + var b32 = multiplier.high & 0xFFFF; + var b16 = multiplier.low >>> 16; + var b00 = multiplier.low & 0xFFFF; + + var c48 = 0, c32 = 0, c16 = 0, c00 = 0; + c00 += a00 * b00; + c16 += c00 >>> 16; + c00 &= 0xFFFF; + c16 += a16 * b00; + c32 += c16 >>> 16; + c16 &= 0xFFFF; + c16 += a00 * b16; + c32 += c16 >>> 16; + c16 &= 0xFFFF; + c32 += a32 * b00; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c32 += a16 * b16; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c32 += a00 * b32; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c48 += a48 * b00 + a32 * b16 + a16 * b32 + a00 * b48; + c48 &= 0xFFFF; + return fromBits((c16 << 16) | c00, (c48 << 16) | c32, this.unsigned); + }; + + /** + * Returns the product of this and the specified Long. This is an alias of {@link Long#multiply}. + * @function + * @param {!Long|number|string} multiplier Multiplier + * @returns {!Long} Product + * @expose + */ + LongPrototype.mul = LongPrototype.multiply; + + /** + * Returns this Long divided by the specified. The result is signed if this Long is signed or + * unsigned if this Long is unsigned. + * @param {!Long|number|string} divisor Divisor + * @returns {!Long} Quotient + * @expose + */ + LongPrototype.divide = function divide(divisor) { + if (!isLong(divisor)) + divisor = fromValue(divisor); + if (divisor.isZero()) + throw Error('division by zero'); + if (this.isZero()) + return this.unsigned ? UZERO : ZERO; + var approx, rem, res; + if (!this.unsigned) { + if (this.eq(MIN_VALUE)) { + if (divisor.eq(ONE) || divisor.eq(NEG_ONE)) + return MIN_VALUE; // recall that -MIN_VALUE == MIN_VALUE + else if (divisor.eq(MIN_VALUE)) + return ONE; + else { + // At this point, we have |other| >= 2, so |this/other| < |MIN_VALUE|. + var halfThis = this.shr(1); + approx = halfThis.div(divisor).shl(1); + if (approx.eq(ZERO)) { + return divisor.isNegative() ? ONE : NEG_ONE; + } else { + rem = this.sub(divisor.mul(approx)); + res = approx.add(rem.div(divisor)); + return res; + } + } + } else if (divisor.eq(MIN_VALUE)) + return this.unsigned ? UZERO : ZERO; + if (this.isNegative()) { + if (divisor.isNegative()) + return this.neg().div(divisor.neg()); + return this.neg().div(divisor).neg(); + } else if (divisor.isNegative()) + return this.div(divisor.neg()).neg(); + } else if (!divisor.unsigned) + divisor = divisor.toUnsigned(); + + // The algorithm below has not been made for unsigned longs. It's therefore + // required to take special care of the MSB prior to running it. + if (this.unsigned) { + if (divisor.gt(this)) + return UZERO; + if (divisor.gt(this.shru(1))) // 15 >>> 1 = 7 ; with divisor = 8 ; true + return UONE; + res = UZERO; + } else + res = ZERO; + + // Repeat the following until the remainder is less than other: find a + // floating-point that approximates remainder / other *from below*, add this + // into the result, and subtract it from the remainder. It is critical that + // the approximate value is less than or equal to the real value so that the + // remainder never becomes negative. + rem = this; + while (rem.gte(divisor)) { + // Approximate the result of division. This may be a little greater or + // smaller than the actual value. + approx = Math.max(1, Math.floor(rem.toNumber() / divisor.toNumber())); + + // We will tweak the approximate result by changing it in the 48-th digit or + // the smallest non-fractional digit, whichever is larger. + var log2 = Math.ceil(Math.log(approx) / Math.LN2), + delta = (log2 <= 48) ? 1 : pow_dbl(2, log2 - 48), + + // Decrease the approximation until it is smaller than the remainder. Note + // that if it is too large, the product overflows and is negative. + approxRes = fromNumber(approx), + approxRem = approxRes.mul(divisor); + while (approxRem.isNegative() || approxRem.gt(rem)) { + approx -= delta; + approxRes = fromNumber(approx, this.unsigned); + approxRem = approxRes.mul(divisor); + } + + // We know the answer can't be zero... and actually, zero would cause + // infinite recursion since we would make no progress. + if (approxRes.isZero()) + approxRes = ONE; + + res = res.add(approxRes); + rem = rem.sub(approxRem); + } + return res; + }; + + /** + * Returns this Long divided by the specified. This is an alias of {@link Long#divide}. + * @function + * @param {!Long|number|string} divisor Divisor + * @returns {!Long} Quotient + * @expose + */ + LongPrototype.div = LongPrototype.divide; + + /** + * Returns this Long modulo the specified. + * @param {!Long|number|string} divisor Divisor + * @returns {!Long} Remainder + * @expose + */ + LongPrototype.modulo = function modulo(divisor) { + if (!isLong(divisor)) + divisor = fromValue(divisor); + return this.sub(this.div(divisor).mul(divisor)); + }; + + /** + * Returns this Long modulo the specified. This is an alias of {@link Long#modulo}. + * @function + * @param {!Long|number|string} divisor Divisor + * @returns {!Long} Remainder + * @expose + */ + LongPrototype.mod = LongPrototype.modulo; + + /** + * Returns the bitwise NOT of this Long. + * @returns {!Long} + * @expose + */ + LongPrototype.not = function not() { + return fromBits(~this.low, ~this.high, this.unsigned); + }; + + /** + * Returns the bitwise AND of this Long and the specified. + * @param {!Long|number|string} other Other Long + * @returns {!Long} + * @expose + */ + LongPrototype.and = function and(other) { + if (!isLong(other)) + other = fromValue(other); + return fromBits(this.low & other.low, this.high & other.high, this.unsigned); + }; + + /** + * Returns the bitwise OR of this Long and the specified. + * @param {!Long|number|string} other Other Long + * @returns {!Long} + * @expose + */ + LongPrototype.or = function or(other) { + if (!isLong(other)) + other = fromValue(other); + return fromBits(this.low | other.low, this.high | other.high, this.unsigned); + }; + + /** + * Returns the bitwise XOR of this Long and the given one. + * @param {!Long|number|string} other Other Long + * @returns {!Long} + * @expose + */ + LongPrototype.xor = function xor(other) { + if (!isLong(other)) + other = fromValue(other); + return fromBits(this.low ^ other.low, this.high ^ other.high, this.unsigned); + }; + + /** + * Returns this Long with bits shifted to the left by the given amount. + * @param {number|!Long} numBits Number of bits + * @returns {!Long} Shifted Long + * @expose + */ + LongPrototype.shiftLeft = function shiftLeft(numBits) { + if (isLong(numBits)) + numBits = numBits.toInt(); + if ((numBits &= 63) === 0) + return this; + else if (numBits < 32) + return fromBits(this.low << numBits, (this.high << numBits) | (this.low >>> (32 - numBits)), this.unsigned); + else + return fromBits(0, this.low << (numBits - 32), this.unsigned); + }; + + /** + * Returns this Long with bits shifted to the left by the given amount. This is an alias of {@link Long#shiftLeft}. + * @function + * @param {number|!Long} numBits Number of bits + * @returns {!Long} Shifted Long + * @expose + */ + LongPrototype.shl = LongPrototype.shiftLeft; + + /** + * Returns this Long with bits arithmetically shifted to the right by the given amount. + * @param {number|!Long} numBits Number of bits + * @returns {!Long} Shifted Long + * @expose + */ + LongPrototype.shiftRight = function shiftRight(numBits) { + if (isLong(numBits)) + numBits = numBits.toInt(); + if ((numBits &= 63) === 0) + return this; + else if (numBits < 32) + return fromBits((this.low >>> numBits) | (this.high << (32 - numBits)), this.high >> numBits, this.unsigned); + else + return fromBits(this.high >> (numBits - 32), this.high >= 0 ? 0 : -1, this.unsigned); + }; + + /** + * Returns this Long with bits arithmetically shifted to the right by the given amount. This is an alias of {@link Long#shiftRight}. + * @function + * @param {number|!Long} numBits Number of bits + * @returns {!Long} Shifted Long + * @expose + */ + LongPrototype.shr = LongPrototype.shiftRight; + + /** + * Returns this Long with bits logically shifted to the right by the given amount. + * @param {number|!Long} numBits Number of bits + * @returns {!Long} Shifted Long + * @expose + */ + LongPrototype.shiftRightUnsigned = function shiftRightUnsigned(numBits) { + if (isLong(numBits)) + numBits = numBits.toInt(); + numBits &= 63; + if (numBits === 0) + return this; + else { + var high = this.high; + if (numBits < 32) { + var low = this.low; + return fromBits((low >>> numBits) | (high << (32 - numBits)), high >>> numBits, this.unsigned); + } else if (numBits === 32) + return fromBits(high, 0, this.unsigned); + else + return fromBits(high >>> (numBits - 32), 0, this.unsigned); + } + }; + + /** + * Returns this Long with bits logically shifted to the right by the given amount. This is an alias of {@link Long#shiftRightUnsigned}. + * @function + * @param {number|!Long} numBits Number of bits + * @returns {!Long} Shifted Long + * @expose + */ + LongPrototype.shru = LongPrototype.shiftRightUnsigned; + + /** + * Converts this Long to signed. + * @returns {!Long} Signed long + * @expose + */ + LongPrototype.toSigned = function toSigned() { + if (!this.unsigned) + return this; + return fromBits(this.low, this.high, false); + }; + + /** + * Converts this Long to unsigned. + * @returns {!Long} Unsigned long + * @expose + */ + LongPrototype.toUnsigned = function toUnsigned() { + if (this.unsigned) + return this; + return fromBits(this.low, this.high, true); + }; + + return Long; +}); + +/* + Copyright 2013-2014 Daniel Wirtz + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + */ + +/** + * @license ByteBuffer.js (c) 2013-2014 Daniel Wirtz + * This version of ByteBuffer.js uses an ArrayBuffer as its backing buffer which is accessed through a DataView and is + * compatible with modern browsers. + * Released under the Apache License, Version 2.0 + * see: https://github.com/dcodeIO/ByteBuffer.js for details + */ // +(function(global) { + "use strict"; + + /** + * @param {function(new: Long, number, number, boolean=)=} Long + * @returns {function(new: ByteBuffer, number=, boolean=, boolean=)}} + * @inner + */ + function loadByteBuffer(Long) { + + /** + * Constructs a new ByteBuffer. + * @class The swiss army knife for binary data in JavaScript. + * @exports ByteBuffer + * @constructor + * @param {number=} capacity Initial capacity. Defaults to {@link ByteBuffer.DEFAULT_CAPACITY}. + * @param {boolean=} littleEndian Whether to use little or big endian byte order. Defaults to + * {@link ByteBuffer.DEFAULT_ENDIAN}. + * @param {boolean=} noAssert Whether to skip assertions of offsets and values. Defaults to + * {@link ByteBuffer.DEFAULT_NOASSERT}. + * @expose + */ + var ByteBuffer = function(capacity, littleEndian, noAssert) { + if (typeof capacity === 'undefined') capacity = ByteBuffer.DEFAULT_CAPACITY; + if (typeof littleEndian === 'undefined') littleEndian = ByteBuffer.DEFAULT_ENDIAN; + if (typeof noAssert === 'undefined') noAssert = ByteBuffer.DEFAULT_NOASSERT; + if (!noAssert) { + capacity = capacity | 0; + if (capacity < 0) + throw RangeError("Illegal capacity"); + littleEndian = !!littleEndian; + noAssert = !!noAssert; + } + + /** + * Backing buffer. + * @type {!ArrayBuffer} + * @expose + */ + this.buffer = capacity === 0 ? EMPTY_BUFFER : new ArrayBuffer(capacity); + + /** + * Data view to manipulate the backing buffer. Becomes `null` if the backing buffer has a capacity of `0`. + * @type {?DataView} + * @expose + */ + this.view = capacity === 0 ? null : new DataView(this.buffer); + + /** + * Absolute read/write offset. + * @type {number} + * @expose + * @see ByteBuffer#flip + * @see ByteBuffer#clear + */ + this.offset = 0; + + /** + * Marked offset. + * @type {number} + * @expose + * @see ByteBuffer#mark + * @see ByteBuffer#reset + */ + this.markedOffset = -1; + + /** + * Absolute limit of the contained data. Set to the backing buffer's capacity upon allocation. + * @type {number} + * @expose + * @see ByteBuffer#flip + * @see ByteBuffer#clear + */ + this.limit = capacity; + + /** + * Whether to use little endian byte order, defaults to `false` for big endian. + * @type {boolean} + * @expose + */ + this.littleEndian = typeof littleEndian !== 'undefined' ? !!littleEndian : false; + + /** + * Whether to skip assertions of offsets and values, defaults to `false`. + * @type {boolean} + * @expose + */ + this.noAssert = !!noAssert; + }; + + /** + * ByteBuffer version. + * @type {string} + * @const + * @expose + */ + ByteBuffer.VERSION = "3.5.5"; + + /** + * Little endian constant that can be used instead of its boolean value. Evaluates to `true`. + * @type {boolean} + * @const + * @expose + */ + ByteBuffer.LITTLE_ENDIAN = true; + + /** + * Big endian constant that can be used instead of its boolean value. Evaluates to `false`. + * @type {boolean} + * @const + * @expose + */ + ByteBuffer.BIG_ENDIAN = false; + + /** + * Default initial capacity of `16`. + * @type {number} + * @expose + */ + ByteBuffer.DEFAULT_CAPACITY = 16; + + /** + * Default endianess of `false` for big endian. + * @type {boolean} + * @expose + */ + ByteBuffer.DEFAULT_ENDIAN = ByteBuffer.BIG_ENDIAN; + + /** + * Default no assertions flag of `false`. + * @type {boolean} + * @expose + */ + ByteBuffer.DEFAULT_NOASSERT = false; + + /** + * A `Long` class for representing a 64-bit two's-complement integer value. May be `null` if Long.js has not been loaded + * and int64 support is not available. + * @type {?Long} + * @const + * @see https://github.com/dcodeIO/Long.js + * @expose + */ + ByteBuffer.Long = Long || null; + + /** + * @alias ByteBuffer.prototype + * @inner + */ + var ByteBufferPrototype = ByteBuffer.prototype; + + // helpers + + /** + * @type {!ArrayBuffer} + * @inner + */ + var EMPTY_BUFFER = new ArrayBuffer(0); + + /** + * String.fromCharCode reference for compile-time renaming. + * @type {function(...number):string} + * @inner + */ + var stringFromCharCode = String.fromCharCode; + + /** + * Creates a source function for a string. + * @param {string} s String to read from + * @returns {function():number|null} Source function returning the next char code respectively `null` if there are + * no more characters left. + * @throws {TypeError} If the argument is invalid + * @inner + */ + function stringSource(s) { + var i=0; return function() { + return i < s.length ? s.charCodeAt(i++) : null; + }; + } + + /** + * Creates a destination function for a string. + * @returns {function(number=):undefined|string} Destination function successively called with the next char code. + * Returns the final string when called without arguments. + * @inner + */ + function stringDestination() { + var cs = [], ps = []; return function() { + if (arguments.length === 0) + return ps.join('')+stringFromCharCode.apply(String, cs); + if (cs.length + arguments.length > 1024) + ps.push(stringFromCharCode.apply(String, cs)), + cs.length = 0; + Array.prototype.push.apply(cs, arguments); + }; + } + + /** + * Allocates a new ByteBuffer backed by a buffer of the specified capacity. + * @param {number=} capacity Initial capacity. Defaults to {@link ByteBuffer.DEFAULT_CAPACITY}. + * @param {boolean=} littleEndian Whether to use little or big endian byte order. Defaults to + * {@link ByteBuffer.DEFAULT_ENDIAN}. + * @param {boolean=} noAssert Whether to skip assertions of offsets and values. Defaults to + * {@link ByteBuffer.DEFAULT_NOASSERT}. + * @returns {!ByteBuffer} + * @expose + */ + ByteBuffer.allocate = function(capacity, littleEndian, noAssert) { + return new ByteBuffer(capacity, littleEndian, noAssert); + }; + + /** + * Concatenates multiple ByteBuffers into one. + * @param {!Array.} buffers Buffers to concatenate + * @param {(string|boolean)=} encoding String encoding if `buffers` contains a string ("base64", "hex", "binary", + * defaults to "utf8") + * @param {boolean=} littleEndian Whether to use little or big endian byte order for the resulting ByteBuffer. Defaults + * to {@link ByteBuffer.DEFAULT_ENDIAN}. + * @param {boolean=} noAssert Whether to skip assertions of offsets and values for the resulting ByteBuffer. Defaults to + * {@link ByteBuffer.DEFAULT_NOASSERT}. + * @returns {!ByteBuffer} Concatenated ByteBuffer + * @expose + */ + ByteBuffer.concat = function(buffers, encoding, littleEndian, noAssert) { + if (typeof encoding === 'boolean' || typeof encoding !== 'string') { + noAssert = littleEndian; + littleEndian = encoding; + encoding = undefined; + } + var capacity = 0; + for (var i=0, k=buffers.length, length; i 0) capacity += length; + } + if (capacity === 0) + return new ByteBuffer(0, littleEndian, noAssert); + var bb = new ByteBuffer(capacity, littleEndian, noAssert), + bi; + var view = new Uint8Array(bb.buffer); + i=0; while (i} buffer Anything that can be wrapped + * @param {(string|boolean)=} encoding String encoding if `buffer` is a string ("base64", "hex", "binary", defaults to + * "utf8") + * @param {boolean=} littleEndian Whether to use little or big endian byte order. Defaults to + * {@link ByteBuffer.DEFAULT_ENDIAN}. + * @param {boolean=} noAssert Whether to skip assertions of offsets and values. Defaults to + * {@link ByteBuffer.DEFAULT_NOASSERT}. + * @returns {!ByteBuffer} A ByteBuffer wrapping `buffer` + * @expose + */ + ByteBuffer.wrap = function(buffer, encoding, littleEndian, noAssert) { + if (typeof encoding !== 'string') { + noAssert = littleEndian; + littleEndian = encoding; + encoding = undefined; + } + if (typeof buffer === 'string') { + if (typeof encoding === 'undefined') + encoding = "utf8"; + switch (encoding) { + case "base64": + return ByteBuffer.fromBase64(buffer, littleEndian); + case "hex": + return ByteBuffer.fromHex(buffer, littleEndian); + case "binary": + return ByteBuffer.fromBinary(buffer, littleEndian); + case "utf8": + return ByteBuffer.fromUTF8(buffer, littleEndian); + case "debug": + return ByteBuffer.fromDebug(buffer, littleEndian); + default: + throw Error("Unsupported encoding: "+encoding); + } + } + if (buffer === null || typeof buffer !== 'object') + throw TypeError("Illegal buffer"); + var bb; + if (ByteBuffer.isByteBuffer(buffer)) { + bb = ByteBufferPrototype.clone.call(buffer); + bb.markedOffset = -1; + return bb; + } + if (buffer instanceof Uint8Array) { // Extract ArrayBuffer from Uint8Array + bb = new ByteBuffer(0, littleEndian, noAssert); + if (buffer.length > 0) { // Avoid references to more than one EMPTY_BUFFER + bb.buffer = buffer.buffer; + bb.offset = buffer.byteOffset; + bb.limit = buffer.byteOffset + buffer.length; + bb.view = buffer.length > 0 ? new DataView(buffer.buffer) : null; + } + } else if (buffer instanceof ArrayBuffer) { // Reuse ArrayBuffer + bb = new ByteBuffer(0, littleEndian, noAssert); + if (buffer.byteLength > 0) { + bb.buffer = buffer; + bb.offset = 0; + bb.limit = buffer.byteLength; + bb.view = buffer.byteLength > 0 ? new DataView(buffer) : null; + } + } else if (Object.prototype.toString.call(buffer) === "[object Array]") { // Create from octets + bb = new ByteBuffer(buffer.length, littleEndian, noAssert); + bb.limit = buffer.length; + for (i=0; i>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + offset += 1; + var capacity0 = this.buffer.byteLength; + if (offset > capacity0) + this.resize((capacity0 *= 2) > offset ? capacity0 : offset); + offset -= 1; + this.view.setInt8(offset, value); + if (relative) this.offset += 1; + return this; + }; + + /** + * Writes an 8bit signed integer. This is an alias of {@link ByteBuffer#writeInt8}. + * @function + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and advance {@link ByteBuffer#offset} by `1` if omitted. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.writeByte = ByteBufferPrototype.writeInt8; + + /** + * Reads an 8bit signed integer. + * @param {number=} offset Offset to read from. Will use and advance {@link ByteBuffer#offset} by `1` if omitted. + * @returns {number} Value read + * @expose + */ + ByteBufferPrototype.readInt8 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 1 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+1+") <= "+this.buffer.byteLength); + } + var value = this.view.getInt8(offset); + if (relative) this.offset += 1; + return value; + }; + + /** + * Reads an 8bit signed integer. This is an alias of {@link ByteBuffer#readInt8}. + * @function + * @param {number=} offset Offset to read from. Will use and advance {@link ByteBuffer#offset} by `1` if omitted. + * @returns {number} Value read + * @expose + */ + ByteBufferPrototype.readByte = ByteBufferPrototype.readInt8; + + /** + * Writes an 8bit unsigned integer. + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and advance {@link ByteBuffer#offset} by `1` if omitted. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.writeUint8 = function(value, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof value !== 'number' || value % 1 !== 0) + throw TypeError("Illegal value: "+value+" (not an integer)"); + value >>>= 0; + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + offset += 1; + var capacity1 = this.buffer.byteLength; + if (offset > capacity1) + this.resize((capacity1 *= 2) > offset ? capacity1 : offset); + offset -= 1; + this.view.setUint8(offset, value); + if (relative) this.offset += 1; + return this; + }; + + /** + * Reads an 8bit unsigned integer. + * @param {number=} offset Offset to read from. Will use and advance {@link ByteBuffer#offset} by `1` if omitted. + * @returns {number} Value read + * @expose + */ + ByteBufferPrototype.readUint8 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 1 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+1+") <= "+this.buffer.byteLength); + } + var value = this.view.getUint8(offset); + if (relative) this.offset += 1; + return value; + }; + + // types/ints/int16 + + /** + * Writes a 16bit signed integer. + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and advance {@link ByteBuffer#offset} by `2` if omitted. + * @throws {TypeError} If `offset` or `value` is not a valid number + * @throws {RangeError} If `offset` is out of bounds + * @expose + */ + ByteBufferPrototype.writeInt16 = function(value, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof value !== 'number' || value % 1 !== 0) + throw TypeError("Illegal value: "+value+" (not an integer)"); + value |= 0; + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + offset += 2; + var capacity2 = this.buffer.byteLength; + if (offset > capacity2) + this.resize((capacity2 *= 2) > offset ? capacity2 : offset); + offset -= 2; + this.view.setInt16(offset, value, this.littleEndian); + if (relative) this.offset += 2; + return this; + }; + + /** + * Writes a 16bit signed integer. This is an alias of {@link ByteBuffer#writeInt16}. + * @function + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and advance {@link ByteBuffer#offset} by `2` if omitted. + * @throws {TypeError} If `offset` or `value` is not a valid number + * @throws {RangeError} If `offset` is out of bounds + * @expose + */ + ByteBufferPrototype.writeShort = ByteBufferPrototype.writeInt16; + + /** + * Reads a 16bit signed integer. + * @param {number=} offset Offset to read from. Will use and advance {@link ByteBuffer#offset} by `2` if omitted. + * @returns {number} Value read + * @throws {TypeError} If `offset` is not a valid number + * @throws {RangeError} If `offset` is out of bounds + * @expose + */ + ByteBufferPrototype.readInt16 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 2 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+2+") <= "+this.buffer.byteLength); + } + var value = this.view.getInt16(offset, this.littleEndian); + if (relative) this.offset += 2; + return value; + }; + + /** + * Reads a 16bit signed integer. This is an alias of {@link ByteBuffer#readInt16}. + * @function + * @param {number=} offset Offset to read from. Will use and advance {@link ByteBuffer#offset} by `2` if omitted. + * @returns {number} Value read + * @throws {TypeError} If `offset` is not a valid number + * @throws {RangeError} If `offset` is out of bounds + * @expose + */ + ByteBufferPrototype.readShort = ByteBufferPrototype.readInt16; + + /** + * Writes a 16bit unsigned integer. + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and advance {@link ByteBuffer#offset} by `2` if omitted. + * @throws {TypeError} If `offset` or `value` is not a valid number + * @throws {RangeError} If `offset` is out of bounds + * @expose + */ + ByteBufferPrototype.writeUint16 = function(value, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof value !== 'number' || value % 1 !== 0) + throw TypeError("Illegal value: "+value+" (not an integer)"); + value >>>= 0; + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + offset += 2; + var capacity3 = this.buffer.byteLength; + if (offset > capacity3) + this.resize((capacity3 *= 2) > offset ? capacity3 : offset); + offset -= 2; + this.view.setUint16(offset, value, this.littleEndian); + if (relative) this.offset += 2; + return this; + }; + + /** + * Reads a 16bit unsigned integer. + * @param {number=} offset Offset to read from. Will use and advance {@link ByteBuffer#offset} by `2` if omitted. + * @returns {number} Value read + * @throws {TypeError} If `offset` is not a valid number + * @throws {RangeError} If `offset` is out of bounds + * @expose + */ + ByteBufferPrototype.readUint16 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 2 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+2+") <= "+this.buffer.byteLength); + } + var value = this.view.getUint16(offset, this.littleEndian); + if (relative) this.offset += 2; + return value; + }; + + // types/ints/int32 + + /** + * Writes a 32bit signed integer. + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by `4` if omitted. + * @expose + */ + ByteBufferPrototype.writeInt32 = function(value, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof value !== 'number' || value % 1 !== 0) + throw TypeError("Illegal value: "+value+" (not an integer)"); + value |= 0; + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + offset += 4; + var capacity4 = this.buffer.byteLength; + if (offset > capacity4) + this.resize((capacity4 *= 2) > offset ? capacity4 : offset); + offset -= 4; + this.view.setInt32(offset, value, this.littleEndian); + if (relative) this.offset += 4; + return this; + }; + + /** + * Writes a 32bit signed integer. This is an alias of {@link ByteBuffer#writeInt32}. + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by `4` if omitted. + * @expose + */ + ByteBufferPrototype.writeInt = ByteBufferPrototype.writeInt32; + + /** + * Reads a 32bit signed integer. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by `4` if omitted. + * @returns {number} Value read + * @expose + */ + ByteBufferPrototype.readInt32 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 4 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+4+") <= "+this.buffer.byteLength); + } + var value = this.view.getInt32(offset, this.littleEndian); + if (relative) this.offset += 4; + return value; + }; + + /** + * Reads a 32bit signed integer. This is an alias of {@link ByteBuffer#readInt32}. + * @param {number=} offset Offset to read from. Will use and advance {@link ByteBuffer#offset} by `4` if omitted. + * @returns {number} Value read + * @expose + */ + ByteBufferPrototype.readInt = ByteBufferPrototype.readInt32; + + /** + * Writes a 32bit unsigned integer. + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by `4` if omitted. + * @expose + */ + ByteBufferPrototype.writeUint32 = function(value, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof value !== 'number' || value % 1 !== 0) + throw TypeError("Illegal value: "+value+" (not an integer)"); + value >>>= 0; + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + offset += 4; + var capacity5 = this.buffer.byteLength; + if (offset > capacity5) + this.resize((capacity5 *= 2) > offset ? capacity5 : offset); + offset -= 4; + this.view.setUint32(offset, value, this.littleEndian); + if (relative) this.offset += 4; + return this; + }; + + /** + * Reads a 32bit unsigned integer. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by `4` if omitted. + * @returns {number} Value read + * @expose + */ + ByteBufferPrototype.readUint32 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 4 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+4+") <= "+this.buffer.byteLength); + } + var value = this.view.getUint32(offset, this.littleEndian); + if (relative) this.offset += 4; + return value; + }; + + // types/ints/int64 + + if (Long) { + + /** + * Writes a 64bit signed integer. + * @param {number|!Long} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by `8` if omitted. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.writeInt64 = function(value, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof value === 'number') + value = Long.fromNumber(value); + else if (typeof value === 'string') + value = Long.fromString(value); + else if (!(value && value instanceof Long)) + throw TypeError("Illegal value: "+value+" (not an integer or Long)"); + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + if (typeof value === 'number') + value = Long.fromNumber(value); + else if (typeof value === 'string') + value = Long.fromString(value); + offset += 8; + var capacity6 = this.buffer.byteLength; + if (offset > capacity6) + this.resize((capacity6 *= 2) > offset ? capacity6 : offset); + offset -= 8; + if (this.littleEndian) { + this.view.setInt32(offset , value.low , true); + this.view.setInt32(offset+4, value.high, true); + } else { + this.view.setInt32(offset , value.high, false); + this.view.setInt32(offset+4, value.low , false); + } + if (relative) this.offset += 8; + return this; + }; + + /** + * Writes a 64bit signed integer. This is an alias of {@link ByteBuffer#writeInt64}. + * @param {number|!Long} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by `8` if omitted. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.writeLong = ByteBufferPrototype.writeInt64; + + /** + * Reads a 64bit signed integer. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by `8` if omitted. + * @returns {!Long} + * @expose + */ + ByteBufferPrototype.readInt64 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 8 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+8+") <= "+this.buffer.byteLength); + } + var value = this.littleEndian + ? new Long(this.view.getInt32(offset , true ), this.view.getInt32(offset+4, true ), false) + : new Long(this.view.getInt32(offset+4, false), this.view.getInt32(offset , false), false); + if (relative) this.offset += 8; + return value; + }; + + /** + * Reads a 64bit signed integer. This is an alias of {@link ByteBuffer#readInt64}. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by `8` if omitted. + * @returns {!Long} + * @expose + */ + ByteBufferPrototype.readLong = ByteBufferPrototype.readInt64; + + /** + * Writes a 64bit unsigned integer. + * @param {number|!Long} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by `8` if omitted. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.writeUint64 = function(value, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof value === 'number') + value = Long.fromNumber(value); + else if (typeof value === 'string') + value = Long.fromString(value); + else if (!(value && value instanceof Long)) + throw TypeError("Illegal value: "+value+" (not an integer or Long)"); + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + if (typeof value === 'number') + value = Long.fromNumber(value); + else if (typeof value === 'string') + value = Long.fromString(value); + offset += 8; + var capacity7 = this.buffer.byteLength; + if (offset > capacity7) + this.resize((capacity7 *= 2) > offset ? capacity7 : offset); + offset -= 8; + if (this.littleEndian) { + this.view.setInt32(offset , value.low , true); + this.view.setInt32(offset+4, value.high, true); + } else { + this.view.setInt32(offset , value.high, false); + this.view.setInt32(offset+4, value.low , false); + } + if (relative) this.offset += 8; + return this; + }; + + /** + * Reads a 64bit unsigned integer. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by `8` if omitted. + * @returns {!Long} + * @expose + */ + ByteBufferPrototype.readUint64 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 8 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+8+") <= "+this.buffer.byteLength); + } + var value = this.littleEndian + ? new Long(this.view.getInt32(offset , true ), this.view.getInt32(offset+4, true ), true) + : new Long(this.view.getInt32(offset+4, false), this.view.getInt32(offset , false), true); + if (relative) this.offset += 8; + return value; + }; + + } // Long + + + // types/floats/float32 + + /** + * Writes a 32bit float. + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by `4` if omitted. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.writeFloat32 = function(value, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof value !== 'number') + throw TypeError("Illegal value: "+value+" (not a number)"); + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + offset += 4; + var capacity8 = this.buffer.byteLength; + if (offset > capacity8) + this.resize((capacity8 *= 2) > offset ? capacity8 : offset); + offset -= 4; + this.view.setFloat32(offset, value, this.littleEndian); + if (relative) this.offset += 4; + return this; + }; + + /** + * Writes a 32bit float. This is an alias of {@link ByteBuffer#writeFloat32}. + * @function + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by `4` if omitted. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.writeFloat = ByteBufferPrototype.writeFloat32; + + /** + * Reads a 32bit float. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by `4` if omitted. + * @returns {number} + * @expose + */ + ByteBufferPrototype.readFloat32 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 4 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+4+") <= "+this.buffer.byteLength); + } + var value = this.view.getFloat32(offset, this.littleEndian); + if (relative) this.offset += 4; + return value; + }; + + /** + * Reads a 32bit float. This is an alias of {@link ByteBuffer#readFloat32}. + * @function + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by `4` if omitted. + * @returns {number} + * @expose + */ + ByteBufferPrototype.readFloat = ByteBufferPrototype.readFloat32; + + // types/floats/float64 + + /** + * Writes a 64bit float. + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by `8` if omitted. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.writeFloat64 = function(value, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof value !== 'number') + throw TypeError("Illegal value: "+value+" (not a number)"); + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + offset += 8; + var capacity9 = this.buffer.byteLength; + if (offset > capacity9) + this.resize((capacity9 *= 2) > offset ? capacity9 : offset); + offset -= 8; + this.view.setFloat64(offset, value, this.littleEndian); + if (relative) this.offset += 8; + return this; + }; + + /** + * Writes a 64bit float. This is an alias of {@link ByteBuffer#writeFloat64}. + * @function + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by `8` if omitted. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.writeDouble = ByteBufferPrototype.writeFloat64; + + /** + * Reads a 64bit float. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by `8` if omitted. + * @returns {number} + * @expose + */ + ByteBufferPrototype.readFloat64 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 8 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+8+") <= "+this.buffer.byteLength); + } + var value = this.view.getFloat64(offset, this.littleEndian); + if (relative) this.offset += 8; + return value; + }; + + /** + * Reads a 64bit float. This is an alias of {@link ByteBuffer#readFloat64}. + * @function + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by `8` if omitted. + * @returns {number} + * @expose + */ + ByteBufferPrototype.readDouble = ByteBufferPrototype.readFloat64; + + + // types/varints/varint32 + + /** + * Maximum number of bytes required to store a 32bit base 128 variable-length integer. + * @type {number} + * @const + * @expose + */ + ByteBuffer.MAX_VARINT32_BYTES = 5; + + /** + * Calculates the actual number of bytes required to store a 32bit base 128 variable-length integer. + * @param {number} value Value to encode + * @returns {number} Number of bytes required. Capped to {@link ByteBuffer.MAX_VARINT32_BYTES} + * @expose + */ + ByteBuffer.calculateVarint32 = function(value) { + // ref: src/google/protobuf/io/coded_stream.cc + value = value >>> 0; + if (value < 1 << 7 ) return 1; + else if (value < 1 << 14) return 2; + else if (value < 1 << 21) return 3; + else if (value < 1 << 28) return 4; + else return 5; + }; + + /** + * Zigzag encodes a signed 32bit integer so that it can be effectively used with varint encoding. + * @param {number} n Signed 32bit integer + * @returns {number} Unsigned zigzag encoded 32bit integer + * @expose + */ + ByteBuffer.zigZagEncode32 = function(n) { + return (((n |= 0) << 1) ^ (n >> 31)) >>> 0; // ref: src/google/protobuf/wire_format_lite.h + }; + + /** + * Decodes a zigzag encoded signed 32bit integer. + * @param {number} n Unsigned zigzag encoded 32bit integer + * @returns {number} Signed 32bit integer + * @expose + */ + ByteBuffer.zigZagDecode32 = function(n) { + return ((n >>> 1) ^ -(n & 1)) | 0; // // ref: src/google/protobuf/wire_format_lite.h + }; + + /** + * Writes a 32bit base 128 variable-length integer. + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * written if omitted. + * @returns {!ByteBuffer|number} this if `offset` is omitted, else the actual number of bytes written + * @expose + */ + ByteBufferPrototype.writeVarint32 = function(value, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof value !== 'number' || value % 1 !== 0) + throw TypeError("Illegal value: "+value+" (not an integer)"); + value |= 0; + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + var size = ByteBuffer.calculateVarint32(value), + b; + offset += size; + var capacity10 = this.buffer.byteLength; + if (offset > capacity10) + this.resize((capacity10 *= 2) > offset ? capacity10 : offset); + offset -= size; + // ref: http://code.google.com/searchframe#WTeibokF6gE/trunk/src/google/protobuf/io/coded_stream.cc + this.view.setUint8(offset, b = value | 0x80); + value >>>= 0; + if (value >= 1 << 7) { + b = (value >> 7) | 0x80; + this.view.setUint8(offset+1, b); + if (value >= 1 << 14) { + b = (value >> 14) | 0x80; + this.view.setUint8(offset+2, b); + if (value >= 1 << 21) { + b = (value >> 21) | 0x80; + this.view.setUint8(offset+3, b); + if (value >= 1 << 28) { + this.view.setUint8(offset+4, (value >> 28) & 0x0F); + size = 5; + } else { + this.view.setUint8(offset+3, b & 0x7F); + size = 4; + } + } else { + this.view.setUint8(offset+2, b & 0x7F); + size = 3; + } + } else { + this.view.setUint8(offset+1, b & 0x7F); + size = 2; + } + } else { + this.view.setUint8(offset, b & 0x7F); + size = 1; + } + if (relative) { + this.offset += size; + return this; + } + return size; + }; + + /** + * Writes a zig-zag encoded 32bit base 128 variable-length integer. + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * written if omitted. + * @returns {!ByteBuffer|number} this if `offset` is omitted, else the actual number of bytes written + * @expose + */ + ByteBufferPrototype.writeVarint32ZigZag = function(value, offset) { + return this.writeVarint32(ByteBuffer.zigZagEncode32(value), offset); + }; + + /** + * Reads a 32bit base 128 variable-length integer. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * written if omitted. + * @returns {number|!{value: number, length: number}} The value read if offset is omitted, else the value read + * and the actual number of bytes read. + * @throws {Error} If it's not a valid varint. Has a property `truncated = true` if there is not enough data available + * to fully decode the varint. + * @expose + */ + ByteBufferPrototype.readVarint32 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 1 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+1+") <= "+this.buffer.byteLength); + } + // ref: src/google/protobuf/io/coded_stream.cc + var size = 0, + value = 0 >>> 0, + temp, + ioffset; + do { + ioffset = offset+size; + if (!this.noAssert && ioffset > this.limit) { + var err = Error("Truncated"); + err['truncated'] = true; + throw err; + } + temp = this.view.getUint8(ioffset); + if (size < 5) + value |= ((temp&0x7F)<<(7*size)) >>> 0; + ++size; + } while ((temp & 0x80) === 0x80); + value = value | 0; // Make sure to discard the higher order bits + if (relative) { + this.offset += size; + return value; + } + return { + "value": value, + "length": size + }; + }; + + /** + * Reads a zig-zag encoded 32bit base 128 variable-length integer. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * written if omitted. + * @returns {number|!{value: number, length: number}} The value read if offset is omitted, else the value read + * and the actual number of bytes read. + * @throws {Error} If it's not a valid varint + * @expose + */ + ByteBufferPrototype.readVarint32ZigZag = function(offset) { + var val = this.readVarint32(offset); + if (typeof val === 'object') + val["value"] = ByteBuffer.zigZagDecode32(val["value"]); + else + val = ByteBuffer.zigZagDecode32(val); + return val; + }; + + // types/varints/varint64 + + if (Long) { + + /** + * Maximum number of bytes required to store a 64bit base 128 variable-length integer. + * @type {number} + * @const + * @expose + */ + ByteBuffer.MAX_VARINT64_BYTES = 10; + + /** + * Calculates the actual number of bytes required to store a 64bit base 128 variable-length integer. + * @param {number|!Long} value Value to encode + * @returns {number} Number of bytes required. Capped to {@link ByteBuffer.MAX_VARINT64_BYTES} + * @expose + */ + ByteBuffer.calculateVarint64 = function(value) { + if (typeof value === 'number') + value = Long.fromNumber(value); + else if (typeof value === 'string') + value = Long.fromString(value); + // ref: src/google/protobuf/io/coded_stream.cc + var part0 = value.toInt() >>> 0, + part1 = value.shiftRightUnsigned(28).toInt() >>> 0, + part2 = value.shiftRightUnsigned(56).toInt() >>> 0; + if (part2 == 0) { + if (part1 == 0) { + if (part0 < 1 << 14) + return part0 < 1 << 7 ? 1 : 2; + else + return part0 < 1 << 21 ? 3 : 4; + } else { + if (part1 < 1 << 14) + return part1 < 1 << 7 ? 5 : 6; + else + return part1 < 1 << 21 ? 7 : 8; + } + } else + return part2 < 1 << 7 ? 9 : 10; + }; + + /** + * Zigzag encodes a signed 64bit integer so that it can be effectively used with varint encoding. + * @param {number|!Long} value Signed long + * @returns {!Long} Unsigned zigzag encoded long + * @expose + */ + ByteBuffer.zigZagEncode64 = function(value) { + if (typeof value === 'number') + value = Long.fromNumber(value, false); + else if (typeof value === 'string') + value = Long.fromString(value, false); + else if (value.unsigned !== false) value = value.toSigned(); + // ref: src/google/protobuf/wire_format_lite.h + return value.shiftLeft(1).xor(value.shiftRight(63)).toUnsigned(); + }; + + /** + * Decodes a zigzag encoded signed 64bit integer. + * @param {!Long|number} value Unsigned zigzag encoded long or JavaScript number + * @returns {!Long} Signed long + * @expose + */ + ByteBuffer.zigZagDecode64 = function(value) { + if (typeof value === 'number') + value = Long.fromNumber(value, false); + else if (typeof value === 'string') + value = Long.fromString(value, false); + else if (value.unsigned !== false) value = value.toSigned(); + // ref: src/google/protobuf/wire_format_lite.h + return value.shiftRightUnsigned(1).xor(value.and(Long.ONE).toSigned().negate()).toSigned(); + }; + + /** + * Writes a 64bit base 128 variable-length integer. + * @param {number|Long} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * written if omitted. + * @returns {!ByteBuffer|number} `this` if offset is omitted, else the actual number of bytes written. + * @expose + */ + ByteBufferPrototype.writeVarint64 = function(value, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof value === 'number') + value = Long.fromNumber(value); + else if (typeof value === 'string') + value = Long.fromString(value); + else if (!(value && value instanceof Long)) + throw TypeError("Illegal value: "+value+" (not an integer or Long)"); + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + if (typeof value === 'number') + value = Long.fromNumber(value, false); + else if (typeof value === 'string') + value = Long.fromString(value, false); + else if (value.unsigned !== false) value = value.toSigned(); + var size = ByteBuffer.calculateVarint64(value), + part0 = value.toInt() >>> 0, + part1 = value.shiftRightUnsigned(28).toInt() >>> 0, + part2 = value.shiftRightUnsigned(56).toInt() >>> 0; + offset += size; + var capacity11 = this.buffer.byteLength; + if (offset > capacity11) + this.resize((capacity11 *= 2) > offset ? capacity11 : offset); + offset -= size; + switch (size) { + case 10: this.view.setUint8(offset+9, (part2 >>> 7) & 0x01); + case 9 : this.view.setUint8(offset+8, size !== 9 ? (part2 ) | 0x80 : (part2 ) & 0x7F); + case 8 : this.view.setUint8(offset+7, size !== 8 ? (part1 >>> 21) | 0x80 : (part1 >>> 21) & 0x7F); + case 7 : this.view.setUint8(offset+6, size !== 7 ? (part1 >>> 14) | 0x80 : (part1 >>> 14) & 0x7F); + case 6 : this.view.setUint8(offset+5, size !== 6 ? (part1 >>> 7) | 0x80 : (part1 >>> 7) & 0x7F); + case 5 : this.view.setUint8(offset+4, size !== 5 ? (part1 ) | 0x80 : (part1 ) & 0x7F); + case 4 : this.view.setUint8(offset+3, size !== 4 ? (part0 >>> 21) | 0x80 : (part0 >>> 21) & 0x7F); + case 3 : this.view.setUint8(offset+2, size !== 3 ? (part0 >>> 14) | 0x80 : (part0 >>> 14) & 0x7F); + case 2 : this.view.setUint8(offset+1, size !== 2 ? (part0 >>> 7) | 0x80 : (part0 >>> 7) & 0x7F); + case 1 : this.view.setUint8(offset , size !== 1 ? (part0 ) | 0x80 : (part0 ) & 0x7F); + } + if (relative) { + this.offset += size; + return this; + } else { + return size; + } + }; + + /** + * Writes a zig-zag encoded 64bit base 128 variable-length integer. + * @param {number|Long} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * written if omitted. + * @returns {!ByteBuffer|number} `this` if offset is omitted, else the actual number of bytes written. + * @expose + */ + ByteBufferPrototype.writeVarint64ZigZag = function(value, offset) { + return this.writeVarint64(ByteBuffer.zigZagEncode64(value), offset); + }; + + /** + * Reads a 64bit base 128 variable-length integer. Requires Long.js. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * read if omitted. + * @returns {!Long|!{value: Long, length: number}} The value read if offset is omitted, else the value read and + * the actual number of bytes read. + * @throws {Error} If it's not a valid varint + * @expose + */ + ByteBufferPrototype.readVarint64 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 1 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+1+") <= "+this.buffer.byteLength); + } + // ref: src/google/protobuf/io/coded_stream.cc + var start = offset, + part0 = 0, + part1 = 0, + part2 = 0, + b = 0; + b = this.view.getUint8(offset++); part0 = (b & 0x7F) ; if (b & 0x80) { + b = this.view.getUint8(offset++); part0 |= (b & 0x7F) << 7; if (b & 0x80) { + b = this.view.getUint8(offset++); part0 |= (b & 0x7F) << 14; if (b & 0x80) { + b = this.view.getUint8(offset++); part0 |= (b & 0x7F) << 21; if (b & 0x80) { + b = this.view.getUint8(offset++); part1 = (b & 0x7F) ; if (b & 0x80) { + b = this.view.getUint8(offset++); part1 |= (b & 0x7F) << 7; if (b & 0x80) { + b = this.view.getUint8(offset++); part1 |= (b & 0x7F) << 14; if (b & 0x80) { + b = this.view.getUint8(offset++); part1 |= (b & 0x7F) << 21; if (b & 0x80) { + b = this.view.getUint8(offset++); part2 = (b & 0x7F) ; if (b & 0x80) { + b = this.view.getUint8(offset++); part2 |= (b & 0x7F) << 7; if (b & 0x80) { + throw Error("Buffer overrun"); }}}}}}}}}} + var value = Long.fromBits(part0 | (part1 << 28), (part1 >>> 4) | (part2) << 24, false); + if (relative) { + this.offset = offset; + return value; + } else { + return { + 'value': value, + 'length': offset-start + }; + } + }; + + /** + * Reads a zig-zag encoded 64bit base 128 variable-length integer. Requires Long.js. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * read if omitted. + * @returns {!Long|!{value: Long, length: number}} The value read if offset is omitted, else the value read and + * the actual number of bytes read. + * @throws {Error} If it's not a valid varint + * @expose + */ + ByteBufferPrototype.readVarint64ZigZag = function(offset) { + var val = this.readVarint64(offset); + if (val && val['value'] instanceof Long) + val["value"] = ByteBuffer.zigZagDecode64(val["value"]); + else + val = ByteBuffer.zigZagDecode64(val); + return val; + }; + + } // Long + + + // types/strings/cstring + + /** + * Writes a NULL-terminated UTF8 encoded string. For this to work the specified string must not contain any NULL + * characters itself. + * @param {string} str String to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * contained in `str` + 1 if omitted. + * @returns {!ByteBuffer|number} this if offset is omitted, else the actual number of bytes written + * @expose + */ + ByteBufferPrototype.writeCString = function(str, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + var i, + k = str.length; + if (!this.noAssert) { + if (typeof str !== 'string') + throw TypeError("Illegal str: Not a string"); + for (i=0; i>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + // UTF8 strings do not contain zero bytes in between except for the zero character, so: + k = utfx.calculateUTF16asUTF8(stringSource(str))[1]; + offset += k+1; + var capacity12 = this.buffer.byteLength; + if (offset > capacity12) + this.resize((capacity12 *= 2) > offset ? capacity12 : offset); + offset -= k+1; + utfx.encodeUTF16toUTF8(stringSource(str), function(b) { + this.view.setUint8(offset++, b); + }.bind(this)); + this.view.setUint8(offset++, 0); + if (relative) { + this.offset = offset; + return this; + } + return k; + }; + + /** + * Reads a NULL-terminated UTF8 encoded string. For this to work the string read must not contain any NULL characters + * itself. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * read if omitted. + * @returns {string|!{string: string, length: number}} The string read if offset is omitted, else the string + * read and the actual number of bytes read. + * @expose + */ + ByteBufferPrototype.readCString = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 1 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+1+") <= "+this.buffer.byteLength); + } + var start = offset, + temp; + // UTF8 strings do not contain zero bytes in between except for the zero character itself, so: + var sd, b = -1; + utfx.decodeUTF8toUTF16(function() { + if (b === 0) return null; + if (offset >= this.limit) + throw RangeError("Illegal range: Truncated data, "+offset+" < "+this.limit); + return (b = this.view.getUint8(offset++)) === 0 ? null : b; + }.bind(this), sd = stringDestination(), true); + if (relative) { + this.offset = offset; + return sd(); + } else { + return { + "string": sd(), + "length": offset - start + }; + } + }; + + // types/strings/istring + + /** + * Writes a length as uint32 prefixed UTF8 encoded string. + * @param {string} str String to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * written if omitted. + * @returns {!ByteBuffer|number} `this` if `offset` is omitted, else the actual number of bytes written + * @expose + * @see ByteBuffer#writeVarint32 + */ + ByteBufferPrototype.writeIString = function(str, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof str !== 'string') + throw TypeError("Illegal str: Not a string"); + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + var start = offset, + k; + k = utfx.calculateUTF16asUTF8(stringSource(str), this.noAssert)[1]; + offset += 4+k; + var capacity13 = this.buffer.byteLength; + if (offset > capacity13) + this.resize((capacity13 *= 2) > offset ? capacity13 : offset); + offset -= 4+k; + this.view.setUint32(offset, k, this.littleEndian); + offset += 4; + utfx.encodeUTF16toUTF8(stringSource(str), function(b) { + this.view.setUint8(offset++, b); + }.bind(this)); + if (offset !== start + 4 + k) + throw RangeError("Illegal range: Truncated data, "+offset+" == "+(offset+4+k)); + if (relative) { + this.offset = offset; + return this; + } + return offset - start; + }; + + /** + * Reads a length as uint32 prefixed UTF8 encoded string. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * read if omitted. + * @returns {string|!{string: string, length: number}} The string read if offset is omitted, else the string + * read and the actual number of bytes read. + * @expose + * @see ByteBuffer#readVarint32 + */ + ByteBufferPrototype.readIString = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 4 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+4+") <= "+this.buffer.byteLength); + } + var temp = 0, + start = offset, + str; + temp = this.view.getUint32(offset, this.littleEndian); + offset += 4; + var k = offset + temp, + sd; + utfx.decodeUTF8toUTF16(function() { + return offset < k ? this.view.getUint8(offset++) : null; + }.bind(this), sd = stringDestination(), this.noAssert); + str = sd(); + if (relative) { + this.offset = offset; + return str; + } else { + return { + 'string': str, + 'length': offset - start + }; + } + }; + + // types/strings/utf8string + + /** + * Metrics representing number of UTF8 characters. Evaluates to `c`. + * @type {string} + * @const + * @expose + */ + ByteBuffer.METRICS_CHARS = 'c'; + + /** + * Metrics representing number of bytes. Evaluates to `b`. + * @type {string} + * @const + * @expose + */ + ByteBuffer.METRICS_BYTES = 'b'; + + /** + * Writes an UTF8 encoded string. + * @param {string} str String to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} if omitted. + * @returns {!ByteBuffer|number} this if offset is omitted, else the actual number of bytes written. + * @expose + */ + ByteBufferPrototype.writeUTF8String = function(str, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + var k; + var start = offset; + k = utfx.calculateUTF16asUTF8(stringSource(str))[1]; + offset += k; + var capacity14 = this.buffer.byteLength; + if (offset > capacity14) + this.resize((capacity14 *= 2) > offset ? capacity14 : offset); + offset -= k; + utfx.encodeUTF16toUTF8(stringSource(str), function(b) { + this.view.setUint8(offset++, b); + }.bind(this)); + if (relative) { + this.offset = offset; + return this; + } + return offset - start; + }; + + /** + * Writes an UTF8 encoded string. This is an alias of {@link ByteBuffer#writeUTF8String}. + * @function + * @param {string} str String to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} if omitted. + * @returns {!ByteBuffer|number} this if offset is omitted, else the actual number of bytes written. + * @expose + */ + ByteBufferPrototype.writeString = ByteBufferPrototype.writeUTF8String; + + /** + * Calculates the number of UTF8 characters of a string. JavaScript itself uses UTF-16, so that a string's + * `length` property does not reflect its actual UTF8 size if it contains code points larger than 0xFFFF. + * @function + * @param {string} str String to calculate + * @returns {number} Number of UTF8 characters + * @expose + */ + ByteBuffer.calculateUTF8Chars = function(str) { + return utfx.calculateUTF16asUTF8(stringSource(str))[0]; + }; + + /** + * Calculates the number of UTF8 bytes of a string. + * @function + * @param {string} str String to calculate + * @returns {number} Number of UTF8 bytes + * @expose + */ + ByteBuffer.calculateUTF8Bytes = function(str) { + return utfx.calculateUTF16asUTF8(stringSource(str))[1]; + }; + + /** + * Reads an UTF8 encoded string. + * @param {number} length Number of characters or bytes to read. + * @param {string=} metrics Metrics specifying what `length` is meant to count. Defaults to + * {@link ByteBuffer.METRICS_CHARS}. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * read if omitted. + * @returns {string|!{string: string, length: number}} The string read if offset is omitted, else the string + * read and the actual number of bytes read. + * @expose + */ + ByteBufferPrototype.readUTF8String = function(length, metrics, offset) { + if (typeof metrics === 'number') { + offset = metrics; + metrics = undefined; + } + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (typeof metrics === 'undefined') metrics = ByteBuffer.METRICS_CHARS; + if (!this.noAssert) { + if (typeof length !== 'number' || length % 1 !== 0) + throw TypeError("Illegal length: "+length+" (not an integer)"); + length |= 0; + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + var i = 0, + start = offset, + sd; + if (metrics === ByteBuffer.METRICS_CHARS) { // The same for node and the browser + sd = stringDestination(); + utfx.decodeUTF8(function() { + return i < length && offset < this.limit ? this.view.getUint8(offset++) : null; + }.bind(this), function(cp) { + ++i; utfx.UTF8toUTF16(cp, sd); + }.bind(this)); + if (i !== length) + throw RangeError("Illegal range: Truncated data, "+i+" == "+length); + if (relative) { + this.offset = offset; + return sd(); + } else { + return { + "string": sd(), + "length": offset - start + }; + } + } else if (metrics === ByteBuffer.METRICS_BYTES) { + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + length > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+length+") <= "+this.buffer.byteLength); + } + var k = offset + length; + utfx.decodeUTF8toUTF16(function() { + return offset < k ? this.view.getUint8(offset++) : null; + }.bind(this), sd = stringDestination(), this.noAssert); + if (offset !== k) + throw RangeError("Illegal range: Truncated data, "+offset+" == "+k); + if (relative) { + this.offset = offset; + return sd(); + } else { + return { + 'string': sd(), + 'length': offset - start + }; + } + } else + throw TypeError("Unsupported metrics: "+metrics); + }; + + /** + * Reads an UTF8 encoded string. This is an alias of {@link ByteBuffer#readUTF8String}. + * @function + * @param {number} length Number of characters or bytes to read + * @param {number=} metrics Metrics specifying what `n` is meant to count. Defaults to + * {@link ByteBuffer.METRICS_CHARS}. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * read if omitted. + * @returns {string|!{string: string, length: number}} The string read if offset is omitted, else the string + * read and the actual number of bytes read. + * @expose + */ + ByteBufferPrototype.readString = ByteBufferPrototype.readUTF8String; + + // types/strings/vstring + + /** + * Writes a length as varint32 prefixed UTF8 encoded string. + * @param {string} str String to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * written if omitted. + * @returns {!ByteBuffer|number} `this` if `offset` is omitted, else the actual number of bytes written + * @expose + * @see ByteBuffer#writeVarint32 + */ + ByteBufferPrototype.writeVString = function(str, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof str !== 'string') + throw TypeError("Illegal str: Not a string"); + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + var start = offset, + k, l; + k = utfx.calculateUTF16asUTF8(stringSource(str), this.noAssert)[1]; + l = ByteBuffer.calculateVarint32(k); + offset += l+k; + var capacity15 = this.buffer.byteLength; + if (offset > capacity15) + this.resize((capacity15 *= 2) > offset ? capacity15 : offset); + offset -= l+k; + offset += this.writeVarint32(k, offset); + utfx.encodeUTF16toUTF8(stringSource(str), function(b) { + this.view.setUint8(offset++, b); + }.bind(this)); + if (offset !== start+k+l) + throw RangeError("Illegal range: Truncated data, "+offset+" == "+(offset+k+l)); + if (relative) { + this.offset = offset; + return this; + } + return offset - start; + }; + + /** + * Reads a length as varint32 prefixed UTF8 encoded string. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * read if omitted. + * @returns {string|!{string: string, length: number}} The string read if offset is omitted, else the string + * read and the actual number of bytes read. + * @expose + * @see ByteBuffer#readVarint32 + */ + ByteBufferPrototype.readVString = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 1 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+1+") <= "+this.buffer.byteLength); + } + var temp = this.readVarint32(offset), + start = offset, + str; + offset += temp['length']; + temp = temp['value']; + var k = offset + temp, + sd = stringDestination(); + utfx.decodeUTF8toUTF16(function() { + return offset < k ? this.view.getUint8(offset++) : null; + }.bind(this), sd, this.noAssert); + str = sd(); + if (relative) { + this.offset = offset; + return str; + } else { + return { + 'string': str, + 'length': offset - start + }; + } + }; + + + /** + * Appends some data to this ByteBuffer. This will overwrite any contents behind the specified offset up to the appended + * data's length. + * @param {!ByteBuffer|!ArrayBuffer|!Uint8Array|string} source Data to append. If `source` is a ByteBuffer, its offsets + * will be modified according to the performed read operation. + * @param {(string|number)=} encoding Encoding if `data` is a string ("base64", "hex", "binary", defaults to "utf8") + * @param {number=} offset Offset to append at. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * read if omitted. + * @returns {!ByteBuffer} this + * @expose + * @example A relative `<01 02>03.append(<04 05>)` will result in `<01 02 04 05>, 04 05|` + * @example An absolute `<01 02>03.append(04 05>, 1)` will result in `<01 04>05, 04 05|` + */ + ByteBufferPrototype.append = function(source, encoding, offset) { + if (typeof encoding === 'number' || typeof encoding !== 'string') { + offset = encoding; + encoding = undefined; + } + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + if (!(source instanceof ByteBuffer)) + source = ByteBuffer.wrap(source, encoding); + var length = source.limit - source.offset; + if (length <= 0) return this; // Nothing to append + offset += length; + var capacity16 = this.buffer.byteLength; + if (offset > capacity16) + this.resize((capacity16 *= 2) > offset ? capacity16 : offset); + offset -= length; + new Uint8Array(this.buffer, offset).set(new Uint8Array(source.buffer).subarray(source.offset, source.limit)); + source.offset += length; + if (relative) this.offset += length; + return this; + }; + + /** + * Appends this ByteBuffer's contents to another ByteBuffer. This will overwrite any contents at and after the + specified offset up to the length of this ByteBuffer's data. + * @param {!ByteBuffer} target Target ByteBuffer + * @param {number=} offset Offset to append to. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * read if omitted. + * @returns {!ByteBuffer} this + * @expose + * @see ByteBuffer#append + */ + ByteBufferPrototype.appendTo = function(target, offset) { + target.append(this, offset); + return this; + }; + + /** + * Enables or disables assertions of argument types and offsets. Assertions are enabled by default but you can opt to + * disable them if your code already makes sure that everything is valid. + * @param {boolean} assert `true` to enable assertions, otherwise `false` + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.assert = function(assert) { + this.noAssert = !assert; + return this; + }; + + /** + * Gets the capacity of this ByteBuffer's backing buffer. + * @returns {number} Capacity of the backing buffer + * @expose + */ + ByteBufferPrototype.capacity = function() { + return this.buffer.byteLength; + }; + + /** + * Clears this ByteBuffer's offsets by setting {@link ByteBuffer#offset} to `0` and {@link ByteBuffer#limit} to the + * backing buffer's capacity. Discards {@link ByteBuffer#markedOffset}. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.clear = function() { + this.offset = 0; + this.limit = this.buffer.byteLength; + this.markedOffset = -1; + return this; + }; + + /** + * Creates a cloned instance of this ByteBuffer, preset with this ByteBuffer's values for {@link ByteBuffer#offset}, + * {@link ByteBuffer#markedOffset} and {@link ByteBuffer#limit}. + * @param {boolean=} copy Whether to copy the backing buffer or to return another view on the same, defaults to `false` + * @returns {!ByteBuffer} Cloned instance + * @expose + */ + ByteBufferPrototype.clone = function(copy) { + var bb = new ByteBuffer(0, this.littleEndian, this.noAssert); + if (copy) { + var buffer = new ArrayBuffer(this.buffer.byteLength); + new Uint8Array(buffer).set(this.buffer); + bb.buffer = buffer; + bb.view = new DataView(buffer); + } else { + bb.buffer = this.buffer; + bb.view = this.view; + } + bb.offset = this.offset; + bb.markedOffset = this.markedOffset; + bb.limit = this.limit; + return bb; + }; + + /** + * Compacts this ByteBuffer to be backed by a {@link ByteBuffer#buffer} of its contents' length. Contents are the bytes + * between {@link ByteBuffer#offset} and {@link ByteBuffer#limit}. Will set `offset = 0` and `limit = capacity` and + * adapt {@link ByteBuffer#markedOffset} to the same relative position if set. + * @param {number=} begin Offset to start at, defaults to {@link ByteBuffer#offset} + * @param {number=} end Offset to end at, defaults to {@link ByteBuffer#limit} + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.compact = function(begin, end) { + if (typeof begin === 'undefined') begin = this.offset; + if (typeof end === 'undefined') end = this.limit; + if (!this.noAssert) { + if (typeof begin !== 'number' || begin % 1 !== 0) + throw TypeError("Illegal begin: Not an integer"); + begin >>>= 0; + if (typeof end !== 'number' || end % 1 !== 0) + throw TypeError("Illegal end: Not an integer"); + end >>>= 0; + if (begin < 0 || begin > end || end > this.buffer.byteLength) + throw RangeError("Illegal range: 0 <= "+begin+" <= "+end+" <= "+this.buffer.byteLength); + } + if (begin === 0 && end === this.buffer.byteLength) + return this; // Already compacted + var len = end - begin; + if (len === 0) { + this.buffer = EMPTY_BUFFER; + this.view = null; + if (this.markedOffset >= 0) this.markedOffset -= begin; + this.offset = 0; + this.limit = 0; + return this; + } + var buffer = new ArrayBuffer(len); + new Uint8Array(buffer).set(new Uint8Array(this.buffer).subarray(begin, end)); + this.buffer = buffer; + this.view = new DataView(buffer); + if (this.markedOffset >= 0) this.markedOffset -= begin; + this.offset = 0; + this.limit = len; + return this; + }; + + /** + * Creates a copy of this ByteBuffer's contents. Contents are the bytes between {@link ByteBuffer#offset} and + * {@link ByteBuffer#limit}. + * @param {number=} begin Begin offset, defaults to {@link ByteBuffer#offset}. + * @param {number=} end End offset, defaults to {@link ByteBuffer#limit}. + * @returns {!ByteBuffer} Copy + * @expose + */ + ByteBufferPrototype.copy = function(begin, end) { + if (typeof begin === 'undefined') begin = this.offset; + if (typeof end === 'undefined') end = this.limit; + if (!this.noAssert) { + if (typeof begin !== 'number' || begin % 1 !== 0) + throw TypeError("Illegal begin: Not an integer"); + begin >>>= 0; + if (typeof end !== 'number' || end % 1 !== 0) + throw TypeError("Illegal end: Not an integer"); + end >>>= 0; + if (begin < 0 || begin > end || end > this.buffer.byteLength) + throw RangeError("Illegal range: 0 <= "+begin+" <= "+end+" <= "+this.buffer.byteLength); + } + if (begin === end) + return new ByteBuffer(0, this.littleEndian, this.noAssert); + var capacity = end - begin, + bb = new ByteBuffer(capacity, this.littleEndian, this.noAssert); + bb.offset = 0; + bb.limit = capacity; + if (bb.markedOffset >= 0) bb.markedOffset -= begin; + this.copyTo(bb, 0, begin, end); + return bb; + }; + + /** + * Copies this ByteBuffer's contents to another ByteBuffer. Contents are the bytes between {@link ByteBuffer#offset} and + * {@link ByteBuffer#limit}. + * @param {!ByteBuffer} target Target ByteBuffer + * @param {number=} targetOffset Offset to copy to. Will use and increase the target's {@link ByteBuffer#offset} + * by the number of bytes copied if omitted. + * @param {number=} sourceOffset Offset to start copying from. Will use and increase {@link ByteBuffer#offset} by the + * number of bytes copied if omitted. + * @param {number=} sourceLimit Offset to end copying from, defaults to {@link ByteBuffer#limit} + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.copyTo = function(target, targetOffset, sourceOffset, sourceLimit) { + var relative, + targetRelative; + if (!this.noAssert) { + if (!ByteBuffer.isByteBuffer(target)) + throw TypeError("Illegal target: Not a ByteBuffer"); + } + targetOffset = (targetRelative = typeof targetOffset === 'undefined') ? target.offset : targetOffset | 0; + sourceOffset = (relative = typeof sourceOffset === 'undefined') ? this.offset : sourceOffset | 0; + sourceLimit = typeof sourceLimit === 'undefined' ? this.limit : sourceLimit | 0; + + if (targetOffset < 0 || targetOffset > target.buffer.byteLength) + throw RangeError("Illegal target range: 0 <= "+targetOffset+" <= "+target.buffer.byteLength); + if (sourceOffset < 0 || sourceLimit > this.buffer.byteLength) + throw RangeError("Illegal source range: 0 <= "+sourceOffset+" <= "+this.buffer.byteLength); + + var len = sourceLimit - sourceOffset; + if (len === 0) + return target; // Nothing to copy + + target.ensureCapacity(targetOffset + len); + + new Uint8Array(target.buffer).set(new Uint8Array(this.buffer).subarray(sourceOffset, sourceLimit), targetOffset); + + if (relative) this.offset += len; + if (targetRelative) target.offset += len; + + return this; + }; + + /** + * Makes sure that this ByteBuffer is backed by a {@link ByteBuffer#buffer} of at least the specified capacity. If the + * current capacity is exceeded, it will be doubled. If double the current capacity is less than the required capacity, + * the required capacity will be used instead. + * @param {number} capacity Required capacity + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.ensureCapacity = function(capacity) { + var current = this.buffer.byteLength; + if (current < capacity) + return this.resize((current *= 2) > capacity ? current : capacity); + return this; + }; + + /** + * Overwrites this ByteBuffer's contents with the specified value. Contents are the bytes between + * {@link ByteBuffer#offset} and {@link ByteBuffer#limit}. + * @param {number|string} value Byte value to fill with. If given as a string, the first character is used. + * @param {number=} begin Begin offset. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * written if omitted. defaults to {@link ByteBuffer#offset}. + * @param {number=} end End offset, defaults to {@link ByteBuffer#limit}. + * @returns {!ByteBuffer} this + * @expose + * @example `someByteBuffer.clear().fill(0)` fills the entire backing buffer with zeroes + */ + ByteBufferPrototype.fill = function(value, begin, end) { + var relative = typeof begin === 'undefined'; + if (relative) begin = this.offset; + if (typeof value === 'string' && value.length > 0) + value = value.charCodeAt(0); + if (typeof begin === 'undefined') begin = this.offset; + if (typeof end === 'undefined') end = this.limit; + if (!this.noAssert) { + if (typeof value !== 'number' || value % 1 !== 0) + throw TypeError("Illegal value: "+value+" (not an integer)"); + value |= 0; + if (typeof begin !== 'number' || begin % 1 !== 0) + throw TypeError("Illegal begin: Not an integer"); + begin >>>= 0; + if (typeof end !== 'number' || end % 1 !== 0) + throw TypeError("Illegal end: Not an integer"); + end >>>= 0; + if (begin < 0 || begin > end || end > this.buffer.byteLength) + throw RangeError("Illegal range: 0 <= "+begin+" <= "+end+" <= "+this.buffer.byteLength); + } + if (begin >= end) + return this; // Nothing to fill + while (begin < end) this.view.setUint8(begin++, value); + if (relative) this.offset = begin; + return this; + }; + + /** + * Makes this ByteBuffer ready for a new sequence of write or relative read operations. Sets `limit = offset` and + * `offset = 0`. Make sure always to flip a ByteBuffer when all relative read or write operations are complete. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.flip = function() { + this.limit = this.offset; + this.offset = 0; + return this; + }; + /** + * Marks an offset on this ByteBuffer to be used later. + * @param {number=} offset Offset to mark. Defaults to {@link ByteBuffer#offset}. + * @returns {!ByteBuffer} this + * @throws {TypeError} If `offset` is not a valid number + * @throws {RangeError} If `offset` is out of bounds + * @see ByteBuffer#reset + * @expose + */ + ByteBufferPrototype.mark = function(offset) { + offset = typeof offset === 'undefined' ? this.offset : offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + this.markedOffset = offset; + return this; + }; + /** + * Sets the byte order. + * @param {boolean} littleEndian `true` for little endian byte order, `false` for big endian + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.order = function(littleEndian) { + if (!this.noAssert) { + if (typeof littleEndian !== 'boolean') + throw TypeError("Illegal littleEndian: Not a boolean"); + } + this.littleEndian = !!littleEndian; + return this; + }; + + /** + * Switches (to) little endian byte order. + * @param {boolean=} littleEndian Defaults to `true`, otherwise uses big endian + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.LE = function(littleEndian) { + this.littleEndian = typeof littleEndian !== 'undefined' ? !!littleEndian : true; + return this; + }; + + /** + * Switches (to) big endian byte order. + * @param {boolean=} bigEndian Defaults to `true`, otherwise uses little endian + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.BE = function(bigEndian) { + this.littleEndian = typeof bigEndian !== 'undefined' ? !bigEndian : false; + return this; + }; + /** + * Prepends some data to this ByteBuffer. This will overwrite any contents before the specified offset up to the + * prepended data's length. If there is not enough space available before the specified `offset`, the backing buffer + * will be resized and its contents moved accordingly. + * @param {!ByteBuffer|string|!ArrayBuffer} source Data to prepend. If `source` is a ByteBuffer, its offset will be + * modified according to the performed read operation. + * @param {(string|number)=} encoding Encoding if `data` is a string ("base64", "hex", "binary", defaults to "utf8") + * @param {number=} offset Offset to prepend at. Will use and decrease {@link ByteBuffer#offset} by the number of bytes + * prepended if omitted. + * @returns {!ByteBuffer} this + * @expose + * @example A relative `00<01 02 03>.prepend(<04 05>)` results in `<04 05 01 02 03>, 04 05|` + * @example An absolute `00<01 02 03>.prepend(<04 05>, 2)` results in `04<05 02 03>, 04 05|` + */ + ByteBufferPrototype.prepend = function(source, encoding, offset) { + if (typeof encoding === 'number' || typeof encoding !== 'string') { + offset = encoding; + encoding = undefined; + } + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + if (!(source instanceof ByteBuffer)) + source = ByteBuffer.wrap(source, encoding); + var len = source.limit - source.offset; + if (len <= 0) return this; // Nothing to prepend + var diff = len - offset; + var arrayView; + if (diff > 0) { // Not enough space before offset, so resize + move + var buffer = new ArrayBuffer(this.buffer.byteLength + diff); + arrayView = new Uint8Array(buffer); + arrayView.set(new Uint8Array(this.buffer).subarray(offset, this.buffer.byteLength), len); + this.buffer = buffer; + this.view = new DataView(buffer); + this.offset += diff; + if (this.markedOffset >= 0) this.markedOffset += diff; + this.limit += diff; + offset += diff; + } else { + arrayView = new Uint8Array(this.buffer); + } + arrayView.set(new Uint8Array(source.buffer).subarray(source.offset, source.limit), offset - len); + source.offset = source.limit; + if (relative) + this.offset -= len; + return this; + }; + + /** + * Prepends this ByteBuffer to another ByteBuffer. This will overwrite any contents before the specified offset up to the + * prepended data's length. If there is not enough space available before the specified `offset`, the backing buffer + * will be resized and its contents moved accordingly. + * @param {!ByteBuffer} target Target ByteBuffer + * @param {number=} offset Offset to prepend at. Will use and decrease {@link ByteBuffer#offset} by the number of bytes + * prepended if omitted. + * @returns {!ByteBuffer} this + * @expose + * @see ByteBuffer#prepend + */ + ByteBufferPrototype.prependTo = function(target, offset) { + target.prepend(this, offset); + return this; + }; + /** + * Prints debug information about this ByteBuffer's contents. + * @param {function(string)=} out Output function to call, defaults to console.log + * @expose + */ + ByteBufferPrototype.printDebug = function(out) { + if (typeof out !== 'function') out = console.log.bind(console); + out( + this.toString()+"\n"+ + "-------------------------------------------------------------------\n"+ + this.toDebug(/* columns */ true) + ); + }; + + /** + * Gets the number of remaining readable bytes. Contents are the bytes between {@link ByteBuffer#offset} and + * {@link ByteBuffer#limit}, so this returns `limit - offset`. + * @returns {number} Remaining readable bytes. May be negative if `offset > limit`. + * @expose + */ + ByteBufferPrototype.remaining = function() { + return this.limit - this.offset; + }; + /** + * Resets this ByteBuffer's {@link ByteBuffer#offset}. If an offset has been marked through {@link ByteBuffer#mark} + * before, `offset` will be set to {@link ByteBuffer#markedOffset}, which will then be discarded. If no offset has been + * marked, sets `offset = 0`. + * @returns {!ByteBuffer} this + * @see ByteBuffer#mark + * @expose + */ + ByteBufferPrototype.reset = function() { + if (this.markedOffset >= 0) { + this.offset = this.markedOffset; + this.markedOffset = -1; + } else { + this.offset = 0; + } + return this; + }; + /** + * Resizes this ByteBuffer to be backed by a buffer of at least the given capacity. Will do nothing if already that + * large or larger. + * @param {number} capacity Capacity required + * @returns {!ByteBuffer} this + * @throws {TypeError} If `capacity` is not a number + * @throws {RangeError} If `capacity < 0` + * @expose + */ + ByteBufferPrototype.resize = function(capacity) { + if (!this.noAssert) { + if (typeof capacity !== 'number' || capacity % 1 !== 0) + throw TypeError("Illegal capacity: "+capacity+" (not an integer)"); + capacity |= 0; + if (capacity < 0) + throw RangeError("Illegal capacity: 0 <= "+capacity); + } + if (this.buffer.byteLength < capacity) { + var buffer = new ArrayBuffer(capacity); + new Uint8Array(buffer).set(new Uint8Array(this.buffer)); + this.buffer = buffer; + this.view = new DataView(buffer); + } + return this; + }; + /** + * Reverses this ByteBuffer's contents. + * @param {number=} begin Offset to start at, defaults to {@link ByteBuffer#offset} + * @param {number=} end Offset to end at, defaults to {@link ByteBuffer#limit} + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.reverse = function(begin, end) { + if (typeof begin === 'undefined') begin = this.offset; + if (typeof end === 'undefined') end = this.limit; + if (!this.noAssert) { + if (typeof begin !== 'number' || begin % 1 !== 0) + throw TypeError("Illegal begin: Not an integer"); + begin >>>= 0; + if (typeof end !== 'number' || end % 1 !== 0) + throw TypeError("Illegal end: Not an integer"); + end >>>= 0; + if (begin < 0 || begin > end || end > this.buffer.byteLength) + throw RangeError("Illegal range: 0 <= "+begin+" <= "+end+" <= "+this.buffer.byteLength); + } + if (begin === end) + return this; // Nothing to reverse + Array.prototype.reverse.call(new Uint8Array(this.buffer).subarray(begin, end)); + this.view = new DataView(this.buffer); // FIXME: Why exactly is this necessary? + return this; + }; + /** + * Skips the next `length` bytes. This will just advance + * @param {number} length Number of bytes to skip. May also be negative to move the offset back. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.skip = function(length) { + if (!this.noAssert) { + if (typeof length !== 'number' || length % 1 !== 0) + throw TypeError("Illegal length: "+length+" (not an integer)"); + length |= 0; + } + var offset = this.offset + length; + if (!this.noAssert) { + if (offset < 0 || offset > this.buffer.byteLength) + throw RangeError("Illegal length: 0 <= "+this.offset+" + "+length+" <= "+this.buffer.byteLength); + } + this.offset = offset; + return this; + }; + + /** + * Slices this ByteBuffer by creating a cloned instance with `offset = begin` and `limit = end`. + * @param {number=} begin Begin offset, defaults to {@link ByteBuffer#offset}. + * @param {number=} end End offset, defaults to {@link ByteBuffer#limit}. + * @returns {!ByteBuffer} Clone of this ByteBuffer with slicing applied, backed by the same {@link ByteBuffer#buffer} + * @expose + */ + ByteBufferPrototype.slice = function(begin, end) { + if (typeof begin === 'undefined') begin = this.offset; + if (typeof end === 'undefined') end = this.limit; + if (!this.noAssert) { + if (typeof begin !== 'number' || begin % 1 !== 0) + throw TypeError("Illegal begin: Not an integer"); + begin >>>= 0; + if (typeof end !== 'number' || end % 1 !== 0) + throw TypeError("Illegal end: Not an integer"); + end >>>= 0; + if (begin < 0 || begin > end || end > this.buffer.byteLength) + throw RangeError("Illegal range: 0 <= "+begin+" <= "+end+" <= "+this.buffer.byteLength); + } + var bb = this.clone(); + bb.offset = begin; + bb.limit = end; + return bb; + }; + /** + * Returns a copy of the backing buffer that contains this ByteBuffer's contents. Contents are the bytes between + * {@link ByteBuffer#offset} and {@link ByteBuffer#limit}. Will transparently {@link ByteBuffer#flip} this + * ByteBuffer if `offset > limit` but the actual offsets remain untouched. + * @param {boolean=} forceCopy If `true` returns a copy, otherwise returns a view referencing the same memory if + * possible. Defaults to `false` + * @returns {!ArrayBuffer} Contents as an ArrayBuffer + * @expose + */ + ByteBufferPrototype.toBuffer = function(forceCopy) { + var offset = this.offset, + limit = this.limit; + if (offset > limit) { + var t = offset; + offset = limit; + limit = t; + } + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: Not an integer"); + offset >>>= 0; + if (typeof limit !== 'number' || limit % 1 !== 0) + throw TypeError("Illegal limit: Not an integer"); + limit >>>= 0; + if (offset < 0 || offset > limit || limit > this.buffer.byteLength) + throw RangeError("Illegal range: 0 <= "+offset+" <= "+limit+" <= "+this.buffer.byteLength); + } + // NOTE: It's not possible to have another ArrayBuffer reference the same memory as the backing buffer. This is + // possible with Uint8Array#subarray only, but we have to return an ArrayBuffer by contract. So: + if (!forceCopy && offset === 0 && limit === this.buffer.byteLength) { + return this.buffer; + } + if (offset === limit) { + return EMPTY_BUFFER; + } + var buffer = new ArrayBuffer(limit - offset); + new Uint8Array(buffer).set(new Uint8Array(this.buffer).subarray(offset, limit), 0); + return buffer; + }; + + /** + * Returns a raw buffer compacted to contain this ByteBuffer's contents. Contents are the bytes between + * {@link ByteBuffer#offset} and {@link ByteBuffer#limit}. Will transparently {@link ByteBuffer#flip} this + * ByteBuffer if `offset > limit` but the actual offsets remain untouched. This is an alias of + * {@link ByteBuffer#toBuffer}. + * @function + * @param {boolean=} forceCopy If `true` returns a copy, otherwise returns a view referencing the same memory. + * Defaults to `false` + * @returns {!ArrayBuffer} Contents as an ArrayBuffer + * @expose + */ + ByteBufferPrototype.toArrayBuffer = ByteBufferPrototype.toBuffer; + + + /** + * Converts the ByteBuffer's contents to a string. + * @param {string=} encoding Output encoding. Returns an informative string representation if omitted but also allows + * direct conversion to "utf8", "hex", "base64" and "binary" encoding. "debug" returns a hex representation with + * highlighted offsets. + * @param {number=} begin Offset to begin at, defaults to {@link ByteBuffer#offset} + * @param {number=} end Offset to end at, defaults to {@link ByteBuffer#limit} + * @returns {string} String representation + * @throws {Error} If `encoding` is invalid + * @expose + */ + ByteBufferPrototype.toString = function(encoding, begin, end) { + if (typeof encoding === 'undefined') + return "ByteBufferAB(offset="+this.offset+",markedOffset="+this.markedOffset+",limit="+this.limit+",capacity="+this.capacity()+")"; + if (typeof encoding === 'number') + encoding = "utf8", + begin = encoding, + end = begin; + switch (encoding) { + case "utf8": + return this.toUTF8(begin, end); + case "base64": + return this.toBase64(begin, end); + case "hex": + return this.toHex(begin, end); + case "binary": + return this.toBinary(begin, end); + case "debug": + return this.toDebug(); + case "columns": + return this.toColumns(); + default: + throw Error("Unsupported encoding: "+encoding); + } + }; + + // lxiv-embeddable + + /** + * lxiv-embeddable (c) 2014 Daniel Wirtz + * Released under the Apache License, Version 2.0 + * see: https://github.com/dcodeIO/lxiv for details + */ + var lxiv = function() { + "use strict"; + + /** + * lxiv namespace. + * @type {!Object.} + * @exports lxiv + */ + var lxiv = {}; + + /** + * Character codes for output. + * @type {!Array.} + * @inner + */ + var aout = [ + 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, + 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 97, 98, 99, 100, 101, 102, + 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 122, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 43, 47 + ]; + + /** + * Character codes for input. + * @type {!Array.} + * @inner + */ + var ain = []; + for (var i=0, k=aout.length; i>2)&0x3f]); + t = (b&0x3)<<4; + if ((b = src()) !== null) { + t |= (b>>4)&0xf; + dst(aout[(t|((b>>4)&0xf))&0x3f]); + t = (b&0xf)<<2; + if ((b = src()) !== null) + dst(aout[(t|((b>>6)&0x3))&0x3f]), + dst(aout[b&0x3f]); + else + dst(aout[t&0x3f]), + dst(61); + } else + dst(aout[t&0x3f]), + dst(61), + dst(61); + } + }; + + /** + * Decodes base64 char codes to bytes. + * @param {!function():number|null} src Characters source as a function returning the next char code respectively + * `null` if there are no more characters left. + * @param {!function(number)} dst Bytes destination as a function successively called with the next byte. + * @throws {Error} If a character code is invalid + */ + lxiv.decode = function(src, dst) { + var c, t1, t2; + function fail(c) { + throw Error("Illegal character code: "+c); + } + while ((c = src()) !== null) { + t1 = ain[c]; + if (typeof t1 === 'undefined') fail(c); + if ((c = src()) !== null) { + t2 = ain[c]; + if (typeof t2 === 'undefined') fail(c); + dst((t1<<2)>>>0|(t2&0x30)>>4); + if ((c = src()) !== null) { + t1 = ain[c]; + if (typeof t1 === 'undefined') + if (c === 61) break; else fail(c); + dst(((t2&0xf)<<4)>>>0|(t1&0x3c)>>2); + if ((c = src()) !== null) { + t2 = ain[c]; + if (typeof t2 === 'undefined') + if (c === 61) break; else fail(c); + dst(((t1&0x3)<<6)>>>0|t2); + } + } + } + } + }; + + /** + * Tests if a string is valid base64. + * @param {string} str String to test + * @returns {boolean} `true` if valid, otherwise `false` + */ + lxiv.test = function(str) { + return /^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/.test(str); + }; + + return lxiv; + }(); + + // encodings/base64 + + /** + * Encodes this ByteBuffer's contents to a base64 encoded string. + * @param {number=} begin Offset to begin at, defaults to {@link ByteBuffer#offset}. + * @param {number=} end Offset to end at, defaults to {@link ByteBuffer#limit}. + * @returns {string} Base64 encoded string + * @expose + */ + ByteBufferPrototype.toBase64 = function(begin, end) { + if (typeof begin === 'undefined') + begin = this.offset; + if (typeof end === 'undefined') + end = this.limit; + if (!this.noAssert) { + if (typeof begin !== 'number' || begin % 1 !== 0) + throw TypeError("Illegal begin: Not an integer"); + begin >>>= 0; + if (typeof end !== 'number' || end % 1 !== 0) + throw TypeError("Illegal end: Not an integer"); + end >>>= 0; + if (begin < 0 || begin > end || end > this.buffer.byteLength) + throw RangeError("Illegal range: 0 <= "+begin+" <= "+end+" <= "+this.buffer.byteLength); + } + var sd; lxiv.encode(function() { + return begin < end ? this.view.getUint8(begin++) : null; + }.bind(this), sd = stringDestination()); + return sd(); + }; + + /** + * Decodes a base64 encoded string to a ByteBuffer. + * @param {string} str String to decode + * @param {boolean=} littleEndian Whether to use little or big endian byte order. Defaults to + * {@link ByteBuffer.DEFAULT_ENDIAN}. + * @param {boolean=} noAssert Whether to skip assertions of offsets and values. Defaults to + * {@link ByteBuffer.DEFAULT_NOASSERT}. + * @returns {!ByteBuffer} ByteBuffer + * @expose + */ + ByteBuffer.fromBase64 = function(str, littleEndian, noAssert) { + if (!noAssert) { + if (typeof str !== 'string') + throw TypeError("Illegal str: Not a string"); + if (str.length % 4 !== 0) + throw TypeError("Illegal str: Length not a multiple of 4"); + } + var bb = new ByteBuffer(str.length/4*3, littleEndian, noAssert), + i = 0; + lxiv.decode(stringSource(str), function(b) { + bb.view.setUint8(i++, b); + }); + bb.limit = i; + return bb; + }; + + /** + * Encodes a binary string to base64 like `window.btoa` does. + * @param {string} str Binary string + * @returns {string} Base64 encoded string + * @see https://developer.mozilla.org/en-US/docs/Web/API/Window.btoa + * @expose + */ + ByteBuffer.btoa = function(str) { + return ByteBuffer.fromBinary(str).toBase64(); + }; + + /** + * Decodes a base64 encoded string to binary like `window.atob` does. + * @param {string} b64 Base64 encoded string + * @returns {string} Binary string + * @see https://developer.mozilla.org/en-US/docs/Web/API/Window.atob + * @expose + */ + ByteBuffer.atob = function(b64) { + return ByteBuffer.fromBase64(b64).toBinary(); + }; + + // encodings/binary + + /** + * Encodes this ByteBuffer to a binary encoded string, that is using only characters 0x00-0xFF as bytes. + * @param {number=} begin Offset to begin at. Defaults to {@link ByteBuffer#offset}. + * @param {number=} end Offset to end at. Defaults to {@link ByteBuffer#limit}. + * @returns {string} Binary encoded string + * @throws {RangeError} If `offset > limit` + * @expose + */ + ByteBufferPrototype.toBinary = function(begin, end) { + begin = typeof begin === 'undefined' ? this.offset : begin; + end = typeof end === 'undefined' ? this.limit : end; + if (!this.noAssert) { + if (typeof begin !== 'number' || begin % 1 !== 0) + throw TypeError("Illegal begin: Not an integer"); + begin >>>= 0; + if (typeof end !== 'number' || end % 1 !== 0) + throw TypeError("Illegal end: Not an integer"); + end >>>= 0; + if (begin < 0 || begin > end || end > this.buffer.byteLength) + throw RangeError("Illegal range: 0 <= "+begin+" <= "+end+" <= "+this.buffer.byteLength); + } + if (begin === end) + return ""; + var cc = [], pt = []; + while (begin < end) { + cc.push(this.view.getUint8(begin++)); + if (cc.length >= 1024) + pt.push(String.fromCharCode.apply(String, cc)), + cc = []; + } + return pt.join('') + String.fromCharCode.apply(String, cc); + }; + + /** + * Decodes a binary encoded string, that is using only characters 0x00-0xFF as bytes, to a ByteBuffer. + * @param {string} str String to decode + * @param {boolean=} littleEndian Whether to use little or big endian byte order. Defaults to + * {@link ByteBuffer.DEFAULT_ENDIAN}. + * @param {boolean=} noAssert Whether to skip assertions of offsets and values. Defaults to + * {@link ByteBuffer.DEFAULT_NOASSERT}. + * @returns {!ByteBuffer} ByteBuffer + * @expose + */ + ByteBuffer.fromBinary = function(str, littleEndian, noAssert) { + if (!noAssert) { + if (typeof str !== 'string') + throw TypeError("Illegal str: Not a string"); + } + var i = 0, k = str.length, charCode, + bb = new ByteBuffer(k, littleEndian, noAssert); + while (i 255) + throw RangeError("Illegal charCode at "+i+": 0 <= "+charCode+" <= 255"); + bb.view.setUint8(i++, charCode); + } + bb.limit = k; + return bb; + }; + + // encodings/debug + + /** + * Encodes this ByteBuffer to a hex encoded string with marked offsets. Offset symbols are: + * * `<` : offset, + * * `'` : markedOffset, + * * `>` : limit, + * * `|` : offset and limit, + * * `[` : offset and markedOffset, + * * `]` : markedOffset and limit, + * * `!` : offset, markedOffset and limit + * @param {boolean=} columns If `true` returns two columns hex + ascii, defaults to `false` + * @returns {string|!Array.} Debug string or array of lines if `asArray = true` + * @expose + * @example `>00'01 02<03` contains four bytes with `limit=0, markedOffset=1, offset=3` + * @example `00[01 02 03>` contains four bytes with `offset=markedOffset=1, limit=4` + * @example `00|01 02 03` contains four bytes with `offset=limit=1, markedOffset=-1` + * @example `|` contains zero bytes with `offset=limit=0, markedOffset=-1` + */ + ByteBufferPrototype.toDebug = function(columns) { + var i = -1, + k = this.buffer.byteLength, + b, + hex = "", + asc = "", + out = ""; + while (i 32 && b < 127 ? String.fromCharCode(b) : '.'; + } + } + ++i; + if (columns) { + if (i > 0 && i % 16 === 0 && i !== k) { + while (hex.length < 3*16+3) hex += " "; + out += hex+asc+"\n"; + hex = asc = ""; + } + } + if (i === this.offset && i === this.limit) + hex += i === this.markedOffset ? "!" : "|"; + else if (i === this.offset) + hex += i === this.markedOffset ? "[" : "<"; + else if (i === this.limit) + hex += i === this.markedOffset ? "]" : ">"; + else + hex += i === this.markedOffset ? "'" : (columns || (i !== 0 && i !== k) ? " " : ""); + } + if (columns && hex !== " ") { + while (hex.length < 3*16+3) hex += " "; + out += hex+asc+"\n"; + } + return columns ? out : hex; + }; + + /** + * Decodes a hex encoded string with marked offsets to a ByteBuffer. + * @param {string} str Debug string to decode (not be generated with `columns = true`) + * @param {boolean=} littleEndian Whether to use little or big endian byte order. Defaults to + * {@link ByteBuffer.DEFAULT_ENDIAN}. + * @param {boolean=} noAssert Whether to skip assertions of offsets and values. Defaults to + * {@link ByteBuffer.DEFAULT_NOASSERT}. + * @returns {!ByteBuffer} ByteBuffer + * @expose + * @see ByteBuffer#toDebug + */ + ByteBuffer.fromDebug = function(str, littleEndian, noAssert) { + var k = str.length, + bb = new ByteBuffer(((k+1)/3)|0, littleEndian, noAssert); + var i = 0, j = 0, ch, b, + rs = false, // Require symbol next + ho = false, hm = false, hl = false, // Already has offset, markedOffset, limit? + fail = false; + while (i': + if (!noAssert) { + if (hl) { + fail = true; break; + } + hl = true; + } + bb.limit = j; + rs = false; + break; + case "'": + if (!noAssert) { + if (hm) { + fail = true; break; + } + hm = true; + } + bb.markedOffset = j; + rs = false; + break; + case ' ': + rs = false; + break; + default: + if (!noAssert) { + if (rs) { + fail = true; break; + } + } + b = parseInt(ch+str.charAt(i++), 16); + if (!noAssert) { + if (isNaN(b) || b < 0 || b > 255) + throw TypeError("Illegal str: Not a debug encoded string"); + } + bb.view.setUint8(j++, b); + rs = true; + } + if (fail) + throw TypeError("Illegal str: Invalid symbol at "+i); + } + if (!noAssert) { + if (!ho || !hl) + throw TypeError("Illegal str: Missing offset or limit"); + if (j>>= 0; + if (typeof end !== 'number' || end % 1 !== 0) + throw TypeError("Illegal end: Not an integer"); + end >>>= 0; + if (begin < 0 || begin > end || end > this.buffer.byteLength) + throw RangeError("Illegal range: 0 <= "+begin+" <= "+end+" <= "+this.buffer.byteLength); + } + var out = new Array(end - begin), + b; + while (begin < end) { + b = this.view.getUint8(begin++); + if (b < 0x10) + out.push("0", b.toString(16)); + else out.push(b.toString(16)); + } + return out.join(''); + }; + + /** + * Decodes a hex encoded string to a ByteBuffer. + * @param {string} str String to decode + * @param {boolean=} littleEndian Whether to use little or big endian byte order. Defaults to + * {@link ByteBuffer.DEFAULT_ENDIAN}. + * @param {boolean=} noAssert Whether to skip assertions of offsets and values. Defaults to + * {@link ByteBuffer.DEFAULT_NOASSERT}. + * @returns {!ByteBuffer} ByteBuffer + * @expose + */ + ByteBuffer.fromHex = function(str, littleEndian, noAssert) { + if (!noAssert) { + if (typeof str !== 'string') + throw TypeError("Illegal str: Not a string"); + if (str.length % 2 !== 0) + throw TypeError("Illegal str: Length not a multiple of 2"); + } + var k = str.length, + bb = new ByteBuffer((k / 2) | 0, littleEndian), + b; + for (var i=0, j=0; i 255) + throw TypeError("Illegal str: Contains non-hex characters"); + bb.view.setUint8(j++, b); + } + bb.limit = j; + return bb; + }; + + // utfx-embeddable + + /** + * utfx-embeddable (c) 2014 Daniel Wirtz + * Released under the Apache License, Version 2.0 + * see: https://github.com/dcodeIO/utfx for details + */ + var utfx = function() { + "use strict"; + + /** + * utfx namespace. + * @inner + * @type {!Object.} + */ + var utfx = {}; + + /** + * Maximum valid code point. + * @type {number} + * @const + */ + utfx.MAX_CODEPOINT = 0x10FFFF; + + /** + * Encodes UTF8 code points to UTF8 bytes. + * @param {(!function():number|null) | number} src Code points source, either as a function returning the next code point + * respectively `null` if there are no more code points left or a single numeric code point. + * @param {!function(number)} dst Bytes destination as a function successively called with the next byte + */ + utfx.encodeUTF8 = function(src, dst) { + var cp = null; + if (typeof src === 'number') + cp = src, + src = function() { return null; }; + while (cp !== null || (cp = src()) !== null) { + if (cp < 0x80) + dst(cp&0x7F); + else if (cp < 0x800) + dst(((cp>>6)&0x1F)|0xC0), + dst((cp&0x3F)|0x80); + else if (cp < 0x10000) + dst(((cp>>12)&0x0F)|0xE0), + dst(((cp>>6)&0x3F)|0x80), + dst((cp&0x3F)|0x80); + else + dst(((cp>>18)&0x07)|0xF0), + dst(((cp>>12)&0x3F)|0x80), + dst(((cp>>6)&0x3F)|0x80), + dst((cp&0x3F)|0x80); + cp = null; + } + }; + + /** + * Decodes UTF8 bytes to UTF8 code points. + * @param {!function():number|null} src Bytes source as a function returning the next byte respectively `null` if there + * are no more bytes left. + * @param {!function(number)} dst Code points destination as a function successively called with each decoded code point. + * @throws {RangeError} If a starting byte is invalid in UTF8 + * @throws {Error} If the last sequence is truncated. Has an array property `bytes` holding the + * remaining bytes. + */ + utfx.decodeUTF8 = function(src, dst) { + var a, b, c, d, fail = function(b) { + b = b.slice(0, b.indexOf(null)); + var err = Error(b.toString()); + err.name = "TruncatedError"; + err['bytes'] = b; + throw err; + }; + while ((a = src()) !== null) { + if ((a&0x80) === 0) + dst(a); + else if ((a&0xE0) === 0xC0) + ((b = src()) === null) && fail([a, b]), + dst(((a&0x1F)<<6) | (b&0x3F)); + else if ((a&0xF0) === 0xE0) + ((b=src()) === null || (c=src()) === null) && fail([a, b, c]), + dst(((a&0x0F)<<12) | ((b&0x3F)<<6) | (c&0x3F)); + else if ((a&0xF8) === 0xF0) + ((b=src()) === null || (c=src()) === null || (d=src()) === null) && fail([a, b, c ,d]), + dst(((a&0x07)<<18) | ((b&0x3F)<<12) | ((c&0x3F)<<6) | (d&0x3F)); + else throw RangeError("Illegal starting byte: "+a); + } + }; + + /** + * Converts UTF16 characters to UTF8 code points. + * @param {!function():number|null} src Characters source as a function returning the next char code respectively + * `null` if there are no more characters left. + * @param {!function(number)} dst Code points destination as a function successively called with each converted code + * point. + */ + utfx.UTF16toUTF8 = function(src, dst) { + var c1, c2 = null; + while (true) { + if ((c1 = c2 !== null ? c2 : src()) === null) + break; + if (c1 >= 0xD800 && c1 <= 0xDFFF) { + if ((c2 = src()) !== null) { + if (c2 >= 0xDC00 && c2 <= 0xDFFF) { + dst((c1-0xD800)*0x400+c2-0xDC00+0x10000); + c2 = null; continue; + } + } + } + dst(c1); + } + if (c2 !== null) dst(c2); + }; + + /** + * Converts UTF8 code points to UTF16 characters. + * @param {(!function():number|null) | number} src Code points source, either as a function returning the next code point + * respectively `null` if there are no more code points left or a single numeric code point. + * @param {!function(number)} dst Characters destination as a function successively called with each converted char code. + * @throws {RangeError} If a code point is out of range + */ + utfx.UTF8toUTF16 = function(src, dst) { + var cp = null; + if (typeof src === 'number') + cp = src, src = function() { return null; }; + while (cp !== null || (cp = src()) !== null) { + if (cp <= 0xFFFF) + dst(cp); + else + cp -= 0x10000, + dst((cp>>10)+0xD800), + dst((cp%0x400)+0xDC00); + cp = null; + } + }; + + /** + * Converts and encodes UTF16 characters to UTF8 bytes. + * @param {!function():number|null} src Characters source as a function returning the next char code respectively `null` + * if there are no more characters left. + * @param {!function(number)} dst Bytes destination as a function successively called with the next byte. + */ + utfx.encodeUTF16toUTF8 = function(src, dst) { + utfx.UTF16toUTF8(src, function(cp) { + utfx.encodeUTF8(cp, dst); + }); + }; + + /** + * Decodes and converts UTF8 bytes to UTF16 characters. + * @param {!function():number|null} src Bytes source as a function returning the next byte respectively `null` if there + * are no more bytes left. + * @param {!function(number)} dst Characters destination as a function successively called with each converted char code. + * @throws {RangeError} If a starting byte is invalid in UTF8 + * @throws {Error} If the last sequence is truncated. Has an array property `bytes` holding the remaining bytes. + */ + utfx.decodeUTF8toUTF16 = function(src, dst) { + utfx.decodeUTF8(src, function(cp) { + utfx.UTF8toUTF16(cp, dst); + }); + }; + + /** + * Calculates the byte length of an UTF8 code point. + * @param {number} cp UTF8 code point + * @returns {number} Byte length + */ + utfx.calculateCodePoint = function(cp) { + return (cp < 0x80) ? 1 : (cp < 0x800) ? 2 : (cp < 0x10000) ? 3 : 4; + }; + + /** + * Calculates the number of UTF8 bytes required to store UTF8 code points. + * @param {(!function():number|null)} src Code points source as a function returning the next code point respectively + * `null` if there are no more code points left. + * @returns {number} The number of UTF8 bytes required + */ + utfx.calculateUTF8 = function(src) { + var cp, l=0; + while ((cp = src()) !== null) + l += utfx.calculateCodePoint(cp); + return l; + }; + + /** + * Calculates the number of UTF8 code points respectively UTF8 bytes required to store UTF16 char codes. + * @param {(!function():number|null)} src Characters source as a function returning the next char code respectively + * `null` if there are no more characters left. + * @returns {!Array.} The number of UTF8 code points at index 0 and the number of UTF8 bytes required at index 1. + */ + utfx.calculateUTF16asUTF8 = function(src) { + var n=0, l=0; + utfx.UTF16toUTF8(src, function(cp) { + ++n; l += utfx.calculateCodePoint(cp); + }); + return [n,l]; + }; + + return utfx; + }(); + + // encodings/utf8 + + /** + * Encodes this ByteBuffer's contents between {@link ByteBuffer#offset} and {@link ByteBuffer#limit} to an UTF8 encoded + * string. + * @returns {string} Hex encoded string + * @throws {RangeError} If `offset > limit` + * @expose + */ + ByteBufferPrototype.toUTF8 = function(begin, end) { + if (typeof begin === 'undefined') begin = this.offset; + if (typeof end === 'undefined') end = this.limit; + if (!this.noAssert) { + if (typeof begin !== 'number' || begin % 1 !== 0) + throw TypeError("Illegal begin: Not an integer"); + begin >>>= 0; + if (typeof end !== 'number' || end % 1 !== 0) + throw TypeError("Illegal end: Not an integer"); + end >>>= 0; + if (begin < 0 || begin > end || end > this.buffer.byteLength) + throw RangeError("Illegal range: 0 <= "+begin+" <= "+end+" <= "+this.buffer.byteLength); + } + var sd; try { + utfx.decodeUTF8toUTF16(function() { + return begin < end ? this.view.getUint8(begin++) : null; + }.bind(this), sd = stringDestination()); + } catch (e) { + if (begin !== end) + throw RangeError("Illegal range: Truncated data, "+begin+" != "+end); + } + return sd(); + }; + + /** + * Decodes an UTF8 encoded string to a ByteBuffer. + * @param {string} str String to decode + * @param {boolean=} littleEndian Whether to use little or big endian byte order. Defaults to + * {@link ByteBuffer.DEFAULT_ENDIAN}. + * @param {boolean=} noAssert Whether to skip assertions of offsets and values. Defaults to + * {@link ByteBuffer.DEFAULT_NOASSERT}. + * @returns {!ByteBuffer} ByteBuffer + * @expose + */ + ByteBuffer.fromUTF8 = function(str, littleEndian, noAssert) { + if (!noAssert) + if (typeof str !== 'string') + throw TypeError("Illegal str: Not a string"); + var bb = new ByteBuffer(utfx.calculateUTF16asUTF8(stringSource(str), true)[1], littleEndian, noAssert), + i = 0; + utfx.encodeUTF16toUTF8(stringSource(str), function(b) { + bb.view.setUint8(i++, b); + }); + bb.limit = i; + return bb; + }; + + + return ByteBuffer; + } + + /* CommonJS */ if (typeof require === 'function' && typeof module === 'object' && module && typeof exports === 'object' && exports) + module['exports'] = (function() { + var Long; try { Long = require("long"); } catch (e) {} + return loadByteBuffer(Long); + })(); + /* AMD */ else if (typeof define === 'function' && define["amd"]) + define("ByteBuffer", ["Long"], function(Long) { return loadByteBuffer(Long); }); + /* Global */ else + (global["dcodeIO"] = global["dcodeIO"] || {})["ByteBuffer"] = loadByteBuffer(global["dcodeIO"]["Long"]); + +})(this); + +/* + Copyright 2013 Daniel Wirtz + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + */ + +/** + * @license protobuf.js (c) 2013 Daniel Wirtz + * Released under the Apache License, Version 2.0 + * see: https://github.com/dcodeIO/protobuf.js for details + */ +(function(global, factory) { + + /* AMD */ if (typeof define === 'function' && define["amd"]) + define(["bytebuffer"], factory); + /* CommonJS */ else if (typeof require === "function" && typeof module === "object" && module && module["exports"]) + module["exports"] = factory(require("bytebuffer"), true); + /* Global */ else + (global["dcodeIO"] = global["dcodeIO"] || {})["ProtoBuf"] = factory(global["dcodeIO"]["ByteBuffer"]); + +})(this, function(ByteBuffer, isCommonJS) { + "use strict"; + + /** + * The ProtoBuf namespace. + * @exports ProtoBuf + * @namespace + * @expose + */ + var ProtoBuf = {}; + + /** + * @type {!function(new: ByteBuffer, ...[*])} + * @expose + */ + ProtoBuf.ByteBuffer = ByteBuffer; + + /** + * @type {?function(new: Long, ...[*])} + * @expose + */ + ProtoBuf.Long = ByteBuffer.Long || null; + + /** + * ProtoBuf.js version. + * @type {string} + * @const + * @expose + */ + ProtoBuf.VERSION = "5.0.1"; + + /** + * Wire types. + * @type {Object.} + * @const + * @expose + */ + ProtoBuf.WIRE_TYPES = {}; + + /** + * Varint wire type. + * @type {number} + * @expose + */ + ProtoBuf.WIRE_TYPES.VARINT = 0; + + /** + * Fixed 64 bits wire type. + * @type {number} + * @const + * @expose + */ + ProtoBuf.WIRE_TYPES.BITS64 = 1; + + /** + * Length delimited wire type. + * @type {number} + * @const + * @expose + */ + ProtoBuf.WIRE_TYPES.LDELIM = 2; + + /** + * Start group wire type. + * @type {number} + * @const + * @expose + */ + ProtoBuf.WIRE_TYPES.STARTGROUP = 3; + + /** + * End group wire type. + * @type {number} + * @const + * @expose + */ + ProtoBuf.WIRE_TYPES.ENDGROUP = 4; + + /** + * Fixed 32 bits wire type. + * @type {number} + * @const + * @expose + */ + ProtoBuf.WIRE_TYPES.BITS32 = 5; + + /** + * Packable wire types. + * @type {!Array.} + * @const + * @expose + */ + ProtoBuf.PACKABLE_WIRE_TYPES = [ + ProtoBuf.WIRE_TYPES.VARINT, + ProtoBuf.WIRE_TYPES.BITS64, + ProtoBuf.WIRE_TYPES.BITS32 + ]; + + /** + * Types. + * @dict + * @type {!Object.} + * @const + * @expose + */ + ProtoBuf.TYPES = { + // According to the protobuf spec. + "int32": { + name: "int32", + wireType: ProtoBuf.WIRE_TYPES.VARINT, + defaultValue: 0 + }, + "uint32": { + name: "uint32", + wireType: ProtoBuf.WIRE_TYPES.VARINT, + defaultValue: 0 + }, + "sint32": { + name: "sint32", + wireType: ProtoBuf.WIRE_TYPES.VARINT, + defaultValue: 0 + }, + "int64": { + name: "int64", + wireType: ProtoBuf.WIRE_TYPES.VARINT, + defaultValue: ProtoBuf.Long ? ProtoBuf.Long.ZERO : undefined + }, + "uint64": { + name: "uint64", + wireType: ProtoBuf.WIRE_TYPES.VARINT, + defaultValue: ProtoBuf.Long ? ProtoBuf.Long.UZERO : undefined + }, + "sint64": { + name: "sint64", + wireType: ProtoBuf.WIRE_TYPES.VARINT, + defaultValue: ProtoBuf.Long ? ProtoBuf.Long.ZERO : undefined + }, + "bool": { + name: "bool", + wireType: ProtoBuf.WIRE_TYPES.VARINT, + defaultValue: false + }, + "double": { + name: "double", + wireType: ProtoBuf.WIRE_TYPES.BITS64, + defaultValue: 0 + }, + "string": { + name: "string", + wireType: ProtoBuf.WIRE_TYPES.LDELIM, + defaultValue: "" + }, + "bytes": { + name: "bytes", + wireType: ProtoBuf.WIRE_TYPES.LDELIM, + defaultValue: null // overridden in the code, must be a unique instance + }, + "fixed32": { + name: "fixed32", + wireType: ProtoBuf.WIRE_TYPES.BITS32, + defaultValue: 0 + }, + "sfixed32": { + name: "sfixed32", + wireType: ProtoBuf.WIRE_TYPES.BITS32, + defaultValue: 0 + }, + "fixed64": { + name: "fixed64", + wireType: ProtoBuf.WIRE_TYPES.BITS64, + defaultValue: ProtoBuf.Long ? ProtoBuf.Long.UZERO : undefined + }, + "sfixed64": { + name: "sfixed64", + wireType: ProtoBuf.WIRE_TYPES.BITS64, + defaultValue: ProtoBuf.Long ? ProtoBuf.Long.ZERO : undefined + }, + "float": { + name: "float", + wireType: ProtoBuf.WIRE_TYPES.BITS32, + defaultValue: 0 + }, + "enum": { + name: "enum", + wireType: ProtoBuf.WIRE_TYPES.VARINT, + defaultValue: 0 + }, + "message": { + name: "message", + wireType: ProtoBuf.WIRE_TYPES.LDELIM, + defaultValue: null + }, + "group": { + name: "group", + wireType: ProtoBuf.WIRE_TYPES.STARTGROUP, + defaultValue: null + } + }; + + /** + * Valid map key types. + * @type {!Array.>} + * @const + * @expose + */ + ProtoBuf.MAP_KEY_TYPES = [ + ProtoBuf.TYPES["int32"], + ProtoBuf.TYPES["sint32"], + ProtoBuf.TYPES["sfixed32"], + ProtoBuf.TYPES["uint32"], + ProtoBuf.TYPES["fixed32"], + ProtoBuf.TYPES["int64"], + ProtoBuf.TYPES["sint64"], + ProtoBuf.TYPES["sfixed64"], + ProtoBuf.TYPES["uint64"], + ProtoBuf.TYPES["fixed64"], + ProtoBuf.TYPES["bool"], + ProtoBuf.TYPES["string"], + ProtoBuf.TYPES["bytes"] + ]; + + /** + * Minimum field id. + * @type {number} + * @const + * @expose + */ + ProtoBuf.ID_MIN = 1; + + /** + * Maximum field id. + * @type {number} + * @const + * @expose + */ + ProtoBuf.ID_MAX = 0x1FFFFFFF; + + /** + * If set to `true`, field names will be converted from underscore notation to camel case. Defaults to `false`. + * Must be set prior to parsing. + * @type {boolean} + * @expose + */ + ProtoBuf.convertFieldsToCamelCase = false; + + /** + * By default, messages are populated with (setX, set_x) accessors for each field. This can be disabled by + * setting this to `false` prior to building messages. + * @type {boolean} + * @expose + */ + ProtoBuf.populateAccessors = true; + + /** + * By default, messages are populated with default values if a field is not present on the wire. To disable + * this behavior, set this setting to `false`. + * @type {boolean} + * @expose + */ + ProtoBuf.populateDefaults = true; + + /** + * @alias ProtoBuf.Util + * @expose + */ + ProtoBuf.Util = (function() { + "use strict"; + + /** + * ProtoBuf utilities. + * @exports ProtoBuf.Util + * @namespace + */ + var Util = {}; + + /** + * Flag if running in node or not. + * @type {boolean} + * @const + * @expose + */ + Util.IS_NODE = !!( + typeof process === 'object' && process+'' === '[object process]' && !process['browser'] + ); + + /** + * Constructs a XMLHttpRequest object. + * @return {XMLHttpRequest} + * @throws {Error} If XMLHttpRequest is not supported + * @expose + */ + Util.XHR = function() { + // No dependencies please, ref: http://www.quirksmode.org/js/xmlhttp.html + var XMLHttpFactories = [ + function () {return new XMLHttpRequest()}, + function () {return new ActiveXObject("Msxml2.XMLHTTP")}, + function () {return new ActiveXObject("Msxml3.XMLHTTP")}, + function () {return new ActiveXObject("Microsoft.XMLHTTP")} + ]; + /** @type {?XMLHttpRequest} */ + var xhr = null; + for (var i=0;i} + * @expose + */ + ProtoBuf.Lang = { + + // Characters always ending a statement + DELIM: /[\s\{\}=;:\[\],'"\(\)<>]/g, + + // Field rules + RULE: /^(?:required|optional|repeated|map)$/, + + // Field types + TYPE: /^(?:double|float|int32|uint32|sint32|int64|uint64|sint64|fixed32|sfixed32|fixed64|sfixed64|bool|string|bytes)$/, + + // Names + NAME: /^[a-zA-Z_][a-zA-Z_0-9]*$/, + + // Type definitions + TYPEDEF: /^[a-zA-Z][a-zA-Z_0-9]*$/, + + // Type references + TYPEREF: /^(?:\.?[a-zA-Z_][a-zA-Z_0-9]*)+$/, + + // Fully qualified type references + FQTYPEREF: /^(?:\.[a-zA-Z][a-zA-Z_0-9]*)+$/, + + // All numbers + NUMBER: /^-?(?:[1-9][0-9]*|0|0[xX][0-9a-fA-F]+|0[0-7]+|([0-9]*(\.[0-9]*)?([Ee][+-]?[0-9]+)?)|inf|nan)$/, + + // Decimal numbers + NUMBER_DEC: /^(?:[1-9][0-9]*|0)$/, + + // Hexadecimal numbers + NUMBER_HEX: /^0[xX][0-9a-fA-F]+$/, + + // Octal numbers + NUMBER_OCT: /^0[0-7]+$/, + + // Floating point numbers + NUMBER_FLT: /^([0-9]*(\.[0-9]*)?([Ee][+-]?[0-9]+)?|inf|nan)$/, + + // Booleans + BOOL: /^(?:true|false)$/i, + + // Id numbers + ID: /^(?:[1-9][0-9]*|0|0[xX][0-9a-fA-F]+|0[0-7]+)$/, + + // Negative id numbers (enum values) + NEGID: /^\-?(?:[1-9][0-9]*|0|0[xX][0-9a-fA-F]+|0[0-7]+)$/, + + // Whitespaces + WHITESPACE: /\s/, + + // All strings + STRING: /(?:"([^"\\]*(?:\\.[^"\\]*)*)")|(?:'([^'\\]*(?:\\.[^'\\]*)*)')/g, + + // Double quoted strings + STRING_DQ: /(?:"([^"\\]*(?:\\.[^"\\]*)*)")/g, + + // Single quoted strings + STRING_SQ: /(?:'([^'\\]*(?:\\.[^'\\]*)*)')/g + }; + + /** + * @alias ProtoBuf.DotProto + * @expose + */ + ProtoBuf.DotProto = (function(ProtoBuf, Lang) { + "use strict"; + + /** + * Utilities to parse .proto files. + * @exports ProtoBuf.DotProto + * @namespace + */ + var DotProto = {}; + + /** + * Constructs a new Tokenizer. + * @exports ProtoBuf.DotProto.Tokenizer + * @class prototype tokenizer + * @param {string} proto Proto to tokenize + * @constructor + */ + var Tokenizer = function(proto) { + + /** + * Source to parse. + * @type {string} + * @expose + */ + this.source = proto+""; + + /** + * Current index. + * @type {number} + * @expose + */ + this.index = 0; + + /** + * Current line. + * @type {number} + * @expose + */ + this.line = 1; + + /** + * Token stack. + * @type {!Array.} + * @expose + */ + this.stack = []; + + /** + * Opening character of the current string read, if any. + * @type {?string} + * @private + */ + this._stringOpen = null; + }; + + /** + * @alias ProtoBuf.DotProto.Tokenizer.prototype + * @inner + */ + var TokenizerPrototype = Tokenizer.prototype; + + /** + * Reads a string beginning at the current index. + * @return {string} + * @private + */ + TokenizerPrototype._readString = function() { + var re = this._stringOpen === '"' + ? Lang.STRING_DQ + : Lang.STRING_SQ; + re.lastIndex = this.index - 1; // Include the open quote + var match = re.exec(this.source); + if (!match) + throw Error("unterminated string"); + this.index = re.lastIndex; + this.stack.push(this._stringOpen); + this._stringOpen = null; + return match[1]; + }; + + /** + * Gets the next token and advances by one. + * @return {?string} Token or `null` on EOF + * @expose + */ + TokenizerPrototype.next = function() { + if (this.stack.length > 0) + return this.stack.shift(); + if (this.index >= this.source.length) + return null; + if (this._stringOpen !== null) + return this._readString(); + + var repeat, + prev, + next; + do { + repeat = false; + + // Strip white spaces + while (Lang.WHITESPACE.test(next = this.source.charAt(this.index))) { + if (next === '\n') + ++this.line; + if (++this.index === this.source.length) + return null; + } + + // Strip comments + if (this.source.charAt(this.index) === '/') { + ++this.index; + if (this.source.charAt(this.index) === '/') { // Line + while (this.source.charAt(++this.index) !== '\n') + if (this.index == this.source.length) + return null; + ++this.index; + ++this.line; + repeat = true; + } else if ((next = this.source.charAt(this.index)) === '*') { /* Block */ + do { + if (next === '\n') + ++this.line; + if (++this.index === this.source.length) + return null; + prev = next; + next = this.source.charAt(this.index); + } while (prev !== '*' || next !== '/'); + ++this.index; + repeat = true; + } else + return '/'; + } + } while (repeat); + + if (this.index === this.source.length) + return null; + + // Read the next token + var end = this.index; + Lang.DELIM.lastIndex = 0; + var delim = Lang.DELIM.test(this.source.charAt(end++)); + if (!delim) + while(end < this.source.length && !Lang.DELIM.test(this.source.charAt(end))) + ++end; + var token = this.source.substring(this.index, this.index = end); + if (token === '"' || token === "'") + this._stringOpen = token; + return token; + }; + + /** + * Peeks for the next token. + * @return {?string} Token or `null` on EOF + * @expose + */ + TokenizerPrototype.peek = function() { + if (this.stack.length === 0) { + var token = this.next(); + if (token === null) + return null; + this.stack.push(token); + } + return this.stack[0]; + }; + + /** + * Skips a specific token and throws if it differs. + * @param {string} expected Expected token + * @throws {Error} If the actual token differs + */ + TokenizerPrototype.skip = function(expected) { + var actual = this.next(); + if (actual !== expected) + throw Error("illegal '"+actual+"', '"+expected+"' expected"); + }; + + /** + * Omits an optional token. + * @param {string} expected Expected optional token + * @returns {boolean} `true` if the token exists + */ + TokenizerPrototype.omit = function(expected) { + if (this.peek() === expected) { + this.next(); + return true; + } + return false; + }; + + /** + * Returns a string representation of this object. + * @return {string} String representation as of "Tokenizer(index/length)" + * @expose + */ + TokenizerPrototype.toString = function() { + return "Tokenizer ("+this.index+"/"+this.source.length+" at line "+this.line+")"; + }; + + /** + * @alias ProtoBuf.DotProto.Tokenizer + * @expose + */ + DotProto.Tokenizer = Tokenizer; + + /** + * Constructs a new Parser. + * @exports ProtoBuf.DotProto.Parser + * @class prototype parser + * @param {string} source Source + * @constructor + */ + var Parser = function(source) { + + /** + * Tokenizer. + * @type {!ProtoBuf.DotProto.Tokenizer} + * @expose + */ + this.tn = new Tokenizer(source); + + /** + * Whether parsing proto3 or not. + * @type {boolean} + */ + this.proto3 = false; + }; + + /** + * @alias ProtoBuf.DotProto.Parser.prototype + * @inner + */ + var ParserPrototype = Parser.prototype; + + /** + * Parses the source. + * @returns {!Object} + * @throws {Error} If the source cannot be parsed + * @expose + */ + ParserPrototype.parse = function() { + var topLevel = { + "name": "[ROOT]", // temporary + "package": null, + "messages": [], + "enums": [], + "imports": [], + "options": {}, + "services": [] + // "syntax": undefined + }; + var token, + head = true, + weak; + try { + while (token = this.tn.next()) { + switch (token) { + case 'package': + if (!head || topLevel["package"] !== null) + throw Error("unexpected 'package'"); + token = this.tn.next(); + if (!Lang.TYPEREF.test(token)) + throw Error("illegal package name: " + token); + this.tn.skip(";"); + topLevel["package"] = token; + break; + case 'import': + if (!head) + throw Error("unexpected 'import'"); + token = this.tn.peek(); + if (token === "public" || (weak = token === "weak")) // token ignored + this.tn.next(); + token = this._readString(); + this.tn.skip(";"); + if (!weak) // import ignored + topLevel["imports"].push(token); + break; + case 'syntax': + if (!head) + throw Error("unexpected 'syntax'"); + this.tn.skip("="); + if ((topLevel["syntax"] = this._readString()) === "proto3") + this.proto3 = true; + this.tn.skip(";"); + break; + case 'message': + this._parseMessage(topLevel, null); + head = false; + break; + case 'enum': + this._parseEnum(topLevel); + head = false; + break; + case 'option': + this._parseOption(topLevel); + break; + case 'service': + this._parseService(topLevel); + break; + case 'extend': + this._parseExtend(topLevel); + break; + default: + throw Error("unexpected '" + token + "'"); + } + } + } catch (e) { + e.message = "Parse error at line "+this.tn.line+": " + e.message; + throw e; + } + delete topLevel["name"]; + return topLevel; + }; + + /** + * Parses the specified source. + * @returns {!Object} + * @throws {Error} If the source cannot be parsed + * @expose + */ + Parser.parse = function(source) { + return new Parser(source).parse(); + }; + + // ----- Conversion ------ + + /** + * Converts a numerical string to an id. + * @param {string} value + * @param {boolean=} mayBeNegative + * @returns {number} + * @inner + */ + function mkId(value, mayBeNegative) { + var id = -1, + sign = 1; + if (value.charAt(0) == '-') { + sign = -1; + value = value.substring(1); + } + if (Lang.NUMBER_DEC.test(value)) + id = parseInt(value); + else if (Lang.NUMBER_HEX.test(value)) + id = parseInt(value.substring(2), 16); + else if (Lang.NUMBER_OCT.test(value)) + id = parseInt(value.substring(1), 8); + else + throw Error("illegal id value: " + (sign < 0 ? '-' : '') + value); + id = (sign*id)|0; // Force to 32bit + if (!mayBeNegative && id < 0) + throw Error("illegal id value: " + (sign < 0 ? '-' : '') + value); + return id; + } + + /** + * Converts a numerical string to a number. + * @param {string} val + * @returns {number} + * @inner + */ + function mkNumber(val) { + var sign = 1; + if (val.charAt(0) == '-') { + sign = -1; + val = val.substring(1); + } + if (Lang.NUMBER_DEC.test(val)) + return sign * parseInt(val, 10); + else if (Lang.NUMBER_HEX.test(val)) + return sign * parseInt(val.substring(2), 16); + else if (Lang.NUMBER_OCT.test(val)) + return sign * parseInt(val.substring(1), 8); + else if (val === 'inf') + return sign * Infinity; + else if (val === 'nan') + return NaN; + else if (Lang.NUMBER_FLT.test(val)) + return sign * parseFloat(val); + throw Error("illegal number value: " + (sign < 0 ? '-' : '') + val); + } + + // ----- Reading ------ + + /** + * Reads a string. + * @returns {string} + * @private + */ + ParserPrototype._readString = function() { + var value = "", + token, + delim; + do { + delim = this.tn.next(); + if (delim !== "'" && delim !== '"') + throw Error("illegal string delimiter: "+delim); + value += this.tn.next(); + this.tn.skip(delim); + token = this.tn.peek(); + } while (token === '"' || token === '"'); // multi line? + return value; + }; + + /** + * Reads a value. + * @param {boolean=} mayBeTypeRef + * @returns {number|boolean|string} + * @private + */ + ParserPrototype._readValue = function(mayBeTypeRef) { + var token = this.tn.peek(), + value; + if (token === '"' || token === "'") + return this._readString(); + this.tn.next(); + if (Lang.NUMBER.test(token)) + return mkNumber(token); + if (Lang.BOOL.test(token)) + return (token.toLowerCase() === 'true'); + if (mayBeTypeRef && Lang.TYPEREF.test(token)) + return token; + throw Error("illegal value: "+token); + + }; + + // ----- Parsing constructs ----- + + /** + * Parses a namespace option. + * @param {!Object} parent Parent definition + * @param {boolean=} isList + * @private + */ + ParserPrototype._parseOption = function(parent, isList) { + var token = this.tn.next(), + custom = false; + if (token === '(') { + custom = true; + token = this.tn.next(); + } + if (!Lang.TYPEREF.test(token)) + // we can allow options of the form google.protobuf.* since they will just get ignored anyways + // if (!/google\.protobuf\./.test(token)) // FIXME: Why should that not be a valid typeref? + throw Error("illegal option name: "+token); + var name = token; + if (custom) { // (my_method_option).foo, (my_method_option), some_method_option, (foo.my_option).bar + this.tn.skip(')'); + name = '('+name+')'; + token = this.tn.peek(); + if (Lang.FQTYPEREF.test(token)) { + name += token; + this.tn.next(); + } + } + this.tn.skip('='); + this._parseOptionValue(parent, name); + if (!isList) + this.tn.skip(";"); + }; + + /** + * Sets an option on the specified options object. + * @param {!Object.} options + * @param {string} name + * @param {string|number|boolean} value + * @inner + */ + function setOption(options, name, value) { + if (typeof options[name] === 'undefined') + options[name] = value; + else { + if (!Array.isArray(options[name])) + options[name] = [ options[name] ]; + options[name].push(value); + } + } + + /** + * Parses an option value. + * @param {!Object} parent + * @param {string} name + * @private + */ + ParserPrototype._parseOptionValue = function(parent, name) { + var token = this.tn.peek(); + if (token !== '{') { // Plain value + setOption(parent["options"], name, this._readValue(true)); + } else { // Aggregate options + this.tn.skip("{"); + while ((token = this.tn.next()) !== '}') { + if (!Lang.NAME.test(token)) + throw Error("illegal option name: " + name + "." + token); + if (this.tn.omit(":")) + setOption(parent["options"], name + "." + token, this._readValue(true)); + else + this._parseOptionValue(parent, name + "." + token); + } + } + }; + + /** + * Parses a service definition. + * @param {!Object} parent Parent definition + * @private + */ + ParserPrototype._parseService = function(parent) { + var token = this.tn.next(); + if (!Lang.NAME.test(token)) + throw Error("illegal service name at line "+this.tn.line+": "+token); + var name = token; + var svc = { + "name": name, + "rpc": {}, + "options": {} + }; + this.tn.skip("{"); + while ((token = this.tn.next()) !== '}') { + if (token === "option") + this._parseOption(svc); + else if (token === 'rpc') + this._parseServiceRPC(svc); + else + throw Error("illegal service token: "+token); + } + this.tn.omit(";"); + parent["services"].push(svc); + }; + + /** + * Parses a RPC service definition of the form ['rpc', name, (request), 'returns', (response)]. + * @param {!Object} svc Service definition + * @private + */ + ParserPrototype._parseServiceRPC = function(svc) { + var type = "rpc", + token = this.tn.next(); + if (!Lang.NAME.test(token)) + throw Error("illegal rpc service method name: "+token); + var name = token; + var method = { + "request": null, + "response": null, + "request_stream": false, + "response_stream": false, + "options": {} + }; + this.tn.skip("("); + token = this.tn.next(); + if (token.toLowerCase() === "stream") { + method["request_stream"] = true; + token = this.tn.next(); + } + if (!Lang.TYPEREF.test(token)) + throw Error("illegal rpc service request type: "+token); + method["request"] = token; + this.tn.skip(")"); + token = this.tn.next(); + if (token.toLowerCase() !== "returns") + throw Error("illegal rpc service request type delimiter: "+token); + this.tn.skip("("); + token = this.tn.next(); + if (token.toLowerCase() === "stream") { + method["response_stream"] = true; + token = this.tn.next(); + } + method["response"] = token; + this.tn.skip(")"); + token = this.tn.peek(); + if (token === '{') { + this.tn.next(); + while ((token = this.tn.next()) !== '}') { + if (token === 'option') + this._parseOption(method); + else + throw Error("illegal rpc service token: " + token); + } + this.tn.omit(";"); + } else + this.tn.skip(";"); + if (typeof svc[type] === 'undefined') + svc[type] = {}; + svc[type][name] = method; + }; + + /** + * Parses a message definition. + * @param {!Object} parent Parent definition + * @param {!Object=} fld Field definition if this is a group + * @returns {!Object} + * @private + */ + ParserPrototype._parseMessage = function(parent, fld) { + var isGroup = !!fld, + token = this.tn.next(); + var msg = { + "name": "", + "fields": [], + "enums": [], + "messages": [], + "options": {}, + "services": [], + "oneofs": {} + // "extensions": undefined + }; + if (!Lang.NAME.test(token)) + throw Error("illegal "+(isGroup ? "group" : "message")+" name: "+token); + msg["name"] = token; + if (isGroup) { + this.tn.skip("="); + fld["id"] = mkId(this.tn.next()); + msg["isGroup"] = true; + } + token = this.tn.peek(); + if (token === '[' && fld) + this._parseFieldOptions(fld); + this.tn.skip("{"); + while ((token = this.tn.next()) !== '}') { + if (Lang.RULE.test(token)) + this._parseMessageField(msg, token); + else if (token === "oneof") + this._parseMessageOneOf(msg); + else if (token === "enum") + this._parseEnum(msg); + else if (token === "message") + this._parseMessage(msg); + else if (token === "option") + this._parseOption(msg); + else if (token === "service") + this._parseService(msg); + else if (token === "extensions") + msg["extensions"] = this._parseExtensionRanges(); + else if (token === "reserved") + this._parseIgnored(); // TODO + else if (token === "extend") + this._parseExtend(msg); + else if (Lang.TYPEREF.test(token)) { + if (!this.proto3) + throw Error("illegal field rule: "+token); + this._parseMessageField(msg, "optional", token); + } else + throw Error("illegal message token: "+token); + } + this.tn.omit(";"); + parent["messages"].push(msg); + return msg; + }; + + /** + * Parses an ignored statement. + * @private + */ + ParserPrototype._parseIgnored = function() { + while (this.tn.peek() !== ';') + this.tn.next(); + this.tn.skip(";"); + }; + + /** + * Parses a message field. + * @param {!Object} msg Message definition + * @param {string} rule Field rule + * @param {string=} type Field type if already known (never known for maps) + * @returns {!Object} Field descriptor + * @private + */ + ParserPrototype._parseMessageField = function(msg, rule, type) { + if (!Lang.RULE.test(rule)) + throw Error("illegal message field rule: "+rule); + var fld = { + "rule": rule, + "type": "", + "name": "", + "options": {}, + "id": 0 + }; + var token; + if (rule === "map") { + + if (type) + throw Error("illegal type: " + type); + this.tn.skip('<'); + token = this.tn.next(); + if (!Lang.TYPE.test(token) && !Lang.TYPEREF.test(token)) + throw Error("illegal message field type: " + token); + fld["keytype"] = token; + this.tn.skip(','); + token = this.tn.next(); + if (!Lang.TYPE.test(token) && !Lang.TYPEREF.test(token)) + throw Error("illegal message field: " + token); + fld["type"] = token; + this.tn.skip('>'); + token = this.tn.next(); + if (!Lang.NAME.test(token)) + throw Error("illegal message field name: " + token); + fld["name"] = token; + this.tn.skip("="); + fld["id"] = mkId(this.tn.next()); + token = this.tn.peek(); + if (token === '[') + this._parseFieldOptions(fld); + this.tn.skip(";"); + + } else { + + type = typeof type !== 'undefined' ? type : this.tn.next(); + + if (type === "group") { + + // "A [legacy] group simply combines a nested message type and a field into a single declaration. In your + // code, you can treat this message just as if it had a Result type field called result (the latter name is + // converted to lower-case so that it does not conflict with the former)." + var grp = this._parseMessage(msg, fld); + if (!/^[A-Z]/.test(grp["name"])) + throw Error('illegal group name: '+grp["name"]); + fld["type"] = grp["name"]; + fld["name"] = grp["name"].toLowerCase(); + this.tn.omit(";"); + + } else { + + if (!Lang.TYPE.test(type) && !Lang.TYPEREF.test(type)) + throw Error("illegal message field type: " + type); + fld["type"] = type; + token = this.tn.next(); + if (!Lang.NAME.test(token)) + throw Error("illegal message field name: " + token); + fld["name"] = token; + this.tn.skip("="); + fld["id"] = mkId(this.tn.next()); + token = this.tn.peek(); + if (token === "[") + this._parseFieldOptions(fld); + this.tn.skip(";"); + + } + } + msg["fields"].push(fld); + return fld; + }; + + /** + * Parses a message oneof. + * @param {!Object} msg Message definition + * @private + */ + ParserPrototype._parseMessageOneOf = function(msg) { + var token = this.tn.next(); + if (!Lang.NAME.test(token)) + throw Error("illegal oneof name: "+token); + var name = token, + fld; + var fields = []; + this.tn.skip("{"); + while ((token = this.tn.next()) !== "}") { + fld = this._parseMessageField(msg, "optional", token); + fld["oneof"] = name; + fields.push(fld["id"]); + } + this.tn.omit(";"); + msg["oneofs"][name] = fields; + }; + + /** + * Parses a set of field option definitions. + * @param {!Object} fld Field definition + * @private + */ + ParserPrototype._parseFieldOptions = function(fld) { + this.tn.skip("["); + var token, + first = true; + while ((token = this.tn.peek()) !== ']') { + if (!first) + this.tn.skip(","); + this._parseOption(fld, true); + first = false; + } + this.tn.next(); + }; + + /** + * Parses an enum. + * @param {!Object} msg Message definition + * @private + */ + ParserPrototype._parseEnum = function(msg) { + var enm = { + "name": "", + "values": [], + "options": {} + }; + var token = this.tn.next(); + if (!Lang.NAME.test(token)) + throw Error("illegal name: "+token); + enm["name"] = token; + this.tn.skip("{"); + while ((token = this.tn.next()) !== '}') { + if (token === "option") + this._parseOption(enm); + else { + if (!Lang.NAME.test(token)) + throw Error("illegal name: "+token); + this.tn.skip("="); + var val = { + "name": token, + "id": mkId(this.tn.next(), true) + }; + token = this.tn.peek(); + if (token === "[") + this._parseFieldOptions({ "options": {} }); + this.tn.skip(";"); + enm["values"].push(val); + } + } + this.tn.omit(";"); + msg["enums"].push(enm); + }; + + /** + * Parses extension / reserved ranges. + * @returns {!Array.>} + * @private + */ + ParserPrototype._parseExtensionRanges = function() { + var ranges = []; + var token, + range, + value; + do { + range = []; + while (true) { + token = this.tn.next(); + switch (token) { + case "min": + value = ProtoBuf.ID_MIN; + break; + case "max": + value = ProtoBuf.ID_MAX; + break; + default: + value = mkNumber(token); + break; + } + range.push(value); + if (range.length === 2) + break; + if (this.tn.peek() !== "to") { + range.push(value); + break; + } + this.tn.next(); + } + ranges.push(range); + } while (this.tn.omit(",")); + this.tn.skip(";"); + return ranges; + }; + + /** + * Parses an extend block. + * @param {!Object} parent Parent object + * @private + */ + ParserPrototype._parseExtend = function(parent) { + var token = this.tn.next(); + if (!Lang.TYPEREF.test(token)) + throw Error("illegal extend reference: "+token); + var ext = { + "ref": token, + "fields": [] + }; + this.tn.skip("{"); + while ((token = this.tn.next()) !== '}') { + if (Lang.RULE.test(token)) + this._parseMessageField(ext, token); + else if (Lang.TYPEREF.test(token)) { + if (!this.proto3) + throw Error("illegal field rule: "+token); + this._parseMessageField(ext, "optional", token); + } else + throw Error("illegal extend token: "+token); + } + this.tn.omit(";"); + parent["messages"].push(ext); + return ext; + }; + + // ----- General ----- + + /** + * Returns a string representation of this parser. + * @returns {string} + */ + ParserPrototype.toString = function() { + return "Parser at line "+this.tn.line; + }; + + /** + * @alias ProtoBuf.DotProto.Parser + * @expose + */ + DotProto.Parser = Parser; + + return DotProto; + + })(ProtoBuf, ProtoBuf.Lang); + + /** + * @alias ProtoBuf.Reflect + * @expose + */ + ProtoBuf.Reflect = (function(ProtoBuf) { + "use strict"; + + /** + * Reflection types. + * @exports ProtoBuf.Reflect + * @namespace + */ + var Reflect = {}; + + /** + * Constructs a Reflect base class. + * @exports ProtoBuf.Reflect.T + * @constructor + * @abstract + * @param {!ProtoBuf.Builder} builder Builder reference + * @param {?ProtoBuf.Reflect.T} parent Parent object + * @param {string} name Object name + */ + var T = function(builder, parent, name) { + + /** + * Builder reference. + * @type {!ProtoBuf.Builder} + * @expose + */ + this.builder = builder; + + /** + * Parent object. + * @type {?ProtoBuf.Reflect.T} + * @expose + */ + this.parent = parent; + + /** + * Object name in namespace. + * @type {string} + * @expose + */ + this.name = name; + + /** + * Fully qualified class name + * @type {string} + * @expose + */ + this.className; + }; + + /** + * @alias ProtoBuf.Reflect.T.prototype + * @inner + */ + var TPrototype = T.prototype; + + /** + * Returns the fully qualified name of this object. + * @returns {string} Fully qualified name as of ".PATH.TO.THIS" + * @expose + */ + TPrototype.fqn = function() { + var name = this.name, + ptr = this; + do { + ptr = ptr.parent; + if (ptr == null) + break; + name = ptr.name+"."+name; + } while (true); + return name; + }; + + /** + * Returns a string representation of this Reflect object (its fully qualified name). + * @param {boolean=} includeClass Set to true to include the class name. Defaults to false. + * @return String representation + * @expose + */ + TPrototype.toString = function(includeClass) { + return (includeClass ? this.className + " " : "") + this.fqn(); + }; + + /** + * Builds this type. + * @throws {Error} If this type cannot be built directly + * @expose + */ + TPrototype.build = function() { + throw Error(this.toString(true)+" cannot be built directly"); + }; + + /** + * @alias ProtoBuf.Reflect.T + * @expose + */ + Reflect.T = T; + + /** + * Constructs a new Namespace. + * @exports ProtoBuf.Reflect.Namespace + * @param {!ProtoBuf.Builder} builder Builder reference + * @param {?ProtoBuf.Reflect.Namespace} parent Namespace parent + * @param {string} name Namespace name + * @param {Object.=} options Namespace options + * @param {string?} syntax The syntax level of this definition (e.g., proto3) + * @constructor + * @extends ProtoBuf.Reflect.T + */ + var Namespace = function(builder, parent, name, options, syntax) { + T.call(this, builder, parent, name); + + /** + * @override + */ + this.className = "Namespace"; + + /** + * Children inside the namespace. + * @type {!Array.} + */ + this.children = []; + + /** + * Options. + * @type {!Object.} + */ + this.options = options || {}; + + /** + * Syntax level (e.g., proto2 or proto3). + * @type {!string} + */ + this.syntax = syntax || "proto2"; + }; + + /** + * @alias ProtoBuf.Reflect.Namespace.prototype + * @inner + */ + var NamespacePrototype = Namespace.prototype = Object.create(T.prototype); + + /** + * Returns an array of the namespace's children. + * @param {ProtoBuf.Reflect.T=} type Filter type (returns instances of this type only). Defaults to null (all children). + * @return {Array.} + * @expose + */ + NamespacePrototype.getChildren = function(type) { + type = type || null; + if (type == null) + return this.children.slice(); + var children = []; + for (var i=0, k=this.children.length; i} qn Qualified name to resolve + * @param {boolean=} excludeNonNamespace Excludes non-namespace types, defaults to `false` + * @return {?ProtoBuf.Reflect.Namespace} The resolved type or null if not found + * @expose + */ + NamespacePrototype.resolve = function(qn, excludeNonNamespace) { + var part = typeof qn === 'string' ? qn.split(".") : qn, + ptr = this, + i = 0; + if (part[i] === "") { // Fully qualified name, e.g. ".My.Message' + while (ptr.parent !== null) + ptr = ptr.parent; + i++; + } + var child; + do { + do { + if (!(ptr instanceof Reflect.Namespace)) { + ptr = null; + break; + } + child = ptr.getChild(part[i]); + if (!child || !(child instanceof Reflect.T) || (excludeNonNamespace && !(child instanceof Reflect.Namespace))) { + ptr = null; + break; + } + ptr = child; i++; + } while (i < part.length); + if (ptr != null) + break; // Found + // Else search the parent + if (this.parent !== null) + return this.parent.resolve(qn, excludeNonNamespace); + } while (ptr != null); + return ptr; + }; + + /** + * Determines the shortest qualified name of the specified type, if any, relative to this namespace. + * @param {!ProtoBuf.Reflect.T} t Reflection type + * @returns {string} The shortest qualified name or, if there is none, the fqn + * @expose + */ + NamespacePrototype.qn = function(t) { + var part = [], ptr = t; + do { + part.unshift(ptr.name); + ptr = ptr.parent; + } while (ptr !== null); + for (var len=1; len <= part.length; len++) { + var qn = part.slice(part.length-len); + if (t === this.resolve(qn, t instanceof Reflect.Namespace)) + return qn.join("."); + } + return t.fqn(); + }; + + /** + * Builds the namespace and returns the runtime counterpart. + * @return {Object.} Runtime namespace + * @expose + */ + NamespacePrototype.build = function() { + /** @dict */ + var ns = {}; + var children = this.children; + for (var i=0, k=children.length, child; i} + */ + NamespacePrototype.buildOpt = function() { + var opt = {}, + keys = Object.keys(this.options); + for (var i=0, k=keys.length; i}null} Option value or NULL if there is no such option + */ + NamespacePrototype.getOption = function(name) { + if (typeof name === 'undefined') + return this.options; + return typeof this.options[name] !== 'undefined' ? this.options[name] : null; + }; + + /** + * @alias ProtoBuf.Reflect.Namespace + * @expose + */ + Reflect.Namespace = Namespace; + + /** + * Constructs a new Element implementation that checks and converts values for a + * particular field type, as appropriate. + * + * An Element represents a single value: either the value of a singular field, + * or a value contained in one entry of a repeated field or map field. This + * class does not implement these higher-level concepts; it only encapsulates + * the low-level typechecking and conversion. + * + * @exports ProtoBuf.Reflect.Element + * @param {{name: string, wireType: number}} type Resolved data type + * @param {ProtoBuf.Reflect.T|null} resolvedType Resolved type, if relevant + * (e.g. submessage field). + * @param {boolean} isMapKey Is this element a Map key? The value will be + * converted to string form if so. + * @param {string} syntax Syntax level of defining message type, e.g., + * proto2 or proto3. + * @constructor + */ + var Element = function(type, resolvedType, isMapKey, syntax) { + + /** + * Element type, as a string (e.g., int32). + * @type {{name: string, wireType: number}} + */ + this.type = type; + + /** + * Element type reference to submessage or enum definition, if needed. + * @type {ProtoBuf.Reflect.T|null} + */ + this.resolvedType = resolvedType; + + /** + * Element is a map key. + * @type {boolean} + */ + this.isMapKey = isMapKey; + + /** + * Syntax level of defining message type, e.g., proto2 or proto3. + * @type {string} + */ + this.syntax = syntax; + + if (isMapKey && ProtoBuf.MAP_KEY_TYPES.indexOf(type) < 0) + throw Error("Invalid map key type: " + type.name); + }; + + var ElementPrototype = Element.prototype; + + /** + * Obtains a (new) default value for the specified type. + * @param type {string|{name: string, wireType: number}} Field type + * @returns {*} Default value + * @inner + */ + function mkDefault(type) { + if (typeof type === 'string') + type = ProtoBuf.TYPES[type]; + if (typeof type.defaultValue === 'undefined') + throw Error("default value for type "+type.name+" is not supported"); + if (type == ProtoBuf.TYPES["bytes"]) + return new ByteBuffer(0); + return type.defaultValue; + } + + /** + * Returns the default value for this field in proto3. + * @function + * @param type {string|{name: string, wireType: number}} the field type + * @returns {*} Default value + */ + Element.defaultFieldValue = mkDefault; + + /** + * Makes a Long from a value. + * @param {{low: number, high: number, unsigned: boolean}|string|number} value Value + * @param {boolean=} unsigned Whether unsigned or not, defaults to reuse it from Long-like objects or to signed for + * strings and numbers + * @returns {!Long} + * @throws {Error} If the value cannot be converted to a Long + * @inner + */ + function mkLong(value, unsigned) { + if (value && typeof value.low === 'number' && typeof value.high === 'number' && typeof value.unsigned === 'boolean' + && value.low === value.low && value.high === value.high) + return new ProtoBuf.Long(value.low, value.high, typeof unsigned === 'undefined' ? value.unsigned : unsigned); + if (typeof value === 'string') + return ProtoBuf.Long.fromString(value, unsigned || false, 10); + if (typeof value === 'number') + return ProtoBuf.Long.fromNumber(value, unsigned || false); + throw Error("not convertible to Long"); + } + + /** + * Checks if the given value can be set for an element of this type (singular + * field or one element of a repeated field or map). + * @param {*} value Value to check + * @return {*} Verified, maybe adjusted, value + * @throws {Error} If the value cannot be verified for this element slot + * @expose + */ + ElementPrototype.verifyValue = function(value) { + var self = this; + function fail(val, msg) { + throw Error("Illegal value for "+self.toString(true)+" of type "+self.type.name+": "+val+" ("+msg+")"); + } + switch (this.type) { + // Signed 32bit + case ProtoBuf.TYPES["int32"]: + case ProtoBuf.TYPES["sint32"]: + case ProtoBuf.TYPES["sfixed32"]: + // Account for !NaN: value === value + if (typeof value !== 'number' || (value === value && value % 1 !== 0)) + fail(typeof value, "not an integer"); + return value > 4294967295 ? value | 0 : value; + + // Unsigned 32bit + case ProtoBuf.TYPES["uint32"]: + case ProtoBuf.TYPES["fixed32"]: + if (typeof value !== 'number' || (value === value && value % 1 !== 0)) + fail(typeof value, "not an integer"); + return value < 0 ? value >>> 0 : value; + + // Signed 64bit + case ProtoBuf.TYPES["int64"]: + case ProtoBuf.TYPES["sint64"]: + case ProtoBuf.TYPES["sfixed64"]: { + if (ProtoBuf.Long) + try { + return mkLong(value, false); + } catch (e) { + fail(typeof value, e.message); + } + else + fail(typeof value, "requires Long.js"); + } + + // Unsigned 64bit + case ProtoBuf.TYPES["uint64"]: + case ProtoBuf.TYPES["fixed64"]: { + if (ProtoBuf.Long) + try { + return mkLong(value, true); + } catch (e) { + fail(typeof value, e.message); + } + else + fail(typeof value, "requires Long.js"); + } + + // Bool + case ProtoBuf.TYPES["bool"]: + if (typeof value !== 'boolean') + fail(typeof value, "not a boolean"); + return value; + + // Float + case ProtoBuf.TYPES["float"]: + case ProtoBuf.TYPES["double"]: + if (typeof value !== 'number') + fail(typeof value, "not a number"); + return value; + + // Length-delimited string + case ProtoBuf.TYPES["string"]: + if (typeof value !== 'string' && !(value && value instanceof String)) + fail(typeof value, "not a string"); + return ""+value; // Convert String object to string + + // Length-delimited bytes + case ProtoBuf.TYPES["bytes"]: + if (ByteBuffer.isByteBuffer(value)) + return value; + return ByteBuffer.wrap(value, "base64"); + + // Constant enum value + case ProtoBuf.TYPES["enum"]: { + var values = this.resolvedType.getChildren(ProtoBuf.Reflect.Enum.Value); + for (i=0; i 4294967295 || value < 0) + fail(typeof value, "not in range for uint32") + return value; + } else { + // proto2 requires enum values to be valid. + fail(value, "not a valid enum value"); + } + } + // Embedded message + case ProtoBuf.TYPES["group"]: + case ProtoBuf.TYPES["message"]: { + if (!value || typeof value !== 'object') + fail(typeof value, "object expected"); + if (value instanceof this.resolvedType.clazz) + return value; + if (value instanceof ProtoBuf.Builder.Message) { + // Mismatched type: Convert to object (see: https://github.com/dcodeIO/ProtoBuf.js/issues/180) + var obj = {}; + for (var i in value) + if (value.hasOwnProperty(i)) + obj[i] = value[i]; + value = obj; + } + // Else let's try to construct one from a key-value object + return new (this.resolvedType.clazz)(value); // May throw for a hundred of reasons + } + } + + // We should never end here + throw Error("[INTERNAL] Illegal value for "+this.toString(true)+": "+value+" (undefined type "+this.type+")"); + }; + + /** + * Calculates the byte length of an element on the wire. + * @param {number} id Field number + * @param {*} value Field value + * @returns {number} Byte length + * @throws {Error} If the value cannot be calculated + * @expose + */ + ElementPrototype.calculateLength = function(id, value) { + if (value === null) return 0; // Nothing to encode + // Tag has already been written + var n; + switch (this.type) { + case ProtoBuf.TYPES["int32"]: + return value < 0 ? ByteBuffer.calculateVarint64(value) : ByteBuffer.calculateVarint32(value); + case ProtoBuf.TYPES["uint32"]: + return ByteBuffer.calculateVarint32(value); + case ProtoBuf.TYPES["sint32"]: + return ByteBuffer.calculateVarint32(ByteBuffer.zigZagEncode32(value)); + case ProtoBuf.TYPES["fixed32"]: + case ProtoBuf.TYPES["sfixed32"]: + case ProtoBuf.TYPES["float"]: + return 4; + case ProtoBuf.TYPES["int64"]: + case ProtoBuf.TYPES["uint64"]: + return ByteBuffer.calculateVarint64(value); + case ProtoBuf.TYPES["sint64"]: + return ByteBuffer.calculateVarint64(ByteBuffer.zigZagEncode64(value)); + case ProtoBuf.TYPES["fixed64"]: + case ProtoBuf.TYPES["sfixed64"]: + return 8; + case ProtoBuf.TYPES["bool"]: + return 1; + case ProtoBuf.TYPES["enum"]: + return ByteBuffer.calculateVarint32(value); + case ProtoBuf.TYPES["double"]: + return 8; + case ProtoBuf.TYPES["string"]: + n = ByteBuffer.calculateUTF8Bytes(value); + return ByteBuffer.calculateVarint32(n) + n; + case ProtoBuf.TYPES["bytes"]: + if (value.remaining() < 0) + throw Error("Illegal value for "+this.toString(true)+": "+value.remaining()+" bytes remaining"); + return ByteBuffer.calculateVarint32(value.remaining()) + value.remaining(); + case ProtoBuf.TYPES["message"]: + n = this.resolvedType.calculate(value); + return ByteBuffer.calculateVarint32(n) + n; + case ProtoBuf.TYPES["group"]: + n = this.resolvedType.calculate(value); + return n + ByteBuffer.calculateVarint32((id << 3) | ProtoBuf.WIRE_TYPES.ENDGROUP); + } + // We should never end here + throw Error("[INTERNAL] Illegal value to encode in "+this.toString(true)+": "+value+" (unknown type)"); + }; + + /** + * Encodes a value to the specified buffer. Does not encode the key. + * @param {number} id Field number + * @param {*} value Field value + * @param {ByteBuffer} buffer ByteBuffer to encode to + * @return {ByteBuffer} The ByteBuffer for chaining + * @throws {Error} If the value cannot be encoded + * @expose + */ + ElementPrototype.encodeValue = function(id, value, buffer) { + if (value === null) return buffer; // Nothing to encode + // Tag has already been written + + switch (this.type) { + // 32bit signed varint + case ProtoBuf.TYPES["int32"]: + // "If you use int32 or int64 as the type for a negative number, the resulting varint is always ten bytes + // long – it is, effectively, treated like a very large unsigned integer." (see #122) + if (value < 0) + buffer.writeVarint64(value); + else + buffer.writeVarint32(value); + break; + + // 32bit unsigned varint + case ProtoBuf.TYPES["uint32"]: + buffer.writeVarint32(value); + break; + + // 32bit varint zig-zag + case ProtoBuf.TYPES["sint32"]: + buffer.writeVarint32ZigZag(value); + break; + + // Fixed unsigned 32bit + case ProtoBuf.TYPES["fixed32"]: + buffer.writeUint32(value); + break; + + // Fixed signed 32bit + case ProtoBuf.TYPES["sfixed32"]: + buffer.writeInt32(value); + break; + + // 64bit varint as-is + case ProtoBuf.TYPES["int64"]: + case ProtoBuf.TYPES["uint64"]: + buffer.writeVarint64(value); // throws + break; + + // 64bit varint zig-zag + case ProtoBuf.TYPES["sint64"]: + buffer.writeVarint64ZigZag(value); // throws + break; + + // Fixed unsigned 64bit + case ProtoBuf.TYPES["fixed64"]: + buffer.writeUint64(value); // throws + break; + + // Fixed signed 64bit + case ProtoBuf.TYPES["sfixed64"]: + buffer.writeInt64(value); // throws + break; + + // Bool + case ProtoBuf.TYPES["bool"]: + if (typeof value === 'string') + buffer.writeVarint32(value.toLowerCase() === 'false' ? 0 : !!value); + else + buffer.writeVarint32(value ? 1 : 0); + break; + + // Constant enum value + case ProtoBuf.TYPES["enum"]: + buffer.writeVarint32(value); + break; + + // 32bit float + case ProtoBuf.TYPES["float"]: + buffer.writeFloat32(value); + break; + + // 64bit float + case ProtoBuf.TYPES["double"]: + buffer.writeFloat64(value); + break; + + // Length-delimited string + case ProtoBuf.TYPES["string"]: + buffer.writeVString(value); + break; + + // Length-delimited bytes + case ProtoBuf.TYPES["bytes"]: + if (value.remaining() < 0) + throw Error("Illegal value for "+this.toString(true)+": "+value.remaining()+" bytes remaining"); + var prevOffset = value.offset; + buffer.writeVarint32(value.remaining()); + buffer.append(value); + value.offset = prevOffset; + break; + + // Embedded message + case ProtoBuf.TYPES["message"]: + var bb = new ByteBuffer().LE(); + this.resolvedType.encode(value, bb); + buffer.writeVarint32(bb.offset); + buffer.append(bb.flip()); + break; + + // Legacy group + case ProtoBuf.TYPES["group"]: + this.resolvedType.encode(value, buffer); + buffer.writeVarint32((id << 3) | ProtoBuf.WIRE_TYPES.ENDGROUP); + break; + + default: + // We should never end here + throw Error("[INTERNAL] Illegal value to encode in "+this.toString(true)+": "+value+" (unknown type)"); + } + return buffer; + }; + + /** + * Decode one element value from the specified buffer. + * @param {ByteBuffer} buffer ByteBuffer to decode from + * @param {number} wireType The field wire type + * @param {number} id The field number + * @return {*} Decoded value + * @throws {Error} If the field cannot be decoded + * @expose + */ + ElementPrototype.decode = function(buffer, wireType, id) { + if (wireType != this.type.wireType) + throw Error("Unexpected wire type for element"); + + var value, nBytes; + switch (this.type) { + // 32bit signed varint + case ProtoBuf.TYPES["int32"]: + return buffer.readVarint32() | 0; + + // 32bit unsigned varint + case ProtoBuf.TYPES["uint32"]: + return buffer.readVarint32() >>> 0; + + // 32bit signed varint zig-zag + case ProtoBuf.TYPES["sint32"]: + return buffer.readVarint32ZigZag() | 0; + + // Fixed 32bit unsigned + case ProtoBuf.TYPES["fixed32"]: + return buffer.readUint32() >>> 0; + + case ProtoBuf.TYPES["sfixed32"]: + return buffer.readInt32() | 0; + + // 64bit signed varint + case ProtoBuf.TYPES["int64"]: + return buffer.readVarint64(); + + // 64bit unsigned varint + case ProtoBuf.TYPES["uint64"]: + return buffer.readVarint64().toUnsigned(); + + // 64bit signed varint zig-zag + case ProtoBuf.TYPES["sint64"]: + return buffer.readVarint64ZigZag(); + + // Fixed 64bit unsigned + case ProtoBuf.TYPES["fixed64"]: + return buffer.readUint64(); + + // Fixed 64bit signed + case ProtoBuf.TYPES["sfixed64"]: + return buffer.readInt64(); + + // Bool varint + case ProtoBuf.TYPES["bool"]: + return !!buffer.readVarint32(); + + // Constant enum value (varint) + case ProtoBuf.TYPES["enum"]: + // The following Builder.Message#set will already throw + return buffer.readVarint32(); + + // 32bit float + case ProtoBuf.TYPES["float"]: + return buffer.readFloat(); + + // 64bit float + case ProtoBuf.TYPES["double"]: + return buffer.readDouble(); + + // Length-delimited string + case ProtoBuf.TYPES["string"]: + return buffer.readVString(); + + // Length-delimited bytes + case ProtoBuf.TYPES["bytes"]: { + nBytes = buffer.readVarint32(); + if (buffer.remaining() < nBytes) + throw Error("Illegal number of bytes for "+this.toString(true)+": "+nBytes+" required but got only "+buffer.remaining()); + value = buffer.clone(); // Offset already set + value.limit = value.offset+nBytes; + buffer.offset += nBytes; + return value; + } + + // Length-delimited embedded message + case ProtoBuf.TYPES["message"]: { + nBytes = buffer.readVarint32(); + return this.resolvedType.decode(buffer, nBytes); + } + + // Legacy group + case ProtoBuf.TYPES["group"]: + return this.resolvedType.decode(buffer, -1, id); + } + + // We should never end here + throw Error("[INTERNAL] Illegal decode type"); + }; + + /** + * Converts a value from a string to the canonical element type. + * + * Legal only when isMapKey is true. + * + * @param {string} str The string value + * @returns {*} The value + */ + ElementPrototype.valueFromString = function(str) { + if (!this.isMapKey) { + throw Error("valueFromString() called on non-map-key element"); + } + + switch (this.type) { + case ProtoBuf.TYPES["int32"]: + case ProtoBuf.TYPES["sint32"]: + case ProtoBuf.TYPES["sfixed32"]: + case ProtoBuf.TYPES["uint32"]: + case ProtoBuf.TYPES["fixed32"]: + return this.verifyValue(parseInt(str)); + + case ProtoBuf.TYPES["int64"]: + case ProtoBuf.TYPES["sint64"]: + case ProtoBuf.TYPES["sfixed64"]: + case ProtoBuf.TYPES["uint64"]: + case ProtoBuf.TYPES["fixed64"]: + // Long-based fields support conversions from string already. + return this.verifyValue(str); + + case ProtoBuf.TYPES["bool"]: + return str === "true"; + + case ProtoBuf.TYPES["string"]: + return this.verifyValue(str); + + case ProtoBuf.TYPES["bytes"]: + return ByteBuffer.fromBinary(str); + } + }; + + /** + * Converts a value from the canonical element type to a string. + * + * It should be the case that `valueFromString(valueToString(val))` returns + * a value equivalent to `verifyValue(val)` for every legal value of `val` + * according to this element type. + * + * This may be used when the element must be stored or used as a string, + * e.g., as a map key on an Object. + * + * Legal only when isMapKey is true. + * + * @param {*} val The value + * @returns {string} The string form of the value. + */ + ElementPrototype.valueToString = function(value) { + if (!this.isMapKey) { + throw Error("valueToString() called on non-map-key element"); + } + + if (this.type === ProtoBuf.TYPES["bytes"]) { + return value.toString("binary"); + } else { + return value.toString(); + } + }; + + /** + * @alias ProtoBuf.Reflect.Element + * @expose + */ + Reflect.Element = Element; + + /** + * Constructs a new Message. + * @exports ProtoBuf.Reflect.Message + * @param {!ProtoBuf.Builder} builder Builder reference + * @param {!ProtoBuf.Reflect.Namespace} parent Parent message or namespace + * @param {string} name Message name + * @param {Object.=} options Message options + * @param {boolean=} isGroup `true` if this is a legacy group + * @param {string?} syntax The syntax level of this definition (e.g., proto3) + * @constructor + * @extends ProtoBuf.Reflect.Namespace + */ + var Message = function(builder, parent, name, options, isGroup, syntax) { + Namespace.call(this, builder, parent, name, options, syntax); + + /** + * @override + */ + this.className = "Message"; + + /** + * Extensions range. + * @type {!Array.|undefined} + * @expose + */ + this.extensions = undefined; + + /** + * Runtime message class. + * @type {?function(new:ProtoBuf.Builder.Message)} + * @expose + */ + this.clazz = null; + + /** + * Whether this is a legacy group or not. + * @type {boolean} + * @expose + */ + this.isGroup = !!isGroup; + + // The following cached collections are used to efficiently iterate over or look up fields when decoding. + + /** + * Cached fields. + * @type {?Array.} + * @private + */ + this._fields = null; + + /** + * Cached fields by id. + * @type {?Object.} + * @private + */ + this._fieldsById = null; + + /** + * Cached fields by name. + * @type {?Object.} + * @private + */ + this._fieldsByName = null; + }; + + /** + * @alias ProtoBuf.Reflect.Message.prototype + * @inner + */ + var MessagePrototype = Message.prototype = Object.create(Namespace.prototype); + + /** + * Builds the message and returns the runtime counterpart, which is a fully functional class. + * @see ProtoBuf.Builder.Message + * @param {boolean=} rebuild Whether to rebuild or not, defaults to false + * @return {ProtoBuf.Reflect.Message} Message class + * @throws {Error} If the message cannot be built + * @expose + */ + MessagePrototype.build = function(rebuild) { + if (this.clazz && !rebuild) + return this.clazz; + + // Create the runtime Message class in its own scope + var clazz = (function(ProtoBuf, T) { + + var fields = T.getChildren(ProtoBuf.Reflect.Message.Field), + oneofs = T.getChildren(ProtoBuf.Reflect.Message.OneOf); + + /** + * Constructs a new runtime Message. + * @name ProtoBuf.Builder.Message + * @class Barebone of all runtime messages. + * @param {!Object.|string} values Preset values + * @param {...string} var_args + * @constructor + * @throws {Error} If the message cannot be created + */ + var Message = function(values, var_args) { + ProtoBuf.Builder.Message.call(this); + + // Create virtual oneof properties + for (var i=0, k=oneofs.length; i 0) { + var value; + // Set field values from a values object + if (arguments.length === 1 && values !== null && typeof values === 'object' && + /* not _another_ Message */ (typeof values.encode !== 'function' || values instanceof Message) && + /* not a repeated field */ !Array.isArray(values) && + /* not a Map */ !(values instanceof ProtoBuf.Map) && + /* not a ByteBuffer */ !ByteBuffer.isByteBuffer(values) && + /* not an ArrayBuffer */ !(values instanceof ArrayBuffer) && + /* not a Long */ !(ProtoBuf.Long && values instanceof ProtoBuf.Long)) { + this.$set(values); + } else // Set field values from arguments, in declaration order + for (i=0, k=arguments.length; i} keyOrObj String key or plain object holding multiple values + * @param {(*|boolean)=} value Value to set if key is a string, otherwise omitted + * @param {boolean=} noAssert Whether to not assert for an actual field / proper value type, defaults to `false` + * @returns {!ProtoBuf.Builder.Message} this + * @throws {Error} If the value cannot be set + * @expose + */ + MessagePrototype.set = function(keyOrObj, value, noAssert) { + if (keyOrObj && typeof keyOrObj === 'object') { + noAssert = value; + for (var ikey in keyOrObj) + if (keyOrObj.hasOwnProperty(ikey) && typeof (value = keyOrObj[ikey]) !== 'undefined') + this.$set(ikey, value, noAssert); + return this; + } + var field = T._fieldsByName[keyOrObj]; + if (!noAssert) { + if (!field) + throw Error(this+"#"+keyOrObj+" is not a field: undefined"); + if (!(field instanceof ProtoBuf.Reflect.Message.Field)) + throw Error(this+"#"+keyOrObj+" is not a field: "+field.toString(true)); + this[field.name] = (value = field.verifyValue(value)); // May throw + } else + this[keyOrObj] = value; + if (field && field.oneof) { // Field is part of an OneOf (not a virtual OneOf field) + var currentField = this[field.oneof.name]; // Virtual field references currently set field + if (value !== null) { + if (currentField !== null && currentField !== field.name) + this[currentField] = null; // Clear currently set field + this[field.oneof.name] = field.name; // Point virtual field at this field + } else if (/* value === null && */currentField === keyOrObj) + this[field.oneof.name] = null; // Clear virtual field (current field explicitly cleared) + } + return this; + }; + + /** + * Sets a field's value. This is an alias for [@link ProtoBuf.Builder.Message#set}. + * @name ProtoBuf.Builder.Message#$set + * @function + * @param {string|!Object.} keyOrObj String key or plain object holding multiple values + * @param {(*|boolean)=} value Value to set if key is a string, otherwise omitted + * @param {boolean=} noAssert Whether to not assert the value, defaults to `false` + * @throws {Error} If the value cannot be set + * @expose + */ + MessagePrototype.$set = MessagePrototype.set; + + /** + * Gets a field's value. + * @name ProtoBuf.Builder.Message#get + * @function + * @param {string} key Key + * @param {boolean=} noAssert Whether to not assert for an actual field, defaults to `false` + * @return {*} Value + * @throws {Error} If there is no such field + * @expose + */ + MessagePrototype.get = function(key, noAssert) { + if (noAssert) + return this[key]; + var field = T._fieldsByName[key]; + if (!field || !(field instanceof ProtoBuf.Reflect.Message.Field)) + throw Error(this+"#"+key+" is not a field: undefined"); + if (!(field instanceof ProtoBuf.Reflect.Message.Field)) + throw Error(this+"#"+key+" is not a field: "+field.toString(true)); + return this[field.name]; + }; + + /** + * Gets a field's value. This is an alias for {@link ProtoBuf.Builder.Message#$get}. + * @name ProtoBuf.Builder.Message#$get + * @function + * @param {string} key Key + * @return {*} Value + * @throws {Error} If there is no such field + * @expose + */ + MessagePrototype.$get = MessagePrototype.get; + + // Getters and setters + + for (var i=0; i} data Data payload + * @param {(!ByteBuffer|boolean)=} buffer ByteBuffer to encode to. Will create a new one and flip it if omitted. + * @param {boolean=} noVerify Whether to not verify field values, defaults to `false` + * @return {!ByteBuffer} Encoded message as a ByteBuffer + * @expose + */ + Message.encode = function(data, buffer, noVerify) { + return new Message(data).encode(buffer, noVerify); + }; + + /** + * Calculates the byte length of the message. + * @name ProtoBuf.Builder.Message#calculate + * @function + * @returns {number} Byte length + * @throws {Error} If the message cannot be calculated or if required fields are missing. + * @expose + */ + MessagePrototype.calculate = function() { + return T.calculate(this); + }; + + /** + * Encodes the varint32 length-delimited message. + * @name ProtoBuf.Builder.Message#encodeDelimited + * @function + * @param {(!ByteBuffer|boolean)=} buffer ByteBuffer to encode to. Will create a new one and flip it if omitted. + * @param {boolean=} noVerify Whether to not verify field values, defaults to `false` + * @return {!ByteBuffer} Encoded message as a ByteBuffer + * @throws {Error} If the message cannot be encoded or if required fields are missing. The later still + * returns the encoded ByteBuffer in the `encoded` property on the error. + * @expose + */ + MessagePrototype.encodeDelimited = function(buffer, noVerify) { + var isNew = false; + if (!buffer) + buffer = new ByteBuffer(), + isNew = true; + var enc = new ByteBuffer().LE(); + T.encode(this, enc, noVerify).flip(); + buffer.writeVarint32(enc.remaining()); + buffer.append(enc); + return isNew ? buffer.flip() : buffer; + }; + + /** + * Directly encodes the message to an ArrayBuffer. + * @name ProtoBuf.Builder.Message#encodeAB + * @function + * @return {ArrayBuffer} Encoded message as ArrayBuffer + * @throws {Error} If the message cannot be encoded or if required fields are missing. The later still + * returns the encoded ArrayBuffer in the `encoded` property on the error. + * @expose + */ + MessagePrototype.encodeAB = function() { + try { + return this.encode().toArrayBuffer(); + } catch (e) { + if (e["encoded"]) e["encoded"] = e["encoded"].toArrayBuffer(); + throw(e); + } + }; + + /** + * Returns the message as an ArrayBuffer. This is an alias for {@link ProtoBuf.Builder.Message#encodeAB}. + * @name ProtoBuf.Builder.Message#toArrayBuffer + * @function + * @return {ArrayBuffer} Encoded message as ArrayBuffer + * @throws {Error} If the message cannot be encoded or if required fields are missing. The later still + * returns the encoded ArrayBuffer in the `encoded` property on the error. + * @expose + */ + MessagePrototype.toArrayBuffer = MessagePrototype.encodeAB; + + /** + * Directly encodes the message to a node Buffer. + * @name ProtoBuf.Builder.Message#encodeNB + * @function + * @return {!Buffer} + * @throws {Error} If the message cannot be encoded, not running under node.js or if required fields are + * missing. The later still returns the encoded node Buffer in the `encoded` property on the error. + * @expose + */ + MessagePrototype.encodeNB = function() { + try { + return this.encode().toBuffer(); + } catch (e) { + if (e["encoded"]) e["encoded"] = e["encoded"].toBuffer(); + throw(e); + } + }; + + /** + * Returns the message as a node Buffer. This is an alias for {@link ProtoBuf.Builder.Message#encodeNB}. + * @name ProtoBuf.Builder.Message#toBuffer + * @function + * @return {!Buffer} + * @throws {Error} If the message cannot be encoded or if required fields are missing. The later still + * returns the encoded node Buffer in the `encoded` property on the error. + * @expose + */ + MessagePrototype.toBuffer = MessagePrototype.encodeNB; + + /** + * Directly encodes the message to a base64 encoded string. + * @name ProtoBuf.Builder.Message#encode64 + * @function + * @return {string} Base64 encoded string + * @throws {Error} If the underlying buffer cannot be encoded or if required fields are missing. The later + * still returns the encoded base64 string in the `encoded` property on the error. + * @expose + */ + MessagePrototype.encode64 = function() { + try { + return this.encode().toBase64(); + } catch (e) { + if (e["encoded"]) e["encoded"] = e["encoded"].toBase64(); + throw(e); + } + }; + + /** + * Returns the message as a base64 encoded string. This is an alias for {@link ProtoBuf.Builder.Message#encode64}. + * @name ProtoBuf.Builder.Message#toBase64 + * @function + * @return {string} Base64 encoded string + * @throws {Error} If the message cannot be encoded or if required fields are missing. The later still + * returns the encoded base64 string in the `encoded` property on the error. + * @expose + */ + MessagePrototype.toBase64 = MessagePrototype.encode64; + + /** + * Directly encodes the message to a hex encoded string. + * @name ProtoBuf.Builder.Message#encodeHex + * @function + * @return {string} Hex encoded string + * @throws {Error} If the underlying buffer cannot be encoded or if required fields are missing. The later + * still returns the encoded hex string in the `encoded` property on the error. + * @expose + */ + MessagePrototype.encodeHex = function() { + try { + return this.encode().toHex(); + } catch (e) { + if (e["encoded"]) e["encoded"] = e["encoded"].toHex(); + throw(e); + } + }; + + /** + * Returns the message as a hex encoded string. This is an alias for {@link ProtoBuf.Builder.Message#encodeHex}. + * @name ProtoBuf.Builder.Message#toHex + * @function + * @return {string} Hex encoded string + * @throws {Error} If the message cannot be encoded or if required fields are missing. The later still + * returns the encoded hex string in the `encoded` property on the error. + * @expose + */ + MessagePrototype.toHex = MessagePrototype.encodeHex; + + /** + * Clones a message object or field value to a raw object. + * @param {*} obj Object to clone + * @param {boolean} binaryAsBase64 Whether to include binary data as base64 strings or as a buffer otherwise + * @param {boolean} longsAsStrings Whether to encode longs as strings + * @param {!ProtoBuf.Reflect.T=} resolvedType The resolved field type if a field + * @returns {*} Cloned object + * @inner + */ + function cloneRaw(obj, binaryAsBase64, longsAsStrings, resolvedType) { + if (obj === null || typeof obj !== 'object') { + // Convert enum values to their respective names + if (resolvedType && resolvedType instanceof ProtoBuf.Reflect.Enum) { + var name = ProtoBuf.Reflect.Enum.getName(resolvedType.object, obj); + if (name !== null) + return name; + } + // Pass-through string, number, boolean, null... + return obj; + } + // Convert ByteBuffers to raw buffer or strings + if (ByteBuffer.isByteBuffer(obj)) + return binaryAsBase64 ? obj.toBase64() : obj.toBuffer(); + // Convert Longs to proper objects or strings + if (ProtoBuf.Long.isLong(obj)) + return longsAsStrings ? obj.toString() : ProtoBuf.Long.fromValue(obj); + var clone; + // Clone arrays + if (Array.isArray(obj)) { + clone = []; + obj.forEach(function(v, k) { + clone[k] = cloneRaw(v, binaryAsBase64, longsAsStrings, resolvedType); + }); + return clone; + } + clone = {}; + // Convert maps to objects + if (obj instanceof ProtoBuf.Map) { + var it = obj.entries(); + for (var e = it.next(); !e.done; e = it.next()) + clone[obj.keyElem.valueToString(e.value[0])] = cloneRaw(e.value[1], binaryAsBase64, longsAsStrings, obj.valueElem.resolvedType); + return clone; + } + // Everything else is a non-null object + var type = obj.$type, + field = undefined; + for (var i in obj) + if (obj.hasOwnProperty(i)) { + if (type && (field = type.getChild(i))) + clone[i] = cloneRaw(obj[i], binaryAsBase64, longsAsStrings, field.resolvedType); + else + clone[i] = cloneRaw(obj[i], binaryAsBase64, longsAsStrings); + } + return clone; + } + + /** + * Returns the message's raw payload. + * @param {boolean=} binaryAsBase64 Whether to include binary data as base64 strings instead of Buffers, defaults to `false` + * @param {boolean} longsAsStrings Whether to encode longs as strings + * @returns {Object.} Raw payload + * @expose + */ + MessagePrototype.toRaw = function(binaryAsBase64, longsAsStrings) { + return cloneRaw(this, !!binaryAsBase64, !!longsAsStrings, this.$type); + }; + + /** + * Encodes a message to JSON. + * @returns {string} JSON string + * @expose + */ + MessagePrototype.encodeJSON = function() { + return JSON.stringify( + cloneRaw(this, + /* binary-as-base64 */ true, + /* longs-as-strings */ true, + this.$type + ) + ); + }; + + /** + * Decodes a message from the specified buffer or string. + * @name ProtoBuf.Builder.Message.decode + * @function + * @param {!ByteBuffer|!ArrayBuffer|!Buffer|string} buffer Buffer to decode from + * @param {(number|string)=} length Message length. Defaults to decode all the remainig data. + * @param {string=} enc Encoding if buffer is a string: hex, utf8 (not recommended), defaults to base64 + * @return {!ProtoBuf.Builder.Message} Decoded message + * @throws {Error} If the message cannot be decoded or if required fields are missing. The later still + * returns the decoded message with missing fields in the `decoded` property on the error. + * @expose + * @see ProtoBuf.Builder.Message.decode64 + * @see ProtoBuf.Builder.Message.decodeHex + */ + Message.decode = function(buffer, length, enc) { + if (typeof length === 'string') + enc = length, + length = -1; + if (typeof buffer === 'string') + buffer = ByteBuffer.wrap(buffer, enc ? enc : "base64"); + buffer = ByteBuffer.isByteBuffer(buffer) ? buffer : ByteBuffer.wrap(buffer); // May throw + var le = buffer.littleEndian; + try { + var msg = T.decode(buffer.LE()); + buffer.LE(le); + return msg; + } catch (e) { + buffer.LE(le); + throw(e); + } + }; + + /** + * Decodes a varint32 length-delimited message from the specified buffer or string. + * @name ProtoBuf.Builder.Message.decodeDelimited + * @function + * @param {!ByteBuffer|!ArrayBuffer|!Buffer|string} buffer Buffer to decode from + * @param {string=} enc Encoding if buffer is a string: hex, utf8 (not recommended), defaults to base64 + * @return {ProtoBuf.Builder.Message} Decoded message or `null` if not enough bytes are available yet + * @throws {Error} If the message cannot be decoded or if required fields are missing. The later still + * returns the decoded message with missing fields in the `decoded` property on the error. + * @expose + */ + Message.decodeDelimited = function(buffer, enc) { + if (typeof buffer === 'string') + buffer = ByteBuffer.wrap(buffer, enc ? enc : "base64"); + buffer = ByteBuffer.isByteBuffer(buffer) ? buffer : ByteBuffer.wrap(buffer); // May throw + if (buffer.remaining() < 1) + return null; + var off = buffer.offset, + len = buffer.readVarint32(); + if (buffer.remaining() < len) { + buffer.offset = off; + return null; + } + try { + var msg = T.decode(buffer.slice(buffer.offset, buffer.offset + len).LE()); + buffer.offset += len; + return msg; + } catch (err) { + buffer.offset += len; + throw err; + } + }; + + /** + * Decodes the message from the specified base64 encoded string. + * @name ProtoBuf.Builder.Message.decode64 + * @function + * @param {string} str String to decode from + * @return {!ProtoBuf.Builder.Message} Decoded message + * @throws {Error} If the message cannot be decoded or if required fields are missing. The later still + * returns the decoded message with missing fields in the `decoded` property on the error. + * @expose + */ + Message.decode64 = function(str) { + return Message.decode(str, "base64"); + }; + + /** + * Decodes the message from the specified hex encoded string. + * @name ProtoBuf.Builder.Message.decodeHex + * @function + * @param {string} str String to decode from + * @return {!ProtoBuf.Builder.Message} Decoded message + * @throws {Error} If the message cannot be decoded or if required fields are missing. The later still + * returns the decoded message with missing fields in the `decoded` property on the error. + * @expose + */ + Message.decodeHex = function(str) { + return Message.decode(str, "hex"); + }; + + /** + * Decodes the message from a JSON string. + * @name ProtoBuf.Builder.Message.decodeJSON + * @function + * @param {string} str String to decode from + * @return {!ProtoBuf.Builder.Message} Decoded message + * @throws {Error} If the message cannot be decoded or if required fields are + * missing. + * @expose + */ + Message.decodeJSON = function(str) { + return new Message(JSON.parse(str)); + }; + + // Utility + + /** + * Returns a string representation of this Message. + * @name ProtoBuf.Builder.Message#toString + * @function + * @return {string} String representation as of ".Fully.Qualified.MessageName" + * @expose + */ + MessagePrototype.toString = function() { + return T.toString(); + }; + + // Properties + + /** + * Message options. + * @name ProtoBuf.Builder.Message.$options + * @type {Object.} + * @expose + */ + var $optionsS; // cc needs this + + /** + * Message options. + * @name ProtoBuf.Builder.Message#$options + * @type {Object.} + * @expose + */ + var $options; + + /** + * Reflection type. + * @name ProtoBuf.Builder.Message.$type + * @type {!ProtoBuf.Reflect.Message} + * @expose + */ + var $typeS; + + /** + * Reflection type. + * @name ProtoBuf.Builder.Message#$type + * @type {!ProtoBuf.Reflect.Message} + * @expose + */ + var $type; + + if (Object.defineProperty) + Object.defineProperty(Message, '$options', { "value": T.buildOpt() }), + Object.defineProperty(MessagePrototype, "$options", { "value": Message["$options"] }), + Object.defineProperty(Message, "$type", { "value": T }), + Object.defineProperty(MessagePrototype, "$type", { "value": T }); + + return Message; + + })(ProtoBuf, this); + + // Static enums and prototyped sub-messages / cached collections + this._fields = []; + this._fieldsById = {}; + this._fieldsByName = {}; + for (var i=0, k=this.children.length, child; i>> 3; + switch (wireType) { + case ProtoBuf.WIRE_TYPES.VARINT: + do tag = buf.readUint8(); + while ((tag & 0x80) === 0x80); + break; + case ProtoBuf.WIRE_TYPES.BITS64: + buf.offset += 8; + break; + case ProtoBuf.WIRE_TYPES.LDELIM: + tag = buf.readVarint32(); // reads the varint + buf.offset += tag; // skips n bytes + break; + case ProtoBuf.WIRE_TYPES.STARTGROUP: + skipTillGroupEnd(id, buf); + break; + case ProtoBuf.WIRE_TYPES.ENDGROUP: + if (id === expectedId) + return false; + else + throw Error("Illegal GROUPEND after unknown group: "+id+" ("+expectedId+" expected)"); + case ProtoBuf.WIRE_TYPES.BITS32: + buf.offset += 4; + break; + default: + throw Error("Illegal wire type in unknown group "+expectedId+": "+wireType); + } + return true; + } + + /** + * Decodes an encoded message and returns the decoded message. + * @param {ByteBuffer} buffer ByteBuffer to decode from + * @param {number=} length Message length. Defaults to decode all remaining data. + * @param {number=} expectedGroupEndId Expected GROUPEND id if this is a legacy group + * @return {ProtoBuf.Builder.Message} Decoded message + * @throws {Error} If the message cannot be decoded + * @expose + */ + MessagePrototype.decode = function(buffer, length, expectedGroupEndId) { + length = typeof length === 'number' ? length : -1; + var start = buffer.offset, + msg = new (this.clazz)(), + tag, wireType, id, field; + while (buffer.offset < start+length || (length === -1 && buffer.remaining() > 0)) { + tag = buffer.readVarint32(); + wireType = tag & 0x07; + id = tag >>> 3; + if (wireType === ProtoBuf.WIRE_TYPES.ENDGROUP) { + if (id !== expectedGroupEndId) + throw Error("Illegal group end indicator for "+this.toString(true)+": "+id+" ("+(expectedGroupEndId ? expectedGroupEndId+" expected" : "not a group")+")"); + break; + } + if (!(field = this._fieldsById[id])) { + // "messages created by your new code can be parsed by your old code: old binaries simply ignore the new field when parsing." + switch (wireType) { + case ProtoBuf.WIRE_TYPES.VARINT: + buffer.readVarint32(); + break; + case ProtoBuf.WIRE_TYPES.BITS32: + buffer.offset += 4; + break; + case ProtoBuf.WIRE_TYPES.BITS64: + buffer.offset += 8; + break; + case ProtoBuf.WIRE_TYPES.LDELIM: + var len = buffer.readVarint32(); + buffer.offset += len; + break; + case ProtoBuf.WIRE_TYPES.STARTGROUP: + while (skipTillGroupEnd(id, buffer)) {} + break; + default: + throw Error("Illegal wire type for unknown field "+id+" in "+this.toString(true)+"#decode: "+wireType); + } + continue; + } + if (field.repeated && !field.options["packed"]) { + msg[field.name].push(field.decode(wireType, buffer)); + } else if (field.map) { + var keyval = field.decode(wireType, buffer); + msg[field.name].set(keyval[0], keyval[1]); + } else { + msg[field.name] = field.decode(wireType, buffer); + if (field.oneof) { // Field is part of an OneOf (not a virtual OneOf field) + var currentField = msg[field.oneof.name]; // Virtual field references currently set field + if (currentField !== null && currentField !== field.name) + msg[currentField] = null; // Clear currently set field + msg[field.oneof.name] = field.name; // Point virtual field at this field + } + } + } + + // Check if all required fields are present and set default values for optional fields that are not + for (var i=0, k=this._fields.length; i=} options Options + * @param {!ProtoBuf.Reflect.Message.OneOf=} oneof Enclosing OneOf + * @param {string?} syntax The syntax level of this definition (e.g., proto3) + * @constructor + * @extends ProtoBuf.Reflect.T + */ + var Field = function(builder, message, rule, keytype, type, name, id, options, oneof, syntax) { + T.call(this, builder, message, name); + + /** + * @override + */ + this.className = "Message.Field"; + + /** + * Message field required flag. + * @type {boolean} + * @expose + */ + this.required = rule === "required"; + + /** + * Message field repeated flag. + * @type {boolean} + * @expose + */ + this.repeated = rule === "repeated"; + + /** + * Message field map flag. + * @type {boolean} + * @expose + */ + this.map = rule === "map"; + + /** + * Message field key type. Type reference string if unresolved, protobuf + * type if resolved. Valid only if this.map === true, null otherwise. + * @type {string|{name: string, wireType: number}|null} + * @expose + */ + this.keyType = keytype || null; + + /** + * Message field type. Type reference string if unresolved, protobuf type if + * resolved. In a map field, this is the value type. + * @type {string|{name: string, wireType: number}} + * @expose + */ + this.type = type; + + /** + * Resolved type reference inside the global namespace. + * @type {ProtoBuf.Reflect.T|null} + * @expose + */ + this.resolvedType = null; + + /** + * Unique message field id. + * @type {number} + * @expose + */ + this.id = id; + + /** + * Message field options. + * @type {!Object.} + * @dict + * @expose + */ + this.options = options || {}; + + /** + * Default value. + * @type {*} + * @expose + */ + this.defaultValue = null; + + /** + * Enclosing OneOf. + * @type {?ProtoBuf.Reflect.Message.OneOf} + * @expose + */ + this.oneof = oneof || null; + + /** + * Syntax level of this definition (e.g., proto3). + * @type {string} + * @expose + */ + this.syntax = syntax || 'proto2'; + + /** + * Original field name. + * @type {string} + * @expose + */ + this.originalName = this.name; // Used to revert camelcase transformation on naming collisions + + /** + * Element implementation. Created in build() after types are resolved. + * @type {ProtoBuf.Element} + * @expose + */ + this.element = null; + + /** + * Key element implementation, for map fields. Created in build() after + * types are resolved. + * @type {ProtoBuf.Element} + * @expose + */ + this.keyElement = null; + + // Convert field names to camel case notation if the override is set + if (this.builder.options['convertFieldsToCamelCase'] && !(this instanceof Message.ExtensionField)) + this.name = ProtoBuf.Util.toCamelCase(this.name); + }; + + /** + * @alias ProtoBuf.Reflect.Message.Field.prototype + * @inner + */ + var FieldPrototype = Field.prototype = Object.create(T.prototype); + + /** + * Builds the field. + * @override + * @expose + */ + FieldPrototype.build = function() { + this.element = new Element(this.type, this.resolvedType, false, this.syntax); + if (this.map) + this.keyElement = new Element(this.keyType, undefined, true, this.syntax); + + // In proto3, fields do not have field presence, and every field is set to + // its type's default value ("", 0, 0.0, or false). + if (this.syntax === 'proto3' && !this.repeated && !this.map) + this.defaultValue = Element.defaultFieldValue(this.type); + + // Otherwise, default values are present when explicitly specified + else if (typeof this.options['default'] !== 'undefined') + this.defaultValue = this.verifyValue(this.options['default']); + }; + + /** + * Checks if the given value can be set for this field. + * @param {*} value Value to check + * @param {boolean=} skipRepeated Whether to skip the repeated value check or not. Defaults to false. + * @return {*} Verified, maybe adjusted, value + * @throws {Error} If the value cannot be set for this field + * @expose + */ + FieldPrototype.verifyValue = function(value, skipRepeated) { + skipRepeated = skipRepeated || false; + var self = this; + function fail(val, msg) { + throw Error("Illegal value for "+self.toString(true)+" of type "+self.type.name+": "+val+" ("+msg+")"); + } + if (value === null) { // NULL values for optional fields + if (this.required) + fail(typeof value, "required"); + if (this.syntax === 'proto3' && this.type !== ProtoBuf.TYPES["message"]) + fail(typeof value, "proto3 field without field presence cannot be null"); + return null; + } + var i; + if (this.repeated && !skipRepeated) { // Repeated values as arrays + if (!Array.isArray(value)) + value = [value]; + var res = []; + for (i=0; i 0; + + case ProtoBuf.TYPES["bytes"]: + return value.remaining() > 0; + + case ProtoBuf.TYPES["enum"]: + return value !== 0; + + case ProtoBuf.TYPES["message"]: + return value !== null; + default: + return true; + } + }; + + /** + * Encodes the specified field value to the specified buffer. + * @param {*} value Verified field value + * @param {ByteBuffer} buffer ByteBuffer to encode to + * @param {!ProtoBuf.Builder.Message} message Runtime message + * @return {ByteBuffer} The ByteBuffer for chaining + * @throws {Error} If the field cannot be encoded + * @expose + */ + FieldPrototype.encode = function(value, buffer, message) { + if (this.type === null || typeof this.type !== 'object') + throw Error("[INTERNAL] Unresolved type in "+this.toString(true)+": "+this.type); + if (value === null || (this.repeated && value.length == 0)) + return buffer; // Optional omitted + try { + if (this.repeated) { + var i; + // "Only repeated fields of primitive numeric types (types which use the varint, 32-bit, or 64-bit wire + // types) can be declared 'packed'." + if (this.options["packed"] && ProtoBuf.PACKABLE_WIRE_TYPES.indexOf(this.type.wireType) >= 0) { + // "All of the elements of the field are packed into a single key-value pair with wire type 2 + // (length-delimited). Each element is encoded the same way it would be normally, except without a + // tag preceding it." + buffer.writeVarint32((this.id << 3) | ProtoBuf.WIRE_TYPES.LDELIM); + buffer.ensureCapacity(buffer.offset += 1); // We do not know the length yet, so let's assume a varint of length 1 + var start = buffer.offset; // Remember where the contents begin + for (i=0; i 1) { // We need to move the contents + var contents = buffer.slice(start, buffer.offset); + start += varintLen-1; + buffer.offset = start; + buffer.append(contents); + } + buffer.writeVarint32(len, start-varintLen); + } else { + // "If your message definition has repeated elements (without the [packed=true] option), the encoded + // message has zero or more key-value pairs with the same tag number" + for (i=0; i= 0) { + n += ByteBuffer.calculateVarint32((this.id << 3) | ProtoBuf.WIRE_TYPES.LDELIM); + ni = 0; + for (i=0; i= 0) { + if (!skipRepeated) { + nBytes = buffer.readVarint32(); + nBytes = buffer.offset + nBytes; // Limit + var values = []; + while (buffer.offset < nBytes) + values.push(this.decode(this.type.wireType, buffer, true)); + return values; + } + // Read the next value otherwise... + } + + // Handle maps. + if (this.map) { + // Read one (key, value) submessage, and return [key, value] + var key = Element.defaultFieldValue(this.keyType); + value = Element.defaultFieldValue(this.type); + + // Read the length + nBytes = buffer.readVarint32(); + if (buffer.remaining() < nBytes) + throw Error("Illegal number of bytes for "+this.toString(true)+": "+nBytes+" required but got only "+buffer.remaining()); + + // Get a sub-buffer of this key/value submessage + var msgbuf = buffer.clone(); + msgbuf.limit = msgbuf.offset + nBytes; + buffer.offset += nBytes; + + while (msgbuf.remaining() > 0) { + var tag = msgbuf.readVarint32(); + wireType = tag & 0x07; + var id = tag >>> 3; + if (id === 1) { + key = this.keyElement.decode(msgbuf, wireType, id); + } else if (id === 2) { + value = this.element.decode(msgbuf, wireType, id); + } else { + throw Error("Unexpected tag in map field key/value submessage"); + } + } + + return [key, value]; + } + + // Handle singular and non-packed repeated field values. + return this.element.decode(buffer, wireType, this.id); + }; + + /** + * @alias ProtoBuf.Reflect.Message.Field + * @expose + */ + Reflect.Message.Field = Field; + + /** + * Constructs a new Message ExtensionField. + * @exports ProtoBuf.Reflect.Message.ExtensionField + * @param {!ProtoBuf.Builder} builder Builder reference + * @param {!ProtoBuf.Reflect.Message} message Message reference + * @param {string} rule Rule, one of requried, optional, repeated + * @param {string} type Data type, e.g. int32 + * @param {string} name Field name + * @param {number} id Unique field id + * @param {!Object.=} options Options + * @constructor + * @extends ProtoBuf.Reflect.Message.Field + */ + var ExtensionField = function(builder, message, rule, type, name, id, options) { + Field.call(this, builder, message, rule, /* keytype = */ null, type, name, id, options); + + /** + * Extension reference. + * @type {!ProtoBuf.Reflect.Extension} + * @expose + */ + this.extension; + }; + + // Extends Field + ExtensionField.prototype = Object.create(Field.prototype); + + /** + * @alias ProtoBuf.Reflect.Message.ExtensionField + * @expose + */ + Reflect.Message.ExtensionField = ExtensionField; + + /** + * Constructs a new Message OneOf. + * @exports ProtoBuf.Reflect.Message.OneOf + * @param {!ProtoBuf.Builder} builder Builder reference + * @param {!ProtoBuf.Reflect.Message} message Message reference + * @param {string} name OneOf name + * @constructor + * @extends ProtoBuf.Reflect.T + */ + var OneOf = function(builder, message, name) { + T.call(this, builder, message, name); + + /** + * Enclosed fields. + * @type {!Array.} + * @expose + */ + this.fields = []; + }; + + /** + * @alias ProtoBuf.Reflect.Message.OneOf + * @expose + */ + Reflect.Message.OneOf = OneOf; + + /** + * Constructs a new Enum. + * @exports ProtoBuf.Reflect.Enum + * @param {!ProtoBuf.Builder} builder Builder reference + * @param {!ProtoBuf.Reflect.T} parent Parent Reflect object + * @param {string} name Enum name + * @param {Object.=} options Enum options + * @param {string?} syntax The syntax level (e.g., proto3) + * @constructor + * @extends ProtoBuf.Reflect.Namespace + */ + var Enum = function(builder, parent, name, options, syntax) { + Namespace.call(this, builder, parent, name, options, syntax); + + /** + * @override + */ + this.className = "Enum"; + + /** + * Runtime enum object. + * @type {Object.|null} + * @expose + */ + this.object = null; + }; + + /** + * Gets the string name of an enum value. + * @param {!ProtoBuf.Builder.Enum} enm Runtime enum + * @param {number} value Enum value + * @returns {?string} Name or `null` if not present + * @expose + */ + Enum.getName = function(enm, value) { + var keys = Object.keys(enm); + for (var i=0, key; i} + * @expose + */ + EnumPrototype.build = function(rebuild) { + if (this.object && !rebuild) + return this.object; + var enm = new ProtoBuf.Builder.Enum(), + values = this.getChildren(Enum.Value); + for (var i=0, k=values.length; i=} options Options + * @constructor + * @extends ProtoBuf.Reflect.Namespace + */ + var Service = function(builder, root, name, options) { + Namespace.call(this, builder, root, name, options); + + /** + * @override + */ + this.className = "Service"; + + /** + * Built runtime service class. + * @type {?function(new:ProtoBuf.Builder.Service)} + */ + this.clazz = null; + }; + + /** + * @alias ProtoBuf.Reflect.Service.prototype + * @inner + */ + var ServicePrototype = Service.prototype = Object.create(Namespace.prototype); + + /** + * Builds the service and returns the runtime counterpart, which is a fully functional class. + * @see ProtoBuf.Builder.Service + * @param {boolean=} rebuild Whether to rebuild or not + * @return {Function} Service class + * @throws {Error} If the message cannot be built + * @expose + */ + ServicePrototype.build = function(rebuild) { + if (this.clazz && !rebuild) + return this.clazz; + + // Create the runtime Service class in its own scope + return this.clazz = (function(ProtoBuf, T) { + + /** + * Constructs a new runtime Service. + * @name ProtoBuf.Builder.Service + * @param {function(string, ProtoBuf.Builder.Message, function(Error, ProtoBuf.Builder.Message=))=} rpcImpl RPC implementation receiving the method name and the message + * @class Barebone of all runtime services. + * @constructor + * @throws {Error} If the service cannot be created + */ + var Service = function(rpcImpl) { + ProtoBuf.Builder.Service.call(this); + + /** + * Service implementation. + * @name ProtoBuf.Builder.Service#rpcImpl + * @type {!function(string, ProtoBuf.Builder.Message, function(Error, ProtoBuf.Builder.Message=))} + * @expose + */ + this.rpcImpl = rpcImpl || function(name, msg, callback) { + // This is what a user has to implement: A function receiving the method name, the actual message to + // send (type checked) and the callback that's either provided with the error as its first + // argument or null and the actual response message. + setTimeout(callback.bind(this, Error("Not implemented, see: https://github.com/dcodeIO/ProtoBuf.js/wiki/Services")), 0); // Must be async! + }; + }; + + /** + * @alias ProtoBuf.Builder.Service.prototype + * @inner + */ + var ServicePrototype = Service.prototype = Object.create(ProtoBuf.Builder.Service.prototype); + + /** + * Asynchronously performs an RPC call using the given RPC implementation. + * @name ProtoBuf.Builder.Service.[Method] + * @function + * @param {!function(string, ProtoBuf.Builder.Message, function(Error, ProtoBuf.Builder.Message=))} rpcImpl RPC implementation + * @param {ProtoBuf.Builder.Message} req Request + * @param {function(Error, (ProtoBuf.Builder.Message|ByteBuffer|Buffer|string)=)} callback Callback receiving + * the error if any and the response either as a pre-parsed message or as its raw bytes + * @abstract + */ + + /** + * Asynchronously performs an RPC call using the instance's RPC implementation. + * @name ProtoBuf.Builder.Service#[Method] + * @function + * @param {ProtoBuf.Builder.Message} req Request + * @param {function(Error, (ProtoBuf.Builder.Message|ByteBuffer|Buffer|string)=)} callback Callback receiving + * the error if any and the response either as a pre-parsed message or as its raw bytes + * @abstract + */ + + var rpc = T.getChildren(ProtoBuf.Reflect.Service.RPCMethod); + for (var i=0; i} + * @expose + */ + var $optionsS; // cc needs this + + /** + * Service options. + * @name ProtoBuf.Builder.Service#$options + * @type {Object.} + * @expose + */ + var $options; + + /** + * Reflection type. + * @name ProtoBuf.Builder.Service.$type + * @type {!ProtoBuf.Reflect.Service} + * @expose + */ + var $typeS; + + /** + * Reflection type. + * @name ProtoBuf.Builder.Service#$type + * @type {!ProtoBuf.Reflect.Service} + * @expose + */ + var $type; + + if (Object.defineProperty) + Object.defineProperty(Service, "$options", { "value": T.buildOpt() }), + Object.defineProperty(ServicePrototype, "$options", { "value": Service["$options"] }), + Object.defineProperty(Service, "$type", { "value": T }), + Object.defineProperty(ServicePrototype, "$type", { "value": T }); + + return Service; + + })(ProtoBuf, this); + }; + + /** + * @alias ProtoBuf.Reflect.Service + * @expose + */ + Reflect.Service = Service; + + /** + * Abstract service method. + * @exports ProtoBuf.Reflect.Service.Method + * @param {!ProtoBuf.Builder} builder Builder reference + * @param {!ProtoBuf.Reflect.Service} svc Service + * @param {string} name Method name + * @param {Object.=} options Options + * @constructor + * @extends ProtoBuf.Reflect.T + */ + var Method = function(builder, svc, name, options) { + T.call(this, builder, svc, name); + + /** + * @override + */ + this.className = "Service.Method"; + + /** + * Options. + * @type {Object.} + * @expose + */ + this.options = options || {}; + }; + + /** + * @alias ProtoBuf.Reflect.Service.Method.prototype + * @inner + */ + var MethodPrototype = Method.prototype = Object.create(T.prototype); + + /** + * Builds the method's '$options' property. + * @name ProtoBuf.Reflect.Service.Method#buildOpt + * @function + * @return {Object.} + */ + MethodPrototype.buildOpt = NamespacePrototype.buildOpt; + + /** + * @alias ProtoBuf.Reflect.Service.Method + * @expose + */ + Reflect.Service.Method = Method; + + /** + * RPC service method. + * @exports ProtoBuf.Reflect.Service.RPCMethod + * @param {!ProtoBuf.Builder} builder Builder reference + * @param {!ProtoBuf.Reflect.Service} svc Service + * @param {string} name Method name + * @param {string} request Request message name + * @param {string} response Response message name + * @param {boolean} request_stream Whether requests are streamed + * @param {boolean} response_stream Whether responses are streamed + * @param {Object.=} options Options + * @constructor + * @extends ProtoBuf.Reflect.Service.Method + */ + var RPCMethod = function(builder, svc, name, request, response, request_stream, response_stream, options) { + Method.call(this, builder, svc, name, options); + + /** + * @override + */ + this.className = "Service.RPCMethod"; + + /** + * Request message name. + * @type {string} + * @expose + */ + this.requestName = request; + + /** + * Response message name. + * @type {string} + * @expose + */ + this.responseName = response; + + /** + * Whether requests are streamed + * @type {bool} + * @expose + */ + this.requestStream = request_stream; + + /** + * Whether responses are streamed + * @type {bool} + * @expose + */ + this.responseStream = response_stream; + + /** + * Resolved request message type. + * @type {ProtoBuf.Reflect.Message} + * @expose + */ + this.resolvedRequestType = null; + + /** + * Resolved response message type. + * @type {ProtoBuf.Reflect.Message} + * @expose + */ + this.resolvedResponseType = null; + }; + + // Extends Method + RPCMethod.prototype = Object.create(Method.prototype); + + /** + * @alias ProtoBuf.Reflect.Service.RPCMethod + * @expose + */ + Reflect.Service.RPCMethod = RPCMethod; + + return Reflect; + + })(ProtoBuf); + + /** + * @alias ProtoBuf.Builder + * @expose + */ + ProtoBuf.Builder = (function(ProtoBuf, Lang, Reflect) { + "use strict"; + + /** + * Constructs a new Builder. + * @exports ProtoBuf.Builder + * @class Provides the functionality to build protocol messages. + * @param {Object.=} options Options + * @constructor + */ + var Builder = function(options) { + + /** + * Namespace. + * @type {ProtoBuf.Reflect.Namespace} + * @expose + */ + this.ns = new Reflect.Namespace(this, null, ""); // Global namespace + + /** + * Namespace pointer. + * @type {ProtoBuf.Reflect.T} + * @expose + */ + this.ptr = this.ns; + + /** + * Resolved flag. + * @type {boolean} + * @expose + */ + this.resolved = false; + + /** + * The current building result. + * @type {Object.|null} + * @expose + */ + this.result = null; + + /** + * Imported files. + * @type {Array.} + * @expose + */ + this.files = {}; + + /** + * Import root override. + * @type {?string} + * @expose + */ + this.importRoot = null; + + /** + * Options. + * @type {!Object.} + * @expose + */ + this.options = options || {}; + }; + + /** + * @alias ProtoBuf.Builder.prototype + * @inner + */ + var BuilderPrototype = Builder.prototype; + + // ----- Definition tests ----- + + /** + * Tests if a definition most likely describes a message. + * @param {!Object} def + * @returns {boolean} + * @expose + */ + Builder.isMessage = function(def) { + // Messages require a string name + if (typeof def["name"] !== 'string') + return false; + // Messages do not contain values (enum) or rpc methods (service) + if (typeof def["values"] !== 'undefined' || typeof def["rpc"] !== 'undefined') + return false; + return true; + }; + + /** + * Tests if a definition most likely describes a message field. + * @param {!Object} def + * @returns {boolean} + * @expose + */ + Builder.isMessageField = function(def) { + // Message fields require a string rule, name and type and an id + if (typeof def["rule"] !== 'string' || typeof def["name"] !== 'string' || typeof def["type"] !== 'string' || typeof def["id"] === 'undefined') + return false; + return true; + }; + + /** + * Tests if a definition most likely describes an enum. + * @param {!Object} def + * @returns {boolean} + * @expose + */ + Builder.isEnum = function(def) { + // Enums require a string name + if (typeof def["name"] !== 'string') + return false; + // Enums require at least one value + if (typeof def["values"] === 'undefined' || !Array.isArray(def["values"]) || def["values"].length === 0) + return false; + return true; + }; + + /** + * Tests if a definition most likely describes a service. + * @param {!Object} def + * @returns {boolean} + * @expose + */ + Builder.isService = function(def) { + // Services require a string name and an rpc object + if (typeof def["name"] !== 'string' || typeof def["rpc"] !== 'object' || !def["rpc"]) + return false; + return true; + }; + + /** + * Tests if a definition most likely describes an extended message + * @param {!Object} def + * @returns {boolean} + * @expose + */ + Builder.isExtend = function(def) { + // Extends rquire a string ref + if (typeof def["ref"] !== 'string') + return false; + return true; + }; + + // ----- Building ----- + + /** + * Resets the pointer to the root namespace. + * @returns {!ProtoBuf.Builder} this + * @expose + */ + BuilderPrototype.reset = function() { + this.ptr = this.ns; + return this; + }; + + /** + * Defines a namespace on top of the current pointer position and places the pointer on it. + * @param {string} namespace + * @return {!ProtoBuf.Builder} this + * @expose + */ + BuilderPrototype.define = function(namespace) { + if (typeof namespace !== 'string' || !Lang.TYPEREF.test(namespace)) + throw Error("illegal namespace: "+namespace); + namespace.split(".").forEach(function(part) { + var ns = this.ptr.getChild(part); + if (ns === null) // Keep existing + this.ptr.addChild(ns = new Reflect.Namespace(this, this.ptr, part)); + this.ptr = ns; + }, this); + return this; + }; + + /** + * Creates the specified definitions at the current pointer position. + * @param {!Array.} defs Messages, enums or services to create + * @returns {!ProtoBuf.Builder} this + * @throws {Error} If a message definition is invalid + * @expose + */ + BuilderPrototype.create = function(defs) { + if (!defs) + return this; // Nothing to create + if (!Array.isArray(defs)) + defs = [defs]; + else { + if (defs.length === 0) + return this; + defs = defs.slice(); + } + + // It's quite hard to keep track of scopes and memory here, so let's do this iteratively. + var stack = [defs]; + while (stack.length > 0) { + defs = stack.pop(); + + if (!Array.isArray(defs)) // Stack always contains entire namespaces + throw Error("not a valid namespace: "+JSON.stringify(defs)); + + while (defs.length > 0) { + var def = defs.shift(); // Namespaces always contain an array of messages, enums and services + + if (Builder.isMessage(def)) { + var obj = new Reflect.Message(this, this.ptr, def["name"], def["options"], def["isGroup"], def["syntax"]); + + // Create OneOfs + var oneofs = {}; + if (def["oneofs"]) + Object.keys(def["oneofs"]).forEach(function(name) { + obj.addChild(oneofs[name] = new Reflect.Message.OneOf(this, obj, name)); + }, this); + + // Create fields + if (def["fields"]) + def["fields"].forEach(function(fld) { + if (obj.getChild(fld["id"]|0) !== null) + throw Error("duplicate or invalid field id in "+obj.name+": "+fld['id']); + if (fld["options"] && typeof fld["options"] !== 'object') + throw Error("illegal field options in "+obj.name+"#"+fld["name"]); + var oneof = null; + if (typeof fld["oneof"] === 'string' && !(oneof = oneofs[fld["oneof"]])) + throw Error("illegal oneof in "+obj.name+"#"+fld["name"]+": "+fld["oneof"]); + fld = new Reflect.Message.Field(this, obj, fld["rule"], fld["keytype"], fld["type"], fld["name"], fld["id"], fld["options"], oneof, def["syntax"]); + if (oneof) + oneof.fields.push(fld); + obj.addChild(fld); + }, this); + + // Push children to stack + var subObj = []; + if (def["enums"]) + def["enums"].forEach(function(enm) { + subObj.push(enm); + }); + if (def["messages"]) + def["messages"].forEach(function(msg) { + subObj.push(msg); + }); + if (def["services"]) + def["services"].forEach(function(svc) { + subObj.push(svc); + }); + + // Set extension ranges + if (def["extensions"]) { + if (typeof def["extensions"][0] === 'number') // pre 5.0.1 + obj.extensions = [ def["extensions"] ]; + else + obj.extensions = def["extensions"]; + } + + // Create on top of current namespace + this.ptr.addChild(obj); + if (subObj.length > 0) { + stack.push(defs); // Push the current level back + defs = subObj; // Continue processing sub level + subObj = null; + this.ptr = obj; // And move the pointer to this namespace + obj = null; + continue; + } + subObj = null; + + } else if (Builder.isEnum(def)) { + + obj = new Reflect.Enum(this, this.ptr, def["name"], def["options"], def["syntax"]); + def["values"].forEach(function(val) { + obj.addChild(new Reflect.Enum.Value(this, obj, val["name"], val["id"])); + }, this); + this.ptr.addChild(obj); + + } else if (Builder.isService(def)) { + + obj = new Reflect.Service(this, this.ptr, def["name"], def["options"]); + Object.keys(def["rpc"]).forEach(function(name) { + var mtd = def["rpc"][name]; + obj.addChild(new Reflect.Service.RPCMethod(this, obj, name, mtd["request"], mtd["response"], !!mtd["request_stream"], !!mtd["response_stream"], mtd["options"])); + }, this); + this.ptr.addChild(obj); + + } else if (Builder.isExtend(def)) { + + obj = this.ptr.resolve(def["ref"], true); + if (obj) { + def["fields"].forEach(function(fld) { + if (obj.getChild(fld['id']|0) !== null) + throw Error("duplicate extended field id in "+obj.name+": "+fld['id']); + // Check if field id is allowed to be extended + if (obj.extensions) { + var valid = false; + obj.extensions.forEach(function(range) { + if (fld["id"] >= range[0] && fld["id"] <= range[1]) + valid = true; + }); + if (!valid) + throw Error("illegal extended field id in "+obj.name+": "+fld['id']+" (not within valid ranges)"); + } + // Convert extension field names to camel case notation if the override is set + var name = fld["name"]; + if (this.options['convertFieldsToCamelCase']) + name = ProtoBuf.Util.toCamelCase(name); + // see #161: Extensions use their fully qualified name as their runtime key and... + var field = new Reflect.Message.ExtensionField(this, obj, fld["rule"], fld["type"], this.ptr.fqn()+'.'+name, fld["id"], fld["options"]); + // ...are added on top of the current namespace as an extension which is used for + // resolving their type later on (the extension always keeps the original name to + // prevent naming collisions) + var ext = new Reflect.Extension(this, this.ptr, fld["name"], field); + field.extension = ext; + this.ptr.addChild(ext); + obj.addChild(field); + }, this); + + } else if (!/\.?google\.protobuf\./.test(def["ref"])) // Silently skip internal extensions + throw Error("extended message "+def["ref"]+" is not defined"); + + } else + throw Error("not a valid definition: "+JSON.stringify(def)); + + def = null; + obj = null; + } + // Break goes here + defs = null; + this.ptr = this.ptr.parent; // Namespace done, continue at parent + } + this.resolved = false; // Require re-resolve + this.result = null; // Require re-build + return this; + }; + + /** + * Propagates syntax to all children. + * @param {!Object} parent + * @inner + */ + function propagateSyntax(parent) { + if (parent['messages']) { + parent['messages'].forEach(function(child) { + child["syntax"] = parent["syntax"]; + propagateSyntax(child); + }); + } + if (parent['enums']) { + parent['enums'].forEach(function(child) { + child["syntax"] = parent["syntax"]; + }); + } + } + + /** + * Imports another definition into this builder. + * @param {Object.} json Parsed import + * @param {(string|{root: string, file: string})=} filename Imported file name + * @returns {!ProtoBuf.Builder} this + * @throws {Error} If the definition or file cannot be imported + * @expose + */ + BuilderPrototype["import"] = function(json, filename) { + var delim = '/'; + + // Make sure to skip duplicate imports + + if (typeof filename === 'string') { + + if (ProtoBuf.Util.IS_NODE) + filename = require("path")['resolve'](filename); + if (this.files[filename] === true) + return this.reset(); + this.files[filename] = true; + + } else if (typeof filename === 'object') { // Object with root, file. + + var root = filename.root; + if (ProtoBuf.Util.IS_NODE) + root = require("path")['resolve'](root); + if (root.indexOf("\\") >= 0 || filename.file.indexOf("\\") >= 0) + delim = '\\'; + var fname = root + delim + filename.file; + if (this.files[fname] === true) + return this.reset(); + this.files[fname] = true; + } + + // Import imports + + if (json['imports'] && json['imports'].length > 0) { + var importRoot, + resetRoot = false; + + if (typeof filename === 'object') { // If an import root is specified, override + + this.importRoot = filename["root"]; resetRoot = true; // ... and reset afterwards + importRoot = this.importRoot; + filename = filename["file"]; + if (importRoot.indexOf("\\") >= 0 || filename.indexOf("\\") >= 0) + delim = '\\'; + + } else if (typeof filename === 'string') { + + if (this.importRoot) // If import root is overridden, use it + importRoot = this.importRoot; + else { // Otherwise compute from filename + if (filename.indexOf("/") >= 0) { // Unix + importRoot = filename.replace(/\/[^\/]*$/, ""); + if (/* /file.proto */ importRoot === "") + importRoot = "/"; + } else if (filename.indexOf("\\") >= 0) { // Windows + importRoot = filename.replace(/\\[^\\]*$/, ""); + delim = '\\'; + } else + importRoot = "."; + } + + } else + importRoot = null; + + for (var i=0; i)=} path Specifies what to return. If omitted, the entire namespace will be returned. + * @returns {!ProtoBuf.Builder.Message|!Object.} + * @throws {Error} If a type could not be resolved + * @expose + */ + BuilderPrototype.build = function(path) { + this.reset(); + if (!this.resolved) + this.resolveAll(), + this.resolved = true, + this.result = null; // Require re-build + if (this.result === null) // (Re-)Build + this.result = this.ns.build(); + if (!path) + return this.result; + var part = typeof path === 'string' ? path.split(".") : path, + ptr = this.result; // Build namespace pointer (no hasChild etc.) + for (var i=0; i=} contents Initial contents + * @constructor + */ + var Map = function(field, contents) { + if (!field.map) + throw Error("field is not a map"); + + /** + * The field corresponding to this map. + * @type {!ProtoBuf.Reflect.Field} + */ + this.field = field; + + /** + * Element instance corresponding to key type. + * @type {!ProtoBuf.Reflect.Element} + */ + this.keyElem = new Reflect.Element(field.keyType, null, true, field.syntax); + + /** + * Element instance corresponding to value type. + * @type {!ProtoBuf.Reflect.Element} + */ + this.valueElem = new Reflect.Element(field.type, field.resolvedType, false, field.syntax); + + /** + * Internal map: stores mapping of (string form of key) -> (key, value) + * pair. + * + * We provide map semantics for arbitrary key types, but we build on top + * of an Object, which has only string keys. In order to avoid the need + * to convert a string key back to its native type in many situations, + * we store the native key value alongside the value. Thus, we only need + * a one-way mapping from a key type to its string form that guarantees + * uniqueness and equality (i.e., str(K1) === str(K2) if and only if K1 + * === K2). + * + * @type {!Object} + */ + this.map = {}; + + /** + * Returns the number of elements in the map. + */ + Object.defineProperty(this, "size", { + get: function() { return Object.keys(this.map).length; } + }); + + // Fill initial contents from a raw object. + if (contents) { + var keys = Object.keys(contents); + for (var i = 0; i < keys.length; i++) { + var key = this.keyElem.valueFromString(keys[i]); + var val = this.valueElem.verifyValue(contents[keys[i]]); + this.map[this.keyElem.valueToString(key)] = + { key: key, value: val }; + } + } + }; + + var MapPrototype = Map.prototype; + + /** + * Helper: return an iterator over an array. + * @param {!Array<*>} arr the array + * @returns {!Object} an iterator + * @inner + */ + function arrayIterator(arr) { + var idx = 0; + return { + next: function() { + if (idx < arr.length) + return { done: false, value: arr[idx++] }; + return { done: true }; + } + } + } + + /** + * Clears the map. + */ + MapPrototype.clear = function() { + this.map = {}; + }; + + /** + * Deletes a particular key from the map. + * @returns {boolean} Whether any entry with this key was deleted. + */ + MapPrototype["delete"] = function(key) { + var keyValue = this.keyElem.valueToString(this.keyElem.verifyValue(key)); + var hadKey = keyValue in this.map; + delete this.map[keyValue]; + return hadKey; + }; + + /** + * Returns an iterator over [key, value] pairs in the map. + * @returns {Object} The iterator + */ + MapPrototype.entries = function() { + var entries = []; + var strKeys = Object.keys(this.map); + for (var i = 0, entry; i < strKeys.length; i++) + entries.push([(entry=this.map[strKeys[i]]).key, entry.value]); + return arrayIterator(entries); + }; + + /** + * Returns an iterator over keys in the map. + * @returns {Object} The iterator + */ + MapPrototype.keys = function() { + var keys = []; + var strKeys = Object.keys(this.map); + for (var i = 0; i < strKeys.length; i++) + keys.push(this.map[strKeys[i]].key); + return arrayIterator(keys); + }; + + /** + * Returns an iterator over values in the map. + * @returns {!Object} The iterator + */ + MapPrototype.values = function() { + var values = []; + var strKeys = Object.keys(this.map); + for (var i = 0; i < strKeys.length; i++) + values.push(this.map[strKeys[i]].value); + return arrayIterator(values); + }; + + /** + * Iterates over entries in the map, calling a function on each. + * @param {function(this:*, *, *, *)} cb The callback to invoke with value, key, and map arguments. + * @param {Object=} thisArg The `this` value for the callback + */ + MapPrototype.forEach = function(cb, thisArg) { + var strKeys = Object.keys(this.map); + for (var i = 0, entry; i < strKeys.length; i++) + cb.call(thisArg, (entry=this.map[strKeys[i]]).value, entry.key, this); + }; + + /** + * Sets a key in the map to the given value. + * @param {*} key The key + * @param {*} value The value + * @returns {!ProtoBuf.Map} The map instance + */ + MapPrototype.set = function(key, value) { + var keyValue = this.keyElem.verifyValue(key); + var valValue = this.valueElem.verifyValue(value); + this.map[this.keyElem.valueToString(keyValue)] = + { key: keyValue, value: valValue }; + return this; + }; + + /** + * Gets the value corresponding to a key in the map. + * @param {*} key The key + * @returns {*|undefined} The value, or `undefined` if key not present + */ + MapPrototype.get = function(key) { + var keyValue = this.keyElem.valueToString(this.keyElem.verifyValue(key)); + if (!(keyValue in this.map)) + return undefined; + return this.map[keyValue].value; + }; + + /** + * Determines whether the given key is present in the map. + * @param {*} key The key + * @returns {boolean} `true` if the key is present + */ + MapPrototype.has = function(key) { + var keyValue = this.keyElem.valueToString(this.keyElem.verifyValue(key)); + return (keyValue in this.map); + }; + + return Map; + })(ProtoBuf, ProtoBuf.Reflect); + + + /** + * Loads a .proto string and returns the Builder. + * @param {string} proto .proto file contents + * @param {(ProtoBuf.Builder|string|{root: string, file: string})=} builder Builder to append to. Will create a new one if omitted. + * @param {(string|{root: string, file: string})=} filename The corresponding file name if known. Must be specified for imports. + * @return {ProtoBuf.Builder} Builder to create new messages + * @throws {Error} If the definition cannot be parsed or built + * @expose + */ + ProtoBuf.loadProto = function(proto, builder, filename) { + if (typeof builder === 'string' || (builder && typeof builder["file"] === 'string' && typeof builder["root"] === 'string')) + filename = builder, + builder = undefined; + return ProtoBuf.loadJson(ProtoBuf.DotProto.Parser.parse(proto), builder, filename); + }; + + /** + * Loads a .proto string and returns the Builder. This is an alias of {@link ProtoBuf.loadProto}. + * @function + * @param {string} proto .proto file contents + * @param {(ProtoBuf.Builder|string)=} builder Builder to append to. Will create a new one if omitted. + * @param {(string|{root: string, file: string})=} filename The corresponding file name if known. Must be specified for imports. + * @return {ProtoBuf.Builder} Builder to create new messages + * @throws {Error} If the definition cannot be parsed or built + * @expose + */ + ProtoBuf.protoFromString = ProtoBuf.loadProto; // Legacy + + /** + * Loads a .proto file and returns the Builder. + * @param {string|{root: string, file: string}} filename Path to proto file or an object specifying 'file' with + * an overridden 'root' path for all imported files. + * @param {function(?Error, !ProtoBuf.Builder=)=} callback Callback that will receive `null` as the first and + * the Builder as its second argument on success, otherwise the error as its first argument. If omitted, the + * file will be read synchronously and this function will return the Builder. + * @param {ProtoBuf.Builder=} builder Builder to append to. Will create a new one if omitted. + * @return {?ProtoBuf.Builder|undefined} The Builder if synchronous (no callback specified, will be NULL if the + * request has failed), else undefined + * @expose + */ + ProtoBuf.loadProtoFile = function(filename, callback, builder) { + if (callback && typeof callback === 'object') + builder = callback, + callback = null; + else if (!callback || typeof callback !== 'function') + callback = null; + if (callback) + return ProtoBuf.Util.fetch(typeof filename === 'string' ? filename : filename["root"]+"/"+filename["file"], function(contents) { + if (contents === null) { + callback(Error("Failed to fetch file")); + return; + } + try { + callback(null, ProtoBuf.loadProto(contents, builder, filename)); + } catch (e) { + callback(e); + } + }); + var contents = ProtoBuf.Util.fetch(typeof filename === 'object' ? filename["root"]+"/"+filename["file"] : filename); + return contents === null ? null : ProtoBuf.loadProto(contents, builder, filename); + }; + + /** + * Loads a .proto file and returns the Builder. This is an alias of {@link ProtoBuf.loadProtoFile}. + * @function + * @param {string|{root: string, file: string}} filename Path to proto file or an object specifying 'file' with + * an overridden 'root' path for all imported files. + * @param {function(?Error, !ProtoBuf.Builder=)=} callback Callback that will receive `null` as the first and + * the Builder as its second argument on success, otherwise the error as its first argument. If omitted, the + * file will be read synchronously and this function will return the Builder. + * @param {ProtoBuf.Builder=} builder Builder to append to. Will create a new one if omitted. + * @return {!ProtoBuf.Builder|undefined} The Builder if synchronous (no callback specified, will be NULL if the + * request has failed), else undefined + * @expose + */ + ProtoBuf.protoFromFile = ProtoBuf.loadProtoFile; // Legacy + + + /** + * Constructs a new empty Builder. + * @param {Object.=} options Builder options, defaults to global options set on ProtoBuf + * @return {!ProtoBuf.Builder} Builder + * @expose + */ + ProtoBuf.newBuilder = function(options) { + options = options || {}; + if (typeof options['convertFieldsToCamelCase'] === 'undefined') + options['convertFieldsToCamelCase'] = ProtoBuf.convertFieldsToCamelCase; + if (typeof options['populateAccessors'] === 'undefined') + options['populateAccessors'] = ProtoBuf.populateAccessors; + return new ProtoBuf.Builder(options); + }; + + /** + * Loads a .json definition and returns the Builder. + * @param {!*|string} json JSON definition + * @param {(ProtoBuf.Builder|string|{root: string, file: string})=} builder Builder to append to. Will create a new one if omitted. + * @param {(string|{root: string, file: string})=} filename The corresponding file name if known. Must be specified for imports. + * @return {ProtoBuf.Builder} Builder to create new messages + * @throws {Error} If the definition cannot be parsed or built + * @expose + */ + ProtoBuf.loadJson = function(json, builder, filename) { + if (typeof builder === 'string' || (builder && typeof builder["file"] === 'string' && typeof builder["root"] === 'string')) + filename = builder, + builder = null; + if (!builder || typeof builder !== 'object') + builder = ProtoBuf.newBuilder(); + if (typeof json === 'string') + json = JSON.parse(json); + builder["import"](json, filename); + builder.resolveAll(); + return builder; + }; + + /** + * Loads a .json file and returns the Builder. + * @param {string|!{root: string, file: string}} filename Path to json file or an object specifying 'file' with + * an overridden 'root' path for all imported files. + * @param {function(?Error, !ProtoBuf.Builder=)=} callback Callback that will receive `null` as the first and + * the Builder as its second argument on success, otherwise the error as its first argument. If omitted, the + * file will be read synchronously and this function will return the Builder. + * @param {ProtoBuf.Builder=} builder Builder to append to. Will create a new one if omitted. + * @return {?ProtoBuf.Builder|undefined} The Builder if synchronous (no callback specified, will be NULL if the + * request has failed), else undefined + * @expose + */ + ProtoBuf.loadJsonFile = function(filename, callback, builder) { + if (callback && typeof callback === 'object') + builder = callback, + callback = null; + else if (!callback || typeof callback !== 'function') + callback = null; + if (callback) + return ProtoBuf.Util.fetch(typeof filename === 'string' ? filename : filename["root"]+"/"+filename["file"], function(contents) { + if (contents === null) { + callback(Error("Failed to fetch file")); + return; + } + try { + callback(null, ProtoBuf.loadJson(JSON.parse(contents), builder, filename)); + } catch (e) { + callback(e); + } + }); + var contents = ProtoBuf.Util.fetch(typeof filename === 'object' ? filename["root"]+"/"+filename["file"] : filename); + return contents === null ? null : ProtoBuf.loadJson(JSON.parse(contents), builder, filename); + }; + + return ProtoBuf; +}); diff --git a/build/curve25519_compiled.js b/build/curve25519_compiled.js new file mode 100644 index 0000000..3e4cbd0 --- /dev/null +++ b/build/curve25519_compiled.js @@ -0,0 +1,25131 @@ +// The Module object: Our interface to the outside world. We import +// and export values on it, and do the work to get that through +// closure compiler if necessary. There are various ways Module can be used: +// 1. Not defined. We create it here +// 2. A function parameter, function(Module) { ..generated code.. } +// 3. pre-run appended it, var Module = {}; ..generated code.. +// 4. External script tag defines var Module. +// We need to do an eval in order to handle the closure compiler +// case, where this code here is minified but Module was defined +// elsewhere (e.g. case 4 above). We also need to check if Module +// already exists (e.g. case 3 above). +// Note that if you want to run closure, and also to use Module +// after the generated code, you will need to define var Module = {}; +// before the code. Then that object will be used in the code, and you +// can continue to use Module afterwards as well. +var Module; +if (!Module) Module = (typeof Module !== 'undefined' ? Module : null) || {}; + +// Sometimes an existing Module object exists with properties +// meant to overwrite the default module functionality. Here +// we collect those properties and reapply _after_ we configure +// the current environment's defaults to avoid having to be so +// defensive during initialization. +var moduleOverrides = {}; +for (var key in Module) { + if (Module.hasOwnProperty(key)) { + moduleOverrides[key] = Module[key]; + } +} + +// The environment setup code below is customized to use Module. +// *** Environment setup code *** +var ENVIRONMENT_IS_NODE = typeof process === 'object' && typeof require === 'function'; +var ENVIRONMENT_IS_WEB = typeof window === 'object'; +var ENVIRONMENT_IS_WORKER = typeof importScripts === 'function'; +var ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER; + +if (ENVIRONMENT_IS_NODE) { + // Expose functionality in the same simple way that the shells work + // Note that we pollute the global namespace here, otherwise we break in node + if (!Module['print']) Module['print'] = function print(x) { + process['stdout'].write(x + '\n'); + }; + if (!Module['printErr']) Module['printErr'] = function printErr(x) { + process['stderr'].write(x + '\n'); + }; + + var nodeFS = require('fs'); + var nodePath = require('path'); + + Module['read'] = function read(filename, binary) { + filename = nodePath['normalize'](filename); + var ret = nodeFS['readFileSync'](filename); + // The path is absolute if the normalized version is the same as the resolved. + if (!ret && filename != nodePath['resolve'](filename)) { + filename = path.join(__dirname, '..', 'src', filename); + ret = nodeFS['readFileSync'](filename); + } + if (ret && !binary) ret = ret.toString(); + return ret; + }; + + Module['readBinary'] = function readBinary(filename) { return Module['read'](filename, true) }; + + Module['load'] = function load(f) { + globalEval(read(f)); + }; + + if (process['argv'].length > 1) { + Module['thisProgram'] = process['argv'][1].replace(/\\/g, '/'); + } else { + Module['thisProgram'] = 'unknown-program'; + } + + Module['arguments'] = process['argv'].slice(2); + + if (typeof module !== 'undefined') { + module['exports'] = Module; + } + + process['on']('uncaughtException', function(ex) { + // suppress ExitStatus exceptions from showing an error + if (!(ex instanceof ExitStatus)) { + throw ex; + } + }); +} +else if (ENVIRONMENT_IS_SHELL) { + if (!Module['print']) Module['print'] = print; + if (typeof printErr != 'undefined') Module['printErr'] = printErr; // not present in v8 or older sm + + if (typeof read != 'undefined') { + Module['read'] = read; + } else { + Module['read'] = function read() { throw 'no read() available (jsc?)' }; + } + + Module['readBinary'] = function readBinary(f) { + if (typeof readbuffer === 'function') { + return new Uint8Array(readbuffer(f)); + } + var data = read(f, 'binary'); + assert(typeof data === 'object'); + return data; + }; + + if (typeof scriptArgs != 'undefined') { + Module['arguments'] = scriptArgs; + } else if (typeof arguments != 'undefined') { + Module['arguments'] = arguments; + } + + this['Module'] = Module; + +} +else if (ENVIRONMENT_IS_WEB || ENVIRONMENT_IS_WORKER) { + Module['read'] = function read(url) { + var xhr = new XMLHttpRequest(); + xhr.open('GET', url, false); + xhr.send(null); + return xhr.responseText; + }; + + if (typeof arguments != 'undefined') { + Module['arguments'] = arguments; + } + + if (typeof console !== 'undefined') { + if (!Module['print']) Module['print'] = function print(x) { + console.log(x); + }; + if (!Module['printErr']) Module['printErr'] = function printErr(x) { + console.log(x); + }; + } else { + // Probably a worker, and without console.log. We can do very little here... + var TRY_USE_DUMP = false; + if (!Module['print']) Module['print'] = (TRY_USE_DUMP && (typeof(dump) !== "undefined") ? (function(x) { + dump(x); + }) : (function(x) { + // self.postMessage(x); // enable this if you want stdout to be sent as messages + })); + } + + if (ENVIRONMENT_IS_WEB) { + window['Module'] = Module; + } else { + Module['load'] = importScripts; + } +} +else { + // Unreachable because SHELL is dependant on the others + throw 'Unknown runtime environment. Where are we?'; +} + +function globalEval(x) { + eval.call(null, x); +} +if (!Module['load'] && Module['read']) { + Module['load'] = function load(f) { + globalEval(Module['read'](f)); + }; +} +if (!Module['print']) { + Module['print'] = function(){}; +} +if (!Module['printErr']) { + Module['printErr'] = Module['print']; +} +if (!Module['arguments']) { + Module['arguments'] = []; +} +if (!Module['thisProgram']) { + Module['thisProgram'] = './this.program'; +} + +// *** Environment setup code *** + +// Closure helpers +Module.print = Module['print']; +Module.printErr = Module['printErr']; + +// Callbacks +Module['preRun'] = []; +Module['postRun'] = []; + +// Merge back in the overrides +for (var key in moduleOverrides) { + if (moduleOverrides.hasOwnProperty(key)) { + Module[key] = moduleOverrides[key]; + } +} + + + +// === Preamble library stuff === + +// Documentation for the public APIs defined in this file must be updated in: +// site/source/docs/api_reference/preamble.js.rst +// A prebuilt local version of the documentation is available at: +// site/build/text/docs/api_reference/preamble.js.txt +// You can also build docs locally as HTML or other formats in site/ +// An online HTML version (which may be of a different version of Emscripten) +// is up at http://kripken.github.io/emscripten-site/docs/api_reference/preamble.js.html + +//======================================== +// Runtime code shared with compiler +//======================================== + +var Runtime = { + setTempRet0: function (value) { + tempRet0 = value; + }, + getTempRet0: function () { + return tempRet0; + }, + stackSave: function () { + return STACKTOP; + }, + stackRestore: function (stackTop) { + STACKTOP = stackTop; + }, + getNativeTypeSize: function (type) { + switch (type) { + case 'i1': case 'i8': return 1; + case 'i16': return 2; + case 'i32': return 4; + case 'i64': return 8; + case 'float': return 4; + case 'double': return 8; + default: { + if (type[type.length-1] === '*') { + return Runtime.QUANTUM_SIZE; // A pointer + } else if (type[0] === 'i') { + var bits = parseInt(type.substr(1)); + assert(bits % 8 === 0); + return bits/8; + } else { + return 0; + } + } + } + }, + getNativeFieldSize: function (type) { + return Math.max(Runtime.getNativeTypeSize(type), Runtime.QUANTUM_SIZE); + }, + STACK_ALIGN: 16, + getAlignSize: function (type, size, vararg) { + // we align i64s and doubles on 64-bit boundaries, unlike x86 + if (!vararg && (type == 'i64' || type == 'double')) return 8; + if (!type) return Math.min(size, 8); // align structures internally to 64 bits + return Math.min(size || (type ? Runtime.getNativeFieldSize(type) : 0), Runtime.QUANTUM_SIZE); + }, + dynCall: function (sig, ptr, args) { + if (args && args.length) { + if (!args.splice) args = Array.prototype.slice.call(args); + args.splice(0, 0, ptr); + return Module['dynCall_' + sig].apply(null, args); + } else { + return Module['dynCall_' + sig].call(null, ptr); + } + }, + functionPointers: [], + addFunction: function (func) { + for (var i = 0; i < Runtime.functionPointers.length; i++) { + if (!Runtime.functionPointers[i]) { + Runtime.functionPointers[i] = func; + return 2*(1 + i); + } + } + throw 'Finished up all reserved function pointers. Use a higher value for RESERVED_FUNCTION_POINTERS.'; + }, + removeFunction: function (index) { + Runtime.functionPointers[(index-2)/2] = null; + }, + getAsmConst: function (code, numArgs) { + // code is a constant string on the heap, so we can cache these + if (!Runtime.asmConstCache) Runtime.asmConstCache = {}; + var func = Runtime.asmConstCache[code]; + if (func) return func; + var args = []; + for (var i = 0; i < numArgs; i++) { + args.push(String.fromCharCode(36) + i); // $0, $1 etc + } + var source = Pointer_stringify(code); + if (source[0] === '"') { + // tolerate EM_ASM("..code..") even though EM_ASM(..code..) is correct + if (source.indexOf('"', 1) === source.length-1) { + source = source.substr(1, source.length-2); + } else { + // something invalid happened, e.g. EM_ASM("..code($0)..", input) + abort('invalid EM_ASM input |' + source + '|. Please use EM_ASM(..code..) (no quotes) or EM_ASM({ ..code($0).. }, input) (to input values)'); + } + } + try { + // Module is the only 'upvar', which we provide directly. We also provide FS for legacy support. + var evalled = eval('(function(Module, FS) { return function(' + args.join(',') + '){ ' + source + ' } })')(Module, typeof FS !== 'undefined' ? FS : null); + } catch(e) { + Module.printErr('error in executing inline EM_ASM code: ' + e + ' on: \n\n' + source + '\n\nwith args |' + args + '| (make sure to use the right one out of EM_ASM, EM_ASM_ARGS, etc.)'); + throw e; + } + return Runtime.asmConstCache[code] = evalled; + }, + warnOnce: function (text) { + if (!Runtime.warnOnce.shown) Runtime.warnOnce.shown = {}; + if (!Runtime.warnOnce.shown[text]) { + Runtime.warnOnce.shown[text] = 1; + Module.printErr(text); + } + }, + funcWrappers: {}, + getFuncWrapper: function (func, sig) { + assert(sig); + if (!Runtime.funcWrappers[sig]) { + Runtime.funcWrappers[sig] = {}; + } + var sigCache = Runtime.funcWrappers[sig]; + if (!sigCache[func]) { + sigCache[func] = function dynCall_wrapper() { + return Runtime.dynCall(sig, func, arguments); + }; + } + return sigCache[func]; + }, + UTF8Processor: function () { + var buffer = []; + var needed = 0; + this.processCChar = function (code) { + code = code & 0xFF; + + if (buffer.length == 0) { + if ((code & 0x80) == 0x00) { // 0xxxxxxx + return String.fromCharCode(code); + } + buffer.push(code); + if ((code & 0xE0) == 0xC0) { // 110xxxxx + needed = 1; + } else if ((code & 0xF0) == 0xE0) { // 1110xxxx + needed = 2; + } else { // 11110xxx + needed = 3; + } + return ''; + } + + if (needed) { + buffer.push(code); + needed--; + if (needed > 0) return ''; + } + + var c1 = buffer[0]; + var c2 = buffer[1]; + var c3 = buffer[2]; + var c4 = buffer[3]; + var ret; + if (buffer.length == 2) { + ret = String.fromCharCode(((c1 & 0x1F) << 6) | (c2 & 0x3F)); + } else if (buffer.length == 3) { + ret = String.fromCharCode(((c1 & 0x0F) << 12) | ((c2 & 0x3F) << 6) | (c3 & 0x3F)); + } else { + // http://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae + var codePoint = ((c1 & 0x07) << 18) | ((c2 & 0x3F) << 12) | + ((c3 & 0x3F) << 6) | (c4 & 0x3F); + ret = String.fromCharCode( + (((codePoint - 0x10000) / 0x400)|0) + 0xD800, + (codePoint - 0x10000) % 0x400 + 0xDC00); + } + buffer.length = 0; + return ret; + } + this.processJSString = function processJSString(string) { + /* TODO: use TextEncoder when present, + var encoder = new TextEncoder(); + encoder['encoding'] = "utf-8"; + var utf8Array = encoder['encode'](aMsg.data); + */ + string = unescape(encodeURIComponent(string)); + var ret = []; + for (var i = 0; i < string.length; i++) { + ret.push(string.charCodeAt(i)); + } + return ret; + } + }, + getCompilerSetting: function (name) { + throw 'You must build with -s RETAIN_COMPILER_SETTINGS=1 for Runtime.getCompilerSetting or emscripten_get_compiler_setting to work'; + }, + stackAlloc: function (size) { var ret = STACKTOP;STACKTOP = (STACKTOP + size)|0;STACKTOP = (((STACKTOP)+15)&-16); return ret; }, + staticAlloc: function (size) { var ret = STATICTOP;STATICTOP = (STATICTOP + size)|0;STATICTOP = (((STATICTOP)+15)&-16); return ret; }, + dynamicAlloc: function (size) { var ret = DYNAMICTOP;DYNAMICTOP = (DYNAMICTOP + size)|0;DYNAMICTOP = (((DYNAMICTOP)+15)&-16); if (DYNAMICTOP >= TOTAL_MEMORY) enlargeMemory();; return ret; }, + alignMemory: function (size,quantum) { var ret = size = Math.ceil((size)/(quantum ? quantum : 16))*(quantum ? quantum : 16); return ret; }, + makeBigInt: function (low,high,unsigned) { var ret = (unsigned ? ((+((low>>>0)))+((+((high>>>0)))*4294967296.0)) : ((+((low>>>0)))+((+((high|0)))*4294967296.0))); return ret; }, + GLOBAL_BASE: 8, + QUANTUM_SIZE: 4, + __dummy__: 0 +} + + +Module['Runtime'] = Runtime; + + + + + + + + + +//======================================== +// Runtime essentials +//======================================== + +var __THREW__ = 0; // Used in checking for thrown exceptions. + +var ABORT = false; // whether we are quitting the application. no code should run after this. set in exit() and abort() +var EXITSTATUS = 0; + +var undef = 0; +// tempInt is used for 32-bit signed values or smaller. tempBigInt is used +// for 32-bit unsigned values or more than 32 bits. TODO: audit all uses of tempInt +var tempValue, tempInt, tempBigInt, tempInt2, tempBigInt2, tempPair, tempBigIntI, tempBigIntR, tempBigIntS, tempBigIntP, tempBigIntD, tempDouble, tempFloat; +var tempI64, tempI64b; +var tempRet0, tempRet1, tempRet2, tempRet3, tempRet4, tempRet5, tempRet6, tempRet7, tempRet8, tempRet9; + +function assert(condition, text) { + if (!condition) { + abort('Assertion failed: ' + text); + } +} + +var globalScope = this; + +// Returns the C function with a specified identifier (for C++, you need to do manual name mangling) +function getCFunc(ident) { + var func = Module['_' + ident]; // closure exported function + if (!func) { + try { + func = eval('_' + ident); // explicit lookup + } catch(e) {} + } + assert(func, 'Cannot call unknown function ' + ident + ' (perhaps LLVM optimizations or closure removed it?)'); + return func; +} + +var cwrap, ccall; +(function(){ + var JSfuncs = { + // Helpers for cwrap -- it can't refer to Runtime directly because it might + // be renamed by closure, instead it calls JSfuncs['stackSave'].body to find + // out what the minified function name is. + 'stackSave': function() { + Runtime.stackSave() + }, + 'stackRestore': function() { + Runtime.stackRestore() + }, + // type conversion from js to c + 'arrayToC' : function(arr) { + var ret = Runtime.stackAlloc(arr.length); + writeArrayToMemory(arr, ret); + return ret; + }, + 'stringToC' : function(str) { + var ret = 0; + if (str !== null && str !== undefined && str !== 0) { // null string + // at most 4 bytes per UTF-8 code point, +1 for the trailing '\0' + ret = Runtime.stackAlloc((str.length << 2) + 1); + writeStringToMemory(str, ret); + } + return ret; + } + }; + // For fast lookup of conversion functions + var toC = {'string' : JSfuncs['stringToC'], 'array' : JSfuncs['arrayToC']}; + + // C calling interface. + ccall = function ccallFunc(ident, returnType, argTypes, args) { + var func = getCFunc(ident); + var cArgs = []; + var stack = 0; + if (args) { + for (var i = 0; i < args.length; i++) { + var converter = toC[argTypes[i]]; + if (converter) { + if (stack === 0) stack = Runtime.stackSave(); + cArgs[i] = converter(args[i]); + } else { + cArgs[i] = args[i]; + } + } + } + var ret = func.apply(null, cArgs); + if (returnType === 'string') ret = Pointer_stringify(ret); + if (stack !== 0) Runtime.stackRestore(stack); + return ret; + } + + var sourceRegex = /^function\s*\(([^)]*)\)\s*{\s*([^*]*?)[\s;]*(?:return\s*(.*?)[;\s]*)?}$/; + function parseJSFunc(jsfunc) { + // Match the body and the return value of a javascript function source + var parsed = jsfunc.toString().match(sourceRegex).slice(1); + return {arguments : parsed[0], body : parsed[1], returnValue: parsed[2]} + } + var JSsource = {}; + for (var fun in JSfuncs) { + if (JSfuncs.hasOwnProperty(fun)) { + // Elements of toCsource are arrays of three items: + // the code, and the return value + JSsource[fun] = parseJSFunc(JSfuncs[fun]); + } + } + + + cwrap = function cwrap(ident, returnType, argTypes) { + argTypes = argTypes || []; + var cfunc = getCFunc(ident); + // When the function takes numbers and returns a number, we can just return + // the original function + var numericArgs = argTypes.every(function(type){ return type === 'number'}); + var numericRet = (returnType !== 'string'); + if ( numericRet && numericArgs) { + return cfunc; + } + // Creation of the arguments list (["$1","$2",...,"$nargs"]) + var argNames = argTypes.map(function(x,i){return '$'+i}); + var funcstr = "(function(" + argNames.join(',') + ") {"; + var nargs = argTypes.length; + if (!numericArgs) { + // Generate the code needed to convert the arguments from javascript + // values to pointers + funcstr += 'var stack = ' + JSsource['stackSave'].body + ';'; + for (var i = 0; i < nargs; i++) { + var arg = argNames[i], type = argTypes[i]; + if (type === 'number') continue; + var convertCode = JSsource[type + 'ToC']; // [code, return] + funcstr += 'var ' + convertCode.arguments + ' = ' + arg + ';'; + funcstr += convertCode.body + ';'; + funcstr += arg + '=' + convertCode.returnValue + ';'; + } + } + + // When the code is compressed, the name of cfunc is not literally 'cfunc' anymore + var cfuncname = parseJSFunc(function(){return cfunc}).returnValue; + // Call the function + funcstr += 'var ret = ' + cfuncname + '(' + argNames.join(',') + ');'; + if (!numericRet) { // Return type can only by 'string' or 'number' + // Convert the result to a string + var strgfy = parseJSFunc(function(){return Pointer_stringify}).returnValue; + funcstr += 'ret = ' + strgfy + '(ret);'; + } + if (!numericArgs) { + // If we had a stack, restore it + funcstr += JSsource['stackRestore'].body.replace('()', '(stack)') + ';'; + } + funcstr += 'return ret})'; + return eval(funcstr); + }; +})(); +Module["cwrap"] = cwrap; +Module["ccall"] = ccall; + + +function setValue(ptr, value, type, noSafe) { + type = type || 'i8'; + if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit + switch(type) { + case 'i1': HEAP8[((ptr)>>0)]=value; break; + case 'i8': HEAP8[((ptr)>>0)]=value; break; + case 'i16': HEAP16[((ptr)>>1)]=value; break; + case 'i32': HEAP32[((ptr)>>2)]=value; break; + case 'i64': (tempI64 = [value>>>0,(tempDouble=value,(+(Math_abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math_min((+(Math_floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math_ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[((ptr)>>2)]=tempI64[0],HEAP32[(((ptr)+(4))>>2)]=tempI64[1]); break; + case 'float': HEAPF32[((ptr)>>2)]=value; break; + case 'double': HEAPF64[((ptr)>>3)]=value; break; + default: abort('invalid type for setValue: ' + type); + } +} +Module['setValue'] = setValue; + + +function getValue(ptr, type, noSafe) { + type = type || 'i8'; + if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit + switch(type) { + case 'i1': return HEAP8[((ptr)>>0)]; + case 'i8': return HEAP8[((ptr)>>0)]; + case 'i16': return HEAP16[((ptr)>>1)]; + case 'i32': return HEAP32[((ptr)>>2)]; + case 'i64': return HEAP32[((ptr)>>2)]; + case 'float': return HEAPF32[((ptr)>>2)]; + case 'double': return HEAPF64[((ptr)>>3)]; + default: abort('invalid type for setValue: ' + type); + } + return null; +} +Module['getValue'] = getValue; + +var ALLOC_NORMAL = 0; // Tries to use _malloc() +var ALLOC_STACK = 1; // Lives for the duration of the current function call +var ALLOC_STATIC = 2; // Cannot be freed +var ALLOC_DYNAMIC = 3; // Cannot be freed except through sbrk +var ALLOC_NONE = 4; // Do not allocate +Module['ALLOC_NORMAL'] = ALLOC_NORMAL; +Module['ALLOC_STACK'] = ALLOC_STACK; +Module['ALLOC_STATIC'] = ALLOC_STATIC; +Module['ALLOC_DYNAMIC'] = ALLOC_DYNAMIC; +Module['ALLOC_NONE'] = ALLOC_NONE; + +// allocate(): This is for internal use. You can use it yourself as well, but the interface +// is a little tricky (see docs right below). The reason is that it is optimized +// for multiple syntaxes to save space in generated code. So you should +// normally not use allocate(), and instead allocate memory using _malloc(), +// initialize it with setValue(), and so forth. +// @slab: An array of data, or a number. If a number, then the size of the block to allocate, +// in *bytes* (note that this is sometimes confusing: the next parameter does not +// affect this!) +// @types: Either an array of types, one for each byte (or 0 if no type at that position), +// or a single type which is used for the entire block. This only matters if there +// is initial data - if @slab is a number, then this does not matter at all and is +// ignored. +// @allocator: How to allocate memory, see ALLOC_* +function allocate(slab, types, allocator, ptr) { + var zeroinit, size; + if (typeof slab === 'number') { + zeroinit = true; + size = slab; + } else { + zeroinit = false; + size = slab.length; + } + + var singleType = typeof types === 'string' ? types : null; + + var ret; + if (allocator == ALLOC_NONE) { + ret = ptr; + } else { + ret = [_malloc, Runtime.stackAlloc, Runtime.staticAlloc, Runtime.dynamicAlloc][allocator === undefined ? ALLOC_STATIC : allocator](Math.max(size, singleType ? 1 : types.length)); + } + + if (zeroinit) { + var ptr = ret, stop; + assert((ret & 3) == 0); + stop = ret + (size & ~3); + for (; ptr < stop; ptr += 4) { + HEAP32[((ptr)>>2)]=0; + } + stop = ret + size; + while (ptr < stop) { + HEAP8[((ptr++)>>0)]=0; + } + return ret; + } + + if (singleType === 'i8') { + if (slab.subarray || slab.slice) { + HEAPU8.set(slab, ret); + } else { + HEAPU8.set(new Uint8Array(slab), ret); + } + return ret; + } + + var i = 0, type, typeSize, previousType; + while (i < size) { + var curr = slab[i]; + + if (typeof curr === 'function') { + curr = Runtime.getFunctionIndex(curr); + } + + type = singleType || types[i]; + if (type === 0) { + i++; + continue; + } + + if (type == 'i64') type = 'i32'; // special case: we have one i32 here, and one i32 later + + setValue(ret+i, curr, type); + + // no need to look up size unless type changes, so cache it + if (previousType !== type) { + typeSize = Runtime.getNativeTypeSize(type); + previousType = type; + } + i += typeSize; + } + + return ret; +} +Module['allocate'] = allocate; + +function Pointer_stringify(ptr, /* optional */ length) { + if (length === 0 || !ptr) return ''; + // TODO: use TextDecoder + // Find the length, and check for UTF while doing so + var hasUtf = false; + var t; + var i = 0; + while (1) { + t = HEAPU8[(((ptr)+(i))>>0)]; + if (t >= 128) hasUtf = true; + else if (t == 0 && !length) break; + i++; + if (length && i == length) break; + } + if (!length) length = i; + + var ret = ''; + + if (!hasUtf) { + var MAX_CHUNK = 1024; // split up into chunks, because .apply on a huge string can overflow the stack + var curr; + while (length > 0) { + curr = String.fromCharCode.apply(String, HEAPU8.subarray(ptr, ptr + Math.min(length, MAX_CHUNK))); + ret = ret ? ret + curr : curr; + ptr += MAX_CHUNK; + length -= MAX_CHUNK; + } + return ret; + } + + var utf8 = new Runtime.UTF8Processor(); + for (i = 0; i < length; i++) { + t = HEAPU8[(((ptr)+(i))>>0)]; + ret += utf8.processCChar(t); + } + return ret; +} +Module['Pointer_stringify'] = Pointer_stringify; + +function UTF16ToString(ptr) { + var i = 0; + + var str = ''; + while (1) { + var codeUnit = HEAP16[(((ptr)+(i*2))>>1)]; + if (codeUnit == 0) + return str; + ++i; + // fromCharCode constructs a character from a UTF-16 code unit, so we can pass the UTF16 string right through. + str += String.fromCharCode(codeUnit); + } +} +Module['UTF16ToString'] = UTF16ToString; + + +function stringToUTF16(str, outPtr) { + for(var i = 0; i < str.length; ++i) { + // charCodeAt returns a UTF-16 encoded code unit, so it can be directly written to the HEAP. + var codeUnit = str.charCodeAt(i); // possibly a lead surrogate + HEAP16[(((outPtr)+(i*2))>>1)]=codeUnit; + } + // Null-terminate the pointer to the HEAP. + HEAP16[(((outPtr)+(str.length*2))>>1)]=0; +} +Module['stringToUTF16'] = stringToUTF16; + + +function UTF32ToString(ptr) { + var i = 0; + + var str = ''; + while (1) { + var utf32 = HEAP32[(((ptr)+(i*4))>>2)]; + if (utf32 == 0) + return str; + ++i; + // Gotcha: fromCharCode constructs a character from a UTF-16 encoded code (pair), not from a Unicode code point! So encode the code point to UTF-16 for constructing. + if (utf32 >= 0x10000) { + var ch = utf32 - 0x10000; + str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF)); + } else { + str += String.fromCharCode(utf32); + } + } +} +Module['UTF32ToString'] = UTF32ToString; + + +function stringToUTF32(str, outPtr) { + var iChar = 0; + for(var iCodeUnit = 0; iCodeUnit < str.length; ++iCodeUnit) { + // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! We must decode the string to UTF-32 to the heap. + var codeUnit = str.charCodeAt(iCodeUnit); // possibly a lead surrogate + if (codeUnit >= 0xD800 && codeUnit <= 0xDFFF) { + var trailSurrogate = str.charCodeAt(++iCodeUnit); + codeUnit = 0x10000 + ((codeUnit & 0x3FF) << 10) | (trailSurrogate & 0x3FF); + } + HEAP32[(((outPtr)+(iChar*4))>>2)]=codeUnit; + ++iChar; + } + // Null-terminate the pointer to the HEAP. + HEAP32[(((outPtr)+(iChar*4))>>2)]=0; +} +Module['stringToUTF32'] = stringToUTF32; + +function demangle(func) { + var hasLibcxxabi = !!Module['___cxa_demangle']; + if (hasLibcxxabi) { + try { + var buf = _malloc(func.length); + writeStringToMemory(func.substr(1), buf); + var status = _malloc(4); + var ret = Module['___cxa_demangle'](buf, 0, 0, status); + if (getValue(status, 'i32') === 0 && ret) { + return Pointer_stringify(ret); + } + // otherwise, libcxxabi failed, we can try ours which may return a partial result + } catch(e) { + // failure when using libcxxabi, we can try ours which may return a partial result + } finally { + if (buf) _free(buf); + if (status) _free(status); + if (ret) _free(ret); + } + } + var i = 3; + // params, etc. + var basicTypes = { + 'v': 'void', + 'b': 'bool', + 'c': 'char', + 's': 'short', + 'i': 'int', + 'l': 'long', + 'f': 'float', + 'd': 'double', + 'w': 'wchar_t', + 'a': 'signed char', + 'h': 'unsigned char', + 't': 'unsigned short', + 'j': 'unsigned int', + 'm': 'unsigned long', + 'x': 'long long', + 'y': 'unsigned long long', + 'z': '...' + }; + var subs = []; + var first = true; + function dump(x) { + //return; + if (x) Module.print(x); + Module.print(func); + var pre = ''; + for (var a = 0; a < i; a++) pre += ' '; + Module.print (pre + '^'); + } + function parseNested() { + i++; + if (func[i] === 'K') i++; // ignore const + var parts = []; + while (func[i] !== 'E') { + if (func[i] === 'S') { // substitution + i++; + var next = func.indexOf('_', i); + var num = func.substring(i, next) || 0; + parts.push(subs[num] || '?'); + i = next+1; + continue; + } + if (func[i] === 'C') { // constructor + parts.push(parts[parts.length-1]); + i += 2; + continue; + } + var size = parseInt(func.substr(i)); + var pre = size.toString().length; + if (!size || !pre) { i--; break; } // counter i++ below us + var curr = func.substr(i + pre, size); + parts.push(curr); + subs.push(curr); + i += pre + size; + } + i++; // skip E + return parts; + } + function parse(rawList, limit, allowVoid) { // main parser + limit = limit || Infinity; + var ret = '', list = []; + function flushList() { + return '(' + list.join(', ') + ')'; + } + var name; + if (func[i] === 'N') { + // namespaced N-E + name = parseNested().join('::'); + limit--; + if (limit === 0) return rawList ? [name] : name; + } else { + // not namespaced + if (func[i] === 'K' || (first && func[i] === 'L')) i++; // ignore const and first 'L' + var size = parseInt(func.substr(i)); + if (size) { + var pre = size.toString().length; + name = func.substr(i + pre, size); + i += pre + size; + } + } + first = false; + if (func[i] === 'I') { + i++; + var iList = parse(true); + var iRet = parse(true, 1, true); + ret += iRet[0] + ' ' + name + '<' + iList.join(', ') + '>'; + } else { + ret = name; + } + paramLoop: while (i < func.length && limit-- > 0) { + //dump('paramLoop'); + var c = func[i++]; + if (c in basicTypes) { + list.push(basicTypes[c]); + } else { + switch (c) { + case 'P': list.push(parse(true, 1, true)[0] + '*'); break; // pointer + case 'R': list.push(parse(true, 1, true)[0] + '&'); break; // reference + case 'L': { // literal + i++; // skip basic type + var end = func.indexOf('E', i); + var size = end - i; + list.push(func.substr(i, size)); + i += size + 2; // size + 'EE' + break; + } + case 'A': { // array + var size = parseInt(func.substr(i)); + i += size.toString().length; + if (func[i] !== '_') throw '?'; + i++; // skip _ + list.push(parse(true, 1, true)[0] + ' [' + size + ']'); + break; + } + case 'E': break paramLoop; + default: ret += '?' + c; break paramLoop; + } + } + } + if (!allowVoid && list.length === 1 && list[0] === 'void') list = []; // avoid (void) + if (rawList) { + if (ret) { + list.push(ret + '?'); + } + return list; + } else { + return ret + flushList(); + } + } + var parsed = func; + try { + // Special-case the entry point, since its name differs from other name mangling. + if (func == 'Object._main' || func == '_main') { + return 'main()'; + } + if (typeof func === 'number') func = Pointer_stringify(func); + if (func[0] !== '_') return func; + if (func[1] !== '_') return func; // C function + if (func[2] !== 'Z') return func; + switch (func[3]) { + case 'n': return 'operator new()'; + case 'd': return 'operator delete()'; + } + parsed = parse(); + } catch(e) { + parsed += '?'; + } + if (parsed.indexOf('?') >= 0 && !hasLibcxxabi) { + Runtime.warnOnce('warning: a problem occurred in builtin C++ name demangling; build with -s DEMANGLE_SUPPORT=1 to link in libcxxabi demangling'); + } + return parsed; +} + +function demangleAll(text) { + return text.replace(/__Z[\w\d_]+/g, function(x) { var y = demangle(x); return x === y ? x : (x + ' [' + y + ']') }); +} + +function jsStackTrace() { + var err = new Error(); + if (!err.stack) { + // IE10+ special cases: It does have callstack info, but it is only populated if an Error object is thrown, + // so try that as a special-case. + try { + throw new Error(0); + } catch(e) { + err = e; + } + if (!err.stack) { + return '(no stack trace available)'; + } + } + return err.stack.toString(); +} + +function stackTrace() { + return demangleAll(jsStackTrace()); +} +Module['stackTrace'] = stackTrace; + +// Memory management + +var PAGE_SIZE = 4096; +function alignMemoryPage(x) { + return (x+4095)&-4096; +} + +var HEAP; +var HEAP8, HEAPU8, HEAP16, HEAPU16, HEAP32, HEAPU32, HEAPF32, HEAPF64; + +var STATIC_BASE = 0, STATICTOP = 0, staticSealed = false; // static area +var STACK_BASE = 0, STACKTOP = 0, STACK_MAX = 0; // stack area +var DYNAMIC_BASE = 0, DYNAMICTOP = 0; // dynamic area handled by sbrk + +function enlargeMemory() { + abort('Cannot enlarge memory arrays. Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value ' + TOTAL_MEMORY + ', (2) compile with ALLOW_MEMORY_GROWTH which adjusts the size at runtime but prevents some optimizations, or (3) set Module.TOTAL_MEMORY before the program runs.'); +} + + +var TOTAL_STACK = Module['TOTAL_STACK'] || 5242880; +var TOTAL_MEMORY = Module['TOTAL_MEMORY'] || 16777216; +var FAST_MEMORY = Module['FAST_MEMORY'] || 2097152; + +var totalMemory = 64*1024; +while (totalMemory < TOTAL_MEMORY || totalMemory < 2*TOTAL_STACK) { + if (totalMemory < 16*1024*1024) { + totalMemory *= 2; + } else { + totalMemory += 16*1024*1024 + } +} +if (totalMemory !== TOTAL_MEMORY) { + Module.printErr('increasing TOTAL_MEMORY to ' + totalMemory + ' to be compliant with the asm.js spec'); + TOTAL_MEMORY = totalMemory; +} + +// Initialize the runtime's memory +// check for full engine support (use string 'subarray' to avoid closure compiler confusion) +assert(typeof Int32Array !== 'undefined' && typeof Float64Array !== 'undefined' && !!(new Int32Array(1)['subarray']) && !!(new Int32Array(1)['set']), + 'JS engine does not provide full typed array support'); + +var buffer = new ArrayBuffer(TOTAL_MEMORY); +HEAP8 = new Int8Array(buffer); +HEAP16 = new Int16Array(buffer); +HEAP32 = new Int32Array(buffer); +HEAPU8 = new Uint8Array(buffer); +HEAPU16 = new Uint16Array(buffer); +HEAPU32 = new Uint32Array(buffer); +HEAPF32 = new Float32Array(buffer); +HEAPF64 = new Float64Array(buffer); + +// Endianness check (note: assumes compiler arch was little-endian) +HEAP32[0] = 255; +assert(HEAPU8[0] === 255 && HEAPU8[3] === 0, 'Typed arrays 2 must be run on a little-endian system'); + +Module['HEAP'] = HEAP; +Module['buffer'] = buffer; +Module['HEAP8'] = HEAP8; +Module['HEAP16'] = HEAP16; +Module['HEAP32'] = HEAP32; +Module['HEAPU8'] = HEAPU8; +Module['HEAPU16'] = HEAPU16; +Module['HEAPU32'] = HEAPU32; +Module['HEAPF32'] = HEAPF32; +Module['HEAPF64'] = HEAPF64; + +function callRuntimeCallbacks(callbacks) { + while(callbacks.length > 0) { + var callback = callbacks.shift(); + if (typeof callback == 'function') { + callback(); + continue; + } + var func = callback.func; + if (typeof func === 'number') { + if (callback.arg === undefined) { + Runtime.dynCall('v', func); + } else { + Runtime.dynCall('vi', func, [callback.arg]); + } + } else { + func(callback.arg === undefined ? null : callback.arg); + } + } +} + +var __ATPRERUN__ = []; // functions called before the runtime is initialized +var __ATINIT__ = []; // functions called during startup +var __ATMAIN__ = []; // functions called when main() is to be run +var __ATEXIT__ = []; // functions called during shutdown +var __ATPOSTRUN__ = []; // functions called after the runtime has exited + +var runtimeInitialized = false; +var runtimeExited = false; + +function preRun() { + // compatibility - merge in anything from Module['preRun'] at this time + if (Module['preRun']) { + if (typeof Module['preRun'] == 'function') Module['preRun'] = [Module['preRun']]; + while (Module['preRun'].length) { + addOnPreRun(Module['preRun'].shift()); + } + } + callRuntimeCallbacks(__ATPRERUN__); +} + +function ensureInitRuntime() { + if (runtimeInitialized) return; + runtimeInitialized = true; + callRuntimeCallbacks(__ATINIT__); +} + +function preMain() { + callRuntimeCallbacks(__ATMAIN__); +} + +function exitRuntime() { + callRuntimeCallbacks(__ATEXIT__); + runtimeExited = true; +} + +function postRun() { + // compatibility - merge in anything from Module['postRun'] at this time + if (Module['postRun']) { + if (typeof Module['postRun'] == 'function') Module['postRun'] = [Module['postRun']]; + while (Module['postRun'].length) { + addOnPostRun(Module['postRun'].shift()); + } + } + callRuntimeCallbacks(__ATPOSTRUN__); +} + +function addOnPreRun(cb) { + __ATPRERUN__.unshift(cb); +} +Module['addOnPreRun'] = Module.addOnPreRun = addOnPreRun; + +function addOnInit(cb) { + __ATINIT__.unshift(cb); +} +Module['addOnInit'] = Module.addOnInit = addOnInit; + +function addOnPreMain(cb) { + __ATMAIN__.unshift(cb); +} +Module['addOnPreMain'] = Module.addOnPreMain = addOnPreMain; + +function addOnExit(cb) { + __ATEXIT__.unshift(cb); +} +Module['addOnExit'] = Module.addOnExit = addOnExit; + +function addOnPostRun(cb) { + __ATPOSTRUN__.unshift(cb); +} +Module['addOnPostRun'] = Module.addOnPostRun = addOnPostRun; + +// Tools + + +function intArrayFromString(stringy, dontAddNull, length /* optional */) { + var ret = (new Runtime.UTF8Processor()).processJSString(stringy); + if (length) { + ret.length = length; + } + if (!dontAddNull) { + ret.push(0); + } + return ret; +} +Module['intArrayFromString'] = intArrayFromString; + +function intArrayToString(array) { + var ret = []; + for (var i = 0; i < array.length; i++) { + var chr = array[i]; + if (chr > 0xFF) { + chr &= 0xFF; + } + ret.push(String.fromCharCode(chr)); + } + return ret.join(''); +} +Module['intArrayToString'] = intArrayToString; + +function writeStringToMemory(string, buffer, dontAddNull) { + var array = intArrayFromString(string, dontAddNull); + var i = 0; + while (i < array.length) { + var chr = array[i]; + HEAP8[(((buffer)+(i))>>0)]=chr; + i = i + 1; + } +} +Module['writeStringToMemory'] = writeStringToMemory; + +function writeArrayToMemory(array, buffer) { + for (var i = 0; i < array.length; i++) { + HEAP8[(((buffer)+(i))>>0)]=array[i]; + } +} +Module['writeArrayToMemory'] = writeArrayToMemory; + +function writeAsciiToMemory(str, buffer, dontAddNull) { + for (var i = 0; i < str.length; i++) { + HEAP8[(((buffer)+(i))>>0)]=str.charCodeAt(i); + } + if (!dontAddNull) HEAP8[(((buffer)+(str.length))>>0)]=0; +} +Module['writeAsciiToMemory'] = writeAsciiToMemory; + +function unSign(value, bits, ignore) { + if (value >= 0) { + return value; + } + return bits <= 32 ? 2*Math.abs(1 << (bits-1)) + value // Need some trickery, since if bits == 32, we are right at the limit of the bits JS uses in bitshifts + : Math.pow(2, bits) + value; +} +function reSign(value, bits, ignore) { + if (value <= 0) { + return value; + } + var half = bits <= 32 ? Math.abs(1 << (bits-1)) // abs is needed if bits == 32 + : Math.pow(2, bits-1); + if (value >= half && (bits <= 32 || value > half)) { // for huge values, we can hit the precision limit and always get true here. so don't do that + // but, in general there is no perfect solution here. With 64-bit ints, we get rounding and errors + // TODO: In i64 mode 1, resign the two parts separately and safely + value = -2*half + value; // Cannot bitshift half, as it may be at the limit of the bits JS uses in bitshifts + } + return value; +} + +// check for imul support, and also for correctness ( https://bugs.webkit.org/show_bug.cgi?id=126345 ) +if (!Math['imul'] || Math['imul'](0xffffffff, 5) !== -5) Math['imul'] = function imul(a, b) { + var ah = a >>> 16; + var al = a & 0xffff; + var bh = b >>> 16; + var bl = b & 0xffff; + return (al*bl + ((ah*bl + al*bh) << 16))|0; +}; +Math.imul = Math['imul']; + + +var Math_abs = Math.abs; +var Math_cos = Math.cos; +var Math_sin = Math.sin; +var Math_tan = Math.tan; +var Math_acos = Math.acos; +var Math_asin = Math.asin; +var Math_atan = Math.atan; +var Math_atan2 = Math.atan2; +var Math_exp = Math.exp; +var Math_log = Math.log; +var Math_sqrt = Math.sqrt; +var Math_ceil = Math.ceil; +var Math_floor = Math.floor; +var Math_pow = Math.pow; +var Math_imul = Math.imul; +var Math_fround = Math.fround; +var Math_min = Math.min; + +// A counter of dependencies for calling run(). If we need to +// do asynchronous work before running, increment this and +// decrement it. Incrementing must happen in a place like +// PRE_RUN_ADDITIONS (used by emcc to add file preloading). +// Note that you can add dependencies in preRun, even though +// it happens right before run - run will be postponed until +// the dependencies are met. +var runDependencies = 0; +var runDependencyWatcher = null; +var dependenciesFulfilled = null; // overridden to take different actions when all run dependencies are fulfilled + +function addRunDependency(id) { + runDependencies++; + if (Module['monitorRunDependencies']) { + Module['monitorRunDependencies'](runDependencies); + } +} +Module['addRunDependency'] = addRunDependency; +function removeRunDependency(id) { + runDependencies--; + if (Module['monitorRunDependencies']) { + Module['monitorRunDependencies'](runDependencies); + } + if (runDependencies == 0) { + if (runDependencyWatcher !== null) { + clearInterval(runDependencyWatcher); + runDependencyWatcher = null; + } + if (dependenciesFulfilled) { + var callback = dependenciesFulfilled; + dependenciesFulfilled = null; + callback(); // can add another dependenciesFulfilled + } + } +} +Module['removeRunDependency'] = removeRunDependency; + +Module["preloadedImages"] = {}; // maps url to image data +Module["preloadedAudios"] = {}; // maps url to audio data + + +var memoryInitializer = null; + +// === Body === + + + + + +STATIC_BASE = 8; + +STATICTOP = STATIC_BASE + 33040; + /* global initializers */ __ATINIT__.push(); + + +/* memory initializer */ allocate([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,59,140,1,189,241,36,255,248,37,195,1,96,220,55,0,183,76,62,255,195,66,61,0,50,76,164,1,225,164,76,255,76,61,163,255,117,62,31,0,81,145,64,255,118,65,14,0,162,115,214,255,6,138,46,0,124,230,244,255,10,138,143,0,52,26,194,0,184,244,76,0,129,143,41,1,190,244,19,255,123,170,122,255,98,129,68,0,121,213,147,0,86,101,30,255,161,103,155,0,140,89,67,255,239,229,190,1,67,11,181,0,198,240,137,254,238,69,188,255,67,151,238,0,19,42,108,255,229,85,113,1,50,68,135,255,17,106,9,0,50,103,1,255,80,1,168,1,35,152,30,255,16,168,185,1,56,89,232,255,101,210,252,0,41,250,71,0,204,170,79,255,14,46,239,255,80,77,239,0,189,214,75,255,17,141,249,0,38,80,76,255,190,85,117,0,86,228,170,0,156,216,208,1,195,207,164,255,150,66,76,255,175,225,16,255,141,80,98,1,76,219,242,0,198,162,114,0,46,218,152,0,155,43,241,254,155,160,104,255,51,187,165,0,2,17,175,0,66,84,160,1,247,58,30,0,35,65,53,254,69,236,191,0,45,134,245,1,163,123,221,0,32,110,20,255,52,23,165,0,186,214,71,0,233,176,96,0,242,239,54,1,57,89,138,0,83,0,84,255,136,160,100,0,92,142,120,254,104,124,190,0,181,177,62,255,250,41,85,0,152,130,42,1,96,252,246,0,151,151,63,254,239,133,62,0,32,56,156,0,45,167,189,255,142,133,179,1,131,86,211,0,187,179,150,254,250,170,14,255,210,163,78,0,37,52,151,0,99,77,26,0,238,156,213,255,213,192,209,1,73,46,84,0,20,65,41,1,54,206,79,0,201,131,146,254,170,111,24,255,177,33,50,254,171,38,203,255,78,247,116,0,209,221,153,0,133,128,178,1,58,44,25,0,201,39,59,1,189,19,252,0,49,229,210,1,117,187,117,0,181,179,184,1,0,114,219,0,48,94,147,0,245,41,56,0,125,13,204,254,244,173,119,0,44,221,32,254,84,234,20,0,249,160,198,1,236,126,234,255,47,99,168,254,170,226,153,255,102,179,216,0,226,141,122,255,122,66,153,254,182,245,134,0,227,228,25,1,214,57,235,255,216,173,56,255,181,231,210,0,119,128,157,255,129,95,136,255,110,126,51,0,2,169,183,255,7,130,98,254,69,176,94,255,116,4,227,1,217,242,145,255,202,173,31,1,105,1,39,255,46,175,69,0,228,47,58,255,215,224,69,254,207,56,69,255,16,254,139,255,23,207,212,255,202,20,126,255,95,213,96,255,9,176,33,0,200,5,207,255,241,42,128,254,35,33,192,255,248,229,196,1,129,17,120,0,251,103,151,255,7,52,112,255,140,56,66,255,40,226,245,255,217,70,37,254,172,214,9,255,72,67,134,1,146,192,214,255,44,38,112,0,68,184,75,255,206,90,251,0,149,235,141,0,181,170,58,0,116,244,239,0,92,157,2,0,102,173,98,0,233,137,96,1,127,49,203,0,5,155,148,0,23,148,9,255,211,122,12,0,34,134,26,255,219,204,136,0,134,8,41,255,224,83,43,254,85,25,247,0,109,127,0,254,169,136,48,0,238,119,219,255,231,173,213,0,206,18,254,254,8,186,7,255,126,9,7,1,111,42,72,0,111,52,236,254,96,63,141,0,147,191,127,254,205,78,192,255,14,106,237,1,187,219,76,0,175,243,187,254,105,89,173,0,85,25,89,1,162,243,148,0,2,118,209,254,33,158,9,0,139,163,46,255,93,70,40,0,108,42,142,254,111,252,142,255,155,223,144,0,51,229,167,255,73,252,155,255,94,116,12,255,152,160,218,255,156,238,37,255,179,234,207,255,197,0,179,255,154,164,141,0,225,196,104,0,10,35,25,254,209,212,242,255,97,253,222,254,184,101,229,0,222,18,127,1,164,136,135,255,30,207,140,254,146,97,243,0,129,192,26,254,201,84,33,255,111,10,78,255,147,81,178,255,4,4,24,0,161,238,215,255,6,141,33,0,53,215,14,255,41,181,208,255,231,139,157,0,179,203,221,255,255,185,113,0,189,226,172,255,113,66,214,255,202,62,45,255,102,64,8,255,78,174,16,254,133,117,68,255,182,120,89,255,133,114,211,0,189,110,21,255,15,10,106,0,41,192,1,0,152,232,121,255,188,60,160,255,153,113,206,255,0,183,226,254,180,13,72,255,176,160,14,254,211,201,134,255,158,24,143,0,127,105,53,0,96,12,189,0,167,215,251,255,159,76,128,254,106,101,225,255,30,252,4,0,146,12,174,0,89,241,178,254,10,229,166,255,123,221,42,254,30,20,212,0,82,128,3,0,48,209,243,0,119,121,64,255,50,227,156,255,0,110,197,1,103,27,144,0,133,59,140,1,189,241,36,255,248,37,195,1,96,220,55,0,183,76,62,255,195,66,61,0,50,76,164,1,225,164,76,255,76,61,163,255,117,62,31,0,81,145,64,255,118,65,14,0,162,115,214,255,6,138,46,0,124,230,244,255,10,138,143,0,52,26,194,0,184,244,76,0,129,143,41,1,190,244,19,255,123,170,122,255,98,129,68,0,121,213,147,0,86,101,30,255,161,103,155,0,140,89,67,255,239,229,190,1,67,11,181,0,198,240,137,254,238,69,188,255,234,113,60,255,37,255,57,255,69,178,182,254,128,208,179,0,118,26,125,254,3,7,214,255,241,50,77,255,85,203,197,255,211,135,250,255,25,48,100,255,187,213,180,254,17,88,105,0,83,209,158,1,5,115,98,0,4,174,60,254,171,55,110,255,217,181,17,255,20,188,170,0,146,156,102,254,87,214,174,255,114,122,155,1,233,44,170,0,127,8,239,1,214,236,234,0,175,5,219,0,49,106,61,255,6,66,208,255,2,106,110,255,81,234,19,255,215,107,192,255,67,151,238,0,19,42,108,255,229,85,113,1,50,68,135,255,17,106,9,0,50,103,1,255,80,1,168,1,35,152,30,255,16,168,185,1,56,89,232,255,101,210,252,0,41,250,71,0,204,170,79,255,14,46,239,255,80,77,239,0,189,214,75,255,17,141,249,0,38,80,76,255,190,85,117,0,86,228,170,0,156,216,208,1,195,207,164,255,150,66,76,255,175,225,16,255,141,80,98,1,76,219,242,0,198,162,114,0,46,218,152,0,155,43,241,254,155,160,104,255,178,9,252,254,100,110,212,0,14,5,167,0,233,239,163,255,28,151,157,1,101,146,10,255,254,158,70,254,71,249,228,0,88,30,50,0,68,58,160,255,191,24,104,1,129,66,129,255,192,50,85,255,8,179,138,255,38,250,201,0,115,80,160,0,131,230,113,0,125,88,147,0,90,68,199,0,253,76,158,0,28,255,118,0,113,250,254,0,66,75,46,0,230,218,43,0,229,120,186,1,148,68,43,0,136,124,238,1,187,107,197,255,84,53,246,255,51,116,254,255,51,187,165,0,2,17,175,0,66,84,160,1,247,58,30,0,35,65,53,254,69,236,191,0,45,134,245,1,163,123,221,0,32,110,20,255,52,23,165,0,186,214,71,0,233,176,96,0,242,239,54,1,57,89,138,0,83,0,84,255,136,160,100,0,92,142,120,254,104,124,190,0,181,177,62,255,250,41,85,0,152,130,42,1,96,252,246,0,151,151,63,254,239,133,62,0,32,56,156,0,45,167,189,255,142,133,179,1,131,86,211,0,187,179,150,254,250,170,14,255,68,113,21,255,222,186,59,255,66,7,241,1,69,6,72,0,86,156,108,254,55,167,89,0,109,52,219,254,13,176,23,255,196,44,106,255,239,149,71,255,164,140,125,255,159,173,1,0,51,41,231,0,145,62,33,0,138,111,93,1,185,83,69,0,144,115,46,0,97,151,16,255,24,228,26,0,49,217,226,0,113,75,234,254,193,153,12,255,182,48,96,255,14,13,26,0,128,195,249,254,69,193,59,0,132,37,81,254,125,106,60,0,214,240,169,1,164,227,66,0,210,163,78,0,37,52,151,0,99,77,26,0,238,156,213,255,213,192,209,1,73,46,84,0,20,65,41,1,54,206,79,0,201,131,146,254,170,111,24,255,177,33,50,254,171,38,203,255,78,247,116,0,209,221,153,0,133,128,178,1,58,44,25,0,201,39,59,1,189,19,252,0,49,229,210,1,117,187,117,0,181,179,184,1,0,114,219,0,48,94,147,0,245,41,56,0,125,13,204,254,244,173,119,0,44,221,32,254,84,234,20,0,249,160,198,1,236,126,234,255,143,62,221,0,129,89,214,255,55,139,5,254,68,20,191,255,14,204,178,1,35,195,217,0,47,51,206,1,38,246,165,0,206,27,6,254,158,87,36,0,217,52,146,255,125,123,215,255,85,60,31,255,171,13,7,0,218,245,88,254,252,35,60,0,55,214,160,255,133,101,56,0,224,32,19,254,147,64,234,0,26,145,162,1,114,118,125,0,248,252,250,0,101,94,196,255,198,141,226,254,51,42,182,0,135,12,9,254,109,172,210,255,197,236,194,1,241,65,154,0,48,156,47,255,153,67,55,255,218,165,34,254,74,180,179,0,218,66,71,1,88,122,99,0,212,181,219,255,92,42,231,255,239,0,154,0,245,77,183,255,94,81,170,1,18,213,216,0,171,93,71,0,52,94,248,0,18,151,161,254,197,209,66,255,174,244,15,254,162,48,183,0,49,61,240,254,182,93,195,0,199,228,6,1,200,5,17,255,137,45,237,255,108,148,4,0,90,79,237,255,39,63,77,255,53,82,207,1,142,22,118,255,101,232,18,1,92,26,67,0,5,200,88,255,33,168,138,255,149,225,72,0,2,209,27,255,44,245,168,1,220,237,17,255,30,211,105,254,141,238,221,0,128,80,245,254,111,254,14,0,222,95,190,1,223,9,241,0,146,76,212,255,108,205,104,255,63,117,153,0,144,69,48,0,35,228,111,0,192,33,193,255,112,214,190,254,115,152,151,0,23,102,88,0,51,74,248,0,226,199,143,254,204,162,101,255,208,97,189,1,245,104,18,0,230,246,30,255,23,148,69,0,110,88,52,254,226,181,89,255,208,47,90,254,114,161,80,255,33,116,248,0,179,152,87,255,69,144,177,1,88,238,26,255,58,32,113,1,1,77,69,0,59,121,52,255,152,238,83,0,52,8,193,0,231,39,233,255,199,34,138,0,222,68,173,0,91,57,242,254,220,210,127,255,192,7,246,254,151,35,187,0,195,236,165,0,111,93,206,0,212,247,133,1,154,133,209,255,155,231,10,0,64,78,38,0,122,249,100,1,30,19,97,255,62,91,249,1,248,133,77,0,197,63,168,254,116,10,82,0,184,236,113,254,212,203,194,255,61,100,252,254,36,5,202,255,119,91,153,255,129,79,29,0,103,103,171,254,237,215,111,255,216,53,69,0,239,240,23,0,194,149,221,255,38,225,222,0,232,255,180,254,118,82,133,255,57,209,177,1,139,232,133,0,158,176,46,254,194,115,46,0,88,247,229,1,28,103,191,0,221,222,175,254,149,235,44,0,151,228,25,254,218,105,103,0,142,85,210,0,149,129,190,255,213,65,94,254,117,134,224,255,82,198,117,0,157,221,220,0,163,101,36,0,197,114,37,0,104,172,166,254,11,182,0,0,81,72,188,255,97,188,16,255,69,6,10,0,199,147,145,255,8,9,115,1,65,214,175,255,217,173,209,0,80,127,166,0,247,229,4,254,167,183,124,255,90,28,204,254,175,59,240,255,11,41,248,1,108,40,51,255,144,177,195,254,150,250,126,0,138,91,65,1,120,60,222,255,245,193,239,0,29,214,189,255,128,2,25,0,80,154,162,0,77,220,107,1,234,205,74,255,54,166,103,255,116,72,9,0,228,94,47,255,30,200,25,255,35,214,89,255,61,176,140,255,83,226,163,255,75,130,172,0,128,38,17,0,95,137,152,255,215,124,159,1,79,93,0,0,148,82,157,254,195,130,251,255,40,202,76,255,251,126,224,0,157,99,62,254,207,7,225,255,96,68,195,0,140,186,157,255,131,19,231,255,42,128,254,0,52,219,61,254,102,203,72,0,141,7,11,255,186,164,213,0,31,122,119,0,133,242,145,0,208,252,232,255,91,213,182,255,143,4,250,254,249,215,74,0,165,30,111,1,171,9,223,0,229,123,34,1,92,130,26,255,77,155,45,1,195,139,28,255,59,224,78,0,136,17,247,0,108,121,32,0,79,250,189,255,96,227,252,254,38,241,62,0,62,174,125,255,155,111,93,255,10,230,206,1,97,197,40,255,0,49,57,254,65,250,13,0,18,251,150,255,220,109,210,255,5,174,166,254,44,129,189,0,235,35,147,255,37,247,141,255,72,141,4,255,103,107,255,0,247,90,4,0,53,44,42,0,2,30,240,0,4,59,63,0,88,78,36,0,113,167,180,0,190,71,193,255,199,158,164,255,58,8,172,0,77,33,12,0,65,63,3,0,153,77,33,255,172,254,102,1,228,221,4,255,87,30,254,1,146,41,86,255,138,204,239,254,108,141,17,255,187,242,135,0,210,208,127,0,68,45,14,254,73,96,62,0,81,60,24,255,170,6,36,255,3,249,26,0,35,213,109,0,22,129,54,255,21,35,225,255,234,61,56,255,58,217,6,0,143,124,88,0,236,126,66,0,209,38,183,255,34,238,6,255,174,145,102,0,95,22,211,0,196,15,153,254,46,84,232,255,117,34,146,1,231,250,74,255,27,134,100,1,92,187,195,255,170,198,112,0,120,28,42,0,209,70,67,0,29,81,31,0,29,168,100,1,169,173,160,0,107,35,117,0,62,96,59,255,81,12,69,1,135,239,190,255,220,252,18,0,163,220,58,255,137,137,188,255,83,102,109,0,96,6,76,0,234,222,210,255,185,174,205,1,60,158,213,255,13,241,214,0,172,129,140,0,93,104,242,0,192,156,251,0,43,117,30,0,225,81,158,0,127,232,218,0,226,28,203,0,233,27,151,255,117,43,5,255,242,14,47,255,33,20,6,0,137,251,44,254,27,31,245,255,183,214,125,254,40,121,149,0,186,158,213,255,89,8,227,0,69,88,0,254,203,135,225,0,201,174,203,0,147,71,184,0,18,121,41,254,94,5,78,0,224,214,240,254,36,5,180,0,251,135,231,1,163,138,212,0,210,249,116,254,88,129,187,0,19,8,49,254,62,14,144,255,159,76,211,0,214,51,82,0,109,117,228,254,103,223,203,255,75,252,15,1,154,71,220,255,23,13,91,1,141,168,96,255,181,182,133,0,250,51,55,0,234,234,212,254,175,63,158,0,39,240,52,1,158,189,36,255,213,40,85,1,32,180,247,255,19,102,26,1,84,24,97,255,69,21,222,0,148,139,122,255,220,213,235,1,232,203,255,0,121,57,147,0,227,7,154,0,53,22,147,1,72,1,225,0,82,134,48,254,83,60,157,255,145,72,169,0,34,103,239,0,198,233,47,0,116,19,4,255,184,106,9,255,183,129,83,0,36,176,230,1,34,103,72,0,219,162,134,0,245,42,158,0,32,149,96,254,165,44,144,0,202,239,72,254,215,150,5,0,42,66,36,1,132,215,175,0,86,174,86,255,26,197,156,255,49,232,135,254,103,182,82,0,253,128,176,1,153,178,122,0,245,250,10,0,236,24,178,0,137,106,132,0,40,29,41,0,50,30,152,255,124,105,38,0,230,191,75,0,143,43,170,0,44,131,20,255,44,13,23,255,237,255,155,1,159,109,100,255,112,181,24,255,104,220,108,0,55,211,131,0,99,12,213,255,152,151,145,255,238,5,159,0,97,155,8,0,33,108,81,0,1,3,103,0,62,109,34,255,250,155,180,0,32,71,195,255,38,70,145,1,159,95,245,0,69,229,101,1,136,28,240,0,79,224,25,0,78,110,121,255,248,168,124,0,187,128,247,0,2,147,235,254,79,11,132,0,70,58,12,1,181,8,163,255,79,137,133,255,37,170,11,255,141,243,85,255,176,231,215,255,204,150,164,255,239,215,39,255,46,87,156,254,8,163,88,255,172,34,232,0,66,44,102,255,27,54,41,254,236,99,87,255,41,123,169,1,52,114,43,0,117,134,40,0,155,134,26,0,231,207,91,254,35,132,38,255,19,102,125,254,36,227,133,255,118,3,113,255,29,13,124,0,152,96,74,1,88,146,206,255,167,191,220,254,162,18,88,255,182,100,23,0,31,117,52,0,81,46,106,1,12,2,7,0,69,80,201,1,209,246,172,0,12,48,141,1,224,211,88,0,116,226,159,0,122,98,130,0,65,236,234,1,225,226,9,255,207,226,123,1,89,214,59,0,112,135,88,1,90,244,203,255,49,11,38,1,129,108,186,0,89,112,15,1,101,46,204,255,127,204,45,254,79,255,221,255,51,73,18,255,127,42,101,255,241,21,202,0,160,227,7,0,105,50,236,0,79,52,197,255,104,202,208,1,180,15,16,0,101,197,78,255,98,77,203,0,41,185,241,1,35,193,124,0,35,155,23,255,207,53,192,0,11,125,163,1,249,158,185,255,4,131,48,0,21,93,111,255,61,121,231,1,69,200,36,255,185,48,185,255,111,238,21,255,39,50,25,255,99,215,163,255,87,212,30,255,164,147,5,255,128,6,35,1,108,223,110,255,194,76,178,0,74,101,180,0,243,47,48,0,174,25,43,255,82,173,253,1,54,114,192,255,40,55,91,0,215,108,176,255,11,56,7,0,224,233,76,0,209,98,202,254,242,25,125,0,44,193,93,254,203,8,177,0,135,176,19,0,112,71,213,255,206,59,176,1,4,67,26,0,14,143,213,254,42,55,208,255,60,67,120,0,193,21,163,0,99,164,115,0,10,20,118,0,156,212,222,254,160,7,217,255,114,245,76,1,117,59,123,0,176,194,86,254,213,15,176,0,78,206,207,254,213,129,59,0,233,251,22,1,96,55,152,255,236,255,15,255,197,89,84,255,93,149,133,0,174,160,113,0,234,99,169,255,152,116,88,0,144,164,83,255,95,29,198,255,34,47,15,255,99,120,134,255,5,236,193,0,249,247,126,255,147,187,30,0,50,230,117,255,108,217,219,255,163,81,166,255,72,25,169,254,155,121,79,255,28,155,89,254,7,126,17,0,147,65,33,1,47,234,253,0,26,51,18,0,105,83,199,255,163,196,230,0,113,248,164,0,226,254,218,0,189,209,203,255,164,247,222,254,255,35,165,0,4,188,243,1,127,179,71,0,37,237,254,255,100,186,240,0,5,57,71,254,103,72,73,255,244,18,81,254,229,210,132,255,238,6,180,255,11,229,174,255,227,221,192,1,17,49,28,0,163,215,196,254,9,118,4,255,51,240,71,0,113,129,109,255,76,240,231,0,188,177,127,0,125,71,44,1,26,175,243,0,94,169,25,254,27,230,29,0,15,139,119,1,168,170,186,255,172,197,76,255,252,75,188,0,137,124,196,0,72,22,96,255,45,151,249,1,220,145,100,0,64,192,159,255,120,239,226,0,129,178,146,0,0,192,125,0,235,138,234,0,183,157,146,0,83,199,192,255,184,172,72,255,73,225,128,0,77,6,250,255,186,65,67,0,104,246,207,0,188,32,138,255,218,24,242,0,67,138,81,254,237,129,121,255,20,207,150,1,41,199,16,255,6,20,128,0,159,118,5,0,181,16,143,255,220,38,15,0,23,64,147,254,73,26,13,0,87,228,57,1,204,124,128,0,43,24,223,0,219,99,199,0,22,75,20,255,19,27,126,0,157,62,215,0,110,29,230,0,179,167,255,1,54,252,190,0,221,204,182,254,179,158,65,255,81,157,3,0,194,218,159,0,170,223,0,0,224,11,32,255,38,197,98,0,168,164,37,0,23,88,7,1,164,186,110,0,96,36,134,0,234,242,229,0,250,121,19,0,242,254,112,255,3,47,94,1,9,239,6,255,81,134,153,254,214,253,168,255,67,124,224,0,245,95,74,0,28,30,44,254,1,109,220,255,178,89,89,0,252,36,76,0,24,198,46,255,76,77,111,0,134,234,136,255,39,94,29,0,185,72,234,255,70,68,135,255,231,102,7,254,77,231,140,0,167,47,58,1,148,97,118,255,16,27,225,1,166,206,143,255,110,178,214,255,180,131,162,0,143,141,225,1,13,218,78,255,114,153,33,1,98,104,204,0,175,114,117,1,167,206,75,0,202,196,83,1,58,64,67,0,138,47,111,1,196,247,128,255,137,224,224,254,158,112,207,0,154,100,255,1,134,37,107,0,198,128,79,255,127,209,155,255,163,254,185,254,60,14,243,0,31,219,112,254,29,217,65,0,200,13,116,254,123,60,196,255,224,59,184,254,242,89,196,0,123,16,75,254,149,16,206,0,69,254,48,1,231,116,223,255,209,160,65,1,200,80,98,0,37,194,184,254,148,63,34,0,139,240,65,255,217,144,132,255,56,38,45,254,199,120,210,0,108,177,166,255,160,222,4,0,220,126,119,254,165,107,160,255,82,220,248,1,241,175,136,0,144,141,23,255,169,138,84,0,160,137,78,255,226,118,80,255,52,27,132,255,63,96,139,255,152,250,39,0,188,155,15,0,232,51,150,254,40,15,232,255,240,229,9,255,137,175,27,255,75,73,97,1,218,212,11,0,135,5,162,1,107,185,213,0,2,249,107,255,40,242,70,0,219,200,25,0,25,157,13,0,67,82,80,255,196,249,23,255,145,20,149,0,50,72,146,0,94,76,148,1,24,251,65,0,31,192,23,0,184,212,201,255,123,233,162,1,247,173,72,0,162,87,219,254,126,134,89,0,159,11,12,254,166,105,29,0,73,27,228,1,113,120,183,255,66,163,109,1,212,143,11,255,159,231,168,1,255,128,90,0,57,14,58,254,89,52,10,255,253,8,163,1,0,145,210,255,10,129,85,1,46,181,27,0,103,136,160,254,126,188,209,255,34,35,111,0,215,219,24,255,212,11,214,254,101,5,118,0,232,197,133,255,223,167,109,255,237,80,86,255,70,139,94,0,158,193,191,1,155,15,51,255,15,190,115,0,78,135,207,255,249,10,27,1,181,125,233,0,95,172,13,254,170,213,161,255,39,236,138,255,95,93,87,255,190,128,95,0,125,15,206,0,166,150,159,0,227,15,158,255,206,158,120,255,42,141,128,0,101,178,120,1,156,109,131,0,218,14,44,254,247,168,206,255,212,112,28,0,112,17,228,255,90,16,37,1,197,222,108,0,254,207,83,255,9,90,243,255,243,244,172,0,26,88,115,255,205,116,122,0,191,230,193,0,180,100,11,1,217,37,96,255,154,78,156,0,235,234,31,255,206,178,178,255,149,192,251,0,182,250,135,0,246,22,105,0,124,193,109,255,2,210,149,255,169,17,170,0,0,96,110,255,117,9,8,1,50,123,40,255,193,189,99,0,34,227,160,0,48,80,70,254,211,51,236,0,45,122,245,254,44,174,8,0,173,37,233,255,158,65,171,0,122,69,215,255,90,80,2,255,131,106,96,254,227,114,135,0,205,49,119,254,176,62,64,255,82,51,17,255,241,20,243,255,130,13,8,254,128,217,243,255,162,27,1,254,90,118,241,0,246,198,246,255,55,16,118,255,200,159,157,0,163,17,1,0,140,107,121,0,85,161,118,255,38,0,149,0,156,47,238,0,9,166,166,1,75,98,181,255,50,74,25,0,66,15,47,0,139,225,159,0,76,3,142,255,14,238,184,0,11,207,53,255,183,192,186,1,171,32,174,255,191,76,221,1,247,170,219,0,25,172,50,254,217,9,233,0,203,126,68,255,183,92,48,0,127,167,183,1,65,49,254,0,16,63,127,1,254,21,170,255,59,224,127,254,22,48,63,255,27,78,130,254,40,195,29,0,250,132,112,254,35,203,144,0,104,169,168,0,207,253,30,255,104,40,38,254,94,228,88,0,206,16,128,255,212,55,122,255,223,22,234,0,223,197,127,0,253,181,181,1,145,102,118,0,236,153,36,255,212,217,72,255,20,38,24,254,138,62,62,0,152,140,4,0,230,220,99,255,1,21,212,255,148,201,231,0,244,123,9,254,0,171,210,0,51,58,37,255,1,255,14,255,244,183,145,254,0,242,166,0,22,74,132,0,121,216,41,0,95,195,114,254,133,24,151,255,156,226,231,255,247,5,77,255,246,148,115,254,225,92,81,255,222,80,246,254,170,123,89,255,74,199,141,0,29,20,8,255,138,136,70,255,93,75,92,0,221,147,49,254,52,126,226,0,229,124,23,0,46,9,181,0,205,64,52,1,131,254,28,0,151,158,212,0,131,64,78,0,206,25,171,0,0,230,139,0,191,253,110,254,103,247,167,0,64,40,40,1,42,165,241,255,59,75,228,254,124,243,189,255,196,92,178,255,130,140,86,255,141,89,56,1,147,198,5,255,203,248,158,254,144,162,141,0,11,172,226,0,130,42,21,255,1,167,143,255,144,36,36,255,48,88,164,254,168,170,220,0,98,71,214,0,91,208,79,0,159,76,201,1,166,42,214,255,69,255,0,255,6,128,125,255,190,1,140,0,146,83,218,255,215,238,72,1,122,127,53,0,189,116,165,255,84,8,66,255,214,3,208,255,213,110,133,0,195,168,44,1,158,231,69,0,162,64,200,254,91,58,104,0,182,58,187,254,249,228,136,0,203,134,76,254,99,221,233,0,75,254,214,254,80,69,154,0,64,152,248,254,236,136,202,255,157,105,153,254,149,175,20,0,22,35,19,255,124,121,233,0,186,250,198,254,132,229,139,0,137,80,174,255,165,125,68,0,144,202,148,254,235,239,248,0,135,184,118,0,101,94,17,255,122,72,70,254,69,130,146,0,127,222,248,1,69,127,118,255,30,82,215,254,188,74,19,255,229,167,194,254,117,25,66,255,65,234,56,254,213,22,156,0,151,59,93,254,45,28,27,255,186,126,164,255,32,6,239,0,127,114,99,1,219,52,2,255,99,96,166,254,62,190,126,255,108,222,168,1,75,226,174,0,230,226,199,0,60,117,218,255,252,248,20,1,214,188,204,0,31,194,134,254,123,69,192,255,169,173,36,254,55,98,91,0,223,42,102,254,137,1,102,0,157,90,25,0,239,122,64,255,252,6,233,0,7,54,20,255,82,116,174,0,135,37,54,255,15,186,125,0,227,112,175,255,100,180,225,255,42,237,244,255,244,173,226,254,248,18,33,0,171,99,150,255,74,235,50,255,117,82,32,254,106,168,237,0,207,109,208,1,228,9,186,0,135,60,169,254,179,92,143,0,244,170,104,255,235,45,124,255,70,99,186,0,117,137,183,0,224,31,215,0,40,9,100,0,26,16,95,1,68,217,87,0,8,151,20,255,26,100,58,255,176,165,203,1,52,118,70,0,7,32,254,254,244,254,245,255,167,144,194,255,125,113,23,255,176,121,181,0,136,84,209,0,138,6,30,255,89,48,28,0,33,155,14,255,25,240,154,0,141,205,109,1,70,115,62,255,20,40,107,254,138,154,199,255,94,223,226,255,157,171,38,0,163,177,25,254,45,118,3,255,14,222,23,1,209,190,81,255,118,123,232,1,13,213,101,255,123,55,123,254,27,246,165,0,50,99,76,255,140,214,32,255,97,65,67,255,24,12,28,0,174,86,78,1,64,247,96,0,160,135,67,0,66,55,243,255,147,204,96,255,26,6,33,255,98,51,83,1,153,213,208,255,2,184,54,255,25,218,11,0,49,67,246,254,18,149,72,255,13,25,72,0,42,79,214,0,42,4,38,1,27,139,144,255,149,187,23,0,18,164,132,0,245,84,184,254,120,198,104,255,126,218,96,0,56,117,234,255,13,29,214,254,68,47,10,255,167,154,132,254,152,38,198,0,66,178,89,255,200,46,171,255,13,99,83,255,210,187,253,255,170,45,42,1,138,209,124,0,214,162,141,0,12,230,156,0,102,36,112,254,3,147,67,0,52,215,123,255,233,171,54,255,98,137,62,0,247,218,39,255,231,218,236,0,247,191,127,0,195,146,84,0,165,176,92,255,19,212,94,255,17,74,227,0,88,40,153,1,198,147,1,255,206,67,245,254,240,3,218,255,61,141,213,255,97,183,106,0,195,232,235,254,95,86,154,0,209,48,205,254,118,209,241,255,240,120,223,1,213,29,159,0,163,127,147,255,13,218,93,0,85,24,68,254,70,20,80,255,189,5,140,1,82,97,254,255,99,99,191,255,132,84,133,255,107,218,116,255,112,122,46,0,105,17,32,0,194,160,63,255,68,222,39,1,216,253,92,0,177,105,205,255,149,201,195,0,42,225,11,255,40,162,115,0,9,7,81,0,165,218,219,0,180,22,0,254,29,146,252,255,146,207,225,1,180,135,96,0,31,163,112,0,177,11,219,255,133,12,193,254,43,78,50,0,65,113,121,1,59,217,6,255,110,94,24,1,112,172,111,0,7,15,96,0,36,85,123,0,71,150,21,255,208,73,188,0,192,11,167,1,213,245,34,0,9,230,92,0,162,142,39,255,215,90,27,0,98,97,89,0,94,79,211,0,90,157,240,0,95,220,126,1,102,176,226,0,36,30,224,254,35,31,127,0,231,232,115,1,85,83,130,0,210,73,245,255,47,143,114,255,68,65,197,0,59,72,62,255,183,133,173,254,93,121,118,255,59,177,81,255,234,69,173,255,205,128,177,0,220,244,51,0,26,244,209,1,73,222,77,255,163,8,96,254,150,149,211,0,158,254,203,1,54,127,139,0,161,224,59,0,4,109,22,255,222,42,45,255,208,146,102,255,236,142,187,0,50,205,245,255,10,74,89,254,48,79,142,0,222,76,130,255,30,166,63,0,236,12,13,255,49,184,244,0,187,113,102,0,218,101,253,0,153,57,182,254,32,150,42,0,25,198,146,1,237,241,56,0,140,68,5,0,91,164,172,255,78,145,186,254,67,52,205,0,219,207,129,1,109,115,17,0,54,143,58,1,21,248,120,255,179,255,30,0,193,236,66,255,1,255,7,255,253,192,48,255,19,69,217,1,3,214,0,255,64,101,146,1,223,125,35,255,235,73,179,255,249,167,226,0,225,175,10,1,97,162,58,0,106,112,171,1,84,172,5,255,133,140,178,255,134,245,142,0,97,90,125,255,186,203,185,255,223,77,23,255,192,92,106,0,15,198,115,255,217,152,248,0,171,178,120,255,228,134,53,0,176,54,193,1,250,251,53,0,213,10,100,1,34,199,106,0,151,31,244,254,172,224,87,255,14,237,23,255,253,85,26,255,127,39,116,255,172,104,100,0,251,14,70,255,212,208,138,255,253,211,250,0,176,49,165,0,15,76,123,255,37,218,160,255,92,135,16,1,10,126,114,255,70,5,224,255,247,249,141,0,68,20,60,1,241,210,189,255,195,217,187,1,151,3,113,0,151,92,174,0,231,62,178,255,219,183,225,0,23,23,33,255,205,181,80,0,57,184,248,255,67,180,1,255,90,123,93,255,39,0,162,255,96,248,52,255,84,66,140,0,34,127,228,255,194,138,7,1,166,110,188,0,21,17,155,1,154,190,198,255,214,80,59,255,18,7,143,0,72,29,226,1,199,217,249,0,232,161,71,1,149,190,201,0,217,175,95,254,113,147,67,255,138,143,199,255,127,204,1,0,29,182,83,1,206,230,155,255,186,204,60,0,10,125,85,255,232,96,25,255,255,89,247,255,213,254,175,1,232,193,81,0,28,43,156,254,12,69,8,0,147,24,248,0,18,198,49,0,134,60,35,0,118,246,18,255,49,88,254,254,228,21,186,255,182,65,112,1,219,22,1,255,22,126,52,255,189,53,49,255,112,25,143,0,38,127,55,255,226,101,163,254,208,133,61,255,137,69,174,1,190,118,145,255,60,98,219,255,217,13,245,255,250,136,10,0,84,254,226,0,201,31,125,1,240,51,251,255,31,131,130,255,2,138,50,255,215,215,177,1,223,12,238,255,252,149,56,255,124,91,68,255,72,126,170,254,119,255,100,0,130,135,232,255,14,79,178,0,250,131,197,0,138,198,208,0,121,216,139,254,119,18,36,255,29,193,122,0,16,42,45,255,213,240,235,1,230,190,169,255,198,35,228,254,110,173,72,0,214,221,241,255,56,148,135,0,192,117,78,254,141,93,207,255,143,65,149,0,21,18,98,255,95,44,244,1,106,191,77,0,254,85,8,254,214,110,176,255,73,173,19,254,160,196,199,255,237,90,144,0,193,172,113,255,200,155,136,254,228,90,221,0,137,49,74,1,164,221,215,255,209,189,5,255,105,236,55,255,42,31,129,1,193,255,236,0,46,217,60,0,138,88,187,255,226,82,236,255,81,69,151,255,142,190,16,1,13,134,8,0,127,122,48,255,81,64,156,0,171,243,139,0,237,35,246,0,122,143,193,254,212,122,146,0,95,41,255,1,87,132,77,0,4,212,31,0,17,31,78,0,39,45,173,254,24,142,217,255,95,9,6,255,227,83,6,0,98,59,130,254,62,30,33,0,8,115,211,1,162,97,128,255,7,184,23,254,116,28,168,255,248,138,151,255,98,244,240,0,186,118,130,0,114,248,235,255,105,173,200,1,160,124,71,255,94,36,164,1,175,65,146,255,238,241,170,254,202,198,197,0,228,71,138,254,45,246,109,255,194,52,158,0,133,187,176,0,83,252,154,254,89,189,221,255,170,73,252,0,148,58,125,0,36,68,51,254,42,69,177,255,168,76,86,255,38,100,204,255,38,53,35,0,175,19,97,0,225,238,253,255,81,81,135,0,210,27,255,254,235,73,107,0,8,207,115,0,82,127,136,0,84,99,21,254,207,19,136,0,100,164,101,0,80,208,77,255,132,207,237,255,15,3,15,255,33,166,110,0,156,95,85,255,37,185,111,1,150,106,35,255,166,151,76,0,114,87,135,255,159,194,64,0,12,122,31,255,232,7,101,254,173,119,98,0,154,71,220,254,191,57,53,255,168,232,160,255,224,32,99,255,218,156,165,0,151,153,163,0,217,13,148,1,197,113,89,0,149,28,161,254,207,23,30,0,105,132,227,255,54,230,94,255,133,173,204,255,92,183,157,255,88,144,252,254,102,33,90,0,159,97,3,0,181,218,155,255,240,114,119,0,106,214,53,255,165,190,115,1,152,91,225,255,88,106,44,255,208,61,113,0,151,52,124,0,191,27,156,255,110,54,236,1,14,30,166,255,39,127,207,1,229,199,28,0,188,228,188,254,100,157,235,0,246,218,183,1,107,22,193,255,206,160,95,0,76,239,147,0,207,161,117,0,51,166,2,255,52,117,10,254,73,56,227,255,152,193,225,0,132,94,136,255,101,191,209,0,32,107,229,255,198,43,180,1,100,210,118,0,114,67,153,255,23,88,26,255,89,154,92,1,220,120,140,255,144,114,207,255,252,115,250,255,34,206,72,0,138,133,127,255,8,178,124,1,87,75,97,0,15,229,92,254,240,67,131,255,118,123,227,254,146,120,104,255,145,213,255,1,129,187,70,255,219,119,54,0,1,19,173,0,45,150,148,1,248,83,72,0,203,233,169,1,142,107,56,0,247,249,38,1,45,242,80,255,30,233,103,0,96,82,70,0,23,201,111,0,81,39,30,255,161,183,78,255,194,234,33,255,68,227,140,254,216,206,116,0,70,27,235,255,104,144,79,0,164,230,93,254,214,135,156,0,154,187,242,254,188,20,131,255,36,109,174,0,159,112,241,0,5,110,149,1,36,165,218,0,166,29,19,1,178,46,73,0,93,43,32,254,248,189,237,0,102,155,141,0,201,93,195,255,241,139,253,255,15,111,98,255,108,65,163,254,155,79,190,255,73,174,193,254,246,40,48,255,107,88,11,254,202,97,85,255,253,204,18,255,113,242,66,0,110,160,194,254,208,18,186,0,81,21,60,0,188,104,167,255,124,166,97,254,210,133,142,0,56,242,137,254,41,111,130,0,111,151,58,1,111,213,141,255,183,172,241,255,38,6,196,255,185,7,123,255,46,11,246,0,245,105,119,1,15,2,161,255,8,206,45,255,18,202,74,255,83,124,115,1,212,141,157,0,83,8,209,254,139,15,232,255,172,54,173,254,50,247,132,0,214,189,213,0,144,184,105,0,223,254,248,0,255,147,240,255,23,188,72,0,7,51,54,0,188,25,180,254,220,180,0,255,83,160,20,0,163,189,243,255,58,209,194,255,87,73,60,0,106,24,49,0,245,249,220,0,22,173,167,0,118,11,195,255,19,126,237,0,110,159,37,255,59,82,47,0,180,187,86,0,188,148,208,1,100,37,133,255,7,112,193,0,129,188,156,255,84,106,129,255,133,225,202,0,14,236,111,255,40,20,101,0,172,172,49,254,51,54,74,255,251,185,184,255,93,155,224,255,180,249,224,1,230,178,146,0,72,57,54,254,178,62,184,0,119,205,72,0,185,239,253,255,61,15,218,0,196,67,56,255,234,32,171,1,46,219,228,0,208,108,234,255,20,63,232,255,165,53,199,1,133,228,5,255,52,205,107,0,74,238,140,255,150,156,219,254,239,172,178,255,251,189,223,254,32,142,211,255,218,15,138,1,241,196,80,0,28,36,98,254,22,234,199,0,61,237,220,255,246,57,37,0,142,17,142,255,157,62,26,0,43,238,95,254,3,217,6,255,213,25,240,1,39,220,174,255,154,205,48,254,19,13,192,255,244,34,54,254,140,16,155,0,240,181,5,254,155,193,60,0,166,128,4,255,36,145,56,255,150,240,219,0,120,51,145,0,82,153,42,1,140,236,146,0,107,92,248,1,189,10,3,0,63,136,242,0,211,39,24,0,19,202,161,1,173,27,186,255,210,204,239,254,41,209,162,255,182,254,159,255,172,116,52,0,195,103,222,254,205,69,59,0,53,22,41,1,218,48,194,0,80,210,242,0,210,188,207,0,187,161,161,254,216,17,1,0,136,225,113,0,250,184,63,0,223,30,98,254,77,168,162,0,59,53,175,0,19,201,10,255,139,224,194,0,147,193,154,255,212,189,12,254,1,200,174,255,50,133,113,1,94,179,90,0,173,182,135,0,94,177,113,0,43,89,215,255,136,252,106,255,123,134,83,254,5,245,66,255,82,49,39,1,220,2,224,0,97,129,177,0,77,59,89,0,61,29,155,1,203,171,220,255,92,78,139,0,145,33,181,255,169,24,141,1,55,150,179,0,139,60,80,255,218,39,97,0,2,147,107,255,60,248,72,0,173,230,47,1,6,83,182,255,16,105,162,254,137,212,81,255,180,184,134,1,39,222,164,255,221,105,251,1,239,112,125,0,63,7,97,0,63,104,227,255,148,58,12,0,90,60,224,255,84,212,252,0,79,215,168,0,248,221,199,1,115,121,1,0,36,172,120,0,32,162,187,255,57,107,49,255,147,42,21,0,106,198,43,1,57,74,87,0,126,203,81,255,129,135,195,0,140,31,177,0,221,139,194,0,3,222,215,0,131,68,231,0,177,86,178,254,124,151,180,0,184,124,38,1,70,163,17,0,249,251,181,1,42,55,227,0,226,161,44,0,23,236,110,0,51,149,142,1,93,5,236,0,218,183,106,254,67,24,77,0,40,245,209,255,222,121,153,0,165,57,30,0,83,125,60,0,70,38,82,1,229,6,188,0,109,222,157,255,55,118,63,255,205,151,186,0,227,33,149,255,254,176,246,1,227,177,227,0,34,106,163,254,176,43,79,0,106,95,78,1,185,241,122,255,185,14,61,0,36,1,202,0,13,178,162,255,247,11,132,0,161,230,92,1,65,1,185,255,212,50,165,1,141,146,64,255,158,242,218,0,21,164,125,0,213,139,122,1,67,71,87,0,203,158,178,1,151,92,43,0,152,111,5,255,39,3,239,255,217,255,250,255,176,63,71,255,74,245,77,1,250,174,18,255,34,49,227,255,246,46,251,255,154,35,48,1,125,157,61,255,106,36,78,255,97,236,153,0,136,187,120,255,113,134,171,255,19,213,217,254,216,94,209,255,252,5,61,0,94,3,202,0,3,26,183,255,64,191,43,255,30,23,21,0,129,141,77,255,102,120,7,1,194,76,140,0,188,175,52,255,17,81,148,0,232,86,55,1,225,48,172,0,134,42,42,255,238,50,47,0,169,18,254,0,20,147,87,255,14,195,239,255,69,247,23,0,238,229,128,255,177,49,112,0,168,98,251,255,121,71,248,0,243,8,145,254,246,227,153,255,219,169,177,254,251,139,165,255,12,163,185,255,164,40,171,255,153,159,27,254,243,109,91,255,222,24,112,1,18,214,231,0,107,157,181,254,195,147,0,255,194,99,104,255,89,140,190,255,177,66,126,254,106,185,66,0,49,218,31,0,252,174,158,0,188,79,230,1,238,41,224,0,212,234,8,1,136,11,181,0,166,117,83,255,68,195,94,0,46,132,201,0,240,152,88,0,164,57,69,254,160,224,42,255,59,215,67,255,119,195,141,255,36,180,121,254,207,47,8,255,174,210,223,0,101,197,68,255,255,82,141,1,250,137,233,0,97,86,133,1,16,80,69,0,132,131,159,0,116,93,100,0,45,141,139,0,152,172,157,255,90,43,91,0,71,153,46,0,39,16,112,255,217,136,97,255,220,198,25,254,177,53,49,0,222,88,134,255,128,15,60,0,207,192,169,255,192,116,209,255,106,78,211,1,200,213,183,255,7,12,122,254,222,203,60,255,33,110,199,254,251,106,117,0,228,225,4,1,120,58,7,255,221,193,84,254,112,133,27,0,189,200,201,255,139,135,150,0,234,55,176,255,61,50,65,0,152,108,169,255,220,85,1,255,112,135,227,0,162,26,186,0,207,96,185,254,244,136,107,0,93,153,50,1,198,97,151,0,110,11,86,255,143,117,174,255,115,212,200,0,5,202,183,0,237,164,10,254,185,239,62,0,236,120,18,254,98,123,99,255,168,201,194,254,46,234,214,0,191,133,49,255,99,169,119,0,190,187,35,1,115,21,45,255,249,131,72,0,112,6,123,255,214,49,181,254,166,233,34,0,92,197,102,254,253,228,205,255,3,59,201,1,42,98,46,0,219,37,35,255,169,195,38,0,94,124,193,1,156,43,223,0,95,72,133,254,120,206,191,0,122,197,239,255,177,187,79,255,254,46,2,1,250,167,190,0,84,129,19,0,203,113,166,255,249,31,189,254,72,157,202,255,208,71,73,255,207,24,72,0,10,16,18,1,210,81,76,255,88,208,192,255,126,243,107,255,238,141,120,255,199,121,234,255,137,12,59,255,36,220,123,255,148,179,60,254,240,12,29,0,66,0,97,1,36,30,38,255,115,1,93,255,96,103,231,255,197,158,59,1,192,164,240,0,202,202,57,255,24,174,48,0,89,77,155,1,42,76,215,0,244,151,233,0,23,48,81,0,239,127,52,254,227,130,37,255,248,116,93,1,124,132,118,0,173,254,192,1,6,235,83,255,110,175,231,1,251,28,182,0,129,249,93,254,84,184,128,0,76,181,62,0,175,128,186,0,100,53,136,254,109,29,226,0,221,233,58,1,20,99,74,0,0,22,160,0,134,13,21,0,9,52,55,255,17,89,140,0,175,34,59,0,84,165,119,255,224,226,234,255,7,72,166,255,123,115,255,1,18,214,246,0,250,7,71,1,217,220,185,0,212,35,76,255,38,125,175,0,189,97,210,0,114,238,44,255,41,188,169,254,45,186,154,0,81,92,22,0,132,160,193,0,121,208,98,255,13,81,44,255,203,156,82,0,71,58,21,255,208,114,191,254,50,38,147,0,154,216,195,0,101,25,18,0,60,250,215,255,233,132,235,255,103,175,142,1,16,14,92,0,141,31,110,254,238,241,45,255,153,217,239,1,97,168,47,255,249,85,16,1,28,175,62,255,57,254,54,0,222,231,126,0,166,45,117,254,18,189,96,255,228,76,50,0,200,244,94,0,198,152,120,1,68,34,69,255,12,65,160,254,101,19,90,0,167,197,120,255,68,54,185,255,41,218,188,0,113,168,48,0,88,105,189,1,26,82,32,255,185,93,164,1,228,240,237,255,66,182,53,0,171,197,92,255,107,9,233,1,199,120,144,255,78,49,10,255,109,170,105,255,90,4,31,255,28,244,113,255,74,58,11,0,62,220,246,255,121,154,200,254,144,210,178,255,126,57,129,1,43,250,14,255,101,111,28,1,47,86,241,255,61,70,150,255,53,73,5,255,30,26,158,0,209,26,86,0,138,237,74,0,164,95,188,0,142,60,29,254,162,116,248,255,187,175,160,0,151,18,16,0,209,111,65,254,203,134,39,255,88,108,49,255,131,26,71,255,221,27,215,254,104,105,93,255,31,236,31,254,135,0,211,255,143,127,110,1,212,73,229,0,233,67,167,254,195,1,208,255,132,17,221,255,51,217,90,0,67,235,50,255,223,210,143,0,179,53,130,1,233,106,198,0,217,173,220,255,112,229,24,255,175,154,93,254,71,203,246,255,48,66,133,255,3,136,230,255,23,221,113,254,235,111,213,0,170,120,95,254,251,221,2,0,45,130,158,254,105,94,217,255,242,52,180,254,213,68,45,255,104,38,28,0,244,158,76,0,161,200,96,255,207,53,13,255,187,67,148,0,170,54,248,0,119,162,178,255,83,20,11,0,42,42,192,1,146,159,163,255,183,232,111,0,77,229,21,255,71,53,143,0,27,76,34,0,246,136,47,255,219,39,182,255,92,224,201,1,19,142,14,255,69,182,241,255,163,118,245,0,9,109,106,1,170,181,247,255,78,47,238,255,84,210,176,255,213,107,139,0,39,38,11,0,72,21,150,0,72,130,69,0,205,77,155,254,142,133,21], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE); +/* memory initializer */ allocate([71,111,172,254,226,42,59,255,179,0,215,1,33,128,241,0,234,252,13,1,184,79,8,0,110,30,73,255,246,141,189,0,170,207,218,1,74,154,69,255,138,246,49,255,155,32,100,0,125,74,105,255,90,85,61,255,35,229,177,255,62,125,193,255,153,86,188,1,73,120,212,0,209,123,246,254,135,209,38,255,151,58,44,1,92,69,214,255,14,12,88,255,252,153,166,255,253,207,112,255,60,78,83,255,227,124,110,0,180,96,252,255,53,117,33,254,164,220,82,255,41,1,27,255,38,164,166,255,164,99,169,254,61,144,70,255,192,166,18,0,107,250,66,0,197,65,50,0,1,179,18,255,255,104,1,255,43,153,35,255,80,111,168,0,110,175,168,0,41,105,45,255,219,14,205,255,164,233,140,254,43,1,118,0,233,67,195,0,178,82,159,255,138,87,122,255,212,238,90,255,144,35,124,254,25,140,164,0,251,215,44,254,133,70,107,255,101,227,80,254,92,169,55,0,215,42,49,0,114,180,85,255,33,232,27,1,172,213,25,0,62,176,123,254,32,133,24,255,225,191,62,0,93,70,153,0,181,42,104,1,22,191,224,255,200,200,140,255,249,234,37,0,149,57,141,0,195,56,208,255,254,130,70,255,32,173,240,255,29,220,199,0,110,100,115,255,132,229,249,0,228,233,223,255,37,216,209,254,178,177,209,255,183,45,165,254,224,97,114,0,137,97,168,255,225,222,172,0,165,13,49,1,210,235,204,255,252,4,28,254,70,160,151,0,232,190,52,254,83,248,93,255,62,215,77,1,175,175,179,255,160,50,66,0,121,48,208,0,63,169,209,255,0,210,200,0,224,187,44,1,73,162,82,0,9,176,143,255,19,76,193,255,29,59,167,1,24,43,154,0,28,190,190,0,141,188,129,0,232,235,203,255,234,0,109,255,54,65,159,0,60,88,232,255,121,253,150,254,252,233,131,255,198,110,41,1,83,77,71,255,200,22,59,254,106,253,242,255,21,12,207,255,237,66,189,0,90,198,202,1,225,172,127,0,53,22,202,0,56,230,132,0,1,86,183,0,109,190,42,0,243,68,174,1,109,228,154,0,200,177,122,1,35,160,183,255,177,48,85,255,90,218,169,255,248,152,78,0,202,254,110,0,6,52,43,0,142,98,65,255,63,145,22,0,70,106,93,0,232,138,107,1,110,179,61,255,211,129,218,1,242,209,92,0,35,90,217,1,182,143,106,255,116,101,217,255,114,250,221,255,173,204,6,0,60,150,163,0,73,172,44,255,239,110,80,255,237,76,153,254,161,140,249,0,149,232,229,0,133,31,40,255,174,164,119,0,113,51,214,0,129,228,2,254,64,34,243,0,107,227,244,255,174,106,200,255,84,153,70,1,50,35,16,0,250,74,216,254,236,189,66,255,153,249,13,0,230,178,4,255,221,41,238,0,118,227,121,255,94,87,140,254,254,119,92,0,73,239,246,254,117,87,128,0,19,211,145,255,177,46,252,0,229,91,246,1,69,128,247,255,202,77,54,1,8,11,9,255,153,96,166,0,217,214,173,255,134,192,2,1,0,207,0,0,189,174,107,1,140,134,100,0,158,193,243,1,182,102,171,0,235,154,51,0,142,5,123,255,60,168,89,1,217,14,92,255,19,214,5,1,211,167,254,0,44,6,202,254,120,18,236,255,15,113,184,255,184,223,139,0,40,177,119,254,182,123,90,255,176,165,176,0,247,77,194,0,27,234,120,0,231,0,214,255,59,39,30,0,125,99,145,255,150,68,68,1,141,222,248,0,153,123,210,255,110,127,152,255,229,33,214,1,135,221,197,0,137,97,2,0,12,143,204,255,81,41,188,0,115,79,130,255,94,3,132,0,152,175,187,255,124,141,10,255,126,192,179,255,11,103,198,0,149,6,45,0,219,85,187,1,230,18,178,255,72,182,152,0,3,198,184,255,128,112,224,1,97,161,230,0,254,99,38,255,58,159,197,0,151,66,219,0,59,69,143,255,185,112,249,0,119,136,47,255,123,130,132,0,168,71,95,255,113,176,40,1,232,185,173,0,207,93,117,1,68,157,108,255,102,5,147,254,49,97,33,0,89,65,111,254,247,30,163,255,124,217,221,1,102,250,216,0,198,174,75,254,57,55,18,0,227,5,236,1,229,213,173,0,201,109,218,1,49,233,239,0,30,55,158,1,25,178,106,0,155,111,188,1,94,126,140,0,215,31,238,1,77,240,16,0,213,242,25,1,38,71,168,0,205,186,93,254,49,211,140,255,219,0,180,255,134,118,165,0,160,147,134,255,110,186,35,255,198,243,42,0,243,146,119,0,134,235,163,1,4,241,135,255,193,46,193,254,103,180,79,255,225,4,184,254,242,118,130,0,146,135,176,1,234,111,30,0,69,66,213,254,41,96,123,0,121,94,42,255,178,191,195,255,46,130,42,0,117,84,8,255,233,49,214,254,238,122,109,0,6,71,89,1,236,211,123,0,244,13,48,254,119,148,14,0,114,28,86,255,75,237,25,255,145,229,16,254,129,100,53,255,134,150,120,254,168,157,50,0,23,72,104,255,224,49,14,0,255,123,22,255,151,185,151,255,170,80,184,1,134,182,20,0,41,100,101,1,153,33,16,0,76,154,111,1,86,206,234,255,192,160,164,254,165,123,93,255,1,216,164,254,67,17,175,255,169,11,59,255,158,41,61,255,73,188,14,255,195,6,137,255,22,147,29,255,20,103,3,255,246,130,227,255,122,40,128,0,226,47,24,254,35,36,32,0,152,186,183,255,69,202,20,0,195,133,195,0,222,51,247,0,169,171,94,1,183,0,160,255,64,205,18,1,156,83,15,255,197,58,249,254,251,89,110,255,50,10,88,254,51,43,216,0,98,242,198,1,245,151,113,0,171,236,194,1,197,31,199,255,229,81,38,1,41,59,20,0,253,104,230,0,152,93,14,255,246,242,146,254,214,169,240,255,240,102,108,254,160,167,236,0,154,218,188,0,150,233,202,255,27,19,250,1,2,71,133,255,175,12,63,1,145,183,198,0,104,120,115,255,130,251,247,0,17,212,167,255,62,123,132,255,247,100,189,0,155,223,152,0,143,197,33,0,155,59,44,255,150,93,240,1,127,3,87,255,95,71,207,1,167,85,1,255,188,152,116,255,10,23,23,0,137,195,93,1,54,98,97,0,240,0,168,255,148,188,127,0,134,107,151,0,76,253,171,0,90,132,192,0,146,22,54,0,224,66,54,254,230,186,229,255,39,182,196,0,148,251,130,255,65,131,108,254,128,1,160,0,169,49,167,254,199,254,148,255,251,6,131,0,187,254,129,255,85,82,62,0,178,23,58,255,254,132,5,0,164,213,39,0,134,252,146,254,37,53,81,255,155,134,82,0,205,167,238,255,94,45,180,255,132,40,161,0,254,111,112,1,54,75,217,0,179,230,221,1,235,94,191,255,23,243,48,1,202,145,203,255,39,118,42,255,117,141,253,0,254,0,222,0,43,251,50,0,54,169,234,1,80,68,208,0,148,203,243,254,145,7,135,0,6,254,0,0,252,185,127,0,98,8,129,255,38,35,72,255,211,36,220,1,40,26,89,0,168,64,197,254,3,222,239,255,2,83,215,254,180,159,105,0,58,115,194,0,186,116,106,255,229,247,219,255,129,118,193,0,202,174,183,1,166,161,72,0,201,107,147,254,237,136,74,0,233,230,106,1,105,111,168,0,64,224,30,1,1,229,3,0,102,151,175,255,194,238,228,255,254,250,212,0,187,237,121,0,67,251,96,1,197,30,11,0,183,95,204,0,205,89,138,0,64,221,37,1,255,223,30,255,178,48,211,255,241,200,90,255,167,209,96,255,57,130,221,0,46,114,200,255,61,184,66,0,55,182,24,254,110,182,33,0,171,190,232,255,114,94,31,0,18,221,8,0,47,231,254,0,255,112,83,0,118,15,215,255,173,25,40,254,192,193,31,255,238,21,146,255,171,193,118,255,101,234,53,254,131,212,112,0,89,192,107,1,8,208,27,0,181,217,15,255,231,149,232,0,140,236,126,0,144,9,199,255,12,79,181,254,147,182,202,255,19,109,182,255,49,212,225,0,74,163,203,0,175,233,148,0,26,112,51,0,193,193,9,255,15,135,249,0,150,227,130,0,204,0,219,1,24,242,205,0,238,208,117,255,22,244,112,0,26,229,34,0,37,80,188,255,38,45,206,254,240,90,225,255,29,3,47,255,42,224,76,0,186,243,167,0,32,132,15,255,5,51,125,0,139,135,24,0,6,241,219,0,172,229,133,255,246,214,50,0,231,11,207,255,191,126,83,1,180,163,170,255,245,56,24,1,178,164,211,255,3,16,202,1,98,57,118,255,141,131,89,254,33,51,24,0,243,149,91,255,253,52,14,0,35,169,67,254,49,30,88,255,179,27,36,255,165,140,183,0,58,189,151,0,88,31,0,0,75,169,66,0,66,101,199,255,24,216,199,1,121,196,26,255,14,79,203,254,240,226,81,255,94,28,10,255,83,193,240,255,204,193,131,255,94,15,86,0,218,40,157,0,51,193,209,0,0,242,177,0,102,185,247,0,158,109,116,0,38,135,91,0,223,175,149,0,220,66,1,255,86,60,232,0,25,96,37,255,225,122,162,1,215,187,168,255,158,157,46,0,56,171,162,0,232,240,101,1,122,22,9,0,51,9,21,255,53,25,238,255,217,30,232,254,125,169,148,0,13,232,102,0,148,9,37,0,165,97,141,1,228,131,41,0,222,15,243,255,254,18,17,0,6,60,237,1,106,3,113,0,59,132,189,0,92,112,30,0,105,208,213,0,48,84,179,255,187,121,231,254,27,216,109,255,162,221,107,254,73,239,195,255,250,31,57,255,149,135,89,255,185,23,115,1,3,163,157,255,18,112,250,0,25,57,187,255,161,96,164,0,47,16,243,0,12,141,251,254,67,234,184,255,41,18,161,0,175,6,96,255,160,172,52,254,24,176,183,255,198,193,85,1,124,121,137,255,151,50,114,255,220,203,60,255,207,239,5,1,0,38,107,255,55,238,94,254,70,152,94,0,213,220,77,1,120,17,69,255,85,164,190,255,203,234,81,0,38,49,37,254,61,144,124,0,137,78,49,254,168,247,48,0,95,164,252,0,105,169,135,0,253,228,134,0,64,166,75,0,81,73,20,255,207,210,10,0,234,106,150,255,94,34,90,255,254,159,57,254,220,133,99,0,139,147,180,254,24,23,185,0,41,57,30,255,189,97,76,0,65,187,223,255,224,172,37,255,34,62,95,1,231,144,240,0,77,106,126,254,64,152,91,0,29,98,155,0,226,251,53,255,234,211,5,255,144,203,222,255,164,176,221,254,5,231,24,0,179,122,205,0,36,1,134,255,125,70,151,254,97,228,252,0,172,129,23,254,48,90,209,255,150,224,82,1,84,134,30,0,241,196,46,0,103,113,234,255,46,101,121,254,40,124,250,255,135,45,242,254,9,249,168,255,140,108,131,255,143,163,171,0,50,173,199,255,88,222,142,255,200,95,158,0,142,192,163,255,7,117,135,0,111,124,22,0,236,12,65,254,68,38,65,255,227,174,254,0,244,245,38,0,240,50,208,255,161,63,250,0,60,209,239,0,122,35,19,0,14,33,230,254,2,159,113,0,106,20,127,255,228,205,96,0,137,210,174,254,180,212,144,255,89,98,154,1,34,88,139,0,167,162,112,1,65,110,197,0,241,37,169,0,66,56,131,255,10,201,83,254,133,253,187,255,177,112,45,254,196,251,0,0,196,250,151,255,238,232,214,255,150,209,205,0,28,240,118,0,71,76,83,1,236,99,91,0,42,250,131,1,96,18,64,255,118,222,35,0,113,214,203,255,122,119,184,255,66,19,36,0,204,64,249,0,146,89,139,0,134,62,135,1,104,233,101,0,188,84,26,0,49,249,129,0,208,214,75,255,207,130,77,255,115,175,235,0,171,2,137,255,175,145,186,1,55,245,135,255,154,86,181,1,100,58,246,255,109,199,60,255,82,204,134,255,215,49,230,1,140,229,192,255,222,193,251,255,81,136,15,255,179,149,162,255,23,39,29,255,7,95,75,254,191,81,222,0,241,81,90,255,107,49,201,255,244,211,157,0,222,140,149,255,65,219,56,254,189,246,90,255,178,59,157,1,48,219,52,0,98,34,215,0,28,17,187,255,175,169,24,0,92,79,161,255,236,200,194,1,147,143,234,0,229,225,7,1,197,168,14,0,235,51,53,1,253,120,174,0,197,6,168,255,202,117,171,0,163,21,206,0,114,85,90,255,15,41,10,255,194,19,99,0,65,55,216,254,162,146,116,0,50,206,212,255,64,146,29,255,158,158,131,1,100,165,130,255,172,23,129,255,125,53,9,255,15,193,18,1,26,49,11,255,181,174,201,1,135,201,14,255,100,19,149,0,219,98,79,0,42,99,143,254,96,0,48,255,197,249,83,254,104,149,79,255,235,110,136,254,82,128,44,255,65,41,36,254,88,211,10,0,187,121,187,0,98,134,199,0,171,188,179,254,210,11,238,255,66,123,130,254,52,234,61,0,48,113,23,254,6,86,120,255,119,178,245,0,87,129,201,0,242,141,209,0,202,114,85,0,148,22,161,0,103,195,48,0,25,49,171,255,138,67,130,0,182,73,122,254,148,24,130,0,211,229,154,0,32,155,158,0,84,105,61,0,177,194,9,255,166,89,86,1,54,83,187,0,249,40,117,255,109,3,215,255,53,146,44,1,63,47,179,0,194,216,3,254,14,84,136,0,136,177,13,255,72,243,186,255,117,17,125,255,211,58,211,255,93,79,223,0,90,88,245,255,139,209,111,255,70,222,47,0,10,246,79,255,198,217,178,0,227,225,11,1,78,126,179,255,62,43,126,0,103,148,35,0,129,8,165,254,245,240,148,0,61,51,142,0,81,208,134,0,15,137,115,255,211,119,236,255,159,245,248,255,2,134,136,255,230,139,58,1,160,164,254,0,114,85,141,255,49,166,182,255,144,70,84,1,85,182,7,0,46,53,93,0,9,166,161,255,55,162,178,255,45,184,188,0,146,28,44,254,169,90,49,0,120,178,241,1,14,123,127,255,7,241,199,1,189,66,50,255,198,143,101,254,189,243,135,255,141,24,24,254,75,97,87,0,118,251,154,1,237,54,156,0,171,146,207,255,131,196,246,255,136,64,113,1,151,232,57,0,240,218,115,0,49,61,27,255,64,129,73,1,252,169,27,255,40,132,10,1,90,201,193,255,252,121,240,1,186,206,41,0,43,198,97,0,145,100,183,0,204,216,80,254,172,150,65,0,249,229,196,254,104,123,73,255,77,104,96,254,130,180,8,0,104,123,57,0,220,202,229,255,102,249,211,0,86,14,232,255,182,78,209,0,239,225,164,0,106,13,32,255,120,73,17,255,134,67,233,0,83,254,181,0,183,236,112,1,48,64,131,255,241,216,243,255,65,193,226,0,206,241,100,254,100,134,166,255,237,202,197,0,55,13,81,0,32,124,102,255,40,228,177,0,118,181,31,1,231,160,134,255,119,187,202,0,0,142,60,255,128,38,189,255,166,201,150,0,207,120,26,1,54,184,172,0,12,242,204,254,133,66,230,0,34,38,31,1,184,112,80,0,32,51,165,254,191,243,55,0,58,73,146,254,155,167,205,255,100,104,152,255,197,254,207,255,173,19,247,0,238,10,202,0,239,151,242,0,94,59,39,255,240,29,102,255,10,92,154,255,229,84,219,255,161,129,80,0,208,90,204,1,240,219,174,255,158,102,145,1,53,178,76,255,52,108,168,1,83,222,107,0,211,36,109,0,118,58,56,0,8,29,22,0,237,160,199,0,170,209,157,0,137,71,47,0,143,86,32,0,198,242,2,0,212,48,136,1,92,172,186,0,230,151,105,1,96,191,229,0,138,80,191,254,240,216,130,255,98,43,6,254,168,196,49,0,253,18,91,1,144,73,121,0,61,146,39,1,63,104,24,255,184,165,112,254,126,235,98,0,80,213,98,255,123,60,87,255,82,140,245,1,223,120,173,255,15,198,134,1,206,60,239,0,231,234,92,255,33,238,19,255,165,113,142,1,176,119,38,0,160,43,166,254,239,91,105,0,107,61,194,1,25,4,68,0,15,139,51,0,164,132,106,255,34,116,46,254,168,95,197,0,137,212,23,0,72,156,58,0,137,112,69,254,150,105,154,255,236,201,157,0,23,212,154,255,136,82,227,254,226,59,221,255,95,149,192,0,81,118,52,255,33,43,215,1,14,147,75,255,89,156,121,254,14,18,79,0,147,208,139,1,151,218,62,255,156,88,8,1,210,184,98,255,20,175,123,255,102,83,229,0,220,65,116,1,150,250,4,255,92,142,220,255,34,247,66,255,204,225,179,254,151,81,151,0,71,40,236,255,138,63,62,0,6,79,240,255,183,185,181,0,118,50,27,0,63,227,192,0,123,99,58,1,50,224,155,255,17,225,223,254,220,224,77,255,14,44,123,1,141,128,175,0,248,212,200,0,150,59,183,255,147,97,29,0,150,204,181,0,253,37,71,0,145,85,119,0,154,200,186,0,2,128,249,255,83,24,124,0,14,87,143,0,168,51,245,1,124,151,231,255,208,240,197,1,124,190,185,0,48,58,246,0,20,233,232,0,125,18,98,255,13,254,31,255,245,177,130,255,108,142,35,0,171,125,242,254,140,12,34,255,165,161,162,0,206,205,101,0,247,25,34,1,100,145,57,0,39,70,57,0,118,204,203,255,242,0,162,0,165,244,30,0,198,116,226,0,128,111,153,255,140,54,182,1,60,122,15,255,155,58,57,1,54,50,198,0,171,211,29,255,107,138,167,255,173,107,199,255,109,161,193,0,89,72,242,255,206,115,89,255,250,254,142,254,177,202,94,255,81,89,50,0,7,105,66,255,25,254,255,254,203,64,23,255,79,222,108,255,39,249,75,0,241,124,50,0,239,152,133,0,221,241,105,0,147,151,98,0,213,161,121,254,242,49,137,0,233,37,249,254,42,183,27,0,184,119,230,255,217,32,163,255,208,251,228,1,137,62,131,255,79,64,9,254,94,48,113,0,17,138,50,254,193,255,22,0,247,18,197,1,67,55,104,0,16,205,95,255,48,37,66,0,55,156,63,1,64,82,74,255,200,53,71,254,239,67,125,0,26,224,222,0,223,137,93,255,30,224,202,255,9,220,132,0,198,38,235,1,102,141,86,0,60,43,81,1,136,28,26,0,233,36,8,254,207,242,148,0,164,162,63,0,51,46,224,255,114,48,79,255,9,175,226,0,222,3,193,255,47,160,232,255,255,93,105,254,14,42,230,0,26,138,82,1,208,43,244,0,27,39,38,255,98,208,127,255,64,149,182,255,5,250,209,0,187,60,28,254,49,25,218,255,169,116,205,255,119,18,120,0,156,116,147,255,132,53,109,255,13,10,202,0,110,83,167,0,157,219,137,255,6,3,130,255,50,167,30,255,60,159,47,255,129,128,157,254,94,3,189,0,3,166,68,0,83,223,215,0,150,90,194,1,15,168,65,0,227,83,51,255,205,171,66,255,54,187,60,1,152,102,45,255,119,154,225,0,240,247,136,0,100,197,178,255,139,71,223,255,204,82,16,1,41,206,42,255,156,192,221,255,216,123,244,255,218,218,185,255,187,186,239,255,252,172,160,255,195,52,22,0,144,174,181,254,187,100,115,255,211,78,176,255,27,7,193,0,147,213,104,255,90,201,10,255,80,123,66,1,22,33,186,0,1,7,99,254,30,206,10,0,229,234,5,0,53,30,210,0,138,8,220,254,71,55,167,0,72,225,86,1,118,190,188,0,254,193,101,1,171,249,172,255,94,158,183,254,93,2,108,255,176,93,76,255,73,99,79,255,74,64,129,254,246,46,65,0,99,241,127,254,246,151,102,255,44,53,208,254,59,102,234,0,154,175,164,255,88,242,32,0,111,38,1,0,255,182,190,255,115,176,15,254,169,60,129,0,122,237,241,0,90,76,63,0,62,74,120,255,122,195,110,0,119,4,178,0,222,242,210,0,130,33,46,254,156,40,41,0,167,146,112,1,49,163,111,255,121,176,235,0,76,207,14,255,3,25,198,1,41,235,213,0,85,36,214,1,49,92,109,255,200,24,30,254,168,236,195,0,145,39,124,1,236,195,149,0,90,36,184,255,67,85,170,255,38,35,26,254,131,124,68,255,239,155,35,255,54,201,164,0,196,22,117,255,49,15,205,0,24,224,29,1,126,113,144,0,117,21,182,0,203,159,141,0,223,135,77,0,176,230,176,255,190,229,215,255,99,37,181,255,51,21,138,255,25,189,89,255,49,48,165,254,152,45,247,0,170,108,222,0,80,202,5,0,27,69,103,254,204,22,129,255,180,252,62,254,210,1,91,255,146,110,254,255,219,162,28,0,223,252,213,1,59,8,33,0,206,16,244,0,129,211,48,0,107,160,208,0,112,59,209,0,109,77,216,254,34,21,185,255,246,99,56,255,179,139,19,255,185,29,50,255,84,89,19,0,74,250,98,255,225,42,200,255,192,217,205,255,210,16,167,0,99,132,95,1,43,230,57,0,254,11,203,255,99,188,63,255,119,193,251,254,80,105,54,0,232,181,189,1,183,69,112,255,208,171,165,255,47,109,180,255,123,83,165,0,146,162,52,255,154,11,4,255,151,227,90,255,146,137,97,254,61,233,41,255,94,42,55,255,108,164,236,0,152,68,254,0,10,140,131,255,10,106,79,254,243,158,137,0,67,178,66,254,177,123,198,255,15,62,34,0,197,88,42,255,149,95,177,255,152,0,198,255,149,254,113,255,225,90,163,255,125,217,247,0,18,17,224,0,128,66,120,254,192,25,9,255,50,221,205,0,49,212,70,0,233,255,164,0,2,209,9,0,221,52,219,254,172,224,244,255,94,56,206,1,242,179,2,255,31,91,164,1,230,46,138,255,189,230,220,0,57,47,61,255,111,11,157,0,177,91,152,0,28,230,98,0,97,87,126,0,198,89,145,255,167,79,107,0,249,77,160,1,29,233,230,255,150,21,86,254,60,11,193,0,151,37,36,254,185,150,243,255,228,212,83,1,172,151,180,0,201,169,155,0,244,60,234,0,142,235,4,1,67,218,60,0,192,113,75,1,116,243,207,255,65,172,155,0,81,30,156,255,80,72,33,254,18,231,109,255,142,107,21,254,125,26,132,255,176,16,59,255,150,201,58,0,206,169,201,0,208,121,226,0,40,172,14,255,150,61,94,255,56,57,156,255,141,60,145,255,45,108,149,255,238,145,155,255,209,85,31,254,192,12,210,0,99,98,93,254,152,16,151,0,225,185,220,0,141,235,44,255,160,172,21,254,71,26,31,255,13,64,93,254,28,56,198,0,177,62,248,1,182,8,241,0,166,101,148,255,78,81,133,255,129,222,215,1,188,169,129,255,232,7,97,0,49,112,60,255,217,229,251,0,119,108,138,0,39,19,123,254,131,49,235,0,132,84,145,0,130,230,148,255,25,74,187,0,5,245,54,255,185,219,241,1,18,194,228,255,241,202,102,0,105,113,202,0,155,235,79,0,21,9,178,255,156,1,239,0,200,148,61,0,115,247,210,255,49,221,135,0,58,189,8,1,35,46,9,0,81,65,5,255,52,158,185,255,125,116,46,255,74,140,13,255,210,92,172,254,147,23,71,0,217,224,253,254,115,108,180,255,145,58,48,254,219,177,24,255,156,255,60,1,154,147,242,0,253,134,87,0,53,75,229,0,48,195,222,255,31,175,50,255,156,210,120,255,208,35,222,255,18,248,179,1,2,10,101,255,157,194,248,255,158,204,101,255,104,254,197,255,79,62,4,0,178,172,101,1,96,146,251,255,65,10,156,0,2,137,165,255,116,4,231,0,242,215,1,0,19,35,29,255,43,161,79,0,59,149,246,1,251,66,176,0,200,33,3,255,80,110,142,255,195,161,17,1,228,56,66,255,123,47,145,254,132,4,164,0,67,174,172,0,25,253,114,0,87,97,87,1,250,220,84,0,96,91,200,255,37,125,59,0,19,65,118,0,161,52,241,255,237,172,6,255,176,191,255,255,1,65,130,254,223,190,230,0,101,253,231,255,146,35,109,0,250,29,77,1,49,0,19,0,123,90,155,1,22,86,32,255,218,213,65,0,111,93,127,0,60,93,169,255,8,127,182,0,17,186,14,254,253,137,246,255,213,25,48,254,76,238,0,255,248,92,70,255,99,224,139,0,184,9,255,1,7,164,208,0,205,131,198,1,87,214,199,0,130,214,95,0,221,149,222,0,23,38,171,254,197,110,213,0,43,115,140,254,215,177,118,0,96,52,66,1,117,158,237,0,14,64,182,255,46,63,174,255,158,95,190,255,225,205,177,255,43,5,142,255,172,99,212,255,244,187,147,0,29,51,153,255,228,116,24,254,30,101,207,0,19,246,150,255,134,231,5,0,125,134,226,1,77,65,98,0,236,130,33,255,5,110,62,0,69,108,127,255,7,113,22,0,145,20,83,254,194,161,231,255,131,181,60,0,217,209,177,255,229,148,212,254,3,131,184,0,117,177,187,1,28,14,31,255,176,102,80,0,50,84,151,255,125,31,54,255,21,157,133,255,19,179,139,1,224,232,26,0,34,117,170,255,167,252,171,255,73,141,206,254,129,250,35,0,72,79,236,1,220,229,20,255,41,202,173,255,99,76,238,255,198,22,224,255,108,198,195,255,36,141,96,1,236,158,59,255,106,100,87,0,110,226,2,0,227,234,222,0,154,93,119,255,74,112,164,255,67,91,2,255,21,145,33,255,102,214,137,255,175,230,103,254,163,246,166,0,93,247,116,254,167,224,28,255,220,2,57,1,171,206,84,0,123,228,17,255,27,120,119,0,119,11,147,1,180,47,225,255,104,200,185,254,165,2,114,0,77,78,212,0,45,154,177,255,24,196,121,254,82,157,182,0,90,16,190,1,12,147,197,0,95,239,152,255,11,235,71,0,86,146,119,255,172,134,214,0,60,131,196,0,161,225,129,0,31,130,120,254,95,200,51,0,105,231,210,255,58,9,148,255,43,168,221,255,124,237,142,0,198,211,50,254,46,245,103,0,164,248,84,0,152,70,208,255,180,117,177,0,70,79,185,0,243,74,32,0,149,156,207,0,197,196,161,1,245,53,239,0,15,93,246,254,139,240,49,255,196,88,36,255,162,38,123,0,128,200,157,1,174,76,103,255,173,169,34,254,216,1,171,255,114,51,17,0,136,228,194,0,110,150,56,254,106,246,159,0,19,184,79,255,150,77,240,255,155,80,162,0,0,53,169,255,29,151,86,0,68,94,16,0,92,7,110,254,98,117,149,255,249,77,230,255,253,10,140,0,214,124,92,254,35,118,235,0,89,48,57,1,22,53,166,0,184,144,61,255,179,255,194,0,214,248,61,254,59,110,246,0,121,21,81,254,166,3,228,0,106,64,26,255,69,232,134,255,242,220,53,254,46,220,85,0,113,149,247,255,97,179,103,255,190,127,11,0,135,209,182,0,95,52,129,1,170,144,206,255,122,200,204,255,168,100,146,0,60,144,149,254,70,60,40,0,122,52,177,255,246,211,101,255,174,237,8,0,7,51,120,0,19,31,173,0,126,239,156,255,143,189,203,0,196,128,88,255,233,133,226,255,30,125,173,255,201,108,50,0,123,100,59,255,254,163,3,1,221,148,181,255,214,136,57,254,222,180,137,255,207,88,54,255,28,33,251,255,67,214,52,1,210,208,100,0,81,170,94,0,145,40,53,0,224,111,231,254,35,28,244,255,226,199,195,254,238,17,230,0,217,217,164,254,169,157,221,0,218,46,162,1,199,207,163,255,108,115,162,1,14,96,187,255,118,60,76,0,184,159,152,0,209,231,71,254,42,164,186,255,186,153,51,254,221,171,182,255,162,142,173,0,235,47,193,0,7,139,16,1,95,164,64,255,16,221,166,0,219,197,16,0,132,29,44,255,100,69,117,255,60,235,88,254,40,81,173,0,71,190,61,255,187,88,157,0,231,11,23,0,237,117,164,0,225,168,223,255,154,114,116,255,163,152,242,1,24,32,170,0,125,98,113,254,168,19,76,0,17,157,220,254,155,52,5,0,19,111,161,255,71,90,252,255,173,110,240,0,10,198,121,255,253,255,240,255,66,123,210,0,221,194,215,254,121,163,17,255,225,7,99,0,190,49,182,0,115,9,133,1,232,26,138,255,213,68,132,0,44,119,122,255,179,98,51,0,149,90,106,0,71,50,230,255,10,153,118,255,177,70,25,0,165,87,205,0,55,138,234,0,238,30,97,0,113,155,207,0,98,153,127,0,34,107,219,254,117,114,172,255,76,180,255,254,242,57,179,255,221,34,172,254,56,162,49,255,83,3,255,255,113,221,189,255,188,25,228,254,16,88,89,255,71,28,198,254,22,17,149,255,243,121,254,255,107,202,99,255,9,206,14,1,220,47,153,0,107,137,39,1,97,49,194,255,149,51,197,254,186,58,11,255,107,43,232,1,200,6,14,255,181,133,65,254,221,228,171,255,123,62,231,1,227,234,179,255,34,189,212,254,244,187,249,0,190,13,80,1,130,89,1,0,223,133,173,0,9,222,198,255,66,127,74,0,167,216,93,255,155,168,198,1,66,145,0,0,68,102,46,1,172,90,154,0,216,128,75,255,160,40,51,0,158,17,27,1,124,240,49,0,236,202,176,255,151,124,192,255,38,193,190,0,95,182,61,0,163,147,124,255,255,165,51,255,28,40,17,254,215,96,78,0,86,145,218,254,31,36,202,255,86,9,5,0,111,41,200,255,237,108,97,0,57,62,44,0,117,184,15,1,45,241,116,0,152,1,220,255,157,165,188,0,250,15,131,1,60,44,125,255,65,220,251,255,75,50,184,0,53,90,128,255,231,80,194,255,136,129,127,1,21,18,187,255,45,58,161,255,71,147,34,0,174,249,11,254,35,141,29,0,239,68,177,255,115,110,58,0,238,190,177,1,87,245,166,255,190,49,247,255,146,83,184,255,173,14,39,255,146,215,104,0,142,223,120,0,149,200,155,255,212,207,145,1,16,181,217,0,173,32,87,255,255,35,181,0,119,223,161,1,200,223,94,255,70,6,186,255,192,67,85,255,50,169,152,0,144,26,123,255,56,243,179,254,20,68,136,0,39,140,188,254,253,208,5,255,200,115,135,1,43,172,229,255,156,104,187,0,151,251,167,0,52,135,23,0,151,153,72,0,147,197,107,254,148,158,5,255,238,143,206,0,126,153,137,255,88,152,197,254,7,68,167,0,252,159,165,255,239,78,54,255,24,63,55,255,38,222,94,0,237,183,12,255,206,204,210,0,19,39,246,254,30,74,231,0,135,108,29,1,179,115,0,0,117,118,116,1,132,6,252,255,145,129,161,1,105,67,141,0,82,37,226,255,238,226,228,255,204,214,129,254,162,123,100,255,185,121,234,0,45,108,231,0,66,8,56,255,132,136,128,0,172,224,66,254,175,157,188,0,230,223,226,254,242,219,69,0,184,14,119,1,82,162,56,0,114,123,20,0,162,103,85,255,49,239,99,254,156,135,215,0,111,255,167,254,39,196,214,0,144,38,79,1,249,168,125,0,155,97,156,255,23,52,219,255,150,22,144,0,44,149,165,255,40,127,183,0,196,77,233,255,118,129,210,255,170,135,230,255,214,119,198,0,233,240,35,0,253,52,7,255,117,102,48,255,21,204,154,255,179,136,177,255,23,2,3,1,149,130,89,255,252,17,159,1,70,60,26,0,144,107,17,0,180,190,60,255,56,182,59,255,110,71,54,255,198,18,129,255,149,224,87,255,223,21,152,255,138,22,182,255,250,156,205,0,236,45,208,255,79,148,242,1,101,70,209,0,103,78,174,0,101,144,172,255,152,136,237,1,191,194,136,0,113,80,125,1,152,4,141,0,155,150,53,255,196,116,245,0,239,114,73,254,19,82,17,255,124,125,234,255,40,52,191,0,42,210,158,255,155,132,165,0,178,5,42,1,64,92,40,255,36,85,77,255,178,228,118,0,137,66,96,254,115,226,66,0,110,240,69,254,151,111,80,0,167,174,236,255,227,108,107,255,188,242,65,255,183,81,255,0,57,206,181,255,47,34,181,255,213,240,158,1,71,75,95,0,156,40,24,255,102,210,81,0,171,199,228,255,154,34,41,0,227,175,75,0,21,239,195,0,138,229,95,1,76,192,49,0,117,123,87,1,227,225,130,0,125,62,63,255,2,198,171,0,254,36,13,254,145,186,206,0,148,255,244,255,35,0,166,0,30,150,219,1,92,228,212,0,92,198,60,254,62,133,200,255,201,41,59,0,125,238,109,255,180,163,238,1,140,122,82,0,9,22,88,255,197,157,47,255,153,94,57,0,88,30,182,0,84,161,85,0,178,146,124,0,166,166,7,255,21,208,223,0,156,182,242,0,155,121,185,0,83,156,174,254,154,16,118,255,186,83,232,1,223,58,121,255,29,23,88,0,35,125,127,255,170,5,149,254,164,12,130,255,155,196,29,0,161,96,136,0,7,35,29,1,162,37,251,0,3,46,242,255,0,217,188,0,57,174,226,1,206,233,2,0,57,187,136,254,123,189,9,255,201,117,127,255,186,36,204,0,231,25,216,0,80,78,105,0,19,134,129,255,148,203,68,0,141,81,125,254,248,165,200,255,214,144,135,0,151,55,166,255,38,235,91,0,21,46,154,0,223,254,150,255,35,153,180,255,125,176,29,1,43,98,30,255,216,122,230,255,233,160,12,0,57,185,12,254,240,113,7,255,5,9,16,254,26,91,108,0,109,198,203,0,8,147,40,0,129,134,228,255,124,186,40,255,114,98,132,254,166,132,23,0,99,69,44,0,9,242,238,255,184,53,59,0,132,129,102,255,52,32,243,254,147,223,200,255,123,83,179,254,135,144,201,255,141,37,56,1,151,60,227,255,90,73,156,1,203,172,187,0,80,151,47,255,94,137,231,255,36,191,59,255,225,209,181,255,74,215,213,254,6,118,179,255,153,54,193,1,50,0,231,0,104,157,72,1,140,227,154,255,182,226,16,254,96,225,92,255,115,20,170,254,6,250,78,0,248,75,173,255,53,89,6,255,0,180,118,0,72,173,1,0,64,8,206,1,174,133,223,0,185,62,133,255,214,11,98,0,197,31,208,0,171,167,244,255,22,231,181,1,150,218,185,0,247,169,97,1,165,139,247,255,47,120,149,1,103,248,51,0,60,69,28,254,25,179,196,0,124,7,218,254,58,107,81,0,184,233,156,255,252,74,36,0,118,188,67,0,141,95,53,255,222,94,165,254,46,61,53,0,206,59,115,255,47,236,250,255,74,5,32,1,129,154,238,255,106,32,226,0,121,187,61,255,3,166,241,254,67,170,172,255,29,216,178,255,23,201,252,0,253,110,243,0,200,125,57,0,109,192,96,255,52,115,238,0,38,121,243,255,201,56,33,0,194,118,130,0,75,96,25,255,170,30,230,254,39,63,253,0,36,45,250,255,251,1,239,0,160,212,92,1,45,209,237,0,243,33,87,254,237,84,201,255,212,18,157,254,212,99,127,255,217,98,16,254,139,172,239,0,168,201,130,255,143,193,169,255,238,151,193,1,215,104,41,0,239,61,165,254,2,3,242,0,22,203,177,254,177,204,22,0,149,129,213,254,31,11,41,255,0,159,121,254,160,25,114,255,162,80,200,0,157,151,11,0,154,134,78,1,216,54,252,0,48,103,133,0,105,220,197,0,253,168,77,254,53,179,23,0,24,121,240,1,255,46,96,255,107,60,135,254,98,205,249,255,63,249,119,255,120,59,211,255,114,180,55,254,91,85,237,0,149,212,77,1,56,73,49,0,86,198,150,0,93,209,160,0,69,205,182,255,244,90,43,0,20,36,176,0,122,116,221,0,51,167,39,1,231,1,63,255,13,197,134,0,3,209,34,255,135,59,202,0,167,100,78,0,47,223,76,0,185,60,62,0,178,166,123,1,132,12,161,255,61,174,43,0,195,69,144,0,127,47,191,1,34,44,78,0,57,234,52,1,255,22,40,255,246,94,146,0,83,228,128,0,60,78,224,255,0,96,210,255,153,175,236,0,159,21,73,0,180,115,196,254,131,225,106,0,255,167,134,0,159,8,112,255,120,68,194,255,176,196,198,255,118,48,168,255,93,169,1,0,112,200,102,1,74,24,254,0,19,141,4,254,142,62,63,0,131,179,187,255,77,156,155,255,119,86,164,0,170,208,146,255,208,133,154,255,148,155,58,255,162,120,232,254,252,213,155,0,241,13,42,0,94,50,131,0,179,170,112,0,140,83,151,255,55,119,84,1,140,35,239,255,153,45,67,1,236,175,39,0,54,151,103,255,158,42,65,255,196,239,135,254,86,53,203,0,149,97,47,254,216,35,17,255,70,3,70,1,103,36,90,255,40,26,173,0,184,48,13,0,163,219,217,255,81,6,1,255,221,170,108,254,233,208,93,0,100,201,249,254,86,36,35,255,209,154,30,1,227,201,251,255,2,189,167,254,100,57,3,0,13,128,41,0,197,100,75,0,150,204,235,255,145,174,59,0,120,248,149,255,85,55,225,0,114,210,53,254,199,204,119,0,14,247,74,1,63,251,129,0,67,104,151,1,135,130,80,0,79,89,55,255,117,230,157,255,25,96,143,0,213,145,5,0,69,241,120,1,149,243,95,255,114,42,20,0,131,72,2,0,154,53,20,255,73,62,109,0,196,102,152,0,41,12,204,255,122,38,11,1,250,10,145,0,207,125,148,0,246,244,222,255,41,32,85,1,112,213,126,0,162,249,86,1,71,198,127,255,81,9,21,1,98,39,4,255,204,71,45,1,75,111,137,0,234,59,231,0,32,48,95,255,204,31,114,1,29,196,181,255,51,241,167,254,93,109,142,0,104,144,45,0,235,12,181,255,52,112,164,0,76,254,202,255,174,14,162,0,61,235,147,255,43,64,185,254,233,125,217,0,243,88,167,254,74,49,8,0,156,204,66,0,124,214,123,0,38,221,118,1,146,112,236,0,114,98,177,0,151,89,199,0,87,197,112,0,185,149,161,0,44,96,165,0,248,179,20,255,188,219,216,254,40,62,13,0,243,142,141,0,229,227,206,255,172,202,35,255,117,176,225,255,82,110,38,1,42,245,14,255,20,83,97,0,49,171,10,0,242,119,120,0,25,232,61,0,212,240,147,255,4,115,56,255,145,17,239,254,202,17,251,255,249,18,245,255,99,117,239,0,184,4,179,255,246,237,51,255,37,239,137,255,166,112,166,255,81,188,33,255,185,250,142,255,54,187,173,0,208,112,201,0,246,43,228,1,104,184,88,255,212,52,196,255,51,117,108,255,254,117,155,0,46,91,15,255,87,14,144,255,87,227,204,0,83,26,83,1,159,76,227,0,159,27,213,1,24,151,108,0,117,144,179,254,137,209,82,0,38,159,10,0,115,133,201,0,223,182,156,1,110,196,93,255,57,60,233,0,5,167,105,255,154,197,164,0,96,34,186,255,147,133,37,1,220,99,190,0,1,167,84,255,20,145,171,0,194,197,251,254,95,78,133,255,252,248,243,255,225,93,131,255,187,134,196,255,216,153,170,0,20,118,158,254,140,1,118,0,86,158,15,1,45,211,41,255,147,1,100,254,113,116,76,255,211,127,108,1,103,15,48,0,193,16,102,1,69,51,95,255,107,128,157,0,137,171,233,0,90,124,144,1,106,161,182,0,175,76,236,1,200,141,172,255,163,58,104,0,233,180,52,255,240,253,14,255,162,113,254,255,38,239,138,254,52,46,166,0,241,101,33,254,131,186,156,0,111,208,62,255,124,94,160,255,31,172,254,0,112,174,56,255,188,99,27,255,67,138,251,0,125,58,128,1,156,152,174,255,178,12,247,255,252,84,158,0,82,197,14,254,172,200,83,255,37,39,46,1,106,207,167,0,24,189,34,0,131,178,144,0,206,213,4,0,161,226,210,0,72,51,105,255,97,45,187,255,78,184,223,255,176,29,251,0,79,160,86,255,116,37,178,0,82,77,213,1,82,84,141,255,226,101,212,1,175,88,199,255,245,94,247,1,172,118,109,255,166,185,190,0,131,181,120,0,87,254,93,255,134,240,73,255,32,245,143,255,139,162,103,255,179,98,18,254,217,204,112,0,147,223,120,255,53,10,243,0,166,140,150,0,125,80,200,255,14,109,219,255,91,218,1,255,252,252,47,254,109,156,116,255,115,49,127,1,204,87,211,255,148,202,217,255,26,85,249,255,14,245,134,1,76,89,169,255,242,45,230,0,59,98,172,255,114,73,132,254,78,155,49,255,158,126,84,0,49,175,43,255,16,182,84,255,157,103,35,0,104,193,109,255,67,221,154,0,201,172,1,254,8,162,88,0,165,1,29,255,125,155,229,255,30,154,220,1,103,239,92,0,220,1,109,255,202,198,1,0,94,2,142,1,36,54,44,0,235,226,158,255,170,251,214,255,185,77,9,0,97,74,242,0,219,163,149,255,240,35,118,255,223,114,88,254,192,199,3,0,106,37,24,255,201,161,118,255,97,89,99,1,224,58,103,255,101,199,147,254,222,60,99,0,234,25,59,1,52,135,27,0,102,3,91,254,168,216,235,0,229,232,136,0,104,60,129,0,46,168,238,0,39,191,67,0,75,163,47,0,143,97,98,255,56,216,168,1,168,233,252,255,35,111,22,255,92,84,43,0,26,200,87,1,91,253,152,0,202,56,70,0,142,8,77,0,80,10,175,1,252,199,76,0,22,110,82,255,129,1,194,0,11,128,61,1,87,14,145,255,253,222,190,1,15,72,174,0,85,163,86,254,58,99,44,255,45,24,188,254,26,205,15,0,19,229,210,254,248,67,195,0,99,71,184,0,154,199,37,255,151,243,121,255,38,51,75,255,201,85,130,254,44,65,250,0,57,147,243,254,146,43,59,255,89,28,53,0,33,84,24,255,179,51,18,254,189,70,83,0,11,156,179,1,98,134,119,0,158,111,111,0,119,154,73,255,200,63,140,254,45,13,13,255,154,192,2,254,81,72,42,0,46,160,185,254,44,112,6,0,146,215,149,1,26,176,104,0,68,28,87,1,236,50,153,255,179,128,250,254,206,193,191,255,166,92,137,254,53,40,239,0,210,1,204,254,168,173,35,0,141,243,45,1,36,50,109,255,15,242,194,255,227,159,122,255,176,175,202,254,70,57,72,0,40,223,56,0,208,162,58,255,183,98,93,0,15,111,12,0,30,8,76,255,132,127,246,255,45,242,103,0,69,181,15,255,10,209,30,0,3,179,121,0,241,232,218,1,123,199,88,255,2,210,202,1,188,130,81,255,94,101,208,1,103,36,45,0,76,193,24,1,95,26,241,255,165,162,187,0,36,114,140,0,202,66,5,255,37,56,147,0,152,11,243,1,127,85,232,255,250,135,212,1,185,177,113,0,90,220,75,255,69,248,146,0,50,111,50,0,92,22,80,0,244,36,115,254,163,100,82,255,25,193,6,1,127,61,36,0,253,67,30,254,65,236,170,255,161,17,215,254,63,175,140,0,55,127,4,0,79,112,233,0,109,160,40,0,143,83,7,255,65,26,238,255,217,169,140,255,78,94,189,255,0,147,190,255,147,71,186,254,106,77,127,255,233,157,233,1,135,87,237,255,208,13,236,1,155,109,36,255,180,100,218,0,180,163,18,0,190,110,9,1,17,63,123,255,179,136,180,255,165,123,123,255,144,188,81,254,71,240,108,255,25,112,11,255,227,218,51,255,167,50,234,255,114,79,108,255,31,19,115,255,183,240,99,0,227,87,143,255,72,217,248,255,102,169,95,1,129,149,149,0,238,133,12,1,227,204,35,0,208,115,26,1,102,8,234,0,112,88,143,1,144,249,14,0,240,158,172,254,100,112,119,0,194,141,153,254,40,56,83,255,121,176,46,0,42,53,76,255,158,191,154,0,91,209,92,0,173,13,16,1,5,72,226,255,204,254,149,0,80,184,207,0,100,9,122,254,118,101,171,255,252,203,0,254,160,207,54,0,56,72,249,1,56,140,13,255,10,64,107,254,91,101,52,255,225,181,248,1,139,255,132,0,230,145,17,0,233,56,23,0,119,1,241,255,213,169,151,255,99,99,9,254,185,15,191,255,173,103,109,1,174,13,251,255,178,88,7,254,27,59,68,255,10,33,2,255,248,97,59,0,26,30,146,1,176,147,10,0,95,121,207,1,188,88,24,0,185,94,254,254,115,55,201,0,24,50,70,0,120,53,6,0,142,66,146,0,228,226,249,255,104,192,222,1,173,68,219,0,162,184,36,255,143,102,137,255,157,11,23,0,125,45,98,0,235,93,225,254,56,112,160,255,70,116,243,1,153,249,55,255,129,39,17,1,241,80,244,0,87,69,21,1,94,228,73,255,78,66,65,255,194,227,231,0,61,146,87,255,173,155,23,255,112,116,219,254,216,38,11,255,131,186,133,0,94,212,187,0,100,47,91,0,204,254,175,255,222,18,215,254,173,68,108,255,227,228,79,255,38,221,213,0,163,227,150,254,31,190,18,0,160,179,11,1,10,90,94,255,220,174,88,0,163,211,229,255,199,136,52,0,130,95,221,255,140,188,231,254,139,113,128,255,117,171,236,254,49,220,20,255,59,20,171,255,228,109,188,0,20,225,32,254,195,16,174,0,227,254,136,1,135,39,105,0,150,77,206,255,210,238,226,0,55,212,132,254,239,57,124,0,170,194,93,255,249,16,247,255,24,151,62,255,10,151,10,0,79,139,178,255,120,242,202,0,26,219,213,0,62,125,35,255,144,2,108,255,230,33,83,255,81,45,216,1,224,62,17,0,214,217,125,0,98,153,153,255], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+10240); +/* memory initializer */ allocate([179,176,106,254,131,93,138,255,109,62,36,255,178,121,32,255,120,252,70,0,220,248,37,0,204,88,103,1,128,220,251,255,236,227,7,1,106,49,198,255,60,56,107,0,99,114,238,0,220,204,94,1,73,187,1,0,89,154,34,0,78,217,165,255,14,195,249,255,9,230,253,255,205,135,245,0,26,252,7,255,84,205,27,1,134,2,112,0,37,158,32,0,231,91,237,255,191,170,204,255,152,7,222,0,109,192,49,0,193,166,146,255,232,19,181,255,105,142,52,255,103,16,27,1,253,200,165,0,195,217,4,255,52,189,144,255,123,155,160,254,87,130,54,255,78,120,61,255,14,56,41,0,25,41,125,255,87,168,245,0,214,165,70,0,212,169,6,255,219,211,194,254,72,93,164,255,197,33,103,255,43,142,141,0,131,225,172,0,244,105,28,0,68,68,225,0,136,84,13,255,130,57,40,254,139,77,56,0,84,150,53,0,54,95,157,0,144,13,177,254,95,115,186,0,117,23,118,255,244,166,241,255,11,186,135,0,178,106,203,255,97,218,93,0,43,253,45,0,164,152,4,0,139,118,239,0,96,1,24,254,235,153,211,255,168,110,20,255,50,239,176,0,114,41,232,0,193,250,53,0,254,160,111,254,136,122,41,255,97,108,67,0,215,152,23,255,140,209,212,0,42,189,163,0,202,42,50,255,106,106,189,255,190,68,217,255,233,58,117,0,229,220,243,1,197,3,4,0,37,120,54,254,4,156,134,255,36,61,171,254,165,136,100,255,212,232,14,0,90,174,10,0,216,198,65,255,12,3,64,0,116,113,115,255,248,103,8,0,231,125,18,255,160,28,197,0,30,184,35,1,223,73,249,255,123,20,46,254,135,56,37,255,173,13,229,1,119,161,34,255,245,61,73,0,205,125,112,0,137,104,134,0,217,246,30,255,237,142,143,0,65,159,102,255,108,164,190,0,219,117,173,255,34,37,120,254,200,69,80,0,31,124,218,254,74,27,160,255,186,154,199,255,71,199,252,0,104,81,159,1,17,200,39,0,211,61,192,1,26,238,91,0,148,217,12,0,59,91,213,255,11,81,183,255,129,230,122,255,114,203,145,1,119,180,66,255,72,138,180,0,224,149,106,0,119,82,104,255,208,140,43,0,98,9,182,255,205,101,134,255,18,101,38,0,95,197,166,255,203,241,147,0,62,208,145,255,133,246,251,0,2,169,14,0,13,247,184,0,142,7,254,0,36,200,23,255,88,205,223,0,91,129,52,255,21,186,30,0,143,228,210,1,247,234,248,255,230,69,31,254,176,186,135,255,238,205,52,1,139,79,43,0,17,176,217,254,32,243,67,0,242,111,233,0,44,35,9,255,227,114,81,1,4,71,12,255,38,105,191,0,7,117,50,255,81,79,16,0,63,68,65,255,157,36,110,255,77,241,3,255,226,45,251,1,142,25,206,0,120,123,209,1,28,254,238,255,5,128,126,255,91,222,215,255,162,15,191,0,86,240,73,0,135,185,81,254,44,241,163,0,212,219,210,255,112,162,155,0,207,101,118,0,168,72,56,255,196,5,52,0,72,172,242,255,126,22,157,255,146,96,59,255,162,121,152,254,140,16,95,0,195,254,200,254,82,150,162,0,119,43,145,254,204,172,78,255,166,224,159,0,104,19,237,255,245,126,208,255,226,59,213,0,117,217,197,0,152,72,237,0,220,31,23,254,14,90,231,255,188,212,64,1,60,101,246,255,85,24,86,0,1,177,109,0,146,83,32,1,75,182,192,0,119,241,224,0,185,237,27,255,184,101,82,1,235,37,77,255,253,134,19,0,232,246,122,0,60,106,179,0,195,11,12,0,109,66,235,1,125,113,59,0,61,40,164,0,175,104,240,0,2,47,187,255,50,12,141,0,194,139,181,255,135,250,104,0,97,92,222,255,217,149,201,255,203,241,118,255,79,151,67,0,122,142,218,255,149,245,239,0,138,42,200,254,80,37,97,255,124,112,167,255,36,138,87,255,130,29,147,255,241,87,78,255,204,97,19,1,177,209,22,255,247,227,127,254,99,119,83,255,212,25,198,1,16,179,179,0,145,77,172,254,89,153,14,255,218,189,167,0,107,233,59,255,35,33,243,254,44,112,112,255,161,127,79,1,204,175,10,0,40,21,138,254,104,116,228,0,199,95,137,255,133,190,168,255,146,165,234,1,183,99,39,0,183,220,54,254,255,222,133,0,162,219,121,254,63,239,6,0,225,102,54,255,251,18,246,0,4,34,129,1,135,36,131,0,206,50,59,1,15,97,183,0,171,216,135,255,101,152,43,255,150,251,91,0,38,145,95,0,34,204,38,254,178,140,83,255,25,129,243,255,76,144,37,0,106,36,26,254,118,144,172,255,68,186,229,255,107,161,213,255,46,163,68,255,149,170,253,0,187,17,15,0,218,160,165,255,171,35,246,1,96,13,19,0,165,203,117,0,214,107,192,255,244,123,177,1,100,3,104,0,178,242,97,255,251,76,130,255,211,77,42,1,250,79,70,255,63,244,80,1,105,101,246,0,61,136,58,1,238,91,213,0,14,59,98,255,167,84,77,0,17,132,46,254,57,175,197,255,185,62,184,0,76,64,207,0,172,175,208,254,175,74,37,0,138,27,211,254,148,125,194,0,10,89,81,0,168,203,101,255,43,213,209,1,235,245,54,0,30,35,226,255,9,126,70,0,226,125,94,254,156,117,20,255,57,248,112,1,230,48,64,255,164,92,166,1,224,214,230,255,36,120,143,0,55,8,43,255,251,1,245,1,106,98,165,0,74,107,106,254,53,4,54,255,90,178,150,1,3,120,123,255,244,5,89,1,114,250,61,255,254,153,82,1,77,15,17,0,57,238,90,1,95,223,230,0,236,52,47,254,103,148,164,255,121,207,36,1,18,16,185,255,75,20,74,0,187,11,101,0,46,48,129,255,22,239,210,255,77,236,129,255,111,77,204,255,61,72,97,255,199,217,251,255,42,215,204,0,133,145,201,255,57,230,146,1,235,100,198,0,146,73,35,254,108,198,20,255,182,79,210,255,82,103,136,0,246,108,176,0,34,17,60,255,19,74,114,254,168,170,78,255,157,239,20,255,149,41,168,0,58,121,28,0,79,179,134,255,231,121,135,255,174,209,98,255,243,122,190,0,171,166,205,0,212,116,48,0,29,108,66,255,162,222,182,1,14,119,21,0,213,39,249,255,254,223,228,255,183,165,198,0,133,190,48,0,124,208,109,255,119,175,85,255,9,209,121,1,48,171,189,255,195,71,134,1,136,219,51,255,182,91,141,254,49,159,72,0,35,118,245,255,112,186,227,255,59,137,31,0,137,44,163,0,114,103,60,254,8,213,150,0,162,10,113,255,194,104,72,0,220,131,116,255,178,79,92,0,203,250,213,254,93,193,189,255,130,255,34,254,212,188,151,0,136,17,20,255,20,101,83,255,212,206,166,0,229,238,73,255,151,74,3,255,168,87,215,0,155,188,133,255,166,129,73,0,240,79,133,255,178,211,81,255,203,72,163,254,193,168,165,0,14,164,199,254,30,255,204,0,65,72,91,1,166,74,102,255,200,42,0,255,194,113,227,255,66,23,208,0,229,216,100,255,24,239,26,0,10,233,62,255,123,10,178,1,26,36,174,255,119,219,199,1,45,163,190,0,16,168,42,0,166,57,198,255,28,26,26,0,126,165,231,0,251,108,100,255,61,229,121,255,58,118,138,0,76,207,17,0,13,34,112,254,89,16,168,0,37,208,105,255,35,201,215,255,40,106,101,254,6,239,114,0,40,103,226,254,246,127,110,255,63,167,58,0,132,240,142,0,5,158,88,255,129,73,158,255,94,89,146,0,230,54,146,0,8,45,173,0,79,169,1,0,115,186,247,0,84,64,131,0,67,224,253,255,207,189,64,0,154,28,81,1,45,184,54,255,87,212,224,255,0,96,73,255,129,33,235,1,52,66,80,255,251,174,155,255,4,179,37,0,234,164,93,254,93,175,253,0,198,69,87,255,224,106,46,0,99,29,210,0,62,188,114,255,44,234,8,0,169,175,247,255,23,109,137,255,229,182,39,0,192,165,94,254,245,101,217,0,191,88,96,0,196,94,99,255,106,238,11,254,53,126,243,0,94,1,101,255,46,147,2,0,201,124,124,255,141,12,218,0,13,166,157,1,48,251,237,255,155,250,124,255,106,148,146,255,182,13,202,0,28,61,167,0,217,152,8,254,220,130,45,255,200,230,255,1,55,65,87,255,93,191,97,254,114,251,14,0,32,105,92,1,26,207,141,0,24,207,13,254,21,50,48,255,186,148,116,255,211,43,225,0,37,34,162,254,164,210,42,255,68,23,96,255,182,214,8,255,245,117,137,255,66,195,50,0,75,12,83,254,80,140,164,0,9,165,36,1,228,110,227,0,241,17,90,1,25,52,212,0,6,223,12,255,139,243,57,0,12,113,75,1,246,183,191,255,213,191,69,255,230,15,142,0,1,195,196,255,138,171,47,255,64,63,106,1,16,169,214,255,207,174,56,1,88,73,133,255,182,133,140,0,177,14,25,255,147,184,53,255,10,227,161,255,120,216,244,255,73,77,233,0,157,238,139,1,59,65,233,0,70,251,216,1,41,184,153,255,32,203,112,0,146,147,253,0,87,101,109,1,44,82,133,255,244,150,53,255,94,152,232,255,59,93,39,255,88,147,220,255,78,81,13,1,32,47,252,255,160,19,114,255,93,107,39,255,118,16,211,1,185,119,209,255,227,219,127,254,88,105,236,255,162,110,23,255,36,166,110,255,91,236,221,255,66,234,116,0,111,19,244,254,10,233,26,0,32,183,6,254,2,191,242,0,218,156,53,254,41,60,70,255,168,236,111,0,121,185,126,255,238,142,207,255,55,126,52,0,220,129,208,254,80,204,164,255,67,23,144,254,218,40,108,255,127,202,164,0,203,33,3,255,2,158,0,0,37,96,188,255,192,49,74,0,109,4,0,0,111,167,10,254,91,218,135,255,203,66,173,255,150,194,226,0,201,253,6,255,174,102,121,0,205,191,110,0,53,194,4,0,81,40,45,254,35,102,143,255,12,108,198,255,16,27,232,255,252,71,186,1,176,110,114,0,142,3,117,1,113,77,142,0,19,156,197,1,92,47,252,0,53,232,22,1,54,18,235,0,46,35,189,255,236,212,129,0,2,96,208,254,200,238,199,255,59,175,164,255,146,43,231,0,194,217,52,255,3,223,12,0,138,54,178,254,85,235,207,0,232,207,34,0,49,52,50,255,166,113,89,255,10,45,216,255,62,173,28,0,111,165,246,0,118,115,91,255,128,84,60,0,167,144,203,0,87,13,243,0,22,30,228,1,177,113,146,255,129,170,230,254,252,153,129,255,145,225,43,0,70,231,5,255,122,105,126,254,86,246,148,255,110,37,154,254,209,3,91,0,68,145,62,0,228,16,165,255,55,221,249,254,178,210,91,0,83,146,226,254,69,146,186,0,93,210,104,254,16,25,173,0,231,186,38,0,189,122,140,255,251,13,112,255,105,110,93,0,251,72,170,0,192,23,223,255,24,3,202,1,225,93,228,0,153,147,199,254,109,170,22,0,248,101,246,255,178,124,12,255,178,254,102,254,55,4,65,0,125,214,180,0,183,96,147,0,45,117,23,254,132,191,249,0,143,176,203,254,136,183,54,255,146,234,177,0,146,101,86,255,44,123,143,1,33,209,152,0,192,90,41,254,83,15,125,255,213,172,82,0,215,169,144,0,16,13,34,0,32,209,100,255,84,18,249,1,197,17,236,255,217,186,230,0,49,160,176,255,111,118,97,255,237,104,235,0,79,59,92,254,69,249,11,255,35,172,74,1,19,118,68,0,222,124,165,255,180,66,35,255,86,174,246,0,43,74,111,255,126,144,86,255,228,234,91,0,242,213,24,254,69,44,235,255,220,180,35,0,8,248,7,255,102,47,92,255,240,205,102,255,113,230,171,1,31,185,201,255,194,246,70,255,122,17,187,0,134,70,199,255,149,3,150,255,117,63,103,0,65,104,123,255,212,54,19,1,6,141,88,0,83,134,243,255,136,53,103,0,169,27,180,0,177,49,24,0,111,54,167,0,195,61,215,255,31,1,108,1,60,42,70,0,185,3,162,255,194,149,40,255,246,127,38,254,190,119,38,255,61,119,8,1,96,161,219,255,42,203,221,1,177,242,164,255,245,159,10,0,116,196,0,0,5,93,205,254,128,127,179,0,125,237,246,255,149,162,217,255,87,37,20,254,140,238,192,0,9,9,193,0,97,1,226,0,29,38,10,0,0,136,63,255,229,72,210,254,38,134,92,255,78,218,208,1,104,36,84,255,12,5,193,255,242,175,61,255,191,169,46,1,179,147,147,255,113,190,139,254,125,172,31,0,3,75,252,254,215,36,15,0,193,27,24,1,255,69,149,255,110,129,118,0,203,93,249,0,138,137,64,254,38,70,6,0,153,116,222,0,161,74,123,0,193,99,79,255,118,59,94,255,61,12,43,1,146,177,157,0,46,147,191,0,16,255,38,0,11,51,31,1,60,58,98,255,111,194,77,1,154,91,244,0,140,40,144,1,173,10,251,0,203,209,50,254,108,130,78,0,228,180,90,0,174,7,250,0,31,174,60,0,41,171,30,0,116,99,82,255,118,193,139,255,187,173,198,254,218,111,56,0,185,123,216,0,249,158,52,0,52,180,93,255,201,9,91,255,56,45,166,254,132,155,203,255,58,232,110,0,52,211,89,255,253,0,162,1,9,87,183,0,145,136,44,1,94,122,245,0,85,188,171,1,147,92,198,0,0,8,104,0,30,95,174,0,221,230,52,1,247,247,235,255,137,174,53,255,35,21,204,255,71,227,214,1,232,82,194,0,11,48,227,255,170,73,184,255,198,251,252,254,44,112,34,0,131,101,131,255,72,168,187,0,132,135,125,255,138,104,97,255,238,184,168,255,243,104,84,255,135,216,226,255,139,144,237,0,188,137,150,1,80,56,140,255,86,169,167,255,194,78,25,255,220,17,180,255,17,13,193,0,117,137,212,255,141,224,151,0,49,244,175,0,193,99,175,255,19,99,154,1,255,65,62,255,156,210,55,255,242,244,3,255,250,14,149,0,158,88,217,255,157,207,134,254,251,232,28,0,46,156,251,255,171,56,184,255,239,51,234,0,142,138,131,255,25,254,243,1,10,201,194,0,63,97,75,0,210,239,162,0,192,200,31,1,117,214,243,0,24,71,222,254,54,40,232,255,76,183,111,254,144,14,87,255,214,79,136,255,216,196,212,0,132,27,140,254,131,5,253,0,124,108,19,255,28,215,75,0,76,222,55,254,233,182,63,0,68,171,191,254,52,111,222,255,10,105,77,255,80,170,235,0,143,24,88,255,45,231,121,0,148,129,224,1,61,246,84,0,253,46,219,255,239,76,33,0,49,148,18,254,230,37,69,0,67,134,22,254,142,155,94,0,31,157,211,254,213,42,30,255,4,228,247,254,252,176,13,255,39,0,31,254,241,244,255,255,170,45,10,254,253,222,249,0,222,114,132,0,255,47,6,255,180,163,179,1,84,94,151,255,89,209,82,254,229,52,169,255,213,236,0,1,214,56,228,255,135,119,151,255,112,201,193,0,83,160,53,254,6,151,66,0,18,162,17,0,233,97,91,0,131,5,78,1,181,120,53,255,117,95,63,255,237,117,185,0,191,126,136,255,144,119,233,0,183,57,97,1,47,201,187,255,167,165,119,1,45,100,126,0,21,98,6,254,145,150,95,255,120,54,152,0,209,98,104,0,143,111,30,254,184,148,249,0,235,216,46,0,248,202,148,255,57,95,22,0,242,225,163,0,233,247,232,255,71,171,19,255,103,244,49,255,84,103,93,255,68,121,244,1,82,224,13,0,41,79,43,255,249,206,167,255,215,52,21,254,192,32,22,255,247,111,60,0,101,74,38,255,22,91,84,254,29,28,13,255,198,231,215,254,244,154,200,0,223,137,237,0,211,132,14,0,95,64,206,255,17,62,247,255,233,131,121,1,93,23,77,0,205,204,52,254,81,189,136,0,180,219,138,1,143,18,94,0,204,43,140,254,188,175,219,0,111,98,143,255,151,63,162,255,211,50,71,254,19,146,53,0,146,45,83,254,178,82,238,255,16,133,84,255,226,198,93,255,201,97,20,255,120,118,35,255,114,50,231,255,162,229,156,255,211,26,12,0,114,39,115,255,206,212,134,0,197,217,160,255,116,129,94,254,199,215,219,255,75,223,249,1,253,116,181,255,232,215,104,255,228,130,246,255,185,117,86,0,14,5,8,0,239,29,61,1,237,87,133,255,125,146,137,254,204,168,223,0,46,168,245,0,154,105,22,0,220,212,161,255,107,69,24,255,137,218,181,255,241,84,198,255,130,122,211,255,141,8,153,255,190,177,118,0,96,89,178,0,255,16,48,254,122,96,105,255,117,54,232,255,34,126,105,255,204,67,166,0,232,52,138,255,211,147,12,0,25,54,7,0,44,15,215,254,51,236,45,0,190,68,129,1,106,147,225,0,28,93,45,254,236,141,15,255,17,61,161,0,220,115,192,0,236,145,24,254,111,168,169,0,224,58,63,255,127,164,188,0,82,234,75,1,224,158,134,0,209,68,110,1,217,166,217,0,70,225,166,1,187,193,143,255,16,7,88,255,10,205,140,0,117,192,156,1,17,56,38,0,27,124,108,1,171,215,55,255,95,253,212,0,155,135,168,255,246,178,153,254,154,68,74,0,232,61,96,254,105,132,59,0,33,76,199,1,189,176,130,255,9,104,25,254,75,198,102,255,233,1,112,0,108,220,20,255,114,230,70,0,140,194,133,255,57,158,164,254,146,6,80,255,169,196,97,1,85,183,130,0,70,158,222,1,59,237,234,255,96,25,26,255,232,175,97,255,11,121,248,254,88,35,194,0,219,180,252,254,74,8,227,0,195,227,73,1,184,110,161,255,49,233,164,1,128,53,47,0,82,14,121,255,193,190,58,0,48,174,117,255,132,23,32,0,40,10,134,1,22,51,25,255,240,11,176,255,110,57,146,0,117,143,239,1,157,101,118,255,54,84,76,0,205,184,18,255,47,4,72,255,78,112,85,255,193,50,66,1,93,16,52,255,8,105,134,0,12,109,72,255,58,156,251,0,144,35,204,0,44,160,117,254,50,107,194,0,1,68,165,255,111,110,162,0,158,83,40,254,76,214,234,0,58,216,205,255,171,96,147,255,40,227,114,1,176,227,241,0,70,249,183,1,136,84,139,255,60,122,247,254,143,9,117,255,177,174,137,254,73,247,143,0,236,185,126,255,62,25,247,255,45,64,56,255,161,244,6,0,34,57,56,1,105,202,83,0,128,147,208,0,6,103,10,255,74,138,65,255,97,80,100,255,214,174,33,255,50,134,74,255,110,151,130,254,111,84,172,0,84,199,75,254,248,59,112,255,8,216,178,1,9,183,95,0,238,27,8,254,170,205,220,0,195,229,135,0,98,76,237,255,226,91,26,1,82,219,39,255,225,190,199,1,217,200,121,255,81,179,8,255,140,65,206,0,178,207,87,254,250,252,46,255,104,89,110,1,253,189,158,255,144,214,158,255,160,245,54,255,53,183,92,1,21,200,194,255,146,33,113,1,209,1,255,0,235,106,43,255,167,52,232,0,157,229,221,0,51,30,25,0,250,221,27,1,65,147,87,255,79,123,196,0,65,196,223,255,76,44,17,1,85,241,68,0,202,183,249,255,65,212,212,255,9,33,154,1,71,59,80,0,175,194,59,255,141,72,9,0,100,160,244,0,230,208,56,0,59,25,75,254,80,194,194,0,18,3,200,254,160,159,115,0,132,143,247,1,111,93,57,255,58,237,11,1,134,222,135,255,122,163,108,1,123,43,190,255,251,189,206,254,80,182,72,255,208,246,224,1,17,60,9,0,161,207,38,0,141,109,91,0,216,15,211,255,136,78,110,0,98,163,104,255,21,80,121,255,173,178,183,1,127,143,4,0,104,60,82,254,214,16,13,255,96,238,33,1,158,148,230,255,127,129,62,255,51,255,210,255,62,141,236,254,157,55,224,255,114,39,244,0,192,188,250,255,228,76,53,0,98,84,81,255,173,203,61,254,147,50,55,255,204,235,191,0,52,197,244,0,88,43,211,254,27,191,119,0,188,231,154,0,66,81,161,0,92,193,160,1,250,227,120,0,123,55,226,0,184,17,72,0,133,168,10,254,22,135,156,255,41,25,103,255,48,202,58,0,186,149,81,255,188,134,239,0,235,181,189,254,217,139,188,255,74,48,82,0,46,218,229,0,189,253,251,0,50,229,12,255,211,141,191,1,128,244,25,255,169,231,122,254,86,47,189,255,132,183,23,255,37,178,150,255,51,137,253,0,200,78,31,0,22,105,50,0,130,60,0,0,132,163,91,254,23,231,187,0,192,79,239,0,157,102,164,255,192,82,20,1,24,181,103,255,240,9,234,0,1,123,164,255,133,233,0,255,202,242,242,0,60,186,245,0,241,16,199,255,224,116,158,254,191,125,91,255,224,86,207,0,121,37,231,255,227,9,198,255,15,153,239,255,121,232,217,254,75,112,82,0,95,12,57,254,51,214,105,255,148,220,97,1,199,98,36,0,156,209,12,254,10,212,52,0,217,180,55,254,212,170,232,255,216,20,84,255,157,250,135,0,157,99,127,254,1,206,41,0,149,36,70,1,54,196,201,255,87,116,0,254,235,171,150,0,27,163,234,0,202,135,180,0,208,95,0,254,123,156,93,0,183,62,75,0,137,235,182,0,204,225,255,255,214,139,210,255,2,115,8,255,29,12,111,0,52,156,1,0,253,21,251,255,37,165,31,254,12,130,211,0,106,18,53,254,42,99,154,0,14,217,61,254,216,11,92,255,200,197,112,254,147,38,199,0,36,252,120,254,107,169,77,0,1,123,159,255,207,75,102,0,163,175,196,0,44,1,240,0,120,186,176,254,13,98,76,255,237,124,241,255,232,146,188,255,200,96,224,0,204,31,41,0,208,200,13,0,21,225,96,255,175,156,196,0,247,208,126,0,62,184,244,254,2,171,81,0,85,115,158,0,54,64,45,255,19,138,114,0,135,71,205,0,227,47,147,1,218,231,66,0,253,209,28,0,244,15,173,255,6,15,118,254,16,150,208,255,185,22,50,255,86,112,207,255,75,113,215,1,63,146,43,255,4,225,19,254,227,23,62,255,14,255,214,254,45,8,205,255,87,197,151,254,210,82,215,255,245,248,247,255,128,248,70,0,225,247,87,0,90,120,70,0,213,245,92,0,13,133,226,0,47,181,5,1,92,163,105,255,6,30,133,254,232,178,61,255,230,149,24,255,18,49,158,0,228,100,61,254,116,243,251,255,77,75,92,1,81,219,147,255,76,163,254,254,141,213,246,0,232,37,152,254,97,44,100,0,201,37,50,1,212,244,57,0,174,171,183,255,249,74,112,0,166,156,30,0,222,221,97,255,243,93,73,254,251,101,100,255,216,217,93,255,254,138,187,255,142,190,52,255,59,203,177,255,200,94,52,0,115,114,158,255,165,152,104,1,126,99,226,255,118,157,244,1,107,200,16,0,193,90,229,0,121,6,88,0,156,32,93,254,125,241,211,255,14,237,157,255,165,154,21,255,184,224,22,255,250,24,152,255,113,77,31,0,247,171,23,255,237,177,204,255,52,137,145,255,194,182,114,0,224,234,149,0,10,111,103,1,201,129,4,0,238,142,78,0,52,6,40,255,110,213,165,254,60,207,253,0,62,215,69,0,96,97,0,255,49,45,202,0,120,121,22,255,235,139,48,1,198,45,34,255,182,50,27,1,131,210,91,255,46,54,128,0,175,123,105,255,198,141,78,254,67,244,239,255,245,54,103,254,78,38,242,255,2,92,249,254,251,174,87,255,139,63,144,0,24,108,27,255,34,102,18,1,34,22,152,0,66,229,118,254,50,143,99,0,144,169,149,1,118,30,152,0,178,8,121,1,8,159,18,0,90,101,230,255,129,29,119,0,68,36,11,1,232,183,55,0,23,255,96,255,161,41,193,255,63,139,222,0,15,179,243,0,255,100,15,255,82,53,135,0,137,57,149,1,99,240,170,255,22,230,228,254,49,180,82,255,61,82,43,0,110,245,217,0,199,125,61,0,46,253,52,0,141,197,219,0,211,159,193,0,55,121,105,254,183,20,129,0,169,119,170,255,203,178,139,255,135,40,182,255,172,13,202,255,65,178,148,0,8,207,43,0,122,53,127,1,74,161,48,0,227,214,128,254,86,11,243,255,100,86,7,1,245,68,134,255,61,43,21,1,152,84,94,255,190,60,250,254,239,118,232,255,214,136,37,1,113,76,107,255,93,104,100,1,144,206,23,255,110,150,154,1,228,103,185,0,218,49,50,254,135,77,139,255,185,1,78,0,0,161,148,255,97,29,233,255,207,148,149,255,160,168,0,0,91,128,171,255,6,28,19,254,11,111,247,0,39,187,150,255,138,232,149,0,117,62,68,255,63,216,188,255,235,234,32,254,29,57,160,255,25,12,241,1,169,60,191,0,32,131,141,255,237,159,123,255,94,197,94,254,116,254,3,255,92,179,97,254,121,97,92,255,170,112,14,0,21,149,248,0,248,227,3,0,80,96,109,0,75,192,74,1,12,90,226,255,161,106,68,1,208,114,127,255,114,42,255,254,74,26,74,255,247,179,150,254,121,140,60,0,147,70,200,255,214,40,161,255,161,188,201,255,141,65,135,255,242,115,252,0,62,47,202,0,180,149,255,254,130,55,237,0,165,17,186,255,10,169,194,0,156,109,218,255,112,140,123,255,104,128,223,254,177,142,108,255,121,37,219,255,128,77,18,255,111,108,23,1,91,192,75,0,174,245,22,255,4,236,62,255,43,64,153,1,227,173,254,0,237,122,132,1,127,89,186,255,142,82,128,254,252,84,174,0,90,179,177,1,243,214,87,255,103,60,162,255,208,130,14,255,11,130,139,0,206,129,219,255,94,217,157,255,239,230,230,255,116,115,159,254,164,107,95,0,51,218,2,1,216,125,198,255,140,202,128,254,11,95,68,255,55,9,93,254,174,153,6,255,204,172,96,0,69,160,110,0,213,38,49,254,27,80,213,0,118,125,114,0,70,70,67,255,15,142,73,255,131,122,185,255,243,20,50,254,130,237,40,0,210,159,140,1,197,151,65,255,84,153,66,0,195,126,90,0,16,238,236,1,118,187,102,255,3,24,133,255,187,69,230,0,56,197,92,1,213,69,94,255,80,138,229,1,206,7,230,0,222,111,230,1,91,233,119,255,9,89,7,1,2,98,1,0,148,74,133,255,51,246,180,255,228,177,112,1,58,189,108,255,194,203,237,254,21,209,195,0,147,10,35,1,86,157,226,0,31,163,139,254,56,7,75,255,62,90,116,0,181,60,169,0,138,162,212,254,81,167,31,0,205,90,112,255,33,112,227,0,83,151,117,1,177,224,73,255,174,144,217,255,230,204,79,255,22,77,232,255,114,78,234,0,224,57,126,254,9,49,141,0,242,147,165,1,104,182,140,255,167,132,12,1,123,68,127,0,225,87,39,1,251,108,8,0,198,193,143,1,121,135,207,255,172,22,70,0,50,68,116,255,101,175,40,255,248,105,233,0,166,203,7,0,110,197,218,0,215,254,26,254,168,226,253,0,31,143,96,0,11,103,41,0,183,129,203,254,100,247,74,255,213,126,132,0,210,147,44,0,199,234,27,1,148,47,181,0,155,91,158,1,54,105,175,255,2,78,145,254,102,154,95,0,128,207,127,254,52,124,236,255,130,84,71,0,221,243,211,0,152,170,207,0,222,106,199,0,183,84,94,254,92,200,56,255,138,182,115,1,142,96,146,0,133,136,228,0,97,18,150,0,55,251,66,0,140,102,4,0,202,103,151,0,30,19,248,255,51,184,207,0,202,198,89,0,55,197,225,254,169,95,249,255,66,65,68,255,188,234,126,0,166,223,100,1,112,239,244,0,144,23,194,0,58,39,182,0,244,44,24,254,175,68,179,255,152,118,154,1,176,162,130,0,217,114,204,254,173,126,78,255,33,222,30,255,36,2,91,255,2,143,243,0,9,235,215,0,3,171,151,1,24,215,245,255,168,47,164,254,241,146,207,0,69,129,180,0,68,243,113,0,144,53,72,254,251,45,14,0,23,110,168,0,68,68,79,255,110,70,95,254,174,91,144,255,33,206,95,255,137,41,7,255,19,187,153,254,35,255,112,255,9,145,185,254,50,157,37,0,11,112,49,1,102,8,190,255,234,243,169,1,60,85,23,0,74,39,189,0,116,49,239,0,173,213,210,0,46,161,108,255,159,150,37,0,196,120,185,255,34,98,6,255,153,195,62,255,97,230,71,255,102,61,76,0,26,212,236,255,164,97,16,0,198,59,146,0,163,23,196,0,56,24,61,0,181,98,193,0,251,147,229,255,98,189,24,255,46,54,206,255,234,82,246,0,183,103,38,1,109,62,204,0,10,240,224,0,146,22,117,255,142,154,120,0,69,212,35,0,208,99,118,1,121,255,3,255,72,6,194,0,117,17,197,255,125,15,23,0,154,79,153,0,214,94,197,255,185,55,147,255,62,254,78,254,127,82,153,0,110,102,63,255,108,82,161,255,105,187,212,1,80,138,39,0,60,255,93,255,72,12,186,0,210,251,31,1,190,167,144,255,228,44,19,254,128,67,232,0,214,249,107,254,136,145,86,255,132,46,176,0,189,187,227,255,208,22,140,0,217,211,116,0,50,81,186,254,139,250,31,0,30,64,198,1,135,155,100,0,160,206,23,254,187,162,211,255,16,188,63,0,254,208,49,0,85,84,191,0,241,192,242,255,153,126,145,1,234,162,162,255,230,97,216,1,64,135,126,0,190,148,223,1,52,0,43,255,28,39,189,1,64,136,238,0,175,196,185,0,98,226,213,255,127,159,244,1,226,175,60,0,160,233,142,1,180,243,207,255,69,152,89,1,31,101,21,0,144,25,164,254,139,191,209,0,91,25,121,0,32,147,5,0,39,186,123,255,63,115,230,255,93,167,198,255,143,213,220,255,179,156,19,255,25,66,122,0,214,160,217,255,2,45,62,255,106,79,146,254,51,137,99,255,87,100,231,255,175,145,232,255,101,184,1,255,174,9,125,0,82,37,161,1,36,114,141,255,48,222,142,255,245,186,154,0,5,174,221,254,63,114,155,255,135,55,160,1,80,31,135,0,126,250,179,1,236,218,45,0,20,28,145,1,16,147,73,0,249,189,132,1,17,189,192,255,223,142,198,255,72,20,15,255,250,53,237,254,15,11,18,0,27,211,113,254,213,107,56,255,174,147,146,255,96,126,48,0,23,193,109,1,37,162,94,0,199,157,249,254,24,128,187,255,205,49,178,254,93,164,42,255,43,119,235,1,88,183,237,255,218,210,1,255,107,254,42,0,230,10,99,255,162,0,226,0,219,237,91,0,129,178,203,0,208,50,95,254,206,208,95,255,247,191,89,254,110,234,79,255,165,61,243,0,20,122,112,255,246,246,185,254,103,4,123,0,233,99,230,1,219,91,252,255,199,222,22,255,179,245,233,255,211,241,234,0,111,250,192,255,85,84,136,0,101,58,50,255,131,173,156,254,119,45,51,255,118,233,16,254,242,90,214,0,94,159,219,1,3,3,234,255,98,76,92,254,80,54,230,0,5,228,231,254,53,24,223,255,113,56,118,1,20,132,1,255,171,210,236,0,56,241,158,255,186,115,19,255,8,229,174,0,48,44,0,1,114,114,166,255,6,73,226,255,205,89,244,0,137,227,75,1,248,173,56,0,74,120,246,254,119,3,11,255,81,120,198,255,136,122,98,255,146,241,221,1,109,194,78,255,223,241,70,1,214,200,169,255,97,190,47,255,47,103,174,255,99,92,72,254,118,233,180,255,193,35,233,254,26,229,32,255,222,252,198,0,204,43,71,255,199,84,172,0,134,102,190,0,111,238,97,254,230,40,230,0,227,205,64,254,200,12,225,0,166,25,222,0,113,69,51,255,143,159,24,0,167,184,74,0,29,224,116,254,158,208,233,0,193,116,126,255,212,11,133,255,22,58,140,1,204,36,51,255,232,30,43,0,235,70,181,255,64,56,146,254,169,18,84,255,226,1,13,255,200,50,176,255,52,213,245,254,168,209,97,0,191,71,55,0,34,78,156,0,232,144,58,1,185,74,189,0,186,142,149,254,64,69,127,255,161,203,147,255,176,151,191,0,136,231,203,254,163,182,137,0,161,126,251,254,233,32,66,0,68,207,66,0,30,28,37,0,93,114,96,1,254,92,247,255,44,171,69,0,202,119,11,255,188,118,50,1,255,83,136,255,71,82,26,0,70,227,2,0,32,235,121,1,181,41,154,0,71,134,229,254,202,255,36,0,41,152,5,0,154,63,73,255,34,182,124,0,121,221,150,255,26,204,213,1,41,172,87,0,90,157,146,255,109,130,20,0,71,107,200,255,243,102,189,0,1,195,145,254,46,88,117,0,8,206,227,0,191,110,253,255,109,128,20,254,134,85,51,255,137,177,112,1,216,34,22,255,131,16,208,255,121,149,170,0,114,19,23,1,166,80,31,255,113,240,122,0,232,179,250,0,68,110,180,254,210,170,119,0,223,108,164,255,207,79,233,255,27,229,226,254,209,98,81,255,79,68,7,0,131,185,100,0,170,29,162,255,17,162,107,255,57,21,11,1,100,200,181,255,127,65,166,1,165,134,204,0,104,167,168,0,1,164,79,0,146,135,59,1,70,50,128,255,102,119,13,254,227,6,135,0,162,142,179,255,160,100,222,0,27,224,219,1,158,93,195,255,234,141,137,0,16,24,125,255,238,206,47,255,97,17,98,255,116,110,12,255,96,115,77,0,91,227,232,255,248,254,79,255,92,229,6,254,88,198,139,0,206,75,129,0,250,77,206,255,141,244,123,1,138,69,220,0,32,151,6,1,131,167,22,255,237,68,167,254,199,189,150,0,163,171,138,255,51,188,6,255,95,29,137,254,148,226,179,0,181,107,208,255,134,31,82,255,151,101,45,255,129,202,225,0,224,72,147,0,48,138,151,255,195,64,206,254,237,218,158,0,106,29,137,254,253,189,233,255,103,15,17,255,194,97,255,0,178,45,169,254,198,225,155,0,39,48,117,255,135,106,115,0,97,38,181,0,150,47,65,255,83,130,229,254,246,38,129,0,92,239,154,254,91,99,127,0,161,111,33,255,238,217,242,255,131,185,195,255,213,191,158,255,41,150,218,0,132,169,131,0,89,84,252,1,171,70,128,255,163,248,203,254,1,50,180,255,124,76,85,1,251,111,80,0,99,66,239,255,154,237,182,255,221,126,133,254,74,204,99,255,65,147,119,255,99,56,167,255,79,248,149,255,116,155,228,255,237,43,14,254,69,137,11,255,22,250,241,1,91,122,143,255,205,249,243,0,212,26,60,255,48,182,176,1,48,23,191,255,203,121,152,254,45,74,213,255,62,90,18,254,245,163,230,255,185,106,116,255,83,35,159,0,12,33,2,255,80,34,62,0,16,87,174,255,173,101,85,0,202,36,81,254,160,69,204,255,64,225,187,0,58,206,94,0,86,144,47,0,229,86,245,0,63,145,190,1,37,5,39,0,109,251,26,0,137,147,234,0,162,121,145,255,144,116,206,255,197,232,185,255,183,190,140,255,73,12,254,255,139,20,242,255,170,90,239,255,97,66,187,255,245,181,135,254,222,136,52,0,245,5,51,254,203,47,78,0,152,101,216,0,73,23,125,0,254,96,33,1,235,210,73,255,43,209,88,1,7,129,109,0,122,104,228,254,170,242,203,0,242,204,135,255,202,28,233,255,65,6,127,0,159,144,71,0,100,140,95,0,78,150,13,0,251,107,118,1,182,58,125,255,1,38,108,255,141,189,209,255,8,155,125,1,113,163,91,255,121,79,190,255,134,239,108,255,76,47,248,0,163,228,239,0,17,111,10,0,88,149,75,255,215,235,239,0,167,159,24,255,47,151,108,255,107,209,188,0,233,231,99,254,28,202,148,255,174,35,138,255,110,24,68,255,2,69,181,0,107,102,82,0,102,237,7,0,92,36,237,255,221,162,83,1,55,202,6,255,135,234,135,255,24,250,222,0,65,94,168,254,245,248,210,255,167,108,201,254,255,161,111,0,205,8,254,0,136,13,116,0,100,176,132,255,43,215,126,255,177,133,130,255,158,79,148,0,67,224,37,1,12,206,21,255,62,34,110,1,237,104,175,255,80,132,111,255,142,174,72,0,84,229,180,254,105,179,140,0,64,248,15,255,233,138,16,0,245,67,123,254,218,121,212,255,63,95,218,1,213,133,137,255,143,182,82,255,48,28,11,0,244,114,141,1,209,175,76,255,157,181,150,255,186,229,3,255,164,157,111,1,231,189,139,0,119,202,190,255,218,106,64,255,68,235,63,254,96,26,172,255,187,47,11,1,215,18,251,255,81,84,89,0,68,58,128,0,94,113,5,1,92,129,208,255,97,15,83,254,9,28,188,0,239,9,164,0,60,205,152,0,192,163,98,255,184,18,60,0,217,182,139,0,109,59,120,255,4,192,251,0,169,210,240,255,37,172,92,254,148,211,245,255,179,65,52,0,253,13,115,0,185,174,206,1,114,188,149,255,237,90,173,0,43,199,192,255,88,108,113,0,52,35,76,0,66,25,148,255,221,4,7,255,151,241,114,255,190,209,232,0,98,50,199,0,151,150,213,255,18,74,36,1,53,40,7,0,19,135,65,255,26,172,69,0,174,237,85,0,99,95,41,0,3,56,16,0,39,160,177,255,200,106,218,254,185,68,84,255,91,186,61,254,67,143,141,255,13,244,166,255,99,114,198,0,199,110,163,255,193,18,186,0,124,239,246,1,110,68,22,0,2,235,46,1,212,60,107,0,105,42,105,1,14,230,152,0,7,5,131,0,141,104,154,255,213,3,6,0,131,228,162,255,179,100,28,1,231,123,85,255,206,14,223,1,253,96,230,0,38,152,149,1,98,137,122,0,214,205,3,255,226,152,179,255,6,133,137,0,158,69,140,255,113,162,154,255,180,243,172,255,27,189,115,255,143,46,220,255,213,134,225,255,126,29,69,0,188,43,137,1,242,70,9,0,90,204,255,255,231,170,147,0,23,56,19,254,56,125,157,255,48,179,218,255,79,182,253,255,38,212,191,1,41,235,124,0,96,151,28,0,135,148,190,0,205,249,39,254,52,96,136,255,212,44,136,255,67,209,131,255,252,130,23,255,219,128,20,255,198,129,118,0,108,101,11,0,178,5,146,1,62,7,100,255,181,236,94,254,28,26,164,0,76,22,112,255,120,102,79,0,202,192,229,1,200,176,215,0,41,64,244,255,206,184,78,0,167,45,63,1,160,35,0,255,59,12,142,255,204,9,144,255,219,94,229,1,122,27,112,0,189,105,109,255,64,208,74,255,251,127,55,1,2,226,198,0,44,76,209,0,151,152,77,255,210,23,46,1,201,171,69,255,44,211,231,0,190,37,224,255,245,196,62,255,169,181,222,255,34,211,17,0,119,241,197,255,229,35,152,1,21,69,40,255,178,226,161,0,148,179,193,0,219,194,254,1,40,206,51,255,231,92,250,1,67,153,170,0,21,148,241,0,170,69,82,255,121,18,231,255,92,114,3,0,184,62,230,0,225,201,87,255,146,96,162,255,181,242,220,0,173,187,221,1,226,62,170,255,56,126,217,1,117,13,227,255,179,44,239,0,157,141,155,255,144,221,83,0,235,209,208,0,42,17,165,1,251,81,133,0,124,245,201,254,97,211,24,255,83,214,166,0,154,36,9,255,248,47,127,0,90,219,140,255,161,217,38,254,212,147,63,255,66,84,148,1,207,3,1,0,230,134,89,1,127,78,122,255,224,155,1,255,82,136,74,0,178,156,208,255,186,25,49,255,222,3,210,1,229,150,190,255,85,162,52,255,41,84,141,255,73,123,84,254,93,17,150,0,119,19,28,1,32,22,215,255,28,23,204,255,142,241,52,255,228,52,125,0,29,76,207,0,215,167,250,254,175,164,230,0,55,207,105,1,109,187,245,255,161,44,220,1,41,101,128,255,167,16,94,0,93,214,107,255,118,72,0,254,80,61,234,255,121,175,125,0,139,169,251,0,97,39,147,254,250,196,49,255,165,179,110,254,223,70,187,255,22,142,125,1,154,179,138,255,118,176,42,1,10,174,153,0,156,92,102,0,168,13,161,255,143,16,32,0,250,197,180,255,203,163,44,1,87,32,36,0,161,153,20,255,123,252,15,0,25,227,80,0,60,88,142,0,17,22,201,1,154,205,77,255,39,63,47,0,8,122,141,0,128,23,182,254,204,39,19,255,4,112,29,255,23,36,140,255,210,234,116,254,53,50,63,255,121,171,104,255,160,219,94,0,87,82,14,254,231,42,5,0,165,139,127,254,86,78,38,0,130,60,66,254,203,30,45,255,46,196,122,1,249,53,162,255,136,143,103,254,215,210,114,0,231,7,160,254,169,152,42,255,111,45,246,0,142,131,135,255,131,71,204,255,36,226,11,0,0,28,242,255,225,138,213,255,247,46,216,254,245,3,183,0,108,252,74,1,206,26,48,255,205,54,246,255,211,198,36,255,121,35,50,0,52,216,202,255,38,139,129,254,242,73,148,0,67,231,141,255,42,47,204,0,78,116,25,1,4,225,191,255,6,147,228,0,58,88,177,0,122,165,229,255,252,83,201,255,224,167,96,1,177,184,158,255,242,105,179,1,248,198,240,0,133,66,203,1,254,36,47,0,45,24,115,255,119,62,254,0,196,225,186,254,123,141,172,0,26,85,41,255,226,111,183,0,213,231,151,0,4,59,7,255,238,138,148,0,66,147,33,255,31,246,141,255,209,141,116,255,104,112,31,0,88,161,172,0,83,215,230,254,47,111,151,0,45,38,52,1,132,45,204,0,138,128,109,254,233,117,134,255,243,190,173,254,241,236,240,0,82,127,236,254,40,223,161,255,110,182,225,255,123,174,239,0,135,242,145,1,51,209,154,0,150,3,115,254,217,164,252,255,55,156,69,1,84,94,255,255,232,73,45,1,20,19,212,255,96,197,59,254,96,251,33,0,38,199,73,1,64,172,247,255,117,116,56,255,228,17,18,0,62,138,103,1,246,229,164,255,244,118,201,254,86,32,159,255,109,34,137,1,85,211,186,0,10,193,193,254,122,194,177,0,122,238,102,255,162,218,171,0,108,217,161,1,158,170,34,0,176,47,155,1,181,228,11,255,8,156,0,0,16,75,93,0,206,98,255,1,58,154,35,0,12,243,184,254,67,117,66,255,230,229,123,0,201,42,110,0,134,228,178,254,186,108,118,255,58,19,154,255,82,169,62,255,114,143,115,1,239,196,50,255,173,48,193,255,147,2,84,255,150,134,147,254,95,232,73,0,109,227,52,254,191,137,10,0,40,204,30,254,76,52,97,255,164,235,126,0,254,124,188,0,74,182,21,1,121,29,35,255,241,30,7,254,85,218,214,255,7,84,150,254,81,27,117,255,160,159,152,254,66,24,221,255,227,10,60,1,141,135,102,0,208,189,150,1,117,179,92,0,132,22,136,255,120,199,28,0,21,129,79,254,182,9,65,0,218,163,169,0,246,147,198,255,107,38,144,1,78,175,205,255,214,5,250,254,47,88,29,255,164,47,204,255,43,55,6,255,131,134,207,254,116,100,214,0,96,140,75,1,106,220,144,0,195,32,28,1,172,81,5,255,199,179,52,255,37,84,203,0,170,112,174,0,11,4,91,0,69,244,27,1,117,131,92,0,33,152,175,255,140,153,107,255,251,135,43,254,87,138,4,255,198,234,147,254,121,152,84,255,205,101,155,1,157,9,25,0,72,106,17,254,108,153,0,255,189,229,186,0,193,8,176,255,174,149,209,0,238,130,29,0,233,214,126,1,61,226,102,0,57,163,4,1,198,111,51,255,45,79,78,1,115,210,10,255,218,9,25,255,158,139,198,255,211,82,187,254,80,133,83,0,157,129,230,1,243,133,134,255,40,136,16,0,77,107,79,255,183,85,92,1,177,204,202,0,163,71,147,255,152,69,190,0,172,51,188,1,250,210,172,255,211,242,113,1,89,89,26,255,64,66,111,254,116,152,42,0,161,39,27,255,54,80,254,0,106,209,115,1,103,124,97,0,221,230,98,255,31,231,6,0,178,192,120,254,15,217,203,255,124,158,79,0,112,145,247,0,92,250,48,1,163,181,193,255,37,47,142,254,144,189,165,255,46,146,240,0,6,75,128,0,41,157,200,254,87,121,213,0,1,113,236,0,5,45,250,0,144,12,82,0,31,108,231,0,225,239,119,255,167,7,189,255,187,228,132,255,110,189,34,0,94,44,204,1,162,52,197,0,78,188,241,254,57,20,141,0,244,146,47,1,206,100,51,0,125,107,148,254,27,195,77,0,152,253,90,1,7,143,144,255,51,37,31,0,34,119,38,255,7,197,118,0,153,188,211,0,151,20,116,254,245,65,52,255,180,253,110,1,47,177,209,0,161,99,17,255,118,222,202,0,125,179,252,1,123,54,126,255,145,57,191,0,55,186,121,0,10,243,138,0,205,211,229,255,125,156,241,254,148,156,185,255,227,19,188,255,124,41,32,255,31,34,206,254,17,57,83,0,204,22,37,255,42,96,98,0,119,102,184,1,3,190,28,0,110,82,218,255,200,204,192,255,201,145,118,0,117,204,146,0,132,32,98,1,192,194,121,0,106,161,248,1,237,88,124,0,23,212,26,0,205,171,90,255,248,48,216,1,141,37,230,255,124,203,0,254,158,168,30,255,214,248,21,0,112,187,7,255], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+20480); +/* memory initializer */ allocate([75,133,239,255,74,227,243,255,250,147,70,0,214,120,162,0,167,9,179,255,22,158,18,0,218,77,209,1,97,109,81,255,244,33,179,255,57,52,57,255,65,172,210,255,249,71,209,255,142,169,238,0,158,189,153,255,174,254,103,254,98,33,14,0,141,76,230,255,113,139,52,255,15,58,212,0,168,215,201,255,248,204,215,1,223,68,160,255,57,154,183,254,47,231,121,0,106,166,137,0,81,136,138,0,165,43,51,0,231,139,61,0,57,95,59,254,118,98,25,255,151,63,236,1,94,190,250,255,169,185,114,1,5,250,58,255,75,105,97,1,215,223,134,0,113,99,163,1,128,62,112,0,99,106,147,0,163,195,10,0,33,205,182,0,214,14,174,255,129,38,231,255,53,182,223,0,98,42,159,255,247,13,40,0,188,210,177,1,6,21,0,255,255,61,148,254,137,45,129,255,89,26,116,254,126,38,114,0,251,50,242,254,121,134,128,255,204,249,167,254,165,235,215,0,202,177,243,0,133,141,62,0,240,130,190,1,110,175,255,0,0,20,146,1,37,210,121,255,7,39,130,0,142,250,84,255,141,200,207,0,9,95,104,255,11,244,174,0,134,232,126,0,167,1,123,254,16,193,149,255,232,233,239,1,213,70,112,255,252,116,160,254,242,222,220,255,205,85,227,0,7,185,58,0,118,247,63,1,116,77,177,255,62,245,200,254,63,18,37,255,107,53,232,254,50,221,211,0,162,219,7,254,2,94,43,0,182,62,182,254,160,78,200,255,135,140,170,0,235,184,228,0,175,53,138,254,80,58,77,255,152,201,2,1,63,196,34,0,5,30,184,0,171,176,154,0,121,59,206,0,38,99,39,0,172,80,77,254,0,134,151,0,186,33,241,254,94,253,223,255,44,114,252,0,108,126,57,255,201,40,13,255,39,229,27,255,39,239,23,1,151,121,51,255,153,150,248,0,10,234,174,255,118,246,4,254,200,245,38,0,69,161,242,1,16,178,150,0,113,56,130,0,171,31,105,0,26,88,108,255,49,42,106,0,251,169,66,0,69,93,149,0,20,57,254,0,164,25,111,0,90,188,90,255,204,4,197,0,40,213,50,1,212,96,132,255,88,138,180,254,228,146,124,255,184,246,247,0,65,117,86,255,253,102,210,254,254,121,36,0,137,115,3,255,60,24,216,0,134,18,29,0,59,226,97,0,176,142,71,0,7,209,161,0,189,84,51,254,155,250,72,0,213,84,235,255,45,222,224,0,238,148,143,255,170,42,53,255,78,167,117,0,186,0,40,255,125,177,103,255,69,225,66,0,227,7,88,1,75,172,6,0,169,45,227,1,16,36,70,255,50,2,9,255,139,193,22,0,143,183,231,254,218,69,50,0,236,56,161,1,213,131,42,0,138,145,44,254,136,229,40,255,49,63,35,255,61,145,245,255,101,192,2,254,232,167,113,0,152,104,38,1,121,185,218,0,121,139,211,254,119,240,35,0,65,189,217,254,187,179,162,255,160,187,230,0,62,248,14,255,60,78,97,0,255,247,163,255,225,59,91,255,107,71,58,255,241,47,33,1,50,117,236,0,219,177,63,254,244,90,179,0,35,194,215,255,189,67,50,255,23,135,129,0,104,189,37,255,185,57,194,0,35,62,231,255,220,248,108,0,12,231,178,0,143,80,91,1,131,93,101,255,144,39,2,1,255,250,178,0,5,17,236,254,139,32,46,0,204,188,38,254,245,115,52,255,191,113,73,254,191,108,69,255,22,69,245,1,23,203,178,0,170,99,170,0,65,248,111,0,37,108,153,255,64,37,69,0,0,88,62,254,89,148,144,255,191,68,224,1,241,39,53,0,41,203,237,255,145,126,194,255,221,42,253,255,25,99,151,0,97,253,223,1,74,115,49,255,6,175,72,255,59,176,203,0,124,183,249,1,228,228,99,0,129,12,207,254,168,192,195,255,204,176,16,254,152,234,171,0,77,37,85,255,33,120,135,255,142,194,227,1,31,214,58,0,213,187,125,255,232,46,60,255,190,116,42,254,151,178,19,255,51,62,237,254,204,236,193,0,194,232,60,0,172,34,157,255,189,16,184,254,103,3,95,255,141,233,36,254,41,25,11,255,21,195,166,0,118,245,45,0,67,213,149,255,159,12,18,255,187,164,227,1,160,25,5,0,12,78,195,1,43,197,225,0,48,142,41,254,196,155,60,255,223,199,18,1,145,136,156,0,252,117,169,254,145,226,238,0,239,23,107,0,109,181,188,255,230,112,49,254,73,170,237,255,231,183,227,255,80,220,20,0,194,107,127,1,127,205,101,0,46,52,197,1,210,171,36,255,88,3,90,255,56,151,141,0,96,187,255,255,42,78,200,0,254,70,70,1,244,125,168,0,204,68,138,1,124,215,70,0,102,66,200,254,17,52,228,0,117,220,143,254,203,248,123,0,56,18,174,255,186,151,164,255,51,232,208,1,160,228,43,255,249,29,25,1,68,190,63,0,8,201,188,243,103,230,9,106,59,167,202,132,133,174,103,187,43,248,148,254,114,243,110,60,241,54,29,95,58,245,79,165,209,130,230,173,127,82,14,81,31,108,62,43,140,104,5,155,107,189,65,251,171,217,131,31,121,33,126,19,25,205,224,91,34,174,40,215,152,47,138,66,205,101,239,35,145,68,55,113,47,59,77,236,207,251,192,181,188,219,137,129,165,219,181,233,56,181,72,243,91,194,86,57,25,208,5,182,241,17,241,89,155,79,25,175,164,130,63,146,24,129,109,218,213,94,28,171,66,2,3,163,152,170,7,216,190,111,112,69,1,91,131,18,140,178,228,78,190,133,49,36,226,180,255,213,195,125,12,85,111,137,123,242,116,93,190,114,177,150,22,59,254,177,222,128,53,18,199,37,167,6,220,155,148,38,105,207,116,241,155,193,210,74,241,158,193,105,155,228,227,37,79,56,134,71,190,239,181,213,140,139,198,157,193,15,101,156,172,119,204,161,12,36,117,2,43,89,111,44,233,45,131,228,166,110,170,132,116,74,212,251,65,189,220,169,176,92,181,83,17,131,218,136,249,118,171,223,102,238,82,81,62,152,16,50,180,45,109,198,49,168,63,33,251,152,200,39,3,176,228,14,239,190,199,127,89,191,194,143,168,61,243,11,224,198,37,167,10,147,71,145,167,213,111,130,3,224,81,99,202,6,112,110,14,10,103,41,41,20,252,47,210,70,133,10,183,39,38,201,38,92,56,33,27,46,237,42,196,90,252,109,44,77,223,179,149,157,19,13,56,83,222,99,175,139,84,115,10,101,168,178,119,60,187,10,106,118,230,174,237,71,46,201,194,129,59,53,130,20,133,44,114,146,100,3,241,76,161,232,191,162,1,48,66,188,75,102,26,168,145,151,248,208,112,139,75,194,48,190,84,6,163,81,108,199,24,82,239,214,25,232,146,209,16,169,101,85,36,6,153,214,42,32,113,87,133,53,14,244,184,209,187,50,112,160,106,16,200,208,210,184,22,193,164,25,83,171,65,81,8,108,55,30,153,235,142,223,76,119,72,39,168,72,155,225,181,188,176,52,99,90,201,197,179,12,28,57,203,138,65,227,74,170,216,78,115,227,99,119,79,202,156,91,163,184,178,214,243,111,46,104,252,178,239,93,238,130,143,116,96,47,23,67,111,99,165,120,114,171,240,161,20,120,200,132,236,57,100,26,8,2,199,140,40,30,99,35,250,255,190,144,233,189,130,222,235,108,80,164,21,121,198,178,247,163,249,190,43,83,114,227,242,120,113,198,156,97,38,234,206,62,39,202,7,194,192,33,199,184,134,209,30,235,224,205,214,125,218,234,120,209,110,238,127,79,125,245,186,111,23,114,170,103,240,6,166,152,200,162,197,125,99,10,174,13,249,190,4,152,63,17,27,71,28,19,53,11,113,27,132,125,4,35,245,119,219,40,147,36,199,64,123,171,202,50,188,190,201,21,10,190,158,60,76,13,16,156,196,103,29,67,182,66,62,203,190,212,197,76,42,126,101,252,156,41,127,89,236,250,214,58,171,111,203,95,23,88,71,74,140,25,68,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+30720); + + + + +var tempDoublePtr = Runtime.alignMemory(allocate(12, "i8", ALLOC_STATIC), 8); + +assert(tempDoublePtr % 8 == 0); + +function copyTempFloat(ptr) { // functions, because inlining this code increases code size too much + + HEAP8[tempDoublePtr] = HEAP8[ptr]; + + HEAP8[tempDoublePtr+1] = HEAP8[ptr+1]; + + HEAP8[tempDoublePtr+2] = HEAP8[ptr+2]; + + HEAP8[tempDoublePtr+3] = HEAP8[ptr+3]; + +} + +function copyTempDouble(ptr) { + + HEAP8[tempDoublePtr] = HEAP8[ptr]; + + HEAP8[tempDoublePtr+1] = HEAP8[ptr+1]; + + HEAP8[tempDoublePtr+2] = HEAP8[ptr+2]; + + HEAP8[tempDoublePtr+3] = HEAP8[ptr+3]; + + HEAP8[tempDoublePtr+4] = HEAP8[ptr+4]; + + HEAP8[tempDoublePtr+5] = HEAP8[ptr+5]; + + HEAP8[tempDoublePtr+6] = HEAP8[ptr+6]; + + HEAP8[tempDoublePtr+7] = HEAP8[ptr+7]; + +} + + + + Module["_bitshift64Ashr"] = _bitshift64Ashr; + + + Module["_i64Subtract"] = _i64Subtract; + + + Module["_i64Add"] = _i64Add; + + + Module["_memset"] = _memset; + + + Module["_bitshift64Lshr"] = _bitshift64Lshr; + + + Module["_bitshift64Shl"] = _bitshift64Shl; + + function _abort() { + Module['abort'](); + } + + + Module["_strlen"] = _strlen; + + + function _emscripten_memcpy_big(dest, src, num) { + HEAPU8.set(HEAPU8.subarray(src, src+num), dest); + return dest; + } + Module["_memcpy"] = _memcpy; + + + + var ___errno_state=0;function ___setErrNo(value) { + // For convenient setting and returning of errno. + HEAP32[((___errno_state)>>2)]=value; + return value; + } + + var ERRNO_CODES={EPERM:1,ENOENT:2,ESRCH:3,EINTR:4,EIO:5,ENXIO:6,E2BIG:7,ENOEXEC:8,EBADF:9,ECHILD:10,EAGAIN:11,EWOULDBLOCK:11,ENOMEM:12,EACCES:13,EFAULT:14,ENOTBLK:15,EBUSY:16,EEXIST:17,EXDEV:18,ENODEV:19,ENOTDIR:20,EISDIR:21,EINVAL:22,ENFILE:23,EMFILE:24,ENOTTY:25,ETXTBSY:26,EFBIG:27,ENOSPC:28,ESPIPE:29,EROFS:30,EMLINK:31,EPIPE:32,EDOM:33,ERANGE:34,ENOMSG:42,EIDRM:43,ECHRNG:44,EL2NSYNC:45,EL3HLT:46,EL3RST:47,ELNRNG:48,EUNATCH:49,ENOCSI:50,EL2HLT:51,EDEADLK:35,ENOLCK:37,EBADE:52,EBADR:53,EXFULL:54,ENOANO:55,EBADRQC:56,EBADSLT:57,EDEADLOCK:35,EBFONT:59,ENOSTR:60,ENODATA:61,ETIME:62,ENOSR:63,ENONET:64,ENOPKG:65,EREMOTE:66,ENOLINK:67,EADV:68,ESRMNT:69,ECOMM:70,EPROTO:71,EMULTIHOP:72,EDOTDOT:73,EBADMSG:74,ENOTUNIQ:76,EBADFD:77,EREMCHG:78,ELIBACC:79,ELIBBAD:80,ELIBSCN:81,ELIBMAX:82,ELIBEXEC:83,ENOSYS:38,ENOTEMPTY:39,ENAMETOOLONG:36,ELOOP:40,EOPNOTSUPP:95,EPFNOSUPPORT:96,ECONNRESET:104,ENOBUFS:105,EAFNOSUPPORT:97,EPROTOTYPE:91,ENOTSOCK:88,ENOPROTOOPT:92,ESHUTDOWN:108,ECONNREFUSED:111,EADDRINUSE:98,ECONNABORTED:103,ENETUNREACH:101,ENETDOWN:100,ETIMEDOUT:110,EHOSTDOWN:112,EHOSTUNREACH:113,EINPROGRESS:115,EALREADY:114,EDESTADDRREQ:89,EMSGSIZE:90,EPROTONOSUPPORT:93,ESOCKTNOSUPPORT:94,EADDRNOTAVAIL:99,ENETRESET:102,EISCONN:106,ENOTCONN:107,ETOOMANYREFS:109,EUSERS:87,EDQUOT:122,ESTALE:116,ENOTSUP:95,ENOMEDIUM:123,EILSEQ:84,EOVERFLOW:75,ECANCELED:125,ENOTRECOVERABLE:131,EOWNERDEAD:130,ESTRPIPE:86};function _sysconf(name) { + // long sysconf(int name); + // http://pubs.opengroup.org/onlinepubs/009695399/functions/sysconf.html + switch(name) { + case 30: return PAGE_SIZE; + case 132: + case 133: + case 12: + case 137: + case 138: + case 15: + case 235: + case 16: + case 17: + case 18: + case 19: + case 20: + case 149: + case 13: + case 10: + case 236: + case 153: + case 9: + case 21: + case 22: + case 159: + case 154: + case 14: + case 77: + case 78: + case 139: + case 80: + case 81: + case 79: + case 82: + case 68: + case 67: + case 164: + case 11: + case 29: + case 47: + case 48: + case 95: + case 52: + case 51: + case 46: + return 200809; + case 27: + case 246: + case 127: + case 128: + case 23: + case 24: + case 160: + case 161: + case 181: + case 182: + case 242: + case 183: + case 184: + case 243: + case 244: + case 245: + case 165: + case 178: + case 179: + case 49: + case 50: + case 168: + case 169: + case 175: + case 170: + case 171: + case 172: + case 97: + case 76: + case 32: + case 173: + case 35: + return -1; + case 176: + case 177: + case 7: + case 155: + case 8: + case 157: + case 125: + case 126: + case 92: + case 93: + case 129: + case 130: + case 131: + case 94: + case 91: + return 1; + case 74: + case 60: + case 69: + case 70: + case 4: + return 1024; + case 31: + case 42: + case 72: + return 32; + case 87: + case 26: + case 33: + return 2147483647; + case 34: + case 1: + return 47839; + case 38: + case 36: + return 99; + case 43: + case 37: + return 2048; + case 0: return 2097152; + case 3: return 65536; + case 28: return 32768; + case 44: return 32767; + case 75: return 16384; + case 39: return 1000; + case 89: return 700; + case 71: return 256; + case 40: return 255; + case 2: return 100; + case 180: return 64; + case 25: return 20; + case 5: return 16; + case 6: return 6; + case 73: return 4; + case 84: { + if (typeof navigator === 'object') return navigator['hardwareConcurrency'] || 1; + return 1; + } + } + ___setErrNo(ERRNO_CODES.EINVAL); + return -1; + } + + function _sbrk(bytes) { + // Implement a Linux-like 'memory area' for our 'process'. + // Changes the size of the memory area by |bytes|; returns the + // address of the previous top ('break') of the memory area + // We control the "dynamic" memory - DYNAMIC_BASE to DYNAMICTOP + var self = _sbrk; + if (!self.called) { + DYNAMICTOP = alignMemoryPage(DYNAMICTOP); // make sure we start out aligned + self.called = true; + assert(Runtime.dynamicAlloc); + self.alloc = Runtime.dynamicAlloc; + Runtime.dynamicAlloc = function() { abort('cannot dynamically allocate, sbrk now has control') }; + } + var ret = DYNAMICTOP; + if (bytes != 0) self.alloc(bytes); + return ret; // Previous break location. + } + + + Module["_memmove"] = _memmove; + + function ___errno_location() { + return ___errno_state; + } + + + + + var ERRNO_MESSAGES={0:"Success",1:"Not super-user",2:"No such file or directory",3:"No such process",4:"Interrupted system call",5:"I/O error",6:"No such device or address",7:"Arg list too long",8:"Exec format error",9:"Bad file number",10:"No children",11:"No more processes",12:"Not enough core",13:"Permission denied",14:"Bad address",15:"Block device required",16:"Mount device busy",17:"File exists",18:"Cross-device link",19:"No such device",20:"Not a directory",21:"Is a directory",22:"Invalid argument",23:"Too many open files in system",24:"Too many open files",25:"Not a typewriter",26:"Text file busy",27:"File too large",28:"No space left on device",29:"Illegal seek",30:"Read only file system",31:"Too many links",32:"Broken pipe",33:"Math arg out of domain of func",34:"Math result not representable",35:"File locking deadlock error",36:"File or path name too long",37:"No record locks available",38:"Function not implemented",39:"Directory not empty",40:"Too many symbolic links",42:"No message of desired type",43:"Identifier removed",44:"Channel number out of range",45:"Level 2 not synchronized",46:"Level 3 halted",47:"Level 3 reset",48:"Link number out of range",49:"Protocol driver not attached",50:"No CSI structure available",51:"Level 2 halted",52:"Invalid exchange",53:"Invalid request descriptor",54:"Exchange full",55:"No anode",56:"Invalid request code",57:"Invalid slot",59:"Bad font file fmt",60:"Device not a stream",61:"No data (for no delay io)",62:"Timer expired",63:"Out of streams resources",64:"Machine is not on the network",65:"Package not installed",66:"The object is remote",67:"The link has been severed",68:"Advertise error",69:"Srmount error",70:"Communication error on send",71:"Protocol error",72:"Multihop attempted",73:"Cross mount point (not really error)",74:"Trying to read unreadable message",75:"Value too large for defined data type",76:"Given log. name not unique",77:"f.d. invalid for this operation",78:"Remote address changed",79:"Can access a needed shared lib",80:"Accessing a corrupted shared lib",81:".lib section in a.out corrupted",82:"Attempting to link in too many libs",83:"Attempting to exec a shared library",84:"Illegal byte sequence",86:"Streams pipe error",87:"Too many users",88:"Socket operation on non-socket",89:"Destination address required",90:"Message too long",91:"Protocol wrong type for socket",92:"Protocol not available",93:"Unknown protocol",94:"Socket type not supported",95:"Not supported",96:"Protocol family not supported",97:"Address family not supported by protocol family",98:"Address already in use",99:"Address not available",100:"Network interface is not configured",101:"Network is unreachable",102:"Connection reset by network",103:"Connection aborted",104:"Connection reset by peer",105:"No buffer space available",106:"Socket is already connected",107:"Socket is not connected",108:"Can't send after socket shutdown",109:"Too many references",110:"Connection timed out",111:"Connection refused",112:"Host is down",113:"Host is unreachable",114:"Socket already connected",115:"Connection already in progress",116:"Stale file handle",122:"Quota exceeded",123:"No medium (in tape drive)",125:"Operation canceled",130:"Previous owner died",131:"State not recoverable"}; + + var TTY={ttys:[],init:function () { + // https://github.com/kripken/emscripten/pull/1555 + // if (ENVIRONMENT_IS_NODE) { + // // currently, FS.init does not distinguish if process.stdin is a file or TTY + // // device, it always assumes it's a TTY device. because of this, we're forcing + // // process.stdin to UTF8 encoding to at least make stdin reading compatible + // // with text files until FS.init can be refactored. + // process['stdin']['setEncoding']('utf8'); + // } + },shutdown:function () { + // https://github.com/kripken/emscripten/pull/1555 + // if (ENVIRONMENT_IS_NODE) { + // // inolen: any idea as to why node -e 'process.stdin.read()' wouldn't exit immediately (with process.stdin being a tty)? + // // isaacs: because now it's reading from the stream, you've expressed interest in it, so that read() kicks off a _read() which creates a ReadReq operation + // // inolen: I thought read() in that case was a synchronous operation that just grabbed some amount of buffered data if it exists? + // // isaacs: it is. but it also triggers a _read() call, which calls readStart() on the handle + // // isaacs: do process.stdin.pause() and i'd think it'd probably close the pending call + // process['stdin']['pause'](); + // } + },register:function (dev, ops) { + TTY.ttys[dev] = { input: [], output: [], ops: ops }; + FS.registerDevice(dev, TTY.stream_ops); + },stream_ops:{open:function (stream) { + var tty = TTY.ttys[stream.node.rdev]; + if (!tty) { + throw new FS.ErrnoError(ERRNO_CODES.ENODEV); + } + stream.tty = tty; + stream.seekable = false; + },close:function (stream) { + // flush any pending line data + stream.tty.ops.flush(stream.tty); + },flush:function (stream) { + stream.tty.ops.flush(stream.tty); + },read:function (stream, buffer, offset, length, pos /* ignored */) { + if (!stream.tty || !stream.tty.ops.get_char) { + throw new FS.ErrnoError(ERRNO_CODES.ENXIO); + } + var bytesRead = 0; + for (var i = 0; i < length; i++) { + var result; + try { + result = stream.tty.ops.get_char(stream.tty); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + if (result === undefined && bytesRead === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EAGAIN); + } + if (result === null || result === undefined) break; + bytesRead++; + buffer[offset+i] = result; + } + if (bytesRead) { + stream.node.timestamp = Date.now(); + } + return bytesRead; + },write:function (stream, buffer, offset, length, pos) { + if (!stream.tty || !stream.tty.ops.put_char) { + throw new FS.ErrnoError(ERRNO_CODES.ENXIO); + } + for (var i = 0; i < length; i++) { + try { + stream.tty.ops.put_char(stream.tty, buffer[offset+i]); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + } + if (length) { + stream.node.timestamp = Date.now(); + } + return i; + }},default_tty_ops:{get_char:function (tty) { + if (!tty.input.length) { + var result = null; + if (ENVIRONMENT_IS_NODE) { + result = process['stdin']['read'](); + if (!result) { + if (process['stdin']['_readableState'] && process['stdin']['_readableState']['ended']) { + return null; // EOF + } + return undefined; // no data available + } + } else if (typeof window != 'undefined' && + typeof window.prompt == 'function') { + // Browser. + result = window.prompt('Input: '); // returns null on cancel + if (result !== null) { + result += '\n'; + } + } else if (typeof readline == 'function') { + // Command line. + result = readline(); + if (result !== null) { + result += '\n'; + } + } + if (!result) { + return null; + } + tty.input = intArrayFromString(result, true); + } + return tty.input.shift(); + },flush:function (tty) { + if (tty.output && tty.output.length > 0) { + Module['print'](tty.output.join('')); + tty.output = []; + } + },put_char:function (tty, val) { + if (val === null || val === 10) { + Module['print'](tty.output.join('')); + tty.output = []; + } else { + tty.output.push(TTY.utf8.processCChar(val)); + } + }},default_tty1_ops:{put_char:function (tty, val) { + if (val === null || val === 10) { + Module['printErr'](tty.output.join('')); + tty.output = []; + } else { + tty.output.push(TTY.utf8.processCChar(val)); + } + },flush:function (tty) { + if (tty.output && tty.output.length > 0) { + Module['printErr'](tty.output.join('')); + tty.output = []; + } + }}}; + + var MEMFS={ops_table:null,mount:function (mount) { + return MEMFS.createNode(null, '/', 16384 | 511 /* 0777 */, 0); + },createNode:function (parent, name, mode, dev) { + if (FS.isBlkdev(mode) || FS.isFIFO(mode)) { + // no supported + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + if (!MEMFS.ops_table) { + MEMFS.ops_table = { + dir: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr, + lookup: MEMFS.node_ops.lookup, + mknod: MEMFS.node_ops.mknod, + rename: MEMFS.node_ops.rename, + unlink: MEMFS.node_ops.unlink, + rmdir: MEMFS.node_ops.rmdir, + readdir: MEMFS.node_ops.readdir, + symlink: MEMFS.node_ops.symlink + }, + stream: { + llseek: MEMFS.stream_ops.llseek + } + }, + file: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr + }, + stream: { + llseek: MEMFS.stream_ops.llseek, + read: MEMFS.stream_ops.read, + write: MEMFS.stream_ops.write, + allocate: MEMFS.stream_ops.allocate, + mmap: MEMFS.stream_ops.mmap + } + }, + link: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr, + readlink: MEMFS.node_ops.readlink + }, + stream: {} + }, + chrdev: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr + }, + stream: FS.chrdev_stream_ops + } + }; + } + var node = FS.createNode(parent, name, mode, dev); + if (FS.isDir(node.mode)) { + node.node_ops = MEMFS.ops_table.dir.node; + node.stream_ops = MEMFS.ops_table.dir.stream; + node.contents = {}; + } else if (FS.isFile(node.mode)) { + node.node_ops = MEMFS.ops_table.file.node; + node.stream_ops = MEMFS.ops_table.file.stream; + node.usedBytes = 0; // The actual number of bytes used in the typed array, as opposed to contents.buffer.byteLength which gives the whole capacity. + // When the byte data of the file is populated, this will point to either a typed array, or a normal JS array. Typed arrays are preferred + // for performance, and used by default. However, typed arrays are not resizable like normal JS arrays are, so there is a small disk size + // penalty involved for appending file writes that continuously grow a file similar to std::vector capacity vs used -scheme. + node.contents = null; + } else if (FS.isLink(node.mode)) { + node.node_ops = MEMFS.ops_table.link.node; + node.stream_ops = MEMFS.ops_table.link.stream; + } else if (FS.isChrdev(node.mode)) { + node.node_ops = MEMFS.ops_table.chrdev.node; + node.stream_ops = MEMFS.ops_table.chrdev.stream; + } + node.timestamp = Date.now(); + // add the new node to the parent + if (parent) { + parent.contents[name] = node; + } + return node; + },getFileDataAsRegularArray:function (node) { + if (node.contents && node.contents.subarray) { + var arr = []; + for (var i = 0; i < node.usedBytes; ++i) arr.push(node.contents[i]); + return arr; // Returns a copy of the original data. + } + return node.contents; // No-op, the file contents are already in a JS array. Return as-is. + },getFileDataAsTypedArray:function (node) { + if (!node.contents) return new Uint8Array; + if (node.contents.subarray) return node.contents.subarray(0, node.usedBytes); // Make sure to not return excess unused bytes. + return new Uint8Array(node.contents); + },expandFileStorage:function (node, newCapacity) { + + // If we are asked to expand the size of a file that already exists, revert to using a standard JS array to store the file + // instead of a typed array. This makes resizing the array more flexible because we can just .push() elements at the back to + // increase the size. + if (node.contents && node.contents.subarray && newCapacity > node.contents.length) { + node.contents = MEMFS.getFileDataAsRegularArray(node); + node.usedBytes = node.contents.length; // We might be writing to a lazy-loaded file which had overridden this property, so force-reset it. + } + + if (!node.contents || node.contents.subarray) { // Keep using a typed array if creating a new storage, or if old one was a typed array as well. + var prevCapacity = node.contents ? node.contents.buffer.byteLength : 0; + if (prevCapacity >= newCapacity) return; // No need to expand, the storage was already large enough. + // Don't expand strictly to the given requested limit if it's only a very small increase, but instead geometrically grow capacity. + // For small filesizes (<1MB), perform size*2 geometric increase, but for large sizes, do a much more conservative size*1.125 increase to + // avoid overshooting the allocation cap by a very large margin. + var CAPACITY_DOUBLING_MAX = 1024 * 1024; + newCapacity = Math.max(newCapacity, (prevCapacity * (prevCapacity < CAPACITY_DOUBLING_MAX ? 2.0 : 1.125)) | 0); + if (prevCapacity != 0) newCapacity = Math.max(newCapacity, 256); // At minimum allocate 256b for each file when expanding. + var oldContents = node.contents; + node.contents = new Uint8Array(newCapacity); // Allocate new storage. + if (node.usedBytes > 0) node.contents.set(oldContents.subarray(0, node.usedBytes), 0); // Copy old data over to the new storage. + return; + } + // Not using a typed array to back the file storage. Use a standard JS array instead. + if (!node.contents && newCapacity > 0) node.contents = []; + while (node.contents.length < newCapacity) node.contents.push(0); + },resizeFileStorage:function (node, newSize) { + if (node.usedBytes == newSize) return; + if (newSize == 0) { + node.contents = null; // Fully decommit when requesting a resize to zero. + node.usedBytes = 0; + return; + } + + if (!node.contents || node.contents.subarray) { // Resize a typed array if that is being used as the backing store. + var oldContents = node.contents; + node.contents = new Uint8Array(new ArrayBuffer(newSize)); // Allocate new storage. + if (oldContents) { + node.contents.set(oldContents.subarray(0, Math.min(newSize, node.usedBytes))); // Copy old data over to the new storage. + } + node.usedBytes = newSize; + return; + } + // Backing with a JS array. + if (!node.contents) node.contents = []; + if (node.contents.length > newSize) node.contents.length = newSize; + else while (node.contents.length < newSize) node.contents.push(0); + node.usedBytes = newSize; + },node_ops:{getattr:function (node) { + var attr = {}; + // device numbers reuse inode numbers. + attr.dev = FS.isChrdev(node.mode) ? node.id : 1; + attr.ino = node.id; + attr.mode = node.mode; + attr.nlink = 1; + attr.uid = 0; + attr.gid = 0; + attr.rdev = node.rdev; + if (FS.isDir(node.mode)) { + attr.size = 4096; + } else if (FS.isFile(node.mode)) { + attr.size = node.usedBytes; + } else if (FS.isLink(node.mode)) { + attr.size = node.link.length; + } else { + attr.size = 0; + } + attr.atime = new Date(node.timestamp); + attr.mtime = new Date(node.timestamp); + attr.ctime = new Date(node.timestamp); + // NOTE: In our implementation, st_blocks = Math.ceil(st_size/st_blksize), + // but this is not required by the standard. + attr.blksize = 4096; + attr.blocks = Math.ceil(attr.size / attr.blksize); + return attr; + },setattr:function (node, attr) { + if (attr.mode !== undefined) { + node.mode = attr.mode; + } + if (attr.timestamp !== undefined) { + node.timestamp = attr.timestamp; + } + if (attr.size !== undefined) { + MEMFS.resizeFileStorage(node, attr.size); + } + },lookup:function (parent, name) { + throw FS.genericErrors[ERRNO_CODES.ENOENT]; + },mknod:function (parent, name, mode, dev) { + return MEMFS.createNode(parent, name, mode, dev); + },rename:function (old_node, new_dir, new_name) { + // if we're overwriting a directory at new_name, make sure it's empty. + if (FS.isDir(old_node.mode)) { + var new_node; + try { + new_node = FS.lookupNode(new_dir, new_name); + } catch (e) { + } + if (new_node) { + for (var i in new_node.contents) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); + } + } + } + // do the internal rewiring + delete old_node.parent.contents[old_node.name]; + old_node.name = new_name; + new_dir.contents[new_name] = old_node; + old_node.parent = new_dir; + },unlink:function (parent, name) { + delete parent.contents[name]; + },rmdir:function (parent, name) { + var node = FS.lookupNode(parent, name); + for (var i in node.contents) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); + } + delete parent.contents[name]; + },readdir:function (node) { + var entries = ['.', '..'] + for (var key in node.contents) { + if (!node.contents.hasOwnProperty(key)) { + continue; + } + entries.push(key); + } + return entries; + },symlink:function (parent, newname, oldpath) { + var node = MEMFS.createNode(parent, newname, 511 /* 0777 */ | 40960, 0); + node.link = oldpath; + return node; + },readlink:function (node) { + if (!FS.isLink(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + return node.link; + }},stream_ops:{read:function (stream, buffer, offset, length, position) { + var contents = stream.node.contents; + if (position >= stream.node.usedBytes) return 0; + var size = Math.min(stream.node.usedBytes - position, length); + assert(size >= 0); + if (size > 8 && contents.subarray) { // non-trivial, and typed array + buffer.set(contents.subarray(position, position + size), offset); + } else + { + for (var i = 0; i < size; i++) buffer[offset + i] = contents[position + i]; + } + return size; + },write:function (stream, buffer, offset, length, position, canOwn) { + if (!length) return 0; + var node = stream.node; + node.timestamp = Date.now(); + + if (buffer.subarray && (!node.contents || node.contents.subarray)) { // This write is from a typed array to a typed array? + if (canOwn) { // Can we just reuse the buffer we are given? + node.contents = buffer.subarray(offset, offset + length); + node.usedBytes = length; + return length; + } else if (node.usedBytes === 0 && position === 0) { // If this is a simple first write to an empty file, do a fast set since we don't need to care about old data. + node.contents = new Uint8Array(buffer.subarray(offset, offset + length)); + node.usedBytes = length; + return length; + } else if (position + length <= node.usedBytes) { // Writing to an already allocated and used subrange of the file? + node.contents.set(buffer.subarray(offset, offset + length), position); + return length; + } + } + // Appending to an existing file and we need to reallocate, or source data did not come as a typed array. + MEMFS.expandFileStorage(node, position+length); + if (node.contents.subarray && buffer.subarray) node.contents.set(buffer.subarray(offset, offset + length), position); // Use typed array write if available. + else + for (var i = 0; i < length; i++) { + node.contents[position + i] = buffer[offset + i]; // Or fall back to manual write if not. + } + node.usedBytes = Math.max(node.usedBytes, position+length); + return length; + },llseek:function (stream, offset, whence) { + var position = offset; + if (whence === 1) { // SEEK_CUR. + position += stream.position; + } else if (whence === 2) { // SEEK_END. + if (FS.isFile(stream.node.mode)) { + position += stream.node.usedBytes; + } + } + if (position < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + return position; + },allocate:function (stream, offset, length) { + MEMFS.expandFileStorage(stream.node, offset + length); + stream.node.usedBytes = Math.max(stream.node.usedBytes, offset + length); + },mmap:function (stream, buffer, offset, length, position, prot, flags) { + if (!FS.isFile(stream.node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.ENODEV); + } + var ptr; + var allocated; + var contents = stream.node.contents; + // Only make a new copy when MAP_PRIVATE is specified. + if ( !(flags & 2) && + (contents.buffer === buffer || contents.buffer === buffer.buffer) ) { + // We can't emulate MAP_SHARED when the file is not backed by the buffer + // we're mapping to (e.g. the HEAP buffer). + allocated = false; + ptr = contents.byteOffset; + } else { + // Try to avoid unnecessary slices. + if (position > 0 || position + length < stream.node.usedBytes) { + if (contents.subarray) { + contents = contents.subarray(position, position + length); + } else { + contents = Array.prototype.slice.call(contents, position, position + length); + } + } + allocated = true; + ptr = _malloc(length); + if (!ptr) { + throw new FS.ErrnoError(ERRNO_CODES.ENOMEM); + } + buffer.set(contents, ptr); + } + return { ptr: ptr, allocated: allocated }; + }}}; + + var IDBFS={dbs:{},indexedDB:function () { + if (typeof indexedDB !== 'undefined') return indexedDB; + var ret = null; + if (typeof window === 'object') ret = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; + assert(ret, 'IDBFS used, but indexedDB not supported'); + return ret; + },DB_VERSION:21,DB_STORE_NAME:"FILE_DATA",mount:function (mount) { + // reuse all of the core MEMFS functionality + return MEMFS.mount.apply(null, arguments); + },syncfs:function (mount, populate, callback) { + IDBFS.getLocalSet(mount, function(err, local) { + if (err) return callback(err); + + IDBFS.getRemoteSet(mount, function(err, remote) { + if (err) return callback(err); + + var src = populate ? remote : local; + var dst = populate ? local : remote; + + IDBFS.reconcile(src, dst, callback); + }); + }); + },getDB:function (name, callback) { + // check the cache first + var db = IDBFS.dbs[name]; + if (db) { + return callback(null, db); + } + + var req; + try { + req = IDBFS.indexedDB().open(name, IDBFS.DB_VERSION); + } catch (e) { + return callback(e); + } + req.onupgradeneeded = function(e) { + var db = e.target.result; + var transaction = e.target.transaction; + + var fileStore; + + if (db.objectStoreNames.contains(IDBFS.DB_STORE_NAME)) { + fileStore = transaction.objectStore(IDBFS.DB_STORE_NAME); + } else { + fileStore = db.createObjectStore(IDBFS.DB_STORE_NAME); + } + + fileStore.createIndex('timestamp', 'timestamp', { unique: false }); + }; + req.onsuccess = function() { + db = req.result; + + // add to the cache + IDBFS.dbs[name] = db; + callback(null, db); + }; + req.onerror = function() { + callback(this.error); + }; + },getLocalSet:function (mount, callback) { + var entries = {}; + + function isRealDir(p) { + return p !== '.' && p !== '..'; + }; + function toAbsolute(root) { + return function(p) { + return PATH.join2(root, p); + } + }; + + var check = FS.readdir(mount.mountpoint).filter(isRealDir).map(toAbsolute(mount.mountpoint)); + + while (check.length) { + var path = check.pop(); + var stat; + + try { + stat = FS.stat(path); + } catch (e) { + return callback(e); + } + + if (FS.isDir(stat.mode)) { + check.push.apply(check, FS.readdir(path).filter(isRealDir).map(toAbsolute(path))); + } + + entries[path] = { timestamp: stat.mtime }; + } + + return callback(null, { type: 'local', entries: entries }); + },getRemoteSet:function (mount, callback) { + var entries = {}; + + IDBFS.getDB(mount.mountpoint, function(err, db) { + if (err) return callback(err); + + var transaction = db.transaction([IDBFS.DB_STORE_NAME], 'readonly'); + transaction.onerror = function() { callback(this.error); }; + + var store = transaction.objectStore(IDBFS.DB_STORE_NAME); + var index = store.index('timestamp'); + + index.openKeyCursor().onsuccess = function(event) { + var cursor = event.target.result; + + if (!cursor) { + return callback(null, { type: 'remote', db: db, entries: entries }); + } + + entries[cursor.primaryKey] = { timestamp: cursor.key }; + + cursor.continue(); + }; + }); + },loadLocalEntry:function (path, callback) { + var stat, node; + + try { + var lookup = FS.lookupPath(path); + node = lookup.node; + stat = FS.stat(path); + } catch (e) { + return callback(e); + } + + if (FS.isDir(stat.mode)) { + return callback(null, { timestamp: stat.mtime, mode: stat.mode }); + } else if (FS.isFile(stat.mode)) { + // Performance consideration: storing a normal JavaScript array to a IndexedDB is much slower than storing a typed array. + // Therefore always convert the file contents to a typed array first before writing the data to IndexedDB. + node.contents = MEMFS.getFileDataAsTypedArray(node); + return callback(null, { timestamp: stat.mtime, mode: stat.mode, contents: node.contents }); + } else { + return callback(new Error('node type not supported')); + } + },storeLocalEntry:function (path, entry, callback) { + try { + if (FS.isDir(entry.mode)) { + FS.mkdir(path, entry.mode); + } else if (FS.isFile(entry.mode)) { + FS.writeFile(path, entry.contents, { encoding: 'binary', canOwn: true }); + } else { + return callback(new Error('node type not supported')); + } + + FS.chmod(path, entry.mode); + FS.utime(path, entry.timestamp, entry.timestamp); + } catch (e) { + return callback(e); + } + + callback(null); + },removeLocalEntry:function (path, callback) { + try { + var lookup = FS.lookupPath(path); + var stat = FS.stat(path); + + if (FS.isDir(stat.mode)) { + FS.rmdir(path); + } else if (FS.isFile(stat.mode)) { + FS.unlink(path); + } + } catch (e) { + return callback(e); + } + + callback(null); + },loadRemoteEntry:function (store, path, callback) { + var req = store.get(path); + req.onsuccess = function(event) { callback(null, event.target.result); }; + req.onerror = function() { callback(this.error); }; + },storeRemoteEntry:function (store, path, entry, callback) { + var req = store.put(entry, path); + req.onsuccess = function() { callback(null); }; + req.onerror = function() { callback(this.error); }; + },removeRemoteEntry:function (store, path, callback) { + var req = store.delete(path); + req.onsuccess = function() { callback(null); }; + req.onerror = function() { callback(this.error); }; + },reconcile:function (src, dst, callback) { + var total = 0; + + var create = []; + Object.keys(src.entries).forEach(function (key) { + var e = src.entries[key]; + var e2 = dst.entries[key]; + if (!e2 || e.timestamp > e2.timestamp) { + create.push(key); + total++; + } + }); + + var remove = []; + Object.keys(dst.entries).forEach(function (key) { + var e = dst.entries[key]; + var e2 = src.entries[key]; + if (!e2) { + remove.push(key); + total++; + } + }); + + if (!total) { + return callback(null); + } + + var errored = false; + var completed = 0; + var db = src.type === 'remote' ? src.db : dst.db; + var transaction = db.transaction([IDBFS.DB_STORE_NAME], 'readwrite'); + var store = transaction.objectStore(IDBFS.DB_STORE_NAME); + + function done(err) { + if (err) { + if (!done.errored) { + done.errored = true; + return callback(err); + } + return; + } + if (++completed >= total) { + return callback(null); + } + }; + + transaction.onerror = function() { done(this.error); }; + + // sort paths in ascending order so directory entries are created + // before the files inside them + create.sort().forEach(function (path) { + if (dst.type === 'local') { + IDBFS.loadRemoteEntry(store, path, function (err, entry) { + if (err) return done(err); + IDBFS.storeLocalEntry(path, entry, done); + }); + } else { + IDBFS.loadLocalEntry(path, function (err, entry) { + if (err) return done(err); + IDBFS.storeRemoteEntry(store, path, entry, done); + }); + } + }); + + // sort paths in descending order so files are deleted before their + // parent directories + remove.sort().reverse().forEach(function(path) { + if (dst.type === 'local') { + IDBFS.removeLocalEntry(path, done); + } else { + IDBFS.removeRemoteEntry(store, path, done); + } + }); + }}; + + var NODEFS={isWindows:false,staticInit:function () { + NODEFS.isWindows = !!process.platform.match(/^win/); + },mount:function (mount) { + assert(ENVIRONMENT_IS_NODE); + return NODEFS.createNode(null, '/', NODEFS.getMode(mount.opts.root), 0); + },createNode:function (parent, name, mode, dev) { + if (!FS.isDir(mode) && !FS.isFile(mode) && !FS.isLink(mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + var node = FS.createNode(parent, name, mode); + node.node_ops = NODEFS.node_ops; + node.stream_ops = NODEFS.stream_ops; + return node; + },getMode:function (path) { + var stat; + try { + stat = fs.lstatSync(path); + if (NODEFS.isWindows) { + // On Windows, directories return permission bits 'rw-rw-rw-', even though they have 'rwxrwxrwx', so + // propagate write bits to execute bits. + stat.mode = stat.mode | ((stat.mode & 146) >> 1); + } + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + return stat.mode; + },realPath:function (node) { + var parts = []; + while (node.parent !== node) { + parts.push(node.name); + node = node.parent; + } + parts.push(node.mount.opts.root); + parts.reverse(); + return PATH.join.apply(null, parts); + },flagsToPermissionStringMap:{0:"r",1:"r+",2:"r+",64:"r",65:"r+",66:"r+",129:"rx+",193:"rx+",514:"w+",577:"w",578:"w+",705:"wx",706:"wx+",1024:"a",1025:"a",1026:"a+",1089:"a",1090:"a+",1153:"ax",1154:"ax+",1217:"ax",1218:"ax+",4096:"rs",4098:"rs+"},flagsToPermissionString:function (flags) { + if (flags in NODEFS.flagsToPermissionStringMap) { + return NODEFS.flagsToPermissionStringMap[flags]; + } else { + return flags; + } + },node_ops:{getattr:function (node) { + var path = NODEFS.realPath(node); + var stat; + try { + stat = fs.lstatSync(path); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + // node.js v0.10.20 doesn't report blksize and blocks on Windows. Fake them with default blksize of 4096. + // See http://support.microsoft.com/kb/140365 + if (NODEFS.isWindows && !stat.blksize) { + stat.blksize = 4096; + } + if (NODEFS.isWindows && !stat.blocks) { + stat.blocks = (stat.size+stat.blksize-1)/stat.blksize|0; + } + return { + dev: stat.dev, + ino: stat.ino, + mode: stat.mode, + nlink: stat.nlink, + uid: stat.uid, + gid: stat.gid, + rdev: stat.rdev, + size: stat.size, + atime: stat.atime, + mtime: stat.mtime, + ctime: stat.ctime, + blksize: stat.blksize, + blocks: stat.blocks + }; + },setattr:function (node, attr) { + var path = NODEFS.realPath(node); + try { + if (attr.mode !== undefined) { + fs.chmodSync(path, attr.mode); + // update the common node structure mode as well + node.mode = attr.mode; + } + if (attr.timestamp !== undefined) { + var date = new Date(attr.timestamp); + fs.utimesSync(path, date, date); + } + if (attr.size !== undefined) { + fs.truncateSync(path, attr.size); + } + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },lookup:function (parent, name) { + var path = PATH.join2(NODEFS.realPath(parent), name); + var mode = NODEFS.getMode(path); + return NODEFS.createNode(parent, name, mode); + },mknod:function (parent, name, mode, dev) { + var node = NODEFS.createNode(parent, name, mode, dev); + // create the backing node for this in the fs root as well + var path = NODEFS.realPath(node); + try { + if (FS.isDir(node.mode)) { + fs.mkdirSync(path, node.mode); + } else { + fs.writeFileSync(path, '', { mode: node.mode }); + } + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + return node; + },rename:function (oldNode, newDir, newName) { + var oldPath = NODEFS.realPath(oldNode); + var newPath = PATH.join2(NODEFS.realPath(newDir), newName); + try { + fs.renameSync(oldPath, newPath); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },unlink:function (parent, name) { + var path = PATH.join2(NODEFS.realPath(parent), name); + try { + fs.unlinkSync(path); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },rmdir:function (parent, name) { + var path = PATH.join2(NODEFS.realPath(parent), name); + try { + fs.rmdirSync(path); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },readdir:function (node) { + var path = NODEFS.realPath(node); + try { + return fs.readdirSync(path); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },symlink:function (parent, newName, oldPath) { + var newPath = PATH.join2(NODEFS.realPath(parent), newName); + try { + fs.symlinkSync(oldPath, newPath); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },readlink:function (node) { + var path = NODEFS.realPath(node); + try { + return fs.readlinkSync(path); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + }},stream_ops:{open:function (stream) { + var path = NODEFS.realPath(stream.node); + try { + if (FS.isFile(stream.node.mode)) { + stream.nfd = fs.openSync(path, NODEFS.flagsToPermissionString(stream.flags)); + } + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },close:function (stream) { + try { + if (FS.isFile(stream.node.mode) && stream.nfd) { + fs.closeSync(stream.nfd); + } + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },read:function (stream, buffer, offset, length, position) { + if (length === 0) return 0; // node errors on 0 length reads + // FIXME this is terrible. + var nbuffer = new Buffer(length); + var res; + try { + res = fs.readSync(stream.nfd, nbuffer, 0, length, position); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + if (res > 0) { + for (var i = 0; i < res; i++) { + buffer[offset + i] = nbuffer[i]; + } + } + return res; + },write:function (stream, buffer, offset, length, position) { + // FIXME this is terrible. + var nbuffer = new Buffer(buffer.subarray(offset, offset + length)); + var res; + try { + res = fs.writeSync(stream.nfd, nbuffer, 0, length, position); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + return res; + },llseek:function (stream, offset, whence) { + var position = offset; + if (whence === 1) { // SEEK_CUR. + position += stream.position; + } else if (whence === 2) { // SEEK_END. + if (FS.isFile(stream.node.mode)) { + try { + var stat = fs.fstatSync(stream.nfd); + position += stat.size; + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + } + } + + if (position < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + + return position; + }}}; + + var _stdin=allocate(1, "i32*", ALLOC_STATIC); + + var _stdout=allocate(1, "i32*", ALLOC_STATIC); + + var _stderr=allocate(1, "i32*", ALLOC_STATIC); + + function _fflush(stream) { + // int fflush(FILE *stream); + // http://pubs.opengroup.org/onlinepubs/000095399/functions/fflush.html + + /* + // Disabled, see https://github.com/kripken/emscripten/issues/2770 + stream = FS.getStreamFromPtr(stream); + if (stream.stream_ops.flush) { + stream.stream_ops.flush(stream); + } + */ + }var FS={root:null,mounts:[],devices:[null],streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,trackingDelegate:{},tracking:{openFlags:{READ:1,WRITE:2}},ErrnoError:null,genericErrors:{},handleFSError:function (e) { + if (!(e instanceof FS.ErrnoError)) throw e + ' : ' + stackTrace(); + return ___setErrNo(e.errno); + },lookupPath:function (path, opts) { + path = PATH.resolve(FS.cwd(), path); + opts = opts || {}; + + if (!path) return { path: '', node: null }; + + var defaults = { + follow_mount: true, + recurse_count: 0 + }; + for (var key in defaults) { + if (opts[key] === undefined) { + opts[key] = defaults[key]; + } + } + + if (opts.recurse_count > 8) { // max recursive lookup of 8 + throw new FS.ErrnoError(ERRNO_CODES.ELOOP); + } + + // split the path + var parts = PATH.normalizeArray(path.split('/').filter(function(p) { + return !!p; + }), false); + + // start at the root + var current = FS.root; + var current_path = '/'; + + for (var i = 0; i < parts.length; i++) { + var islast = (i === parts.length-1); + if (islast && opts.parent) { + // stop resolving + break; + } + + current = FS.lookupNode(current, parts[i]); + current_path = PATH.join2(current_path, parts[i]); + + // jump to the mount's root node if this is a mountpoint + if (FS.isMountpoint(current)) { + if (!islast || (islast && opts.follow_mount)) { + current = current.mounted.root; + } + } + + // by default, lookupPath will not follow a symlink if it is the final path component. + // setting opts.follow = true will override this behavior. + if (!islast || opts.follow) { + var count = 0; + while (FS.isLink(current.mode)) { + var link = FS.readlink(current_path); + current_path = PATH.resolve(PATH.dirname(current_path), link); + + var lookup = FS.lookupPath(current_path, { recurse_count: opts.recurse_count }); + current = lookup.node; + + if (count++ > 40) { // limit max consecutive symlinks to 40 (SYMLOOP_MAX). + throw new FS.ErrnoError(ERRNO_CODES.ELOOP); + } + } + } + } + + return { path: current_path, node: current }; + },getPath:function (node) { + var path; + while (true) { + if (FS.isRoot(node)) { + var mount = node.mount.mountpoint; + if (!path) return mount; + return mount[mount.length-1] !== '/' ? mount + '/' + path : mount + path; + } + path = path ? node.name + '/' + path : node.name; + node = node.parent; + } + },hashName:function (parentid, name) { + var hash = 0; + + + for (var i = 0; i < name.length; i++) { + hash = ((hash << 5) - hash + name.charCodeAt(i)) | 0; + } + return ((parentid + hash) >>> 0) % FS.nameTable.length; + },hashAddNode:function (node) { + var hash = FS.hashName(node.parent.id, node.name); + node.name_next = FS.nameTable[hash]; + FS.nameTable[hash] = node; + },hashRemoveNode:function (node) { + var hash = FS.hashName(node.parent.id, node.name); + if (FS.nameTable[hash] === node) { + FS.nameTable[hash] = node.name_next; + } else { + var current = FS.nameTable[hash]; + while (current) { + if (current.name_next === node) { + current.name_next = node.name_next; + break; + } + current = current.name_next; + } + } + },lookupNode:function (parent, name) { + var err = FS.mayLookup(parent); + if (err) { + throw new FS.ErrnoError(err, parent); + } + var hash = FS.hashName(parent.id, name); + for (var node = FS.nameTable[hash]; node; node = node.name_next) { + var nodeName = node.name; + if (node.parent.id === parent.id && nodeName === name) { + return node; + } + } + // if we failed to find it in the cache, call into the VFS + return FS.lookup(parent, name); + },createNode:function (parent, name, mode, rdev) { + if (!FS.FSNode) { + FS.FSNode = function(parent, name, mode, rdev) { + if (!parent) { + parent = this; // root node sets parent to itself + } + this.parent = parent; + this.mount = parent.mount; + this.mounted = null; + this.id = FS.nextInode++; + this.name = name; + this.mode = mode; + this.node_ops = {}; + this.stream_ops = {}; + this.rdev = rdev; + }; + + FS.FSNode.prototype = {}; + + // compatibility + var readMode = 292 | 73; + var writeMode = 146; + + // NOTE we must use Object.defineProperties instead of individual calls to + // Object.defineProperty in order to make closure compiler happy + Object.defineProperties(FS.FSNode.prototype, { + read: { + get: function() { return (this.mode & readMode) === readMode; }, + set: function(val) { val ? this.mode |= readMode : this.mode &= ~readMode; } + }, + write: { + get: function() { return (this.mode & writeMode) === writeMode; }, + set: function(val) { val ? this.mode |= writeMode : this.mode &= ~writeMode; } + }, + isFolder: { + get: function() { return FS.isDir(this.mode); } + }, + isDevice: { + get: function() { return FS.isChrdev(this.mode); } + } + }); + } + + var node = new FS.FSNode(parent, name, mode, rdev); + + FS.hashAddNode(node); + + return node; + },destroyNode:function (node) { + FS.hashRemoveNode(node); + },isRoot:function (node) { + return node === node.parent; + },isMountpoint:function (node) { + return !!node.mounted; + },isFile:function (mode) { + return (mode & 61440) === 32768; + },isDir:function (mode) { + return (mode & 61440) === 16384; + },isLink:function (mode) { + return (mode & 61440) === 40960; + },isChrdev:function (mode) { + return (mode & 61440) === 8192; + },isBlkdev:function (mode) { + return (mode & 61440) === 24576; + },isFIFO:function (mode) { + return (mode & 61440) === 4096; + },isSocket:function (mode) { + return (mode & 49152) === 49152; + },flagModes:{"r":0,"rs":1052672,"r+":2,"w":577,"wx":705,"xw":705,"w+":578,"wx+":706,"xw+":706,"a":1089,"ax":1217,"xa":1217,"a+":1090,"ax+":1218,"xa+":1218},modeStringToFlags:function (str) { + var flags = FS.flagModes[str]; + if (typeof flags === 'undefined') { + throw new Error('Unknown file open mode: ' + str); + } + return flags; + },flagsToPermissionString:function (flag) { + var accmode = flag & 2097155; + var perms = ['r', 'w', 'rw'][accmode]; + if ((flag & 512)) { + perms += 'w'; + } + return perms; + },nodePermissions:function (node, perms) { + if (FS.ignorePermissions) { + return 0; + } + // return 0 if any user, group or owner bits are set. + if (perms.indexOf('r') !== -1 && !(node.mode & 292)) { + return ERRNO_CODES.EACCES; + } else if (perms.indexOf('w') !== -1 && !(node.mode & 146)) { + return ERRNO_CODES.EACCES; + } else if (perms.indexOf('x') !== -1 && !(node.mode & 73)) { + return ERRNO_CODES.EACCES; + } + return 0; + },mayLookup:function (dir) { + var err = FS.nodePermissions(dir, 'x'); + if (err) return err; + if (!dir.node_ops.lookup) return ERRNO_CODES.EACCES; + return 0; + },mayCreate:function (dir, name) { + try { + var node = FS.lookupNode(dir, name); + return ERRNO_CODES.EEXIST; + } catch (e) { + } + return FS.nodePermissions(dir, 'wx'); + },mayDelete:function (dir, name, isdir) { + var node; + try { + node = FS.lookupNode(dir, name); + } catch (e) { + return e.errno; + } + var err = FS.nodePermissions(dir, 'wx'); + if (err) { + return err; + } + if (isdir) { + if (!FS.isDir(node.mode)) { + return ERRNO_CODES.ENOTDIR; + } + if (FS.isRoot(node) || FS.getPath(node) === FS.cwd()) { + return ERRNO_CODES.EBUSY; + } + } else { + if (FS.isDir(node.mode)) { + return ERRNO_CODES.EISDIR; + } + } + return 0; + },mayOpen:function (node, flags) { + if (!node) { + return ERRNO_CODES.ENOENT; + } + if (FS.isLink(node.mode)) { + return ERRNO_CODES.ELOOP; + } else if (FS.isDir(node.mode)) { + if ((flags & 2097155) !== 0 || // opening for write + (flags & 512)) { + return ERRNO_CODES.EISDIR; + } + } + return FS.nodePermissions(node, FS.flagsToPermissionString(flags)); + },MAX_OPEN_FDS:4096,nextfd:function (fd_start, fd_end) { + fd_start = fd_start || 0; + fd_end = fd_end || FS.MAX_OPEN_FDS; + for (var fd = fd_start; fd <= fd_end; fd++) { + if (!FS.streams[fd]) { + return fd; + } + } + throw new FS.ErrnoError(ERRNO_CODES.EMFILE); + },getStream:function (fd) { + return FS.streams[fd]; + },createStream:function (stream, fd_start, fd_end) { + if (!FS.FSStream) { + FS.FSStream = function(){}; + FS.FSStream.prototype = {}; + // compatibility + Object.defineProperties(FS.FSStream.prototype, { + object: { + get: function() { return this.node; }, + set: function(val) { this.node = val; } + }, + isRead: { + get: function() { return (this.flags & 2097155) !== 1; } + }, + isWrite: { + get: function() { return (this.flags & 2097155) !== 0; } + }, + isAppend: { + get: function() { return (this.flags & 1024); } + } + }); + } + // clone it, so we can return an instance of FSStream + var newStream = new FS.FSStream(); + for (var p in stream) { + newStream[p] = stream[p]; + } + stream = newStream; + var fd = FS.nextfd(fd_start, fd_end); + stream.fd = fd; + FS.streams[fd] = stream; + return stream; + },closeStream:function (fd) { + FS.streams[fd] = null; + },getStreamFromPtr:function (ptr) { + return FS.streams[ptr - 1]; + },getPtrForStream:function (stream) { + return stream ? stream.fd + 1 : 0; + },chrdev_stream_ops:{open:function (stream) { + var device = FS.getDevice(stream.node.rdev); + // override node's stream ops with the device's + stream.stream_ops = device.stream_ops; + // forward the open call + if (stream.stream_ops.open) { + stream.stream_ops.open(stream); + } + },llseek:function () { + throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); + }},major:function (dev) { + return ((dev) >> 8); + },minor:function (dev) { + return ((dev) & 0xff); + },makedev:function (ma, mi) { + return ((ma) << 8 | (mi)); + },registerDevice:function (dev, ops) { + FS.devices[dev] = { stream_ops: ops }; + },getDevice:function (dev) { + return FS.devices[dev]; + },getMounts:function (mount) { + var mounts = []; + var check = [mount]; + + while (check.length) { + var m = check.pop(); + + mounts.push(m); + + check.push.apply(check, m.mounts); + } + + return mounts; + },syncfs:function (populate, callback) { + if (typeof(populate) === 'function') { + callback = populate; + populate = false; + } + + var mounts = FS.getMounts(FS.root.mount); + var completed = 0; + + function done(err) { + if (err) { + if (!done.errored) { + done.errored = true; + return callback(err); + } + return; + } + if (++completed >= mounts.length) { + callback(null); + } + }; + + // sync all mounts + mounts.forEach(function (mount) { + if (!mount.type.syncfs) { + return done(null); + } + mount.type.syncfs(mount, populate, done); + }); + },mount:function (type, opts, mountpoint) { + var root = mountpoint === '/'; + var pseudo = !mountpoint; + var node; + + if (root && FS.root) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } else if (!root && !pseudo) { + var lookup = FS.lookupPath(mountpoint, { follow_mount: false }); + + mountpoint = lookup.path; // use the absolute path + node = lookup.node; + + if (FS.isMountpoint(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } + + if (!FS.isDir(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); + } + } + + var mount = { + type: type, + opts: opts, + mountpoint: mountpoint, + mounts: [] + }; + + // create a root node for the fs + var mountRoot = type.mount(mount); + mountRoot.mount = mount; + mount.root = mountRoot; + + if (root) { + FS.root = mountRoot; + } else if (node) { + // set as a mountpoint + node.mounted = mount; + + // add the new mount to the current mount's children + if (node.mount) { + node.mount.mounts.push(mount); + } + } + + return mountRoot; + },unmount:function (mountpoint) { + var lookup = FS.lookupPath(mountpoint, { follow_mount: false }); + + if (!FS.isMountpoint(lookup.node)) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + + // destroy the nodes for this mount, and all its child mounts + var node = lookup.node; + var mount = node.mounted; + var mounts = FS.getMounts(mount); + + Object.keys(FS.nameTable).forEach(function (hash) { + var current = FS.nameTable[hash]; + + while (current) { + var next = current.name_next; + + if (mounts.indexOf(current.mount) !== -1) { + FS.destroyNode(current); + } + + current = next; + } + }); + + // no longer a mountpoint + node.mounted = null; + + // remove this mount from the child mounts + var idx = node.mount.mounts.indexOf(mount); + assert(idx !== -1); + node.mount.mounts.splice(idx, 1); + },lookup:function (parent, name) { + return parent.node_ops.lookup(parent, name); + },mknod:function (path, mode, dev) { + var lookup = FS.lookupPath(path, { parent: true }); + var parent = lookup.node; + var name = PATH.basename(path); + if (!name || name === '.' || name === '..') { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + var err = FS.mayCreate(parent, name); + if (err) { + throw new FS.ErrnoError(err); + } + if (!parent.node_ops.mknod) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + return parent.node_ops.mknod(parent, name, mode, dev); + },create:function (path, mode) { + mode = mode !== undefined ? mode : 438 /* 0666 */; + mode &= 4095; + mode |= 32768; + return FS.mknod(path, mode, 0); + },mkdir:function (path, mode) { + mode = mode !== undefined ? mode : 511 /* 0777 */; + mode &= 511 | 512; + mode |= 16384; + return FS.mknod(path, mode, 0); + },mkdev:function (path, mode, dev) { + if (typeof(dev) === 'undefined') { + dev = mode; + mode = 438 /* 0666 */; + } + mode |= 8192; + return FS.mknod(path, mode, dev); + },symlink:function (oldpath, newpath) { + if (!PATH.resolve(oldpath)) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + var lookup = FS.lookupPath(newpath, { parent: true }); + var parent = lookup.node; + if (!parent) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + var newname = PATH.basename(newpath); + var err = FS.mayCreate(parent, newname); + if (err) { + throw new FS.ErrnoError(err); + } + if (!parent.node_ops.symlink) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + return parent.node_ops.symlink(parent, newname, oldpath); + },rename:function (old_path, new_path) { + var old_dirname = PATH.dirname(old_path); + var new_dirname = PATH.dirname(new_path); + var old_name = PATH.basename(old_path); + var new_name = PATH.basename(new_path); + // parents must exist + var lookup, old_dir, new_dir; + try { + lookup = FS.lookupPath(old_path, { parent: true }); + old_dir = lookup.node; + lookup = FS.lookupPath(new_path, { parent: true }); + new_dir = lookup.node; + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } + if (!old_dir || !new_dir) throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + // need to be part of the same mount + if (old_dir.mount !== new_dir.mount) { + throw new FS.ErrnoError(ERRNO_CODES.EXDEV); + } + // source must exist + var old_node = FS.lookupNode(old_dir, old_name); + // old path should not be an ancestor of the new path + var relative = PATH.relative(old_path, new_dirname); + if (relative.charAt(0) !== '.') { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + // new path should not be an ancestor of the old path + relative = PATH.relative(new_path, old_dirname); + if (relative.charAt(0) !== '.') { + throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); + } + // see if the new path already exists + var new_node; + try { + new_node = FS.lookupNode(new_dir, new_name); + } catch (e) { + // not fatal + } + // early out if nothing needs to change + if (old_node === new_node) { + return; + } + // we'll need to delete the old entry + var isdir = FS.isDir(old_node.mode); + var err = FS.mayDelete(old_dir, old_name, isdir); + if (err) { + throw new FS.ErrnoError(err); + } + // need delete permissions if we'll be overwriting. + // need create permissions if new doesn't already exist. + err = new_node ? + FS.mayDelete(new_dir, new_name, isdir) : + FS.mayCreate(new_dir, new_name); + if (err) { + throw new FS.ErrnoError(err); + } + if (!old_dir.node_ops.rename) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + if (FS.isMountpoint(old_node) || (new_node && FS.isMountpoint(new_node))) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } + // if we are going to change the parent, check write permissions + if (new_dir !== old_dir) { + err = FS.nodePermissions(old_dir, 'w'); + if (err) { + throw new FS.ErrnoError(err); + } + } + try { + if (FS.trackingDelegate['willMovePath']) { + FS.trackingDelegate['willMovePath'](old_path, new_path); + } + } catch(e) { + console.log("FS.trackingDelegate['willMovePath']('"+old_path+"', '"+new_path+"') threw an exception: " + e.message); + } + // remove the node from the lookup hash + FS.hashRemoveNode(old_node); + // do the underlying fs rename + try { + old_dir.node_ops.rename(old_node, new_dir, new_name); + } catch (e) { + throw e; + } finally { + // add the node back to the hash (in case node_ops.rename + // changed its name) + FS.hashAddNode(old_node); + } + try { + if (FS.trackingDelegate['onMovePath']) FS.trackingDelegate['onMovePath'](old_path, new_path); + } catch(e) { + console.log("FS.trackingDelegate['onMovePath']('"+old_path+"', '"+new_path+"') threw an exception: " + e.message); + } + },rmdir:function (path) { + var lookup = FS.lookupPath(path, { parent: true }); + var parent = lookup.node; + var name = PATH.basename(path); + var node = FS.lookupNode(parent, name); + var err = FS.mayDelete(parent, name, true); + if (err) { + throw new FS.ErrnoError(err); + } + if (!parent.node_ops.rmdir) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + if (FS.isMountpoint(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } + try { + if (FS.trackingDelegate['willDeletePath']) { + FS.trackingDelegate['willDeletePath'](path); + } + } catch(e) { + console.log("FS.trackingDelegate['willDeletePath']('"+path+"') threw an exception: " + e.message); + } + parent.node_ops.rmdir(parent, name); + FS.destroyNode(node); + try { + if (FS.trackingDelegate['onDeletePath']) FS.trackingDelegate['onDeletePath'](path); + } catch(e) { + console.log("FS.trackingDelegate['onDeletePath']('"+path+"') threw an exception: " + e.message); + } + },readdir:function (path) { + var lookup = FS.lookupPath(path, { follow: true }); + var node = lookup.node; + if (!node.node_ops.readdir) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); + } + return node.node_ops.readdir(node); + },unlink:function (path) { + var lookup = FS.lookupPath(path, { parent: true }); + var parent = lookup.node; + var name = PATH.basename(path); + var node = FS.lookupNode(parent, name); + var err = FS.mayDelete(parent, name, false); + if (err) { + // POSIX says unlink should set EPERM, not EISDIR + if (err === ERRNO_CODES.EISDIR) err = ERRNO_CODES.EPERM; + throw new FS.ErrnoError(err); + } + if (!parent.node_ops.unlink) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + if (FS.isMountpoint(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } + try { + if (FS.trackingDelegate['willDeletePath']) { + FS.trackingDelegate['willDeletePath'](path); + } + } catch(e) { + console.log("FS.trackingDelegate['willDeletePath']('"+path+"') threw an exception: " + e.message); + } + parent.node_ops.unlink(parent, name); + FS.destroyNode(node); + try { + if (FS.trackingDelegate['onDeletePath']) FS.trackingDelegate['onDeletePath'](path); + } catch(e) { + console.log("FS.trackingDelegate['onDeletePath']('"+path+"') threw an exception: " + e.message); + } + },readlink:function (path) { + var lookup = FS.lookupPath(path); + var link = lookup.node; + if (!link) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + if (!link.node_ops.readlink) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + return link.node_ops.readlink(link); + },stat:function (path, dontFollow) { + var lookup = FS.lookupPath(path, { follow: !dontFollow }); + var node = lookup.node; + if (!node) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + if (!node.node_ops.getattr) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + return node.node_ops.getattr(node); + },lstat:function (path) { + return FS.stat(path, true); + },chmod:function (path, mode, dontFollow) { + var node; + if (typeof path === 'string') { + var lookup = FS.lookupPath(path, { follow: !dontFollow }); + node = lookup.node; + } else { + node = path; + } + if (!node.node_ops.setattr) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + node.node_ops.setattr(node, { + mode: (mode & 4095) | (node.mode & ~4095), + timestamp: Date.now() + }); + },lchmod:function (path, mode) { + FS.chmod(path, mode, true); + },fchmod:function (fd, mode) { + var stream = FS.getStream(fd); + if (!stream) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + FS.chmod(stream.node, mode); + },chown:function (path, uid, gid, dontFollow) { + var node; + if (typeof path === 'string') { + var lookup = FS.lookupPath(path, { follow: !dontFollow }); + node = lookup.node; + } else { + node = path; + } + if (!node.node_ops.setattr) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + node.node_ops.setattr(node, { + timestamp: Date.now() + // we ignore the uid / gid for now + }); + },lchown:function (path, uid, gid) { + FS.chown(path, uid, gid, true); + },fchown:function (fd, uid, gid) { + var stream = FS.getStream(fd); + if (!stream) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + FS.chown(stream.node, uid, gid); + },truncate:function (path, len) { + if (len < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + var node; + if (typeof path === 'string') { + var lookup = FS.lookupPath(path, { follow: true }); + node = lookup.node; + } else { + node = path; + } + if (!node.node_ops.setattr) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + if (FS.isDir(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EISDIR); + } + if (!FS.isFile(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + var err = FS.nodePermissions(node, 'w'); + if (err) { + throw new FS.ErrnoError(err); + } + node.node_ops.setattr(node, { + size: len, + timestamp: Date.now() + }); + },ftruncate:function (fd, len) { + var stream = FS.getStream(fd); + if (!stream) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + if ((stream.flags & 2097155) === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + FS.truncate(stream.node, len); + },utime:function (path, atime, mtime) { + var lookup = FS.lookupPath(path, { follow: true }); + var node = lookup.node; + node.node_ops.setattr(node, { + timestamp: Math.max(atime, mtime) + }); + },open:function (path, flags, mode, fd_start, fd_end) { + if (path === "") { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + flags = typeof flags === 'string' ? FS.modeStringToFlags(flags) : flags; + mode = typeof mode === 'undefined' ? 438 /* 0666 */ : mode; + if ((flags & 64)) { + mode = (mode & 4095) | 32768; + } else { + mode = 0; + } + var node; + if (typeof path === 'object') { + node = path; + } else { + path = PATH.normalize(path); + try { + var lookup = FS.lookupPath(path, { + follow: !(flags & 131072) + }); + node = lookup.node; + } catch (e) { + // ignore + } + } + // perhaps we need to create the node + var created = false; + if ((flags & 64)) { + if (node) { + // if O_CREAT and O_EXCL are set, error out if the node already exists + if ((flags & 128)) { + throw new FS.ErrnoError(ERRNO_CODES.EEXIST); + } + } else { + // node doesn't exist, try to create it + node = FS.mknod(path, mode, 0); + created = true; + } + } + if (!node) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + // can't truncate a device + if (FS.isChrdev(node.mode)) { + flags &= ~512; + } + // check permissions, if this is not a file we just created now (it is ok to + // create and write to a file with read-only permissions; it is read-only + // for later use) + if (!created) { + var err = FS.mayOpen(node, flags); + if (err) { + throw new FS.ErrnoError(err); + } + } + // do truncation if necessary + if ((flags & 512)) { + FS.truncate(node, 0); + } + // we've already handled these, don't pass down to the underlying vfs + flags &= ~(128 | 512); + + // register the stream with the filesystem + var stream = FS.createStream({ + node: node, + path: FS.getPath(node), // we want the absolute path to the node + flags: flags, + seekable: true, + position: 0, + stream_ops: node.stream_ops, + // used by the file family libc calls (fopen, fwrite, ferror, etc.) + ungotten: [], + error: false + }, fd_start, fd_end); + // call the new stream's open function + if (stream.stream_ops.open) { + stream.stream_ops.open(stream); + } + if (Module['logReadFiles'] && !(flags & 1)) { + if (!FS.readFiles) FS.readFiles = {}; + if (!(path in FS.readFiles)) { + FS.readFiles[path] = 1; + Module['printErr']('read file: ' + path); + } + } + try { + if (FS.trackingDelegate['onOpenFile']) { + var trackingFlags = 0; + if ((flags & 2097155) !== 1) { + trackingFlags |= FS.tracking.openFlags.READ; + } + if ((flags & 2097155) !== 0) { + trackingFlags |= FS.tracking.openFlags.WRITE; + } + FS.trackingDelegate['onOpenFile'](path, trackingFlags); + } + } catch(e) { + console.log("FS.trackingDelegate['onOpenFile']('"+path+"', flags) threw an exception: " + e.message); + } + return stream; + },close:function (stream) { + try { + if (stream.stream_ops.close) { + stream.stream_ops.close(stream); + } + } catch (e) { + throw e; + } finally { + FS.closeStream(stream.fd); + } + },llseek:function (stream, offset, whence) { + if (!stream.seekable || !stream.stream_ops.llseek) { + throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); + } + stream.position = stream.stream_ops.llseek(stream, offset, whence); + stream.ungotten = []; + return stream.position; + },read:function (stream, buffer, offset, length, position) { + if (length < 0 || position < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + if ((stream.flags & 2097155) === 1) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + if (FS.isDir(stream.node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EISDIR); + } + if (!stream.stream_ops.read) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + var seeking = true; + if (typeof position === 'undefined') { + position = stream.position; + seeking = false; + } else if (!stream.seekable) { + throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); + } + var bytesRead = stream.stream_ops.read(stream, buffer, offset, length, position); + if (!seeking) stream.position += bytesRead; + return bytesRead; + },write:function (stream, buffer, offset, length, position, canOwn) { + if (length < 0 || position < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + if ((stream.flags & 2097155) === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + if (FS.isDir(stream.node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EISDIR); + } + if (!stream.stream_ops.write) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + if (stream.flags & 1024) { + // seek to the end before writing in append mode + FS.llseek(stream, 0, 2); + } + var seeking = true; + if (typeof position === 'undefined') { + position = stream.position; + seeking = false; + } else if (!stream.seekable) { + throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); + } + var bytesWritten = stream.stream_ops.write(stream, buffer, offset, length, position, canOwn); + if (!seeking) stream.position += bytesWritten; + try { + if (stream.path && FS.trackingDelegate['onWriteToFile']) FS.trackingDelegate['onWriteToFile'](stream.path); + } catch(e) { + console.log("FS.trackingDelegate['onWriteToFile']('"+path+"') threw an exception: " + e.message); + } + return bytesWritten; + },allocate:function (stream, offset, length) { + if (offset < 0 || length <= 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + if ((stream.flags & 2097155) === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + if (!FS.isFile(stream.node.mode) && !FS.isDir(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.ENODEV); + } + if (!stream.stream_ops.allocate) { + throw new FS.ErrnoError(ERRNO_CODES.EOPNOTSUPP); + } + stream.stream_ops.allocate(stream, offset, length); + },mmap:function (stream, buffer, offset, length, position, prot, flags) { + // TODO if PROT is PROT_WRITE, make sure we have write access + if ((stream.flags & 2097155) === 1) { + throw new FS.ErrnoError(ERRNO_CODES.EACCES); + } + if (!stream.stream_ops.mmap) { + throw new FS.ErrnoError(ERRNO_CODES.ENODEV); + } + return stream.stream_ops.mmap(stream, buffer, offset, length, position, prot, flags); + },ioctl:function (stream, cmd, arg) { + if (!stream.stream_ops.ioctl) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTTY); + } + return stream.stream_ops.ioctl(stream, cmd, arg); + },readFile:function (path, opts) { + opts = opts || {}; + opts.flags = opts.flags || 'r'; + opts.encoding = opts.encoding || 'binary'; + if (opts.encoding !== 'utf8' && opts.encoding !== 'binary') { + throw new Error('Invalid encoding type "' + opts.encoding + '"'); + } + var ret; + var stream = FS.open(path, opts.flags); + var stat = FS.stat(path); + var length = stat.size; + var buf = new Uint8Array(length); + FS.read(stream, buf, 0, length, 0); + if (opts.encoding === 'utf8') { + ret = ''; + var utf8 = new Runtime.UTF8Processor(); + for (var i = 0; i < length; i++) { + ret += utf8.processCChar(buf[i]); + } + } else if (opts.encoding === 'binary') { + ret = buf; + } + FS.close(stream); + return ret; + },writeFile:function (path, data, opts) { + opts = opts || {}; + opts.flags = opts.flags || 'w'; + opts.encoding = opts.encoding || 'utf8'; + if (opts.encoding !== 'utf8' && opts.encoding !== 'binary') { + throw new Error('Invalid encoding type "' + opts.encoding + '"'); + } + var stream = FS.open(path, opts.flags, opts.mode); + if (opts.encoding === 'utf8') { + var utf8 = new Runtime.UTF8Processor(); + var buf = new Uint8Array(utf8.processJSString(data)); + FS.write(stream, buf, 0, buf.length, 0, opts.canOwn); + } else if (opts.encoding === 'binary') { + FS.write(stream, data, 0, data.length, 0, opts.canOwn); + } + FS.close(stream); + },cwd:function () { + return FS.currentPath; + },chdir:function (path) { + var lookup = FS.lookupPath(path, { follow: true }); + if (!FS.isDir(lookup.node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); + } + var err = FS.nodePermissions(lookup.node, 'x'); + if (err) { + throw new FS.ErrnoError(err); + } + FS.currentPath = lookup.path; + },createDefaultDirectories:function () { + FS.mkdir('/tmp'); + FS.mkdir('/home'); + FS.mkdir('/home/web_user'); + },createDefaultDevices:function () { + // create /dev + FS.mkdir('/dev'); + // setup /dev/null + FS.registerDevice(FS.makedev(1, 3), { + read: function() { return 0; }, + write: function() { return 0; } + }); + FS.mkdev('/dev/null', FS.makedev(1, 3)); + // setup /dev/tty and /dev/tty1 + // stderr needs to print output using Module['printErr'] + // so we register a second tty just for it. + TTY.register(FS.makedev(5, 0), TTY.default_tty_ops); + TTY.register(FS.makedev(6, 0), TTY.default_tty1_ops); + FS.mkdev('/dev/tty', FS.makedev(5, 0)); + FS.mkdev('/dev/tty1', FS.makedev(6, 0)); + // setup /dev/[u]random + var random_device; + if (typeof crypto !== 'undefined') { + // for modern web browsers + var randomBuffer = new Uint8Array(1); + random_device = function() { crypto.getRandomValues(randomBuffer); return randomBuffer[0]; }; + } else if (ENVIRONMENT_IS_NODE) { + // for nodejs + random_device = function() { return require('crypto').randomBytes(1)[0]; }; + } else { + // default for ES5 platforms + random_device = function() { return (Math.random()*256)|0; }; + } + FS.createDevice('/dev', 'random', random_device); + FS.createDevice('/dev', 'urandom', random_device); + // we're not going to emulate the actual shm device, + // just create the tmp dirs that reside in it commonly + FS.mkdir('/dev/shm'); + FS.mkdir('/dev/shm/tmp'); + },createStandardStreams:function () { + // TODO deprecate the old functionality of a single + // input / output callback and that utilizes FS.createDevice + // and instead require a unique set of stream ops + + // by default, we symlink the standard streams to the + // default tty devices. however, if the standard streams + // have been overwritten we create a unique device for + // them instead. + if (Module['stdin']) { + FS.createDevice('/dev', 'stdin', Module['stdin']); + } else { + FS.symlink('/dev/tty', '/dev/stdin'); + } + if (Module['stdout']) { + FS.createDevice('/dev', 'stdout', null, Module['stdout']); + } else { + FS.symlink('/dev/tty', '/dev/stdout'); + } + if (Module['stderr']) { + FS.createDevice('/dev', 'stderr', null, Module['stderr']); + } else { + FS.symlink('/dev/tty1', '/dev/stderr'); + } + + // open default streams for the stdin, stdout and stderr devices + var stdin = FS.open('/dev/stdin', 'r'); + HEAP32[((_stdin)>>2)]=FS.getPtrForStream(stdin); + assert(stdin.fd === 0, 'invalid handle for stdin (' + stdin.fd + ')'); + + var stdout = FS.open('/dev/stdout', 'w'); + HEAP32[((_stdout)>>2)]=FS.getPtrForStream(stdout); + assert(stdout.fd === 1, 'invalid handle for stdout (' + stdout.fd + ')'); + + var stderr = FS.open('/dev/stderr', 'w'); + HEAP32[((_stderr)>>2)]=FS.getPtrForStream(stderr); + assert(stderr.fd === 2, 'invalid handle for stderr (' + stderr.fd + ')'); + },ensureErrnoError:function () { + if (FS.ErrnoError) return; + FS.ErrnoError = function ErrnoError(errno, node) { + this.node = node; + this.setErrno = function(errno) { + this.errno = errno; + for (var key in ERRNO_CODES) { + if (ERRNO_CODES[key] === errno) { + this.code = key; + break; + } + } + }; + this.setErrno(errno); + this.message = ERRNO_MESSAGES[errno]; + }; + FS.ErrnoError.prototype = new Error(); + FS.ErrnoError.prototype.constructor = FS.ErrnoError; + // Some errors may happen quite a bit, to avoid overhead we reuse them (and suffer a lack of stack info) + [ERRNO_CODES.ENOENT].forEach(function(code) { + FS.genericErrors[code] = new FS.ErrnoError(code); + FS.genericErrors[code].stack = ''; + }); + },staticInit:function () { + FS.ensureErrnoError(); + + FS.nameTable = new Array(4096); + + FS.mount(MEMFS, {}, '/'); + + FS.createDefaultDirectories(); + FS.createDefaultDevices(); + },init:function (input, output, error) { + assert(!FS.init.initialized, 'FS.init was previously called. If you want to initialize later with custom parameters, remove any earlier calls (note that one is automatically added to the generated code)'); + FS.init.initialized = true; + + FS.ensureErrnoError(); + + // Allow Module.stdin etc. to provide defaults, if none explicitly passed to us here + Module['stdin'] = input || Module['stdin']; + Module['stdout'] = output || Module['stdout']; + Module['stderr'] = error || Module['stderr']; + + FS.createStandardStreams(); + },quit:function () { + FS.init.initialized = false; + for (var i = 0; i < FS.streams.length; i++) { + var stream = FS.streams[i]; + if (!stream) { + continue; + } + FS.close(stream); + } + },getMode:function (canRead, canWrite) { + var mode = 0; + if (canRead) mode |= 292 | 73; + if (canWrite) mode |= 146; + return mode; + },joinPath:function (parts, forceRelative) { + var path = PATH.join.apply(null, parts); + if (forceRelative && path[0] == '/') path = path.substr(1); + return path; + },absolutePath:function (relative, base) { + return PATH.resolve(base, relative); + },standardizePath:function (path) { + return PATH.normalize(path); + },findObject:function (path, dontResolveLastLink) { + var ret = FS.analyzePath(path, dontResolveLastLink); + if (ret.exists) { + return ret.object; + } else { + ___setErrNo(ret.error); + return null; + } + },analyzePath:function (path, dontResolveLastLink) { + // operate from within the context of the symlink's target + try { + var lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }); + path = lookup.path; + } catch (e) { + } + var ret = { + isRoot: false, exists: false, error: 0, name: null, path: null, object: null, + parentExists: false, parentPath: null, parentObject: null + }; + try { + var lookup = FS.lookupPath(path, { parent: true }); + ret.parentExists = true; + ret.parentPath = lookup.path; + ret.parentObject = lookup.node; + ret.name = PATH.basename(path); + lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }); + ret.exists = true; + ret.path = lookup.path; + ret.object = lookup.node; + ret.name = lookup.node.name; + ret.isRoot = lookup.path === '/'; + } catch (e) { + ret.error = e.errno; + }; + return ret; + },createFolder:function (parent, name, canRead, canWrite) { + var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); + var mode = FS.getMode(canRead, canWrite); + return FS.mkdir(path, mode); + },createPath:function (parent, path, canRead, canWrite) { + parent = typeof parent === 'string' ? parent : FS.getPath(parent); + var parts = path.split('/').reverse(); + while (parts.length) { + var part = parts.pop(); + if (!part) continue; + var current = PATH.join2(parent, part); + try { + FS.mkdir(current); + } catch (e) { + // ignore EEXIST + } + parent = current; + } + return current; + },createFile:function (parent, name, properties, canRead, canWrite) { + var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); + var mode = FS.getMode(canRead, canWrite); + return FS.create(path, mode); + },createDataFile:function (parent, name, data, canRead, canWrite, canOwn) { + var path = name ? PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name) : parent; + var mode = FS.getMode(canRead, canWrite); + var node = FS.create(path, mode); + if (data) { + if (typeof data === 'string') { + var arr = new Array(data.length); + for (var i = 0, len = data.length; i < len; ++i) arr[i] = data.charCodeAt(i); + data = arr; + } + // make sure we can write to the file + FS.chmod(node, mode | 146); + var stream = FS.open(node, 'w'); + FS.write(stream, data, 0, data.length, 0, canOwn); + FS.close(stream); + FS.chmod(node, mode); + } + return node; + },createDevice:function (parent, name, input, output) { + var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); + var mode = FS.getMode(!!input, !!output); + if (!FS.createDevice.major) FS.createDevice.major = 64; + var dev = FS.makedev(FS.createDevice.major++, 0); + // Create a fake device that a set of stream ops to emulate + // the old behavior. + FS.registerDevice(dev, { + open: function(stream) { + stream.seekable = false; + }, + close: function(stream) { + // flush any pending line data + if (output && output.buffer && output.buffer.length) { + output(10); + } + }, + read: function(stream, buffer, offset, length, pos /* ignored */) { + var bytesRead = 0; + for (var i = 0; i < length; i++) { + var result; + try { + result = input(); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + if (result === undefined && bytesRead === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EAGAIN); + } + if (result === null || result === undefined) break; + bytesRead++; + buffer[offset+i] = result; + } + if (bytesRead) { + stream.node.timestamp = Date.now(); + } + return bytesRead; + }, + write: function(stream, buffer, offset, length, pos) { + for (var i = 0; i < length; i++) { + try { + output(buffer[offset+i]); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + } + if (length) { + stream.node.timestamp = Date.now(); + } + return i; + } + }); + return FS.mkdev(path, mode, dev); + },createLink:function (parent, name, target, canRead, canWrite) { + var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); + return FS.symlink(target, path); + },forceLoadFile:function (obj) { + if (obj.isDevice || obj.isFolder || obj.link || obj.contents) return true; + var success = true; + if (typeof XMLHttpRequest !== 'undefined') { + throw new Error("Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread."); + } else if (Module['read']) { + // Command-line. + try { + // WARNING: Can't read binary files in V8's d8 or tracemonkey's js, as + // read() will try to parse UTF8. + obj.contents = intArrayFromString(Module['read'](obj.url), true); + obj.usedBytes = obj.contents.length; + } catch (e) { + success = false; + } + } else { + throw new Error('Cannot load without read() or XMLHttpRequest.'); + } + if (!success) ___setErrNo(ERRNO_CODES.EIO); + return success; + },createLazyFile:function (parent, name, url, canRead, canWrite) { + // Lazy chunked Uint8Array (implements get and length from Uint8Array). Actual getting is abstracted away for eventual reuse. + function LazyUint8Array() { + this.lengthKnown = false; + this.chunks = []; // Loaded chunks. Index is the chunk number + } + LazyUint8Array.prototype.get = function LazyUint8Array_get(idx) { + if (idx > this.length-1 || idx < 0) { + return undefined; + } + var chunkOffset = idx % this.chunkSize; + var chunkNum = (idx / this.chunkSize)|0; + return this.getter(chunkNum)[chunkOffset]; + } + LazyUint8Array.prototype.setDataGetter = function LazyUint8Array_setDataGetter(getter) { + this.getter = getter; + } + LazyUint8Array.prototype.cacheLength = function LazyUint8Array_cacheLength() { + // Find length + var xhr = new XMLHttpRequest(); + xhr.open('HEAD', url, false); + xhr.send(null); + if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); + var datalength = Number(xhr.getResponseHeader("Content-length")); + var header; + var hasByteServing = (header = xhr.getResponseHeader("Accept-Ranges")) && header === "bytes"; + var chunkSize = 1024*1024; // Chunk size in bytes + + if (!hasByteServing) chunkSize = datalength; + + // Function to get a range from the remote URL. + var doXHR = (function(from, to) { + if (from > to) throw new Error("invalid range (" + from + ", " + to + ") or no bytes requested!"); + if (to > datalength-1) throw new Error("only " + datalength + " bytes available! programmer error!"); + + // TODO: Use mozResponseArrayBuffer, responseStream, etc. if available. + var xhr = new XMLHttpRequest(); + xhr.open('GET', url, false); + if (datalength !== chunkSize) xhr.setRequestHeader("Range", "bytes=" + from + "-" + to); + + // Some hints to the browser that we want binary data. + if (typeof Uint8Array != 'undefined') xhr.responseType = 'arraybuffer'; + if (xhr.overrideMimeType) { + xhr.overrideMimeType('text/plain; charset=x-user-defined'); + } + + xhr.send(null); + if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); + if (xhr.response !== undefined) { + return new Uint8Array(xhr.response || []); + } else { + return intArrayFromString(xhr.responseText || '', true); + } + }); + var lazyArray = this; + lazyArray.setDataGetter(function(chunkNum) { + var start = chunkNum * chunkSize; + var end = (chunkNum+1) * chunkSize - 1; // including this byte + end = Math.min(end, datalength-1); // if datalength-1 is selected, this is the last block + if (typeof(lazyArray.chunks[chunkNum]) === "undefined") { + lazyArray.chunks[chunkNum] = doXHR(start, end); + } + if (typeof(lazyArray.chunks[chunkNum]) === "undefined") throw new Error("doXHR failed!"); + return lazyArray.chunks[chunkNum]; + }); + + this._length = datalength; + this._chunkSize = chunkSize; + this.lengthKnown = true; + } + if (typeof XMLHttpRequest !== 'undefined') { + if (!ENVIRONMENT_IS_WORKER) throw 'Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc'; + var lazyArray = new LazyUint8Array(); + Object.defineProperty(lazyArray, "length", { + get: function() { + if(!this.lengthKnown) { + this.cacheLength(); + } + return this._length; + } + }); + Object.defineProperty(lazyArray, "chunkSize", { + get: function() { + if(!this.lengthKnown) { + this.cacheLength(); + } + return this._chunkSize; + } + }); + + var properties = { isDevice: false, contents: lazyArray }; + } else { + var properties = { isDevice: false, url: url }; + } + + var node = FS.createFile(parent, name, properties, canRead, canWrite); + // This is a total hack, but I want to get this lazy file code out of the + // core of MEMFS. If we want to keep this lazy file concept I feel it should + // be its own thin LAZYFS proxying calls to MEMFS. + if (properties.contents) { + node.contents = properties.contents; + } else if (properties.url) { + node.contents = null; + node.url = properties.url; + } + // Add a function that defers querying the file size until it is asked the first time. + Object.defineProperty(node, "usedBytes", { + get: function() { return this.contents.length; } + }); + // override each stream op with one that tries to force load the lazy file first + var stream_ops = {}; + var keys = Object.keys(node.stream_ops); + keys.forEach(function(key) { + var fn = node.stream_ops[key]; + stream_ops[key] = function forceLoadLazyFile() { + if (!FS.forceLoadFile(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + return fn.apply(null, arguments); + }; + }); + // use a custom read function + stream_ops.read = function stream_ops_read(stream, buffer, offset, length, position) { + if (!FS.forceLoadFile(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + var contents = stream.node.contents; + if (position >= contents.length) + return 0; + var size = Math.min(contents.length - position, length); + assert(size >= 0); + if (contents.slice) { // normal array + for (var i = 0; i < size; i++) { + buffer[offset + i] = contents[position + i]; + } + } else { + for (var i = 0; i < size; i++) { // LazyUint8Array from sync binary XHR + buffer[offset + i] = contents.get(position + i); + } + } + return size; + }; + node.stream_ops = stream_ops; + return node; + },createPreloadedFile:function (parent, name, url, canRead, canWrite, onload, onerror, dontCreateFile, canOwn) { + Browser.init(); + // TODO we should allow people to just pass in a complete filename instead + // of parent and name being that we just join them anyways + var fullname = name ? PATH.resolve(PATH.join2(parent, name)) : parent; + function processData(byteArray) { + function finish(byteArray) { + if (!dontCreateFile) { + FS.createDataFile(parent, name, byteArray, canRead, canWrite, canOwn); + } + if (onload) onload(); + removeRunDependency('cp ' + fullname); + } + var handled = false; + Module['preloadPlugins'].forEach(function(plugin) { + if (handled) return; + if (plugin['canHandle'](fullname)) { + plugin['handle'](byteArray, fullname, finish, function() { + if (onerror) onerror(); + removeRunDependency('cp ' + fullname); + }); + handled = true; + } + }); + if (!handled) finish(byteArray); + } + addRunDependency('cp ' + fullname); + if (typeof url == 'string') { + Browser.asyncLoad(url, function(byteArray) { + processData(byteArray); + }, onerror); + } else { + processData(url); + } + },indexedDB:function () { + return window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; + },DB_NAME:function () { + return 'EM_FS_' + window.location.pathname; + },DB_VERSION:20,DB_STORE_NAME:"FILE_DATA",saveFilesToDB:function (paths, onload, onerror) { + onload = onload || function(){}; + onerror = onerror || function(){}; + var indexedDB = FS.indexedDB(); + try { + var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); + } catch (e) { + return onerror(e); + } + openRequest.onupgradeneeded = function openRequest_onupgradeneeded() { + console.log('creating db'); + var db = openRequest.result; + db.createObjectStore(FS.DB_STORE_NAME); + }; + openRequest.onsuccess = function openRequest_onsuccess() { + var db = openRequest.result; + var transaction = db.transaction([FS.DB_STORE_NAME], 'readwrite'); + var files = transaction.objectStore(FS.DB_STORE_NAME); + var ok = 0, fail = 0, total = paths.length; + function finish() { + if (fail == 0) onload(); else onerror(); + } + paths.forEach(function(path) { + var putRequest = files.put(FS.analyzePath(path).object.contents, path); + putRequest.onsuccess = function putRequest_onsuccess() { ok++; if (ok + fail == total) finish() }; + putRequest.onerror = function putRequest_onerror() { fail++; if (ok + fail == total) finish() }; + }); + transaction.onerror = onerror; + }; + openRequest.onerror = onerror; + },loadFilesFromDB:function (paths, onload, onerror) { + onload = onload || function(){}; + onerror = onerror || function(){}; + var indexedDB = FS.indexedDB(); + try { + var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); + } catch (e) { + return onerror(e); + } + openRequest.onupgradeneeded = onerror; // no database to load from + openRequest.onsuccess = function openRequest_onsuccess() { + var db = openRequest.result; + try { + var transaction = db.transaction([FS.DB_STORE_NAME], 'readonly'); + } catch(e) { + onerror(e); + return; + } + var files = transaction.objectStore(FS.DB_STORE_NAME); + var ok = 0, fail = 0, total = paths.length; + function finish() { + if (fail == 0) onload(); else onerror(); + } + paths.forEach(function(path) { + var getRequest = files.get(path); + getRequest.onsuccess = function getRequest_onsuccess() { + if (FS.analyzePath(path).exists) { + FS.unlink(path); + } + FS.createDataFile(PATH.dirname(path), PATH.basename(path), getRequest.result, true, true, true); + ok++; + if (ok + fail == total) finish(); + }; + getRequest.onerror = function getRequest_onerror() { fail++; if (ok + fail == total) finish() }; + }); + transaction.onerror = onerror; + }; + openRequest.onerror = onerror; + }};var PATH={splitPath:function (filename) { + var splitPathRe = /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; + return splitPathRe.exec(filename).slice(1); + },normalizeArray:function (parts, allowAboveRoot) { + // if the path tries to go above the root, `up` ends up > 0 + var up = 0; + for (var i = parts.length - 1; i >= 0; i--) { + var last = parts[i]; + if (last === '.') { + parts.splice(i, 1); + } else if (last === '..') { + parts.splice(i, 1); + up++; + } else if (up) { + parts.splice(i, 1); + up--; + } + } + // if the path is allowed to go above the root, restore leading ..s + if (allowAboveRoot) { + for (; up--; up) { + parts.unshift('..'); + } + } + return parts; + },normalize:function (path) { + var isAbsolute = path.charAt(0) === '/', + trailingSlash = path.substr(-1) === '/'; + // Normalize the path + path = PATH.normalizeArray(path.split('/').filter(function(p) { + return !!p; + }), !isAbsolute).join('/'); + if (!path && !isAbsolute) { + path = '.'; + } + if (path && trailingSlash) { + path += '/'; + } + return (isAbsolute ? '/' : '') + path; + },dirname:function (path) { + var result = PATH.splitPath(path), + root = result[0], + dir = result[1]; + if (!root && !dir) { + // No dirname whatsoever + return '.'; + } + if (dir) { + // It has a dirname, strip trailing slash + dir = dir.substr(0, dir.length - 1); + } + return root + dir; + },basename:function (path) { + // EMSCRIPTEN return '/'' for '/', not an empty string + if (path === '/') return '/'; + var lastSlash = path.lastIndexOf('/'); + if (lastSlash === -1) return path; + return path.substr(lastSlash+1); + },extname:function (path) { + return PATH.splitPath(path)[3]; + },join:function () { + var paths = Array.prototype.slice.call(arguments, 0); + return PATH.normalize(paths.join('/')); + },join2:function (l, r) { + return PATH.normalize(l + '/' + r); + },resolve:function () { + var resolvedPath = '', + resolvedAbsolute = false; + for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { + var path = (i >= 0) ? arguments[i] : FS.cwd(); + // Skip empty and invalid entries + if (typeof path !== 'string') { + throw new TypeError('Arguments to path.resolve must be strings'); + } else if (!path) { + return ''; // an invalid portion invalidates the whole thing + } + resolvedPath = path + '/' + resolvedPath; + resolvedAbsolute = path.charAt(0) === '/'; + } + // At this point the path should be resolved to a full absolute path, but + // handle relative paths to be safe (might happen when process.cwd() fails) + resolvedPath = PATH.normalizeArray(resolvedPath.split('/').filter(function(p) { + return !!p; + }), !resolvedAbsolute).join('/'); + return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.'; + },relative:function (from, to) { + from = PATH.resolve(from).substr(1); + to = PATH.resolve(to).substr(1); + function trim(arr) { + var start = 0; + for (; start < arr.length; start++) { + if (arr[start] !== '') break; + } + var end = arr.length - 1; + for (; end >= 0; end--) { + if (arr[end] !== '') break; + } + if (start > end) return []; + return arr.slice(start, end - start + 1); + } + var fromParts = trim(from.split('/')); + var toParts = trim(to.split('/')); + var length = Math.min(fromParts.length, toParts.length); + var samePartsLength = length; + for (var i = 0; i < length; i++) { + if (fromParts[i] !== toParts[i]) { + samePartsLength = i; + break; + } + } + var outputParts = []; + for (var i = samePartsLength; i < fromParts.length; i++) { + outputParts.push('..'); + } + outputParts = outputParts.concat(toParts.slice(samePartsLength)); + return outputParts.join('/'); + }}; + + + function _emscripten_set_main_loop_timing(mode, value) { + Browser.mainLoop.timingMode = mode; + Browser.mainLoop.timingValue = value; + + if (!Browser.mainLoop.func) { + return 1; // Return non-zero on failure, can't set timing mode when there is no main loop. + } + + if (mode == 0 /*EM_TIMING_SETTIMEOUT*/) { + Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler() { + setTimeout(Browser.mainLoop.runner, value); // doing this each time means that on exception, we stop + }; + Browser.mainLoop.method = 'timeout'; + } else if (mode == 1 /*EM_TIMING_RAF*/) { + Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler() { + Browser.requestAnimationFrame(Browser.mainLoop.runner); + }; + Browser.mainLoop.method = 'rAF'; + } + return 0; + }function _emscripten_set_main_loop(func, fps, simulateInfiniteLoop, arg) { + Module['noExitRuntime'] = true; + + assert(!Browser.mainLoop.func, 'emscripten_set_main_loop: there can only be one main loop function at once: call emscripten_cancel_main_loop to cancel the previous one before setting a new one with different parameters.'); + + Browser.mainLoop.func = func; + Browser.mainLoop.arg = arg; + + var thisMainLoopId = Browser.mainLoop.currentlyRunningMainloop; + + Browser.mainLoop.runner = function Browser_mainLoop_runner() { + if (ABORT) return; + if (Browser.mainLoop.queue.length > 0) { + var start = Date.now(); + var blocker = Browser.mainLoop.queue.shift(); + blocker.func(blocker.arg); + if (Browser.mainLoop.remainingBlockers) { + var remaining = Browser.mainLoop.remainingBlockers; + var next = remaining%1 == 0 ? remaining-1 : Math.floor(remaining); + if (blocker.counted) { + Browser.mainLoop.remainingBlockers = next; + } else { + // not counted, but move the progress along a tiny bit + next = next + 0.5; // do not steal all the next one's progress + Browser.mainLoop.remainingBlockers = (8*remaining + next)/9; + } + } + console.log('main loop blocker "' + blocker.name + '" took ' + (Date.now() - start) + ' ms'); //, left: ' + Browser.mainLoop.remainingBlockers); + Browser.mainLoop.updateStatus(); + setTimeout(Browser.mainLoop.runner, 0); + return; + } + + // catch pauses from non-main loop sources + if (thisMainLoopId < Browser.mainLoop.currentlyRunningMainloop) return; + + // Implement very basic swap interval control + Browser.mainLoop.currentFrameNumber = Browser.mainLoop.currentFrameNumber + 1 | 0; + if (Browser.mainLoop.timingMode == 1/*EM_TIMING_RAF*/ && Browser.mainLoop.timingValue > 1 && Browser.mainLoop.currentFrameNumber % Browser.mainLoop.timingValue != 0) { + // Not the scheduled time to render this frame - skip. + Browser.mainLoop.scheduler(); + return; + } + + // Signal GL rendering layer that processing of a new frame is about to start. This helps it optimize + // VBO double-buffering and reduce GPU stalls. + + if (Browser.mainLoop.method === 'timeout' && Module.ctx) { + Module.printErr('Looks like you are rendering without using requestAnimationFrame for the main loop. You should use 0 for the frame rate in emscripten_set_main_loop in order to use requestAnimationFrame, as that can greatly improve your frame rates!'); + Browser.mainLoop.method = ''; // just warn once per call to set main loop + } + + Browser.mainLoop.runIter(function() { + if (typeof arg !== 'undefined') { + Runtime.dynCall('vi', func, [arg]); + } else { + Runtime.dynCall('v', func); + } + }); + + // catch pauses from the main loop itself + if (thisMainLoopId < Browser.mainLoop.currentlyRunningMainloop) return; + + // Queue new audio data. This is important to be right after the main loop invocation, so that we will immediately be able + // to queue the newest produced audio samples. + // TODO: Consider adding pre- and post- rAF callbacks so that GL.newRenderingFrameStarted() and SDL.audio.queueNewAudioData() + // do not need to be hardcoded into this function, but can be more generic. + if (typeof SDL === 'object' && SDL.audio && SDL.audio.queueNewAudioData) SDL.audio.queueNewAudioData(); + + Browser.mainLoop.scheduler(); + } + + if (fps && fps > 0) _emscripten_set_main_loop_timing(0/*EM_TIMING_SETTIMEOUT*/, 1000.0 / fps); + else _emscripten_set_main_loop_timing(1/*EM_TIMING_RAF*/, 1); // Do rAF by rendering each frame (no decimating) + + Browser.mainLoop.scheduler(); + + if (simulateInfiniteLoop) { + throw 'SimulateInfiniteLoop'; + } + }var Browser={mainLoop:{scheduler:null,method:"",currentlyRunningMainloop:0,func:null,arg:0,timingMode:0,timingValue:0,currentFrameNumber:0,queue:[],pause:function () { + Browser.mainLoop.scheduler = null; + Browser.mainLoop.currentlyRunningMainloop++; // Incrementing this signals the previous main loop that it's now become old, and it must return. + },resume:function () { + Browser.mainLoop.currentlyRunningMainloop++; + var timingMode = Browser.mainLoop.timingMode; + var timingValue = Browser.mainLoop.timingValue; + var func = Browser.mainLoop.func; + Browser.mainLoop.func = null; + _emscripten_set_main_loop(func, 0, false, Browser.mainLoop.arg); + _emscripten_set_main_loop_timing(timingMode, timingValue); + },updateStatus:function () { + if (Module['setStatus']) { + var message = Module['statusMessage'] || 'Please wait...'; + var remaining = Browser.mainLoop.remainingBlockers; + var expected = Browser.mainLoop.expectedBlockers; + if (remaining) { + if (remaining < expected) { + Module['setStatus'](message + ' (' + (expected - remaining) + '/' + expected + ')'); + } else { + Module['setStatus'](message); + } + } else { + Module['setStatus'](''); + } + } + },runIter:function (func) { + if (ABORT) return; + if (Module['preMainLoop']) { + var preRet = Module['preMainLoop'](); + if (preRet === false) { + return; // |return false| skips a frame + } + } + try { + func(); + } catch (e) { + if (e instanceof ExitStatus) { + return; + } else { + if (e && typeof e === 'object' && e.stack) Module.printErr('exception thrown: ' + [e, e.stack]); + throw e; + } + } + if (Module['postMainLoop']) Module['postMainLoop'](); + }},isFullScreen:false,pointerLock:false,moduleContextCreatedCallbacks:[],workers:[],init:function () { + if (!Module["preloadPlugins"]) Module["preloadPlugins"] = []; // needs to exist even in workers + + if (Browser.initted) return; + Browser.initted = true; + + try { + new Blob(); + Browser.hasBlobConstructor = true; + } catch(e) { + Browser.hasBlobConstructor = false; + console.log("warning: no blob constructor, cannot create blobs with mimetypes"); + } + Browser.BlobBuilder = typeof MozBlobBuilder != "undefined" ? MozBlobBuilder : (typeof WebKitBlobBuilder != "undefined" ? WebKitBlobBuilder : (!Browser.hasBlobConstructor ? console.log("warning: no BlobBuilder") : null)); + Browser.URLObject = typeof window != "undefined" ? (window.URL ? window.URL : window.webkitURL) : undefined; + if (!Module.noImageDecoding && typeof Browser.URLObject === 'undefined') { + console.log("warning: Browser does not support creating object URLs. Built-in browser image decoding will not be available."); + Module.noImageDecoding = true; + } + + // Support for plugins that can process preloaded files. You can add more of these to + // your app by creating and appending to Module.preloadPlugins. + // + // Each plugin is asked if it can handle a file based on the file's name. If it can, + // it is given the file's raw data. When it is done, it calls a callback with the file's + // (possibly modified) data. For example, a plugin might decompress a file, or it + // might create some side data structure for use later (like an Image element, etc.). + + var imagePlugin = {}; + imagePlugin['canHandle'] = function imagePlugin_canHandle(name) { + return !Module.noImageDecoding && /\.(jpg|jpeg|png|bmp)$/i.test(name); + }; + imagePlugin['handle'] = function imagePlugin_handle(byteArray, name, onload, onerror) { + var b = null; + if (Browser.hasBlobConstructor) { + try { + b = new Blob([byteArray], { type: Browser.getMimetype(name) }); + if (b.size !== byteArray.length) { // Safari bug #118630 + // Safari's Blob can only take an ArrayBuffer + b = new Blob([(new Uint8Array(byteArray)).buffer], { type: Browser.getMimetype(name) }); + } + } catch(e) { + Runtime.warnOnce('Blob constructor present but fails: ' + e + '; falling back to blob builder'); + } + } + if (!b) { + var bb = new Browser.BlobBuilder(); + bb.append((new Uint8Array(byteArray)).buffer); // we need to pass a buffer, and must copy the array to get the right data range + b = bb.getBlob(); + } + var url = Browser.URLObject.createObjectURL(b); + var img = new Image(); + img.onload = function img_onload() { + assert(img.complete, 'Image ' + name + ' could not be decoded'); + var canvas = document.createElement('canvas'); + canvas.width = img.width; + canvas.height = img.height; + var ctx = canvas.getContext('2d'); + ctx.drawImage(img, 0, 0); + Module["preloadedImages"][name] = canvas; + Browser.URLObject.revokeObjectURL(url); + if (onload) onload(byteArray); + }; + img.onerror = function img_onerror(event) { + console.log('Image ' + url + ' could not be decoded'); + if (onerror) onerror(); + }; + img.src = url; + }; + Module['preloadPlugins'].push(imagePlugin); + + var audioPlugin = {}; + audioPlugin['canHandle'] = function audioPlugin_canHandle(name) { + return !Module.noAudioDecoding && name.substr(-4) in { '.ogg': 1, '.wav': 1, '.mp3': 1 }; + }; + audioPlugin['handle'] = function audioPlugin_handle(byteArray, name, onload, onerror) { + var done = false; + function finish(audio) { + if (done) return; + done = true; + Module["preloadedAudios"][name] = audio; + if (onload) onload(byteArray); + } + function fail() { + if (done) return; + done = true; + Module["preloadedAudios"][name] = new Audio(); // empty shim + if (onerror) onerror(); + } + if (Browser.hasBlobConstructor) { + try { + var b = new Blob([byteArray], { type: Browser.getMimetype(name) }); + } catch(e) { + return fail(); + } + var url = Browser.URLObject.createObjectURL(b); // XXX we never revoke this! + var audio = new Audio(); + audio.addEventListener('canplaythrough', function() { finish(audio) }, false); // use addEventListener due to chromium bug 124926 + audio.onerror = function audio_onerror(event) { + if (done) return; + console.log('warning: browser could not fully decode audio ' + name + ', trying slower base64 approach'); + function encode64(data) { + var BASE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; + var PAD = '='; + var ret = ''; + var leftchar = 0; + var leftbits = 0; + for (var i = 0; i < data.length; i++) { + leftchar = (leftchar << 8) | data[i]; + leftbits += 8; + while (leftbits >= 6) { + var curr = (leftchar >> (leftbits-6)) & 0x3f; + leftbits -= 6; + ret += BASE[curr]; + } + } + if (leftbits == 2) { + ret += BASE[(leftchar&3) << 4]; + ret += PAD + PAD; + } else if (leftbits == 4) { + ret += BASE[(leftchar&0xf) << 2]; + ret += PAD; + } + return ret; + } + audio.src = 'data:audio/x-' + name.substr(-3) + ';base64,' + encode64(byteArray); + finish(audio); // we don't wait for confirmation this worked - but it's worth trying + }; + audio.src = url; + // workaround for chrome bug 124926 - we do not always get oncanplaythrough or onerror + Browser.safeSetTimeout(function() { + finish(audio); // try to use it even though it is not necessarily ready to play + }, 10000); + } else { + return fail(); + } + }; + Module['preloadPlugins'].push(audioPlugin); + + // Canvas event setup + + var canvas = Module['canvas']; + function pointerLockChange() { + Browser.pointerLock = document['pointerLockElement'] === canvas || + document['mozPointerLockElement'] === canvas || + document['webkitPointerLockElement'] === canvas || + document['msPointerLockElement'] === canvas; + } + if (canvas) { + // forced aspect ratio can be enabled by defining 'forcedAspectRatio' on Module + // Module['forcedAspectRatio'] = 4 / 3; + + canvas.requestPointerLock = canvas['requestPointerLock'] || + canvas['mozRequestPointerLock'] || + canvas['webkitRequestPointerLock'] || + canvas['msRequestPointerLock'] || + function(){}; + canvas.exitPointerLock = document['exitPointerLock'] || + document['mozExitPointerLock'] || + document['webkitExitPointerLock'] || + document['msExitPointerLock'] || + function(){}; // no-op if function does not exist + canvas.exitPointerLock = canvas.exitPointerLock.bind(document); + + + document.addEventListener('pointerlockchange', pointerLockChange, false); + document.addEventListener('mozpointerlockchange', pointerLockChange, false); + document.addEventListener('webkitpointerlockchange', pointerLockChange, false); + document.addEventListener('mspointerlockchange', pointerLockChange, false); + + if (Module['elementPointerLock']) { + canvas.addEventListener("click", function(ev) { + if (!Browser.pointerLock && canvas.requestPointerLock) { + canvas.requestPointerLock(); + ev.preventDefault(); + } + }, false); + } + } + },createContext:function (canvas, useWebGL, setInModule, webGLContextAttributes) { + if (useWebGL && Module.ctx && canvas == Module.canvas) return Module.ctx; // no need to recreate GL context if it's already been created for this canvas. + + var ctx; + var contextHandle; + if (useWebGL) { + // For GLES2/desktop GL compatibility, adjust a few defaults to be different to WebGL defaults, so that they align better with the desktop defaults. + var contextAttributes = { + antialias: false, + alpha: false + }; + + if (webGLContextAttributes) { + for (var attribute in webGLContextAttributes) { + contextAttributes[attribute] = webGLContextAttributes[attribute]; + } + } + + contextHandle = GL.createContext(canvas, contextAttributes); + if (contextHandle) { + ctx = GL.getContext(contextHandle).GLctx; + } + // Set the background of the WebGL canvas to black + canvas.style.backgroundColor = "black"; + } else { + ctx = canvas.getContext('2d'); + } + + if (!ctx) return null; + + if (setInModule) { + if (!useWebGL) assert(typeof GLctx === 'undefined', 'cannot set in module if GLctx is used, but we are a non-GL context that would replace it'); + + Module.ctx = ctx; + if (useWebGL) GL.makeContextCurrent(contextHandle); + Module.useWebGL = useWebGL; + Browser.moduleContextCreatedCallbacks.forEach(function(callback) { callback() }); + Browser.init(); + } + return ctx; + },destroyContext:function (canvas, useWebGL, setInModule) {},fullScreenHandlersInstalled:false,lockPointer:undefined,resizeCanvas:undefined,requestFullScreen:function (lockPointer, resizeCanvas) { + Browser.lockPointer = lockPointer; + Browser.resizeCanvas = resizeCanvas; + if (typeof Browser.lockPointer === 'undefined') Browser.lockPointer = true; + if (typeof Browser.resizeCanvas === 'undefined') Browser.resizeCanvas = false; + + var canvas = Module['canvas']; + function fullScreenChange() { + Browser.isFullScreen = false; + var canvasContainer = canvas.parentNode; + if ((document['webkitFullScreenElement'] || document['webkitFullscreenElement'] || + document['mozFullScreenElement'] || document['mozFullscreenElement'] || + document['fullScreenElement'] || document['fullscreenElement'] || + document['msFullScreenElement'] || document['msFullscreenElement'] || + document['webkitCurrentFullScreenElement']) === canvasContainer) { + canvas.cancelFullScreen = document['cancelFullScreen'] || + document['mozCancelFullScreen'] || + document['webkitCancelFullScreen'] || + document['msExitFullscreen'] || + document['exitFullscreen'] || + function() {}; + canvas.cancelFullScreen = canvas.cancelFullScreen.bind(document); + if (Browser.lockPointer) canvas.requestPointerLock(); + Browser.isFullScreen = true; + if (Browser.resizeCanvas) Browser.setFullScreenCanvasSize(); + } else { + + // remove the full screen specific parent of the canvas again to restore the HTML structure from before going full screen + canvasContainer.parentNode.insertBefore(canvas, canvasContainer); + canvasContainer.parentNode.removeChild(canvasContainer); + + if (Browser.resizeCanvas) Browser.setWindowedCanvasSize(); + } + if (Module['onFullScreen']) Module['onFullScreen'](Browser.isFullScreen); + Browser.updateCanvasDimensions(canvas); + } + + if (!Browser.fullScreenHandlersInstalled) { + Browser.fullScreenHandlersInstalled = true; + document.addEventListener('fullscreenchange', fullScreenChange, false); + document.addEventListener('mozfullscreenchange', fullScreenChange, false); + document.addEventListener('webkitfullscreenchange', fullScreenChange, false); + document.addEventListener('MSFullscreenChange', fullScreenChange, false); + } + + // create a new parent to ensure the canvas has no siblings. this allows browsers to optimize full screen performance when its parent is the full screen root + var canvasContainer = document.createElement("div"); + canvas.parentNode.insertBefore(canvasContainer, canvas); + canvasContainer.appendChild(canvas); + + // use parent of canvas as full screen root to allow aspect ratio correction (Firefox stretches the root to screen size) + canvasContainer.requestFullScreen = canvasContainer['requestFullScreen'] || + canvasContainer['mozRequestFullScreen'] || + canvasContainer['msRequestFullscreen'] || + (canvasContainer['webkitRequestFullScreen'] ? function() { canvasContainer['webkitRequestFullScreen'](Element['ALLOW_KEYBOARD_INPUT']) } : null); + canvasContainer.requestFullScreen(); + },nextRAF:0,fakeRequestAnimationFrame:function (func) { + // try to keep 60fps between calls to here + var now = Date.now(); + if (Browser.nextRAF === 0) { + Browser.nextRAF = now + 1000/60; + } else { + while (now + 2 >= Browser.nextRAF) { // fudge a little, to avoid timer jitter causing us to do lots of delay:0 + Browser.nextRAF += 1000/60; + } + } + var delay = Math.max(Browser.nextRAF - now, 0); + setTimeout(func, delay); + },requestAnimationFrame:function requestAnimationFrame(func) { + if (typeof window === 'undefined') { // Provide fallback to setTimeout if window is undefined (e.g. in Node.js) + Browser.fakeRequestAnimationFrame(func); + } else { + if (!window.requestAnimationFrame) { + window.requestAnimationFrame = window['requestAnimationFrame'] || + window['mozRequestAnimationFrame'] || + window['webkitRequestAnimationFrame'] || + window['msRequestAnimationFrame'] || + window['oRequestAnimationFrame'] || + Browser.fakeRequestAnimationFrame; + } + window.requestAnimationFrame(func); + } + },safeCallback:function (func) { + return function() { + if (!ABORT) return func.apply(null, arguments); + }; + },safeRequestAnimationFrame:function (func) { + return Browser.requestAnimationFrame(function() { + if (!ABORT) func(); + }); + },safeSetTimeout:function (func, timeout) { + Module['noExitRuntime'] = true; + return setTimeout(function() { + if (!ABORT) func(); + }, timeout); + },safeSetInterval:function (func, timeout) { + Module['noExitRuntime'] = true; + return setInterval(function() { + if (!ABORT) func(); + }, timeout); + },getMimetype:function (name) { + return { + 'jpg': 'image/jpeg', + 'jpeg': 'image/jpeg', + 'png': 'image/png', + 'bmp': 'image/bmp', + 'ogg': 'audio/ogg', + 'wav': 'audio/wav', + 'mp3': 'audio/mpeg' + }[name.substr(name.lastIndexOf('.')+1)]; + },getUserMedia:function (func) { + if(!window.getUserMedia) { + window.getUserMedia = navigator['getUserMedia'] || + navigator['mozGetUserMedia']; + } + window.getUserMedia(func); + },getMovementX:function (event) { + return event['movementX'] || + event['mozMovementX'] || + event['webkitMovementX'] || + 0; + },getMovementY:function (event) { + return event['movementY'] || + event['mozMovementY'] || + event['webkitMovementY'] || + 0; + },getMouseWheelDelta:function (event) { + var delta = 0; + switch (event.type) { + case 'DOMMouseScroll': + delta = event.detail; + break; + case 'mousewheel': + delta = event.wheelDelta; + break; + case 'wheel': + delta = event['deltaY']; + break; + default: + throw 'unrecognized mouse wheel event: ' + event.type; + } + return delta; + },mouseX:0,mouseY:0,mouseMovementX:0,mouseMovementY:0,touches:{},lastTouches:{},calculateMouseEvent:function (event) { // event should be mousemove, mousedown or mouseup + if (Browser.pointerLock) { + // When the pointer is locked, calculate the coordinates + // based on the movement of the mouse. + // Workaround for Firefox bug 764498 + if (event.type != 'mousemove' && + ('mozMovementX' in event)) { + Browser.mouseMovementX = Browser.mouseMovementY = 0; + } else { + Browser.mouseMovementX = Browser.getMovementX(event); + Browser.mouseMovementY = Browser.getMovementY(event); + } + + // check if SDL is available + if (typeof SDL != "undefined") { + Browser.mouseX = SDL.mouseX + Browser.mouseMovementX; + Browser.mouseY = SDL.mouseY + Browser.mouseMovementY; + } else { + // just add the mouse delta to the current absolut mouse position + // FIXME: ideally this should be clamped against the canvas size and zero + Browser.mouseX += Browser.mouseMovementX; + Browser.mouseY += Browser.mouseMovementY; + } + } else { + // Otherwise, calculate the movement based on the changes + // in the coordinates. + var rect = Module["canvas"].getBoundingClientRect(); + var cw = Module["canvas"].width; + var ch = Module["canvas"].height; + + // Neither .scrollX or .pageXOffset are defined in a spec, but + // we prefer .scrollX because it is currently in a spec draft. + // (see: http://www.w3.org/TR/2013/WD-cssom-view-20131217/) + var scrollX = ((typeof window.scrollX !== 'undefined') ? window.scrollX : window.pageXOffset); + var scrollY = ((typeof window.scrollY !== 'undefined') ? window.scrollY : window.pageYOffset); + + if (event.type === 'touchstart' || event.type === 'touchend' || event.type === 'touchmove') { + var touch = event.touch; + if (touch === undefined) { + return; // the "touch" property is only defined in SDL + + } + var adjustedX = touch.pageX - (scrollX + rect.left); + var adjustedY = touch.pageY - (scrollY + rect.top); + + adjustedX = adjustedX * (cw / rect.width); + adjustedY = adjustedY * (ch / rect.height); + + var coords = { x: adjustedX, y: adjustedY }; + + if (event.type === 'touchstart') { + Browser.lastTouches[touch.identifier] = coords; + Browser.touches[touch.identifier] = coords; + } else if (event.type === 'touchend' || event.type === 'touchmove') { + Browser.lastTouches[touch.identifier] = Browser.touches[touch.identifier]; + Browser.touches[touch.identifier] = { x: adjustedX, y: adjustedY }; + } + return; + } + + var x = event.pageX - (scrollX + rect.left); + var y = event.pageY - (scrollY + rect.top); + + // the canvas might be CSS-scaled compared to its backbuffer; + // SDL-using content will want mouse coordinates in terms + // of backbuffer units. + x = x * (cw / rect.width); + y = y * (ch / rect.height); + + Browser.mouseMovementX = x - Browser.mouseX; + Browser.mouseMovementY = y - Browser.mouseY; + Browser.mouseX = x; + Browser.mouseY = y; + } + },xhrLoad:function (url, onload, onerror) { + var xhr = new XMLHttpRequest(); + xhr.open('GET', url, true); + xhr.responseType = 'arraybuffer'; + xhr.onload = function xhr_onload() { + if (xhr.status == 200 || (xhr.status == 0 && xhr.response)) { // file URLs can return 0 + onload(xhr.response); + } else { + onerror(); + } + }; + xhr.onerror = onerror; + xhr.send(null); + },asyncLoad:function (url, onload, onerror, noRunDep) { + Browser.xhrLoad(url, function(arrayBuffer) { + assert(arrayBuffer, 'Loading data file "' + url + '" failed (no arrayBuffer).'); + onload(new Uint8Array(arrayBuffer)); + if (!noRunDep) removeRunDependency('al ' + url); + }, function(event) { + if (onerror) { + onerror(); + } else { + throw 'Loading data file "' + url + '" failed.'; + } + }); + if (!noRunDep) addRunDependency('al ' + url); + },resizeListeners:[],updateResizeListeners:function () { + var canvas = Module['canvas']; + Browser.resizeListeners.forEach(function(listener) { + listener(canvas.width, canvas.height); + }); + },setCanvasSize:function (width, height, noUpdates) { + var canvas = Module['canvas']; + Browser.updateCanvasDimensions(canvas, width, height); + if (!noUpdates) Browser.updateResizeListeners(); + },windowedWidth:0,windowedHeight:0,setFullScreenCanvasSize:function () { + // check if SDL is available + if (typeof SDL != "undefined") { + var flags = HEAPU32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]; + flags = flags | 0x00800000; // set SDL_FULLSCREEN flag + HEAP32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]=flags + } + Browser.updateResizeListeners(); + },setWindowedCanvasSize:function () { + // check if SDL is available + if (typeof SDL != "undefined") { + var flags = HEAPU32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]; + flags = flags & ~0x00800000; // clear SDL_FULLSCREEN flag + HEAP32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]=flags + } + Browser.updateResizeListeners(); + },updateCanvasDimensions:function (canvas, wNative, hNative) { + if (wNative && hNative) { + canvas.widthNative = wNative; + canvas.heightNative = hNative; + } else { + wNative = canvas.widthNative; + hNative = canvas.heightNative; + } + var w = wNative; + var h = hNative; + if (Module['forcedAspectRatio'] && Module['forcedAspectRatio'] > 0) { + if (w/h < Module['forcedAspectRatio']) { + w = Math.round(h * Module['forcedAspectRatio']); + } else { + h = Math.round(w / Module['forcedAspectRatio']); + } + } + if (((document['webkitFullScreenElement'] || document['webkitFullscreenElement'] || + document['mozFullScreenElement'] || document['mozFullscreenElement'] || + document['fullScreenElement'] || document['fullscreenElement'] || + document['msFullScreenElement'] || document['msFullscreenElement'] || + document['webkitCurrentFullScreenElement']) === canvas.parentNode) && (typeof screen != 'undefined')) { + var factor = Math.min(screen.width / w, screen.height / h); + w = Math.round(w * factor); + h = Math.round(h * factor); + } + if (Browser.resizeCanvas) { + if (canvas.width != w) canvas.width = w; + if (canvas.height != h) canvas.height = h; + if (typeof canvas.style != 'undefined') { + canvas.style.removeProperty( "width"); + canvas.style.removeProperty("height"); + } + } else { + if (canvas.width != wNative) canvas.width = wNative; + if (canvas.height != hNative) canvas.height = hNative; + if (typeof canvas.style != 'undefined') { + if (w != wNative || h != hNative) { + canvas.style.setProperty( "width", w + "px", "important"); + canvas.style.setProperty("height", h + "px", "important"); + } else { + canvas.style.removeProperty( "width"); + canvas.style.removeProperty("height"); + } + } + } + },wgetRequests:{},nextWgetRequestHandle:0,getNextWgetRequestHandle:function () { + var handle = Browser.nextWgetRequestHandle; + Browser.nextWgetRequestHandle++; + return handle; + }}; + + function _time(ptr) { + var ret = (Date.now()/1000)|0; + if (ptr) { + HEAP32[((ptr)>>2)]=ret; + } + return ret; + } +___errno_state = Runtime.staticAlloc(4); HEAP32[((___errno_state)>>2)]=0; +Module["requestFullScreen"] = function Module_requestFullScreen(lockPointer, resizeCanvas) { Browser.requestFullScreen(lockPointer, resizeCanvas) }; + Module["requestAnimationFrame"] = function Module_requestAnimationFrame(func) { Browser.requestAnimationFrame(func) }; + Module["setCanvasSize"] = function Module_setCanvasSize(width, height, noUpdates) { Browser.setCanvasSize(width, height, noUpdates) }; + Module["pauseMainLoop"] = function Module_pauseMainLoop() { Browser.mainLoop.pause() }; + Module["resumeMainLoop"] = function Module_resumeMainLoop() { Browser.mainLoop.resume() }; + Module["getUserMedia"] = function Module_getUserMedia() { Browser.getUserMedia() } +FS.staticInit();__ATINIT__.unshift({ func: function() { if (!Module["noFSInit"] && !FS.init.initialized) FS.init() } });__ATMAIN__.push({ func: function() { FS.ignorePermissions = false } });__ATEXIT__.push({ func: function() { FS.quit() } });Module["FS_createFolder"] = FS.createFolder;Module["FS_createPath"] = FS.createPath;Module["FS_createDataFile"] = FS.createDataFile;Module["FS_createPreloadedFile"] = FS.createPreloadedFile;Module["FS_createLazyFile"] = FS.createLazyFile;Module["FS_createLink"] = FS.createLink;Module["FS_createDevice"] = FS.createDevice; +__ATINIT__.unshift({ func: function() { TTY.init() } });__ATEXIT__.push({ func: function() { TTY.shutdown() } });TTY.utf8 = new Runtime.UTF8Processor(); +if (ENVIRONMENT_IS_NODE) { var fs = require("fs"); NODEFS.staticInit(); } +STACK_BASE = STACKTOP = Runtime.alignMemory(STATICTOP); + +staticSealed = true; // seal the static portion of memory + +STACK_MAX = STACK_BASE + TOTAL_STACK; + +DYNAMIC_BASE = DYNAMICTOP = Runtime.alignMemory(STACK_MAX); + +assert(DYNAMIC_BASE < TOTAL_MEMORY, "TOTAL_MEMORY not big enough for stack"); + + var ctlz_i8 = allocate([8,7,6,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], "i8", ALLOC_DYNAMIC); + var cttz_i8 = allocate([8,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,7,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0], "i8", ALLOC_DYNAMIC); + + +Module.asmGlobalArg = { "Math": Math, "Int8Array": Int8Array, "Int16Array": Int16Array, "Int32Array": Int32Array, "Uint8Array": Uint8Array, "Uint16Array": Uint16Array, "Uint32Array": Uint32Array, "Float32Array": Float32Array, "Float64Array": Float64Array }; +Module.asmLibraryArg = { "abort": abort, "assert": assert, "min": Math_min, "_fflush": _fflush, "_sysconf": _sysconf, "_abort": _abort, "___setErrNo": ___setErrNo, "_sbrk": _sbrk, "_time": _time, "_emscripten_set_main_loop_timing": _emscripten_set_main_loop_timing, "_emscripten_memcpy_big": _emscripten_memcpy_big, "_emscripten_set_main_loop": _emscripten_set_main_loop, "___errno_location": ___errno_location, "STACKTOP": STACKTOP, "STACK_MAX": STACK_MAX, "tempDoublePtr": tempDoublePtr, "ABORT": ABORT, "cttz_i8": cttz_i8, "ctlz_i8": ctlz_i8, "NaN": NaN, "Infinity": Infinity }; +// EMSCRIPTEN_START_ASM +var asm = (function(global, env, buffer) { + 'use asm'; + + var HEAP8 = new global.Int8Array(buffer); + var HEAP16 = new global.Int16Array(buffer); + var HEAP32 = new global.Int32Array(buffer); + var HEAPU8 = new global.Uint8Array(buffer); + var HEAPU16 = new global.Uint16Array(buffer); + var HEAPU32 = new global.Uint32Array(buffer); + var HEAPF32 = new global.Float32Array(buffer); + var HEAPF64 = new global.Float64Array(buffer); + + + var STACKTOP=env.STACKTOP|0; + var STACK_MAX=env.STACK_MAX|0; + var tempDoublePtr=env.tempDoublePtr|0; + var ABORT=env.ABORT|0; + var cttz_i8=env.cttz_i8|0; + var ctlz_i8=env.ctlz_i8|0; + + var __THREW__ = 0; + var threwValue = 0; + var setjmpId = 0; + var undef = 0; + var nan = +env.NaN, inf = +env.Infinity; + var tempInt = 0, tempBigInt = 0, tempBigIntP = 0, tempBigIntS = 0, tempBigIntR = 0.0, tempBigIntI = 0, tempBigIntD = 0, tempValue = 0, tempDouble = 0.0; + + var tempRet0 = 0; + var tempRet1 = 0; + var tempRet2 = 0; + var tempRet3 = 0; + var tempRet4 = 0; + var tempRet5 = 0; + var tempRet6 = 0; + var tempRet7 = 0; + var tempRet8 = 0; + var tempRet9 = 0; + var Math_floor=global.Math.floor; + var Math_abs=global.Math.abs; + var Math_sqrt=global.Math.sqrt; + var Math_pow=global.Math.pow; + var Math_cos=global.Math.cos; + var Math_sin=global.Math.sin; + var Math_tan=global.Math.tan; + var Math_acos=global.Math.acos; + var Math_asin=global.Math.asin; + var Math_atan=global.Math.atan; + var Math_atan2=global.Math.atan2; + var Math_exp=global.Math.exp; + var Math_log=global.Math.log; + var Math_ceil=global.Math.ceil; + var Math_imul=global.Math.imul; + var abort=env.abort; + var assert=env.assert; + var Math_min=env.min; + var _fflush=env._fflush; + var _sysconf=env._sysconf; + var _abort=env._abort; + var ___setErrNo=env.___setErrNo; + var _sbrk=env._sbrk; + var _time=env._time; + var _emscripten_set_main_loop_timing=env._emscripten_set_main_loop_timing; + var _emscripten_memcpy_big=env._emscripten_memcpy_big; + var _emscripten_set_main_loop=env._emscripten_set_main_loop; + var ___errno_location=env.___errno_location; + var tempFloat = 0.0; + +// EMSCRIPTEN_START_FUNCS +function stackAlloc(size) { + size = size|0; + var ret = 0; + ret = STACKTOP; + STACKTOP = (STACKTOP + size)|0; +STACKTOP = (STACKTOP + 15)&-16; + + return ret|0; +} +function stackSave() { + return STACKTOP|0; +} +function stackRestore(top) { + top = top|0; + STACKTOP = top; +} + +function setThrew(threw, value) { + threw = threw|0; + value = value|0; + if ((__THREW__|0) == 0) { + __THREW__ = threw; + threwValue = value; + } +} +function copyTempFloat(ptr) { + ptr = ptr|0; + HEAP8[tempDoublePtr>>0] = HEAP8[ptr>>0]; + HEAP8[tempDoublePtr+1>>0] = HEAP8[ptr+1>>0]; + HEAP8[tempDoublePtr+2>>0] = HEAP8[ptr+2>>0]; + HEAP8[tempDoublePtr+3>>0] = HEAP8[ptr+3>>0]; +} +function copyTempDouble(ptr) { + ptr = ptr|0; + HEAP8[tempDoublePtr>>0] = HEAP8[ptr>>0]; + HEAP8[tempDoublePtr+1>>0] = HEAP8[ptr+1>>0]; + HEAP8[tempDoublePtr+2>>0] = HEAP8[ptr+2>>0]; + HEAP8[tempDoublePtr+3>>0] = HEAP8[ptr+3>>0]; + HEAP8[tempDoublePtr+4>>0] = HEAP8[ptr+4>>0]; + HEAP8[tempDoublePtr+5>>0] = HEAP8[ptr+5>>0]; + HEAP8[tempDoublePtr+6>>0] = HEAP8[ptr+6>>0]; + HEAP8[tempDoublePtr+7>>0] = HEAP8[ptr+7>>0]; +} +function setTempRet0(value) { + value = value|0; + tempRet0 = value; +} +function getTempRet0() { + return tempRet0|0; +} + +function _crypto_verify_32_ref($x,$y) { + $x = $x|0; + $y = $y|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0; + var $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; + var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; + var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; + var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$x>>0]|0; + $1 = HEAP8[$y>>0]|0; + $2 = $1 ^ $0; + $3 = (($x) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = (($y) + 1|0); + $6 = HEAP8[$5>>0]|0; + $7 = $6 ^ $4; + $8 = $7 | $2; + $9 = (($x) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = (($y) + 2|0); + $12 = HEAP8[$11>>0]|0; + $13 = $12 ^ $10; + $14 = $8 | $13; + $15 = (($x) + 3|0); + $16 = HEAP8[$15>>0]|0; + $17 = (($y) + 3|0); + $18 = HEAP8[$17>>0]|0; + $19 = $18 ^ $16; + $20 = $14 | $19; + $21 = (($x) + 4|0); + $22 = HEAP8[$21>>0]|0; + $23 = (($y) + 4|0); + $24 = HEAP8[$23>>0]|0; + $25 = $24 ^ $22; + $26 = $20 | $25; + $27 = (($x) + 5|0); + $28 = HEAP8[$27>>0]|0; + $29 = (($y) + 5|0); + $30 = HEAP8[$29>>0]|0; + $31 = $30 ^ $28; + $32 = $26 | $31; + $33 = (($x) + 6|0); + $34 = HEAP8[$33>>0]|0; + $35 = (($y) + 6|0); + $36 = HEAP8[$35>>0]|0; + $37 = $36 ^ $34; + $38 = $32 | $37; + $39 = (($x) + 7|0); + $40 = HEAP8[$39>>0]|0; + $41 = (($y) + 7|0); + $42 = HEAP8[$41>>0]|0; + $43 = $42 ^ $40; + $44 = $38 | $43; + $45 = (($x) + 8|0); + $46 = HEAP8[$45>>0]|0; + $47 = (($y) + 8|0); + $48 = HEAP8[$47>>0]|0; + $49 = $48 ^ $46; + $50 = $44 | $49; + $51 = (($x) + 9|0); + $52 = HEAP8[$51>>0]|0; + $53 = (($y) + 9|0); + $54 = HEAP8[$53>>0]|0; + $55 = $54 ^ $52; + $56 = $50 | $55; + $57 = (($x) + 10|0); + $58 = HEAP8[$57>>0]|0; + $59 = (($y) + 10|0); + $60 = HEAP8[$59>>0]|0; + $61 = $60 ^ $58; + $62 = $56 | $61; + $63 = (($x) + 11|0); + $64 = HEAP8[$63>>0]|0; + $65 = (($y) + 11|0); + $66 = HEAP8[$65>>0]|0; + $67 = $66 ^ $64; + $68 = $62 | $67; + $69 = (($x) + 12|0); + $70 = HEAP8[$69>>0]|0; + $71 = (($y) + 12|0); + $72 = HEAP8[$71>>0]|0; + $73 = $72 ^ $70; + $74 = $68 | $73; + $75 = (($x) + 13|0); + $76 = HEAP8[$75>>0]|0; + $77 = (($y) + 13|0); + $78 = HEAP8[$77>>0]|0; + $79 = $78 ^ $76; + $80 = $74 | $79; + $81 = (($x) + 14|0); + $82 = HEAP8[$81>>0]|0; + $83 = (($y) + 14|0); + $84 = HEAP8[$83>>0]|0; + $85 = $84 ^ $82; + $86 = $80 | $85; + $87 = (($x) + 15|0); + $88 = HEAP8[$87>>0]|0; + $89 = (($y) + 15|0); + $90 = HEAP8[$89>>0]|0; + $91 = $90 ^ $88; + $92 = $86 | $91; + $93 = (($x) + 16|0); + $94 = HEAP8[$93>>0]|0; + $95 = (($y) + 16|0); + $96 = HEAP8[$95>>0]|0; + $97 = $96 ^ $94; + $98 = $92 | $97; + $99 = (($x) + 17|0); + $100 = HEAP8[$99>>0]|0; + $101 = (($y) + 17|0); + $102 = HEAP8[$101>>0]|0; + $103 = $102 ^ $100; + $104 = $98 | $103; + $105 = (($x) + 18|0); + $106 = HEAP8[$105>>0]|0; + $107 = (($y) + 18|0); + $108 = HEAP8[$107>>0]|0; + $109 = $108 ^ $106; + $110 = $104 | $109; + $111 = (($x) + 19|0); + $112 = HEAP8[$111>>0]|0; + $113 = (($y) + 19|0); + $114 = HEAP8[$113>>0]|0; + $115 = $114 ^ $112; + $116 = $110 | $115; + $117 = (($x) + 20|0); + $118 = HEAP8[$117>>0]|0; + $119 = (($y) + 20|0); + $120 = HEAP8[$119>>0]|0; + $121 = $120 ^ $118; + $122 = $116 | $121; + $123 = (($x) + 21|0); + $124 = HEAP8[$123>>0]|0; + $125 = (($y) + 21|0); + $126 = HEAP8[$125>>0]|0; + $127 = $126 ^ $124; + $128 = $122 | $127; + $129 = (($x) + 22|0); + $130 = HEAP8[$129>>0]|0; + $131 = (($y) + 22|0); + $132 = HEAP8[$131>>0]|0; + $133 = $132 ^ $130; + $134 = $128 | $133; + $135 = (($x) + 23|0); + $136 = HEAP8[$135>>0]|0; + $137 = (($y) + 23|0); + $138 = HEAP8[$137>>0]|0; + $139 = $138 ^ $136; + $140 = $134 | $139; + $141 = (($x) + 24|0); + $142 = HEAP8[$141>>0]|0; + $143 = (($y) + 24|0); + $144 = HEAP8[$143>>0]|0; + $145 = $144 ^ $142; + $146 = $140 | $145; + $147 = (($x) + 25|0); + $148 = HEAP8[$147>>0]|0; + $149 = (($y) + 25|0); + $150 = HEAP8[$149>>0]|0; + $151 = $150 ^ $148; + $152 = $146 | $151; + $153 = (($x) + 26|0); + $154 = HEAP8[$153>>0]|0; + $155 = (($y) + 26|0); + $156 = HEAP8[$155>>0]|0; + $157 = $156 ^ $154; + $158 = $152 | $157; + $159 = (($x) + 27|0); + $160 = HEAP8[$159>>0]|0; + $161 = (($y) + 27|0); + $162 = HEAP8[$161>>0]|0; + $163 = $162 ^ $160; + $164 = $158 | $163; + $165 = (($x) + 28|0); + $166 = HEAP8[$165>>0]|0; + $167 = (($y) + 28|0); + $168 = HEAP8[$167>>0]|0; + $169 = $168 ^ $166; + $170 = $164 | $169; + $171 = (($x) + 29|0); + $172 = HEAP8[$171>>0]|0; + $173 = (($y) + 29|0); + $174 = HEAP8[$173>>0]|0; + $175 = $174 ^ $172; + $176 = $170 | $175; + $177 = (($x) + 30|0); + $178 = HEAP8[$177>>0]|0; + $179 = (($y) + 30|0); + $180 = HEAP8[$179>>0]|0; + $181 = $180 ^ $178; + $182 = $176 | $181; + $183 = (($x) + 31|0); + $184 = HEAP8[$183>>0]|0; + $185 = (($y) + 31|0); + $186 = HEAP8[$185>>0]|0; + $187 = $186 ^ $184; + $188 = $182 | $187; + $189 = $188&255; + $190 = (($189) + 511)|0; + $191 = $190 >>> 8; + $192 = $191 & 1; + $193 = (($192) + -1)|0; + STACKTOP = sp;return ($193|0); +} +function _curve25519_sign($signature_out,$curve25519_privkey,$msg,$msg_len) { + $signature_out = $signature_out|0; + $curve25519_privkey = $curve25519_privkey|0; + $msg = $msg|0; + $msg_len = $msg_len|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $ed_keypair = 0, $ed_pubkey_point = 0, $sigbuf_out_len = 0, dest = 0; + var label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 240|0; + $ed_pubkey_point = sp + 8|0; + $ed_keypair = sp + 168|0; + $sigbuf_out_len = sp; + $0 = (($msg_len) + 64)|0; + $1 = STACKTOP; STACKTOP = STACKTOP + ((((1*$0)|0)+15)&-16)|0;; + $2 = $sigbuf_out_len; + $3 = $2; + HEAP32[$3>>2] = 0; + $4 = (($2) + 4)|0; + $5 = $4; + HEAP32[$5>>2] = 0; + dest=$ed_keypair+0|0; src=$curve25519_privkey+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _crypto_sign_ed25519_ref10_ge_scalarmult_base($ed_pubkey_point,$curve25519_privkey); + $6 = (($ed_keypair) + 32|0); + _crypto_sign_ed25519_ref10_ge_p3_tobytes($6,$ed_pubkey_point); + $7 = (($ed_keypair) + 63|0); + $8 = HEAP8[$7>>0]|0; + $9 = $8&255; + $10 = $9 & 128; + (_crypto_sign_modified($1,$sigbuf_out_len,$msg,$msg_len,0,$ed_keypair)|0); + dest=$signature_out+0|0; src=$1+0|0; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $11 = (($signature_out) + 63|0); + $12 = HEAP8[$11>>0]|0; + $13 = $12&255; + $14 = $13 | $10; + $15 = $14&255; + HEAP8[$11>>0] = $15; + STACKTOP = sp;return; +} +function _curve25519_verify($signature,$curve25519_pubkey,$msg,$msg_len) { + $signature = $signature|0; + $curve25519_pubkey = $curve25519_pubkey|0; + $msg = $msg|0; + $msg_len = $msg_len|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $ed_pubkey = 0, $ed_y = 0; + var $inv_mont_x_plus_one = 0, $mont_x = 0, $mont_x_minus_one = 0, $mont_x_plus_one = 0, $one = 0, $some_retval = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 288|0; + $mont_x = sp + 208|0; + $mont_x_minus_one = sp + 168|0; + $mont_x_plus_one = sp + 128|0; + $inv_mont_x_plus_one = sp + 88|0; + $one = sp + 48|0; + $ed_y = sp + 8|0; + $ed_pubkey = sp + 248|0; + $some_retval = sp; + $0 = (($msg_len) + 64)|0; + $1 = STACKTOP; STACKTOP = STACKTOP + ((((1*$0)|0)+15)&-16)|0;; + $2 = STACKTOP; STACKTOP = STACKTOP + ((((1*$0)|0)+15)&-16)|0;; + _crypto_sign_ed25519_ref10_fe_frombytes($mont_x,$curve25519_pubkey); + _crypto_sign_ed25519_ref10_fe_1($one); + _crypto_sign_ed25519_ref10_fe_sub($mont_x_minus_one,$mont_x,$one); + _crypto_sign_ed25519_ref10_fe_add($mont_x_plus_one,$mont_x,$one); + _crypto_sign_ed25519_ref10_fe_invert($inv_mont_x_plus_one,$mont_x_plus_one); + _crypto_sign_ed25519_ref10_fe_mul($ed_y,$mont_x_minus_one,$inv_mont_x_plus_one); + _crypto_sign_ed25519_ref10_fe_tobytes($ed_pubkey,$ed_y); + $3 = (($signature) + 63|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = $5 & 128; + $7 = (($ed_pubkey) + 31|0); + $8 = HEAP8[$7>>0]|0; + $9 = $8&255; + $10 = $9 | $6; + $11 = $10&255; + HEAP8[$7>>0] = $11; + $12 = HEAP8[$3>>0]|0; + $13 = $12&255; + $14 = $13 & 127; + $15 = $14&255; + HEAP8[$3>>0] = $15; + dest=$1+0|0; src=$signature+0|0; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $16 = (($1) + 64|0); + _memcpy(($16|0),($msg|0),($msg_len|0))|0; + $17 = (_crypto_sign_edwards25519sha512batch_ref10_open($2,$some_retval,$1,$0,0,$ed_pubkey)|0); + STACKTOP = sp;return ($17|0); +} +function _crypto_hash_sha512_ref($output,$input,$0,$1) { + $output = $output|0; + $input = $input|0; + $0 = $0|0; + $1 = $1|0; + var $ctx = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 208|0; + $ctx = sp; + _sph_sha512_init($ctx); + _sph_sha384($ctx,$input,$0); + _sph_sha512_close($ctx,$output); + STACKTOP = sp;return 0; +} +function _crypto_sign_modified($sm,$smlen,$m,$0,$1,$sk) { + $sm = $sm|0; + $smlen = $smlen|0; + $m = $m|0; + $0 = $0|0; + $1 = $1|0; + $sk = $sk|0; + var $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $R = 0, $hram = 0, $nonce = 0, $pk1 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 320|0; + $pk1 = sp + 288|0; + $nonce = sp + 224|0; + $hram = sp + 160|0; + $R = sp; + $2 = (($sk) + 32|0); + dest=$pk1+0|0; src=$2+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $3 = (_i64Add(($0|0),($1|0),64,0)|0); + $4 = tempRet0; + $5 = $smlen; + $6 = $5; + HEAP32[$6>>2] = $3; + $7 = (($5) + 4)|0; + $8 = $7; + HEAP32[$8>>2] = $4; + $9 = (($sm) + 64|0); + _memmove(($9|0),($m|0),($0|0))|0; + $10 = (($sm) + 32|0); + _memmove(($10|0),($sk|0),32)|0; + $11 = (_i64Add(($0|0),($1|0),32,0)|0); + $12 = tempRet0; + (_crypto_hash_sha512_ref($nonce,$10,$11,$12)|0); + dest=$10+0|0; src=$pk1+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _crypto_sign_ed25519_ref10_sc_reduce($nonce); + _crypto_sign_ed25519_ref10_ge_scalarmult_base($R,$nonce); + _crypto_sign_ed25519_ref10_ge_p3_tobytes($sm,$R); + (_crypto_hash_sha512_ref($hram,$sm,$3,$4)|0); + _crypto_sign_ed25519_ref10_sc_reduce($hram); + _crypto_sign_ed25519_ref10_sc_muladd($10,$hram,$sk,$nonce); + STACKTOP = sp;return 0; +} +function _curve25519_donna($mypublic,$secret,$basepoint) { + $mypublic = $mypublic|0; + $secret = $secret|0; + $basepoint = $basepoint|0; + var $bp = 0, $e = 0, $x = 0, $z = 0, $zmone = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 368|0; + $bp = sp + 248|0; + $x = sp + 168|0; + $z = sp + 80|0; + $zmone = sp; + $e = sp + 328|0; + dest=$e+0|0; src=$secret+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _fexpand($bp,$basepoint); + _cmult($x,$z,$e,$bp); + _crecip($zmone,$z); + _fmul($z,$x,$zmone); + _fcontract($mypublic,$z); + STACKTOP = sp;return 0; +} +function _fexpand($output,$input) { + $output = $output|0; + $input = $input|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $3 = 0, $30 = 0, $31 = 0; + var $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; + var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; + var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; + var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$input>>0]|0; + $1 = $0&255; + $2 = (($input) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($input) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + $15 = (($input) + 3|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16&255; + $18 = (_bitshift64Shl(($17|0),0,24)|0); + $19 = tempRet0; + $20 = $18 & 50331648; + $21 = $13 | $20; + $22 = $output; + $23 = $22; + HEAP32[$23>>2] = $21; + $24 = (($22) + 4)|0; + $25 = $24; + HEAP32[$25>>2] = $14; + $26 = HEAP8[$15>>0]|0; + $27 = $26&255; + $28 = (($input) + 4|0); + $29 = HEAP8[$28>>0]|0; + $30 = $29&255; + $31 = (_bitshift64Shl(($30|0),0,8)|0); + $32 = tempRet0; + $33 = $31 | $27; + $34 = (($input) + 5|0); + $35 = HEAP8[$34>>0]|0; + $36 = $35&255; + $37 = (_bitshift64Shl(($36|0),0,16)|0); + $38 = tempRet0; + $39 = $33 | $37; + $40 = $32 | $38; + $41 = (($input) + 6|0); + $42 = HEAP8[$41>>0]|0; + $43 = $42&255; + $44 = (_bitshift64Shl(($43|0),0,24)|0); + $45 = tempRet0; + $46 = $39 | $44; + $47 = $40 | $45; + $48 = (_bitshift64Lshr(($46|0),($47|0),2)|0); + $49 = tempRet0; + $50 = $48 & 33554431; + $51 = (($output) + 8|0); + $52 = $51; + $53 = $52; + HEAP32[$53>>2] = $50; + $54 = (($52) + 4)|0; + $55 = $54; + HEAP32[$55>>2] = 0; + $56 = HEAP8[$41>>0]|0; + $57 = $56&255; + $58 = (($input) + 7|0); + $59 = HEAP8[$58>>0]|0; + $60 = $59&255; + $61 = (_bitshift64Shl(($60|0),0,8)|0); + $62 = tempRet0; + $63 = $61 | $57; + $64 = (($input) + 8|0); + $65 = HEAP8[$64>>0]|0; + $66 = $65&255; + $67 = (_bitshift64Shl(($66|0),0,16)|0); + $68 = tempRet0; + $69 = $63 | $67; + $70 = $62 | $68; + $71 = (($input) + 9|0); + $72 = HEAP8[$71>>0]|0; + $73 = $72&255; + $74 = (_bitshift64Shl(($73|0),0,24)|0); + $75 = tempRet0; + $76 = $69 | $74; + $77 = $70 | $75; + $78 = (_bitshift64Lshr(($76|0),($77|0),3)|0); + $79 = tempRet0; + $80 = $78 & 67108863; + $81 = (($output) + 16|0); + $82 = $81; + $83 = $82; + HEAP32[$83>>2] = $80; + $84 = (($82) + 4)|0; + $85 = $84; + HEAP32[$85>>2] = 0; + $86 = HEAP8[$71>>0]|0; + $87 = $86&255; + $88 = (($input) + 10|0); + $89 = HEAP8[$88>>0]|0; + $90 = $89&255; + $91 = (_bitshift64Shl(($90|0),0,8)|0); + $92 = tempRet0; + $93 = $91 | $87; + $94 = (($input) + 11|0); + $95 = HEAP8[$94>>0]|0; + $96 = $95&255; + $97 = (_bitshift64Shl(($96|0),0,16)|0); + $98 = tempRet0; + $99 = $93 | $97; + $100 = $92 | $98; + $101 = (($input) + 12|0); + $102 = HEAP8[$101>>0]|0; + $103 = $102&255; + $104 = (_bitshift64Shl(($103|0),0,24)|0); + $105 = tempRet0; + $106 = $99 | $104; + $107 = $100 | $105; + $108 = (_bitshift64Lshr(($106|0),($107|0),5)|0); + $109 = tempRet0; + $110 = $108 & 33554431; + $111 = (($output) + 24|0); + $112 = $111; + $113 = $112; + HEAP32[$113>>2] = $110; + $114 = (($112) + 4)|0; + $115 = $114; + HEAP32[$115>>2] = 0; + $116 = HEAP8[$101>>0]|0; + $117 = $116&255; + $118 = (($input) + 13|0); + $119 = HEAP8[$118>>0]|0; + $120 = $119&255; + $121 = (_bitshift64Shl(($120|0),0,8)|0); + $122 = tempRet0; + $123 = $121 | $117; + $124 = (($input) + 14|0); + $125 = HEAP8[$124>>0]|0; + $126 = $125&255; + $127 = (_bitshift64Shl(($126|0),0,16)|0); + $128 = tempRet0; + $129 = $123 | $127; + $130 = $122 | $128; + $131 = (($input) + 15|0); + $132 = HEAP8[$131>>0]|0; + $133 = $132&255; + $134 = (_bitshift64Shl(($133|0),0,24)|0); + $135 = tempRet0; + $136 = $129 | $134; + $137 = $130 | $135; + $138 = (_bitshift64Lshr(($136|0),($137|0),6)|0); + $139 = tempRet0; + $140 = $138 & 67108863; + $141 = (($output) + 32|0); + $142 = $141; + $143 = $142; + HEAP32[$143>>2] = $140; + $144 = (($142) + 4)|0; + $145 = $144; + HEAP32[$145>>2] = 0; + $146 = (($input) + 16|0); + $147 = HEAP8[$146>>0]|0; + $148 = $147&255; + $149 = (($input) + 17|0); + $150 = HEAP8[$149>>0]|0; + $151 = $150&255; + $152 = (_bitshift64Shl(($151|0),0,8)|0); + $153 = tempRet0; + $154 = $152 | $148; + $155 = (($input) + 18|0); + $156 = HEAP8[$155>>0]|0; + $157 = $156&255; + $158 = (_bitshift64Shl(($157|0),0,16)|0); + $159 = tempRet0; + $160 = $154 | $158; + $161 = $153 | $159; + $162 = (($input) + 19|0); + $163 = HEAP8[$162>>0]|0; + $164 = $163&255; + $165 = (_bitshift64Shl(($164|0),0,24)|0); + $166 = tempRet0; + $167 = $165 & 16777216; + $168 = $160 | $167; + $169 = (($output) + 40|0); + $170 = $169; + $171 = $170; + HEAP32[$171>>2] = $168; + $172 = (($170) + 4)|0; + $173 = $172; + HEAP32[$173>>2] = $161; + $174 = HEAP8[$162>>0]|0; + $175 = $174&255; + $176 = (($input) + 20|0); + $177 = HEAP8[$176>>0]|0; + $178 = $177&255; + $179 = (_bitshift64Shl(($178|0),0,8)|0); + $180 = tempRet0; + $181 = $179 | $175; + $182 = (($input) + 21|0); + $183 = HEAP8[$182>>0]|0; + $184 = $183&255; + $185 = (_bitshift64Shl(($184|0),0,16)|0); + $186 = tempRet0; + $187 = $181 | $185; + $188 = $180 | $186; + $189 = (($input) + 22|0); + $190 = HEAP8[$189>>0]|0; + $191 = $190&255; + $192 = (_bitshift64Shl(($191|0),0,24)|0); + $193 = tempRet0; + $194 = $187 | $192; + $195 = $188 | $193; + $196 = (_bitshift64Lshr(($194|0),($195|0),1)|0); + $197 = tempRet0; + $198 = $196 & 67108863; + $199 = (($output) + 48|0); + $200 = $199; + $201 = $200; + HEAP32[$201>>2] = $198; + $202 = (($200) + 4)|0; + $203 = $202; + HEAP32[$203>>2] = 0; + $204 = HEAP8[$189>>0]|0; + $205 = $204&255; + $206 = (($input) + 23|0); + $207 = HEAP8[$206>>0]|0; + $208 = $207&255; + $209 = (_bitshift64Shl(($208|0),0,8)|0); + $210 = tempRet0; + $211 = $209 | $205; + $212 = (($input) + 24|0); + $213 = HEAP8[$212>>0]|0; + $214 = $213&255; + $215 = (_bitshift64Shl(($214|0),0,16)|0); + $216 = tempRet0; + $217 = $211 | $215; + $218 = $210 | $216; + $219 = (($input) + 25|0); + $220 = HEAP8[$219>>0]|0; + $221 = $220&255; + $222 = (_bitshift64Shl(($221|0),0,24)|0); + $223 = tempRet0; + $224 = $217 | $222; + $225 = $218 | $223; + $226 = (_bitshift64Lshr(($224|0),($225|0),3)|0); + $227 = tempRet0; + $228 = $226 & 33554431; + $229 = (($output) + 56|0); + $230 = $229; + $231 = $230; + HEAP32[$231>>2] = $228; + $232 = (($230) + 4)|0; + $233 = $232; + HEAP32[$233>>2] = 0; + $234 = HEAP8[$219>>0]|0; + $235 = $234&255; + $236 = (($input) + 26|0); + $237 = HEAP8[$236>>0]|0; + $238 = $237&255; + $239 = (_bitshift64Shl(($238|0),0,8)|0); + $240 = tempRet0; + $241 = $239 | $235; + $242 = (($input) + 27|0); + $243 = HEAP8[$242>>0]|0; + $244 = $243&255; + $245 = (_bitshift64Shl(($244|0),0,16)|0); + $246 = tempRet0; + $247 = $241 | $245; + $248 = $240 | $246; + $249 = (($input) + 28|0); + $250 = HEAP8[$249>>0]|0; + $251 = $250&255; + $252 = (_bitshift64Shl(($251|0),0,24)|0); + $253 = tempRet0; + $254 = $247 | $252; + $255 = $248 | $253; + $256 = (_bitshift64Lshr(($254|0),($255|0),4)|0); + $257 = tempRet0; + $258 = $256 & 67108863; + $259 = (($output) + 64|0); + $260 = $259; + $261 = $260; + HEAP32[$261>>2] = $258; + $262 = (($260) + 4)|0; + $263 = $262; + HEAP32[$263>>2] = 0; + $264 = HEAP8[$249>>0]|0; + $265 = $264&255; + $266 = (($input) + 29|0); + $267 = HEAP8[$266>>0]|0; + $268 = $267&255; + $269 = (_bitshift64Shl(($268|0),0,8)|0); + $270 = tempRet0; + $271 = $269 | $265; + $272 = (($input) + 30|0); + $273 = HEAP8[$272>>0]|0; + $274 = $273&255; + $275 = (_bitshift64Shl(($274|0),0,16)|0); + $276 = tempRet0; + $277 = $271 | $275; + $278 = $270 | $276; + $279 = (($input) + 31|0); + $280 = HEAP8[$279>>0]|0; + $281 = $280&255; + $282 = (_bitshift64Shl(($281|0),0,24)|0); + $283 = tempRet0; + $284 = $277 | $282; + $285 = $278 | $283; + $286 = (_bitshift64Lshr(($284|0),($285|0),6)|0); + $287 = tempRet0; + $288 = $286 & 33554431; + $289 = (($output) + 72|0); + $290 = $289; + $291 = $290; + HEAP32[$291>>2] = $288; + $292 = (($290) + 4)|0; + $293 = $292; + HEAP32[$293>>2] = 0; + STACKTOP = sp;return; +} +function _cmult($resultx,$resultz,$n,$q) { + $resultx = $resultx|0; + $resultz = $resultz|0; + $n = $n|0; + $q = $q|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $3 = 0, $4 = 0; + var $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $a = 0, $b = 0, $byte$09 = 0, $c = 0, $d = 0, $e = 0, $exitcond = 0, $exitcond20 = 0, $f = 0, $g = 0, $h = 0, $i$018 = 0, $j$08 = 0, $nqpqx$019 = 0, $nqpqx$110 = 0; + var $nqpqx$110$phi = 0, $nqpqx2$014 = 0, $nqpqx2$14 = 0, $nqpqx2$14$phi = 0, $nqpqz$013 = 0, $nqpqz$13 = 0, $nqpqz$13$phi = 0, $nqpqz2$015 = 0, $nqpqz2$15 = 0, $nqpqz2$15$phi = 0, $nqx$011 = 0, $nqx$11 = 0, $nqx$11$phi = 0, $nqx2$016 = 0, $nqx2$16 = 0, $nqx2$16$phi = 0, $nqz$012 = 0, $nqz$12 = 0, $nqz$12$phi = 0, $nqz2$017 = 0; + var $nqz2$17 = 0, $nqz2$17$phi = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 1216|0; + $a = sp + 1064|0; + $b = sp + 912|0; + $c = sp + 760|0; + $d = sp + 608|0; + $e = sp + 456|0; + $f = sp + 304|0; + $g = sp + 152|0; + $h = sp; + _memset(($a|0),0,152)|0; + _memset(($b|0),0,152)|0; + $0 = $b; + $1 = $0; + HEAP32[$1>>2] = 1; + $2 = (($0) + 4)|0; + $3 = $2; + HEAP32[$3>>2] = 0; + _memset(($c|0),0,152)|0; + $4 = $c; + $5 = $4; + HEAP32[$5>>2] = 1; + $6 = (($4) + 4)|0; + $7 = $6; + HEAP32[$7>>2] = 0; + _memset(($d|0),0,152)|0; + _memset(($e|0),0,152)|0; + _memset(($f|0),0,152)|0; + $8 = $f; + $9 = $8; + HEAP32[$9>>2] = 1; + $10 = (($8) + 4)|0; + $11 = $10; + HEAP32[$11>>2] = 0; + _memset(($g|0),0,152)|0; + _memset(($h|0),0,152)|0; + $12 = $h; + $13 = $12; + HEAP32[$13>>2] = 1; + $14 = (($12) + 4)|0; + $15 = $14; + HEAP32[$15>>2] = 0; + dest=$a+0|0; src=$q+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + $i$018 = 0;$nqpqx$019 = $a;$nqpqx2$014 = $e;$nqpqz$013 = $b;$nqpqz2$015 = $f;$nqx$011 = $c;$nqx2$016 = $g;$nqz$012 = $d;$nqz2$017 = $h; + while(1) { + $16 = (31 - ($i$018))|0; + $17 = (($n) + ($16)|0); + $18 = HEAP8[$17>>0]|0; + $byte$09 = $18;$j$08 = 0;$nqpqx$110 = $nqpqx$019;$nqpqx2$14 = $nqpqx2$014;$nqpqz$13 = $nqpqz$013;$nqpqz2$15 = $nqpqz2$015;$nqx$11 = $nqx$011;$nqx2$16 = $nqx2$016;$nqz$12 = $nqz$012;$nqz2$17 = $nqz2$017; + while(1) { + $19 = $byte$09&255; + $20 = $19 >>> 7; + _swap_conditional($nqx$11,$nqpqx$110,$20,0); + _swap_conditional($nqz$12,$nqpqz$13,$20,0); + _fmonty($nqx2$16,$nqz2$17,$nqpqx2$14,$nqpqz2$15,$nqx$11,$nqz$12,$nqpqx$110,$nqpqz$13,$q); + _swap_conditional($nqx2$16,$nqpqx2$14,$20,0); + _swap_conditional($nqz2$17,$nqpqz2$15,$20,0); + $21 = $19 << 1; + $22 = $21&255; + $23 = (($j$08) + 1)|0; + $exitcond = ($23|0)==(8); + if ($exitcond) { + break; + } else { + $nqz2$17$phi = $nqz$12;$nqz$12$phi = $nqz2$17;$nqx2$16$phi = $nqx$11;$nqx$11$phi = $nqx2$16;$nqpqz2$15$phi = $nqpqz$13;$nqpqz$13$phi = $nqpqz2$15;$nqpqx2$14$phi = $nqpqx$110;$nqpqx$110$phi = $nqpqx2$14;$byte$09 = $22;$j$08 = $23;$nqz2$17 = $nqz2$17$phi;$nqz$12 = $nqz$12$phi;$nqx2$16 = $nqx2$16$phi;$nqx$11 = $nqx$11$phi;$nqpqz2$15 = $nqpqz2$15$phi;$nqpqz$13 = $nqpqz$13$phi;$nqpqx2$14 = $nqpqx2$14$phi;$nqpqx$110 = $nqpqx$110$phi; + } + } + $24 = (($i$018) + 1)|0; + $exitcond20 = ($24|0)==(32); + if ($exitcond20) { + break; + } else { + $i$018 = $24;$nqpqx$019 = $nqpqx2$14;$nqpqx2$014 = $nqpqx$110;$nqpqz$013 = $nqpqz2$15;$nqpqz2$015 = $nqpqz$13;$nqx$011 = $nqx2$16;$nqx2$016 = $nqx$11;$nqz$012 = $nqz2$17;$nqz2$017 = $nqz$12; + } + } + dest=$resultx+0|0; src=$nqx2$16+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + dest=$resultz+0|0; src=$nqz2$17+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _crecip($out,$z) { + $out = $out|0; + $z = $z|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $i$33 = 0, $i$42 = 0, $i$51 = 0, $t0 = 0, $t1 = 0, $z11 = 0, $z2 = 0, $z2_100_0 = 0, $z2_10_0 = 0, $z2_20_0 = 0, $z2_50_0 = 0, $z2_5_0 = 0, $z9 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 800|0; + $z2 = sp + 720|0; + $z9 = sp + 640|0; + $z11 = sp + 560|0; + $z2_5_0 = sp + 480|0; + $z2_10_0 = sp + 400|0; + $z2_20_0 = sp + 320|0; + $z2_50_0 = sp + 240|0; + $z2_100_0 = sp + 160|0; + $t0 = sp + 80|0; + $t1 = sp; + _fsquare($z2,$z); + _fsquare($t1,$z2); + _fsquare($t0,$t1); + _fmul($z9,$t0,$z); + _fmul($z11,$z9,$z2); + _fsquare($t0,$z11); + _fmul($z2_5_0,$t0,$z9); + _fsquare($t0,$z2_5_0); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fmul($z2_10_0,$t0,$z2_5_0); + _fsquare($t0,$z2_10_0); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fmul($z2_20_0,$t1,$z2_10_0); + _fsquare($t0,$z2_20_0); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fmul($t0,$t1,$z2_20_0); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fmul($z2_50_0,$t0,$z2_10_0); + _fsquare($t0,$z2_50_0); + _fsquare($t1,$t0); + $i$33 = 2; + while(1) { + _fsquare($t0,$t1); + _fsquare($t1,$t0); + $0 = (($i$33) + 2)|0; + $1 = ($0|0)<(50); + if ($1) { + $i$33 = $0; + } else { + break; + } + } + _fmul($z2_100_0,$t1,$z2_50_0); + _fsquare($t1,$z2_100_0); + _fsquare($t0,$t1); + $i$42 = 2; + while(1) { + _fsquare($t1,$t0); + _fsquare($t0,$t1); + $2 = (($i$42) + 2)|0; + $3 = ($2|0)<(100); + if ($3) { + $i$42 = $2; + } else { + break; + } + } + _fmul($t1,$t0,$z2_100_0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + $i$51 = 2; + while(1) { + _fsquare($t0,$t1); + _fsquare($t1,$t0); + $4 = (($i$51) + 2)|0; + $5 = ($4|0)<(50); + if ($5) { + $i$51 = $4; + } else { + break; + } + } + _fmul($t0,$t1,$z2_50_0); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fmul($out,$t1,$z11); + STACKTOP = sp;return; +} +function _fmul($output,$in,$in2) { + $output = $output|0; + $in = $in|0; + $in2 = $in2|0; + var $t = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 160|0; + $t = sp; + _fproduct($t,$in,$in2); + _freduce_degree($t); + _freduce_coefficients($t); + dest=$output+0|0; src=$t+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _fcontract($output,$input_limbs) { + $output = $output|0; + $input_limbs = $input_limbs|0; + var $$pn = 0, $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0; + var $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0; + var $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0; + var $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0; + var $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0; + var $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0; + var $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0; + var $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0; + var $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0; + var $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0; + var $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0; + var $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0; + var $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0; + var $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0; + var $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0; + var $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0; + var $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0; + var $403 = 0, $404 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0; + var $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0; + var $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0; + var $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $exitcond = 0, $exitcond11 = 0, $exitcond11$1 = 0, $exitcond14 = 0, $exitcond14$1 = 0, $i$17 = 0, $i$17$1 = 0, $i$24 = 0, $i$24$1 = 0, $i$33 = 0, $input = 0, $mask$02 = 0, $mask$1 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $input = sp; + $0 = $input_limbs; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + HEAP32[$input>>2] = $2; + $6 = (($input_limbs) + 8|0); + $7 = $6; + $8 = $7; + $9 = HEAP32[$8>>2]|0; + $10 = (($7) + 4)|0; + $11 = $10; + $12 = HEAP32[$11>>2]|0; + $13 = (($input) + 4|0); + HEAP32[$13>>2] = $9; + $14 = (($input_limbs) + 16|0); + $15 = $14; + $16 = $15; + $17 = HEAP32[$16>>2]|0; + $18 = (($15) + 4)|0; + $19 = $18; + $20 = HEAP32[$19>>2]|0; + $21 = (($input) + 8|0); + HEAP32[$21>>2] = $17; + $22 = (($input_limbs) + 24|0); + $23 = $22; + $24 = $23; + $25 = HEAP32[$24>>2]|0; + $26 = (($23) + 4)|0; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (($input) + 12|0); + HEAP32[$29>>2] = $25; + $30 = (($input_limbs) + 32|0); + $31 = $30; + $32 = $31; + $33 = HEAP32[$32>>2]|0; + $34 = (($31) + 4)|0; + $35 = $34; + $36 = HEAP32[$35>>2]|0; + $37 = (($input) + 16|0); + HEAP32[$37>>2] = $33; + $38 = (($input_limbs) + 40|0); + $39 = $38; + $40 = $39; + $41 = HEAP32[$40>>2]|0; + $42 = (($39) + 4)|0; + $43 = $42; + $44 = HEAP32[$43>>2]|0; + $45 = (($input) + 20|0); + HEAP32[$45>>2] = $41; + $46 = (($input_limbs) + 48|0); + $47 = $46; + $48 = $47; + $49 = HEAP32[$48>>2]|0; + $50 = (($47) + 4)|0; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($input) + 24|0); + HEAP32[$53>>2] = $49; + $54 = (($input_limbs) + 56|0); + $55 = $54; + $56 = $55; + $57 = HEAP32[$56>>2]|0; + $58 = (($55) + 4)|0; + $59 = $58; + $60 = HEAP32[$59>>2]|0; + $61 = (($input) + 28|0); + HEAP32[$61>>2] = $57; + $62 = (($input_limbs) + 64|0); + $63 = $62; + $64 = $63; + $65 = HEAP32[$64>>2]|0; + $66 = (($63) + 4)|0; + $67 = $66; + $68 = HEAP32[$67>>2]|0; + $69 = (($input) + 32|0); + HEAP32[$69>>2] = $65; + $70 = (($input_limbs) + 72|0); + $71 = $70; + $72 = $71; + $73 = HEAP32[$72>>2]|0; + $74 = (($71) + 4)|0; + $75 = $74; + $76 = HEAP32[$75>>2]|0; + $77 = (($input) + 36|0); + HEAP32[$77>>2] = $73; + $78 = (($input) + 36|0); + $i$17 = 0; + while(1) { + $79 = $i$17 & 1; + $80 = ($79|0)==(0); + $81 = (($input) + ($i$17<<2)|0); + $82 = HEAP32[$81>>2]|0; + $83 = $82 >> 31; + $84 = $83 & $82; + if ($80) { + $92 = $84 >> 26; + $93 = Math_imul($92, -67108864)|0; + $94 = (($93) + ($82))|0; + HEAP32[$81>>2] = $94; + $95 = (($i$17) + 1)|0; + $96 = (($input) + ($95<<2)|0); + $97 = HEAP32[$96>>2]|0; + $98 = (($97) + ($92))|0; + HEAP32[$96>>2] = $98; + } else { + $85 = $84 >> 25; + $86 = Math_imul($85, -33554432)|0; + $87 = (($86) + ($82))|0; + HEAP32[$81>>2] = $87; + $88 = (($i$17) + 1)|0; + $89 = (($input) + ($88<<2)|0); + $90 = HEAP32[$89>>2]|0; + $91 = (($90) + ($85))|0; + HEAP32[$89>>2] = $91; + } + $99 = (($i$17) + 1)|0; + $exitcond14 = ($99|0)==(9); + if ($exitcond14) { + break; + } else { + $i$17 = $99; + } + } + $100 = HEAP32[$78>>2]|0; + $101 = $100 >> 31; + $102 = $101 & $100; + $103 = $102 >> 25; + $104 = Math_imul($103, -33554432)|0; + $105 = (($104) + ($100))|0; + HEAP32[$78>>2] = $105; + $106 = HEAP32[$input>>2]|0; + $107 = ($103*19)|0; + $108 = (($107) + ($106))|0; + HEAP32[$input>>2] = $108; + $i$17$1 = 0; + while(1) { + $384 = $i$17$1 & 1; + $385 = ($384|0)==(0); + $386 = (($input) + ($i$17$1<<2)|0); + $387 = HEAP32[$386>>2]|0; + $388 = $387 >> 31; + $389 = $388 & $387; + if ($385) { + $397 = $389 >> 26; + $398 = Math_imul($397, -67108864)|0; + $399 = (($398) + ($387))|0; + HEAP32[$386>>2] = $399; + $400 = (($i$17$1) + 1)|0; + $401 = (($input) + ($400<<2)|0); + $402 = HEAP32[$401>>2]|0; + $403 = (($402) + ($397))|0; + HEAP32[$401>>2] = $403; + } else { + $390 = $389 >> 25; + $391 = Math_imul($390, -33554432)|0; + $392 = (($391) + ($387))|0; + HEAP32[$386>>2] = $392; + $393 = (($i$17$1) + 1)|0; + $394 = (($input) + ($393<<2)|0); + $395 = HEAP32[$394>>2]|0; + $396 = (($395) + ($390))|0; + HEAP32[$394>>2] = $396; + } + $404 = (($i$17$1) + 1)|0; + $exitcond14$1 = ($404|0)==(9); + if ($exitcond14$1) { + break; + } else { + $i$17$1 = $404; + } + } + $109 = HEAP32[$78>>2]|0; + $110 = $109 >> 31; + $111 = $110 & $109; + $112 = $111 >> 25; + $113 = Math_imul($112, -33554432)|0; + $114 = (($113) + ($109))|0; + HEAP32[$78>>2] = $114; + $115 = HEAP32[$input>>2]|0; + $116 = ($112*19)|0; + $117 = (($116) + ($115))|0; + $118 = $117 >> 31; + $119 = $118 & $117; + $120 = $119 >> 26; + $121 = Math_imul($120, -67108864)|0; + $122 = (($121) + ($117))|0; + HEAP32[$input>>2] = $122; + $123 = (($input) + 4|0); + $124 = HEAP32[$123>>2]|0; + $125 = (($120) + ($124))|0; + HEAP32[$123>>2] = $125; + $126 = (($input) + 36|0); + $i$24 = 0; + while(1) { + $127 = $i$24 & 1; + $128 = ($127|0)==(0); + $129 = (($input) + ($i$24<<2)|0); + $130 = HEAP32[$129>>2]|0; + if ($128) { + $137 = $130 >> 26; + $138 = $130 & 67108863; + HEAP32[$129>>2] = $138; + $139 = (($i$24) + 1)|0; + $140 = (($input) + ($139<<2)|0); + $141 = HEAP32[$140>>2]|0; + $142 = (($141) + ($137))|0; + HEAP32[$140>>2] = $142; + } else { + $131 = $130 >> 25; + $132 = $130 & 33554431; + HEAP32[$129>>2] = $132; + $133 = (($i$24) + 1)|0; + $134 = (($input) + ($133<<2)|0); + $135 = HEAP32[$134>>2]|0; + $136 = (($135) + ($131))|0; + HEAP32[$134>>2] = $136; + } + $143 = (($i$24) + 1)|0; + $exitcond11 = ($143|0)==(9); + if ($exitcond11) { + break; + } else { + $i$24 = $143; + } + } + $144 = HEAP32[$126>>2]|0; + $145 = $144 >> 25; + $146 = $144 & 33554431; + HEAP32[$126>>2] = $146; + $147 = ($145*19)|0; + $148 = HEAP32[$input>>2]|0; + $149 = (($147) + ($148))|0; + HEAP32[$input>>2] = $149; + $i$24$1 = 0; + while(1) { + $360 = $i$24$1 & 1; + $361 = ($360|0)==(0); + $362 = (($input) + ($i$24$1<<2)|0); + $363 = HEAP32[$362>>2]|0; + if ($361) { + $370 = $363 >> 26; + $371 = $363 & 67108863; + HEAP32[$362>>2] = $371; + $372 = (($i$24$1) + 1)|0; + $373 = (($input) + ($372<<2)|0); + $374 = HEAP32[$373>>2]|0; + $375 = (($374) + ($370))|0; + HEAP32[$373>>2] = $375; + } else { + $364 = $363 >> 25; + $365 = $363 & 33554431; + HEAP32[$362>>2] = $365; + $366 = (($i$24$1) + 1)|0; + $367 = (($input) + ($366<<2)|0); + $368 = HEAP32[$367>>2]|0; + $369 = (($368) + ($364))|0; + HEAP32[$367>>2] = $369; + } + $376 = (($i$24$1) + 1)|0; + $exitcond11$1 = ($376|0)==(9); + if ($exitcond11$1) { + break; + } else { + $i$24$1 = $376; + } + } + $377 = HEAP32[$126>>2]|0; + $378 = $377 >> 25; + $379 = $377 & 33554431; + HEAP32[$126>>2] = $379; + $380 = ($378*19)|0; + $381 = HEAP32[$input>>2]|0; + $382 = (($380) + ($381))|0; + HEAP32[$input>>2] = $382; + $383 = (_s32_gte($382)|0); + $i$33 = 1;$mask$02 = $383; + while(1) { + $150 = $i$33 & 1; + $151 = ($150|0)==(0); + $152 = (($input) + ($i$33<<2)|0); + $153 = HEAP32[$152>>2]|0; + if ($151) { + $155 = (_s32_eq($153,67108863)|0); + $$pn = $155; + } else { + $154 = (_s32_eq($153,33554431)|0); + $$pn = $154; + } + $mask$1 = $$pn & $mask$02; + $156 = (($i$33) + 1)|0; + $exitcond = ($156|0)==(10); + if ($exitcond) { + break; + } else { + $i$33 = $156;$mask$02 = $mask$1; + } + } + $157 = $mask$1 & 67108845; + $158 = HEAP32[$input>>2]|0; + $159 = (($158) - ($157))|0; + HEAP32[$input>>2] = $159; + $160 = $mask$1 & 67108863; + $161 = $mask$1 & 33554431; + $162 = (($input) + 4|0); + $163 = HEAP32[$162>>2]|0; + $164 = (($163) - ($161))|0; + HEAP32[$162>>2] = $164; + $165 = (($input) + 8|0); + $166 = HEAP32[$165>>2]|0; + $167 = (($166) - ($160))|0; + HEAP32[$165>>2] = $167; + $168 = (($input) + 12|0); + $169 = HEAP32[$168>>2]|0; + $170 = (($169) - ($161))|0; + HEAP32[$168>>2] = $170; + $171 = (($input) + 16|0); + $172 = HEAP32[$171>>2]|0; + $173 = (($172) - ($160))|0; + HEAP32[$171>>2] = $173; + $174 = (($input) + 20|0); + $175 = HEAP32[$174>>2]|0; + $176 = (($175) - ($161))|0; + HEAP32[$174>>2] = $176; + $177 = (($input) + 24|0); + $178 = HEAP32[$177>>2]|0; + $179 = (($178) - ($160))|0; + HEAP32[$177>>2] = $179; + $180 = (($input) + 28|0); + $181 = HEAP32[$180>>2]|0; + $182 = (($181) - ($161))|0; + HEAP32[$180>>2] = $182; + $183 = (($input) + 32|0); + $184 = HEAP32[$183>>2]|0; + $185 = (($184) - ($160))|0; + HEAP32[$183>>2] = $185; + $186 = (($input) + 36|0); + $187 = HEAP32[$186>>2]|0; + $188 = (($187) - ($161))|0; + HEAP32[$186>>2] = $188; + $189 = HEAP32[$123>>2]|0; + $190 = $189 << 2; + HEAP32[$123>>2] = $190; + $191 = (($input) + 8|0); + $192 = HEAP32[$191>>2]|0; + $193 = $192 << 3; + HEAP32[$191>>2] = $193; + $194 = (($input) + 12|0); + $195 = HEAP32[$194>>2]|0; + $196 = $195 << 5; + HEAP32[$194>>2] = $196; + $197 = (($input) + 16|0); + $198 = HEAP32[$197>>2]|0; + $199 = $198 << 6; + HEAP32[$197>>2] = $199; + $200 = (($input) + 24|0); + $201 = HEAP32[$200>>2]|0; + $202 = $201 << 1; + HEAP32[$200>>2] = $202; + $203 = (($input) + 28|0); + $204 = HEAP32[$203>>2]|0; + $205 = $204 << 3; + HEAP32[$203>>2] = $205; + $206 = (($input) + 32|0); + $207 = HEAP32[$206>>2]|0; + $208 = $207 << 4; + HEAP32[$206>>2] = $208; + $209 = (($input) + 36|0); + $210 = HEAP32[$209>>2]|0; + $211 = $210 << 6; + HEAP32[$209>>2] = $211; + HEAP8[$output>>0] = 0; + $212 = (($output) + 16|0); + HEAP8[$212>>0] = 0; + $213 = HEAP32[$input>>2]|0; + $214 = HEAP8[$output>>0]|0; + $215 = $214&255; + $216 = $215 | $213; + $217 = $216&255; + HEAP8[$output>>0] = $217; + $218 = HEAP32[$input>>2]|0; + $219 = $218 >>> 8; + $220 = $219&255; + $221 = (($output) + 1|0); + HEAP8[$221>>0] = $220; + $222 = HEAP32[$input>>2]|0; + $223 = $222 >>> 16; + $224 = $223&255; + $225 = (($output) + 2|0); + HEAP8[$225>>0] = $224; + $226 = HEAP32[$input>>2]|0; + $227 = $226 >>> 24; + $228 = (($output) + 3|0); + $229 = HEAP32[$123>>2]|0; + $230 = $227 | $229; + $231 = $230&255; + HEAP8[$228>>0] = $231; + $232 = HEAP32[$123>>2]|0; + $233 = $232 >>> 8; + $234 = $233&255; + $235 = (($output) + 4|0); + HEAP8[$235>>0] = $234; + $236 = HEAP32[$123>>2]|0; + $237 = $236 >>> 16; + $238 = $237&255; + $239 = (($output) + 5|0); + HEAP8[$239>>0] = $238; + $240 = HEAP32[$123>>2]|0; + $241 = $240 >>> 24; + $242 = (($output) + 6|0); + $243 = HEAP32[$191>>2]|0; + $244 = $241 | $243; + $245 = $244&255; + HEAP8[$242>>0] = $245; + $246 = HEAP32[$191>>2]|0; + $247 = $246 >>> 8; + $248 = $247&255; + $249 = (($output) + 7|0); + HEAP8[$249>>0] = $248; + $250 = HEAP32[$191>>2]|0; + $251 = $250 >>> 16; + $252 = $251&255; + $253 = (($output) + 8|0); + HEAP8[$253>>0] = $252; + $254 = HEAP32[$191>>2]|0; + $255 = $254 >>> 24; + $256 = (($output) + 9|0); + $257 = HEAP32[$194>>2]|0; + $258 = $255 | $257; + $259 = $258&255; + HEAP8[$256>>0] = $259; + $260 = HEAP32[$194>>2]|0; + $261 = $260 >>> 8; + $262 = $261&255; + $263 = (($output) + 10|0); + HEAP8[$263>>0] = $262; + $264 = HEAP32[$194>>2]|0; + $265 = $264 >>> 16; + $266 = $265&255; + $267 = (($output) + 11|0); + HEAP8[$267>>0] = $266; + $268 = HEAP32[$194>>2]|0; + $269 = $268 >>> 24; + $270 = (($output) + 12|0); + $271 = HEAP32[$197>>2]|0; + $272 = $269 | $271; + $273 = $272&255; + HEAP8[$270>>0] = $273; + $274 = HEAP32[$197>>2]|0; + $275 = $274 >>> 8; + $276 = $275&255; + $277 = (($output) + 13|0); + HEAP8[$277>>0] = $276; + $278 = HEAP32[$197>>2]|0; + $279 = $278 >>> 16; + $280 = $279&255; + $281 = (($output) + 14|0); + HEAP8[$281>>0] = $280; + $282 = HEAP32[$197>>2]|0; + $283 = $282 >>> 24; + $284 = $283&255; + $285 = (($output) + 15|0); + HEAP8[$285>>0] = $284; + $286 = (($input) + 20|0); + $287 = HEAP32[$286>>2]|0; + $288 = HEAP8[$212>>0]|0; + $289 = $288&255; + $290 = $289 | $287; + $291 = $290&255; + HEAP8[$212>>0] = $291; + $292 = HEAP32[$286>>2]|0; + $293 = $292 >>> 8; + $294 = $293&255; + $295 = (($output) + 17|0); + HEAP8[$295>>0] = $294; + $296 = HEAP32[$286>>2]|0; + $297 = $296 >>> 16; + $298 = $297&255; + $299 = (($output) + 18|0); + HEAP8[$299>>0] = $298; + $300 = HEAP32[$286>>2]|0; + $301 = $300 >>> 24; + $302 = (($output) + 19|0); + $303 = HEAP32[$200>>2]|0; + $304 = $301 | $303; + $305 = $304&255; + HEAP8[$302>>0] = $305; + $306 = HEAP32[$200>>2]|0; + $307 = $306 >>> 8; + $308 = $307&255; + $309 = (($output) + 20|0); + HEAP8[$309>>0] = $308; + $310 = HEAP32[$200>>2]|0; + $311 = $310 >>> 16; + $312 = $311&255; + $313 = (($output) + 21|0); + HEAP8[$313>>0] = $312; + $314 = HEAP32[$200>>2]|0; + $315 = $314 >>> 24; + $316 = (($output) + 22|0); + $317 = HEAP32[$203>>2]|0; + $318 = $315 | $317; + $319 = $318&255; + HEAP8[$316>>0] = $319; + $320 = HEAP32[$203>>2]|0; + $321 = $320 >>> 8; + $322 = $321&255; + $323 = (($output) + 23|0); + HEAP8[$323>>0] = $322; + $324 = HEAP32[$203>>2]|0; + $325 = $324 >>> 16; + $326 = $325&255; + $327 = (($output) + 24|0); + HEAP8[$327>>0] = $326; + $328 = HEAP32[$203>>2]|0; + $329 = $328 >>> 24; + $330 = (($output) + 25|0); + $331 = HEAP32[$206>>2]|0; + $332 = $329 | $331; + $333 = $332&255; + HEAP8[$330>>0] = $333; + $334 = HEAP32[$206>>2]|0; + $335 = $334 >>> 8; + $336 = $335&255; + $337 = (($output) + 26|0); + HEAP8[$337>>0] = $336; + $338 = HEAP32[$206>>2]|0; + $339 = $338 >>> 16; + $340 = $339&255; + $341 = (($output) + 27|0); + HEAP8[$341>>0] = $340; + $342 = HEAP32[$206>>2]|0; + $343 = $342 >>> 24; + $344 = (($output) + 28|0); + $345 = HEAP32[$209>>2]|0; + $346 = $343 | $345; + $347 = $346&255; + HEAP8[$344>>0] = $347; + $348 = HEAP32[$209>>2]|0; + $349 = $348 >>> 8; + $350 = $349&255; + $351 = (($output) + 29|0); + HEAP8[$351>>0] = $350; + $352 = HEAP32[$209>>2]|0; + $353 = $352 >>> 16; + $354 = $353&255; + $355 = (($output) + 30|0); + HEAP8[$355>>0] = $354; + $356 = HEAP32[$209>>2]|0; + $357 = $356 >>> 24; + $358 = $357&255; + $359 = (($output) + 31|0); + HEAP8[$359>>0] = $358; + STACKTOP = sp;return; +} +function _swap_conditional($a,$b,$0,$1) { + $a = $a|0; + $b = $b|0; + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0; + var $9 = 0, $exitcond = 0, $i$02 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = (_i64Subtract(0,0,($0|0),($1|0))|0); + $3 = tempRet0; + $i$02 = 0; + while(1) { + $4 = (($a) + ($i$02<<3)|0); + $5 = $4; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = (($5) + 4)|0; + $9 = $8; + $10 = HEAP32[$9>>2]|0; + $11 = (($b) + ($i$02<<3)|0); + $12 = $11; + $13 = $12; + $14 = HEAP32[$13>>2]|0; + $15 = (($12) + 4)|0; + $16 = $15; + $17 = HEAP32[$16>>2]|0; + $18 = $14 ^ $7; + $19 = $17 ^ $10; + $20 = $18 & $2; + $21 = $19 & $3; + $22 = $20 ^ $7; + $21 ^ $10; + $23 = (_bitshift64Ashr(0,($22|0),32)|0); + $24 = tempRet0; + $25 = $4; + $26 = $25; + HEAP32[$26>>2] = $23; + $27 = (($25) + 4)|0; + $28 = $27; + HEAP32[$28>>2] = $24; + $29 = $11; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = (($29) + 4)|0; + $33 = $32; + $34 = HEAP32[$33>>2]|0; + $35 = $20 ^ $31; + $21 ^ $34; + $36 = (_bitshift64Ashr(0,($35|0),32)|0); + $37 = tempRet0; + $38 = $11; + $39 = $38; + HEAP32[$39>>2] = $36; + $40 = (($38) + 4)|0; + $41 = $40; + HEAP32[$41>>2] = $37; + $42 = (($i$02) + 1)|0; + $exitcond = ($42|0)==(10); + if ($exitcond) { + break; + } else { + $i$02 = $42; + } + } + STACKTOP = sp;return; +} +function _fmonty($x2,$z2,$x3,$z3,$x,$z,$xprime,$zprime,$qmqp) { + $x2 = $x2|0; + $z2 = $z2|0; + $x3 = $x3|0; + $z3 = $z3|0; + $x = $x|0; + $z = $z|0; + $xprime = $xprime|0; + $zprime = $zprime|0; + $qmqp = $qmqp|0; + var $0 = 0, $origx = 0, $origxprime = 0, $xx = 0, $xxprime = 0, $xxxprime = 0, $zz = 0, $zzprime = 0, $zzz = 0, $zzzprime = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 1232|0; + $origx = sp + 1144|0; + $origxprime = sp + 1064|0; + $zzz = sp + 912|0; + $xx = sp + 760|0; + $zz = sp + 608|0; + $xxprime = sp + 456|0; + $zzprime = sp + 304|0; + $zzzprime = sp + 152|0; + $xxxprime = sp; + dest=$origx+0|0; src=$x+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($x,$z); + _fdifference($z,$origx); + dest=$origxprime+0|0; src=$xprime+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($xprime,$zprime); + _fdifference($zprime,$origxprime); + _fproduct($xxprime,$xprime,$z); + _fproduct($zzprime,$x,$zprime); + _freduce_degree($xxprime); + _freduce_coefficients($xxprime); + _freduce_degree($zzprime); + _freduce_coefficients($zzprime); + dest=$origxprime+0|0; src=$xxprime+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($xxprime,$zzprime); + _fdifference($zzprime,$origxprime); + _fsquare($xxxprime,$xxprime); + _fsquare($zzzprime,$zzprime); + _fproduct($zzprime,$zzzprime,$qmqp); + _freduce_degree($zzprime); + _freduce_coefficients($zzprime); + dest=$x3+0|0; src=$xxxprime+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + dest=$z3+0|0; src=$zzprime+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsquare($xx,$x); + _fsquare($zz,$z); + _fproduct($x2,$xx,$zz); + _freduce_degree($x2); + _freduce_coefficients($x2); + _fdifference($zz,$xx); + $0 = (($zzz) + 80|0); + dest=$0+0|0; stop=dest+72|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + _fscalar_product($zzz,$zz); + _freduce_coefficients($zzz); + _fsum($zzz,$xx); + _fproduct($z2,$zz,$zzz); + _freduce_degree($z2); + _freduce_coefficients($z2); + STACKTOP = sp;return; +} +function _fsquare($output,$in) { + $output = $output|0; + $in = $in|0; + var $t = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 160|0; + $t = sp; + _fsquare_inner($t,$in); + _freduce_degree($t); + _freduce_coefficients($t); + dest=$output+0|0; src=$t+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _fproduct($output,$in2,$in) { + $output = $output|0; + $in2 = $in2|0; + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; + var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; + var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; + var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; + var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; + var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; + var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0; + var $1123 = 0, $1124 = 0, $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0; + var $1141 = 0, $1142 = 0, $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0; + var $116 = 0, $1160 = 0, $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0; + var $1178 = 0, $1179 = 0, $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0; + var $1196 = 0, $1197 = 0, $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0; + var $1213 = 0, $1214 = 0, $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0; + var $1231 = 0, $1232 = 0, $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0; + var $125 = 0, $1250 = 0, $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0; + var $1268 = 0, $1269 = 0, $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0; + var $1286 = 0, $1287 = 0, $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0; + var $1303 = 0, $1304 = 0, $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0; + var $1321 = 0, $1322 = 0, $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0; + var $134 = 0, $1340 = 0, $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0; + var $1358 = 0, $1359 = 0, $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0; + var $1376 = 0, $1377 = 0, $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0; + var $1394 = 0, $1395 = 0, $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0; + var $1411 = 0, $1412 = 0, $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0; + var $143 = 0, $1430 = 0, $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0; + var $1448 = 0, $1449 = 0, $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0; + var $1466 = 0, $1467 = 0, $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0; + var $1484 = 0, $1485 = 0, $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0; + var $1501 = 0, $1502 = 0, $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0; + var $152 = 0, $1520 = 0, $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0; + var $1538 = 0, $1539 = 0, $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0; + var $1556 = 0, $1557 = 0, $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0; + var $1574 = 0, $1575 = 0, $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0; + var $1592 = 0, $1593 = 0, $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0; + var $161 = 0, $1610 = 0, $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0; + var $1628 = 0, $1629 = 0, $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0; + var $1646 = 0, $1647 = 0, $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0; + var $1664 = 0, $1665 = 0, $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0; + var $1682 = 0, $1683 = 0, $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0; + var $170 = 0, $1700 = 0, $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0; + var $1718 = 0, $1719 = 0, $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0; + var $1736 = 0, $1737 = 0, $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0; + var $1754 = 0, $1755 = 0, $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0; + var $1772 = 0, $1773 = 0, $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0; + var $1790 = 0, $1791 = 0, $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0; + var $1808 = 0, $1809 = 0, $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0; + var $1826 = 0, $1827 = 0, $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0; + var $1844 = 0, $1845 = 0, $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0; + var $1862 = 0, $1863 = 0, $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $1879 = 0, $188 = 0; + var $1880 = 0, $1881 = 0, $1882 = 0, $1883 = 0, $1884 = 0, $1885 = 0, $1886 = 0, $1887 = 0, $1888 = 0, $1889 = 0, $189 = 0, $1890 = 0, $1891 = 0, $1892 = 0, $1893 = 0, $1894 = 0, $1895 = 0, $1896 = 0, $1897 = 0, $1898 = 0; + var $1899 = 0, $19 = 0, $190 = 0, $1900 = 0, $1901 = 0, $1902 = 0, $1903 = 0, $1904 = 0, $1905 = 0, $1906 = 0, $1907 = 0, $1908 = 0, $1909 = 0, $191 = 0, $1910 = 0, $1911 = 0, $1912 = 0, $1913 = 0, $1914 = 0, $1915 = 0; + var $1916 = 0, $1917 = 0, $1918 = 0, $1919 = 0, $192 = 0, $1920 = 0, $1921 = 0, $1922 = 0, $1923 = 0, $1924 = 0, $1925 = 0, $1926 = 0, $1927 = 0, $1928 = 0, $1929 = 0, $193 = 0, $1930 = 0, $1931 = 0, $1932 = 0, $1933 = 0; + var $1934 = 0, $1935 = 0, $1936 = 0, $1937 = 0, $1938 = 0, $1939 = 0, $194 = 0, $1940 = 0, $1941 = 0, $1942 = 0, $1943 = 0, $1944 = 0, $1945 = 0, $1946 = 0, $1947 = 0, $1948 = 0, $1949 = 0, $195 = 0, $1950 = 0, $1951 = 0; + var $1952 = 0, $1953 = 0, $1954 = 0, $1955 = 0, $1956 = 0, $1957 = 0, $1958 = 0, $1959 = 0, $196 = 0, $1960 = 0, $1961 = 0, $1962 = 0, $1963 = 0, $1964 = 0, $1965 = 0, $1966 = 0, $1967 = 0, $1968 = 0, $1969 = 0, $197 = 0; + var $1970 = 0, $1971 = 0, $1972 = 0, $1973 = 0, $1974 = 0, $1975 = 0, $1976 = 0, $1977 = 0, $1978 = 0, $1979 = 0, $198 = 0, $1980 = 0, $1981 = 0, $1982 = 0, $1983 = 0, $1984 = 0, $1985 = 0, $1986 = 0, $1987 = 0, $1988 = 0; + var $1989 = 0, $199 = 0, $1990 = 0, $1991 = 0, $1992 = 0, $1993 = 0, $1994 = 0, $1995 = 0, $1996 = 0, $1997 = 0, $1998 = 0, $1999 = 0, $2 = 0, $20 = 0, $200 = 0, $2000 = 0, $2001 = 0, $2002 = 0, $2003 = 0, $2004 = 0; + var $2005 = 0, $2006 = 0, $2007 = 0, $2008 = 0, $2009 = 0, $201 = 0, $2010 = 0, $2011 = 0, $2012 = 0, $2013 = 0, $2014 = 0, $2015 = 0, $2016 = 0, $2017 = 0, $2018 = 0, $2019 = 0, $202 = 0, $2020 = 0, $2021 = 0, $2022 = 0; + var $2023 = 0, $2024 = 0, $2025 = 0, $2026 = 0, $2027 = 0, $2028 = 0, $2029 = 0, $203 = 0, $2030 = 0, $2031 = 0, $2032 = 0, $2033 = 0, $2034 = 0, $2035 = 0, $2036 = 0, $2037 = 0, $2038 = 0, $2039 = 0, $204 = 0, $2040 = 0; + var $2041 = 0, $2042 = 0, $2043 = 0, $2044 = 0, $2045 = 0, $2046 = 0, $2047 = 0, $2048 = 0, $2049 = 0, $205 = 0, $2050 = 0, $2051 = 0, $2052 = 0, $2053 = 0, $2054 = 0, $2055 = 0, $2056 = 0, $2057 = 0, $2058 = 0, $2059 = 0; + var $206 = 0, $2060 = 0, $2061 = 0, $2062 = 0, $2063 = 0, $2064 = 0, $2065 = 0, $2066 = 0, $2067 = 0, $2068 = 0, $2069 = 0, $207 = 0, $2070 = 0, $2071 = 0, $2072 = 0, $2073 = 0, $2074 = 0, $2075 = 0, $2076 = 0, $2077 = 0; + var $2078 = 0, $2079 = 0, $208 = 0, $2080 = 0, $2081 = 0, $2082 = 0, $2083 = 0, $2084 = 0, $2085 = 0, $2086 = 0, $2087 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0; + var $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0; + var $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0; + var $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0; + var $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0; + var $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0; + var $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0; + var $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0; + var $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0; + var $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0; + var $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0; + var $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0; + var $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0; + var $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0; + var $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0; + var $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0; + var $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0; + var $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0; + var $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0; + var $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0; + var $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0; + var $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0; + var $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0; + var $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0; + var $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0; + var $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0; + var $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0; + var $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0; + var $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0; + var $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0; + var $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0; + var $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0; + var $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0; + var $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0; + var $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0; + var $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0; + var $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0; + var $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0; + var $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0; + var $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0; + var $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0; + var $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0; + var $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0; + var $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0; + var $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $in2; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = (_bitshift64Ashr(0,($2|0),32)|0); + $7 = tempRet0; + $8 = $in; + $9 = $8; + $10 = HEAP32[$9>>2]|0; + $11 = (($8) + 4)|0; + $12 = $11; + $13 = HEAP32[$12>>2]|0; + $14 = (_bitshift64Ashr(0,($10|0),32)|0); + $15 = tempRet0; + $16 = (___muldi3(($14|0),($15|0),($6|0),($7|0))|0); + $17 = tempRet0; + $18 = $output; + $19 = $18; + HEAP32[$19>>2] = $16; + $20 = (($18) + 4)|0; + $21 = $20; + HEAP32[$21>>2] = $17; + $22 = $in2; + $23 = $22; + $24 = HEAP32[$23>>2]|0; + $25 = (($22) + 4)|0; + $26 = $25; + $27 = HEAP32[$26>>2]|0; + $28 = (_bitshift64Ashr(0,($24|0),32)|0); + $29 = tempRet0; + $30 = (($in) + 8|0); + $31 = $30; + $32 = $31; + $33 = HEAP32[$32>>2]|0; + $34 = (($31) + 4)|0; + $35 = $34; + $36 = HEAP32[$35>>2]|0; + $37 = (_bitshift64Ashr(0,($33|0),32)|0); + $38 = tempRet0; + $39 = (___muldi3(($37|0),($38|0),($28|0),($29|0))|0); + $40 = tempRet0; + $41 = (($in2) + 8|0); + $42 = $41; + $43 = $42; + $44 = HEAP32[$43>>2]|0; + $45 = (($42) + 4)|0; + $46 = $45; + $47 = HEAP32[$46>>2]|0; + $48 = (_bitshift64Ashr(0,($44|0),32)|0); + $49 = tempRet0; + $50 = $in; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + $56 = (_bitshift64Ashr(0,($52|0),32)|0); + $57 = tempRet0; + $58 = (___muldi3(($56|0),($57|0),($48|0),($49|0))|0); + $59 = tempRet0; + $60 = (_i64Add(($58|0),($59|0),($39|0),($40|0))|0); + $61 = tempRet0; + $62 = (($output) + 8|0); + $63 = $62; + $64 = $63; + HEAP32[$64>>2] = $60; + $65 = (($63) + 4)|0; + $66 = $65; + HEAP32[$66>>2] = $61; + $67 = $41; + $68 = $67; + $69 = HEAP32[$68>>2]|0; + $70 = (($67) + 4)|0; + $71 = $70; + $72 = HEAP32[$71>>2]|0; + $73 = (_bitshift64Ashr(0,($69|0),31)|0); + $74 = tempRet0; + $75 = $30; + $76 = $75; + $77 = HEAP32[$76>>2]|0; + $78 = (($75) + 4)|0; + $79 = $78; + $80 = HEAP32[$79>>2]|0; + $81 = (_bitshift64Ashr(0,($77|0),32)|0); + $82 = tempRet0; + $83 = (___muldi3(($81|0),($82|0),($73|0),($74|0))|0); + $84 = tempRet0; + $85 = $in2; + $86 = $85; + $87 = HEAP32[$86>>2]|0; + $88 = (($85) + 4)|0; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (_bitshift64Ashr(0,($87|0),32)|0); + $92 = tempRet0; + $93 = (($in) + 16|0); + $94 = $93; + $95 = $94; + $96 = HEAP32[$95>>2]|0; + $97 = (($94) + 4)|0; + $98 = $97; + $99 = HEAP32[$98>>2]|0; + $100 = (_bitshift64Ashr(0,($96|0),32)|0); + $101 = tempRet0; + $102 = (___muldi3(($100|0),($101|0),($91|0),($92|0))|0); + $103 = tempRet0; + $104 = (_i64Add(($102|0),($103|0),($83|0),($84|0))|0); + $105 = tempRet0; + $106 = (($in2) + 16|0); + $107 = $106; + $108 = $107; + $109 = HEAP32[$108>>2]|0; + $110 = (($107) + 4)|0; + $111 = $110; + $112 = HEAP32[$111>>2]|0; + $113 = (_bitshift64Ashr(0,($109|0),32)|0); + $114 = tempRet0; + $115 = $in; + $116 = $115; + $117 = HEAP32[$116>>2]|0; + $118 = (($115) + 4)|0; + $119 = $118; + $120 = HEAP32[$119>>2]|0; + $121 = (_bitshift64Ashr(0,($117|0),32)|0); + $122 = tempRet0; + $123 = (___muldi3(($121|0),($122|0),($113|0),($114|0))|0); + $124 = tempRet0; + $125 = (_i64Add(($104|0),($105|0),($123|0),($124|0))|0); + $126 = tempRet0; + $127 = (($output) + 16|0); + $128 = $127; + $129 = $128; + HEAP32[$129>>2] = $125; + $130 = (($128) + 4)|0; + $131 = $130; + HEAP32[$131>>2] = $126; + $132 = $41; + $133 = $132; + $134 = HEAP32[$133>>2]|0; + $135 = (($132) + 4)|0; + $136 = $135; + $137 = HEAP32[$136>>2]|0; + $138 = (_bitshift64Ashr(0,($134|0),32)|0); + $139 = tempRet0; + $140 = $93; + $141 = $140; + $142 = HEAP32[$141>>2]|0; + $143 = (($140) + 4)|0; + $144 = $143; + $145 = HEAP32[$144>>2]|0; + $146 = (_bitshift64Ashr(0,($142|0),32)|0); + $147 = tempRet0; + $148 = (___muldi3(($146|0),($147|0),($138|0),($139|0))|0); + $149 = tempRet0; + $150 = $106; + $151 = $150; + $152 = HEAP32[$151>>2]|0; + $153 = (($150) + 4)|0; + $154 = $153; + $155 = HEAP32[$154>>2]|0; + $156 = (_bitshift64Ashr(0,($152|0),32)|0); + $157 = tempRet0; + $158 = $30; + $159 = $158; + $160 = HEAP32[$159>>2]|0; + $161 = (($158) + 4)|0; + $162 = $161; + $163 = HEAP32[$162>>2]|0; + $164 = (_bitshift64Ashr(0,($160|0),32)|0); + $165 = tempRet0; + $166 = (___muldi3(($164|0),($165|0),($156|0),($157|0))|0); + $167 = tempRet0; + $168 = (_i64Add(($166|0),($167|0),($148|0),($149|0))|0); + $169 = tempRet0; + $170 = $in2; + $171 = $170; + $172 = HEAP32[$171>>2]|0; + $173 = (($170) + 4)|0; + $174 = $173; + $175 = HEAP32[$174>>2]|0; + $176 = (_bitshift64Ashr(0,($172|0),32)|0); + $177 = tempRet0; + $178 = (($in) + 24|0); + $179 = $178; + $180 = $179; + $181 = HEAP32[$180>>2]|0; + $182 = (($179) + 4)|0; + $183 = $182; + $184 = HEAP32[$183>>2]|0; + $185 = (_bitshift64Ashr(0,($181|0),32)|0); + $186 = tempRet0; + $187 = (___muldi3(($185|0),($186|0),($176|0),($177|0))|0); + $188 = tempRet0; + $189 = (_i64Add(($168|0),($169|0),($187|0),($188|0))|0); + $190 = tempRet0; + $191 = (($in2) + 24|0); + $192 = $191; + $193 = $192; + $194 = HEAP32[$193>>2]|0; + $195 = (($192) + 4)|0; + $196 = $195; + $197 = HEAP32[$196>>2]|0; + $198 = (_bitshift64Ashr(0,($194|0),32)|0); + $199 = tempRet0; + $200 = $in; + $201 = $200; + $202 = HEAP32[$201>>2]|0; + $203 = (($200) + 4)|0; + $204 = $203; + $205 = HEAP32[$204>>2]|0; + $206 = (_bitshift64Ashr(0,($202|0),32)|0); + $207 = tempRet0; + $208 = (___muldi3(($206|0),($207|0),($198|0),($199|0))|0); + $209 = tempRet0; + $210 = (_i64Add(($189|0),($190|0),($208|0),($209|0))|0); + $211 = tempRet0; + $212 = (($output) + 24|0); + $213 = $212; + $214 = $213; + HEAP32[$214>>2] = $210; + $215 = (($213) + 4)|0; + $216 = $215; + HEAP32[$216>>2] = $211; + $217 = $106; + $218 = $217; + $219 = HEAP32[$218>>2]|0; + $220 = (($217) + 4)|0; + $221 = $220; + $222 = HEAP32[$221>>2]|0; + $223 = (_bitshift64Ashr(0,($219|0),32)|0); + $224 = tempRet0; + $225 = $93; + $226 = $225; + $227 = HEAP32[$226>>2]|0; + $228 = (($225) + 4)|0; + $229 = $228; + $230 = HEAP32[$229>>2]|0; + $231 = (_bitshift64Ashr(0,($227|0),32)|0); + $232 = tempRet0; + $233 = (___muldi3(($231|0),($232|0),($223|0),($224|0))|0); + $234 = tempRet0; + $235 = $41; + $236 = $235; + $237 = HEAP32[$236>>2]|0; + $238 = (($235) + 4)|0; + $239 = $238; + $240 = HEAP32[$239>>2]|0; + $241 = (_bitshift64Ashr(0,($237|0),32)|0); + $242 = tempRet0; + $243 = $178; + $244 = $243; + $245 = HEAP32[$244>>2]|0; + $246 = (($243) + 4)|0; + $247 = $246; + $248 = HEAP32[$247>>2]|0; + $249 = (_bitshift64Ashr(0,($245|0),32)|0); + $250 = tempRet0; + $251 = (___muldi3(($249|0),($250|0),($241|0),($242|0))|0); + $252 = tempRet0; + $253 = $191; + $254 = $253; + $255 = HEAP32[$254>>2]|0; + $256 = (($253) + 4)|0; + $257 = $256; + $258 = HEAP32[$257>>2]|0; + $259 = (_bitshift64Ashr(0,($255|0),32)|0); + $260 = tempRet0; + $261 = $30; + $262 = $261; + $263 = HEAP32[$262>>2]|0; + $264 = (($261) + 4)|0; + $265 = $264; + $266 = HEAP32[$265>>2]|0; + $267 = (_bitshift64Ashr(0,($263|0),32)|0); + $268 = tempRet0; + $269 = (___muldi3(($267|0),($268|0),($259|0),($260|0))|0); + $270 = tempRet0; + $271 = (_i64Add(($269|0),($270|0),($251|0),($252|0))|0); + $272 = tempRet0; + $273 = (_bitshift64Shl(($271|0),($272|0),1)|0); + $274 = tempRet0; + $275 = (_i64Add(($273|0),($274|0),($233|0),($234|0))|0); + $276 = tempRet0; + $277 = $in2; + $278 = $277; + $279 = HEAP32[$278>>2]|0; + $280 = (($277) + 4)|0; + $281 = $280; + $282 = HEAP32[$281>>2]|0; + $283 = (_bitshift64Ashr(0,($279|0),32)|0); + $284 = tempRet0; + $285 = (($in) + 32|0); + $286 = $285; + $287 = $286; + $288 = HEAP32[$287>>2]|0; + $289 = (($286) + 4)|0; + $290 = $289; + $291 = HEAP32[$290>>2]|0; + $292 = (_bitshift64Ashr(0,($288|0),32)|0); + $293 = tempRet0; + $294 = (___muldi3(($292|0),($293|0),($283|0),($284|0))|0); + $295 = tempRet0; + $296 = (_i64Add(($275|0),($276|0),($294|0),($295|0))|0); + $297 = tempRet0; + $298 = (($in2) + 32|0); + $299 = $298; + $300 = $299; + $301 = HEAP32[$300>>2]|0; + $302 = (($299) + 4)|0; + $303 = $302; + $304 = HEAP32[$303>>2]|0; + $305 = (_bitshift64Ashr(0,($301|0),32)|0); + $306 = tempRet0; + $307 = $in; + $308 = $307; + $309 = HEAP32[$308>>2]|0; + $310 = (($307) + 4)|0; + $311 = $310; + $312 = HEAP32[$311>>2]|0; + $313 = (_bitshift64Ashr(0,($309|0),32)|0); + $314 = tempRet0; + $315 = (___muldi3(($313|0),($314|0),($305|0),($306|0))|0); + $316 = tempRet0; + $317 = (_i64Add(($296|0),($297|0),($315|0),($316|0))|0); + $318 = tempRet0; + $319 = (($output) + 32|0); + $320 = $319; + $321 = $320; + HEAP32[$321>>2] = $317; + $322 = (($320) + 4)|0; + $323 = $322; + HEAP32[$323>>2] = $318; + $324 = $106; + $325 = $324; + $326 = HEAP32[$325>>2]|0; + $327 = (($324) + 4)|0; + $328 = $327; + $329 = HEAP32[$328>>2]|0; + $330 = (_bitshift64Ashr(0,($326|0),32)|0); + $331 = tempRet0; + $332 = $178; + $333 = $332; + $334 = HEAP32[$333>>2]|0; + $335 = (($332) + 4)|0; + $336 = $335; + $337 = HEAP32[$336>>2]|0; + $338 = (_bitshift64Ashr(0,($334|0),32)|0); + $339 = tempRet0; + $340 = (___muldi3(($338|0),($339|0),($330|0),($331|0))|0); + $341 = tempRet0; + $342 = $191; + $343 = $342; + $344 = HEAP32[$343>>2]|0; + $345 = (($342) + 4)|0; + $346 = $345; + $347 = HEAP32[$346>>2]|0; + $348 = (_bitshift64Ashr(0,($344|0),32)|0); + $349 = tempRet0; + $350 = $93; + $351 = $350; + $352 = HEAP32[$351>>2]|0; + $353 = (($350) + 4)|0; + $354 = $353; + $355 = HEAP32[$354>>2]|0; + $356 = (_bitshift64Ashr(0,($352|0),32)|0); + $357 = tempRet0; + $358 = (___muldi3(($356|0),($357|0),($348|0),($349|0))|0); + $359 = tempRet0; + $360 = (_i64Add(($358|0),($359|0),($340|0),($341|0))|0); + $361 = tempRet0; + $362 = $41; + $363 = $362; + $364 = HEAP32[$363>>2]|0; + $365 = (($362) + 4)|0; + $366 = $365; + $367 = HEAP32[$366>>2]|0; + $368 = (_bitshift64Ashr(0,($364|0),32)|0); + $369 = tempRet0; + $370 = $285; + $371 = $370; + $372 = HEAP32[$371>>2]|0; + $373 = (($370) + 4)|0; + $374 = $373; + $375 = HEAP32[$374>>2]|0; + $376 = (_bitshift64Ashr(0,($372|0),32)|0); + $377 = tempRet0; + $378 = (___muldi3(($376|0),($377|0),($368|0),($369|0))|0); + $379 = tempRet0; + $380 = (_i64Add(($360|0),($361|0),($378|0),($379|0))|0); + $381 = tempRet0; + $382 = $298; + $383 = $382; + $384 = HEAP32[$383>>2]|0; + $385 = (($382) + 4)|0; + $386 = $385; + $387 = HEAP32[$386>>2]|0; + $388 = (_bitshift64Ashr(0,($384|0),32)|0); + $389 = tempRet0; + $390 = $30; + $391 = $390; + $392 = HEAP32[$391>>2]|0; + $393 = (($390) + 4)|0; + $394 = $393; + $395 = HEAP32[$394>>2]|0; + $396 = (_bitshift64Ashr(0,($392|0),32)|0); + $397 = tempRet0; + $398 = (___muldi3(($396|0),($397|0),($388|0),($389|0))|0); + $399 = tempRet0; + $400 = (_i64Add(($380|0),($381|0),($398|0),($399|0))|0); + $401 = tempRet0; + $402 = $in2; + $403 = $402; + $404 = HEAP32[$403>>2]|0; + $405 = (($402) + 4)|0; + $406 = $405; + $407 = HEAP32[$406>>2]|0; + $408 = (_bitshift64Ashr(0,($404|0),32)|0); + $409 = tempRet0; + $410 = (($in) + 40|0); + $411 = $410; + $412 = $411; + $413 = HEAP32[$412>>2]|0; + $414 = (($411) + 4)|0; + $415 = $414; + $416 = HEAP32[$415>>2]|0; + $417 = (_bitshift64Ashr(0,($413|0),32)|0); + $418 = tempRet0; + $419 = (___muldi3(($417|0),($418|0),($408|0),($409|0))|0); + $420 = tempRet0; + $421 = (_i64Add(($400|0),($401|0),($419|0),($420|0))|0); + $422 = tempRet0; + $423 = (($in2) + 40|0); + $424 = $423; + $425 = $424; + $426 = HEAP32[$425>>2]|0; + $427 = (($424) + 4)|0; + $428 = $427; + $429 = HEAP32[$428>>2]|0; + $430 = (_bitshift64Ashr(0,($426|0),32)|0); + $431 = tempRet0; + $432 = $in; + $433 = $432; + $434 = HEAP32[$433>>2]|0; + $435 = (($432) + 4)|0; + $436 = $435; + $437 = HEAP32[$436>>2]|0; + $438 = (_bitshift64Ashr(0,($434|0),32)|0); + $439 = tempRet0; + $440 = (___muldi3(($438|0),($439|0),($430|0),($431|0))|0); + $441 = tempRet0; + $442 = (_i64Add(($421|0),($422|0),($440|0),($441|0))|0); + $443 = tempRet0; + $444 = (($output) + 40|0); + $445 = $444; + $446 = $445; + HEAP32[$446>>2] = $442; + $447 = (($445) + 4)|0; + $448 = $447; + HEAP32[$448>>2] = $443; + $449 = $191; + $450 = $449; + $451 = HEAP32[$450>>2]|0; + $452 = (($449) + 4)|0; + $453 = $452; + $454 = HEAP32[$453>>2]|0; + $455 = (_bitshift64Ashr(0,($451|0),32)|0); + $456 = tempRet0; + $457 = $178; + $458 = $457; + $459 = HEAP32[$458>>2]|0; + $460 = (($457) + 4)|0; + $461 = $460; + $462 = HEAP32[$461>>2]|0; + $463 = (_bitshift64Ashr(0,($459|0),32)|0); + $464 = tempRet0; + $465 = (___muldi3(($463|0),($464|0),($455|0),($456|0))|0); + $466 = tempRet0; + $467 = $41; + $468 = $467; + $469 = HEAP32[$468>>2]|0; + $470 = (($467) + 4)|0; + $471 = $470; + $472 = HEAP32[$471>>2]|0; + $473 = (_bitshift64Ashr(0,($469|0),32)|0); + $474 = tempRet0; + $475 = $410; + $476 = $475; + $477 = HEAP32[$476>>2]|0; + $478 = (($475) + 4)|0; + $479 = $478; + $480 = HEAP32[$479>>2]|0; + $481 = (_bitshift64Ashr(0,($477|0),32)|0); + $482 = tempRet0; + $483 = (___muldi3(($481|0),($482|0),($473|0),($474|0))|0); + $484 = tempRet0; + $485 = (_i64Add(($483|0),($484|0),($465|0),($466|0))|0); + $486 = tempRet0; + $487 = $423; + $488 = $487; + $489 = HEAP32[$488>>2]|0; + $490 = (($487) + 4)|0; + $491 = $490; + $492 = HEAP32[$491>>2]|0; + $493 = (_bitshift64Ashr(0,($489|0),32)|0); + $494 = tempRet0; + $495 = $30; + $496 = $495; + $497 = HEAP32[$496>>2]|0; + $498 = (($495) + 4)|0; + $499 = $498; + $500 = HEAP32[$499>>2]|0; + $501 = (_bitshift64Ashr(0,($497|0),32)|0); + $502 = tempRet0; + $503 = (___muldi3(($501|0),($502|0),($493|0),($494|0))|0); + $504 = tempRet0; + $505 = (_i64Add(($485|0),($486|0),($503|0),($504|0))|0); + $506 = tempRet0; + $507 = (_bitshift64Shl(($505|0),($506|0),1)|0); + $508 = tempRet0; + $509 = $106; + $510 = $509; + $511 = HEAP32[$510>>2]|0; + $512 = (($509) + 4)|0; + $513 = $512; + $514 = HEAP32[$513>>2]|0; + $515 = (_bitshift64Ashr(0,($511|0),32)|0); + $516 = tempRet0; + $517 = $285; + $518 = $517; + $519 = HEAP32[$518>>2]|0; + $520 = (($517) + 4)|0; + $521 = $520; + $522 = HEAP32[$521>>2]|0; + $523 = (_bitshift64Ashr(0,($519|0),32)|0); + $524 = tempRet0; + $525 = (___muldi3(($523|0),($524|0),($515|0),($516|0))|0); + $526 = tempRet0; + $527 = (_i64Add(($507|0),($508|0),($525|0),($526|0))|0); + $528 = tempRet0; + $529 = $298; + $530 = $529; + $531 = HEAP32[$530>>2]|0; + $532 = (($529) + 4)|0; + $533 = $532; + $534 = HEAP32[$533>>2]|0; + $535 = (_bitshift64Ashr(0,($531|0),32)|0); + $536 = tempRet0; + $537 = $93; + $538 = $537; + $539 = HEAP32[$538>>2]|0; + $540 = (($537) + 4)|0; + $541 = $540; + $542 = HEAP32[$541>>2]|0; + $543 = (_bitshift64Ashr(0,($539|0),32)|0); + $544 = tempRet0; + $545 = (___muldi3(($543|0),($544|0),($535|0),($536|0))|0); + $546 = tempRet0; + $547 = (_i64Add(($527|0),($528|0),($545|0),($546|0))|0); + $548 = tempRet0; + $549 = $in2; + $550 = $549; + $551 = HEAP32[$550>>2]|0; + $552 = (($549) + 4)|0; + $553 = $552; + $554 = HEAP32[$553>>2]|0; + $555 = (_bitshift64Ashr(0,($551|0),32)|0); + $556 = tempRet0; + $557 = (($in) + 48|0); + $558 = $557; + $559 = $558; + $560 = HEAP32[$559>>2]|0; + $561 = (($558) + 4)|0; + $562 = $561; + $563 = HEAP32[$562>>2]|0; + $564 = (_bitshift64Ashr(0,($560|0),32)|0); + $565 = tempRet0; + $566 = (___muldi3(($564|0),($565|0),($555|0),($556|0))|0); + $567 = tempRet0; + $568 = (_i64Add(($547|0),($548|0),($566|0),($567|0))|0); + $569 = tempRet0; + $570 = (($in2) + 48|0); + $571 = $570; + $572 = $571; + $573 = HEAP32[$572>>2]|0; + $574 = (($571) + 4)|0; + $575 = $574; + $576 = HEAP32[$575>>2]|0; + $577 = (_bitshift64Ashr(0,($573|0),32)|0); + $578 = tempRet0; + $579 = $in; + $580 = $579; + $581 = HEAP32[$580>>2]|0; + $582 = (($579) + 4)|0; + $583 = $582; + $584 = HEAP32[$583>>2]|0; + $585 = (_bitshift64Ashr(0,($581|0),32)|0); + $586 = tempRet0; + $587 = (___muldi3(($585|0),($586|0),($577|0),($578|0))|0); + $588 = tempRet0; + $589 = (_i64Add(($568|0),($569|0),($587|0),($588|0))|0); + $590 = tempRet0; + $591 = (($output) + 48|0); + $592 = $591; + $593 = $592; + HEAP32[$593>>2] = $589; + $594 = (($592) + 4)|0; + $595 = $594; + HEAP32[$595>>2] = $590; + $596 = $191; + $597 = $596; + $598 = HEAP32[$597>>2]|0; + $599 = (($596) + 4)|0; + $600 = $599; + $601 = HEAP32[$600>>2]|0; + $602 = (_bitshift64Ashr(0,($598|0),32)|0); + $603 = tempRet0; + $604 = $285; + $605 = $604; + $606 = HEAP32[$605>>2]|0; + $607 = (($604) + 4)|0; + $608 = $607; + $609 = HEAP32[$608>>2]|0; + $610 = (_bitshift64Ashr(0,($606|0),32)|0); + $611 = tempRet0; + $612 = (___muldi3(($610|0),($611|0),($602|0),($603|0))|0); + $613 = tempRet0; + $614 = $298; + $615 = $614; + $616 = HEAP32[$615>>2]|0; + $617 = (($614) + 4)|0; + $618 = $617; + $619 = HEAP32[$618>>2]|0; + $620 = (_bitshift64Ashr(0,($616|0),32)|0); + $621 = tempRet0; + $622 = $178; + $623 = $622; + $624 = HEAP32[$623>>2]|0; + $625 = (($622) + 4)|0; + $626 = $625; + $627 = HEAP32[$626>>2]|0; + $628 = (_bitshift64Ashr(0,($624|0),32)|0); + $629 = tempRet0; + $630 = (___muldi3(($628|0),($629|0),($620|0),($621|0))|0); + $631 = tempRet0; + $632 = (_i64Add(($630|0),($631|0),($612|0),($613|0))|0); + $633 = tempRet0; + $634 = $106; + $635 = $634; + $636 = HEAP32[$635>>2]|0; + $637 = (($634) + 4)|0; + $638 = $637; + $639 = HEAP32[$638>>2]|0; + $640 = (_bitshift64Ashr(0,($636|0),32)|0); + $641 = tempRet0; + $642 = $410; + $643 = $642; + $644 = HEAP32[$643>>2]|0; + $645 = (($642) + 4)|0; + $646 = $645; + $647 = HEAP32[$646>>2]|0; + $648 = (_bitshift64Ashr(0,($644|0),32)|0); + $649 = tempRet0; + $650 = (___muldi3(($648|0),($649|0),($640|0),($641|0))|0); + $651 = tempRet0; + $652 = (_i64Add(($632|0),($633|0),($650|0),($651|0))|0); + $653 = tempRet0; + $654 = $423; + $655 = $654; + $656 = HEAP32[$655>>2]|0; + $657 = (($654) + 4)|0; + $658 = $657; + $659 = HEAP32[$658>>2]|0; + $660 = (_bitshift64Ashr(0,($656|0),32)|0); + $661 = tempRet0; + $662 = $93; + $663 = $662; + $664 = HEAP32[$663>>2]|0; + $665 = (($662) + 4)|0; + $666 = $665; + $667 = HEAP32[$666>>2]|0; + $668 = (_bitshift64Ashr(0,($664|0),32)|0); + $669 = tempRet0; + $670 = (___muldi3(($668|0),($669|0),($660|0),($661|0))|0); + $671 = tempRet0; + $672 = (_i64Add(($652|0),($653|0),($670|0),($671|0))|0); + $673 = tempRet0; + $674 = $41; + $675 = $674; + $676 = HEAP32[$675>>2]|0; + $677 = (($674) + 4)|0; + $678 = $677; + $679 = HEAP32[$678>>2]|0; + $680 = (_bitshift64Ashr(0,($676|0),32)|0); + $681 = tempRet0; + $682 = $557; + $683 = $682; + $684 = HEAP32[$683>>2]|0; + $685 = (($682) + 4)|0; + $686 = $685; + $687 = HEAP32[$686>>2]|0; + $688 = (_bitshift64Ashr(0,($684|0),32)|0); + $689 = tempRet0; + $690 = (___muldi3(($688|0),($689|0),($680|0),($681|0))|0); + $691 = tempRet0; + $692 = (_i64Add(($672|0),($673|0),($690|0),($691|0))|0); + $693 = tempRet0; + $694 = $570; + $695 = $694; + $696 = HEAP32[$695>>2]|0; + $697 = (($694) + 4)|0; + $698 = $697; + $699 = HEAP32[$698>>2]|0; + $700 = (_bitshift64Ashr(0,($696|0),32)|0); + $701 = tempRet0; + $702 = $30; + $703 = $702; + $704 = HEAP32[$703>>2]|0; + $705 = (($702) + 4)|0; + $706 = $705; + $707 = HEAP32[$706>>2]|0; + $708 = (_bitshift64Ashr(0,($704|0),32)|0); + $709 = tempRet0; + $710 = (___muldi3(($708|0),($709|0),($700|0),($701|0))|0); + $711 = tempRet0; + $712 = (_i64Add(($692|0),($693|0),($710|0),($711|0))|0); + $713 = tempRet0; + $714 = $in2; + $715 = $714; + $716 = HEAP32[$715>>2]|0; + $717 = (($714) + 4)|0; + $718 = $717; + $719 = HEAP32[$718>>2]|0; + $720 = (_bitshift64Ashr(0,($716|0),32)|0); + $721 = tempRet0; + $722 = (($in) + 56|0); + $723 = $722; + $724 = $723; + $725 = HEAP32[$724>>2]|0; + $726 = (($723) + 4)|0; + $727 = $726; + $728 = HEAP32[$727>>2]|0; + $729 = (_bitshift64Ashr(0,($725|0),32)|0); + $730 = tempRet0; + $731 = (___muldi3(($729|0),($730|0),($720|0),($721|0))|0); + $732 = tempRet0; + $733 = (_i64Add(($712|0),($713|0),($731|0),($732|0))|0); + $734 = tempRet0; + $735 = (($in2) + 56|0); + $736 = $735; + $737 = $736; + $738 = HEAP32[$737>>2]|0; + $739 = (($736) + 4)|0; + $740 = $739; + $741 = HEAP32[$740>>2]|0; + $742 = (_bitshift64Ashr(0,($738|0),32)|0); + $743 = tempRet0; + $744 = $in; + $745 = $744; + $746 = HEAP32[$745>>2]|0; + $747 = (($744) + 4)|0; + $748 = $747; + $749 = HEAP32[$748>>2]|0; + $750 = (_bitshift64Ashr(0,($746|0),32)|0); + $751 = tempRet0; + $752 = (___muldi3(($750|0),($751|0),($742|0),($743|0))|0); + $753 = tempRet0; + $754 = (_i64Add(($733|0),($734|0),($752|0),($753|0))|0); + $755 = tempRet0; + $756 = (($output) + 56|0); + $757 = $756; + $758 = $757; + HEAP32[$758>>2] = $754; + $759 = (($757) + 4)|0; + $760 = $759; + HEAP32[$760>>2] = $755; + $761 = $298; + $762 = $761; + $763 = HEAP32[$762>>2]|0; + $764 = (($761) + 4)|0; + $765 = $764; + $766 = HEAP32[$765>>2]|0; + $767 = (_bitshift64Ashr(0,($763|0),32)|0); + $768 = tempRet0; + $769 = $285; + $770 = $769; + $771 = HEAP32[$770>>2]|0; + $772 = (($769) + 4)|0; + $773 = $772; + $774 = HEAP32[$773>>2]|0; + $775 = (_bitshift64Ashr(0,($771|0),32)|0); + $776 = tempRet0; + $777 = (___muldi3(($775|0),($776|0),($767|0),($768|0))|0); + $778 = tempRet0; + $779 = $191; + $780 = $779; + $781 = HEAP32[$780>>2]|0; + $782 = (($779) + 4)|0; + $783 = $782; + $784 = HEAP32[$783>>2]|0; + $785 = (_bitshift64Ashr(0,($781|0),32)|0); + $786 = tempRet0; + $787 = $410; + $788 = $787; + $789 = HEAP32[$788>>2]|0; + $790 = (($787) + 4)|0; + $791 = $790; + $792 = HEAP32[$791>>2]|0; + $793 = (_bitshift64Ashr(0,($789|0),32)|0); + $794 = tempRet0; + $795 = (___muldi3(($793|0),($794|0),($785|0),($786|0))|0); + $796 = tempRet0; + $797 = $423; + $798 = $797; + $799 = HEAP32[$798>>2]|0; + $800 = (($797) + 4)|0; + $801 = $800; + $802 = HEAP32[$801>>2]|0; + $803 = (_bitshift64Ashr(0,($799|0),32)|0); + $804 = tempRet0; + $805 = $178; + $806 = $805; + $807 = HEAP32[$806>>2]|0; + $808 = (($805) + 4)|0; + $809 = $808; + $810 = HEAP32[$809>>2]|0; + $811 = (_bitshift64Ashr(0,($807|0),32)|0); + $812 = tempRet0; + $813 = (___muldi3(($811|0),($812|0),($803|0),($804|0))|0); + $814 = tempRet0; + $815 = (_i64Add(($813|0),($814|0),($795|0),($796|0))|0); + $816 = tempRet0; + $817 = $41; + $818 = $817; + $819 = HEAP32[$818>>2]|0; + $820 = (($817) + 4)|0; + $821 = $820; + $822 = HEAP32[$821>>2]|0; + $823 = (_bitshift64Ashr(0,($819|0),32)|0); + $824 = tempRet0; + $825 = $722; + $826 = $825; + $827 = HEAP32[$826>>2]|0; + $828 = (($825) + 4)|0; + $829 = $828; + $830 = HEAP32[$829>>2]|0; + $831 = (_bitshift64Ashr(0,($827|0),32)|0); + $832 = tempRet0; + $833 = (___muldi3(($831|0),($832|0),($823|0),($824|0))|0); + $834 = tempRet0; + $835 = (_i64Add(($815|0),($816|0),($833|0),($834|0))|0); + $836 = tempRet0; + $837 = $735; + $838 = $837; + $839 = HEAP32[$838>>2]|0; + $840 = (($837) + 4)|0; + $841 = $840; + $842 = HEAP32[$841>>2]|0; + $843 = (_bitshift64Ashr(0,($839|0),32)|0); + $844 = tempRet0; + $845 = $30; + $846 = $845; + $847 = HEAP32[$846>>2]|0; + $848 = (($845) + 4)|0; + $849 = $848; + $850 = HEAP32[$849>>2]|0; + $851 = (_bitshift64Ashr(0,($847|0),32)|0); + $852 = tempRet0; + $853 = (___muldi3(($851|0),($852|0),($843|0),($844|0))|0); + $854 = tempRet0; + $855 = (_i64Add(($835|0),($836|0),($853|0),($854|0))|0); + $856 = tempRet0; + $857 = (_bitshift64Shl(($855|0),($856|0),1)|0); + $858 = tempRet0; + $859 = (_i64Add(($857|0),($858|0),($777|0),($778|0))|0); + $860 = tempRet0; + $861 = $106; + $862 = $861; + $863 = HEAP32[$862>>2]|0; + $864 = (($861) + 4)|0; + $865 = $864; + $866 = HEAP32[$865>>2]|0; + $867 = (_bitshift64Ashr(0,($863|0),32)|0); + $868 = tempRet0; + $869 = $557; + $870 = $869; + $871 = HEAP32[$870>>2]|0; + $872 = (($869) + 4)|0; + $873 = $872; + $874 = HEAP32[$873>>2]|0; + $875 = (_bitshift64Ashr(0,($871|0),32)|0); + $876 = tempRet0; + $877 = (___muldi3(($875|0),($876|0),($867|0),($868|0))|0); + $878 = tempRet0; + $879 = (_i64Add(($859|0),($860|0),($877|0),($878|0))|0); + $880 = tempRet0; + $881 = $570; + $882 = $881; + $883 = HEAP32[$882>>2]|0; + $884 = (($881) + 4)|0; + $885 = $884; + $886 = HEAP32[$885>>2]|0; + $887 = (_bitshift64Ashr(0,($883|0),32)|0); + $888 = tempRet0; + $889 = $93; + $890 = $889; + $891 = HEAP32[$890>>2]|0; + $892 = (($889) + 4)|0; + $893 = $892; + $894 = HEAP32[$893>>2]|0; + $895 = (_bitshift64Ashr(0,($891|0),32)|0); + $896 = tempRet0; + $897 = (___muldi3(($895|0),($896|0),($887|0),($888|0))|0); + $898 = tempRet0; + $899 = (_i64Add(($879|0),($880|0),($897|0),($898|0))|0); + $900 = tempRet0; + $901 = $in2; + $902 = $901; + $903 = HEAP32[$902>>2]|0; + $904 = (($901) + 4)|0; + $905 = $904; + $906 = HEAP32[$905>>2]|0; + $907 = (_bitshift64Ashr(0,($903|0),32)|0); + $908 = tempRet0; + $909 = (($in) + 64|0); + $910 = $909; + $911 = $910; + $912 = HEAP32[$911>>2]|0; + $913 = (($910) + 4)|0; + $914 = $913; + $915 = HEAP32[$914>>2]|0; + $916 = (_bitshift64Ashr(0,($912|0),32)|0); + $917 = tempRet0; + $918 = (___muldi3(($916|0),($917|0),($907|0),($908|0))|0); + $919 = tempRet0; + $920 = (_i64Add(($899|0),($900|0),($918|0),($919|0))|0); + $921 = tempRet0; + $922 = (($in2) + 64|0); + $923 = $922; + $924 = $923; + $925 = HEAP32[$924>>2]|0; + $926 = (($923) + 4)|0; + $927 = $926; + $928 = HEAP32[$927>>2]|0; + $929 = (_bitshift64Ashr(0,($925|0),32)|0); + $930 = tempRet0; + $931 = $in; + $932 = $931; + $933 = HEAP32[$932>>2]|0; + $934 = (($931) + 4)|0; + $935 = $934; + $936 = HEAP32[$935>>2]|0; + $937 = (_bitshift64Ashr(0,($933|0),32)|0); + $938 = tempRet0; + $939 = (___muldi3(($937|0),($938|0),($929|0),($930|0))|0); + $940 = tempRet0; + $941 = (_i64Add(($920|0),($921|0),($939|0),($940|0))|0); + $942 = tempRet0; + $943 = (($output) + 64|0); + $944 = $943; + $945 = $944; + HEAP32[$945>>2] = $941; + $946 = (($944) + 4)|0; + $947 = $946; + HEAP32[$947>>2] = $942; + $948 = $298; + $949 = $948; + $950 = HEAP32[$949>>2]|0; + $951 = (($948) + 4)|0; + $952 = $951; + $953 = HEAP32[$952>>2]|0; + $954 = (_bitshift64Ashr(0,($950|0),32)|0); + $955 = tempRet0; + $956 = $410; + $957 = $956; + $958 = HEAP32[$957>>2]|0; + $959 = (($956) + 4)|0; + $960 = $959; + $961 = HEAP32[$960>>2]|0; + $962 = (_bitshift64Ashr(0,($958|0),32)|0); + $963 = tempRet0; + $964 = (___muldi3(($962|0),($963|0),($954|0),($955|0))|0); + $965 = tempRet0; + $966 = $423; + $967 = $966; + $968 = HEAP32[$967>>2]|0; + $969 = (($966) + 4)|0; + $970 = $969; + $971 = HEAP32[$970>>2]|0; + $972 = (_bitshift64Ashr(0,($968|0),32)|0); + $973 = tempRet0; + $974 = $285; + $975 = $974; + $976 = HEAP32[$975>>2]|0; + $977 = (($974) + 4)|0; + $978 = $977; + $979 = HEAP32[$978>>2]|0; + $980 = (_bitshift64Ashr(0,($976|0),32)|0); + $981 = tempRet0; + $982 = (___muldi3(($980|0),($981|0),($972|0),($973|0))|0); + $983 = tempRet0; + $984 = (_i64Add(($982|0),($983|0),($964|0),($965|0))|0); + $985 = tempRet0; + $986 = $191; + $987 = $986; + $988 = HEAP32[$987>>2]|0; + $989 = (($986) + 4)|0; + $990 = $989; + $991 = HEAP32[$990>>2]|0; + $992 = (_bitshift64Ashr(0,($988|0),32)|0); + $993 = tempRet0; + $994 = $557; + $995 = $994; + $996 = HEAP32[$995>>2]|0; + $997 = (($994) + 4)|0; + $998 = $997; + $999 = HEAP32[$998>>2]|0; + $1000 = (_bitshift64Ashr(0,($996|0),32)|0); + $1001 = tempRet0; + $1002 = (___muldi3(($1000|0),($1001|0),($992|0),($993|0))|0); + $1003 = tempRet0; + $1004 = (_i64Add(($984|0),($985|0),($1002|0),($1003|0))|0); + $1005 = tempRet0; + $1006 = $570; + $1007 = $1006; + $1008 = HEAP32[$1007>>2]|0; + $1009 = (($1006) + 4)|0; + $1010 = $1009; + $1011 = HEAP32[$1010>>2]|0; + $1012 = (_bitshift64Ashr(0,($1008|0),32)|0); + $1013 = tempRet0; + $1014 = $178; + $1015 = $1014; + $1016 = HEAP32[$1015>>2]|0; + $1017 = (($1014) + 4)|0; + $1018 = $1017; + $1019 = HEAP32[$1018>>2]|0; + $1020 = (_bitshift64Ashr(0,($1016|0),32)|0); + $1021 = tempRet0; + $1022 = (___muldi3(($1020|0),($1021|0),($1012|0),($1013|0))|0); + $1023 = tempRet0; + $1024 = (_i64Add(($1004|0),($1005|0),($1022|0),($1023|0))|0); + $1025 = tempRet0; + $1026 = $106; + $1027 = $1026; + $1028 = HEAP32[$1027>>2]|0; + $1029 = (($1026) + 4)|0; + $1030 = $1029; + $1031 = HEAP32[$1030>>2]|0; + $1032 = (_bitshift64Ashr(0,($1028|0),32)|0); + $1033 = tempRet0; + $1034 = $722; + $1035 = $1034; + $1036 = HEAP32[$1035>>2]|0; + $1037 = (($1034) + 4)|0; + $1038 = $1037; + $1039 = HEAP32[$1038>>2]|0; + $1040 = (_bitshift64Ashr(0,($1036|0),32)|0); + $1041 = tempRet0; + $1042 = (___muldi3(($1040|0),($1041|0),($1032|0),($1033|0))|0); + $1043 = tempRet0; + $1044 = (_i64Add(($1024|0),($1025|0),($1042|0),($1043|0))|0); + $1045 = tempRet0; + $1046 = $735; + $1047 = $1046; + $1048 = HEAP32[$1047>>2]|0; + $1049 = (($1046) + 4)|0; + $1050 = $1049; + $1051 = HEAP32[$1050>>2]|0; + $1052 = (_bitshift64Ashr(0,($1048|0),32)|0); + $1053 = tempRet0; + $1054 = $93; + $1055 = $1054; + $1056 = HEAP32[$1055>>2]|0; + $1057 = (($1054) + 4)|0; + $1058 = $1057; + $1059 = HEAP32[$1058>>2]|0; + $1060 = (_bitshift64Ashr(0,($1056|0),32)|0); + $1061 = tempRet0; + $1062 = (___muldi3(($1060|0),($1061|0),($1052|0),($1053|0))|0); + $1063 = tempRet0; + $1064 = (_i64Add(($1044|0),($1045|0),($1062|0),($1063|0))|0); + $1065 = tempRet0; + $1066 = $41; + $1067 = $1066; + $1068 = HEAP32[$1067>>2]|0; + $1069 = (($1066) + 4)|0; + $1070 = $1069; + $1071 = HEAP32[$1070>>2]|0; + $1072 = (_bitshift64Ashr(0,($1068|0),32)|0); + $1073 = tempRet0; + $1074 = $909; + $1075 = $1074; + $1076 = HEAP32[$1075>>2]|0; + $1077 = (($1074) + 4)|0; + $1078 = $1077; + $1079 = HEAP32[$1078>>2]|0; + $1080 = (_bitshift64Ashr(0,($1076|0),32)|0); + $1081 = tempRet0; + $1082 = (___muldi3(($1080|0),($1081|0),($1072|0),($1073|0))|0); + $1083 = tempRet0; + $1084 = (_i64Add(($1064|0),($1065|0),($1082|0),($1083|0))|0); + $1085 = tempRet0; + $1086 = $922; + $1087 = $1086; + $1088 = HEAP32[$1087>>2]|0; + $1089 = (($1086) + 4)|0; + $1090 = $1089; + $1091 = HEAP32[$1090>>2]|0; + $1092 = (_bitshift64Ashr(0,($1088|0),32)|0); + $1093 = tempRet0; + $1094 = $30; + $1095 = $1094; + $1096 = HEAP32[$1095>>2]|0; + $1097 = (($1094) + 4)|0; + $1098 = $1097; + $1099 = HEAP32[$1098>>2]|0; + $1100 = (_bitshift64Ashr(0,($1096|0),32)|0); + $1101 = tempRet0; + $1102 = (___muldi3(($1100|0),($1101|0),($1092|0),($1093|0))|0); + $1103 = tempRet0; + $1104 = (_i64Add(($1084|0),($1085|0),($1102|0),($1103|0))|0); + $1105 = tempRet0; + $1106 = $in2; + $1107 = $1106; + $1108 = HEAP32[$1107>>2]|0; + $1109 = (($1106) + 4)|0; + $1110 = $1109; + $1111 = HEAP32[$1110>>2]|0; + $1112 = (_bitshift64Ashr(0,($1108|0),32)|0); + $1113 = tempRet0; + $1114 = (($in) + 72|0); + $1115 = $1114; + $1116 = $1115; + $1117 = HEAP32[$1116>>2]|0; + $1118 = (($1115) + 4)|0; + $1119 = $1118; + $1120 = HEAP32[$1119>>2]|0; + $1121 = (_bitshift64Ashr(0,($1117|0),32)|0); + $1122 = tempRet0; + $1123 = (___muldi3(($1121|0),($1122|0),($1112|0),($1113|0))|0); + $1124 = tempRet0; + $1125 = (_i64Add(($1104|0),($1105|0),($1123|0),($1124|0))|0); + $1126 = tempRet0; + $1127 = (($in2) + 72|0); + $1128 = $1127; + $1129 = $1128; + $1130 = HEAP32[$1129>>2]|0; + $1131 = (($1128) + 4)|0; + $1132 = $1131; + $1133 = HEAP32[$1132>>2]|0; + $1134 = (_bitshift64Ashr(0,($1130|0),32)|0); + $1135 = tempRet0; + $1136 = $in; + $1137 = $1136; + $1138 = HEAP32[$1137>>2]|0; + $1139 = (($1136) + 4)|0; + $1140 = $1139; + $1141 = HEAP32[$1140>>2]|0; + $1142 = (_bitshift64Ashr(0,($1138|0),32)|0); + $1143 = tempRet0; + $1144 = (___muldi3(($1142|0),($1143|0),($1134|0),($1135|0))|0); + $1145 = tempRet0; + $1146 = (_i64Add(($1125|0),($1126|0),($1144|0),($1145|0))|0); + $1147 = tempRet0; + $1148 = (($output) + 72|0); + $1149 = $1148; + $1150 = $1149; + HEAP32[$1150>>2] = $1146; + $1151 = (($1149) + 4)|0; + $1152 = $1151; + HEAP32[$1152>>2] = $1147; + $1153 = $423; + $1154 = $1153; + $1155 = HEAP32[$1154>>2]|0; + $1156 = (($1153) + 4)|0; + $1157 = $1156; + $1158 = HEAP32[$1157>>2]|0; + $1159 = (_bitshift64Ashr(0,($1155|0),32)|0); + $1160 = tempRet0; + $1161 = $410; + $1162 = $1161; + $1163 = HEAP32[$1162>>2]|0; + $1164 = (($1161) + 4)|0; + $1165 = $1164; + $1166 = HEAP32[$1165>>2]|0; + $1167 = (_bitshift64Ashr(0,($1163|0),32)|0); + $1168 = tempRet0; + $1169 = (___muldi3(($1167|0),($1168|0),($1159|0),($1160|0))|0); + $1170 = tempRet0; + $1171 = $191; + $1172 = $1171; + $1173 = HEAP32[$1172>>2]|0; + $1174 = (($1171) + 4)|0; + $1175 = $1174; + $1176 = HEAP32[$1175>>2]|0; + $1177 = (_bitshift64Ashr(0,($1173|0),32)|0); + $1178 = tempRet0; + $1179 = $722; + $1180 = $1179; + $1181 = HEAP32[$1180>>2]|0; + $1182 = (($1179) + 4)|0; + $1183 = $1182; + $1184 = HEAP32[$1183>>2]|0; + $1185 = (_bitshift64Ashr(0,($1181|0),32)|0); + $1186 = tempRet0; + $1187 = (___muldi3(($1185|0),($1186|0),($1177|0),($1178|0))|0); + $1188 = tempRet0; + $1189 = (_i64Add(($1187|0),($1188|0),($1169|0),($1170|0))|0); + $1190 = tempRet0; + $1191 = $735; + $1192 = $1191; + $1193 = HEAP32[$1192>>2]|0; + $1194 = (($1191) + 4)|0; + $1195 = $1194; + $1196 = HEAP32[$1195>>2]|0; + $1197 = (_bitshift64Ashr(0,($1193|0),32)|0); + $1198 = tempRet0; + $1199 = $178; + $1200 = $1199; + $1201 = HEAP32[$1200>>2]|0; + $1202 = (($1199) + 4)|0; + $1203 = $1202; + $1204 = HEAP32[$1203>>2]|0; + $1205 = (_bitshift64Ashr(0,($1201|0),32)|0); + $1206 = tempRet0; + $1207 = (___muldi3(($1205|0),($1206|0),($1197|0),($1198|0))|0); + $1208 = tempRet0; + $1209 = (_i64Add(($1189|0),($1190|0),($1207|0),($1208|0))|0); + $1210 = tempRet0; + $1211 = $41; + $1212 = $1211; + $1213 = HEAP32[$1212>>2]|0; + $1214 = (($1211) + 4)|0; + $1215 = $1214; + $1216 = HEAP32[$1215>>2]|0; + $1217 = (_bitshift64Ashr(0,($1213|0),32)|0); + $1218 = tempRet0; + $1219 = $1114; + $1220 = $1219; + $1221 = HEAP32[$1220>>2]|0; + $1222 = (($1219) + 4)|0; + $1223 = $1222; + $1224 = HEAP32[$1223>>2]|0; + $1225 = (_bitshift64Ashr(0,($1221|0),32)|0); + $1226 = tempRet0; + $1227 = (___muldi3(($1225|0),($1226|0),($1217|0),($1218|0))|0); + $1228 = tempRet0; + $1229 = (_i64Add(($1209|0),($1210|0),($1227|0),($1228|0))|0); + $1230 = tempRet0; + $1231 = $1127; + $1232 = $1231; + $1233 = HEAP32[$1232>>2]|0; + $1234 = (($1231) + 4)|0; + $1235 = $1234; + $1236 = HEAP32[$1235>>2]|0; + $1237 = (_bitshift64Ashr(0,($1233|0),32)|0); + $1238 = tempRet0; + $1239 = $30; + $1240 = $1239; + $1241 = HEAP32[$1240>>2]|0; + $1242 = (($1239) + 4)|0; + $1243 = $1242; + $1244 = HEAP32[$1243>>2]|0; + $1245 = (_bitshift64Ashr(0,($1241|0),32)|0); + $1246 = tempRet0; + $1247 = (___muldi3(($1245|0),($1246|0),($1237|0),($1238|0))|0); + $1248 = tempRet0; + $1249 = (_i64Add(($1229|0),($1230|0),($1247|0),($1248|0))|0); + $1250 = tempRet0; + $1251 = (_bitshift64Shl(($1249|0),($1250|0),1)|0); + $1252 = tempRet0; + $1253 = $298; + $1254 = $1253; + $1255 = HEAP32[$1254>>2]|0; + $1256 = (($1253) + 4)|0; + $1257 = $1256; + $1258 = HEAP32[$1257>>2]|0; + $1259 = (_bitshift64Ashr(0,($1255|0),32)|0); + $1260 = tempRet0; + $1261 = $557; + $1262 = $1261; + $1263 = HEAP32[$1262>>2]|0; + $1264 = (($1261) + 4)|0; + $1265 = $1264; + $1266 = HEAP32[$1265>>2]|0; + $1267 = (_bitshift64Ashr(0,($1263|0),32)|0); + $1268 = tempRet0; + $1269 = (___muldi3(($1267|0),($1268|0),($1259|0),($1260|0))|0); + $1270 = tempRet0; + $1271 = (_i64Add(($1251|0),($1252|0),($1269|0),($1270|0))|0); + $1272 = tempRet0; + $1273 = $570; + $1274 = $1273; + $1275 = HEAP32[$1274>>2]|0; + $1276 = (($1273) + 4)|0; + $1277 = $1276; + $1278 = HEAP32[$1277>>2]|0; + $1279 = (_bitshift64Ashr(0,($1275|0),32)|0); + $1280 = tempRet0; + $1281 = $285; + $1282 = $1281; + $1283 = HEAP32[$1282>>2]|0; + $1284 = (($1281) + 4)|0; + $1285 = $1284; + $1286 = HEAP32[$1285>>2]|0; + $1287 = (_bitshift64Ashr(0,($1283|0),32)|0); + $1288 = tempRet0; + $1289 = (___muldi3(($1287|0),($1288|0),($1279|0),($1280|0))|0); + $1290 = tempRet0; + $1291 = (_i64Add(($1271|0),($1272|0),($1289|0),($1290|0))|0); + $1292 = tempRet0; + $1293 = $106; + $1294 = $1293; + $1295 = HEAP32[$1294>>2]|0; + $1296 = (($1293) + 4)|0; + $1297 = $1296; + $1298 = HEAP32[$1297>>2]|0; + $1299 = (_bitshift64Ashr(0,($1295|0),32)|0); + $1300 = tempRet0; + $1301 = $909; + $1302 = $1301; + $1303 = HEAP32[$1302>>2]|0; + $1304 = (($1301) + 4)|0; + $1305 = $1304; + $1306 = HEAP32[$1305>>2]|0; + $1307 = (_bitshift64Ashr(0,($1303|0),32)|0); + $1308 = tempRet0; + $1309 = (___muldi3(($1307|0),($1308|0),($1299|0),($1300|0))|0); + $1310 = tempRet0; + $1311 = (_i64Add(($1291|0),($1292|0),($1309|0),($1310|0))|0); + $1312 = tempRet0; + $1313 = $922; + $1314 = $1313; + $1315 = HEAP32[$1314>>2]|0; + $1316 = (($1313) + 4)|0; + $1317 = $1316; + $1318 = HEAP32[$1317>>2]|0; + $1319 = (_bitshift64Ashr(0,($1315|0),32)|0); + $1320 = tempRet0; + $1321 = $93; + $1322 = $1321; + $1323 = HEAP32[$1322>>2]|0; + $1324 = (($1321) + 4)|0; + $1325 = $1324; + $1326 = HEAP32[$1325>>2]|0; + $1327 = (_bitshift64Ashr(0,($1323|0),32)|0); + $1328 = tempRet0; + $1329 = (___muldi3(($1327|0),($1328|0),($1319|0),($1320|0))|0); + $1330 = tempRet0; + $1331 = (_i64Add(($1311|0),($1312|0),($1329|0),($1330|0))|0); + $1332 = tempRet0; + $1333 = (($output) + 80|0); + $1334 = $1333; + $1335 = $1334; + HEAP32[$1335>>2] = $1331; + $1336 = (($1334) + 4)|0; + $1337 = $1336; + HEAP32[$1337>>2] = $1332; + $1338 = $423; + $1339 = $1338; + $1340 = HEAP32[$1339>>2]|0; + $1341 = (($1338) + 4)|0; + $1342 = $1341; + $1343 = HEAP32[$1342>>2]|0; + $1344 = (_bitshift64Ashr(0,($1340|0),32)|0); + $1345 = tempRet0; + $1346 = $557; + $1347 = $1346; + $1348 = HEAP32[$1347>>2]|0; + $1349 = (($1346) + 4)|0; + $1350 = $1349; + $1351 = HEAP32[$1350>>2]|0; + $1352 = (_bitshift64Ashr(0,($1348|0),32)|0); + $1353 = tempRet0; + $1354 = (___muldi3(($1352|0),($1353|0),($1344|0),($1345|0))|0); + $1355 = tempRet0; + $1356 = $570; + $1357 = $1356; + $1358 = HEAP32[$1357>>2]|0; + $1359 = (($1356) + 4)|0; + $1360 = $1359; + $1361 = HEAP32[$1360>>2]|0; + $1362 = (_bitshift64Ashr(0,($1358|0),32)|0); + $1363 = tempRet0; + $1364 = $410; + $1365 = $1364; + $1366 = HEAP32[$1365>>2]|0; + $1367 = (($1364) + 4)|0; + $1368 = $1367; + $1369 = HEAP32[$1368>>2]|0; + $1370 = (_bitshift64Ashr(0,($1366|0),32)|0); + $1371 = tempRet0; + $1372 = (___muldi3(($1370|0),($1371|0),($1362|0),($1363|0))|0); + $1373 = tempRet0; + $1374 = (_i64Add(($1372|0),($1373|0),($1354|0),($1355|0))|0); + $1375 = tempRet0; + $1376 = $298; + $1377 = $1376; + $1378 = HEAP32[$1377>>2]|0; + $1379 = (($1376) + 4)|0; + $1380 = $1379; + $1381 = HEAP32[$1380>>2]|0; + $1382 = (_bitshift64Ashr(0,($1378|0),32)|0); + $1383 = tempRet0; + $1384 = $722; + $1385 = $1384; + $1386 = HEAP32[$1385>>2]|0; + $1387 = (($1384) + 4)|0; + $1388 = $1387; + $1389 = HEAP32[$1388>>2]|0; + $1390 = (_bitshift64Ashr(0,($1386|0),32)|0); + $1391 = tempRet0; + $1392 = (___muldi3(($1390|0),($1391|0),($1382|0),($1383|0))|0); + $1393 = tempRet0; + $1394 = (_i64Add(($1374|0),($1375|0),($1392|0),($1393|0))|0); + $1395 = tempRet0; + $1396 = $735; + $1397 = $1396; + $1398 = HEAP32[$1397>>2]|0; + $1399 = (($1396) + 4)|0; + $1400 = $1399; + $1401 = HEAP32[$1400>>2]|0; + $1402 = (_bitshift64Ashr(0,($1398|0),32)|0); + $1403 = tempRet0; + $1404 = $285; + $1405 = $1404; + $1406 = HEAP32[$1405>>2]|0; + $1407 = (($1404) + 4)|0; + $1408 = $1407; + $1409 = HEAP32[$1408>>2]|0; + $1410 = (_bitshift64Ashr(0,($1406|0),32)|0); + $1411 = tempRet0; + $1412 = (___muldi3(($1410|0),($1411|0),($1402|0),($1403|0))|0); + $1413 = tempRet0; + $1414 = (_i64Add(($1394|0),($1395|0),($1412|0),($1413|0))|0); + $1415 = tempRet0; + $1416 = $191; + $1417 = $1416; + $1418 = HEAP32[$1417>>2]|0; + $1419 = (($1416) + 4)|0; + $1420 = $1419; + $1421 = HEAP32[$1420>>2]|0; + $1422 = (_bitshift64Ashr(0,($1418|0),32)|0); + $1423 = tempRet0; + $1424 = $909; + $1425 = $1424; + $1426 = HEAP32[$1425>>2]|0; + $1427 = (($1424) + 4)|0; + $1428 = $1427; + $1429 = HEAP32[$1428>>2]|0; + $1430 = (_bitshift64Ashr(0,($1426|0),32)|0); + $1431 = tempRet0; + $1432 = (___muldi3(($1430|0),($1431|0),($1422|0),($1423|0))|0); + $1433 = tempRet0; + $1434 = (_i64Add(($1414|0),($1415|0),($1432|0),($1433|0))|0); + $1435 = tempRet0; + $1436 = $922; + $1437 = $1436; + $1438 = HEAP32[$1437>>2]|0; + $1439 = (($1436) + 4)|0; + $1440 = $1439; + $1441 = HEAP32[$1440>>2]|0; + $1442 = (_bitshift64Ashr(0,($1438|0),32)|0); + $1443 = tempRet0; + $1444 = $178; + $1445 = $1444; + $1446 = HEAP32[$1445>>2]|0; + $1447 = (($1444) + 4)|0; + $1448 = $1447; + $1449 = HEAP32[$1448>>2]|0; + $1450 = (_bitshift64Ashr(0,($1446|0),32)|0); + $1451 = tempRet0; + $1452 = (___muldi3(($1450|0),($1451|0),($1442|0),($1443|0))|0); + $1453 = tempRet0; + $1454 = (_i64Add(($1434|0),($1435|0),($1452|0),($1453|0))|0); + $1455 = tempRet0; + $1456 = $106; + $1457 = $1456; + $1458 = HEAP32[$1457>>2]|0; + $1459 = (($1456) + 4)|0; + $1460 = $1459; + $1461 = HEAP32[$1460>>2]|0; + $1462 = (_bitshift64Ashr(0,($1458|0),32)|0); + $1463 = tempRet0; + $1464 = $1114; + $1465 = $1464; + $1466 = HEAP32[$1465>>2]|0; + $1467 = (($1464) + 4)|0; + $1468 = $1467; + $1469 = HEAP32[$1468>>2]|0; + $1470 = (_bitshift64Ashr(0,($1466|0),32)|0); + $1471 = tempRet0; + $1472 = (___muldi3(($1470|0),($1471|0),($1462|0),($1463|0))|0); + $1473 = tempRet0; + $1474 = (_i64Add(($1454|0),($1455|0),($1472|0),($1473|0))|0); + $1475 = tempRet0; + $1476 = $1127; + $1477 = $1476; + $1478 = HEAP32[$1477>>2]|0; + $1479 = (($1476) + 4)|0; + $1480 = $1479; + $1481 = HEAP32[$1480>>2]|0; + $1482 = (_bitshift64Ashr(0,($1478|0),32)|0); + $1483 = tempRet0; + $1484 = $93; + $1485 = $1484; + $1486 = HEAP32[$1485>>2]|0; + $1487 = (($1484) + 4)|0; + $1488 = $1487; + $1489 = HEAP32[$1488>>2]|0; + $1490 = (_bitshift64Ashr(0,($1486|0),32)|0); + $1491 = tempRet0; + $1492 = (___muldi3(($1490|0),($1491|0),($1482|0),($1483|0))|0); + $1493 = tempRet0; + $1494 = (_i64Add(($1474|0),($1475|0),($1492|0),($1493|0))|0); + $1495 = tempRet0; + $1496 = (($output) + 88|0); + $1497 = $1496; + $1498 = $1497; + HEAP32[$1498>>2] = $1494; + $1499 = (($1497) + 4)|0; + $1500 = $1499; + HEAP32[$1500>>2] = $1495; + $1501 = $570; + $1502 = $1501; + $1503 = HEAP32[$1502>>2]|0; + $1504 = (($1501) + 4)|0; + $1505 = $1504; + $1506 = HEAP32[$1505>>2]|0; + $1507 = (_bitshift64Ashr(0,($1503|0),32)|0); + $1508 = tempRet0; + $1509 = $557; + $1510 = $1509; + $1511 = HEAP32[$1510>>2]|0; + $1512 = (($1509) + 4)|0; + $1513 = $1512; + $1514 = HEAP32[$1513>>2]|0; + $1515 = (_bitshift64Ashr(0,($1511|0),32)|0); + $1516 = tempRet0; + $1517 = (___muldi3(($1515|0),($1516|0),($1507|0),($1508|0))|0); + $1518 = tempRet0; + $1519 = $423; + $1520 = $1519; + $1521 = HEAP32[$1520>>2]|0; + $1522 = (($1519) + 4)|0; + $1523 = $1522; + $1524 = HEAP32[$1523>>2]|0; + $1525 = (_bitshift64Ashr(0,($1521|0),32)|0); + $1526 = tempRet0; + $1527 = $722; + $1528 = $1527; + $1529 = HEAP32[$1528>>2]|0; + $1530 = (($1527) + 4)|0; + $1531 = $1530; + $1532 = HEAP32[$1531>>2]|0; + $1533 = (_bitshift64Ashr(0,($1529|0),32)|0); + $1534 = tempRet0; + $1535 = (___muldi3(($1533|0),($1534|0),($1525|0),($1526|0))|0); + $1536 = tempRet0; + $1537 = $735; + $1538 = $1537; + $1539 = HEAP32[$1538>>2]|0; + $1540 = (($1537) + 4)|0; + $1541 = $1540; + $1542 = HEAP32[$1541>>2]|0; + $1543 = (_bitshift64Ashr(0,($1539|0),32)|0); + $1544 = tempRet0; + $1545 = $410; + $1546 = $1545; + $1547 = HEAP32[$1546>>2]|0; + $1548 = (($1545) + 4)|0; + $1549 = $1548; + $1550 = HEAP32[$1549>>2]|0; + $1551 = (_bitshift64Ashr(0,($1547|0),32)|0); + $1552 = tempRet0; + $1553 = (___muldi3(($1551|0),($1552|0),($1543|0),($1544|0))|0); + $1554 = tempRet0; + $1555 = (_i64Add(($1553|0),($1554|0),($1535|0),($1536|0))|0); + $1556 = tempRet0; + $1557 = $191; + $1558 = $1557; + $1559 = HEAP32[$1558>>2]|0; + $1560 = (($1557) + 4)|0; + $1561 = $1560; + $1562 = HEAP32[$1561>>2]|0; + $1563 = (_bitshift64Ashr(0,($1559|0),32)|0); + $1564 = tempRet0; + $1565 = $1114; + $1566 = $1565; + $1567 = HEAP32[$1566>>2]|0; + $1568 = (($1565) + 4)|0; + $1569 = $1568; + $1570 = HEAP32[$1569>>2]|0; + $1571 = (_bitshift64Ashr(0,($1567|0),32)|0); + $1572 = tempRet0; + $1573 = (___muldi3(($1571|0),($1572|0),($1563|0),($1564|0))|0); + $1574 = tempRet0; + $1575 = (_i64Add(($1555|0),($1556|0),($1573|0),($1574|0))|0); + $1576 = tempRet0; + $1577 = $1127; + $1578 = $1577; + $1579 = HEAP32[$1578>>2]|0; + $1580 = (($1577) + 4)|0; + $1581 = $1580; + $1582 = HEAP32[$1581>>2]|0; + $1583 = (_bitshift64Ashr(0,($1579|0),32)|0); + $1584 = tempRet0; + $1585 = $178; + $1586 = $1585; + $1587 = HEAP32[$1586>>2]|0; + $1588 = (($1585) + 4)|0; + $1589 = $1588; + $1590 = HEAP32[$1589>>2]|0; + $1591 = (_bitshift64Ashr(0,($1587|0),32)|0); + $1592 = tempRet0; + $1593 = (___muldi3(($1591|0),($1592|0),($1583|0),($1584|0))|0); + $1594 = tempRet0; + $1595 = (_i64Add(($1575|0),($1576|0),($1593|0),($1594|0))|0); + $1596 = tempRet0; + $1597 = (_bitshift64Shl(($1595|0),($1596|0),1)|0); + $1598 = tempRet0; + $1599 = (_i64Add(($1597|0),($1598|0),($1517|0),($1518|0))|0); + $1600 = tempRet0; + $1601 = $298; + $1602 = $1601; + $1603 = HEAP32[$1602>>2]|0; + $1604 = (($1601) + 4)|0; + $1605 = $1604; + $1606 = HEAP32[$1605>>2]|0; + $1607 = (_bitshift64Ashr(0,($1603|0),32)|0); + $1608 = tempRet0; + $1609 = $909; + $1610 = $1609; + $1611 = HEAP32[$1610>>2]|0; + $1612 = (($1609) + 4)|0; + $1613 = $1612; + $1614 = HEAP32[$1613>>2]|0; + $1615 = (_bitshift64Ashr(0,($1611|0),32)|0); + $1616 = tempRet0; + $1617 = (___muldi3(($1615|0),($1616|0),($1607|0),($1608|0))|0); + $1618 = tempRet0; + $1619 = (_i64Add(($1599|0),($1600|0),($1617|0),($1618|0))|0); + $1620 = tempRet0; + $1621 = $922; + $1622 = $1621; + $1623 = HEAP32[$1622>>2]|0; + $1624 = (($1621) + 4)|0; + $1625 = $1624; + $1626 = HEAP32[$1625>>2]|0; + $1627 = (_bitshift64Ashr(0,($1623|0),32)|0); + $1628 = tempRet0; + $1629 = $285; + $1630 = $1629; + $1631 = HEAP32[$1630>>2]|0; + $1632 = (($1629) + 4)|0; + $1633 = $1632; + $1634 = HEAP32[$1633>>2]|0; + $1635 = (_bitshift64Ashr(0,($1631|0),32)|0); + $1636 = tempRet0; + $1637 = (___muldi3(($1635|0),($1636|0),($1627|0),($1628|0))|0); + $1638 = tempRet0; + $1639 = (_i64Add(($1619|0),($1620|0),($1637|0),($1638|0))|0); + $1640 = tempRet0; + $1641 = (($output) + 96|0); + $1642 = $1641; + $1643 = $1642; + HEAP32[$1643>>2] = $1639; + $1644 = (($1642) + 4)|0; + $1645 = $1644; + HEAP32[$1645>>2] = $1640; + $1646 = $570; + $1647 = $1646; + $1648 = HEAP32[$1647>>2]|0; + $1649 = (($1646) + 4)|0; + $1650 = $1649; + $1651 = HEAP32[$1650>>2]|0; + $1652 = (_bitshift64Ashr(0,($1648|0),32)|0); + $1653 = tempRet0; + $1654 = $722; + $1655 = $1654; + $1656 = HEAP32[$1655>>2]|0; + $1657 = (($1654) + 4)|0; + $1658 = $1657; + $1659 = HEAP32[$1658>>2]|0; + $1660 = (_bitshift64Ashr(0,($1656|0),32)|0); + $1661 = tempRet0; + $1662 = (___muldi3(($1660|0),($1661|0),($1652|0),($1653|0))|0); + $1663 = tempRet0; + $1664 = $735; + $1665 = $1664; + $1666 = HEAP32[$1665>>2]|0; + $1667 = (($1664) + 4)|0; + $1668 = $1667; + $1669 = HEAP32[$1668>>2]|0; + $1670 = (_bitshift64Ashr(0,($1666|0),32)|0); + $1671 = tempRet0; + $1672 = $557; + $1673 = $1672; + $1674 = HEAP32[$1673>>2]|0; + $1675 = (($1672) + 4)|0; + $1676 = $1675; + $1677 = HEAP32[$1676>>2]|0; + $1678 = (_bitshift64Ashr(0,($1674|0),32)|0); + $1679 = tempRet0; + $1680 = (___muldi3(($1678|0),($1679|0),($1670|0),($1671|0))|0); + $1681 = tempRet0; + $1682 = (_i64Add(($1680|0),($1681|0),($1662|0),($1663|0))|0); + $1683 = tempRet0; + $1684 = $423; + $1685 = $1684; + $1686 = HEAP32[$1685>>2]|0; + $1687 = (($1684) + 4)|0; + $1688 = $1687; + $1689 = HEAP32[$1688>>2]|0; + $1690 = (_bitshift64Ashr(0,($1686|0),32)|0); + $1691 = tempRet0; + $1692 = $909; + $1693 = $1692; + $1694 = HEAP32[$1693>>2]|0; + $1695 = (($1692) + 4)|0; + $1696 = $1695; + $1697 = HEAP32[$1696>>2]|0; + $1698 = (_bitshift64Ashr(0,($1694|0),32)|0); + $1699 = tempRet0; + $1700 = (___muldi3(($1698|0),($1699|0),($1690|0),($1691|0))|0); + $1701 = tempRet0; + $1702 = (_i64Add(($1682|0),($1683|0),($1700|0),($1701|0))|0); + $1703 = tempRet0; + $1704 = $922; + $1705 = $1704; + $1706 = HEAP32[$1705>>2]|0; + $1707 = (($1704) + 4)|0; + $1708 = $1707; + $1709 = HEAP32[$1708>>2]|0; + $1710 = (_bitshift64Ashr(0,($1706|0),32)|0); + $1711 = tempRet0; + $1712 = $410; + $1713 = $1712; + $1714 = HEAP32[$1713>>2]|0; + $1715 = (($1712) + 4)|0; + $1716 = $1715; + $1717 = HEAP32[$1716>>2]|0; + $1718 = (_bitshift64Ashr(0,($1714|0),32)|0); + $1719 = tempRet0; + $1720 = (___muldi3(($1718|0),($1719|0),($1710|0),($1711|0))|0); + $1721 = tempRet0; + $1722 = (_i64Add(($1702|0),($1703|0),($1720|0),($1721|0))|0); + $1723 = tempRet0; + $1724 = $298; + $1725 = $1724; + $1726 = HEAP32[$1725>>2]|0; + $1727 = (($1724) + 4)|0; + $1728 = $1727; + $1729 = HEAP32[$1728>>2]|0; + $1730 = (_bitshift64Ashr(0,($1726|0),32)|0); + $1731 = tempRet0; + $1732 = $1114; + $1733 = $1732; + $1734 = HEAP32[$1733>>2]|0; + $1735 = (($1732) + 4)|0; + $1736 = $1735; + $1737 = HEAP32[$1736>>2]|0; + $1738 = (_bitshift64Ashr(0,($1734|0),32)|0); + $1739 = tempRet0; + $1740 = (___muldi3(($1738|0),($1739|0),($1730|0),($1731|0))|0); + $1741 = tempRet0; + $1742 = (_i64Add(($1722|0),($1723|0),($1740|0),($1741|0))|0); + $1743 = tempRet0; + $1744 = $1127; + $1745 = $1744; + $1746 = HEAP32[$1745>>2]|0; + $1747 = (($1744) + 4)|0; + $1748 = $1747; + $1749 = HEAP32[$1748>>2]|0; + $1750 = (_bitshift64Ashr(0,($1746|0),32)|0); + $1751 = tempRet0; + $1752 = $285; + $1753 = $1752; + $1754 = HEAP32[$1753>>2]|0; + $1755 = (($1752) + 4)|0; + $1756 = $1755; + $1757 = HEAP32[$1756>>2]|0; + $1758 = (_bitshift64Ashr(0,($1754|0),32)|0); + $1759 = tempRet0; + $1760 = (___muldi3(($1758|0),($1759|0),($1750|0),($1751|0))|0); + $1761 = tempRet0; + $1762 = (_i64Add(($1742|0),($1743|0),($1760|0),($1761|0))|0); + $1763 = tempRet0; + $1764 = (($output) + 104|0); + $1765 = $1764; + $1766 = $1765; + HEAP32[$1766>>2] = $1762; + $1767 = (($1765) + 4)|0; + $1768 = $1767; + HEAP32[$1768>>2] = $1763; + $1769 = $735; + $1770 = $1769; + $1771 = HEAP32[$1770>>2]|0; + $1772 = (($1769) + 4)|0; + $1773 = $1772; + $1774 = HEAP32[$1773>>2]|0; + $1775 = (_bitshift64Ashr(0,($1771|0),32)|0); + $1776 = tempRet0; + $1777 = $722; + $1778 = $1777; + $1779 = HEAP32[$1778>>2]|0; + $1780 = (($1777) + 4)|0; + $1781 = $1780; + $1782 = HEAP32[$1781>>2]|0; + $1783 = (_bitshift64Ashr(0,($1779|0),32)|0); + $1784 = tempRet0; + $1785 = (___muldi3(($1783|0),($1784|0),($1775|0),($1776|0))|0); + $1786 = tempRet0; + $1787 = $423; + $1788 = $1787; + $1789 = HEAP32[$1788>>2]|0; + $1790 = (($1787) + 4)|0; + $1791 = $1790; + $1792 = HEAP32[$1791>>2]|0; + $1793 = (_bitshift64Ashr(0,($1789|0),32)|0); + $1794 = tempRet0; + $1795 = $1114; + $1796 = $1795; + $1797 = HEAP32[$1796>>2]|0; + $1798 = (($1795) + 4)|0; + $1799 = $1798; + $1800 = HEAP32[$1799>>2]|0; + $1801 = (_bitshift64Ashr(0,($1797|0),32)|0); + $1802 = tempRet0; + $1803 = (___muldi3(($1801|0),($1802|0),($1793|0),($1794|0))|0); + $1804 = tempRet0; + $1805 = (_i64Add(($1803|0),($1804|0),($1785|0),($1786|0))|0); + $1806 = tempRet0; + $1807 = $1127; + $1808 = $1807; + $1809 = HEAP32[$1808>>2]|0; + $1810 = (($1807) + 4)|0; + $1811 = $1810; + $1812 = HEAP32[$1811>>2]|0; + $1813 = (_bitshift64Ashr(0,($1809|0),32)|0); + $1814 = tempRet0; + $1815 = $410; + $1816 = $1815; + $1817 = HEAP32[$1816>>2]|0; + $1818 = (($1815) + 4)|0; + $1819 = $1818; + $1820 = HEAP32[$1819>>2]|0; + $1821 = (_bitshift64Ashr(0,($1817|0),32)|0); + $1822 = tempRet0; + $1823 = (___muldi3(($1821|0),($1822|0),($1813|0),($1814|0))|0); + $1824 = tempRet0; + $1825 = (_i64Add(($1805|0),($1806|0),($1823|0),($1824|0))|0); + $1826 = tempRet0; + $1827 = (_bitshift64Shl(($1825|0),($1826|0),1)|0); + $1828 = tempRet0; + $1829 = $570; + $1830 = $1829; + $1831 = HEAP32[$1830>>2]|0; + $1832 = (($1829) + 4)|0; + $1833 = $1832; + $1834 = HEAP32[$1833>>2]|0; + $1835 = (_bitshift64Ashr(0,($1831|0),32)|0); + $1836 = tempRet0; + $1837 = $909; + $1838 = $1837; + $1839 = HEAP32[$1838>>2]|0; + $1840 = (($1837) + 4)|0; + $1841 = $1840; + $1842 = HEAP32[$1841>>2]|0; + $1843 = (_bitshift64Ashr(0,($1839|0),32)|0); + $1844 = tempRet0; + $1845 = (___muldi3(($1843|0),($1844|0),($1835|0),($1836|0))|0); + $1846 = tempRet0; + $1847 = (_i64Add(($1827|0),($1828|0),($1845|0),($1846|0))|0); + $1848 = tempRet0; + $1849 = $922; + $1850 = $1849; + $1851 = HEAP32[$1850>>2]|0; + $1852 = (($1849) + 4)|0; + $1853 = $1852; + $1854 = HEAP32[$1853>>2]|0; + $1855 = (_bitshift64Ashr(0,($1851|0),32)|0); + $1856 = tempRet0; + $1857 = $557; + $1858 = $1857; + $1859 = HEAP32[$1858>>2]|0; + $1860 = (($1857) + 4)|0; + $1861 = $1860; + $1862 = HEAP32[$1861>>2]|0; + $1863 = (_bitshift64Ashr(0,($1859|0),32)|0); + $1864 = tempRet0; + $1865 = (___muldi3(($1863|0),($1864|0),($1855|0),($1856|0))|0); + $1866 = tempRet0; + $1867 = (_i64Add(($1847|0),($1848|0),($1865|0),($1866|0))|0); + $1868 = tempRet0; + $1869 = (($output) + 112|0); + $1870 = $1869; + $1871 = $1870; + HEAP32[$1871>>2] = $1867; + $1872 = (($1870) + 4)|0; + $1873 = $1872; + HEAP32[$1873>>2] = $1868; + $1874 = $735; + $1875 = $1874; + $1876 = HEAP32[$1875>>2]|0; + $1877 = (($1874) + 4)|0; + $1878 = $1877; + $1879 = HEAP32[$1878>>2]|0; + $1880 = (_bitshift64Ashr(0,($1876|0),32)|0); + $1881 = tempRet0; + $1882 = $909; + $1883 = $1882; + $1884 = HEAP32[$1883>>2]|0; + $1885 = (($1882) + 4)|0; + $1886 = $1885; + $1887 = HEAP32[$1886>>2]|0; + $1888 = (_bitshift64Ashr(0,($1884|0),32)|0); + $1889 = tempRet0; + $1890 = (___muldi3(($1888|0),($1889|0),($1880|0),($1881|0))|0); + $1891 = tempRet0; + $1892 = $922; + $1893 = $1892; + $1894 = HEAP32[$1893>>2]|0; + $1895 = (($1892) + 4)|0; + $1896 = $1895; + $1897 = HEAP32[$1896>>2]|0; + $1898 = (_bitshift64Ashr(0,($1894|0),32)|0); + $1899 = tempRet0; + $1900 = $722; + $1901 = $1900; + $1902 = HEAP32[$1901>>2]|0; + $1903 = (($1900) + 4)|0; + $1904 = $1903; + $1905 = HEAP32[$1904>>2]|0; + $1906 = (_bitshift64Ashr(0,($1902|0),32)|0); + $1907 = tempRet0; + $1908 = (___muldi3(($1906|0),($1907|0),($1898|0),($1899|0))|0); + $1909 = tempRet0; + $1910 = (_i64Add(($1908|0),($1909|0),($1890|0),($1891|0))|0); + $1911 = tempRet0; + $1912 = $570; + $1913 = $1912; + $1914 = HEAP32[$1913>>2]|0; + $1915 = (($1912) + 4)|0; + $1916 = $1915; + $1917 = HEAP32[$1916>>2]|0; + $1918 = (_bitshift64Ashr(0,($1914|0),32)|0); + $1919 = tempRet0; + $1920 = $1114; + $1921 = $1920; + $1922 = HEAP32[$1921>>2]|0; + $1923 = (($1920) + 4)|0; + $1924 = $1923; + $1925 = HEAP32[$1924>>2]|0; + $1926 = (_bitshift64Ashr(0,($1922|0),32)|0); + $1927 = tempRet0; + $1928 = (___muldi3(($1926|0),($1927|0),($1918|0),($1919|0))|0); + $1929 = tempRet0; + $1930 = (_i64Add(($1910|0),($1911|0),($1928|0),($1929|0))|0); + $1931 = tempRet0; + $1932 = $1127; + $1933 = $1932; + $1934 = HEAP32[$1933>>2]|0; + $1935 = (($1932) + 4)|0; + $1936 = $1935; + $1937 = HEAP32[$1936>>2]|0; + $1938 = (_bitshift64Ashr(0,($1934|0),32)|0); + $1939 = tempRet0; + $1940 = $557; + $1941 = $1940; + $1942 = HEAP32[$1941>>2]|0; + $1943 = (($1940) + 4)|0; + $1944 = $1943; + $1945 = HEAP32[$1944>>2]|0; + $1946 = (_bitshift64Ashr(0,($1942|0),32)|0); + $1947 = tempRet0; + $1948 = (___muldi3(($1946|0),($1947|0),($1938|0),($1939|0))|0); + $1949 = tempRet0; + $1950 = (_i64Add(($1930|0),($1931|0),($1948|0),($1949|0))|0); + $1951 = tempRet0; + $1952 = (($output) + 120|0); + $1953 = $1952; + $1954 = $1953; + HEAP32[$1954>>2] = $1950; + $1955 = (($1953) + 4)|0; + $1956 = $1955; + HEAP32[$1956>>2] = $1951; + $1957 = $922; + $1958 = $1957; + $1959 = HEAP32[$1958>>2]|0; + $1960 = (($1957) + 4)|0; + $1961 = $1960; + $1962 = HEAP32[$1961>>2]|0; + $1963 = (_bitshift64Ashr(0,($1959|0),32)|0); + $1964 = tempRet0; + $1965 = $909; + $1966 = $1965; + $1967 = HEAP32[$1966>>2]|0; + $1968 = (($1965) + 4)|0; + $1969 = $1968; + $1970 = HEAP32[$1969>>2]|0; + $1971 = (_bitshift64Ashr(0,($1967|0),32)|0); + $1972 = tempRet0; + $1973 = (___muldi3(($1971|0),($1972|0),($1963|0),($1964|0))|0); + $1974 = tempRet0; + $1975 = $735; + $1976 = $1975; + $1977 = HEAP32[$1976>>2]|0; + $1978 = (($1975) + 4)|0; + $1979 = $1978; + $1980 = HEAP32[$1979>>2]|0; + $1981 = (_bitshift64Ashr(0,($1977|0),32)|0); + $1982 = tempRet0; + $1983 = $1114; + $1984 = $1983; + $1985 = HEAP32[$1984>>2]|0; + $1986 = (($1983) + 4)|0; + $1987 = $1986; + $1988 = HEAP32[$1987>>2]|0; + $1989 = (_bitshift64Ashr(0,($1985|0),32)|0); + $1990 = tempRet0; + $1991 = (___muldi3(($1989|0),($1990|0),($1981|0),($1982|0))|0); + $1992 = tempRet0; + $1993 = $1127; + $1994 = $1993; + $1995 = HEAP32[$1994>>2]|0; + $1996 = (($1993) + 4)|0; + $1997 = $1996; + $1998 = HEAP32[$1997>>2]|0; + $1999 = (_bitshift64Ashr(0,($1995|0),32)|0); + $2000 = tempRet0; + $2001 = $722; + $2002 = $2001; + $2003 = HEAP32[$2002>>2]|0; + $2004 = (($2001) + 4)|0; + $2005 = $2004; + $2006 = HEAP32[$2005>>2]|0; + $2007 = (_bitshift64Ashr(0,($2003|0),32)|0); + $2008 = tempRet0; + $2009 = (___muldi3(($2007|0),($2008|0),($1999|0),($2000|0))|0); + $2010 = tempRet0; + $2011 = (_i64Add(($2009|0),($2010|0),($1991|0),($1992|0))|0); + $2012 = tempRet0; + $2013 = (_bitshift64Shl(($2011|0),($2012|0),1)|0); + $2014 = tempRet0; + $2015 = (_i64Add(($2013|0),($2014|0),($1973|0),($1974|0))|0); + $2016 = tempRet0; + $2017 = (($output) + 128|0); + $2018 = $2017; + $2019 = $2018; + HEAP32[$2019>>2] = $2015; + $2020 = (($2018) + 4)|0; + $2021 = $2020; + HEAP32[$2021>>2] = $2016; + $2022 = $922; + $2023 = $2022; + $2024 = HEAP32[$2023>>2]|0; + $2025 = (($2022) + 4)|0; + $2026 = $2025; + $2027 = HEAP32[$2026>>2]|0; + $2028 = (_bitshift64Ashr(0,($2024|0),32)|0); + $2029 = tempRet0; + $2030 = $1114; + $2031 = $2030; + $2032 = HEAP32[$2031>>2]|0; + $2033 = (($2030) + 4)|0; + $2034 = $2033; + $2035 = HEAP32[$2034>>2]|0; + $2036 = (_bitshift64Ashr(0,($2032|0),32)|0); + $2037 = tempRet0; + $2038 = (___muldi3(($2036|0),($2037|0),($2028|0),($2029|0))|0); + $2039 = tempRet0; + $2040 = $1127; + $2041 = $2040; + $2042 = HEAP32[$2041>>2]|0; + $2043 = (($2040) + 4)|0; + $2044 = $2043; + $2045 = HEAP32[$2044>>2]|0; + $2046 = (_bitshift64Ashr(0,($2042|0),32)|0); + $2047 = tempRet0; + $2048 = $909; + $2049 = $2048; + $2050 = HEAP32[$2049>>2]|0; + $2051 = (($2048) + 4)|0; + $2052 = $2051; + $2053 = HEAP32[$2052>>2]|0; + $2054 = (_bitshift64Ashr(0,($2050|0),32)|0); + $2055 = tempRet0; + $2056 = (___muldi3(($2054|0),($2055|0),($2046|0),($2047|0))|0); + $2057 = tempRet0; + $2058 = (_i64Add(($2056|0),($2057|0),($2038|0),($2039|0))|0); + $2059 = tempRet0; + $2060 = (($output) + 136|0); + $2061 = $2060; + $2062 = $2061; + HEAP32[$2062>>2] = $2058; + $2063 = (($2061) + 4)|0; + $2064 = $2063; + HEAP32[$2064>>2] = $2059; + $2065 = $1127; + $2066 = $2065; + $2067 = HEAP32[$2066>>2]|0; + $2068 = (($2065) + 4)|0; + $2069 = $2068; + $2070 = HEAP32[$2069>>2]|0; + $2071 = (_bitshift64Ashr(0,($2067|0),31)|0); + $2072 = tempRet0; + $2073 = $1114; + $2074 = $2073; + $2075 = HEAP32[$2074>>2]|0; + $2076 = (($2073) + 4)|0; + $2077 = $2076; + $2078 = HEAP32[$2077>>2]|0; + $2079 = (_bitshift64Ashr(0,($2075|0),32)|0); + $2080 = tempRet0; + $2081 = (___muldi3(($2079|0),($2080|0),($2071|0),($2072|0))|0); + $2082 = tempRet0; + $2083 = (($output) + 144|0); + $2084 = $2083; + $2085 = $2084; + HEAP32[$2085>>2] = $2081; + $2086 = (($2084) + 4)|0; + $2087 = $2086; + HEAP32[$2087>>2] = $2082; + STACKTOP = sp;return; +} +function _freduce_degree($output) { + $output = $output|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0; + var $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0; + var $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0; + var $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + $0 = (($output) + 144|0); + $1 = $0; + $2 = $1; + $3 = HEAP32[$2>>2]|0; + $4 = (($1) + 4)|0; + $5 = $4; + $6 = HEAP32[$5>>2]|0; + $7 = (_bitshift64Shl(($3|0),($6|0),4)|0); + $8 = tempRet0; + $9 = (($output) + 64|0); + $10 = $9; + $11 = $10; + $12 = HEAP32[$11>>2]|0; + $13 = (($10) + 4)|0; + $14 = $13; + $15 = HEAP32[$14>>2]|0; + $16 = (_i64Add(($12|0),($15|0),($7|0),($8|0))|0); + $17 = tempRet0; + $18 = (_bitshift64Shl(($3|0),($6|0),1)|0); + $19 = tempRet0; + $20 = (_i64Add(($18|0),($19|0),($16|0),($17|0))|0); + $21 = tempRet0; + $22 = $0; + $23 = $22; + $24 = HEAP32[$23>>2]|0; + $25 = (($22) + 4)|0; + $26 = $25; + $27 = HEAP32[$26>>2]|0; + $28 = (_i64Add(($20|0),($21|0),($24|0),($27|0))|0); + $29 = tempRet0; + $30 = $9; + $31 = $30; + HEAP32[$31>>2] = $28; + $32 = (($30) + 4)|0; + $33 = $32; + HEAP32[$33>>2] = $29; + $34 = (($output) + 136|0); + $35 = $34; + $36 = $35; + $37 = HEAP32[$36>>2]|0; + $38 = (($35) + 4)|0; + $39 = $38; + $40 = HEAP32[$39>>2]|0; + $41 = (_bitshift64Shl(($37|0),($40|0),4)|0); + $42 = tempRet0; + $43 = (($output) + 56|0); + $44 = $43; + $45 = $44; + $46 = HEAP32[$45>>2]|0; + $47 = (($44) + 4)|0; + $48 = $47; + $49 = HEAP32[$48>>2]|0; + $50 = (_i64Add(($46|0),($49|0),($41|0),($42|0))|0); + $51 = tempRet0; + $52 = (_bitshift64Shl(($37|0),($40|0),1)|0); + $53 = tempRet0; + $54 = (_i64Add(($52|0),($53|0),($50|0),($51|0))|0); + $55 = tempRet0; + $56 = $34; + $57 = $56; + $58 = HEAP32[$57>>2]|0; + $59 = (($56) + 4)|0; + $60 = $59; + $61 = HEAP32[$60>>2]|0; + $62 = (_i64Add(($54|0),($55|0),($58|0),($61|0))|0); + $63 = tempRet0; + $64 = $43; + $65 = $64; + HEAP32[$65>>2] = $62; + $66 = (($64) + 4)|0; + $67 = $66; + HEAP32[$67>>2] = $63; + $68 = (($output) + 128|0); + $69 = $68; + $70 = $69; + $71 = HEAP32[$70>>2]|0; + $72 = (($69) + 4)|0; + $73 = $72; + $74 = HEAP32[$73>>2]|0; + $75 = (_bitshift64Shl(($71|0),($74|0),4)|0); + $76 = tempRet0; + $77 = (($output) + 48|0); + $78 = $77; + $79 = $78; + $80 = HEAP32[$79>>2]|0; + $81 = (($78) + 4)|0; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (_i64Add(($80|0),($83|0),($75|0),($76|0))|0); + $85 = tempRet0; + $86 = (_bitshift64Shl(($71|0),($74|0),1)|0); + $87 = tempRet0; + $88 = (_i64Add(($86|0),($87|0),($84|0),($85|0))|0); + $89 = tempRet0; + $90 = $68; + $91 = $90; + $92 = HEAP32[$91>>2]|0; + $93 = (($90) + 4)|0; + $94 = $93; + $95 = HEAP32[$94>>2]|0; + $96 = (_i64Add(($88|0),($89|0),($92|0),($95|0))|0); + $97 = tempRet0; + $98 = $77; + $99 = $98; + HEAP32[$99>>2] = $96; + $100 = (($98) + 4)|0; + $101 = $100; + HEAP32[$101>>2] = $97; + $102 = (($output) + 120|0); + $103 = $102; + $104 = $103; + $105 = HEAP32[$104>>2]|0; + $106 = (($103) + 4)|0; + $107 = $106; + $108 = HEAP32[$107>>2]|0; + $109 = (_bitshift64Shl(($105|0),($108|0),4)|0); + $110 = tempRet0; + $111 = (($output) + 40|0); + $112 = $111; + $113 = $112; + $114 = HEAP32[$113>>2]|0; + $115 = (($112) + 4)|0; + $116 = $115; + $117 = HEAP32[$116>>2]|0; + $118 = (_i64Add(($114|0),($117|0),($109|0),($110|0))|0); + $119 = tempRet0; + $120 = (_bitshift64Shl(($105|0),($108|0),1)|0); + $121 = tempRet0; + $122 = (_i64Add(($120|0),($121|0),($118|0),($119|0))|0); + $123 = tempRet0; + $124 = $102; + $125 = $124; + $126 = HEAP32[$125>>2]|0; + $127 = (($124) + 4)|0; + $128 = $127; + $129 = HEAP32[$128>>2]|0; + $130 = (_i64Add(($122|0),($123|0),($126|0),($129|0))|0); + $131 = tempRet0; + $132 = $111; + $133 = $132; + HEAP32[$133>>2] = $130; + $134 = (($132) + 4)|0; + $135 = $134; + HEAP32[$135>>2] = $131; + $136 = (($output) + 112|0); + $137 = $136; + $138 = $137; + $139 = HEAP32[$138>>2]|0; + $140 = (($137) + 4)|0; + $141 = $140; + $142 = HEAP32[$141>>2]|0; + $143 = (_bitshift64Shl(($139|0),($142|0),4)|0); + $144 = tempRet0; + $145 = (($output) + 32|0); + $146 = $145; + $147 = $146; + $148 = HEAP32[$147>>2]|0; + $149 = (($146) + 4)|0; + $150 = $149; + $151 = HEAP32[$150>>2]|0; + $152 = (_i64Add(($148|0),($151|0),($143|0),($144|0))|0); + $153 = tempRet0; + $154 = (_bitshift64Shl(($139|0),($142|0),1)|0); + $155 = tempRet0; + $156 = (_i64Add(($154|0),($155|0),($152|0),($153|0))|0); + $157 = tempRet0; + $158 = $136; + $159 = $158; + $160 = HEAP32[$159>>2]|0; + $161 = (($158) + 4)|0; + $162 = $161; + $163 = HEAP32[$162>>2]|0; + $164 = (_i64Add(($156|0),($157|0),($160|0),($163|0))|0); + $165 = tempRet0; + $166 = $145; + $167 = $166; + HEAP32[$167>>2] = $164; + $168 = (($166) + 4)|0; + $169 = $168; + HEAP32[$169>>2] = $165; + $170 = (($output) + 104|0); + $171 = $170; + $172 = $171; + $173 = HEAP32[$172>>2]|0; + $174 = (($171) + 4)|0; + $175 = $174; + $176 = HEAP32[$175>>2]|0; + $177 = (_bitshift64Shl(($173|0),($176|0),4)|0); + $178 = tempRet0; + $179 = (($output) + 24|0); + $180 = $179; + $181 = $180; + $182 = HEAP32[$181>>2]|0; + $183 = (($180) + 4)|0; + $184 = $183; + $185 = HEAP32[$184>>2]|0; + $186 = (_i64Add(($182|0),($185|0),($177|0),($178|0))|0); + $187 = tempRet0; + $188 = (_bitshift64Shl(($173|0),($176|0),1)|0); + $189 = tempRet0; + $190 = (_i64Add(($188|0),($189|0),($186|0),($187|0))|0); + $191 = tempRet0; + $192 = $170; + $193 = $192; + $194 = HEAP32[$193>>2]|0; + $195 = (($192) + 4)|0; + $196 = $195; + $197 = HEAP32[$196>>2]|0; + $198 = (_i64Add(($190|0),($191|0),($194|0),($197|0))|0); + $199 = tempRet0; + $200 = $179; + $201 = $200; + HEAP32[$201>>2] = $198; + $202 = (($200) + 4)|0; + $203 = $202; + HEAP32[$203>>2] = $199; + $204 = (($output) + 96|0); + $205 = $204; + $206 = $205; + $207 = HEAP32[$206>>2]|0; + $208 = (($205) + 4)|0; + $209 = $208; + $210 = HEAP32[$209>>2]|0; + $211 = (_bitshift64Shl(($207|0),($210|0),4)|0); + $212 = tempRet0; + $213 = (($output) + 16|0); + $214 = $213; + $215 = $214; + $216 = HEAP32[$215>>2]|0; + $217 = (($214) + 4)|0; + $218 = $217; + $219 = HEAP32[$218>>2]|0; + $220 = (_i64Add(($216|0),($219|0),($211|0),($212|0))|0); + $221 = tempRet0; + $222 = (_bitshift64Shl(($207|0),($210|0),1)|0); + $223 = tempRet0; + $224 = (_i64Add(($222|0),($223|0),($220|0),($221|0))|0); + $225 = tempRet0; + $226 = $204; + $227 = $226; + $228 = HEAP32[$227>>2]|0; + $229 = (($226) + 4)|0; + $230 = $229; + $231 = HEAP32[$230>>2]|0; + $232 = (_i64Add(($224|0),($225|0),($228|0),($231|0))|0); + $233 = tempRet0; + $234 = $213; + $235 = $234; + HEAP32[$235>>2] = $232; + $236 = (($234) + 4)|0; + $237 = $236; + HEAP32[$237>>2] = $233; + $238 = (($output) + 88|0); + $239 = $238; + $240 = $239; + $241 = HEAP32[$240>>2]|0; + $242 = (($239) + 4)|0; + $243 = $242; + $244 = HEAP32[$243>>2]|0; + $245 = (_bitshift64Shl(($241|0),($244|0),4)|0); + $246 = tempRet0; + $247 = (($output) + 8|0); + $248 = $247; + $249 = $248; + $250 = HEAP32[$249>>2]|0; + $251 = (($248) + 4)|0; + $252 = $251; + $253 = HEAP32[$252>>2]|0; + $254 = (_i64Add(($250|0),($253|0),($245|0),($246|0))|0); + $255 = tempRet0; + $256 = (_bitshift64Shl(($241|0),($244|0),1)|0); + $257 = tempRet0; + $258 = (_i64Add(($256|0),($257|0),($254|0),($255|0))|0); + $259 = tempRet0; + $260 = $238; + $261 = $260; + $262 = HEAP32[$261>>2]|0; + $263 = (($260) + 4)|0; + $264 = $263; + $265 = HEAP32[$264>>2]|0; + $266 = (_i64Add(($258|0),($259|0),($262|0),($265|0))|0); + $267 = tempRet0; + $268 = $247; + $269 = $268; + HEAP32[$269>>2] = $266; + $270 = (($268) + 4)|0; + $271 = $270; + HEAP32[$271>>2] = $267; + $272 = (($output) + 80|0); + $273 = $272; + $274 = $273; + $275 = HEAP32[$274>>2]|0; + $276 = (($273) + 4)|0; + $277 = $276; + $278 = HEAP32[$277>>2]|0; + $279 = (_bitshift64Shl(($275|0),($278|0),4)|0); + $280 = tempRet0; + $281 = $output; + $282 = $281; + $283 = HEAP32[$282>>2]|0; + $284 = (($281) + 4)|0; + $285 = $284; + $286 = HEAP32[$285>>2]|0; + $287 = (_i64Add(($283|0),($286|0),($279|0),($280|0))|0); + $288 = tempRet0; + $289 = (_bitshift64Shl(($275|0),($278|0),1)|0); + $290 = tempRet0; + $291 = (_i64Add(($289|0),($290|0),($287|0),($288|0))|0); + $292 = tempRet0; + $293 = (_i64Add(($291|0),($292|0),($275|0),($278|0))|0); + $294 = tempRet0; + $295 = $output; + $296 = $295; + HEAP32[$296>>2] = $293; + $297 = (($295) + 4)|0; + $298 = $297; + HEAP32[$298>>2] = $294; + STACKTOP = sp;return; +} +function _freduce_coefficients($output) { + $output = $output|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0; + var $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0; + var $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0; + var $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0; + var $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $i$01 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($output) + 80|0); + $1 = $0; + $2 = $1; + HEAP32[$2>>2] = 0; + $3 = (($1) + 4)|0; + $4 = $3; + HEAP32[$4>>2] = 0; + $i$01 = 0; + while(1) { + $5 = (($output) + ($i$01<<3)|0); + $6 = $5; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + $9 = (($6) + 4)|0; + $10 = $9; + $11 = HEAP32[$10>>2]|0; + $12 = (_div_by_2_26($8,$11)|0); + $13 = tempRet0; + $14 = (_bitshift64Shl(($12|0),($13|0),26)|0); + $15 = tempRet0; + $16 = (_i64Subtract(($8|0),($11|0),($14|0),($15|0))|0); + $17 = tempRet0; + $18 = $5; + $19 = $18; + HEAP32[$19>>2] = $16; + $20 = (($18) + 4)|0; + $21 = $20; + HEAP32[$21>>2] = $17; + $22 = $i$01 | 1; + $23 = (($output) + ($22<<3)|0); + $24 = $23; + $25 = $24; + $26 = HEAP32[$25>>2]|0; + $27 = (($24) + 4)|0; + $28 = $27; + $29 = HEAP32[$28>>2]|0; + $30 = (_i64Add(($26|0),($29|0),($12|0),($13|0))|0); + $31 = tempRet0; + $32 = (_div_by_2_25($30,$31)|0); + $33 = tempRet0; + $34 = (_bitshift64Shl(($32|0),($33|0),25)|0); + $35 = tempRet0; + $36 = (_i64Subtract(($30|0),($31|0),($34|0),($35|0))|0); + $37 = tempRet0; + $38 = $23; + $39 = $38; + HEAP32[$39>>2] = $36; + $40 = (($38) + 4)|0; + $41 = $40; + HEAP32[$41>>2] = $37; + $42 = (($i$01) + 2)|0; + $43 = (($output) + ($42<<3)|0); + $44 = $43; + $45 = $44; + $46 = HEAP32[$45>>2]|0; + $47 = (($44) + 4)|0; + $48 = $47; + $49 = HEAP32[$48>>2]|0; + $50 = (_i64Add(($46|0),($49|0),($32|0),($33|0))|0); + $51 = tempRet0; + $52 = $43; + $53 = $52; + HEAP32[$53>>2] = $50; + $54 = (($52) + 4)|0; + $55 = $54; + HEAP32[$55>>2] = $51; + $56 = ($42>>>0)<(10); + if ($56) { + $i$01 = $42; + } else { + break; + } + } + $57 = $0; + $58 = $57; + $59 = HEAP32[$58>>2]|0; + $60 = (($57) + 4)|0; + $61 = $60; + $62 = HEAP32[$61>>2]|0; + $63 = (_bitshift64Shl(($59|0),($62|0),4)|0); + $64 = tempRet0; + $65 = $output; + $66 = $65; + $67 = HEAP32[$66>>2]|0; + $68 = (($65) + 4)|0; + $69 = $68; + $70 = HEAP32[$69>>2]|0; + $71 = (_i64Add(($67|0),($70|0),($63|0),($64|0))|0); + $72 = tempRet0; + $73 = (_bitshift64Shl(($59|0),($62|0),1)|0); + $74 = tempRet0; + $75 = (_i64Add(($73|0),($74|0),($71|0),($72|0))|0); + $76 = tempRet0; + $77 = (_i64Add(($75|0),($76|0),($59|0),($62|0))|0); + $78 = tempRet0; + $79 = $output; + $80 = $79; + HEAP32[$80>>2] = $77; + $81 = (($79) + 4)|0; + $82 = $81; + HEAP32[$82>>2] = $78; + $83 = $0; + $84 = $83; + HEAP32[$84>>2] = 0; + $85 = (($83) + 4)|0; + $86 = $85; + HEAP32[$86>>2] = 0; + $87 = $output; + $88 = $87; + $89 = HEAP32[$88>>2]|0; + $90 = (($87) + 4)|0; + $91 = $90; + $92 = HEAP32[$91>>2]|0; + $93 = (_div_by_2_26($89,$92)|0); + $94 = tempRet0; + $95 = (_bitshift64Shl(($93|0),($94|0),26)|0); + $96 = tempRet0; + $97 = (_i64Subtract(($89|0),($92|0),($95|0),($96|0))|0); + $98 = tempRet0; + $99 = $output; + $100 = $99; + HEAP32[$100>>2] = $97; + $101 = (($99) + 4)|0; + $102 = $101; + HEAP32[$102>>2] = $98; + $103 = (($output) + 8|0); + $104 = $103; + $105 = $104; + $106 = HEAP32[$105>>2]|0; + $107 = (($104) + 4)|0; + $108 = $107; + $109 = HEAP32[$108>>2]|0; + $110 = (_i64Add(($106|0),($109|0),($93|0),($94|0))|0); + $111 = tempRet0; + $112 = $103; + $113 = $112; + HEAP32[$113>>2] = $110; + $114 = (($112) + 4)|0; + $115 = $114; + HEAP32[$115>>2] = $111; + STACKTOP = sp;return; +} +function _s32_eq($a,$b) { + $a = $a|0; + $b = $b|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $a ^ -1; + $1 = $0 ^ $b; + $2 = $1 << 16; + $3 = $2 & $1; + $4 = $3 << 8; + $5 = $4 & $3; + $6 = $5 << 4; + $7 = $6 & $5; + $8 = $7 << 2; + $9 = $8 & $7; + $10 = $9 << 1; + $11 = $10 & $9; + $12 = $11 >> 31; + STACKTOP = sp;return ($12|0); +} +function _s32_gte($a) { + $a = $a|0; + var $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($a) + -67108845)|0; + $1 = $0 >> 31; + $2 = $1 ^ -1; + STACKTOP = sp;return ($2|0); +} +function _fsum($output,$in) { + $output = $output|0; + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; + var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $output; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = $in; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + $9 = (($6) + 4)|0; + $10 = $9; + $11 = HEAP32[$10>>2]|0; + $12 = (_i64Add(($8|0),($11|0),($2|0),($5|0))|0); + $13 = tempRet0; + $14 = $output; + $15 = $14; + HEAP32[$15>>2] = $12; + $16 = (($14) + 4)|0; + $17 = $16; + HEAP32[$17>>2] = $13; + $18 = (($output) + 8|0); + $19 = $18; + $20 = $19; + $21 = HEAP32[$20>>2]|0; + $22 = (($19) + 4)|0; + $23 = $22; + $24 = HEAP32[$23>>2]|0; + $25 = (($in) + 8|0); + $26 = $25; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (($26) + 4)|0; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = (_i64Add(($28|0),($31|0),($21|0),($24|0))|0); + $33 = tempRet0; + $34 = $18; + $35 = $34; + HEAP32[$35>>2] = $32; + $36 = (($34) + 4)|0; + $37 = $36; + HEAP32[$37>>2] = $33; + $38 = (($output) + 16|0); + $39 = $38; + $40 = $39; + $41 = HEAP32[$40>>2]|0; + $42 = (($39) + 4)|0; + $43 = $42; + $44 = HEAP32[$43>>2]|0; + $45 = (($in) + 16|0); + $46 = $45; + $47 = $46; + $48 = HEAP32[$47>>2]|0; + $49 = (($46) + 4)|0; + $50 = $49; + $51 = HEAP32[$50>>2]|0; + $52 = (_i64Add(($48|0),($51|0),($41|0),($44|0))|0); + $53 = tempRet0; + $54 = $38; + $55 = $54; + HEAP32[$55>>2] = $52; + $56 = (($54) + 4)|0; + $57 = $56; + HEAP32[$57>>2] = $53; + $58 = (($output) + 24|0); + $59 = $58; + $60 = $59; + $61 = HEAP32[$60>>2]|0; + $62 = (($59) + 4)|0; + $63 = $62; + $64 = HEAP32[$63>>2]|0; + $65 = (($in) + 24|0); + $66 = $65; + $67 = $66; + $68 = HEAP32[$67>>2]|0; + $69 = (($66) + 4)|0; + $70 = $69; + $71 = HEAP32[$70>>2]|0; + $72 = (_i64Add(($68|0),($71|0),($61|0),($64|0))|0); + $73 = tempRet0; + $74 = $58; + $75 = $74; + HEAP32[$75>>2] = $72; + $76 = (($74) + 4)|0; + $77 = $76; + HEAP32[$77>>2] = $73; + $78 = (($output) + 32|0); + $79 = $78; + $80 = $79; + $81 = HEAP32[$80>>2]|0; + $82 = (($79) + 4)|0; + $83 = $82; + $84 = HEAP32[$83>>2]|0; + $85 = (($in) + 32|0); + $86 = $85; + $87 = $86; + $88 = HEAP32[$87>>2]|0; + $89 = (($86) + 4)|0; + $90 = $89; + $91 = HEAP32[$90>>2]|0; + $92 = (_i64Add(($88|0),($91|0),($81|0),($84|0))|0); + $93 = tempRet0; + $94 = $78; + $95 = $94; + HEAP32[$95>>2] = $92; + $96 = (($94) + 4)|0; + $97 = $96; + HEAP32[$97>>2] = $93; + $98 = (($output) + 40|0); + $99 = $98; + $100 = $99; + $101 = HEAP32[$100>>2]|0; + $102 = (($99) + 4)|0; + $103 = $102; + $104 = HEAP32[$103>>2]|0; + $105 = (($in) + 40|0); + $106 = $105; + $107 = $106; + $108 = HEAP32[$107>>2]|0; + $109 = (($106) + 4)|0; + $110 = $109; + $111 = HEAP32[$110>>2]|0; + $112 = (_i64Add(($108|0),($111|0),($101|0),($104|0))|0); + $113 = tempRet0; + $114 = $98; + $115 = $114; + HEAP32[$115>>2] = $112; + $116 = (($114) + 4)|0; + $117 = $116; + HEAP32[$117>>2] = $113; + $118 = (($output) + 48|0); + $119 = $118; + $120 = $119; + $121 = HEAP32[$120>>2]|0; + $122 = (($119) + 4)|0; + $123 = $122; + $124 = HEAP32[$123>>2]|0; + $125 = (($in) + 48|0); + $126 = $125; + $127 = $126; + $128 = HEAP32[$127>>2]|0; + $129 = (($126) + 4)|0; + $130 = $129; + $131 = HEAP32[$130>>2]|0; + $132 = (_i64Add(($128|0),($131|0),($121|0),($124|0))|0); + $133 = tempRet0; + $134 = $118; + $135 = $134; + HEAP32[$135>>2] = $132; + $136 = (($134) + 4)|0; + $137 = $136; + HEAP32[$137>>2] = $133; + $138 = (($output) + 56|0); + $139 = $138; + $140 = $139; + $141 = HEAP32[$140>>2]|0; + $142 = (($139) + 4)|0; + $143 = $142; + $144 = HEAP32[$143>>2]|0; + $145 = (($in) + 56|0); + $146 = $145; + $147 = $146; + $148 = HEAP32[$147>>2]|0; + $149 = (($146) + 4)|0; + $150 = $149; + $151 = HEAP32[$150>>2]|0; + $152 = (_i64Add(($148|0),($151|0),($141|0),($144|0))|0); + $153 = tempRet0; + $154 = $138; + $155 = $154; + HEAP32[$155>>2] = $152; + $156 = (($154) + 4)|0; + $157 = $156; + HEAP32[$157>>2] = $153; + $158 = (($output) + 64|0); + $159 = $158; + $160 = $159; + $161 = HEAP32[$160>>2]|0; + $162 = (($159) + 4)|0; + $163 = $162; + $164 = HEAP32[$163>>2]|0; + $165 = (($in) + 64|0); + $166 = $165; + $167 = $166; + $168 = HEAP32[$167>>2]|0; + $169 = (($166) + 4)|0; + $170 = $169; + $171 = HEAP32[$170>>2]|0; + $172 = (_i64Add(($168|0),($171|0),($161|0),($164|0))|0); + $173 = tempRet0; + $174 = $158; + $175 = $174; + HEAP32[$175>>2] = $172; + $176 = (($174) + 4)|0; + $177 = $176; + HEAP32[$177>>2] = $173; + $178 = (($output) + 72|0); + $179 = $178; + $180 = $179; + $181 = HEAP32[$180>>2]|0; + $182 = (($179) + 4)|0; + $183 = $182; + $184 = HEAP32[$183>>2]|0; + $185 = (($in) + 72|0); + $186 = $185; + $187 = $186; + $188 = HEAP32[$187>>2]|0; + $189 = (($186) + 4)|0; + $190 = $189; + $191 = HEAP32[$190>>2]|0; + $192 = (_i64Add(($188|0),($191|0),($181|0),($184|0))|0); + $193 = tempRet0; + $194 = $178; + $195 = $194; + HEAP32[$195>>2] = $192; + $196 = (($194) + 4)|0; + $197 = $196; + HEAP32[$197>>2] = $193; + STACKTOP = sp;return; +} +function _fdifference($output,$in) { + $output = $output|0; + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; + var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $in; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = $output; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + $9 = (($6) + 4)|0; + $10 = $9; + $11 = HEAP32[$10>>2]|0; + $12 = (_i64Subtract(($2|0),($5|0),($8|0),($11|0))|0); + $13 = tempRet0; + $14 = $output; + $15 = $14; + HEAP32[$15>>2] = $12; + $16 = (($14) + 4)|0; + $17 = $16; + HEAP32[$17>>2] = $13; + $18 = (($in) + 8|0); + $19 = $18; + $20 = $19; + $21 = HEAP32[$20>>2]|0; + $22 = (($19) + 4)|0; + $23 = $22; + $24 = HEAP32[$23>>2]|0; + $25 = (($output) + 8|0); + $26 = $25; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (($26) + 4)|0; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = (_i64Subtract(($21|0),($24|0),($28|0),($31|0))|0); + $33 = tempRet0; + $34 = $25; + $35 = $34; + HEAP32[$35>>2] = $32; + $36 = (($34) + 4)|0; + $37 = $36; + HEAP32[$37>>2] = $33; + $38 = (($in) + 16|0); + $39 = $38; + $40 = $39; + $41 = HEAP32[$40>>2]|0; + $42 = (($39) + 4)|0; + $43 = $42; + $44 = HEAP32[$43>>2]|0; + $45 = (($output) + 16|0); + $46 = $45; + $47 = $46; + $48 = HEAP32[$47>>2]|0; + $49 = (($46) + 4)|0; + $50 = $49; + $51 = HEAP32[$50>>2]|0; + $52 = (_i64Subtract(($41|0),($44|0),($48|0),($51|0))|0); + $53 = tempRet0; + $54 = $45; + $55 = $54; + HEAP32[$55>>2] = $52; + $56 = (($54) + 4)|0; + $57 = $56; + HEAP32[$57>>2] = $53; + $58 = (($in) + 24|0); + $59 = $58; + $60 = $59; + $61 = HEAP32[$60>>2]|0; + $62 = (($59) + 4)|0; + $63 = $62; + $64 = HEAP32[$63>>2]|0; + $65 = (($output) + 24|0); + $66 = $65; + $67 = $66; + $68 = HEAP32[$67>>2]|0; + $69 = (($66) + 4)|0; + $70 = $69; + $71 = HEAP32[$70>>2]|0; + $72 = (_i64Subtract(($61|0),($64|0),($68|0),($71|0))|0); + $73 = tempRet0; + $74 = $65; + $75 = $74; + HEAP32[$75>>2] = $72; + $76 = (($74) + 4)|0; + $77 = $76; + HEAP32[$77>>2] = $73; + $78 = (($in) + 32|0); + $79 = $78; + $80 = $79; + $81 = HEAP32[$80>>2]|0; + $82 = (($79) + 4)|0; + $83 = $82; + $84 = HEAP32[$83>>2]|0; + $85 = (($output) + 32|0); + $86 = $85; + $87 = $86; + $88 = HEAP32[$87>>2]|0; + $89 = (($86) + 4)|0; + $90 = $89; + $91 = HEAP32[$90>>2]|0; + $92 = (_i64Subtract(($81|0),($84|0),($88|0),($91|0))|0); + $93 = tempRet0; + $94 = $85; + $95 = $94; + HEAP32[$95>>2] = $92; + $96 = (($94) + 4)|0; + $97 = $96; + HEAP32[$97>>2] = $93; + $98 = (($in) + 40|0); + $99 = $98; + $100 = $99; + $101 = HEAP32[$100>>2]|0; + $102 = (($99) + 4)|0; + $103 = $102; + $104 = HEAP32[$103>>2]|0; + $105 = (($output) + 40|0); + $106 = $105; + $107 = $106; + $108 = HEAP32[$107>>2]|0; + $109 = (($106) + 4)|0; + $110 = $109; + $111 = HEAP32[$110>>2]|0; + $112 = (_i64Subtract(($101|0),($104|0),($108|0),($111|0))|0); + $113 = tempRet0; + $114 = $105; + $115 = $114; + HEAP32[$115>>2] = $112; + $116 = (($114) + 4)|0; + $117 = $116; + HEAP32[$117>>2] = $113; + $118 = (($in) + 48|0); + $119 = $118; + $120 = $119; + $121 = HEAP32[$120>>2]|0; + $122 = (($119) + 4)|0; + $123 = $122; + $124 = HEAP32[$123>>2]|0; + $125 = (($output) + 48|0); + $126 = $125; + $127 = $126; + $128 = HEAP32[$127>>2]|0; + $129 = (($126) + 4)|0; + $130 = $129; + $131 = HEAP32[$130>>2]|0; + $132 = (_i64Subtract(($121|0),($124|0),($128|0),($131|0))|0); + $133 = tempRet0; + $134 = $125; + $135 = $134; + HEAP32[$135>>2] = $132; + $136 = (($134) + 4)|0; + $137 = $136; + HEAP32[$137>>2] = $133; + $138 = (($in) + 56|0); + $139 = $138; + $140 = $139; + $141 = HEAP32[$140>>2]|0; + $142 = (($139) + 4)|0; + $143 = $142; + $144 = HEAP32[$143>>2]|0; + $145 = (($output) + 56|0); + $146 = $145; + $147 = $146; + $148 = HEAP32[$147>>2]|0; + $149 = (($146) + 4)|0; + $150 = $149; + $151 = HEAP32[$150>>2]|0; + $152 = (_i64Subtract(($141|0),($144|0),($148|0),($151|0))|0); + $153 = tempRet0; + $154 = $145; + $155 = $154; + HEAP32[$155>>2] = $152; + $156 = (($154) + 4)|0; + $157 = $156; + HEAP32[$157>>2] = $153; + $158 = (($in) + 64|0); + $159 = $158; + $160 = $159; + $161 = HEAP32[$160>>2]|0; + $162 = (($159) + 4)|0; + $163 = $162; + $164 = HEAP32[$163>>2]|0; + $165 = (($output) + 64|0); + $166 = $165; + $167 = $166; + $168 = HEAP32[$167>>2]|0; + $169 = (($166) + 4)|0; + $170 = $169; + $171 = HEAP32[$170>>2]|0; + $172 = (_i64Subtract(($161|0),($164|0),($168|0),($171|0))|0); + $173 = tempRet0; + $174 = $165; + $175 = $174; + HEAP32[$175>>2] = $172; + $176 = (($174) + 4)|0; + $177 = $176; + HEAP32[$177>>2] = $173; + $178 = (($in) + 72|0); + $179 = $178; + $180 = $179; + $181 = HEAP32[$180>>2]|0; + $182 = (($179) + 4)|0; + $183 = $182; + $184 = HEAP32[$183>>2]|0; + $185 = (($output) + 72|0); + $186 = $185; + $187 = $186; + $188 = HEAP32[$187>>2]|0; + $189 = (($186) + 4)|0; + $190 = $189; + $191 = HEAP32[$190>>2]|0; + $192 = (_i64Subtract(($181|0),($184|0),($188|0),($191|0))|0); + $193 = tempRet0; + $194 = $185; + $195 = $194; + HEAP32[$195>>2] = $192; + $196 = (($194) + 4)|0; + $197 = $196; + HEAP32[$197>>2] = $193; + STACKTOP = sp;return; +} +function _fscalar_product($output,$in) { + $output = $output|0; + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; + var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $in; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = (___muldi3(($2|0),($5|0),121665,0)|0); + $7 = tempRet0; + $8 = $output; + $9 = $8; + HEAP32[$9>>2] = $6; + $10 = (($8) + 4)|0; + $11 = $10; + HEAP32[$11>>2] = $7; + $12 = (($in) + 8|0); + $13 = $12; + $14 = $13; + $15 = HEAP32[$14>>2]|0; + $16 = (($13) + 4)|0; + $17 = $16; + $18 = HEAP32[$17>>2]|0; + $19 = (___muldi3(($15|0),($18|0),121665,0)|0); + $20 = tempRet0; + $21 = (($output) + 8|0); + $22 = $21; + $23 = $22; + HEAP32[$23>>2] = $19; + $24 = (($22) + 4)|0; + $25 = $24; + HEAP32[$25>>2] = $20; + $26 = (($in) + 16|0); + $27 = $26; + $28 = $27; + $29 = HEAP32[$28>>2]|0; + $30 = (($27) + 4)|0; + $31 = $30; + $32 = HEAP32[$31>>2]|0; + $33 = (___muldi3(($29|0),($32|0),121665,0)|0); + $34 = tempRet0; + $35 = (($output) + 16|0); + $36 = $35; + $37 = $36; + HEAP32[$37>>2] = $33; + $38 = (($36) + 4)|0; + $39 = $38; + HEAP32[$39>>2] = $34; + $40 = (($in) + 24|0); + $41 = $40; + $42 = $41; + $43 = HEAP32[$42>>2]|0; + $44 = (($41) + 4)|0; + $45 = $44; + $46 = HEAP32[$45>>2]|0; + $47 = (___muldi3(($43|0),($46|0),121665,0)|0); + $48 = tempRet0; + $49 = (($output) + 24|0); + $50 = $49; + $51 = $50; + HEAP32[$51>>2] = $47; + $52 = (($50) + 4)|0; + $53 = $52; + HEAP32[$53>>2] = $48; + $54 = (($in) + 32|0); + $55 = $54; + $56 = $55; + $57 = HEAP32[$56>>2]|0; + $58 = (($55) + 4)|0; + $59 = $58; + $60 = HEAP32[$59>>2]|0; + $61 = (___muldi3(($57|0),($60|0),121665,0)|0); + $62 = tempRet0; + $63 = (($output) + 32|0); + $64 = $63; + $65 = $64; + HEAP32[$65>>2] = $61; + $66 = (($64) + 4)|0; + $67 = $66; + HEAP32[$67>>2] = $62; + $68 = (($in) + 40|0); + $69 = $68; + $70 = $69; + $71 = HEAP32[$70>>2]|0; + $72 = (($69) + 4)|0; + $73 = $72; + $74 = HEAP32[$73>>2]|0; + $75 = (___muldi3(($71|0),($74|0),121665,0)|0); + $76 = tempRet0; + $77 = (($output) + 40|0); + $78 = $77; + $79 = $78; + HEAP32[$79>>2] = $75; + $80 = (($78) + 4)|0; + $81 = $80; + HEAP32[$81>>2] = $76; + $82 = (($in) + 48|0); + $83 = $82; + $84 = $83; + $85 = HEAP32[$84>>2]|0; + $86 = (($83) + 4)|0; + $87 = $86; + $88 = HEAP32[$87>>2]|0; + $89 = (___muldi3(($85|0),($88|0),121665,0)|0); + $90 = tempRet0; + $91 = (($output) + 48|0); + $92 = $91; + $93 = $92; + HEAP32[$93>>2] = $89; + $94 = (($92) + 4)|0; + $95 = $94; + HEAP32[$95>>2] = $90; + $96 = (($in) + 56|0); + $97 = $96; + $98 = $97; + $99 = HEAP32[$98>>2]|0; + $100 = (($97) + 4)|0; + $101 = $100; + $102 = HEAP32[$101>>2]|0; + $103 = (___muldi3(($99|0),($102|0),121665,0)|0); + $104 = tempRet0; + $105 = (($output) + 56|0); + $106 = $105; + $107 = $106; + HEAP32[$107>>2] = $103; + $108 = (($106) + 4)|0; + $109 = $108; + HEAP32[$109>>2] = $104; + $110 = (($in) + 64|0); + $111 = $110; + $112 = $111; + $113 = HEAP32[$112>>2]|0; + $114 = (($111) + 4)|0; + $115 = $114; + $116 = HEAP32[$115>>2]|0; + $117 = (___muldi3(($113|0),($116|0),121665,0)|0); + $118 = tempRet0; + $119 = (($output) + 64|0); + $120 = $119; + $121 = $120; + HEAP32[$121>>2] = $117; + $122 = (($120) + 4)|0; + $123 = $122; + HEAP32[$123>>2] = $118; + $124 = (($in) + 72|0); + $125 = $124; + $126 = $125; + $127 = HEAP32[$126>>2]|0; + $128 = (($125) + 4)|0; + $129 = $128; + $130 = HEAP32[$129>>2]|0; + $131 = (___muldi3(($127|0),($130|0),121665,0)|0); + $132 = tempRet0; + $133 = (($output) + 72|0); + $134 = $133; + $135 = $134; + HEAP32[$135>>2] = $131; + $136 = (($134) + 4)|0; + $137 = $136; + HEAP32[$137>>2] = $132; + STACKTOP = sp;return; +} +function _fsquare_inner($output,$in) { + $output = $output|0; + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; + var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; + var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; + var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; + var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; + var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; + var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0; + var $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0; + var $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0; + var $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0; + var $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0; + var $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0; + var $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0; + var $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0; + var $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0; + var $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0; + var $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0; + var $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0; + var $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0; + var $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0; + var $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0; + var $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0; + var $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0; + var $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0; + var $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0; + var $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0; + var $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0; + var $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0; + var $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0; + var $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0; + var $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0; + var $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0; + var $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0; + var $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0; + var $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0; + var $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0; + var $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0; + var $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0; + var $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0; + var $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0; + var $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0; + var $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0; + var $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0; + var $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0; + var $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0; + var $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0; + var $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0; + var $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0; + var $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0; + var $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0; + var $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0; + var $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0; + var $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0; + var $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0; + var $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0; + var $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + $0 = $in; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = (_bitshift64Ashr(0,($2|0),32)|0); + $7 = tempRet0; + $8 = (___muldi3(($6|0),($7|0),($6|0),($7|0))|0); + $9 = tempRet0; + $10 = $output; + $11 = $10; + HEAP32[$11>>2] = $8; + $12 = (($10) + 4)|0; + $13 = $12; + HEAP32[$13>>2] = $9; + $14 = $in; + $15 = $14; + $16 = HEAP32[$15>>2]|0; + $17 = (($14) + 4)|0; + $18 = $17; + $19 = HEAP32[$18>>2]|0; + $20 = (_bitshift64Ashr(0,($16|0),31)|0); + $21 = tempRet0; + $22 = (($in) + 8|0); + $23 = $22; + $24 = $23; + $25 = HEAP32[$24>>2]|0; + $26 = (($23) + 4)|0; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (_bitshift64Ashr(0,($25|0),32)|0); + $30 = tempRet0; + $31 = (___muldi3(($29|0),($30|0),($20|0),($21|0))|0); + $32 = tempRet0; + $33 = (($output) + 8|0); + $34 = $33; + $35 = $34; + HEAP32[$35>>2] = $31; + $36 = (($34) + 4)|0; + $37 = $36; + HEAP32[$37>>2] = $32; + $38 = $22; + $39 = $38; + $40 = HEAP32[$39>>2]|0; + $41 = (($38) + 4)|0; + $42 = $41; + $43 = HEAP32[$42>>2]|0; + $44 = (_bitshift64Ashr(0,($40|0),32)|0); + $45 = tempRet0; + $46 = (___muldi3(($44|0),($45|0),($44|0),($45|0))|0); + $47 = tempRet0; + $48 = $in; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + $51 = (($48) + 4)|0; + $52 = $51; + $53 = HEAP32[$52>>2]|0; + $54 = (_bitshift64Ashr(0,($50|0),32)|0); + $55 = tempRet0; + $56 = (($in) + 16|0); + $57 = $56; + $58 = $57; + $59 = HEAP32[$58>>2]|0; + $60 = (($57) + 4)|0; + $61 = $60; + $62 = HEAP32[$61>>2]|0; + $63 = (_bitshift64Ashr(0,($59|0),32)|0); + $64 = tempRet0; + $65 = (___muldi3(($63|0),($64|0),($54|0),($55|0))|0); + $66 = tempRet0; + $67 = (_i64Add(($65|0),($66|0),($46|0),($47|0))|0); + $68 = tempRet0; + $69 = (_bitshift64Shl(($67|0),($68|0),1)|0); + $70 = tempRet0; + $71 = (($output) + 16|0); + $72 = $71; + $73 = $72; + HEAP32[$73>>2] = $69; + $74 = (($72) + 4)|0; + $75 = $74; + HEAP32[$75>>2] = $70; + $76 = $22; + $77 = $76; + $78 = HEAP32[$77>>2]|0; + $79 = (($76) + 4)|0; + $80 = $79; + $81 = HEAP32[$80>>2]|0; + $82 = (_bitshift64Ashr(0,($78|0),32)|0); + $83 = tempRet0; + $84 = $56; + $85 = $84; + $86 = HEAP32[$85>>2]|0; + $87 = (($84) + 4)|0; + $88 = $87; + $89 = HEAP32[$88>>2]|0; + $90 = (_bitshift64Ashr(0,($86|0),32)|0); + $91 = tempRet0; + $92 = (___muldi3(($90|0),($91|0),($82|0),($83|0))|0); + $93 = tempRet0; + $94 = $in; + $95 = $94; + $96 = HEAP32[$95>>2]|0; + $97 = (($94) + 4)|0; + $98 = $97; + $99 = HEAP32[$98>>2]|0; + $100 = (_bitshift64Ashr(0,($96|0),32)|0); + $101 = tempRet0; + $102 = (($in) + 24|0); + $103 = $102; + $104 = $103; + $105 = HEAP32[$104>>2]|0; + $106 = (($103) + 4)|0; + $107 = $106; + $108 = HEAP32[$107>>2]|0; + $109 = (_bitshift64Ashr(0,($105|0),32)|0); + $110 = tempRet0; + $111 = (___muldi3(($109|0),($110|0),($100|0),($101|0))|0); + $112 = tempRet0; + $113 = (_i64Add(($111|0),($112|0),($92|0),($93|0))|0); + $114 = tempRet0; + $115 = (_bitshift64Shl(($113|0),($114|0),1)|0); + $116 = tempRet0; + $117 = (($output) + 24|0); + $118 = $117; + $119 = $118; + HEAP32[$119>>2] = $115; + $120 = (($118) + 4)|0; + $121 = $120; + HEAP32[$121>>2] = $116; + $122 = $56; + $123 = $122; + $124 = HEAP32[$123>>2]|0; + $125 = (($122) + 4)|0; + $126 = $125; + $127 = HEAP32[$126>>2]|0; + $128 = (_bitshift64Ashr(0,($124|0),32)|0); + $129 = tempRet0; + $130 = (___muldi3(($128|0),($129|0),($128|0),($129|0))|0); + $131 = tempRet0; + $132 = $22; + $133 = $132; + $134 = HEAP32[$133>>2]|0; + $135 = (($132) + 4)|0; + $136 = $135; + $137 = HEAP32[$136>>2]|0; + $138 = (_bitshift64Ashr(0,($134|0),30)|0); + $139 = tempRet0; + $140 = $102; + $141 = $140; + $142 = HEAP32[$141>>2]|0; + $143 = (($140) + 4)|0; + $144 = $143; + $145 = HEAP32[$144>>2]|0; + $146 = (_bitshift64Ashr(0,($142|0),32)|0); + $147 = tempRet0; + $148 = (___muldi3(($146|0),($147|0),($138|0),($139|0))|0); + $149 = tempRet0; + $150 = (_i64Add(($148|0),($149|0),($130|0),($131|0))|0); + $151 = tempRet0; + $152 = $in; + $153 = $152; + $154 = HEAP32[$153>>2]|0; + $155 = (($152) + 4)|0; + $156 = $155; + $157 = HEAP32[$156>>2]|0; + $158 = (_bitshift64Ashr(0,($154|0),31)|0); + $159 = tempRet0; + $160 = (($in) + 32|0); + $161 = $160; + $162 = $161; + $163 = HEAP32[$162>>2]|0; + $164 = (($161) + 4)|0; + $165 = $164; + $166 = HEAP32[$165>>2]|0; + $167 = (_bitshift64Ashr(0,($163|0),32)|0); + $168 = tempRet0; + $169 = (___muldi3(($167|0),($168|0),($158|0),($159|0))|0); + $170 = tempRet0; + $171 = (_i64Add(($150|0),($151|0),($169|0),($170|0))|0); + $172 = tempRet0; + $173 = (($output) + 32|0); + $174 = $173; + $175 = $174; + HEAP32[$175>>2] = $171; + $176 = (($174) + 4)|0; + $177 = $176; + HEAP32[$177>>2] = $172; + $178 = $56; + $179 = $178; + $180 = HEAP32[$179>>2]|0; + $181 = (($178) + 4)|0; + $182 = $181; + $183 = HEAP32[$182>>2]|0; + $184 = (_bitshift64Ashr(0,($180|0),32)|0); + $185 = tempRet0; + $186 = $102; + $187 = $186; + $188 = HEAP32[$187>>2]|0; + $189 = (($186) + 4)|0; + $190 = $189; + $191 = HEAP32[$190>>2]|0; + $192 = (_bitshift64Ashr(0,($188|0),32)|0); + $193 = tempRet0; + $194 = (___muldi3(($192|0),($193|0),($184|0),($185|0))|0); + $195 = tempRet0; + $196 = $22; + $197 = $196; + $198 = HEAP32[$197>>2]|0; + $199 = (($196) + 4)|0; + $200 = $199; + $201 = HEAP32[$200>>2]|0; + $202 = (_bitshift64Ashr(0,($198|0),32)|0); + $203 = tempRet0; + $204 = $160; + $205 = $204; + $206 = HEAP32[$205>>2]|0; + $207 = (($204) + 4)|0; + $208 = $207; + $209 = HEAP32[$208>>2]|0; + $210 = (_bitshift64Ashr(0,($206|0),32)|0); + $211 = tempRet0; + $212 = (___muldi3(($210|0),($211|0),($202|0),($203|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($212|0),($213|0),($194|0),($195|0))|0); + $215 = tempRet0; + $216 = $in; + $217 = $216; + $218 = HEAP32[$217>>2]|0; + $219 = (($216) + 4)|0; + $220 = $219; + $221 = HEAP32[$220>>2]|0; + $222 = (_bitshift64Ashr(0,($218|0),32)|0); + $223 = tempRet0; + $224 = (($in) + 40|0); + $225 = $224; + $226 = $225; + $227 = HEAP32[$226>>2]|0; + $228 = (($225) + 4)|0; + $229 = $228; + $230 = HEAP32[$229>>2]|0; + $231 = (_bitshift64Ashr(0,($227|0),32)|0); + $232 = tempRet0; + $233 = (___muldi3(($231|0),($232|0),($222|0),($223|0))|0); + $234 = tempRet0; + $235 = (_i64Add(($214|0),($215|0),($233|0),($234|0))|0); + $236 = tempRet0; + $237 = (_bitshift64Shl(($235|0),($236|0),1)|0); + $238 = tempRet0; + $239 = (($output) + 40|0); + $240 = $239; + $241 = $240; + HEAP32[$241>>2] = $237; + $242 = (($240) + 4)|0; + $243 = $242; + HEAP32[$243>>2] = $238; + $244 = $102; + $245 = $244; + $246 = HEAP32[$245>>2]|0; + $247 = (($244) + 4)|0; + $248 = $247; + $249 = HEAP32[$248>>2]|0; + $250 = (_bitshift64Ashr(0,($246|0),32)|0); + $251 = tempRet0; + $252 = (___muldi3(($250|0),($251|0),($250|0),($251|0))|0); + $253 = tempRet0; + $254 = $56; + $255 = $254; + $256 = HEAP32[$255>>2]|0; + $257 = (($254) + 4)|0; + $258 = $257; + $259 = HEAP32[$258>>2]|0; + $260 = (_bitshift64Ashr(0,($256|0),32)|0); + $261 = tempRet0; + $262 = $160; + $263 = $262; + $264 = HEAP32[$263>>2]|0; + $265 = (($262) + 4)|0; + $266 = $265; + $267 = HEAP32[$266>>2]|0; + $268 = (_bitshift64Ashr(0,($264|0),32)|0); + $269 = tempRet0; + $270 = (___muldi3(($268|0),($269|0),($260|0),($261|0))|0); + $271 = tempRet0; + $272 = (_i64Add(($270|0),($271|0),($252|0),($253|0))|0); + $273 = tempRet0; + $274 = $in; + $275 = $274; + $276 = HEAP32[$275>>2]|0; + $277 = (($274) + 4)|0; + $278 = $277; + $279 = HEAP32[$278>>2]|0; + $280 = (_bitshift64Ashr(0,($276|0),32)|0); + $281 = tempRet0; + $282 = (($in) + 48|0); + $283 = $282; + $284 = $283; + $285 = HEAP32[$284>>2]|0; + $286 = (($283) + 4)|0; + $287 = $286; + $288 = HEAP32[$287>>2]|0; + $289 = (_bitshift64Ashr(0,($285|0),32)|0); + $290 = tempRet0; + $291 = (___muldi3(($289|0),($290|0),($280|0),($281|0))|0); + $292 = tempRet0; + $293 = (_i64Add(($272|0),($273|0),($291|0),($292|0))|0); + $294 = tempRet0; + $295 = $22; + $296 = $295; + $297 = HEAP32[$296>>2]|0; + $298 = (($295) + 4)|0; + $299 = $298; + $300 = HEAP32[$299>>2]|0; + $301 = (_bitshift64Ashr(0,($297|0),31)|0); + $302 = tempRet0; + $303 = $224; + $304 = $303; + $305 = HEAP32[$304>>2]|0; + $306 = (($303) + 4)|0; + $307 = $306; + $308 = HEAP32[$307>>2]|0; + $309 = (_bitshift64Ashr(0,($305|0),32)|0); + $310 = tempRet0; + $311 = (___muldi3(($309|0),($310|0),($301|0),($302|0))|0); + $312 = tempRet0; + $313 = (_i64Add(($293|0),($294|0),($311|0),($312|0))|0); + $314 = tempRet0; + $315 = (_bitshift64Shl(($313|0),($314|0),1)|0); + $316 = tempRet0; + $317 = (($output) + 48|0); + $318 = $317; + $319 = $318; + HEAP32[$319>>2] = $315; + $320 = (($318) + 4)|0; + $321 = $320; + HEAP32[$321>>2] = $316; + $322 = $102; + $323 = $322; + $324 = HEAP32[$323>>2]|0; + $325 = (($322) + 4)|0; + $326 = $325; + $327 = HEAP32[$326>>2]|0; + $328 = (_bitshift64Ashr(0,($324|0),32)|0); + $329 = tempRet0; + $330 = $160; + $331 = $330; + $332 = HEAP32[$331>>2]|0; + $333 = (($330) + 4)|0; + $334 = $333; + $335 = HEAP32[$334>>2]|0; + $336 = (_bitshift64Ashr(0,($332|0),32)|0); + $337 = tempRet0; + $338 = (___muldi3(($336|0),($337|0),($328|0),($329|0))|0); + $339 = tempRet0; + $340 = $56; + $341 = $340; + $342 = HEAP32[$341>>2]|0; + $343 = (($340) + 4)|0; + $344 = $343; + $345 = HEAP32[$344>>2]|0; + $346 = (_bitshift64Ashr(0,($342|0),32)|0); + $347 = tempRet0; + $348 = $224; + $349 = $348; + $350 = HEAP32[$349>>2]|0; + $351 = (($348) + 4)|0; + $352 = $351; + $353 = HEAP32[$352>>2]|0; + $354 = (_bitshift64Ashr(0,($350|0),32)|0); + $355 = tempRet0; + $356 = (___muldi3(($354|0),($355|0),($346|0),($347|0))|0); + $357 = tempRet0; + $358 = (_i64Add(($356|0),($357|0),($338|0),($339|0))|0); + $359 = tempRet0; + $360 = $22; + $361 = $360; + $362 = HEAP32[$361>>2]|0; + $363 = (($360) + 4)|0; + $364 = $363; + $365 = HEAP32[$364>>2]|0; + $366 = (_bitshift64Ashr(0,($362|0),32)|0); + $367 = tempRet0; + $368 = $282; + $369 = $368; + $370 = HEAP32[$369>>2]|0; + $371 = (($368) + 4)|0; + $372 = $371; + $373 = HEAP32[$372>>2]|0; + $374 = (_bitshift64Ashr(0,($370|0),32)|0); + $375 = tempRet0; + $376 = (___muldi3(($374|0),($375|0),($366|0),($367|0))|0); + $377 = tempRet0; + $378 = (_i64Add(($358|0),($359|0),($376|0),($377|0))|0); + $379 = tempRet0; + $380 = $in; + $381 = $380; + $382 = HEAP32[$381>>2]|0; + $383 = (($380) + 4)|0; + $384 = $383; + $385 = HEAP32[$384>>2]|0; + $386 = (_bitshift64Ashr(0,($382|0),32)|0); + $387 = tempRet0; + $388 = (($in) + 56|0); + $389 = $388; + $390 = $389; + $391 = HEAP32[$390>>2]|0; + $392 = (($389) + 4)|0; + $393 = $392; + $394 = HEAP32[$393>>2]|0; + $395 = (_bitshift64Ashr(0,($391|0),32)|0); + $396 = tempRet0; + $397 = (___muldi3(($395|0),($396|0),($386|0),($387|0))|0); + $398 = tempRet0; + $399 = (_i64Add(($378|0),($379|0),($397|0),($398|0))|0); + $400 = tempRet0; + $401 = (_bitshift64Shl(($399|0),($400|0),1)|0); + $402 = tempRet0; + $403 = (($output) + 56|0); + $404 = $403; + $405 = $404; + HEAP32[$405>>2] = $401; + $406 = (($404) + 4)|0; + $407 = $406; + HEAP32[$407>>2] = $402; + $408 = $160; + $409 = $408; + $410 = HEAP32[$409>>2]|0; + $411 = (($408) + 4)|0; + $412 = $411; + $413 = HEAP32[$412>>2]|0; + $414 = (_bitshift64Ashr(0,($410|0),32)|0); + $415 = tempRet0; + $416 = (___muldi3(($414|0),($415|0),($414|0),($415|0))|0); + $417 = tempRet0; + $418 = $56; + $419 = $418; + $420 = HEAP32[$419>>2]|0; + $421 = (($418) + 4)|0; + $422 = $421; + $423 = HEAP32[$422>>2]|0; + $424 = (_bitshift64Ashr(0,($420|0),32)|0); + $425 = tempRet0; + $426 = $282; + $427 = $426; + $428 = HEAP32[$427>>2]|0; + $429 = (($426) + 4)|0; + $430 = $429; + $431 = HEAP32[$430>>2]|0; + $432 = (_bitshift64Ashr(0,($428|0),32)|0); + $433 = tempRet0; + $434 = (___muldi3(($432|0),($433|0),($424|0),($425|0))|0); + $435 = tempRet0; + $436 = $in; + $437 = $436; + $438 = HEAP32[$437>>2]|0; + $439 = (($436) + 4)|0; + $440 = $439; + $441 = HEAP32[$440>>2]|0; + $442 = (_bitshift64Ashr(0,($438|0),32)|0); + $443 = tempRet0; + $444 = (($in) + 64|0); + $445 = $444; + $446 = $445; + $447 = HEAP32[$446>>2]|0; + $448 = (($445) + 4)|0; + $449 = $448; + $450 = HEAP32[$449>>2]|0; + $451 = (_bitshift64Ashr(0,($447|0),32)|0); + $452 = tempRet0; + $453 = (___muldi3(($451|0),($452|0),($442|0),($443|0))|0); + $454 = tempRet0; + $455 = (_i64Add(($453|0),($454|0),($434|0),($435|0))|0); + $456 = tempRet0; + $457 = $22; + $458 = $457; + $459 = HEAP32[$458>>2]|0; + $460 = (($457) + 4)|0; + $461 = $460; + $462 = HEAP32[$461>>2]|0; + $463 = (_bitshift64Ashr(0,($459|0),32)|0); + $464 = tempRet0; + $465 = $388; + $466 = $465; + $467 = HEAP32[$466>>2]|0; + $468 = (($465) + 4)|0; + $469 = $468; + $470 = HEAP32[$469>>2]|0; + $471 = (_bitshift64Ashr(0,($467|0),32)|0); + $472 = tempRet0; + $473 = (___muldi3(($471|0),($472|0),($463|0),($464|0))|0); + $474 = tempRet0; + $475 = $102; + $476 = $475; + $477 = HEAP32[$476>>2]|0; + $478 = (($475) + 4)|0; + $479 = $478; + $480 = HEAP32[$479>>2]|0; + $481 = (_bitshift64Ashr(0,($477|0),32)|0); + $482 = tempRet0; + $483 = $224; + $484 = $483; + $485 = HEAP32[$484>>2]|0; + $486 = (($483) + 4)|0; + $487 = $486; + $488 = HEAP32[$487>>2]|0; + $489 = (_bitshift64Ashr(0,($485|0),32)|0); + $490 = tempRet0; + $491 = (___muldi3(($489|0),($490|0),($481|0),($482|0))|0); + $492 = tempRet0; + $493 = (_i64Add(($491|0),($492|0),($473|0),($474|0))|0); + $494 = tempRet0; + $495 = (_bitshift64Shl(($493|0),($494|0),1)|0); + $496 = tempRet0; + $497 = (_i64Add(($455|0),($456|0),($495|0),($496|0))|0); + $498 = tempRet0; + $499 = (_bitshift64Shl(($497|0),($498|0),1)|0); + $500 = tempRet0; + $501 = (_i64Add(($499|0),($500|0),($416|0),($417|0))|0); + $502 = tempRet0; + $503 = (($output) + 64|0); + $504 = $503; + $505 = $504; + HEAP32[$505>>2] = $501; + $506 = (($504) + 4)|0; + $507 = $506; + HEAP32[$507>>2] = $502; + $508 = $160; + $509 = $508; + $510 = HEAP32[$509>>2]|0; + $511 = (($508) + 4)|0; + $512 = $511; + $513 = HEAP32[$512>>2]|0; + $514 = (_bitshift64Ashr(0,($510|0),32)|0); + $515 = tempRet0; + $516 = $224; + $517 = $516; + $518 = HEAP32[$517>>2]|0; + $519 = (($516) + 4)|0; + $520 = $519; + $521 = HEAP32[$520>>2]|0; + $522 = (_bitshift64Ashr(0,($518|0),32)|0); + $523 = tempRet0; + $524 = (___muldi3(($522|0),($523|0),($514|0),($515|0))|0); + $525 = tempRet0; + $526 = $102; + $527 = $526; + $528 = HEAP32[$527>>2]|0; + $529 = (($526) + 4)|0; + $530 = $529; + $531 = HEAP32[$530>>2]|0; + $532 = (_bitshift64Ashr(0,($528|0),32)|0); + $533 = tempRet0; + $534 = $282; + $535 = $534; + $536 = HEAP32[$535>>2]|0; + $537 = (($534) + 4)|0; + $538 = $537; + $539 = HEAP32[$538>>2]|0; + $540 = (_bitshift64Ashr(0,($536|0),32)|0); + $541 = tempRet0; + $542 = (___muldi3(($540|0),($541|0),($532|0),($533|0))|0); + $543 = tempRet0; + $544 = (_i64Add(($542|0),($543|0),($524|0),($525|0))|0); + $545 = tempRet0; + $546 = $56; + $547 = $546; + $548 = HEAP32[$547>>2]|0; + $549 = (($546) + 4)|0; + $550 = $549; + $551 = HEAP32[$550>>2]|0; + $552 = (_bitshift64Ashr(0,($548|0),32)|0); + $553 = tempRet0; + $554 = $388; + $555 = $554; + $556 = HEAP32[$555>>2]|0; + $557 = (($554) + 4)|0; + $558 = $557; + $559 = HEAP32[$558>>2]|0; + $560 = (_bitshift64Ashr(0,($556|0),32)|0); + $561 = tempRet0; + $562 = (___muldi3(($560|0),($561|0),($552|0),($553|0))|0); + $563 = tempRet0; + $564 = (_i64Add(($544|0),($545|0),($562|0),($563|0))|0); + $565 = tempRet0; + $566 = $22; + $567 = $566; + $568 = HEAP32[$567>>2]|0; + $569 = (($566) + 4)|0; + $570 = $569; + $571 = HEAP32[$570>>2]|0; + $572 = (_bitshift64Ashr(0,($568|0),32)|0); + $573 = tempRet0; + $574 = $444; + $575 = $574; + $576 = HEAP32[$575>>2]|0; + $577 = (($574) + 4)|0; + $578 = $577; + $579 = HEAP32[$578>>2]|0; + $580 = (_bitshift64Ashr(0,($576|0),32)|0); + $581 = tempRet0; + $582 = (___muldi3(($580|0),($581|0),($572|0),($573|0))|0); + $583 = tempRet0; + $584 = (_i64Add(($564|0),($565|0),($582|0),($583|0))|0); + $585 = tempRet0; + $586 = $in; + $587 = $586; + $588 = HEAP32[$587>>2]|0; + $589 = (($586) + 4)|0; + $590 = $589; + $591 = HEAP32[$590>>2]|0; + $592 = (_bitshift64Ashr(0,($588|0),32)|0); + $593 = tempRet0; + $594 = (($in) + 72|0); + $595 = $594; + $596 = $595; + $597 = HEAP32[$596>>2]|0; + $598 = (($595) + 4)|0; + $599 = $598; + $600 = HEAP32[$599>>2]|0; + $601 = (_bitshift64Ashr(0,($597|0),32)|0); + $602 = tempRet0; + $603 = (___muldi3(($601|0),($602|0),($592|0),($593|0))|0); + $604 = tempRet0; + $605 = (_i64Add(($584|0),($585|0),($603|0),($604|0))|0); + $606 = tempRet0; + $607 = (_bitshift64Shl(($605|0),($606|0),1)|0); + $608 = tempRet0; + $609 = (($output) + 72|0); + $610 = $609; + $611 = $610; + HEAP32[$611>>2] = $607; + $612 = (($610) + 4)|0; + $613 = $612; + HEAP32[$613>>2] = $608; + $614 = $224; + $615 = $614; + $616 = HEAP32[$615>>2]|0; + $617 = (($614) + 4)|0; + $618 = $617; + $619 = HEAP32[$618>>2]|0; + $620 = (_bitshift64Ashr(0,($616|0),32)|0); + $621 = tempRet0; + $622 = (___muldi3(($620|0),($621|0),($620|0),($621|0))|0); + $623 = tempRet0; + $624 = $160; + $625 = $624; + $626 = HEAP32[$625>>2]|0; + $627 = (($624) + 4)|0; + $628 = $627; + $629 = HEAP32[$628>>2]|0; + $630 = (_bitshift64Ashr(0,($626|0),32)|0); + $631 = tempRet0; + $632 = $282; + $633 = $632; + $634 = HEAP32[$633>>2]|0; + $635 = (($632) + 4)|0; + $636 = $635; + $637 = HEAP32[$636>>2]|0; + $638 = (_bitshift64Ashr(0,($634|0),32)|0); + $639 = tempRet0; + $640 = (___muldi3(($638|0),($639|0),($630|0),($631|0))|0); + $641 = tempRet0; + $642 = (_i64Add(($640|0),($641|0),($622|0),($623|0))|0); + $643 = tempRet0; + $644 = $56; + $645 = $644; + $646 = HEAP32[$645>>2]|0; + $647 = (($644) + 4)|0; + $648 = $647; + $649 = HEAP32[$648>>2]|0; + $650 = (_bitshift64Ashr(0,($646|0),32)|0); + $651 = tempRet0; + $652 = $444; + $653 = $652; + $654 = HEAP32[$653>>2]|0; + $655 = (($652) + 4)|0; + $656 = $655; + $657 = HEAP32[$656>>2]|0; + $658 = (_bitshift64Ashr(0,($654|0),32)|0); + $659 = tempRet0; + $660 = (___muldi3(($658|0),($659|0),($650|0),($651|0))|0); + $661 = tempRet0; + $662 = (_i64Add(($642|0),($643|0),($660|0),($661|0))|0); + $663 = tempRet0; + $664 = $102; + $665 = $664; + $666 = HEAP32[$665>>2]|0; + $667 = (($664) + 4)|0; + $668 = $667; + $669 = HEAP32[$668>>2]|0; + $670 = (_bitshift64Ashr(0,($666|0),32)|0); + $671 = tempRet0; + $672 = $388; + $673 = $672; + $674 = HEAP32[$673>>2]|0; + $675 = (($672) + 4)|0; + $676 = $675; + $677 = HEAP32[$676>>2]|0; + $678 = (_bitshift64Ashr(0,($674|0),32)|0); + $679 = tempRet0; + $680 = (___muldi3(($678|0),($679|0),($670|0),($671|0))|0); + $681 = tempRet0; + $682 = $22; + $683 = $682; + $684 = HEAP32[$683>>2]|0; + $685 = (($682) + 4)|0; + $686 = $685; + $687 = HEAP32[$686>>2]|0; + $688 = (_bitshift64Ashr(0,($684|0),32)|0); + $689 = tempRet0; + $690 = $594; + $691 = $690; + $692 = HEAP32[$691>>2]|0; + $693 = (($690) + 4)|0; + $694 = $693; + $695 = HEAP32[$694>>2]|0; + $696 = (_bitshift64Ashr(0,($692|0),32)|0); + $697 = tempRet0; + $698 = (___muldi3(($696|0),($697|0),($688|0),($689|0))|0); + $699 = tempRet0; + $700 = (_i64Add(($698|0),($699|0),($680|0),($681|0))|0); + $701 = tempRet0; + $702 = (_bitshift64Shl(($700|0),($701|0),1)|0); + $703 = tempRet0; + $704 = (_i64Add(($662|0),($663|0),($702|0),($703|0))|0); + $705 = tempRet0; + $706 = (_bitshift64Shl(($704|0),($705|0),1)|0); + $707 = tempRet0; + $708 = (($output) + 80|0); + $709 = $708; + $710 = $709; + HEAP32[$710>>2] = $706; + $711 = (($709) + 4)|0; + $712 = $711; + HEAP32[$712>>2] = $707; + $713 = $224; + $714 = $713; + $715 = HEAP32[$714>>2]|0; + $716 = (($713) + 4)|0; + $717 = $716; + $718 = HEAP32[$717>>2]|0; + $719 = (_bitshift64Ashr(0,($715|0),32)|0); + $720 = tempRet0; + $721 = $282; + $722 = $721; + $723 = HEAP32[$722>>2]|0; + $724 = (($721) + 4)|0; + $725 = $724; + $726 = HEAP32[$725>>2]|0; + $727 = (_bitshift64Ashr(0,($723|0),32)|0); + $728 = tempRet0; + $729 = (___muldi3(($727|0),($728|0),($719|0),($720|0))|0); + $730 = tempRet0; + $731 = $160; + $732 = $731; + $733 = HEAP32[$732>>2]|0; + $734 = (($731) + 4)|0; + $735 = $734; + $736 = HEAP32[$735>>2]|0; + $737 = (_bitshift64Ashr(0,($733|0),32)|0); + $738 = tempRet0; + $739 = $388; + $740 = $739; + $741 = HEAP32[$740>>2]|0; + $742 = (($739) + 4)|0; + $743 = $742; + $744 = HEAP32[$743>>2]|0; + $745 = (_bitshift64Ashr(0,($741|0),32)|0); + $746 = tempRet0; + $747 = (___muldi3(($745|0),($746|0),($737|0),($738|0))|0); + $748 = tempRet0; + $749 = (_i64Add(($747|0),($748|0),($729|0),($730|0))|0); + $750 = tempRet0; + $751 = $102; + $752 = $751; + $753 = HEAP32[$752>>2]|0; + $754 = (($751) + 4)|0; + $755 = $754; + $756 = HEAP32[$755>>2]|0; + $757 = (_bitshift64Ashr(0,($753|0),32)|0); + $758 = tempRet0; + $759 = $444; + $760 = $759; + $761 = HEAP32[$760>>2]|0; + $762 = (($759) + 4)|0; + $763 = $762; + $764 = HEAP32[$763>>2]|0; + $765 = (_bitshift64Ashr(0,($761|0),32)|0); + $766 = tempRet0; + $767 = (___muldi3(($765|0),($766|0),($757|0),($758|0))|0); + $768 = tempRet0; + $769 = (_i64Add(($749|0),($750|0),($767|0),($768|0))|0); + $770 = tempRet0; + $771 = $56; + $772 = $771; + $773 = HEAP32[$772>>2]|0; + $774 = (($771) + 4)|0; + $775 = $774; + $776 = HEAP32[$775>>2]|0; + $777 = (_bitshift64Ashr(0,($773|0),32)|0); + $778 = tempRet0; + $779 = $594; + $780 = $779; + $781 = HEAP32[$780>>2]|0; + $782 = (($779) + 4)|0; + $783 = $782; + $784 = HEAP32[$783>>2]|0; + $785 = (_bitshift64Ashr(0,($781|0),32)|0); + $786 = tempRet0; + $787 = (___muldi3(($785|0),($786|0),($777|0),($778|0))|0); + $788 = tempRet0; + $789 = (_i64Add(($769|0),($770|0),($787|0),($788|0))|0); + $790 = tempRet0; + $791 = (_bitshift64Shl(($789|0),($790|0),1)|0); + $792 = tempRet0; + $793 = (($output) + 88|0); + $794 = $793; + $795 = $794; + HEAP32[$795>>2] = $791; + $796 = (($794) + 4)|0; + $797 = $796; + HEAP32[$797>>2] = $792; + $798 = $282; + $799 = $798; + $800 = HEAP32[$799>>2]|0; + $801 = (($798) + 4)|0; + $802 = $801; + $803 = HEAP32[$802>>2]|0; + $804 = (_bitshift64Ashr(0,($800|0),32)|0); + $805 = tempRet0; + $806 = (___muldi3(($804|0),($805|0),($804|0),($805|0))|0); + $807 = tempRet0; + $808 = $160; + $809 = $808; + $810 = HEAP32[$809>>2]|0; + $811 = (($808) + 4)|0; + $812 = $811; + $813 = HEAP32[$812>>2]|0; + $814 = (_bitshift64Ashr(0,($810|0),32)|0); + $815 = tempRet0; + $816 = $444; + $817 = $816; + $818 = HEAP32[$817>>2]|0; + $819 = (($816) + 4)|0; + $820 = $819; + $821 = HEAP32[$820>>2]|0; + $822 = (_bitshift64Ashr(0,($818|0),32)|0); + $823 = tempRet0; + $824 = (___muldi3(($822|0),($823|0),($814|0),($815|0))|0); + $825 = tempRet0; + $826 = $224; + $827 = $826; + $828 = HEAP32[$827>>2]|0; + $829 = (($826) + 4)|0; + $830 = $829; + $831 = HEAP32[$830>>2]|0; + $832 = (_bitshift64Ashr(0,($828|0),32)|0); + $833 = tempRet0; + $834 = $388; + $835 = $834; + $836 = HEAP32[$835>>2]|0; + $837 = (($834) + 4)|0; + $838 = $837; + $839 = HEAP32[$838>>2]|0; + $840 = (_bitshift64Ashr(0,($836|0),32)|0); + $841 = tempRet0; + $842 = (___muldi3(($840|0),($841|0),($832|0),($833|0))|0); + $843 = tempRet0; + $844 = $102; + $845 = $844; + $846 = HEAP32[$845>>2]|0; + $847 = (($844) + 4)|0; + $848 = $847; + $849 = HEAP32[$848>>2]|0; + $850 = (_bitshift64Ashr(0,($846|0),32)|0); + $851 = tempRet0; + $852 = $594; + $853 = $852; + $854 = HEAP32[$853>>2]|0; + $855 = (($852) + 4)|0; + $856 = $855; + $857 = HEAP32[$856>>2]|0; + $858 = (_bitshift64Ashr(0,($854|0),32)|0); + $859 = tempRet0; + $860 = (___muldi3(($858|0),($859|0),($850|0),($851|0))|0); + $861 = tempRet0; + $862 = (_i64Add(($860|0),($861|0),($842|0),($843|0))|0); + $863 = tempRet0; + $864 = (_bitshift64Shl(($862|0),($863|0),1)|0); + $865 = tempRet0; + $866 = (_i64Add(($864|0),($865|0),($824|0),($825|0))|0); + $867 = tempRet0; + $868 = (_bitshift64Shl(($866|0),($867|0),1)|0); + $869 = tempRet0; + $870 = (_i64Add(($868|0),($869|0),($806|0),($807|0))|0); + $871 = tempRet0; + $872 = (($output) + 96|0); + $873 = $872; + $874 = $873; + HEAP32[$874>>2] = $870; + $875 = (($873) + 4)|0; + $876 = $875; + HEAP32[$876>>2] = $871; + $877 = $282; + $878 = $877; + $879 = HEAP32[$878>>2]|0; + $880 = (($877) + 4)|0; + $881 = $880; + $882 = HEAP32[$881>>2]|0; + $883 = (_bitshift64Ashr(0,($879|0),32)|0); + $884 = tempRet0; + $885 = $388; + $886 = $885; + $887 = HEAP32[$886>>2]|0; + $888 = (($885) + 4)|0; + $889 = $888; + $890 = HEAP32[$889>>2]|0; + $891 = (_bitshift64Ashr(0,($887|0),32)|0); + $892 = tempRet0; + $893 = (___muldi3(($891|0),($892|0),($883|0),($884|0))|0); + $894 = tempRet0; + $895 = $224; + $896 = $895; + $897 = HEAP32[$896>>2]|0; + $898 = (($895) + 4)|0; + $899 = $898; + $900 = HEAP32[$899>>2]|0; + $901 = (_bitshift64Ashr(0,($897|0),32)|0); + $902 = tempRet0; + $903 = $444; + $904 = $903; + $905 = HEAP32[$904>>2]|0; + $906 = (($903) + 4)|0; + $907 = $906; + $908 = HEAP32[$907>>2]|0; + $909 = (_bitshift64Ashr(0,($905|0),32)|0); + $910 = tempRet0; + $911 = (___muldi3(($909|0),($910|0),($901|0),($902|0))|0); + $912 = tempRet0; + $913 = (_i64Add(($911|0),($912|0),($893|0),($894|0))|0); + $914 = tempRet0; + $915 = $160; + $916 = $915; + $917 = HEAP32[$916>>2]|0; + $918 = (($915) + 4)|0; + $919 = $918; + $920 = HEAP32[$919>>2]|0; + $921 = (_bitshift64Ashr(0,($917|0),32)|0); + $922 = tempRet0; + $923 = $594; + $924 = $923; + $925 = HEAP32[$924>>2]|0; + $926 = (($923) + 4)|0; + $927 = $926; + $928 = HEAP32[$927>>2]|0; + $929 = (_bitshift64Ashr(0,($925|0),32)|0); + $930 = tempRet0; + $931 = (___muldi3(($929|0),($930|0),($921|0),($922|0))|0); + $932 = tempRet0; + $933 = (_i64Add(($913|0),($914|0),($931|0),($932|0))|0); + $934 = tempRet0; + $935 = (_bitshift64Shl(($933|0),($934|0),1)|0); + $936 = tempRet0; + $937 = (($output) + 104|0); + $938 = $937; + $939 = $938; + HEAP32[$939>>2] = $935; + $940 = (($938) + 4)|0; + $941 = $940; + HEAP32[$941>>2] = $936; + $942 = $388; + $943 = $942; + $944 = HEAP32[$943>>2]|0; + $945 = (($942) + 4)|0; + $946 = $945; + $947 = HEAP32[$946>>2]|0; + $948 = (_bitshift64Ashr(0,($944|0),32)|0); + $949 = tempRet0; + $950 = (___muldi3(($948|0),($949|0),($948|0),($949|0))|0); + $951 = tempRet0; + $952 = $282; + $953 = $952; + $954 = HEAP32[$953>>2]|0; + $955 = (($952) + 4)|0; + $956 = $955; + $957 = HEAP32[$956>>2]|0; + $958 = (_bitshift64Ashr(0,($954|0),32)|0); + $959 = tempRet0; + $960 = $444; + $961 = $960; + $962 = HEAP32[$961>>2]|0; + $963 = (($960) + 4)|0; + $964 = $963; + $965 = HEAP32[$964>>2]|0; + $966 = (_bitshift64Ashr(0,($962|0),32)|0); + $967 = tempRet0; + $968 = (___muldi3(($966|0),($967|0),($958|0),($959|0))|0); + $969 = tempRet0; + $970 = (_i64Add(($968|0),($969|0),($950|0),($951|0))|0); + $971 = tempRet0; + $972 = $224; + $973 = $972; + $974 = HEAP32[$973>>2]|0; + $975 = (($972) + 4)|0; + $976 = $975; + $977 = HEAP32[$976>>2]|0; + $978 = (_bitshift64Ashr(0,($974|0),31)|0); + $979 = tempRet0; + $980 = $594; + $981 = $980; + $982 = HEAP32[$981>>2]|0; + $983 = (($980) + 4)|0; + $984 = $983; + $985 = HEAP32[$984>>2]|0; + $986 = (_bitshift64Ashr(0,($982|0),32)|0); + $987 = tempRet0; + $988 = (___muldi3(($986|0),($987|0),($978|0),($979|0))|0); + $989 = tempRet0; + $990 = (_i64Add(($970|0),($971|0),($988|0),($989|0))|0); + $991 = tempRet0; + $992 = (_bitshift64Shl(($990|0),($991|0),1)|0); + $993 = tempRet0; + $994 = (($output) + 112|0); + $995 = $994; + $996 = $995; + HEAP32[$996>>2] = $992; + $997 = (($995) + 4)|0; + $998 = $997; + HEAP32[$998>>2] = $993; + $999 = $388; + $1000 = $999; + $1001 = HEAP32[$1000>>2]|0; + $1002 = (($999) + 4)|0; + $1003 = $1002; + $1004 = HEAP32[$1003>>2]|0; + $1005 = (_bitshift64Ashr(0,($1001|0),32)|0); + $1006 = tempRet0; + $1007 = $444; + $1008 = $1007; + $1009 = HEAP32[$1008>>2]|0; + $1010 = (($1007) + 4)|0; + $1011 = $1010; + $1012 = HEAP32[$1011>>2]|0; + $1013 = (_bitshift64Ashr(0,($1009|0),32)|0); + $1014 = tempRet0; + $1015 = (___muldi3(($1013|0),($1014|0),($1005|0),($1006|0))|0); + $1016 = tempRet0; + $1017 = $282; + $1018 = $1017; + $1019 = HEAP32[$1018>>2]|0; + $1020 = (($1017) + 4)|0; + $1021 = $1020; + $1022 = HEAP32[$1021>>2]|0; + $1023 = (_bitshift64Ashr(0,($1019|0),32)|0); + $1024 = tempRet0; + $1025 = $594; + $1026 = $1025; + $1027 = HEAP32[$1026>>2]|0; + $1028 = (($1025) + 4)|0; + $1029 = $1028; + $1030 = HEAP32[$1029>>2]|0; + $1031 = (_bitshift64Ashr(0,($1027|0),32)|0); + $1032 = tempRet0; + $1033 = (___muldi3(($1031|0),($1032|0),($1023|0),($1024|0))|0); + $1034 = tempRet0; + $1035 = (_i64Add(($1033|0),($1034|0),($1015|0),($1016|0))|0); + $1036 = tempRet0; + $1037 = (_bitshift64Shl(($1035|0),($1036|0),1)|0); + $1038 = tempRet0; + $1039 = (($output) + 120|0); + $1040 = $1039; + $1041 = $1040; + HEAP32[$1041>>2] = $1037; + $1042 = (($1040) + 4)|0; + $1043 = $1042; + HEAP32[$1043>>2] = $1038; + $1044 = $444; + $1045 = $1044; + $1046 = HEAP32[$1045>>2]|0; + $1047 = (($1044) + 4)|0; + $1048 = $1047; + $1049 = HEAP32[$1048>>2]|0; + $1050 = (_bitshift64Ashr(0,($1046|0),32)|0); + $1051 = tempRet0; + $1052 = (___muldi3(($1050|0),($1051|0),($1050|0),($1051|0))|0); + $1053 = tempRet0; + $1054 = $388; + $1055 = $1054; + $1056 = HEAP32[$1055>>2]|0; + $1057 = (($1054) + 4)|0; + $1058 = $1057; + $1059 = HEAP32[$1058>>2]|0; + $1060 = (_bitshift64Ashr(0,($1056|0),30)|0); + $1061 = tempRet0; + $1062 = $594; + $1063 = $1062; + $1064 = HEAP32[$1063>>2]|0; + $1065 = (($1062) + 4)|0; + $1066 = $1065; + $1067 = HEAP32[$1066>>2]|0; + $1068 = (_bitshift64Ashr(0,($1064|0),32)|0); + $1069 = tempRet0; + $1070 = (___muldi3(($1068|0),($1069|0),($1060|0),($1061|0))|0); + $1071 = tempRet0; + $1072 = (_i64Add(($1070|0),($1071|0),($1052|0),($1053|0))|0); + $1073 = tempRet0; + $1074 = (($output) + 128|0); + $1075 = $1074; + $1076 = $1075; + HEAP32[$1076>>2] = $1072; + $1077 = (($1075) + 4)|0; + $1078 = $1077; + HEAP32[$1078>>2] = $1073; + $1079 = $444; + $1080 = $1079; + $1081 = HEAP32[$1080>>2]|0; + $1082 = (($1079) + 4)|0; + $1083 = $1082; + $1084 = HEAP32[$1083>>2]|0; + $1085 = (_bitshift64Ashr(0,($1081|0),31)|0); + $1086 = tempRet0; + $1087 = $594; + $1088 = $1087; + $1089 = HEAP32[$1088>>2]|0; + $1090 = (($1087) + 4)|0; + $1091 = $1090; + $1092 = HEAP32[$1091>>2]|0; + $1093 = (_bitshift64Ashr(0,($1089|0),32)|0); + $1094 = tempRet0; + $1095 = (___muldi3(($1093|0),($1094|0),($1085|0),($1086|0))|0); + $1096 = tempRet0; + $1097 = (($output) + 136|0); + $1098 = $1097; + $1099 = $1098; + HEAP32[$1099>>2] = $1095; + $1100 = (($1098) + 4)|0; + $1101 = $1100; + HEAP32[$1101>>2] = $1096; + $1102 = $594; + $1103 = $1102; + $1104 = HEAP32[$1103>>2]|0; + $1105 = (($1102) + 4)|0; + $1106 = $1105; + $1107 = HEAP32[$1106>>2]|0; + $1108 = (_bitshift64Ashr(0,($1104|0),32)|0); + $1109 = tempRet0; + $1110 = (_bitshift64Ashr(0,($1104|0),31)|0); + $1111 = tempRet0; + $1112 = (___muldi3(($1110|0),($1111|0),($1108|0),($1109|0))|0); + $1113 = tempRet0; + $1114 = (($output) + 144|0); + $1115 = $1114; + $1116 = $1115; + HEAP32[$1116>>2] = $1112; + $1117 = (($1115) + 4)|0; + $1118 = $1117; + HEAP32[$1118>>2] = $1113; + STACKTOP = sp;return; +} +function _div_by_2_26($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = $1 >> 31; + $3 = $2 >>> 6; + $4 = (_i64Add(($3|0),0,($0|0),($1|0))|0); + $5 = tempRet0; + $6 = (_bitshift64Ashr(($4|0),($5|0),26)|0); + $7 = tempRet0; + tempRet0 = $7; + STACKTOP = sp;return ($6|0); +} +function _div_by_2_25($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = $1 >> 31; + $3 = $2 >>> 7; + $4 = (_i64Add(($3|0),0,($0|0),($1|0))|0); + $5 = tempRet0; + $6 = (_bitshift64Ashr(($4|0),($5|0),25)|0); + $7 = tempRet0; + tempRet0 = $7; + STACKTOP = sp;return ($6|0); +} +function _crypto_sign_ed25519_ref10_fe_0($h) { + $h = $h|0; + var dest = 0, label = 0, sp = 0, stop = 0; + sp = STACKTOP; + dest=$h+0|0; stop=dest+40|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_1($h) { + $h = $h|0; + var $0 = 0, dest = 0, label = 0, sp = 0, stop = 0; + sp = STACKTOP; + HEAP32[$h>>2] = 1; + $0 = (($h) + 4|0); + dest=$0+0|0; stop=dest+36|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_add($h,$f,$g) { + $h = $h|0; + $f = $f|0; + $g = $g|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = HEAP32[$g>>2]|0; + $20 = (($g) + 4|0); + $21 = HEAP32[$20>>2]|0; + $22 = (($g) + 8|0); + $23 = HEAP32[$22>>2]|0; + $24 = (($g) + 12|0); + $25 = HEAP32[$24>>2]|0; + $26 = (($g) + 16|0); + $27 = HEAP32[$26>>2]|0; + $28 = (($g) + 20|0); + $29 = HEAP32[$28>>2]|0; + $30 = (($g) + 24|0); + $31 = HEAP32[$30>>2]|0; + $32 = (($g) + 28|0); + $33 = HEAP32[$32>>2]|0; + $34 = (($g) + 32|0); + $35 = HEAP32[$34>>2]|0; + $36 = (($g) + 36|0); + $37 = HEAP32[$36>>2]|0; + $38 = (($19) + ($0))|0; + $39 = (($21) + ($2))|0; + $40 = (($23) + ($4))|0; + $41 = (($25) + ($6))|0; + $42 = (($27) + ($8))|0; + $43 = (($29) + ($10))|0; + $44 = (($31) + ($12))|0; + $45 = (($33) + ($14))|0; + $46 = (($35) + ($16))|0; + $47 = (($37) + ($18))|0; + HEAP32[$h>>2] = $38; + $48 = (($h) + 4|0); + HEAP32[$48>>2] = $39; + $49 = (($h) + 8|0); + HEAP32[$49>>2] = $40; + $50 = (($h) + 12|0); + HEAP32[$50>>2] = $41; + $51 = (($h) + 16|0); + HEAP32[$51>>2] = $42; + $52 = (($h) + 20|0); + HEAP32[$52>>2] = $43; + $53 = (($h) + 24|0); + HEAP32[$53>>2] = $44; + $54 = (($h) + 28|0); + HEAP32[$54>>2] = $45; + $55 = (($h) + 32|0); + HEAP32[$55>>2] = $46; + $56 = (($h) + 36|0); + HEAP32[$56>>2] = $47; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_cmov($f,$g,$b) { + $f = $f|0; + $g = $g|0; + $b = $b|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0; + var $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = HEAP32[$g>>2]|0; + $20 = (($g) + 4|0); + $21 = HEAP32[$20>>2]|0; + $22 = (($g) + 8|0); + $23 = HEAP32[$22>>2]|0; + $24 = (($g) + 12|0); + $25 = HEAP32[$24>>2]|0; + $26 = (($g) + 16|0); + $27 = HEAP32[$26>>2]|0; + $28 = (($g) + 20|0); + $29 = HEAP32[$28>>2]|0; + $30 = (($g) + 24|0); + $31 = HEAP32[$30>>2]|0; + $32 = (($g) + 28|0); + $33 = HEAP32[$32>>2]|0; + $34 = (($g) + 32|0); + $35 = HEAP32[$34>>2]|0; + $36 = (($g) + 36|0); + $37 = HEAP32[$36>>2]|0; + $38 = $19 ^ $0; + $39 = $21 ^ $2; + $40 = $23 ^ $4; + $41 = $25 ^ $6; + $42 = $27 ^ $8; + $43 = $29 ^ $10; + $44 = $31 ^ $12; + $45 = $33 ^ $14; + $46 = $35 ^ $16; + $47 = $37 ^ $18; + $48 = (0 - ($b))|0; + $49 = $38 & $48; + $50 = $39 & $48; + $51 = $40 & $48; + $52 = $41 & $48; + $53 = $42 & $48; + $54 = $43 & $48; + $55 = $44 & $48; + $56 = $45 & $48; + $57 = $46 & $48; + $58 = $47 & $48; + $59 = $49 ^ $0; + HEAP32[$f>>2] = $59; + $60 = $50 ^ $2; + HEAP32[$1>>2] = $60; + $61 = $51 ^ $4; + HEAP32[$3>>2] = $61; + $62 = $52 ^ $6; + HEAP32[$5>>2] = $62; + $63 = $53 ^ $8; + HEAP32[$7>>2] = $63; + $64 = $54 ^ $10; + HEAP32[$9>>2] = $64; + $65 = $55 ^ $12; + HEAP32[$11>>2] = $65; + $66 = $56 ^ $14; + HEAP32[$13>>2] = $66; + $67 = $57 ^ $16; + HEAP32[$15>>2] = $67; + $68 = $58 ^ $18; + HEAP32[$17>>2] = $68; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_copy($h,$f) { + $h = $h|0; + $f = $f|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + HEAP32[$h>>2] = $0; + $19 = (($h) + 4|0); + HEAP32[$19>>2] = $2; + $20 = (($h) + 8|0); + HEAP32[$20>>2] = $4; + $21 = (($h) + 12|0); + HEAP32[$21>>2] = $6; + $22 = (($h) + 16|0); + HEAP32[$22>>2] = $8; + $23 = (($h) + 20|0); + HEAP32[$23>>2] = $10; + $24 = (($h) + 24|0); + HEAP32[$24>>2] = $12; + $25 = (($h) + 28|0); + HEAP32[$25>>2] = $14; + $26 = (($h) + 32|0); + HEAP32[$26>>2] = $16; + $27 = (($h) + 36|0); + HEAP32[$27>>2] = $18; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_frombytes($h,$s) { + $h = $h|0; + $s = $s|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; + var $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0; + var $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0; + var $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0; + var $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (_load_4($s)|0); + $1 = tempRet0; + $2 = (($s) + 4|0); + $3 = (_load_3($2)|0); + $4 = tempRet0; + $5 = (_bitshift64Shl(($3|0),($4|0),6)|0); + $6 = tempRet0; + $7 = (($s) + 7|0); + $8 = (_load_3($7)|0); + $9 = tempRet0; + $10 = (_bitshift64Shl(($8|0),($9|0),5)|0); + $11 = tempRet0; + $12 = (($s) + 10|0); + $13 = (_load_3($12)|0); + $14 = tempRet0; + $15 = (_bitshift64Shl(($13|0),($14|0),3)|0); + $16 = tempRet0; + $17 = (($s) + 13|0); + $18 = (_load_3($17)|0); + $19 = tempRet0; + $20 = (_bitshift64Shl(($18|0),($19|0),2)|0); + $21 = tempRet0; + $22 = (($s) + 16|0); + $23 = (_load_4($22)|0); + $24 = tempRet0; + $25 = (($s) + 20|0); + $26 = (_load_3($25)|0); + $27 = tempRet0; + $28 = (_bitshift64Shl(($26|0),($27|0),7)|0); + $29 = tempRet0; + $30 = (($s) + 23|0); + $31 = (_load_3($30)|0); + $32 = tempRet0; + $33 = (_bitshift64Shl(($31|0),($32|0),5)|0); + $34 = tempRet0; + $35 = (($s) + 26|0); + $36 = (_load_3($35)|0); + $37 = tempRet0; + $38 = (_bitshift64Shl(($36|0),($37|0),4)|0); + $39 = tempRet0; + $40 = (($s) + 29|0); + $41 = (_load_3($40)|0); + $42 = tempRet0; + $43 = (_bitshift64Shl(($41|0),($42|0),2)|0); + $44 = tempRet0; + $45 = $43 & 33554428; + $46 = (_i64Add(($45|0),0,16777216,0)|0); + $47 = tempRet0; + $48 = (_bitshift64Lshr(($46|0),($47|0),25)|0); + $49 = tempRet0; + $50 = (___muldi3(($48|0),($49|0),19,0)|0); + $51 = tempRet0; + $52 = (_i64Add(($50|0),($51|0),($0|0),($1|0))|0); + $53 = tempRet0; + $54 = (_bitshift64Shl(($48|0),($49|0),25)|0); + $55 = tempRet0; + $56 = (_i64Add(($5|0),($6|0),16777216,0)|0); + $57 = tempRet0; + $58 = (_bitshift64Ashr(($56|0),($57|0),25)|0); + $59 = tempRet0; + $60 = (_i64Add(($58|0),($59|0),($10|0),($11|0))|0); + $61 = tempRet0; + $62 = (_bitshift64Shl(($58|0),($59|0),25)|0); + $63 = tempRet0; + $64 = (_i64Subtract(($5|0),($6|0),($62|0),($63|0))|0); + $65 = tempRet0; + $66 = (_i64Add(($15|0),($16|0),16777216,0)|0); + $67 = tempRet0; + $68 = (_bitshift64Ashr(($66|0),($67|0),25)|0); + $69 = tempRet0; + $70 = (_i64Add(($68|0),($69|0),($20|0),($21|0))|0); + $71 = tempRet0; + $72 = (_bitshift64Shl(($68|0),($69|0),25)|0); + $73 = tempRet0; + $74 = (_i64Subtract(($15|0),($16|0),($72|0),($73|0))|0); + $75 = tempRet0; + $76 = (_i64Add(($23|0),($24|0),16777216,0)|0); + $77 = tempRet0; + $78 = (_bitshift64Ashr(($76|0),($77|0),25)|0); + $79 = tempRet0; + $80 = (_i64Add(($28|0),($29|0),($78|0),($79|0))|0); + $81 = tempRet0; + $82 = (_bitshift64Shl(($78|0),($79|0),25)|0); + $83 = tempRet0; + $84 = (_i64Subtract(($23|0),($24|0),($82|0),($83|0))|0); + $85 = tempRet0; + $86 = (_i64Add(($33|0),($34|0),16777216,0)|0); + $87 = tempRet0; + $88 = (_bitshift64Ashr(($86|0),($87|0),25)|0); + $89 = tempRet0; + $90 = (_i64Add(($88|0),($89|0),($38|0),($39|0))|0); + $91 = tempRet0; + $92 = (_bitshift64Shl(($88|0),($89|0),25)|0); + $93 = tempRet0; + $94 = (_i64Add(($52|0),($53|0),33554432,0)|0); + $95 = tempRet0; + $96 = (_bitshift64Ashr(($94|0),($95|0),26)|0); + $97 = tempRet0; + $98 = (_i64Add(($64|0),($65|0),($96|0),($97|0))|0); + $99 = tempRet0; + $100 = (_bitshift64Shl(($96|0),($97|0),26)|0); + $101 = tempRet0; + $102 = (_i64Subtract(($52|0),($53|0),($100|0),($101|0))|0); + $103 = tempRet0; + $104 = (_i64Add(($60|0),($61|0),33554432,0)|0); + $105 = tempRet0; + $106 = (_bitshift64Ashr(($104|0),($105|0),26)|0); + $107 = tempRet0; + $108 = (_i64Add(($74|0),($75|0),($106|0),($107|0))|0); + $109 = tempRet0; + $110 = (_bitshift64Shl(($106|0),($107|0),26)|0); + $111 = tempRet0; + $112 = (_i64Subtract(($60|0),($61|0),($110|0),($111|0))|0); + $113 = tempRet0; + $114 = (_i64Add(($70|0),($71|0),33554432,0)|0); + $115 = tempRet0; + $116 = (_bitshift64Ashr(($114|0),($115|0),26)|0); + $117 = tempRet0; + $118 = (_i64Add(($84|0),($85|0),($116|0),($117|0))|0); + $119 = tempRet0; + $120 = (_bitshift64Shl(($116|0),($117|0),26)|0); + $121 = tempRet0; + $122 = (_i64Subtract(($70|0),($71|0),($120|0),($121|0))|0); + $123 = tempRet0; + $124 = (_i64Add(($80|0),($81|0),33554432,0)|0); + $125 = tempRet0; + $126 = (_bitshift64Ashr(($124|0),($125|0),26)|0); + $127 = tempRet0; + $128 = (_i64Add(($126|0),($127|0),($33|0),($34|0))|0); + $129 = tempRet0; + $130 = (_i64Subtract(($128|0),($129|0),($92|0),($93|0))|0); + $131 = tempRet0; + $132 = (_bitshift64Shl(($126|0),($127|0),26)|0); + $133 = tempRet0; + $134 = (_i64Subtract(($80|0),($81|0),($132|0),($133|0))|0); + $135 = tempRet0; + $136 = (_i64Add(($90|0),($91|0),33554432,0)|0); + $137 = tempRet0; + $138 = (_bitshift64Ashr(($136|0),($137|0),26)|0); + $139 = tempRet0; + $140 = (_i64Add(($138|0),($139|0),($45|0),0)|0); + $141 = tempRet0; + $142 = (_i64Subtract(($140|0),($141|0),($54|0),($55|0))|0); + $143 = tempRet0; + $144 = (_bitshift64Shl(($138|0),($139|0),26)|0); + $145 = tempRet0; + $146 = (_i64Subtract(($90|0),($91|0),($144|0),($145|0))|0); + $147 = tempRet0; + HEAP32[$h>>2] = $102; + $148 = (($h) + 4|0); + HEAP32[$148>>2] = $98; + $149 = (($h) + 8|0); + HEAP32[$149>>2] = $112; + $150 = (($h) + 12|0); + HEAP32[$150>>2] = $108; + $151 = (($h) + 16|0); + HEAP32[$151>>2] = $122; + $152 = (($h) + 20|0); + HEAP32[$152>>2] = $118; + $153 = (($h) + 24|0); + HEAP32[$153>>2] = $134; + $154 = (($h) + 28|0); + HEAP32[$154>>2] = $130; + $155 = (($h) + 32|0); + HEAP32[$155>>2] = $146; + $156 = (($h) + 36|0); + HEAP32[$156>>2] = $142; + STACKTOP = sp;return; +} +function _load_4($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + $15 = (($in) + 3|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16&255; + $18 = (_bitshift64Shl(($17|0),0,24)|0); + $19 = tempRet0; + $20 = $13 | $18; + $21 = $14 | $19; + tempRet0 = $21; + STACKTOP = sp;return ($20|0); +} +function _load_3($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + tempRet0 = $14; + STACKTOP = sp;return ($13|0); +} +function _crypto_sign_ed25519_ref10_fe_invert($out,$z) { + $out = $out|0; + $z = $z|0; + var $0 = 0, $1 = 0, $2 = 0, $exitcond = 0, $exitcond10 = 0, $exitcond11 = 0, $i$74 = 0, $i$83 = 0, $i$92 = 0, $t0 = 0, $t1 = 0, $t2 = 0, $t3 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 160|0; + $t0 = sp + 120|0; + $t1 = sp + 80|0; + $t2 = sp + 40|0; + $t3 = sp; + _crypto_sign_ed25519_ref10_fe_sq($t0,$z); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t1,$z,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t0,$t0,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t0); + _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_mul($t2,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_mul($t2,$t3,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); + $i$74 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + $0 = (($i$74) + 1)|0; + $exitcond11 = ($0|0)==(50); + if ($exitcond11) { + break; + } else { + $i$74 = $0; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t2,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t2); + $i$83 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + $1 = (($i$83) + 1)|0; + $exitcond10 = ($1|0)==(100); + if ($exitcond10) { + break; + } else { + $i$83 = $1; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t2,$t3,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + $i$92 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + $2 = (($i$92) + 1)|0; + $exitcond = ($2|0)==(50); + if ($exitcond) { + break; + } else { + $i$92 = $2; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($out,$t1,$t0); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_isnegative($f) { + $f = $f|0; + var $0 = 0, $1 = 0, $2 = 0, $s = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 32|0; + $s = sp; + _crypto_sign_ed25519_ref10_fe_tobytes($s,$f); + $0 = HEAP8[$s>>0]|0; + $1 = $0&255; + $2 = $1 & 1; + STACKTOP = sp;return ($2|0); +} +function _crypto_sign_ed25519_ref10_fe_isnonzero($f) { + $f = $f|0; + var $0 = 0, $s = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 32|0; + $s = sp; + _crypto_sign_ed25519_ref10_fe_tobytes($s,$f); + $0 = (_crypto_verify_32_ref($s,8)|0); + STACKTOP = sp;return ($0|0); +} +function _crypto_sign_ed25519_ref10_fe_mul($h,$f,$g) { + $h = $h|0; + $f = $f|0; + $g = $g|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; + var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; + var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; + var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; + var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; + var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; + var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; + var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0; + var $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0; + var $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0; + var $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0; + var $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0; + var $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0; + var $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0; + var $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0; + var $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0; + var $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0; + var $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0; + var $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0; + var $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0; + var $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = HEAP32[$g>>2]|0; + $20 = (($g) + 4|0); + $21 = HEAP32[$20>>2]|0; + $22 = (($g) + 8|0); + $23 = HEAP32[$22>>2]|0; + $24 = (($g) + 12|0); + $25 = HEAP32[$24>>2]|0; + $26 = (($g) + 16|0); + $27 = HEAP32[$26>>2]|0; + $28 = (($g) + 20|0); + $29 = HEAP32[$28>>2]|0; + $30 = (($g) + 24|0); + $31 = HEAP32[$30>>2]|0; + $32 = (($g) + 28|0); + $33 = HEAP32[$32>>2]|0; + $34 = (($g) + 32|0); + $35 = HEAP32[$34>>2]|0; + $36 = (($g) + 36|0); + $37 = HEAP32[$36>>2]|0; + $38 = ($21*19)|0; + $39 = ($23*19)|0; + $40 = ($25*19)|0; + $41 = ($27*19)|0; + $42 = ($29*19)|0; + $43 = ($31*19)|0; + $44 = ($33*19)|0; + $45 = ($35*19)|0; + $46 = ($37*19)|0; + $47 = $2 << 1; + $48 = $6 << 1; + $49 = $10 << 1; + $50 = $14 << 1; + $51 = $18 << 1; + $52 = ($0|0)<(0); + $53 = $52 << 31 >> 31; + $54 = ($19|0)<(0); + $55 = $54 << 31 >> 31; + $56 = (___muldi3(($19|0),($55|0),($0|0),($53|0))|0); + $57 = tempRet0; + $58 = ($21|0)<(0); + $59 = $58 << 31 >> 31; + $60 = (___muldi3(($21|0),($59|0),($0|0),($53|0))|0); + $61 = tempRet0; + $62 = ($23|0)<(0); + $63 = $62 << 31 >> 31; + $64 = (___muldi3(($23|0),($63|0),($0|0),($53|0))|0); + $65 = tempRet0; + $66 = ($25|0)<(0); + $67 = $66 << 31 >> 31; + $68 = (___muldi3(($25|0),($67|0),($0|0),($53|0))|0); + $69 = tempRet0; + $70 = ($27|0)<(0); + $71 = $70 << 31 >> 31; + $72 = (___muldi3(($27|0),($71|0),($0|0),($53|0))|0); + $73 = tempRet0; + $74 = ($29|0)<(0); + $75 = $74 << 31 >> 31; + $76 = (___muldi3(($29|0),($75|0),($0|0),($53|0))|0); + $77 = tempRet0; + $78 = ($31|0)<(0); + $79 = $78 << 31 >> 31; + $80 = (___muldi3(($31|0),($79|0),($0|0),($53|0))|0); + $81 = tempRet0; + $82 = ($33|0)<(0); + $83 = $82 << 31 >> 31; + $84 = (___muldi3(($33|0),($83|0),($0|0),($53|0))|0); + $85 = tempRet0; + $86 = ($35|0)<(0); + $87 = $86 << 31 >> 31; + $88 = (___muldi3(($35|0),($87|0),($0|0),($53|0))|0); + $89 = tempRet0; + $90 = ($37|0)<(0); + $91 = $90 << 31 >> 31; + $92 = (___muldi3(($37|0),($91|0),($0|0),($53|0))|0); + $93 = tempRet0; + $94 = ($2|0)<(0); + $95 = $94 << 31 >> 31; + $96 = (___muldi3(($19|0),($55|0),($2|0),($95|0))|0); + $97 = tempRet0; + $98 = ($47|0)<(0); + $99 = $98 << 31 >> 31; + $100 = (___muldi3(($21|0),($59|0),($47|0),($99|0))|0); + $101 = tempRet0; + $102 = (___muldi3(($23|0),($63|0),($2|0),($95|0))|0); + $103 = tempRet0; + $104 = (___muldi3(($25|0),($67|0),($47|0),($99|0))|0); + $105 = tempRet0; + $106 = (___muldi3(($27|0),($71|0),($2|0),($95|0))|0); + $107 = tempRet0; + $108 = (___muldi3(($29|0),($75|0),($47|0),($99|0))|0); + $109 = tempRet0; + $110 = (___muldi3(($31|0),($79|0),($2|0),($95|0))|0); + $111 = tempRet0; + $112 = (___muldi3(($33|0),($83|0),($47|0),($99|0))|0); + $113 = tempRet0; + $114 = (___muldi3(($35|0),($87|0),($2|0),($95|0))|0); + $115 = tempRet0; + $116 = ($46|0)<(0); + $117 = $116 << 31 >> 31; + $118 = (___muldi3(($46|0),($117|0),($47|0),($99|0))|0); + $119 = tempRet0; + $120 = ($4|0)<(0); + $121 = $120 << 31 >> 31; + $122 = (___muldi3(($19|0),($55|0),($4|0),($121|0))|0); + $123 = tempRet0; + $124 = (___muldi3(($21|0),($59|0),($4|0),($121|0))|0); + $125 = tempRet0; + $126 = (___muldi3(($23|0),($63|0),($4|0),($121|0))|0); + $127 = tempRet0; + $128 = (___muldi3(($25|0),($67|0),($4|0),($121|0))|0); + $129 = tempRet0; + $130 = (___muldi3(($27|0),($71|0),($4|0),($121|0))|0); + $131 = tempRet0; + $132 = (___muldi3(($29|0),($75|0),($4|0),($121|0))|0); + $133 = tempRet0; + $134 = (___muldi3(($31|0),($79|0),($4|0),($121|0))|0); + $135 = tempRet0; + $136 = (___muldi3(($33|0),($83|0),($4|0),($121|0))|0); + $137 = tempRet0; + $138 = ($45|0)<(0); + $139 = $138 << 31 >> 31; + $140 = (___muldi3(($45|0),($139|0),($4|0),($121|0))|0); + $141 = tempRet0; + $142 = (___muldi3(($46|0),($117|0),($4|0),($121|0))|0); + $143 = tempRet0; + $144 = ($6|0)<(0); + $145 = $144 << 31 >> 31; + $146 = (___muldi3(($19|0),($55|0),($6|0),($145|0))|0); + $147 = tempRet0; + $148 = ($48|0)<(0); + $149 = $148 << 31 >> 31; + $150 = (___muldi3(($21|0),($59|0),($48|0),($149|0))|0); + $151 = tempRet0; + $152 = (___muldi3(($23|0),($63|0),($6|0),($145|0))|0); + $153 = tempRet0; + $154 = (___muldi3(($25|0),($67|0),($48|0),($149|0))|0); + $155 = tempRet0; + $156 = (___muldi3(($27|0),($71|0),($6|0),($145|0))|0); + $157 = tempRet0; + $158 = (___muldi3(($29|0),($75|0),($48|0),($149|0))|0); + $159 = tempRet0; + $160 = (___muldi3(($31|0),($79|0),($6|0),($145|0))|0); + $161 = tempRet0; + $162 = ($44|0)<(0); + $163 = $162 << 31 >> 31; + $164 = (___muldi3(($44|0),($163|0),($48|0),($149|0))|0); + $165 = tempRet0; + $166 = (___muldi3(($45|0),($139|0),($6|0),($145|0))|0); + $167 = tempRet0; + $168 = (___muldi3(($46|0),($117|0),($48|0),($149|0))|0); + $169 = tempRet0; + $170 = ($8|0)<(0); + $171 = $170 << 31 >> 31; + $172 = (___muldi3(($19|0),($55|0),($8|0),($171|0))|0); + $173 = tempRet0; + $174 = (___muldi3(($21|0),($59|0),($8|0),($171|0))|0); + $175 = tempRet0; + $176 = (___muldi3(($23|0),($63|0),($8|0),($171|0))|0); + $177 = tempRet0; + $178 = (___muldi3(($25|0),($67|0),($8|0),($171|0))|0); + $179 = tempRet0; + $180 = (___muldi3(($27|0),($71|0),($8|0),($171|0))|0); + $181 = tempRet0; + $182 = (___muldi3(($29|0),($75|0),($8|0),($171|0))|0); + $183 = tempRet0; + $184 = ($43|0)<(0); + $185 = $184 << 31 >> 31; + $186 = (___muldi3(($43|0),($185|0),($8|0),($171|0))|0); + $187 = tempRet0; + $188 = (___muldi3(($44|0),($163|0),($8|0),($171|0))|0); + $189 = tempRet0; + $190 = (___muldi3(($45|0),($139|0),($8|0),($171|0))|0); + $191 = tempRet0; + $192 = (___muldi3(($46|0),($117|0),($8|0),($171|0))|0); + $193 = tempRet0; + $194 = ($10|0)<(0); + $195 = $194 << 31 >> 31; + $196 = (___muldi3(($19|0),($55|0),($10|0),($195|0))|0); + $197 = tempRet0; + $198 = ($49|0)<(0); + $199 = $198 << 31 >> 31; + $200 = (___muldi3(($21|0),($59|0),($49|0),($199|0))|0); + $201 = tempRet0; + $202 = (___muldi3(($23|0),($63|0),($10|0),($195|0))|0); + $203 = tempRet0; + $204 = (___muldi3(($25|0),($67|0),($49|0),($199|0))|0); + $205 = tempRet0; + $206 = (___muldi3(($27|0),($71|0),($10|0),($195|0))|0); + $207 = tempRet0; + $208 = ($42|0)<(0); + $209 = $208 << 31 >> 31; + $210 = (___muldi3(($42|0),($209|0),($49|0),($199|0))|0); + $211 = tempRet0; + $212 = (___muldi3(($43|0),($185|0),($10|0),($195|0))|0); + $213 = tempRet0; + $214 = (___muldi3(($44|0),($163|0),($49|0),($199|0))|0); + $215 = tempRet0; + $216 = (___muldi3(($45|0),($139|0),($10|0),($195|0))|0); + $217 = tempRet0; + $218 = (___muldi3(($46|0),($117|0),($49|0),($199|0))|0); + $219 = tempRet0; + $220 = ($12|0)<(0); + $221 = $220 << 31 >> 31; + $222 = (___muldi3(($19|0),($55|0),($12|0),($221|0))|0); + $223 = tempRet0; + $224 = (___muldi3(($21|0),($59|0),($12|0),($221|0))|0); + $225 = tempRet0; + $226 = (___muldi3(($23|0),($63|0),($12|0),($221|0))|0); + $227 = tempRet0; + $228 = (___muldi3(($25|0),($67|0),($12|0),($221|0))|0); + $229 = tempRet0; + $230 = ($41|0)<(0); + $231 = $230 << 31 >> 31; + $232 = (___muldi3(($41|0),($231|0),($12|0),($221|0))|0); + $233 = tempRet0; + $234 = (___muldi3(($42|0),($209|0),($12|0),($221|0))|0); + $235 = tempRet0; + $236 = (___muldi3(($43|0),($185|0),($12|0),($221|0))|0); + $237 = tempRet0; + $238 = (___muldi3(($44|0),($163|0),($12|0),($221|0))|0); + $239 = tempRet0; + $240 = (___muldi3(($45|0),($139|0),($12|0),($221|0))|0); + $241 = tempRet0; + $242 = (___muldi3(($46|0),($117|0),($12|0),($221|0))|0); + $243 = tempRet0; + $244 = ($14|0)<(0); + $245 = $244 << 31 >> 31; + $246 = (___muldi3(($19|0),($55|0),($14|0),($245|0))|0); + $247 = tempRet0; + $248 = ($50|0)<(0); + $249 = $248 << 31 >> 31; + $250 = (___muldi3(($21|0),($59|0),($50|0),($249|0))|0); + $251 = tempRet0; + $252 = (___muldi3(($23|0),($63|0),($14|0),($245|0))|0); + $253 = tempRet0; + $254 = ($40|0)<(0); + $255 = $254 << 31 >> 31; + $256 = (___muldi3(($40|0),($255|0),($50|0),($249|0))|0); + $257 = tempRet0; + $258 = (___muldi3(($41|0),($231|0),($14|0),($245|0))|0); + $259 = tempRet0; + $260 = (___muldi3(($42|0),($209|0),($50|0),($249|0))|0); + $261 = tempRet0; + $262 = (___muldi3(($43|0),($185|0),($14|0),($245|0))|0); + $263 = tempRet0; + $264 = (___muldi3(($44|0),($163|0),($50|0),($249|0))|0); + $265 = tempRet0; + $266 = (___muldi3(($45|0),($139|0),($14|0),($245|0))|0); + $267 = tempRet0; + $268 = (___muldi3(($46|0),($117|0),($50|0),($249|0))|0); + $269 = tempRet0; + $270 = ($16|0)<(0); + $271 = $270 << 31 >> 31; + $272 = (___muldi3(($19|0),($55|0),($16|0),($271|0))|0); + $273 = tempRet0; + $274 = (___muldi3(($21|0),($59|0),($16|0),($271|0))|0); + $275 = tempRet0; + $276 = ($39|0)<(0); + $277 = $276 << 31 >> 31; + $278 = (___muldi3(($39|0),($277|0),($16|0),($271|0))|0); + $279 = tempRet0; + $280 = (___muldi3(($40|0),($255|0),($16|0),($271|0))|0); + $281 = tempRet0; + $282 = (___muldi3(($41|0),($231|0),($16|0),($271|0))|0); + $283 = tempRet0; + $284 = (___muldi3(($42|0),($209|0),($16|0),($271|0))|0); + $285 = tempRet0; + $286 = (___muldi3(($43|0),($185|0),($16|0),($271|0))|0); + $287 = tempRet0; + $288 = (___muldi3(($44|0),($163|0),($16|0),($271|0))|0); + $289 = tempRet0; + $290 = (___muldi3(($45|0),($139|0),($16|0),($271|0))|0); + $291 = tempRet0; + $292 = (___muldi3(($46|0),($117|0),($16|0),($271|0))|0); + $293 = tempRet0; + $294 = ($18|0)<(0); + $295 = $294 << 31 >> 31; + $296 = (___muldi3(($19|0),($55|0),($18|0),($295|0))|0); + $297 = tempRet0; + $298 = ($51|0)<(0); + $299 = $298 << 31 >> 31; + $300 = ($38|0)<(0); + $301 = $300 << 31 >> 31; + $302 = (___muldi3(($38|0),($301|0),($51|0),($299|0))|0); + $303 = tempRet0; + $304 = (___muldi3(($39|0),($277|0),($18|0),($295|0))|0); + $305 = tempRet0; + $306 = (___muldi3(($40|0),($255|0),($51|0),($299|0))|0); + $307 = tempRet0; + $308 = (___muldi3(($41|0),($231|0),($18|0),($295|0))|0); + $309 = tempRet0; + $310 = (___muldi3(($42|0),($209|0),($51|0),($299|0))|0); + $311 = tempRet0; + $312 = (___muldi3(($43|0),($185|0),($18|0),($295|0))|0); + $313 = tempRet0; + $314 = (___muldi3(($44|0),($163|0),($51|0),($299|0))|0); + $315 = tempRet0; + $316 = (___muldi3(($45|0),($139|0),($18|0),($295|0))|0); + $317 = tempRet0; + $318 = (___muldi3(($46|0),($117|0),($51|0),($299|0))|0); + $319 = tempRet0; + $320 = (_i64Add(($302|0),($303|0),($56|0),($57|0))|0); + $321 = tempRet0; + $322 = (_i64Add(($320|0),($321|0),($278|0),($279|0))|0); + $323 = tempRet0; + $324 = (_i64Add(($322|0),($323|0),($256|0),($257|0))|0); + $325 = tempRet0; + $326 = (_i64Add(($324|0),($325|0),($232|0),($233|0))|0); + $327 = tempRet0; + $328 = (_i64Add(($326|0),($327|0),($210|0),($211|0))|0); + $329 = tempRet0; + $330 = (_i64Add(($328|0),($329|0),($186|0),($187|0))|0); + $331 = tempRet0; + $332 = (_i64Add(($330|0),($331|0),($164|0),($165|0))|0); + $333 = tempRet0; + $334 = (_i64Add(($332|0),($333|0),($140|0),($141|0))|0); + $335 = tempRet0; + $336 = (_i64Add(($334|0),($335|0),($118|0),($119|0))|0); + $337 = tempRet0; + $338 = (_i64Add(($60|0),($61|0),($96|0),($97|0))|0); + $339 = tempRet0; + $340 = (_i64Add(($150|0),($151|0),($172|0),($173|0))|0); + $341 = tempRet0; + $342 = (_i64Add(($340|0),($341|0),($126|0),($127|0))|0); + $343 = tempRet0; + $344 = (_i64Add(($342|0),($343|0),($104|0),($105|0))|0); + $345 = tempRet0; + $346 = (_i64Add(($344|0),($345|0),($72|0),($73|0))|0); + $347 = tempRet0; + $348 = (_i64Add(($346|0),($347|0),($310|0),($311|0))|0); + $349 = tempRet0; + $350 = (_i64Add(($348|0),($349|0),($286|0),($287|0))|0); + $351 = tempRet0; + $352 = (_i64Add(($350|0),($351|0),($264|0),($265|0))|0); + $353 = tempRet0; + $354 = (_i64Add(($352|0),($353|0),($240|0),($241|0))|0); + $355 = tempRet0; + $356 = (_i64Add(($354|0),($355|0),($218|0),($219|0))|0); + $357 = tempRet0; + $358 = (_i64Add(($336|0),($337|0),33554432,0)|0); + $359 = tempRet0; + $360 = (_bitshift64Ashr(($358|0),($359|0),26)|0); + $361 = tempRet0; + $362 = (_i64Add(($338|0),($339|0),($304|0),($305|0))|0); + $363 = tempRet0; + $364 = (_i64Add(($362|0),($363|0),($280|0),($281|0))|0); + $365 = tempRet0; + $366 = (_i64Add(($364|0),($365|0),($258|0),($259|0))|0); + $367 = tempRet0; + $368 = (_i64Add(($366|0),($367|0),($234|0),($235|0))|0); + $369 = tempRet0; + $370 = (_i64Add(($368|0),($369|0),($212|0),($213|0))|0); + $371 = tempRet0; + $372 = (_i64Add(($370|0),($371|0),($188|0),($189|0))|0); + $373 = tempRet0; + $374 = (_i64Add(($372|0),($373|0),($166|0),($167|0))|0); + $375 = tempRet0; + $376 = (_i64Add(($374|0),($375|0),($142|0),($143|0))|0); + $377 = tempRet0; + $378 = (_i64Add(($376|0),($377|0),($360|0),($361|0))|0); + $379 = tempRet0; + $380 = (_bitshift64Shl(($360|0),($361|0),26)|0); + $381 = tempRet0; + $382 = (_i64Subtract(($336|0),($337|0),($380|0),($381|0))|0); + $383 = tempRet0; + $384 = (_i64Add(($356|0),($357|0),33554432,0)|0); + $385 = tempRet0; + $386 = (_bitshift64Ashr(($384|0),($385|0),26)|0); + $387 = tempRet0; + $388 = (_i64Add(($174|0),($175|0),($196|0),($197|0))|0); + $389 = tempRet0; + $390 = (_i64Add(($388|0),($389|0),($152|0),($153|0))|0); + $391 = tempRet0; + $392 = (_i64Add(($390|0),($391|0),($128|0),($129|0))|0); + $393 = tempRet0; + $394 = (_i64Add(($392|0),($393|0),($106|0),($107|0))|0); + $395 = tempRet0; + $396 = (_i64Add(($394|0),($395|0),($76|0),($77|0))|0); + $397 = tempRet0; + $398 = (_i64Add(($396|0),($397|0),($312|0),($313|0))|0); + $399 = tempRet0; + $400 = (_i64Add(($398|0),($399|0),($288|0),($289|0))|0); + $401 = tempRet0; + $402 = (_i64Add(($400|0),($401|0),($266|0),($267|0))|0); + $403 = tempRet0; + $404 = (_i64Add(($402|0),($403|0),($242|0),($243|0))|0); + $405 = tempRet0; + $406 = (_i64Add(($404|0),($405|0),($386|0),($387|0))|0); + $407 = tempRet0; + $408 = (_bitshift64Shl(($386|0),($387|0),26)|0); + $409 = tempRet0; + $410 = (_i64Subtract(($356|0),($357|0),($408|0),($409|0))|0); + $411 = tempRet0; + $412 = (_i64Add(($378|0),($379|0),16777216,0)|0); + $413 = tempRet0; + $414 = (_bitshift64Ashr(($412|0),($413|0),25)|0); + $415 = tempRet0; + $416 = (_i64Add(($100|0),($101|0),($122|0),($123|0))|0); + $417 = tempRet0; + $418 = (_i64Add(($416|0),($417|0),($64|0),($65|0))|0); + $419 = tempRet0; + $420 = (_i64Add(($418|0),($419|0),($306|0),($307|0))|0); + $421 = tempRet0; + $422 = (_i64Add(($420|0),($421|0),($282|0),($283|0))|0); + $423 = tempRet0; + $424 = (_i64Add(($422|0),($423|0),($260|0),($261|0))|0); + $425 = tempRet0; + $426 = (_i64Add(($424|0),($425|0),($236|0),($237|0))|0); + $427 = tempRet0; + $428 = (_i64Add(($426|0),($427|0),($214|0),($215|0))|0); + $429 = tempRet0; + $430 = (_i64Add(($428|0),($429|0),($190|0),($191|0))|0); + $431 = tempRet0; + $432 = (_i64Add(($430|0),($431|0),($168|0),($169|0))|0); + $433 = tempRet0; + $434 = (_i64Add(($432|0),($433|0),($414|0),($415|0))|0); + $435 = tempRet0; + $436 = (_bitshift64Shl(($414|0),($415|0),25)|0); + $437 = tempRet0; + $438 = (_i64Subtract(($378|0),($379|0),($436|0),($437|0))|0); + $439 = tempRet0; + $440 = (_i64Add(($406|0),($407|0),16777216,0)|0); + $441 = tempRet0; + $442 = (_bitshift64Ashr(($440|0),($441|0),25)|0); + $443 = tempRet0; + $444 = (_i64Add(($200|0),($201|0),($222|0),($223|0))|0); + $445 = tempRet0; + $446 = (_i64Add(($444|0),($445|0),($176|0),($177|0))|0); + $447 = tempRet0; + $448 = (_i64Add(($446|0),($447|0),($154|0),($155|0))|0); + $449 = tempRet0; + $450 = (_i64Add(($448|0),($449|0),($130|0),($131|0))|0); + $451 = tempRet0; + $452 = (_i64Add(($450|0),($451|0),($108|0),($109|0))|0); + $453 = tempRet0; + $454 = (_i64Add(($452|0),($453|0),($80|0),($81|0))|0); + $455 = tempRet0; + $456 = (_i64Add(($454|0),($455|0),($314|0),($315|0))|0); + $457 = tempRet0; + $458 = (_i64Add(($456|0),($457|0),($290|0),($291|0))|0); + $459 = tempRet0; + $460 = (_i64Add(($458|0),($459|0),($268|0),($269|0))|0); + $461 = tempRet0; + $462 = (_i64Add(($460|0),($461|0),($442|0),($443|0))|0); + $463 = tempRet0; + $464 = (_bitshift64Shl(($442|0),($443|0),25)|0); + $465 = tempRet0; + $466 = (_i64Subtract(($406|0),($407|0),($464|0),($465|0))|0); + $467 = tempRet0; + $468 = (_i64Add(($434|0),($435|0),33554432,0)|0); + $469 = tempRet0; + $470 = (_bitshift64Ashr(($468|0),($469|0),26)|0); + $471 = tempRet0; + $472 = (_i64Add(($124|0),($125|0),($146|0),($147|0))|0); + $473 = tempRet0; + $474 = (_i64Add(($472|0),($473|0),($102|0),($103|0))|0); + $475 = tempRet0; + $476 = (_i64Add(($474|0),($475|0),($68|0),($69|0))|0); + $477 = tempRet0; + $478 = (_i64Add(($476|0),($477|0),($308|0),($309|0))|0); + $479 = tempRet0; + $480 = (_i64Add(($478|0),($479|0),($284|0),($285|0))|0); + $481 = tempRet0; + $482 = (_i64Add(($480|0),($481|0),($262|0),($263|0))|0); + $483 = tempRet0; + $484 = (_i64Add(($482|0),($483|0),($238|0),($239|0))|0); + $485 = tempRet0; + $486 = (_i64Add(($484|0),($485|0),($216|0),($217|0))|0); + $487 = tempRet0; + $488 = (_i64Add(($486|0),($487|0),($192|0),($193|0))|0); + $489 = tempRet0; + $490 = (_i64Add(($488|0),($489|0),($470|0),($471|0))|0); + $491 = tempRet0; + $492 = (_bitshift64Shl(($470|0),($471|0),26)|0); + $493 = tempRet0; + $494 = (_i64Subtract(($434|0),($435|0),($492|0),($493|0))|0); + $495 = tempRet0; + $496 = (_i64Add(($462|0),($463|0),33554432,0)|0); + $497 = tempRet0; + $498 = (_bitshift64Ashr(($496|0),($497|0),26)|0); + $499 = tempRet0; + $500 = (_i64Add(($224|0),($225|0),($246|0),($247|0))|0); + $501 = tempRet0; + $502 = (_i64Add(($500|0),($501|0),($202|0),($203|0))|0); + $503 = tempRet0; + $504 = (_i64Add(($502|0),($503|0),($178|0),($179|0))|0); + $505 = tempRet0; + $506 = (_i64Add(($504|0),($505|0),($156|0),($157|0))|0); + $507 = tempRet0; + $508 = (_i64Add(($506|0),($507|0),($132|0),($133|0))|0); + $509 = tempRet0; + $510 = (_i64Add(($508|0),($509|0),($110|0),($111|0))|0); + $511 = tempRet0; + $512 = (_i64Add(($510|0),($511|0),($84|0),($85|0))|0); + $513 = tempRet0; + $514 = (_i64Add(($512|0),($513|0),($316|0),($317|0))|0); + $515 = tempRet0; + $516 = (_i64Add(($514|0),($515|0),($292|0),($293|0))|0); + $517 = tempRet0; + $518 = (_i64Add(($516|0),($517|0),($498|0),($499|0))|0); + $519 = tempRet0; + $520 = (_bitshift64Shl(($498|0),($499|0),26)|0); + $521 = tempRet0; + $522 = (_i64Subtract(($462|0),($463|0),($520|0),($521|0))|0); + $523 = tempRet0; + $524 = (_i64Add(($490|0),($491|0),16777216,0)|0); + $525 = tempRet0; + $526 = (_bitshift64Ashr(($524|0),($525|0),25)|0); + $527 = tempRet0; + $528 = (_i64Add(($526|0),($527|0),($410|0),($411|0))|0); + $529 = tempRet0; + $530 = (_bitshift64Shl(($526|0),($527|0),25)|0); + $531 = tempRet0; + $532 = (_i64Subtract(($490|0),($491|0),($530|0),($531|0))|0); + $533 = tempRet0; + $534 = (_i64Add(($518|0),($519|0),16777216,0)|0); + $535 = tempRet0; + $536 = (_bitshift64Ashr(($534|0),($535|0),25)|0); + $537 = tempRet0; + $538 = (_i64Add(($250|0),($251|0),($272|0),($273|0))|0); + $539 = tempRet0; + $540 = (_i64Add(($538|0),($539|0),($226|0),($227|0))|0); + $541 = tempRet0; + $542 = (_i64Add(($540|0),($541|0),($204|0),($205|0))|0); + $543 = tempRet0; + $544 = (_i64Add(($542|0),($543|0),($180|0),($181|0))|0); + $545 = tempRet0; + $546 = (_i64Add(($544|0),($545|0),($158|0),($159|0))|0); + $547 = tempRet0; + $548 = (_i64Add(($546|0),($547|0),($134|0),($135|0))|0); + $549 = tempRet0; + $550 = (_i64Add(($548|0),($549|0),($112|0),($113|0))|0); + $551 = tempRet0; + $552 = (_i64Add(($550|0),($551|0),($88|0),($89|0))|0); + $553 = tempRet0; + $554 = (_i64Add(($552|0),($553|0),($318|0),($319|0))|0); + $555 = tempRet0; + $556 = (_i64Add(($554|0),($555|0),($536|0),($537|0))|0); + $557 = tempRet0; + $558 = (_bitshift64Shl(($536|0),($537|0),25)|0); + $559 = tempRet0; + $560 = (_i64Subtract(($518|0),($519|0),($558|0),($559|0))|0); + $561 = tempRet0; + $562 = (_i64Add(($528|0),($529|0),33554432,0)|0); + $563 = tempRet0; + $564 = (_bitshift64Ashr(($562|0),($563|0),26)|0); + $565 = tempRet0; + $566 = (_i64Add(($466|0),($467|0),($564|0),($565|0))|0); + $567 = tempRet0; + $568 = (_bitshift64Shl(($564|0),($565|0),26)|0); + $569 = tempRet0; + $570 = (_i64Subtract(($528|0),($529|0),($568|0),($569|0))|0); + $571 = tempRet0; + $572 = (_i64Add(($556|0),($557|0),33554432,0)|0); + $573 = tempRet0; + $574 = (_bitshift64Ashr(($572|0),($573|0),26)|0); + $575 = tempRet0; + $576 = (_i64Add(($274|0),($275|0),($296|0),($297|0))|0); + $577 = tempRet0; + $578 = (_i64Add(($576|0),($577|0),($252|0),($253|0))|0); + $579 = tempRet0; + $580 = (_i64Add(($578|0),($579|0),($228|0),($229|0))|0); + $581 = tempRet0; + $582 = (_i64Add(($580|0),($581|0),($206|0),($207|0))|0); + $583 = tempRet0; + $584 = (_i64Add(($582|0),($583|0),($182|0),($183|0))|0); + $585 = tempRet0; + $586 = (_i64Add(($584|0),($585|0),($160|0),($161|0))|0); + $587 = tempRet0; + $588 = (_i64Add(($586|0),($587|0),($136|0),($137|0))|0); + $589 = tempRet0; + $590 = (_i64Add(($588|0),($589|0),($114|0),($115|0))|0); + $591 = tempRet0; + $592 = (_i64Add(($590|0),($591|0),($92|0),($93|0))|0); + $593 = tempRet0; + $594 = (_i64Add(($592|0),($593|0),($574|0),($575|0))|0); + $595 = tempRet0; + $596 = (_bitshift64Shl(($574|0),($575|0),26)|0); + $597 = tempRet0; + $598 = (_i64Subtract(($556|0),($557|0),($596|0),($597|0))|0); + $599 = tempRet0; + $600 = (_i64Add(($594|0),($595|0),16777216,0)|0); + $601 = tempRet0; + $602 = (_bitshift64Ashr(($600|0),($601|0),25)|0); + $603 = tempRet0; + $604 = (___muldi3(($602|0),($603|0),19,0)|0); + $605 = tempRet0; + $606 = (_i64Add(($604|0),($605|0),($382|0),($383|0))|0); + $607 = tempRet0; + $608 = (_bitshift64Shl(($602|0),($603|0),25)|0); + $609 = tempRet0; + $610 = (_i64Subtract(($594|0),($595|0),($608|0),($609|0))|0); + $611 = tempRet0; + $612 = (_i64Add(($606|0),($607|0),33554432,0)|0); + $613 = tempRet0; + $614 = (_bitshift64Ashr(($612|0),($613|0),26)|0); + $615 = tempRet0; + $616 = (_i64Add(($438|0),($439|0),($614|0),($615|0))|0); + $617 = tempRet0; + $618 = (_bitshift64Shl(($614|0),($615|0),26)|0); + $619 = tempRet0; + $620 = (_i64Subtract(($606|0),($607|0),($618|0),($619|0))|0); + $621 = tempRet0; + HEAP32[$h>>2] = $620; + $622 = (($h) + 4|0); + HEAP32[$622>>2] = $616; + $623 = (($h) + 8|0); + HEAP32[$623>>2] = $494; + $624 = (($h) + 12|0); + HEAP32[$624>>2] = $532; + $625 = (($h) + 16|0); + HEAP32[$625>>2] = $570; + $626 = (($h) + 20|0); + HEAP32[$626>>2] = $566; + $627 = (($h) + 24|0); + HEAP32[$627>>2] = $522; + $628 = (($h) + 28|0); + HEAP32[$628>>2] = $560; + $629 = (($h) + 32|0); + HEAP32[$629>>2] = $598; + $630 = (($h) + 36|0); + HEAP32[$630>>2] = $610; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_neg($h,$f) { + $h = $h|0; + $f = $f|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = (0 - ($0))|0; + $20 = (0 - ($2))|0; + $21 = (0 - ($4))|0; + $22 = (0 - ($6))|0; + $23 = (0 - ($8))|0; + $24 = (0 - ($10))|0; + $25 = (0 - ($12))|0; + $26 = (0 - ($14))|0; + $27 = (0 - ($16))|0; + $28 = (0 - ($18))|0; + HEAP32[$h>>2] = $19; + $29 = (($h) + 4|0); + HEAP32[$29>>2] = $20; + $30 = (($h) + 8|0); + HEAP32[$30>>2] = $21; + $31 = (($h) + 12|0); + HEAP32[$31>>2] = $22; + $32 = (($h) + 16|0); + HEAP32[$32>>2] = $23; + $33 = (($h) + 20|0); + HEAP32[$33>>2] = $24; + $34 = (($h) + 24|0); + HEAP32[$34>>2] = $25; + $35 = (($h) + 28|0); + HEAP32[$35>>2] = $26; + $36 = (($h) + 32|0); + HEAP32[$36>>2] = $27; + $37 = (($h) + 36|0); + HEAP32[$37>>2] = $28; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_pow22523($out,$z) { + $out = $out|0; + $z = $z|0; + var $0 = 0, $1 = 0, $2 = 0, $exitcond = 0, $exitcond10 = 0, $exitcond11 = 0, $i$74 = 0, $i$83 = 0, $i$92 = 0, $t0 = 0, $t1 = 0, $t2 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $t0 = sp + 80|0; + $t1 = sp + 40|0; + $t2 = sp; + _crypto_sign_ed25519_ref10_fe_sq($t0,$z); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t1,$z,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t0,$t0,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); + _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); + $i$74 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + $0 = (($i$74) + 1)|0; + $exitcond11 = ($0|0)==(50); + if ($exitcond11) { + break; + } else { + $i$74 = $0; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); + $i$83 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + $1 = (($i$83) + 1)|0; + $exitcond10 = ($1|0)==(100); + if ($exitcond10) { + break; + } else { + $i$83 = $1; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + $i$92 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + $2 = (($i$92) + 1)|0; + $exitcond = ($2|0)==(50); + if ($exitcond) { + break; + } else { + $i$92 = $2; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); + _crypto_sign_ed25519_ref10_fe_mul($out,$t0,$z); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_sq($h,$f) { + $h = $h|0; + $f = $f|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; + var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; + var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; + var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; + var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; + var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; + var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; + var $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0; + var $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0; + var $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = $0 << 1; + $20 = $2 << 1; + $21 = $4 << 1; + $22 = $6 << 1; + $23 = $8 << 1; + $24 = $10 << 1; + $25 = $12 << 1; + $26 = $14 << 1; + $27 = ($10*38)|0; + $28 = ($12*19)|0; + $29 = ($14*38)|0; + $30 = ($16*19)|0; + $31 = ($18*38)|0; + $32 = ($0|0)<(0); + $33 = $32 << 31 >> 31; + $34 = (___muldi3(($0|0),($33|0),($0|0),($33|0))|0); + $35 = tempRet0; + $36 = ($19|0)<(0); + $37 = $36 << 31 >> 31; + $38 = ($2|0)<(0); + $39 = $38 << 31 >> 31; + $40 = (___muldi3(($19|0),($37|0),($2|0),($39|0))|0); + $41 = tempRet0; + $42 = ($4|0)<(0); + $43 = $42 << 31 >> 31; + $44 = (___muldi3(($4|0),($43|0),($19|0),($37|0))|0); + $45 = tempRet0; + $46 = ($6|0)<(0); + $47 = $46 << 31 >> 31; + $48 = (___muldi3(($6|0),($47|0),($19|0),($37|0))|0); + $49 = tempRet0; + $50 = ($8|0)<(0); + $51 = $50 << 31 >> 31; + $52 = (___muldi3(($8|0),($51|0),($19|0),($37|0))|0); + $53 = tempRet0; + $54 = ($10|0)<(0); + $55 = $54 << 31 >> 31; + $56 = (___muldi3(($10|0),($55|0),($19|0),($37|0))|0); + $57 = tempRet0; + $58 = ($12|0)<(0); + $59 = $58 << 31 >> 31; + $60 = (___muldi3(($12|0),($59|0),($19|0),($37|0))|0); + $61 = tempRet0; + $62 = ($14|0)<(0); + $63 = $62 << 31 >> 31; + $64 = (___muldi3(($14|0),($63|0),($19|0),($37|0))|0); + $65 = tempRet0; + $66 = ($16|0)<(0); + $67 = $66 << 31 >> 31; + $68 = (___muldi3(($16|0),($67|0),($19|0),($37|0))|0); + $69 = tempRet0; + $70 = ($18|0)<(0); + $71 = $70 << 31 >> 31; + $72 = (___muldi3(($18|0),($71|0),($19|0),($37|0))|0); + $73 = tempRet0; + $74 = ($20|0)<(0); + $75 = $74 << 31 >> 31; + $76 = (___muldi3(($20|0),($75|0),($2|0),($39|0))|0); + $77 = tempRet0; + $78 = (___muldi3(($20|0),($75|0),($4|0),($43|0))|0); + $79 = tempRet0; + $80 = ($22|0)<(0); + $81 = $80 << 31 >> 31; + $82 = (___muldi3(($22|0),($81|0),($20|0),($75|0))|0); + $83 = tempRet0; + $84 = (___muldi3(($8|0),($51|0),($20|0),($75|0))|0); + $85 = tempRet0; + $86 = ($24|0)<(0); + $87 = $86 << 31 >> 31; + $88 = (___muldi3(($24|0),($87|0),($20|0),($75|0))|0); + $89 = tempRet0; + $90 = (___muldi3(($12|0),($59|0),($20|0),($75|0))|0); + $91 = tempRet0; + $92 = ($26|0)<(0); + $93 = $92 << 31 >> 31; + $94 = (___muldi3(($26|0),($93|0),($20|0),($75|0))|0); + $95 = tempRet0; + $96 = (___muldi3(($16|0),($67|0),($20|0),($75|0))|0); + $97 = tempRet0; + $98 = ($31|0)<(0); + $99 = $98 << 31 >> 31; + $100 = (___muldi3(($31|0),($99|0),($20|0),($75|0))|0); + $101 = tempRet0; + $102 = (___muldi3(($4|0),($43|0),($4|0),($43|0))|0); + $103 = tempRet0; + $104 = ($21|0)<(0); + $105 = $104 << 31 >> 31; + $106 = (___muldi3(($21|0),($105|0),($6|0),($47|0))|0); + $107 = tempRet0; + $108 = (___muldi3(($8|0),($51|0),($21|0),($105|0))|0); + $109 = tempRet0; + $110 = (___muldi3(($10|0),($55|0),($21|0),($105|0))|0); + $111 = tempRet0; + $112 = (___muldi3(($12|0),($59|0),($21|0),($105|0))|0); + $113 = tempRet0; + $114 = (___muldi3(($14|0),($63|0),($21|0),($105|0))|0); + $115 = tempRet0; + $116 = ($30|0)<(0); + $117 = $116 << 31 >> 31; + $118 = (___muldi3(($30|0),($117|0),($21|0),($105|0))|0); + $119 = tempRet0; + $120 = (___muldi3(($31|0),($99|0),($4|0),($43|0))|0); + $121 = tempRet0; + $122 = (___muldi3(($22|0),($81|0),($6|0),($47|0))|0); + $123 = tempRet0; + $124 = (___muldi3(($22|0),($81|0),($8|0),($51|0))|0); + $125 = tempRet0; + $126 = (___muldi3(($24|0),($87|0),($22|0),($81|0))|0); + $127 = tempRet0; + $128 = (___muldi3(($12|0),($59|0),($22|0),($81|0))|0); + $129 = tempRet0; + $130 = ($29|0)<(0); + $131 = $130 << 31 >> 31; + $132 = (___muldi3(($29|0),($131|0),($22|0),($81|0))|0); + $133 = tempRet0; + $134 = (___muldi3(($30|0),($117|0),($22|0),($81|0))|0); + $135 = tempRet0; + $136 = (___muldi3(($31|0),($99|0),($22|0),($81|0))|0); + $137 = tempRet0; + $138 = (___muldi3(($8|0),($51|0),($8|0),($51|0))|0); + $139 = tempRet0; + $140 = ($23|0)<(0); + $141 = $140 << 31 >> 31; + $142 = (___muldi3(($23|0),($141|0),($10|0),($55|0))|0); + $143 = tempRet0; + $144 = ($28|0)<(0); + $145 = $144 << 31 >> 31; + $146 = (___muldi3(($28|0),($145|0),($23|0),($141|0))|0); + $147 = tempRet0; + $148 = (___muldi3(($29|0),($131|0),($8|0),($51|0))|0); + $149 = tempRet0; + $150 = (___muldi3(($30|0),($117|0),($23|0),($141|0))|0); + $151 = tempRet0; + $152 = (___muldi3(($31|0),($99|0),($8|0),($51|0))|0); + $153 = tempRet0; + $154 = ($27|0)<(0); + $155 = $154 << 31 >> 31; + $156 = (___muldi3(($27|0),($155|0),($10|0),($55|0))|0); + $157 = tempRet0; + $158 = (___muldi3(($28|0),($145|0),($24|0),($87|0))|0); + $159 = tempRet0; + $160 = (___muldi3(($29|0),($131|0),($24|0),($87|0))|0); + $161 = tempRet0; + $162 = (___muldi3(($30|0),($117|0),($24|0),($87|0))|0); + $163 = tempRet0; + $164 = (___muldi3(($31|0),($99|0),($24|0),($87|0))|0); + $165 = tempRet0; + $166 = (___muldi3(($28|0),($145|0),($12|0),($59|0))|0); + $167 = tempRet0; + $168 = (___muldi3(($29|0),($131|0),($12|0),($59|0))|0); + $169 = tempRet0; + $170 = ($25|0)<(0); + $171 = $170 << 31 >> 31; + $172 = (___muldi3(($30|0),($117|0),($25|0),($171|0))|0); + $173 = tempRet0; + $174 = (___muldi3(($31|0),($99|0),($12|0),($59|0))|0); + $175 = tempRet0; + $176 = (___muldi3(($29|0),($131|0),($14|0),($63|0))|0); + $177 = tempRet0; + $178 = (___muldi3(($30|0),($117|0),($26|0),($93|0))|0); + $179 = tempRet0; + $180 = (___muldi3(($31|0),($99|0),($26|0),($93|0))|0); + $181 = tempRet0; + $182 = (___muldi3(($30|0),($117|0),($16|0),($67|0))|0); + $183 = tempRet0; + $184 = (___muldi3(($31|0),($99|0),($16|0),($67|0))|0); + $185 = tempRet0; + $186 = (___muldi3(($31|0),($99|0),($18|0),($71|0))|0); + $187 = tempRet0; + $188 = (_i64Add(($156|0),($157|0),($34|0),($35|0))|0); + $189 = tempRet0; + $190 = (_i64Add(($188|0),($189|0),($146|0),($147|0))|0); + $191 = tempRet0; + $192 = (_i64Add(($190|0),($191|0),($132|0),($133|0))|0); + $193 = tempRet0; + $194 = (_i64Add(($192|0),($193|0),($118|0),($119|0))|0); + $195 = tempRet0; + $196 = (_i64Add(($194|0),($195|0),($100|0),($101|0))|0); + $197 = tempRet0; + $198 = (_i64Add(($44|0),($45|0),($76|0),($77|0))|0); + $199 = tempRet0; + $200 = (_i64Add(($48|0),($49|0),($78|0),($79|0))|0); + $201 = tempRet0; + $202 = (_i64Add(($82|0),($83|0),($102|0),($103|0))|0); + $203 = tempRet0; + $204 = (_i64Add(($202|0),($203|0),($52|0),($53|0))|0); + $205 = tempRet0; + $206 = (_i64Add(($204|0),($205|0),($176|0),($177|0))|0); + $207 = tempRet0; + $208 = (_i64Add(($206|0),($207|0),($172|0),($173|0))|0); + $209 = tempRet0; + $210 = (_i64Add(($208|0),($209|0),($164|0),($165|0))|0); + $211 = tempRet0; + $212 = (_i64Add(($196|0),($197|0),33554432,0)|0); + $213 = tempRet0; + $214 = (_bitshift64Ashr(($212|0),($213|0),26)|0); + $215 = tempRet0; + $216 = (_i64Add(($158|0),($159|0),($40|0),($41|0))|0); + $217 = tempRet0; + $218 = (_i64Add(($216|0),($217|0),($148|0),($149|0))|0); + $219 = tempRet0; + $220 = (_i64Add(($218|0),($219|0),($134|0),($135|0))|0); + $221 = tempRet0; + $222 = (_i64Add(($220|0),($221|0),($120|0),($121|0))|0); + $223 = tempRet0; + $224 = (_i64Add(($222|0),($223|0),($214|0),($215|0))|0); + $225 = tempRet0; + $226 = (_bitshift64Shl(($214|0),($215|0),26)|0); + $227 = tempRet0; + $228 = (_i64Subtract(($196|0),($197|0),($226|0),($227|0))|0); + $229 = tempRet0; + $230 = (_i64Add(($210|0),($211|0),33554432,0)|0); + $231 = tempRet0; + $232 = (_bitshift64Ashr(($230|0),($231|0),26)|0); + $233 = tempRet0; + $234 = (_i64Add(($84|0),($85|0),($106|0),($107|0))|0); + $235 = tempRet0; + $236 = (_i64Add(($234|0),($235|0),($56|0),($57|0))|0); + $237 = tempRet0; + $238 = (_i64Add(($236|0),($237|0),($178|0),($179|0))|0); + $239 = tempRet0; + $240 = (_i64Add(($238|0),($239|0),($174|0),($175|0))|0); + $241 = tempRet0; + $242 = (_i64Add(($240|0),($241|0),($232|0),($233|0))|0); + $243 = tempRet0; + $244 = (_bitshift64Shl(($232|0),($233|0),26)|0); + $245 = tempRet0; + $246 = (_i64Subtract(($210|0),($211|0),($244|0),($245|0))|0); + $247 = tempRet0; + $248 = (_i64Add(($224|0),($225|0),16777216,0)|0); + $249 = tempRet0; + $250 = (_bitshift64Ashr(($248|0),($249|0),25)|0); + $251 = tempRet0; + $252 = (_i64Add(($198|0),($199|0),($166|0),($167|0))|0); + $253 = tempRet0; + $254 = (_i64Add(($252|0),($253|0),($160|0),($161|0))|0); + $255 = tempRet0; + $256 = (_i64Add(($254|0),($255|0),($150|0),($151|0))|0); + $257 = tempRet0; + $258 = (_i64Add(($256|0),($257|0),($136|0),($137|0))|0); + $259 = tempRet0; + $260 = (_i64Add(($258|0),($259|0),($250|0),($251|0))|0); + $261 = tempRet0; + $262 = (_bitshift64Shl(($250|0),($251|0),25)|0); + $263 = tempRet0; + $264 = (_i64Subtract(($224|0),($225|0),($262|0),($263|0))|0); + $265 = tempRet0; + $266 = (_i64Add(($242|0),($243|0),16777216,0)|0); + $267 = tempRet0; + $268 = (_bitshift64Ashr(($266|0),($267|0),25)|0); + $269 = tempRet0; + $270 = (_i64Add(($122|0),($123|0),($108|0),($109|0))|0); + $271 = tempRet0; + $272 = (_i64Add(($270|0),($271|0),($88|0),($89|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($60|0),($61|0))|0); + $275 = tempRet0; + $276 = (_i64Add(($274|0),($275|0),($182|0),($183|0))|0); + $277 = tempRet0; + $278 = (_i64Add(($276|0),($277|0),($180|0),($181|0))|0); + $279 = tempRet0; + $280 = (_i64Add(($278|0),($279|0),($268|0),($269|0))|0); + $281 = tempRet0; + $282 = (_bitshift64Shl(($268|0),($269|0),25)|0); + $283 = tempRet0; + $284 = (_i64Subtract(($242|0),($243|0),($282|0),($283|0))|0); + $285 = tempRet0; + $286 = (_i64Add(($260|0),($261|0),33554432,0)|0); + $287 = tempRet0; + $288 = (_bitshift64Ashr(($286|0),($287|0),26)|0); + $289 = tempRet0; + $290 = (_i64Add(($200|0),($201|0),($168|0),($169|0))|0); + $291 = tempRet0; + $292 = (_i64Add(($290|0),($291|0),($162|0),($163|0))|0); + $293 = tempRet0; + $294 = (_i64Add(($292|0),($293|0),($152|0),($153|0))|0); + $295 = tempRet0; + $296 = (_i64Add(($294|0),($295|0),($288|0),($289|0))|0); + $297 = tempRet0; + $298 = (_bitshift64Shl(($288|0),($289|0),26)|0); + $299 = tempRet0; + $300 = (_i64Subtract(($260|0),($261|0),($298|0),($299|0))|0); + $301 = tempRet0; + $302 = (_i64Add(($280|0),($281|0),33554432,0)|0); + $303 = tempRet0; + $304 = (_bitshift64Ashr(($302|0),($303|0),26)|0); + $305 = tempRet0; + $306 = (_i64Add(($110|0),($111|0),($124|0),($125|0))|0); + $307 = tempRet0; + $308 = (_i64Add(($306|0),($307|0),($90|0),($91|0))|0); + $309 = tempRet0; + $310 = (_i64Add(($308|0),($309|0),($64|0),($65|0))|0); + $311 = tempRet0; + $312 = (_i64Add(($310|0),($311|0),($184|0),($185|0))|0); + $313 = tempRet0; + $314 = (_i64Add(($312|0),($313|0),($304|0),($305|0))|0); + $315 = tempRet0; + $316 = (_bitshift64Shl(($304|0),($305|0),26)|0); + $317 = tempRet0; + $318 = (_i64Subtract(($280|0),($281|0),($316|0),($317|0))|0); + $319 = tempRet0; + $320 = (_i64Add(($296|0),($297|0),16777216,0)|0); + $321 = tempRet0; + $322 = (_bitshift64Ashr(($320|0),($321|0),25)|0); + $323 = tempRet0; + $324 = (_i64Add(($322|0),($323|0),($246|0),($247|0))|0); + $325 = tempRet0; + $326 = (_bitshift64Shl(($322|0),($323|0),25)|0); + $327 = tempRet0; + $328 = (_i64Subtract(($296|0),($297|0),($326|0),($327|0))|0); + $329 = tempRet0; + $330 = (_i64Add(($314|0),($315|0),16777216,0)|0); + $331 = tempRet0; + $332 = (_bitshift64Ashr(($330|0),($331|0),25)|0); + $333 = tempRet0; + $334 = (_i64Add(($112|0),($113|0),($138|0),($139|0))|0); + $335 = tempRet0; + $336 = (_i64Add(($334|0),($335|0),($126|0),($127|0))|0); + $337 = tempRet0; + $338 = (_i64Add(($336|0),($337|0),($94|0),($95|0))|0); + $339 = tempRet0; + $340 = (_i64Add(($338|0),($339|0),($68|0),($69|0))|0); + $341 = tempRet0; + $342 = (_i64Add(($340|0),($341|0),($186|0),($187|0))|0); + $343 = tempRet0; + $344 = (_i64Add(($342|0),($343|0),($332|0),($333|0))|0); + $345 = tempRet0; + $346 = (_bitshift64Shl(($332|0),($333|0),25)|0); + $347 = tempRet0; + $348 = (_i64Subtract(($314|0),($315|0),($346|0),($347|0))|0); + $349 = tempRet0; + $350 = (_i64Add(($324|0),($325|0),33554432,0)|0); + $351 = tempRet0; + $352 = (_bitshift64Ashr(($350|0),($351|0),26)|0); + $353 = tempRet0; + $354 = (_i64Add(($284|0),($285|0),($352|0),($353|0))|0); + $355 = tempRet0; + $356 = (_bitshift64Shl(($352|0),($353|0),26)|0); + $357 = tempRet0; + $358 = (_i64Subtract(($324|0),($325|0),($356|0),($357|0))|0); + $359 = tempRet0; + $360 = (_i64Add(($344|0),($345|0),33554432,0)|0); + $361 = tempRet0; + $362 = (_bitshift64Ashr(($360|0),($361|0),26)|0); + $363 = tempRet0; + $364 = (_i64Add(($128|0),($129|0),($142|0),($143|0))|0); + $365 = tempRet0; + $366 = (_i64Add(($364|0),($365|0),($114|0),($115|0))|0); + $367 = tempRet0; + $368 = (_i64Add(($366|0),($367|0),($96|0),($97|0))|0); + $369 = tempRet0; + $370 = (_i64Add(($368|0),($369|0),($72|0),($73|0))|0); + $371 = tempRet0; + $372 = (_i64Add(($370|0),($371|0),($362|0),($363|0))|0); + $373 = tempRet0; + $374 = (_bitshift64Shl(($362|0),($363|0),26)|0); + $375 = tempRet0; + $376 = (_i64Subtract(($344|0),($345|0),($374|0),($375|0))|0); + $377 = tempRet0; + $378 = (_i64Add(($372|0),($373|0),16777216,0)|0); + $379 = tempRet0; + $380 = (_bitshift64Ashr(($378|0),($379|0),25)|0); + $381 = tempRet0; + $382 = (___muldi3(($380|0),($381|0),19,0)|0); + $383 = tempRet0; + $384 = (_i64Add(($382|0),($383|0),($228|0),($229|0))|0); + $385 = tempRet0; + $386 = (_bitshift64Shl(($380|0),($381|0),25)|0); + $387 = tempRet0; + $388 = (_i64Subtract(($372|0),($373|0),($386|0),($387|0))|0); + $389 = tempRet0; + $390 = (_i64Add(($384|0),($385|0),33554432,0)|0); + $391 = tempRet0; + $392 = (_bitshift64Ashr(($390|0),($391|0),26)|0); + $393 = tempRet0; + $394 = (_i64Add(($264|0),($265|0),($392|0),($393|0))|0); + $395 = tempRet0; + $396 = (_bitshift64Shl(($392|0),($393|0),26)|0); + $397 = tempRet0; + $398 = (_i64Subtract(($384|0),($385|0),($396|0),($397|0))|0); + $399 = tempRet0; + HEAP32[$h>>2] = $398; + $400 = (($h) + 4|0); + HEAP32[$400>>2] = $394; + $401 = (($h) + 8|0); + HEAP32[$401>>2] = $300; + $402 = (($h) + 12|0); + HEAP32[$402>>2] = $328; + $403 = (($h) + 16|0); + HEAP32[$403>>2] = $358; + $404 = (($h) + 20|0); + HEAP32[$404>>2] = $354; + $405 = (($h) + 24|0); + HEAP32[$405>>2] = $318; + $406 = (($h) + 28|0); + HEAP32[$406>>2] = $348; + $407 = (($h) + 32|0); + HEAP32[$407>>2] = $376; + $408 = (($h) + 36|0); + HEAP32[$408>>2] = $388; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_sq2($h,$f) { + $h = $h|0; + $f = $f|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; + var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; + var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; + var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; + var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; + var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; + var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; + var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; + var $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0; + var $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0; + var $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = $0 << 1; + $20 = $2 << 1; + $21 = $4 << 1; + $22 = $6 << 1; + $23 = $8 << 1; + $24 = $10 << 1; + $25 = $12 << 1; + $26 = $14 << 1; + $27 = ($10*38)|0; + $28 = ($12*19)|0; + $29 = ($14*38)|0; + $30 = ($16*19)|0; + $31 = ($18*38)|0; + $32 = ($0|0)<(0); + $33 = $32 << 31 >> 31; + $34 = (___muldi3(($0|0),($33|0),($0|0),($33|0))|0); + $35 = tempRet0; + $36 = ($19|0)<(0); + $37 = $36 << 31 >> 31; + $38 = ($2|0)<(0); + $39 = $38 << 31 >> 31; + $40 = (___muldi3(($19|0),($37|0),($2|0),($39|0))|0); + $41 = tempRet0; + $42 = ($4|0)<(0); + $43 = $42 << 31 >> 31; + $44 = (___muldi3(($4|0),($43|0),($19|0),($37|0))|0); + $45 = tempRet0; + $46 = ($6|0)<(0); + $47 = $46 << 31 >> 31; + $48 = (___muldi3(($6|0),($47|0),($19|0),($37|0))|0); + $49 = tempRet0; + $50 = ($8|0)<(0); + $51 = $50 << 31 >> 31; + $52 = (___muldi3(($8|0),($51|0),($19|0),($37|0))|0); + $53 = tempRet0; + $54 = ($10|0)<(0); + $55 = $54 << 31 >> 31; + $56 = (___muldi3(($10|0),($55|0),($19|0),($37|0))|0); + $57 = tempRet0; + $58 = ($12|0)<(0); + $59 = $58 << 31 >> 31; + $60 = (___muldi3(($12|0),($59|0),($19|0),($37|0))|0); + $61 = tempRet0; + $62 = ($14|0)<(0); + $63 = $62 << 31 >> 31; + $64 = (___muldi3(($14|0),($63|0),($19|0),($37|0))|0); + $65 = tempRet0; + $66 = ($16|0)<(0); + $67 = $66 << 31 >> 31; + $68 = (___muldi3(($16|0),($67|0),($19|0),($37|0))|0); + $69 = tempRet0; + $70 = ($18|0)<(0); + $71 = $70 << 31 >> 31; + $72 = (___muldi3(($18|0),($71|0),($19|0),($37|0))|0); + $73 = tempRet0; + $74 = ($20|0)<(0); + $75 = $74 << 31 >> 31; + $76 = (___muldi3(($20|0),($75|0),($2|0),($39|0))|0); + $77 = tempRet0; + $78 = (___muldi3(($20|0),($75|0),($4|0),($43|0))|0); + $79 = tempRet0; + $80 = ($22|0)<(0); + $81 = $80 << 31 >> 31; + $82 = (___muldi3(($22|0),($81|0),($20|0),($75|0))|0); + $83 = tempRet0; + $84 = (___muldi3(($8|0),($51|0),($20|0),($75|0))|0); + $85 = tempRet0; + $86 = ($24|0)<(0); + $87 = $86 << 31 >> 31; + $88 = (___muldi3(($24|0),($87|0),($20|0),($75|0))|0); + $89 = tempRet0; + $90 = (___muldi3(($12|0),($59|0),($20|0),($75|0))|0); + $91 = tempRet0; + $92 = ($26|0)<(0); + $93 = $92 << 31 >> 31; + $94 = (___muldi3(($26|0),($93|0),($20|0),($75|0))|0); + $95 = tempRet0; + $96 = (___muldi3(($16|0),($67|0),($20|0),($75|0))|0); + $97 = tempRet0; + $98 = ($31|0)<(0); + $99 = $98 << 31 >> 31; + $100 = (___muldi3(($31|0),($99|0),($20|0),($75|0))|0); + $101 = tempRet0; + $102 = (___muldi3(($4|0),($43|0),($4|0),($43|0))|0); + $103 = tempRet0; + $104 = ($21|0)<(0); + $105 = $104 << 31 >> 31; + $106 = (___muldi3(($21|0),($105|0),($6|0),($47|0))|0); + $107 = tempRet0; + $108 = (___muldi3(($8|0),($51|0),($21|0),($105|0))|0); + $109 = tempRet0; + $110 = (___muldi3(($10|0),($55|0),($21|0),($105|0))|0); + $111 = tempRet0; + $112 = (___muldi3(($12|0),($59|0),($21|0),($105|0))|0); + $113 = tempRet0; + $114 = (___muldi3(($14|0),($63|0),($21|0),($105|0))|0); + $115 = tempRet0; + $116 = ($30|0)<(0); + $117 = $116 << 31 >> 31; + $118 = (___muldi3(($30|0),($117|0),($21|0),($105|0))|0); + $119 = tempRet0; + $120 = (___muldi3(($31|0),($99|0),($4|0),($43|0))|0); + $121 = tempRet0; + $122 = (___muldi3(($22|0),($81|0),($6|0),($47|0))|0); + $123 = tempRet0; + $124 = (___muldi3(($22|0),($81|0),($8|0),($51|0))|0); + $125 = tempRet0; + $126 = (___muldi3(($24|0),($87|0),($22|0),($81|0))|0); + $127 = tempRet0; + $128 = (___muldi3(($12|0),($59|0),($22|0),($81|0))|0); + $129 = tempRet0; + $130 = ($29|0)<(0); + $131 = $130 << 31 >> 31; + $132 = (___muldi3(($29|0),($131|0),($22|0),($81|0))|0); + $133 = tempRet0; + $134 = (___muldi3(($30|0),($117|0),($22|0),($81|0))|0); + $135 = tempRet0; + $136 = (___muldi3(($31|0),($99|0),($22|0),($81|0))|0); + $137 = tempRet0; + $138 = (___muldi3(($8|0),($51|0),($8|0),($51|0))|0); + $139 = tempRet0; + $140 = ($23|0)<(0); + $141 = $140 << 31 >> 31; + $142 = (___muldi3(($23|0),($141|0),($10|0),($55|0))|0); + $143 = tempRet0; + $144 = ($28|0)<(0); + $145 = $144 << 31 >> 31; + $146 = (___muldi3(($28|0),($145|0),($23|0),($141|0))|0); + $147 = tempRet0; + $148 = (___muldi3(($29|0),($131|0),($8|0),($51|0))|0); + $149 = tempRet0; + $150 = (___muldi3(($30|0),($117|0),($23|0),($141|0))|0); + $151 = tempRet0; + $152 = (___muldi3(($31|0),($99|0),($8|0),($51|0))|0); + $153 = tempRet0; + $154 = ($27|0)<(0); + $155 = $154 << 31 >> 31; + $156 = (___muldi3(($27|0),($155|0),($10|0),($55|0))|0); + $157 = tempRet0; + $158 = (___muldi3(($28|0),($145|0),($24|0),($87|0))|0); + $159 = tempRet0; + $160 = (___muldi3(($29|0),($131|0),($24|0),($87|0))|0); + $161 = tempRet0; + $162 = (___muldi3(($30|0),($117|0),($24|0),($87|0))|0); + $163 = tempRet0; + $164 = (___muldi3(($31|0),($99|0),($24|0),($87|0))|0); + $165 = tempRet0; + $166 = (___muldi3(($28|0),($145|0),($12|0),($59|0))|0); + $167 = tempRet0; + $168 = (___muldi3(($29|0),($131|0),($12|0),($59|0))|0); + $169 = tempRet0; + $170 = ($25|0)<(0); + $171 = $170 << 31 >> 31; + $172 = (___muldi3(($30|0),($117|0),($25|0),($171|0))|0); + $173 = tempRet0; + $174 = (___muldi3(($31|0),($99|0),($12|0),($59|0))|0); + $175 = tempRet0; + $176 = (___muldi3(($29|0),($131|0),($14|0),($63|0))|0); + $177 = tempRet0; + $178 = (___muldi3(($30|0),($117|0),($26|0),($93|0))|0); + $179 = tempRet0; + $180 = (___muldi3(($31|0),($99|0),($26|0),($93|0))|0); + $181 = tempRet0; + $182 = (___muldi3(($30|0),($117|0),($16|0),($67|0))|0); + $183 = tempRet0; + $184 = (___muldi3(($31|0),($99|0),($16|0),($67|0))|0); + $185 = tempRet0; + $186 = (___muldi3(($31|0),($99|0),($18|0),($71|0))|0); + $187 = tempRet0; + $188 = (_i64Add(($156|0),($157|0),($34|0),($35|0))|0); + $189 = tempRet0; + $190 = (_i64Add(($188|0),($189|0),($146|0),($147|0))|0); + $191 = tempRet0; + $192 = (_i64Add(($190|0),($191|0),($132|0),($133|0))|0); + $193 = tempRet0; + $194 = (_i64Add(($192|0),($193|0),($118|0),($119|0))|0); + $195 = tempRet0; + $196 = (_i64Add(($194|0),($195|0),($100|0),($101|0))|0); + $197 = tempRet0; + $198 = (_i64Add(($158|0),($159|0),($40|0),($41|0))|0); + $199 = tempRet0; + $200 = (_i64Add(($198|0),($199|0),($148|0),($149|0))|0); + $201 = tempRet0; + $202 = (_i64Add(($200|0),($201|0),($134|0),($135|0))|0); + $203 = tempRet0; + $204 = (_i64Add(($202|0),($203|0),($120|0),($121|0))|0); + $205 = tempRet0; + $206 = (_i64Add(($44|0),($45|0),($76|0),($77|0))|0); + $207 = tempRet0; + $208 = (_i64Add(($206|0),($207|0),($166|0),($167|0))|0); + $209 = tempRet0; + $210 = (_i64Add(($208|0),($209|0),($160|0),($161|0))|0); + $211 = tempRet0; + $212 = (_i64Add(($210|0),($211|0),($150|0),($151|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($212|0),($213|0),($136|0),($137|0))|0); + $215 = tempRet0; + $216 = (_i64Add(($48|0),($49|0),($78|0),($79|0))|0); + $217 = tempRet0; + $218 = (_i64Add(($216|0),($217|0),($168|0),($169|0))|0); + $219 = tempRet0; + $220 = (_i64Add(($218|0),($219|0),($162|0),($163|0))|0); + $221 = tempRet0; + $222 = (_i64Add(($220|0),($221|0),($152|0),($153|0))|0); + $223 = tempRet0; + $224 = (_i64Add(($82|0),($83|0),($102|0),($103|0))|0); + $225 = tempRet0; + $226 = (_i64Add(($224|0),($225|0),($52|0),($53|0))|0); + $227 = tempRet0; + $228 = (_i64Add(($226|0),($227|0),($176|0),($177|0))|0); + $229 = tempRet0; + $230 = (_i64Add(($228|0),($229|0),($172|0),($173|0))|0); + $231 = tempRet0; + $232 = (_i64Add(($230|0),($231|0),($164|0),($165|0))|0); + $233 = tempRet0; + $234 = (_i64Add(($84|0),($85|0),($106|0),($107|0))|0); + $235 = tempRet0; + $236 = (_i64Add(($234|0),($235|0),($56|0),($57|0))|0); + $237 = tempRet0; + $238 = (_i64Add(($236|0),($237|0),($178|0),($179|0))|0); + $239 = tempRet0; + $240 = (_i64Add(($238|0),($239|0),($174|0),($175|0))|0); + $241 = tempRet0; + $242 = (_i64Add(($122|0),($123|0),($108|0),($109|0))|0); + $243 = tempRet0; + $244 = (_i64Add(($242|0),($243|0),($88|0),($89|0))|0); + $245 = tempRet0; + $246 = (_i64Add(($244|0),($245|0),($60|0),($61|0))|0); + $247 = tempRet0; + $248 = (_i64Add(($246|0),($247|0),($182|0),($183|0))|0); + $249 = tempRet0; + $250 = (_i64Add(($248|0),($249|0),($180|0),($181|0))|0); + $251 = tempRet0; + $252 = (_i64Add(($110|0),($111|0),($124|0),($125|0))|0); + $253 = tempRet0; + $254 = (_i64Add(($252|0),($253|0),($90|0),($91|0))|0); + $255 = tempRet0; + $256 = (_i64Add(($254|0),($255|0),($64|0),($65|0))|0); + $257 = tempRet0; + $258 = (_i64Add(($256|0),($257|0),($184|0),($185|0))|0); + $259 = tempRet0; + $260 = (_i64Add(($112|0),($113|0),($138|0),($139|0))|0); + $261 = tempRet0; + $262 = (_i64Add(($260|0),($261|0),($126|0),($127|0))|0); + $263 = tempRet0; + $264 = (_i64Add(($262|0),($263|0),($94|0),($95|0))|0); + $265 = tempRet0; + $266 = (_i64Add(($264|0),($265|0),($68|0),($69|0))|0); + $267 = tempRet0; + $268 = (_i64Add(($266|0),($267|0),($186|0),($187|0))|0); + $269 = tempRet0; + $270 = (_i64Add(($128|0),($129|0),($142|0),($143|0))|0); + $271 = tempRet0; + $272 = (_i64Add(($270|0),($271|0),($114|0),($115|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($96|0),($97|0))|0); + $275 = tempRet0; + $276 = (_i64Add(($274|0),($275|0),($72|0),($73|0))|0); + $277 = tempRet0; + $278 = (_bitshift64Shl(($196|0),($197|0),1)|0); + $279 = tempRet0; + $280 = (_bitshift64Shl(($204|0),($205|0),1)|0); + $281 = tempRet0; + $282 = (_bitshift64Shl(($214|0),($215|0),1)|0); + $283 = tempRet0; + $284 = (_bitshift64Shl(($222|0),($223|0),1)|0); + $285 = tempRet0; + $286 = (_bitshift64Shl(($232|0),($233|0),1)|0); + $287 = tempRet0; + $288 = (_bitshift64Shl(($240|0),($241|0),1)|0); + $289 = tempRet0; + $290 = (_bitshift64Shl(($250|0),($251|0),1)|0); + $291 = tempRet0; + $292 = (_bitshift64Shl(($258|0),($259|0),1)|0); + $293 = tempRet0; + $294 = (_bitshift64Shl(($268|0),($269|0),1)|0); + $295 = tempRet0; + $296 = (_bitshift64Shl(($276|0),($277|0),1)|0); + $297 = tempRet0; + $298 = (_i64Add(($278|0),($279|0),33554432,0)|0); + $299 = tempRet0; + $300 = (_bitshift64Ashr(($298|0),($299|0),26)|0); + $301 = tempRet0; + $302 = (_i64Add(($300|0),($301|0),($280|0),($281|0))|0); + $303 = tempRet0; + $304 = (_bitshift64Shl(($300|0),($301|0),26)|0); + $305 = tempRet0; + $306 = (_i64Subtract(($278|0),($279|0),($304|0),($305|0))|0); + $307 = tempRet0; + $308 = (_i64Add(($286|0),($287|0),33554432,0)|0); + $309 = tempRet0; + $310 = (_bitshift64Ashr(($308|0),($309|0),26)|0); + $311 = tempRet0; + $312 = (_i64Add(($310|0),($311|0),($288|0),($289|0))|0); + $313 = tempRet0; + $314 = (_bitshift64Shl(($310|0),($311|0),26)|0); + $315 = tempRet0; + $316 = (_i64Subtract(($286|0),($287|0),($314|0),($315|0))|0); + $317 = tempRet0; + $318 = (_i64Add(($302|0),($303|0),16777216,0)|0); + $319 = tempRet0; + $320 = (_bitshift64Ashr(($318|0),($319|0),25)|0); + $321 = tempRet0; + $322 = (_i64Add(($320|0),($321|0),($282|0),($283|0))|0); + $323 = tempRet0; + $324 = (_bitshift64Shl(($320|0),($321|0),25)|0); + $325 = tempRet0; + $326 = (_i64Subtract(($302|0),($303|0),($324|0),($325|0))|0); + $327 = tempRet0; + $328 = (_i64Add(($312|0),($313|0),16777216,0)|0); + $329 = tempRet0; + $330 = (_bitshift64Ashr(($328|0),($329|0),25)|0); + $331 = tempRet0; + $332 = (_i64Add(($330|0),($331|0),($290|0),($291|0))|0); + $333 = tempRet0; + $334 = (_bitshift64Shl(($330|0),($331|0),25)|0); + $335 = tempRet0; + $336 = (_i64Subtract(($312|0),($313|0),($334|0),($335|0))|0); + $337 = tempRet0; + $338 = (_i64Add(($322|0),($323|0),33554432,0)|0); + $339 = tempRet0; + $340 = (_bitshift64Ashr(($338|0),($339|0),26)|0); + $341 = tempRet0; + $342 = (_i64Add(($340|0),($341|0),($284|0),($285|0))|0); + $343 = tempRet0; + $344 = (_bitshift64Shl(($340|0),($341|0),26)|0); + $345 = tempRet0; + $346 = (_i64Subtract(($322|0),($323|0),($344|0),($345|0))|0); + $347 = tempRet0; + $348 = (_i64Add(($332|0),($333|0),33554432,0)|0); + $349 = tempRet0; + $350 = (_bitshift64Ashr(($348|0),($349|0),26)|0); + $351 = tempRet0; + $352 = (_i64Add(($350|0),($351|0),($292|0),($293|0))|0); + $353 = tempRet0; + $354 = (_bitshift64Shl(($350|0),($351|0),26)|0); + $355 = tempRet0; + $356 = (_i64Subtract(($332|0),($333|0),($354|0),($355|0))|0); + $357 = tempRet0; + $358 = (_i64Add(($342|0),($343|0),16777216,0)|0); + $359 = tempRet0; + $360 = (_bitshift64Ashr(($358|0),($359|0),25)|0); + $361 = tempRet0; + $362 = (_i64Add(($360|0),($361|0),($316|0),($317|0))|0); + $363 = tempRet0; + $364 = (_bitshift64Shl(($360|0),($361|0),25)|0); + $365 = tempRet0; + $366 = (_i64Subtract(($342|0),($343|0),($364|0),($365|0))|0); + $367 = tempRet0; + $368 = (_i64Add(($352|0),($353|0),16777216,0)|0); + $369 = tempRet0; + $370 = (_bitshift64Ashr(($368|0),($369|0),25)|0); + $371 = tempRet0; + $372 = (_i64Add(($370|0),($371|0),($294|0),($295|0))|0); + $373 = tempRet0; + $374 = (_bitshift64Shl(($370|0),($371|0),25)|0); + $375 = tempRet0; + $376 = (_i64Subtract(($352|0),($353|0),($374|0),($375|0))|0); + $377 = tempRet0; + $378 = (_i64Add(($362|0),($363|0),33554432,0)|0); + $379 = tempRet0; + $380 = (_bitshift64Ashr(($378|0),($379|0),26)|0); + $381 = tempRet0; + $382 = (_i64Add(($336|0),($337|0),($380|0),($381|0))|0); + $383 = tempRet0; + $384 = (_bitshift64Shl(($380|0),($381|0),26)|0); + $385 = tempRet0; + $386 = (_i64Subtract(($362|0),($363|0),($384|0),($385|0))|0); + $387 = tempRet0; + $388 = (_i64Add(($372|0),($373|0),33554432,0)|0); + $389 = tempRet0; + $390 = (_bitshift64Ashr(($388|0),($389|0),26)|0); + $391 = tempRet0; + $392 = (_i64Add(($390|0),($391|0),($296|0),($297|0))|0); + $393 = tempRet0; + $394 = (_bitshift64Shl(($390|0),($391|0),26)|0); + $395 = tempRet0; + $396 = (_i64Subtract(($372|0),($373|0),($394|0),($395|0))|0); + $397 = tempRet0; + $398 = (_i64Add(($392|0),($393|0),16777216,0)|0); + $399 = tempRet0; + $400 = (_bitshift64Ashr(($398|0),($399|0),25)|0); + $401 = tempRet0; + $402 = (___muldi3(($400|0),($401|0),19,0)|0); + $403 = tempRet0; + $404 = (_i64Add(($402|0),($403|0),($306|0),($307|0))|0); + $405 = tempRet0; + $406 = (_bitshift64Shl(($400|0),($401|0),25)|0); + $407 = tempRet0; + $408 = (_i64Subtract(($392|0),($393|0),($406|0),($407|0))|0); + $409 = tempRet0; + $410 = (_i64Add(($404|0),($405|0),33554432,0)|0); + $411 = tempRet0; + $412 = (_bitshift64Ashr(($410|0),($411|0),26)|0); + $413 = tempRet0; + $414 = (_i64Add(($326|0),($327|0),($412|0),($413|0))|0); + $415 = tempRet0; + $416 = (_bitshift64Shl(($412|0),($413|0),26)|0); + $417 = tempRet0; + $418 = (_i64Subtract(($404|0),($405|0),($416|0),($417|0))|0); + $419 = tempRet0; + HEAP32[$h>>2] = $418; + $420 = (($h) + 4|0); + HEAP32[$420>>2] = $414; + $421 = (($h) + 8|0); + HEAP32[$421>>2] = $346; + $422 = (($h) + 12|0); + HEAP32[$422>>2] = $366; + $423 = (($h) + 16|0); + HEAP32[$423>>2] = $386; + $424 = (($h) + 20|0); + HEAP32[$424>>2] = $382; + $425 = (($h) + 24|0); + HEAP32[$425>>2] = $356; + $426 = (($h) + 28|0); + HEAP32[$426>>2] = $376; + $427 = (($h) + 32|0); + HEAP32[$427>>2] = $396; + $428 = (($h) + 36|0); + HEAP32[$428>>2] = $408; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_sub($h,$f,$g) { + $h = $h|0; + $f = $f|0; + $g = $g|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = HEAP32[$g>>2]|0; + $20 = (($g) + 4|0); + $21 = HEAP32[$20>>2]|0; + $22 = (($g) + 8|0); + $23 = HEAP32[$22>>2]|0; + $24 = (($g) + 12|0); + $25 = HEAP32[$24>>2]|0; + $26 = (($g) + 16|0); + $27 = HEAP32[$26>>2]|0; + $28 = (($g) + 20|0); + $29 = HEAP32[$28>>2]|0; + $30 = (($g) + 24|0); + $31 = HEAP32[$30>>2]|0; + $32 = (($g) + 28|0); + $33 = HEAP32[$32>>2]|0; + $34 = (($g) + 32|0); + $35 = HEAP32[$34>>2]|0; + $36 = (($g) + 36|0); + $37 = HEAP32[$36>>2]|0; + $38 = (($0) - ($19))|0; + $39 = (($2) - ($21))|0; + $40 = (($4) - ($23))|0; + $41 = (($6) - ($25))|0; + $42 = (($8) - ($27))|0; + $43 = (($10) - ($29))|0; + $44 = (($12) - ($31))|0; + $45 = (($14) - ($33))|0; + $46 = (($16) - ($35))|0; + $47 = (($18) - ($37))|0; + HEAP32[$h>>2] = $38; + $48 = (($h) + 4|0); + HEAP32[$48>>2] = $39; + $49 = (($h) + 8|0); + HEAP32[$49>>2] = $40; + $50 = (($h) + 12|0); + HEAP32[$50>>2] = $41; + $51 = (($h) + 16|0); + HEAP32[$51>>2] = $42; + $52 = (($h) + 20|0); + HEAP32[$52>>2] = $43; + $53 = (($h) + 24|0); + HEAP32[$53>>2] = $44; + $54 = (($h) + 28|0); + HEAP32[$54>>2] = $45; + $55 = (($h) + 32|0); + HEAP32[$55>>2] = $46; + $56 = (($h) + 36|0); + HEAP32[$56>>2] = $47; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_tobytes($s,$h) { + $s = $s|0; + $h = $h|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0; + var $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0; + var $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0; + var $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0; + var $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$h>>2]|0; + $1 = (($h) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($h) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($h) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($h) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($h) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($h) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($h) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($h) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($h) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = ($18*19)|0; + $20 = (($19) + 16777216)|0; + $21 = $20 >> 25; + $22 = (($21) + ($0))|0; + $23 = $22 >> 26; + $24 = (($23) + ($2))|0; + $25 = $24 >> 25; + $26 = (($25) + ($4))|0; + $27 = $26 >> 26; + $28 = (($27) + ($6))|0; + $29 = $28 >> 25; + $30 = (($29) + ($8))|0; + $31 = $30 >> 26; + $32 = (($31) + ($10))|0; + $33 = $32 >> 25; + $34 = (($33) + ($12))|0; + $35 = $34 >> 26; + $36 = (($35) + ($14))|0; + $37 = $36 >> 25; + $38 = (($37) + ($16))|0; + $39 = $38 >> 26; + $40 = (($39) + ($18))|0; + $41 = $40 >> 25; + $42 = ($41*19)|0; + $43 = (($42) + ($0))|0; + $44 = $43 >> 26; + $45 = (($44) + ($2))|0; + $46 = $44 << 26; + $47 = (($43) - ($46))|0; + $48 = $45 >> 25; + $49 = (($48) + ($4))|0; + $50 = $48 << 25; + $51 = (($45) - ($50))|0; + $52 = $49 >> 26; + $53 = (($52) + ($6))|0; + $54 = $52 << 26; + $55 = (($49) - ($54))|0; + $56 = $53 >> 25; + $57 = (($56) + ($8))|0; + $58 = $56 << 25; + $59 = (($53) - ($58))|0; + $60 = $57 >> 26; + $61 = (($60) + ($10))|0; + $62 = $60 << 26; + $63 = (($57) - ($62))|0; + $64 = $61 >> 25; + $65 = (($64) + ($12))|0; + $66 = $64 << 25; + $67 = (($61) - ($66))|0; + $68 = $65 >> 26; + $69 = (($68) + ($14))|0; + $70 = $68 << 26; + $71 = (($65) - ($70))|0; + $72 = $69 >> 25; + $73 = (($72) + ($16))|0; + $74 = $72 << 25; + $75 = (($69) - ($74))|0; + $76 = $73 >> 26; + $77 = (($76) + ($18))|0; + $78 = $76 << 26; + $79 = (($73) - ($78))|0; + $80 = $77 & 33554431; + $81 = $47&255; + HEAP8[$s>>0] = $81; + $82 = $47 >>> 8; + $83 = $82&255; + $84 = (($s) + 1|0); + HEAP8[$84>>0] = $83; + $85 = $47 >>> 16; + $86 = $85&255; + $87 = (($s) + 2|0); + HEAP8[$87>>0] = $86; + $88 = $47 >>> 24; + $89 = $51 << 2; + $90 = $89 | $88; + $91 = $90&255; + $92 = (($s) + 3|0); + HEAP8[$92>>0] = $91; + $93 = $51 >>> 6; + $94 = $93&255; + $95 = (($s) + 4|0); + HEAP8[$95>>0] = $94; + $96 = $51 >>> 14; + $97 = $96&255; + $98 = (($s) + 5|0); + HEAP8[$98>>0] = $97; + $99 = $51 >>> 22; + $100 = $55 << 3; + $101 = $100 | $99; + $102 = $101&255; + $103 = (($s) + 6|0); + HEAP8[$103>>0] = $102; + $104 = $55 >>> 5; + $105 = $104&255; + $106 = (($s) + 7|0); + HEAP8[$106>>0] = $105; + $107 = $55 >>> 13; + $108 = $107&255; + $109 = (($s) + 8|0); + HEAP8[$109>>0] = $108; + $110 = $55 >>> 21; + $111 = $59 << 5; + $112 = $111 | $110; + $113 = $112&255; + $114 = (($s) + 9|0); + HEAP8[$114>>0] = $113; + $115 = $59 >>> 3; + $116 = $115&255; + $117 = (($s) + 10|0); + HEAP8[$117>>0] = $116; + $118 = $59 >>> 11; + $119 = $118&255; + $120 = (($s) + 11|0); + HEAP8[$120>>0] = $119; + $121 = $59 >>> 19; + $122 = $63 << 6; + $123 = $122 | $121; + $124 = $123&255; + $125 = (($s) + 12|0); + HEAP8[$125>>0] = $124; + $126 = $63 >>> 2; + $127 = $126&255; + $128 = (($s) + 13|0); + HEAP8[$128>>0] = $127; + $129 = $63 >>> 10; + $130 = $129&255; + $131 = (($s) + 14|0); + HEAP8[$131>>0] = $130; + $132 = $63 >>> 18; + $133 = $132&255; + $134 = (($s) + 15|0); + HEAP8[$134>>0] = $133; + $135 = $67&255; + $136 = (($s) + 16|0); + HEAP8[$136>>0] = $135; + $137 = $67 >>> 8; + $138 = $137&255; + $139 = (($s) + 17|0); + HEAP8[$139>>0] = $138; + $140 = $67 >>> 16; + $141 = $140&255; + $142 = (($s) + 18|0); + HEAP8[$142>>0] = $141; + $143 = $67 >>> 24; + $144 = $71 << 1; + $145 = $144 | $143; + $146 = $145&255; + $147 = (($s) + 19|0); + HEAP8[$147>>0] = $146; + $148 = $71 >>> 7; + $149 = $148&255; + $150 = (($s) + 20|0); + HEAP8[$150>>0] = $149; + $151 = $71 >>> 15; + $152 = $151&255; + $153 = (($s) + 21|0); + HEAP8[$153>>0] = $152; + $154 = $71 >>> 23; + $155 = $75 << 3; + $156 = $155 | $154; + $157 = $156&255; + $158 = (($s) + 22|0); + HEAP8[$158>>0] = $157; + $159 = $75 >>> 5; + $160 = $159&255; + $161 = (($s) + 23|0); + HEAP8[$161>>0] = $160; + $162 = $75 >>> 13; + $163 = $162&255; + $164 = (($s) + 24|0); + HEAP8[$164>>0] = $163; + $165 = $75 >>> 21; + $166 = $79 << 4; + $167 = $166 | $165; + $168 = $167&255; + $169 = (($s) + 25|0); + HEAP8[$169>>0] = $168; + $170 = $79 >>> 4; + $171 = $170&255; + $172 = (($s) + 26|0); + HEAP8[$172>>0] = $171; + $173 = $79 >>> 12; + $174 = $173&255; + $175 = (($s) + 27|0); + HEAP8[$175>>0] = $174; + $176 = $79 >>> 20; + $177 = $80 << 6; + $178 = $176 | $177; + $179 = $178&255; + $180 = (($s) + 28|0); + HEAP8[$180>>0] = $179; + $181 = $77 >>> 2; + $182 = $181&255; + $183 = (($s) + 29|0); + HEAP8[$183>>0] = $182; + $184 = $77 >>> 10; + $185 = $184&255; + $186 = (($s) + 30|0); + HEAP8[$186>>0] = $185; + $187 = $80 >>> 18; + $188 = $187&255; + $189 = (($s) + 31|0); + HEAP8[$189>>0] = $188; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_add($r,$p,$q) { + $r = $r|0; + $p = $p|0; + $q = $q|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $t0 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $t0 = sp; + $0 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); + $1 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); + $2 = (($r) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($2,$r,$q); + $3 = (($q) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($1,$1,$3); + $4 = (($r) + 120|0); + $5 = (($q) + 120|0); + $6 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); + $7 = (($p) + 80|0); + $8 = (($q) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($r,$7,$8); + _crypto_sign_ed25519_ref10_fe_add($t0,$r,$r); + _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($2,$t0,$4); + _crypto_sign_ed25519_ref10_fe_sub($4,$t0,$4); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($r,$a,$A,$b) { + $r = $r|0; + $a = $a|0; + $A = $A|0; + $b = $b|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, $A2 = 0, $Ai = 0, $aslide = 0, $bslide = 0, $i$0$lcssa = 0, $i$02 = 0, $i$11 = 0, $t = 0, $u = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 2272|0; + $aslide = sp + 2016|0; + $bslide = sp + 1760|0; + $Ai = sp + 480|0; + $t = sp + 320|0; + $u = sp + 160|0; + $A2 = sp; + _slide($aslide,$a); + _slide($bslide,$b); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($Ai,$A); + _crypto_sign_ed25519_ref10_ge_p3_dbl($t,$A); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($A2,$t); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$Ai); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $0 = (($Ai) + 160|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($0,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$0); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $1 = (($Ai) + 320|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($1,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$1); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $2 = (($Ai) + 480|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($2,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$2); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $3 = (($Ai) + 640|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($3,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$3); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $4 = (($Ai) + 800|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($4,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$4); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $5 = (($Ai) + 960|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($5,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$5); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $6 = (($Ai) + 1120|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($6,$u); + _crypto_sign_ed25519_ref10_ge_p2_0($r); + $i$02 = 255; + while(1) { + $8 = (($aslide) + ($i$02)|0); + $9 = HEAP8[$8>>0]|0; + $10 = ($9<<24>>24)==(0); + if (!($10)) { + $i$0$lcssa = $i$02; + break; + } + $11 = (($bslide) + ($i$02)|0); + $12 = HEAP8[$11>>0]|0; + $13 = ($12<<24>>24)==(0); + $14 = (($i$02) + -1)|0; + if (!($13)) { + $i$0$lcssa = $i$02; + break; + } + $7 = ($i$02|0)>(0); + if ($7) { + $i$02 = $14; + } else { + $i$0$lcssa = $14; + break; + } + } + $15 = ($i$0$lcssa|0)>(-1); + if ($15) { + $i$11 = $i$0$lcssa; + } else { + STACKTOP = sp;return; + } + while(1) { + _crypto_sign_ed25519_ref10_ge_p2_dbl($t,$r); + $16 = (($aslide) + ($i$11)|0); + $17 = HEAP8[$16>>0]|0; + $18 = ($17<<24>>24)>(0); + if ($18) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $19 = HEAP8[$16>>0]|0; + $20 = $19 << 24 >> 24; + $21 = (($20|0) / 2)&-1; + $22 = (($Ai) + (($21*160)|0)|0); + _crypto_sign_ed25519_ref10_ge_add($t,$u,$22); + } else { + $23 = ($17<<24>>24)<(0); + if ($23) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $24 = HEAP8[$16>>0]|0; + $25 = $24 << 24 >> 24; + $26 = (($25|0) / -2)&-1; + $27 = (($Ai) + (($26*160)|0)|0); + _crypto_sign_ed25519_ref10_ge_sub($t,$u,$27); + } + } + $28 = (($bslide) + ($i$11)|0); + $29 = HEAP8[$28>>0]|0; + $30 = ($29<<24>>24)>(0); + if ($30) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $31 = HEAP8[$28>>0]|0; + $32 = $31 << 24 >> 24; + $33 = (($32|0) / 2)&-1; + $34 = (40 + (($33*120)|0)|0); + _crypto_sign_ed25519_ref10_ge_madd($t,$u,$34); + } else { + $35 = ($29<<24>>24)<(0); + if ($35) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $36 = HEAP8[$28>>0]|0; + $37 = $36 << 24 >> 24; + $38 = (($37|0) / -2)&-1; + $39 = (40 + (($38*120)|0)|0); + _crypto_sign_ed25519_ref10_ge_msub($t,$u,$39); + } + } + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($r,$t); + $40 = (($i$11) + -1)|0; + $41 = ($i$11|0)>(0); + if ($41) { + $i$11 = $40; + } else { + break; + } + } + STACKTOP = sp;return; +} +function _slide($r,$a) { + $r = $r|0; + $a = $a|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $b$03 = 0, $exitcond = 0, $exitcond10 = 0; + var $i$08 = 0, $i$15 = 0, $k$01 = 0, label = 0, sp = 0; + sp = STACKTOP; + $i$08 = 0; + while(1) { + $0 = $i$08 >> 3; + $1 = (($a) + ($0)|0); + $2 = HEAP8[$1>>0]|0; + $3 = $2&255; + $4 = $i$08 & 7; + $5 = $3 >>> $4; + $6 = $5 & 1; + $7 = $6&255; + $8 = (($r) + ($i$08)|0); + HEAP8[$8>>0] = $7; + $9 = (($i$08) + 1)|0; + $exitcond10 = ($9|0)==(256); + if ($exitcond10) { + $i$15 = 0; + break; + } else { + $i$08 = $9; + } + } + while(1) { + $10 = (($r) + ($i$15)|0); + $11 = HEAP8[$10>>0]|0; + $12 = ($11<<24>>24)==(0); + L5: do { + if (!($12)) { + $b$03 = 1; + while(1) { + $13 = (($b$03) + ($i$15))|0; + $14 = ($13|0)<(256); + if (!($14)) { + break L5; + } + $15 = (($r) + ($13)|0); + $16 = HEAP8[$15>>0]|0; + $17 = ($16<<24>>24)==(0); + L9: do { + if (!($17)) { + $18 = HEAP8[$10>>0]|0; + $19 = $18 << 24 >> 24; + $20 = $16 << 24 >> 24; + $21 = $20 << $b$03; + $22 = (($19) + ($21))|0; + $23 = ($22|0)<(16); + if ($23) { + $24 = $22&255; + HEAP8[$10>>0] = $24; + HEAP8[$15>>0] = 0; + break; + } + $25 = (($19) - ($21))|0; + $26 = ($25|0)>(-16); + if (!($26)) { + break L5; + } + $27 = $25&255; + HEAP8[$10>>0] = $27; + $28 = ($13|0)<(256); + if ($28) { + $k$01 = $13; + while(1) { + $29 = (($r) + ($k$01)|0); + $30 = HEAP8[$29>>0]|0; + $31 = ($30<<24>>24)==(0); + if ($31) { + break; + } + HEAP8[$29>>0] = 0; + $32 = (($k$01) + 1)|0; + $33 = ($32|0)<(256); + if ($33) { + $k$01 = $32; + } else { + break L9; + } + } + HEAP8[$29>>0] = 1; + } + } + } while(0); + $34 = (($b$03) + 1)|0; + $35 = ($34|0)<(7); + if ($35) { + $b$03 = $34; + } else { + break; + } + } + } + } while(0); + $36 = (($i$15) + 1)|0; + $exitcond = ($36|0)==(256); + if ($exitcond) { + break; + } else { + $i$15 = $36; + } + } + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($h,$s) { + $h = $h|0; + $s = $s|0; + var $$0 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $check = 0, $u = 0, $v = 0, $v3 = 0, $vxx = 0, label = 0; + var sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 208|0; + $u = sp + 160|0; + $v = sp + 120|0; + $v3 = sp + 80|0; + $vxx = sp + 40|0; + $check = sp; + $0 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_frombytes($0,$s); + $1 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($1); + _crypto_sign_ed25519_ref10_fe_sq($u,$0); + _crypto_sign_ed25519_ref10_fe_mul($v,$u,1000); + _crypto_sign_ed25519_ref10_fe_sub($u,$u,$1); + _crypto_sign_ed25519_ref10_fe_add($v,$v,$1); + _crypto_sign_ed25519_ref10_fe_sq($v3,$v); + _crypto_sign_ed25519_ref10_fe_mul($v3,$v3,$v); + _crypto_sign_ed25519_ref10_fe_sq($h,$v3); + _crypto_sign_ed25519_ref10_fe_mul($h,$h,$v); + _crypto_sign_ed25519_ref10_fe_mul($h,$h,$u); + _crypto_sign_ed25519_ref10_fe_pow22523($h,$h); + _crypto_sign_ed25519_ref10_fe_mul($h,$h,$v3); + _crypto_sign_ed25519_ref10_fe_mul($h,$h,$u); + _crypto_sign_ed25519_ref10_fe_sq($vxx,$h); + _crypto_sign_ed25519_ref10_fe_mul($vxx,$vxx,$v); + _crypto_sign_ed25519_ref10_fe_sub($check,$vxx,$u); + $2 = (_crypto_sign_ed25519_ref10_fe_isnonzero($check)|0); + $3 = ($2|0)==(0); + do { + if (!($3)) { + _crypto_sign_ed25519_ref10_fe_add($check,$vxx,$u); + $4 = (_crypto_sign_ed25519_ref10_fe_isnonzero($check)|0); + $5 = ($4|0)==(0); + if ($5) { + _crypto_sign_ed25519_ref10_fe_mul($h,$h,1040); + break; + } else { + $$0 = -1; + STACKTOP = sp;return ($$0|0); + } + } + } while(0); + $6 = (_crypto_sign_ed25519_ref10_fe_isnegative($h)|0); + $7 = (($s) + 31|0); + $8 = HEAP8[$7>>0]|0; + $9 = $8&255; + $10 = $9 >>> 7; + $11 = ($6|0)==($10|0); + if ($11) { + _crypto_sign_ed25519_ref10_fe_neg($h,$h); + } + $12 = (($h) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($12,$h,$0); + $$0 = 0; + STACKTOP = sp;return ($$0|0); +} +function _crypto_sign_ed25519_ref10_ge_madd($r,$p,$q) { + $r = $r|0; + $p = $p|0; + $q = $q|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $t0 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $t0 = sp; + $0 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); + $1 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); + $2 = (($r) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($2,$r,$q); + $3 = (($q) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($1,$1,$3); + $4 = (($r) + 120|0); + $5 = (($q) + 80|0); + $6 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); + $7 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_add($t0,$7,$7); + _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($2,$t0,$4); + _crypto_sign_ed25519_ref10_fe_sub($4,$t0,$4); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_msub($r,$p,$q) { + $r = $r|0; + $p = $p|0; + $q = $q|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $t0 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $t0 = sp; + $0 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); + $1 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); + $2 = (($r) + 80|0); + $3 = (($q) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($2,$r,$3); + _crypto_sign_ed25519_ref10_fe_mul($1,$1,$q); + $4 = (($r) + 120|0); + $5 = (($q) + 80|0); + $6 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); + $7 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_add($t0,$7,$7); + _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); + _crypto_sign_ed25519_ref10_fe_sub($2,$t0,$4); + _crypto_sign_ed25519_ref10_fe_add($4,$t0,$4); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($r,$p) { + $r = $r|0; + $p = $p|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($r,$p,$0); + $1 = (($r) + 40|0); + $2 = (($p) + 40|0); + $3 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($1,$2,$3); + $4 = (($r) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$3,$0); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($r,$p) { + $r = $r|0; + $p = $p|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($r,$p,$0); + $1 = (($r) + 40|0); + $2 = (($p) + 40|0); + $3 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($1,$2,$3); + $4 = (($r) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$3,$0); + $5 = (($r) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($5,$p,$2); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p2_0($h) { + $h = $h|0; + var $0 = 0, $1 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_0($h); + $0 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_1($0); + $1 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($1); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$p) { + $r = $r|0; + $p = $p|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $t0 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $t0 = sp; + _crypto_sign_ed25519_ref10_fe_sq($r,$p); + $0 = (($r) + 80|0); + $1 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_sq($0,$1); + $2 = (($r) + 120|0); + $3 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_sq2($2,$3); + $4 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($4,$p,$1); + _crypto_sign_ed25519_ref10_fe_sq($t0,$4); + _crypto_sign_ed25519_ref10_fe_add($4,$0,$r); + _crypto_sign_ed25519_ref10_fe_sub($0,$0,$r); + _crypto_sign_ed25519_ref10_fe_sub($r,$t0,$4); + _crypto_sign_ed25519_ref10_fe_sub($2,$2,$0); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_0($h) { + $h = $h|0; + var $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_0($h); + $0 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_1($0); + $1 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($1); + $2 = (($h) + 120|0); + _crypto_sign_ed25519_ref10_fe_0($2); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_dbl($r,$p) { + $r = $r|0; + $p = $p|0; + var $q = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $q = sp; + _crypto_sign_ed25519_ref10_ge_p3_to_p2($q,$p); + _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$q); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_to_cached($r,$p) { + $r = $r|0; + $p = $p|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); + $1 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); + $2 = (($r) + 80|0); + $3 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_copy($2,$3); + $4 = (($r) + 120|0); + $5 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,1080); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_to_p2($r,$p) { + $r = $r|0; + $p = $p|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_copy($r,$p); + $0 = (($r) + 40|0); + $1 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_copy($0,$1); + $2 = (($r) + 80|0); + $3 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_copy($2,$3); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_tobytes($s,$h) { + $s = $s|0; + $h = $h|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $recip = 0, $x = 0, $y = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $recip = sp + 80|0; + $x = sp + 40|0; + $y = sp; + $0 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_invert($recip,$0); + _crypto_sign_ed25519_ref10_fe_mul($x,$h,$recip); + $1 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($y,$1,$recip); + _crypto_sign_ed25519_ref10_fe_tobytes($s,$y); + $2 = (_crypto_sign_ed25519_ref10_fe_isnegative($x)|0); + $3 = $2 << 7; + $4 = (($s) + 31|0); + $5 = HEAP8[$4>>0]|0; + $6 = $5&255; + $7 = $6 ^ $3; + $8 = $7&255; + HEAP8[$4>>0] = $8; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_precomp_0($h) { + $h = $h|0; + var $0 = 0, $1 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_1($h); + $0 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_1($0); + $1 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_0($1); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_scalarmult_base($h,$a) { + $h = $h|0; + $a = $a|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $carry$04 = 0, $e = 0, $exitcond = 0, $exitcond7 = 0; + var $i$06 = 0, $i$15 = 0, $i$23 = 0, $i$32 = 0, $r = 0, $s = 0, $sext = 0, $sext1 = 0, $t = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 464|0; + $e = sp + 400|0; + $r = sp + 240|0; + $s = sp + 120|0; + $t = sp; + $i$06 = 0; + while(1) { + $0 = (($a) + ($i$06)|0); + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = $2 & 15; + $4 = $3&255; + $5 = $i$06 << 1; + $6 = (($e) + ($5)|0); + HEAP8[$6>>0] = $4; + $7 = HEAP8[$0>>0]|0; + $8 = ($7&255) >>> 4; + $9 = $5 | 1; + $10 = (($e) + ($9)|0); + HEAP8[$10>>0] = $8; + $11 = (($i$06) + 1)|0; + $exitcond7 = ($11|0)==(32); + if ($exitcond7) { + $carry$04 = 0;$i$15 = 0; + break; + } else { + $i$06 = $11; + } + } + while(1) { + $12 = (($e) + ($i$15)|0); + $13 = HEAP8[$12>>0]|0; + $14 = $13&255; + $15 = (($14) + ($carry$04))|0; + $sext = $15 << 24; + $sext1 = (($sext) + 134217728)|0; + $16 = $sext1 >> 28; + $17 = $16 << 4; + $18 = (($15) - ($17))|0; + $19 = $18&255; + HEAP8[$12>>0] = $19; + $20 = (($i$15) + 1)|0; + $exitcond = ($20|0)==(63); + if ($exitcond) { + break; + } else { + $carry$04 = $16;$i$15 = $20; + } + } + $21 = (($e) + 63|0); + $22 = HEAP8[$21>>0]|0; + $23 = $22&255; + $24 = (($23) + ($16))|0; + $25 = $24&255; + HEAP8[$21>>0] = $25; + _crypto_sign_ed25519_ref10_ge_p3_0($h); + $i$23 = 1; + while(1) { + $26 = (($i$23|0) / 2)&-1; + $27 = (($e) + ($i$23)|0); + $28 = HEAP8[$27>>0]|0; + _select($t,$26,$28); + _crypto_sign_ed25519_ref10_ge_madd($r,$h,$t); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); + $29 = (($i$23) + 2)|0; + $30 = ($29|0)<(64); + if ($30) { + $i$23 = $29; + } else { + break; + } + } + _crypto_sign_ed25519_ref10_ge_p3_dbl($r,$h); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); + _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); + _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); + _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); + $i$32 = 0; + while(1) { + $31 = (($i$32|0) / 2)&-1; + $32 = (($e) + ($i$32)|0); + $33 = HEAP8[$32>>0]|0; + _select($t,$31,$33); + _crypto_sign_ed25519_ref10_ge_madd($r,$h,$t); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); + $34 = (($i$32) + 2)|0; + $35 = ($34|0)<(64); + if ($35) { + $i$32 = $34; + } else { + break; + } + } + STACKTOP = sp;return; +} +function _select($t,$pos,$b) { + $t = $t|0; + $pos = $pos|0; + $b = $b|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $minust = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $minust = sp; + $0 = (_negative($b)|0); + $1 = $b << 24 >> 24; + $2 = $0&255; + $3 = (0 - ($2))|0; + $4 = $1 & $3; + $5 = $4 << 1; + $6 = (($1) - ($5))|0; + $7 = $6&255; + _crypto_sign_ed25519_ref10_ge_precomp_0($t); + $8 = (1120 + (($pos*960)|0)|0); + $9 = (_equal($7,1)|0); + _cmov($t,$8,$9); + $10 = ((1120 + (($pos*960)|0)|0) + 120|0); + $11 = (_equal($7,2)|0); + _cmov($t,$10,$11); + $12 = ((1120 + (($pos*960)|0)|0) + 240|0); + $13 = (_equal($7,3)|0); + _cmov($t,$12,$13); + $14 = ((1120 + (($pos*960)|0)|0) + 360|0); + $15 = (_equal($7,4)|0); + _cmov($t,$14,$15); + $16 = ((1120 + (($pos*960)|0)|0) + 480|0); + $17 = (_equal($7,5)|0); + _cmov($t,$16,$17); + $18 = ((1120 + (($pos*960)|0)|0) + 600|0); + $19 = (_equal($7,6)|0); + _cmov($t,$18,$19); + $20 = ((1120 + (($pos*960)|0)|0) + 720|0); + $21 = (_equal($7,7)|0); + _cmov($t,$20,$21); + $22 = ((1120 + (($pos*960)|0)|0) + 840|0); + $23 = (_equal($7,8)|0); + _cmov($t,$22,$23); + $24 = (($t) + 40|0); + _crypto_sign_ed25519_ref10_fe_copy($minust,$24); + $25 = (($minust) + 40|0); + _crypto_sign_ed25519_ref10_fe_copy($25,$t); + $26 = (($minust) + 80|0); + $27 = (($t) + 80|0); + _crypto_sign_ed25519_ref10_fe_neg($26,$27); + _cmov($t,$minust,$0); + STACKTOP = sp;return; +} +function _negative($b) { + $b = $b|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $b << 24 >> 24; + $1 = ($0|0)<(0); + $2 = $1 << 31 >> 31; + $3 = (_bitshift64Lshr(($0|0),($2|0),63)|0); + $4 = tempRet0; + $5 = $3&255; + STACKTOP = sp;return ($5|0); +} +function _equal($b,$c) { + $b = $b|0; + $c = $c|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $c ^ $b; + $1 = $0&255; + $2 = (($1) + -1)|0; + $3 = $2 >>> 31; + $4 = $3&255; + STACKTOP = sp;return ($4|0); +} +function _cmov($t,$u,$b) { + $t = $t|0; + $u = $u|0; + $b = $b|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $b&255; + _crypto_sign_ed25519_ref10_fe_cmov($t,$u,$0); + $1 = (($t) + 40|0); + $2 = (($u) + 40|0); + _crypto_sign_ed25519_ref10_fe_cmov($1,$2,$0); + $3 = (($t) + 80|0); + $4 = (($u) + 80|0); + _crypto_sign_ed25519_ref10_fe_cmov($3,$4,$0); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_sub($r,$p,$q) { + $r = $r|0; + $p = $p|0; + $q = $q|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $t0 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $t0 = sp; + $0 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); + $1 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); + $2 = (($r) + 80|0); + $3 = (($q) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($2,$r,$3); + _crypto_sign_ed25519_ref10_fe_mul($1,$1,$q); + $4 = (($r) + 120|0); + $5 = (($q) + 120|0); + $6 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); + $7 = (($p) + 80|0); + $8 = (($q) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($r,$7,$8); + _crypto_sign_ed25519_ref10_fe_add($t0,$r,$r); + _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); + _crypto_sign_ed25519_ref10_fe_sub($2,$t0,$4); + _crypto_sign_ed25519_ref10_fe_add($4,$t0,$4); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_tobytes($s,$h) { + $s = $s|0; + $h = $h|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $recip = 0, $x = 0, $y = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $recip = sp + 80|0; + $x = sp + 40|0; + $y = sp; + $0 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_invert($recip,$0); + _crypto_sign_ed25519_ref10_fe_mul($x,$h,$recip); + $1 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($y,$1,$recip); + _crypto_sign_ed25519_ref10_fe_tobytes($s,$y); + $2 = (_crypto_sign_ed25519_ref10_fe_isnegative($x)|0); + $3 = $2 << 7; + $4 = (($s) + 31|0); + $5 = HEAP8[$4>>0]|0; + $6 = $5&255; + $7 = $6 ^ $3; + $8 = $7&255; + HEAP8[$4>>0] = $8; + STACKTOP = sp;return; +} +function _crypto_sign_edwards25519sha512batch_ref10_open($m,$mlen,$sm,$0,$1,$pk) { + $m = $m|0; + $mlen = $mlen|0; + $sm = $sm|0; + $0 = $0|0; + $1 = $1|0; + $pk = $pk|0; + var $$0 = 0, $$sum = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $A = 0, $R = 0, $h = 0, $pkcopy1 = 0, $rcheck = 0, $rcopy = 0, $scopy = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 480|0; + $pkcopy1 = sp + 440|0; + $rcopy = sp + 408|0; + $scopy = sp + 376|0; + $h = sp + 312|0; + $rcheck = sp + 280|0; + $A = sp + 120|0; + $R = sp; + $2 = ($1>>>0)<(0); + $3 = ($0>>>0)<(64); + $4 = ($1|0)==(0); + $5 = $4 & $3; + $6 = $2 | $5; + if (!($6)) { + $7 = (($sm) + 63|0); + $8 = HEAP8[$7>>0]|0; + $9 = ($8&255)>(31); + if (!($9)) { + $10 = (_crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($A,$pk)|0); + $11 = ($10|0)==(0); + if ($11) { + dest=$pkcopy1+0|0; src=$pk+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + dest=$rcopy+0|0; src=$sm+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $12 = (($sm) + 32|0); + dest=$scopy+0|0; src=$12+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _memmove(($m|0),($sm|0),($0|0))|0; + $13 = (($m) + 32|0); + dest=$13+0|0; src=$pkcopy1+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + (_crypto_hash_sha512_ref($h,$m,$0,$1)|0); + _crypto_sign_ed25519_ref10_sc_reduce($h); + _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($R,$h,$A,$scopy); + _crypto_sign_ed25519_ref10_ge_tobytes($rcheck,$R); + $14 = (_crypto_verify_32_ref($rcheck,$rcopy)|0); + $15 = ($14|0)==(0); + if ($15) { + $16 = (($m) + 64|0); + $17 = (_i64Add(($0|0),($1|0),-64,-1)|0); + $18 = tempRet0; + _memmove(($m|0),($16|0),($17|0))|0; + $$sum = (($0) + -64)|0; + $19 = (($m) + ($$sum)|0); + dest=$19+0|0; stop=dest+64|0; do { HEAP8[dest>>0]=0|0; dest=dest+1|0; } while ((dest|0) < (stop|0)); + $20 = $mlen; + $21 = $20; + HEAP32[$21>>2] = $17; + $22 = (($20) + 4)|0; + $23 = $22; + HEAP32[$23>>2] = $18; + $$0 = 0; + STACKTOP = sp;return ($$0|0); + } + } + } + } + $24 = $mlen; + $25 = $24; + HEAP32[$25>>2] = -1; + $26 = (($24) + 4)|0; + $27 = $26; + HEAP32[$27>>2] = -1; + _memset(($m|0),0,($0|0))|0; + $$0 = -1; + STACKTOP = sp;return ($$0|0); +} +function _crypto_sign_ed25519_ref10_sc_muladd($s,$a,$b,$c) { + $s = $s|0; + $a = $a|0; + $b = $b|0; + $c = $c|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; + var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; + var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; + var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; + var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; + var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; + var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0; + var $1123 = 0, $1124 = 0, $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0; + var $1141 = 0, $1142 = 0, $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0; + var $116 = 0, $1160 = 0, $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0; + var $1178 = 0, $1179 = 0, $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0; + var $1196 = 0, $1197 = 0, $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0; + var $1213 = 0, $1214 = 0, $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0; + var $1231 = 0, $1232 = 0, $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0; + var $125 = 0, $1250 = 0, $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0; + var $1268 = 0, $1269 = 0, $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0; + var $1286 = 0, $1287 = 0, $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0; + var $1303 = 0, $1304 = 0, $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0; + var $1321 = 0, $1322 = 0, $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0; + var $134 = 0, $1340 = 0, $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0; + var $1358 = 0, $1359 = 0, $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0; + var $1376 = 0, $1377 = 0, $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0; + var $1394 = 0, $1395 = 0, $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0; + var $1411 = 0, $1412 = 0, $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0; + var $143 = 0, $1430 = 0, $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0; + var $1448 = 0, $1449 = 0, $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0; + var $1466 = 0, $1467 = 0, $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0; + var $1484 = 0, $1485 = 0, $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0; + var $1501 = 0, $1502 = 0, $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0; + var $152 = 0, $1520 = 0, $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0; + var $1538 = 0, $1539 = 0, $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0; + var $1556 = 0, $1557 = 0, $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0; + var $1574 = 0, $1575 = 0, $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0; + var $1592 = 0, $1593 = 0, $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0; + var $161 = 0, $1610 = 0, $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0; + var $1628 = 0, $1629 = 0, $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0; + var $1646 = 0, $1647 = 0, $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0; + var $1664 = 0, $1665 = 0, $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0; + var $1682 = 0, $1683 = 0, $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0; + var $170 = 0, $1700 = 0, $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0; + var $1718 = 0, $1719 = 0, $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0; + var $1736 = 0, $1737 = 0, $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0; + var $1754 = 0, $1755 = 0, $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0; + var $1772 = 0, $1773 = 0, $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0; + var $1790 = 0, $1791 = 0, $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0; + var $1808 = 0, $1809 = 0, $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0; + var $1826 = 0, $1827 = 0, $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0; + var $1844 = 0, $1845 = 0, $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0; + var $1862 = 0, $1863 = 0, $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $188 = 0, $189 = 0; + var $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0; + var $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0; + var $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0; + var $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0; + var $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0; + var $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0; + var $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0; + var $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0; + var $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0; + var $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0; + var $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0; + var $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0; + var $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0; + var $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0; + var $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0; + var $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0; + var $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0; + var $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0; + var $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0; + var $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0; + var $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0; + var $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0; + var $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0; + var $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0; + var $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0; + var $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0; + var $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0; + var $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0; + var $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0; + var $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0; + var $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0; + var $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0; + var $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0; + var $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0; + var $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0; + var $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0; + var $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0; + var $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0; + var $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0; + var $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0; + var $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0; + var $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0; + var $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0; + var $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0; + var $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + $0 = (_load_347($a)|0); + $1 = tempRet0; + $2 = $0 & 2097151; + $3 = (($a) + 2|0); + $4 = (_load_448($3)|0); + $5 = tempRet0; + $6 = (_bitshift64Lshr(($4|0),($5|0),5)|0); + $7 = tempRet0; + $8 = $6 & 2097151; + $9 = (($a) + 5|0); + $10 = (_load_347($9)|0); + $11 = tempRet0; + $12 = (_bitshift64Lshr(($10|0),($11|0),2)|0); + $13 = tempRet0; + $14 = $12 & 2097151; + $15 = (($a) + 7|0); + $16 = (_load_448($15)|0); + $17 = tempRet0; + $18 = (_bitshift64Lshr(($16|0),($17|0),7)|0); + $19 = tempRet0; + $20 = $18 & 2097151; + $21 = (($a) + 10|0); + $22 = (_load_448($21)|0); + $23 = tempRet0; + $24 = (_bitshift64Lshr(($22|0),($23|0),4)|0); + $25 = tempRet0; + $26 = $24 & 2097151; + $27 = (($a) + 13|0); + $28 = (_load_347($27)|0); + $29 = tempRet0; + $30 = (_bitshift64Lshr(($28|0),($29|0),1)|0); + $31 = tempRet0; + $32 = $30 & 2097151; + $33 = (($a) + 15|0); + $34 = (_load_448($33)|0); + $35 = tempRet0; + $36 = (_bitshift64Lshr(($34|0),($35|0),6)|0); + $37 = tempRet0; + $38 = $36 & 2097151; + $39 = (($a) + 18|0); + $40 = (_load_347($39)|0); + $41 = tempRet0; + $42 = (_bitshift64Lshr(($40|0),($41|0),3)|0); + $43 = tempRet0; + $44 = $42 & 2097151; + $45 = (($a) + 21|0); + $46 = (_load_347($45)|0); + $47 = tempRet0; + $48 = $46 & 2097151; + $49 = (($a) + 23|0); + $50 = (_load_448($49)|0); + $51 = tempRet0; + $52 = (_bitshift64Lshr(($50|0),($51|0),5)|0); + $53 = tempRet0; + $54 = $52 & 2097151; + $55 = (($a) + 26|0); + $56 = (_load_347($55)|0); + $57 = tempRet0; + $58 = (_bitshift64Lshr(($56|0),($57|0),2)|0); + $59 = tempRet0; + $60 = $58 & 2097151; + $61 = (($a) + 28|0); + $62 = (_load_448($61)|0); + $63 = tempRet0; + $64 = (_bitshift64Lshr(($62|0),($63|0),7)|0); + $65 = tempRet0; + $66 = (_load_347($b)|0); + $67 = tempRet0; + $68 = $66 & 2097151; + $69 = (($b) + 2|0); + $70 = (_load_448($69)|0); + $71 = tempRet0; + $72 = (_bitshift64Lshr(($70|0),($71|0),5)|0); + $73 = tempRet0; + $74 = $72 & 2097151; + $75 = (($b) + 5|0); + $76 = (_load_347($75)|0); + $77 = tempRet0; + $78 = (_bitshift64Lshr(($76|0),($77|0),2)|0); + $79 = tempRet0; + $80 = $78 & 2097151; + $81 = (($b) + 7|0); + $82 = (_load_448($81)|0); + $83 = tempRet0; + $84 = (_bitshift64Lshr(($82|0),($83|0),7)|0); + $85 = tempRet0; + $86 = $84 & 2097151; + $87 = (($b) + 10|0); + $88 = (_load_448($87)|0); + $89 = tempRet0; + $90 = (_bitshift64Lshr(($88|0),($89|0),4)|0); + $91 = tempRet0; + $92 = $90 & 2097151; + $93 = (($b) + 13|0); + $94 = (_load_347($93)|0); + $95 = tempRet0; + $96 = (_bitshift64Lshr(($94|0),($95|0),1)|0); + $97 = tempRet0; + $98 = $96 & 2097151; + $99 = (($b) + 15|0); + $100 = (_load_448($99)|0); + $101 = tempRet0; + $102 = (_bitshift64Lshr(($100|0),($101|0),6)|0); + $103 = tempRet0; + $104 = $102 & 2097151; + $105 = (($b) + 18|0); + $106 = (_load_347($105)|0); + $107 = tempRet0; + $108 = (_bitshift64Lshr(($106|0),($107|0),3)|0); + $109 = tempRet0; + $110 = $108 & 2097151; + $111 = (($b) + 21|0); + $112 = (_load_347($111)|0); + $113 = tempRet0; + $114 = $112 & 2097151; + $115 = (($b) + 23|0); + $116 = (_load_448($115)|0); + $117 = tempRet0; + $118 = (_bitshift64Lshr(($116|0),($117|0),5)|0); + $119 = tempRet0; + $120 = $118 & 2097151; + $121 = (($b) + 26|0); + $122 = (_load_347($121)|0); + $123 = tempRet0; + $124 = (_bitshift64Lshr(($122|0),($123|0),2)|0); + $125 = tempRet0; + $126 = $124 & 2097151; + $127 = (($b) + 28|0); + $128 = (_load_448($127)|0); + $129 = tempRet0; + $130 = (_bitshift64Lshr(($128|0),($129|0),7)|0); + $131 = tempRet0; + $132 = (_load_347($c)|0); + $133 = tempRet0; + $134 = $132 & 2097151; + $135 = (($c) + 2|0); + $136 = (_load_448($135)|0); + $137 = tempRet0; + $138 = (_bitshift64Lshr(($136|0),($137|0),5)|0); + $139 = tempRet0; + $140 = $138 & 2097151; + $141 = (($c) + 5|0); + $142 = (_load_347($141)|0); + $143 = tempRet0; + $144 = (_bitshift64Lshr(($142|0),($143|0),2)|0); + $145 = tempRet0; + $146 = $144 & 2097151; + $147 = (($c) + 7|0); + $148 = (_load_448($147)|0); + $149 = tempRet0; + $150 = (_bitshift64Lshr(($148|0),($149|0),7)|0); + $151 = tempRet0; + $152 = $150 & 2097151; + $153 = (($c) + 10|0); + $154 = (_load_448($153)|0); + $155 = tempRet0; + $156 = (_bitshift64Lshr(($154|0),($155|0),4)|0); + $157 = tempRet0; + $158 = $156 & 2097151; + $159 = (($c) + 13|0); + $160 = (_load_347($159)|0); + $161 = tempRet0; + $162 = (_bitshift64Lshr(($160|0),($161|0),1)|0); + $163 = tempRet0; + $164 = $162 & 2097151; + $165 = (($c) + 15|0); + $166 = (_load_448($165)|0); + $167 = tempRet0; + $168 = (_bitshift64Lshr(($166|0),($167|0),6)|0); + $169 = tempRet0; + $170 = $168 & 2097151; + $171 = (($c) + 18|0); + $172 = (_load_347($171)|0); + $173 = tempRet0; + $174 = (_bitshift64Lshr(($172|0),($173|0),3)|0); + $175 = tempRet0; + $176 = $174 & 2097151; + $177 = (($c) + 21|0); + $178 = (_load_347($177)|0); + $179 = tempRet0; + $180 = $178 & 2097151; + $181 = (($c) + 23|0); + $182 = (_load_448($181)|0); + $183 = tempRet0; + $184 = (_bitshift64Lshr(($182|0),($183|0),5)|0); + $185 = tempRet0; + $186 = $184 & 2097151; + $187 = (($c) + 26|0); + $188 = (_load_347($187)|0); + $189 = tempRet0; + $190 = (_bitshift64Lshr(($188|0),($189|0),2)|0); + $191 = tempRet0; + $192 = $190 & 2097151; + $193 = (($c) + 28|0); + $194 = (_load_448($193)|0); + $195 = tempRet0; + $196 = (_bitshift64Lshr(($194|0),($195|0),7)|0); + $197 = tempRet0; + $198 = (___muldi3(($68|0),0,($2|0),0)|0); + $199 = tempRet0; + $200 = (_i64Add(($134|0),0,($198|0),($199|0))|0); + $201 = tempRet0; + $202 = (___muldi3(($74|0),0,($2|0),0)|0); + $203 = tempRet0; + $204 = (___muldi3(($68|0),0,($8|0),0)|0); + $205 = tempRet0; + $206 = (___muldi3(($80|0),0,($2|0),0)|0); + $207 = tempRet0; + $208 = (___muldi3(($74|0),0,($8|0),0)|0); + $209 = tempRet0; + $210 = (___muldi3(($68|0),0,($14|0),0)|0); + $211 = tempRet0; + $212 = (_i64Add(($208|0),($209|0),($210|0),($211|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($212|0),($213|0),($206|0),($207|0))|0); + $215 = tempRet0; + $216 = (_i64Add(($214|0),($215|0),($146|0),0)|0); + $217 = tempRet0; + $218 = (___muldi3(($86|0),0,($2|0),0)|0); + $219 = tempRet0; + $220 = (___muldi3(($80|0),0,($8|0),0)|0); + $221 = tempRet0; + $222 = (___muldi3(($74|0),0,($14|0),0)|0); + $223 = tempRet0; + $224 = (___muldi3(($68|0),0,($20|0),0)|0); + $225 = tempRet0; + $226 = (___muldi3(($92|0),0,($2|0),0)|0); + $227 = tempRet0; + $228 = (___muldi3(($86|0),0,($8|0),0)|0); + $229 = tempRet0; + $230 = (___muldi3(($80|0),0,($14|0),0)|0); + $231 = tempRet0; + $232 = (___muldi3(($74|0),0,($20|0),0)|0); + $233 = tempRet0; + $234 = (___muldi3(($68|0),0,($26|0),0)|0); + $235 = tempRet0; + $236 = (_i64Add(($232|0),($233|0),($234|0),($235|0))|0); + $237 = tempRet0; + $238 = (_i64Add(($236|0),($237|0),($230|0),($231|0))|0); + $239 = tempRet0; + $240 = (_i64Add(($238|0),($239|0),($228|0),($229|0))|0); + $241 = tempRet0; + $242 = (_i64Add(($240|0),($241|0),($226|0),($227|0))|0); + $243 = tempRet0; + $244 = (_i64Add(($242|0),($243|0),($158|0),0)|0); + $245 = tempRet0; + $246 = (___muldi3(($98|0),0,($2|0),0)|0); + $247 = tempRet0; + $248 = (___muldi3(($92|0),0,($8|0),0)|0); + $249 = tempRet0; + $250 = (___muldi3(($86|0),0,($14|0),0)|0); + $251 = tempRet0; + $252 = (___muldi3(($80|0),0,($20|0),0)|0); + $253 = tempRet0; + $254 = (___muldi3(($74|0),0,($26|0),0)|0); + $255 = tempRet0; + $256 = (___muldi3(($68|0),0,($32|0),0)|0); + $257 = tempRet0; + $258 = (___muldi3(($104|0),0,($2|0),0)|0); + $259 = tempRet0; + $260 = (___muldi3(($98|0),0,($8|0),0)|0); + $261 = tempRet0; + $262 = (___muldi3(($92|0),0,($14|0),0)|0); + $263 = tempRet0; + $264 = (___muldi3(($86|0),0,($20|0),0)|0); + $265 = tempRet0; + $266 = (___muldi3(($80|0),0,($26|0),0)|0); + $267 = tempRet0; + $268 = (___muldi3(($74|0),0,($32|0),0)|0); + $269 = tempRet0; + $270 = (___muldi3(($68|0),0,($38|0),0)|0); + $271 = tempRet0; + $272 = (_i64Add(($268|0),($269|0),($270|0),($271|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($266|0),($267|0))|0); + $275 = tempRet0; + $276 = (_i64Add(($274|0),($275|0),($264|0),($265|0))|0); + $277 = tempRet0; + $278 = (_i64Add(($276|0),($277|0),($262|0),($263|0))|0); + $279 = tempRet0; + $280 = (_i64Add(($278|0),($279|0),($260|0),($261|0))|0); + $281 = tempRet0; + $282 = (_i64Add(($280|0),($281|0),($258|0),($259|0))|0); + $283 = tempRet0; + $284 = (_i64Add(($282|0),($283|0),($170|0),0)|0); + $285 = tempRet0; + $286 = (___muldi3(($110|0),0,($2|0),0)|0); + $287 = tempRet0; + $288 = (___muldi3(($104|0),0,($8|0),0)|0); + $289 = tempRet0; + $290 = (___muldi3(($98|0),0,($14|0),0)|0); + $291 = tempRet0; + $292 = (___muldi3(($92|0),0,($20|0),0)|0); + $293 = tempRet0; + $294 = (___muldi3(($86|0),0,($26|0),0)|0); + $295 = tempRet0; + $296 = (___muldi3(($80|0),0,($32|0),0)|0); + $297 = tempRet0; + $298 = (___muldi3(($74|0),0,($38|0),0)|0); + $299 = tempRet0; + $300 = (___muldi3(($68|0),0,($44|0),0)|0); + $301 = tempRet0; + $302 = (___muldi3(($114|0),0,($2|0),0)|0); + $303 = tempRet0; + $304 = (___muldi3(($110|0),0,($8|0),0)|0); + $305 = tempRet0; + $306 = (___muldi3(($104|0),0,($14|0),0)|0); + $307 = tempRet0; + $308 = (___muldi3(($98|0),0,($20|0),0)|0); + $309 = tempRet0; + $310 = (___muldi3(($92|0),0,($26|0),0)|0); + $311 = tempRet0; + $312 = (___muldi3(($86|0),0,($32|0),0)|0); + $313 = tempRet0; + $314 = (___muldi3(($80|0),0,($38|0),0)|0); + $315 = tempRet0; + $316 = (___muldi3(($74|0),0,($44|0),0)|0); + $317 = tempRet0; + $318 = (___muldi3(($68|0),0,($48|0),0)|0); + $319 = tempRet0; + $320 = (_i64Add(($316|0),($317|0),($318|0),($319|0))|0); + $321 = tempRet0; + $322 = (_i64Add(($320|0),($321|0),($314|0),($315|0))|0); + $323 = tempRet0; + $324 = (_i64Add(($322|0),($323|0),($312|0),($313|0))|0); + $325 = tempRet0; + $326 = (_i64Add(($324|0),($325|0),($310|0),($311|0))|0); + $327 = tempRet0; + $328 = (_i64Add(($326|0),($327|0),($308|0),($309|0))|0); + $329 = tempRet0; + $330 = (_i64Add(($328|0),($329|0),($306|0),($307|0))|0); + $331 = tempRet0; + $332 = (_i64Add(($330|0),($331|0),($302|0),($303|0))|0); + $333 = tempRet0; + $334 = (_i64Add(($332|0),($333|0),($304|0),($305|0))|0); + $335 = tempRet0; + $336 = (_i64Add(($334|0),($335|0),($180|0),0)|0); + $337 = tempRet0; + $338 = (___muldi3(($120|0),0,($2|0),0)|0); + $339 = tempRet0; + $340 = (___muldi3(($114|0),0,($8|0),0)|0); + $341 = tempRet0; + $342 = (___muldi3(($110|0),0,($14|0),0)|0); + $343 = tempRet0; + $344 = (___muldi3(($104|0),0,($20|0),0)|0); + $345 = tempRet0; + $346 = (___muldi3(($98|0),0,($26|0),0)|0); + $347 = tempRet0; + $348 = (___muldi3(($92|0),0,($32|0),0)|0); + $349 = tempRet0; + $350 = (___muldi3(($86|0),0,($38|0),0)|0); + $351 = tempRet0; + $352 = (___muldi3(($80|0),0,($44|0),0)|0); + $353 = tempRet0; + $354 = (___muldi3(($74|0),0,($48|0),0)|0); + $355 = tempRet0; + $356 = (___muldi3(($68|0),0,($54|0),0)|0); + $357 = tempRet0; + $358 = (___muldi3(($126|0),0,($2|0),0)|0); + $359 = tempRet0; + $360 = (___muldi3(($120|0),0,($8|0),0)|0); + $361 = tempRet0; + $362 = (___muldi3(($114|0),0,($14|0),0)|0); + $363 = tempRet0; + $364 = (___muldi3(($110|0),0,($20|0),0)|0); + $365 = tempRet0; + $366 = (___muldi3(($104|0),0,($26|0),0)|0); + $367 = tempRet0; + $368 = (___muldi3(($98|0),0,($32|0),0)|0); + $369 = tempRet0; + $370 = (___muldi3(($92|0),0,($38|0),0)|0); + $371 = tempRet0; + $372 = (___muldi3(($86|0),0,($44|0),0)|0); + $373 = tempRet0; + $374 = (___muldi3(($80|0),0,($48|0),0)|0); + $375 = tempRet0; + $376 = (___muldi3(($74|0),0,($54|0),0)|0); + $377 = tempRet0; + $378 = (___muldi3(($68|0),0,($60|0),0)|0); + $379 = tempRet0; + $380 = (_i64Add(($376|0),($377|0),($378|0),($379|0))|0); + $381 = tempRet0; + $382 = (_i64Add(($380|0),($381|0),($374|0),($375|0))|0); + $383 = tempRet0; + $384 = (_i64Add(($382|0),($383|0),($372|0),($373|0))|0); + $385 = tempRet0; + $386 = (_i64Add(($384|0),($385|0),($370|0),($371|0))|0); + $387 = tempRet0; + $388 = (_i64Add(($386|0),($387|0),($368|0),($369|0))|0); + $389 = tempRet0; + $390 = (_i64Add(($388|0),($389|0),($366|0),($367|0))|0); + $391 = tempRet0; + $392 = (_i64Add(($390|0),($391|0),($362|0),($363|0))|0); + $393 = tempRet0; + $394 = (_i64Add(($392|0),($393|0),($364|0),($365|0))|0); + $395 = tempRet0; + $396 = (_i64Add(($394|0),($395|0),($360|0),($361|0))|0); + $397 = tempRet0; + $398 = (_i64Add(($396|0),($397|0),($358|0),($359|0))|0); + $399 = tempRet0; + $400 = (_i64Add(($398|0),($399|0),($192|0),0)|0); + $401 = tempRet0; + $402 = (___muldi3(($130|0),($131|0),($2|0),0)|0); + $403 = tempRet0; + $404 = (___muldi3(($126|0),0,($8|0),0)|0); + $405 = tempRet0; + $406 = (___muldi3(($120|0),0,($14|0),0)|0); + $407 = tempRet0; + $408 = (___muldi3(($114|0),0,($20|0),0)|0); + $409 = tempRet0; + $410 = (___muldi3(($110|0),0,($26|0),0)|0); + $411 = tempRet0; + $412 = (___muldi3(($104|0),0,($32|0),0)|0); + $413 = tempRet0; + $414 = (___muldi3(($98|0),0,($38|0),0)|0); + $415 = tempRet0; + $416 = (___muldi3(($92|0),0,($44|0),0)|0); + $417 = tempRet0; + $418 = (___muldi3(($86|0),0,($48|0),0)|0); + $419 = tempRet0; + $420 = (___muldi3(($80|0),0,($54|0),0)|0); + $421 = tempRet0; + $422 = (___muldi3(($74|0),0,($60|0),0)|0); + $423 = tempRet0; + $424 = (___muldi3(($68|0),0,($64|0),($65|0))|0); + $425 = tempRet0; + $426 = (___muldi3(($130|0),($131|0),($8|0),0)|0); + $427 = tempRet0; + $428 = (___muldi3(($126|0),0,($14|0),0)|0); + $429 = tempRet0; + $430 = (___muldi3(($120|0),0,($20|0),0)|0); + $431 = tempRet0; + $432 = (___muldi3(($114|0),0,($26|0),0)|0); + $433 = tempRet0; + $434 = (___muldi3(($110|0),0,($32|0),0)|0); + $435 = tempRet0; + $436 = (___muldi3(($104|0),0,($38|0),0)|0); + $437 = tempRet0; + $438 = (___muldi3(($98|0),0,($44|0),0)|0); + $439 = tempRet0; + $440 = (___muldi3(($92|0),0,($48|0),0)|0); + $441 = tempRet0; + $442 = (___muldi3(($86|0),0,($54|0),0)|0); + $443 = tempRet0; + $444 = (___muldi3(($80|0),0,($60|0),0)|0); + $445 = tempRet0; + $446 = (___muldi3(($74|0),0,($64|0),($65|0))|0); + $447 = tempRet0; + $448 = (_i64Add(($444|0),($445|0),($446|0),($447|0))|0); + $449 = tempRet0; + $450 = (_i64Add(($448|0),($449|0),($442|0),($443|0))|0); + $451 = tempRet0; + $452 = (_i64Add(($450|0),($451|0),($440|0),($441|0))|0); + $453 = tempRet0; + $454 = (_i64Add(($452|0),($453|0),($438|0),($439|0))|0); + $455 = tempRet0; + $456 = (_i64Add(($454|0),($455|0),($436|0),($437|0))|0); + $457 = tempRet0; + $458 = (_i64Add(($456|0),($457|0),($432|0),($433|0))|0); + $459 = tempRet0; + $460 = (_i64Add(($458|0),($459|0),($434|0),($435|0))|0); + $461 = tempRet0; + $462 = (_i64Add(($460|0),($461|0),($430|0),($431|0))|0); + $463 = tempRet0; + $464 = (_i64Add(($462|0),($463|0),($428|0),($429|0))|0); + $465 = tempRet0; + $466 = (_i64Add(($464|0),($465|0),($426|0),($427|0))|0); + $467 = tempRet0; + $468 = (___muldi3(($130|0),($131|0),($14|0),0)|0); + $469 = tempRet0; + $470 = (___muldi3(($126|0),0,($20|0),0)|0); + $471 = tempRet0; + $472 = (___muldi3(($120|0),0,($26|0),0)|0); + $473 = tempRet0; + $474 = (___muldi3(($114|0),0,($32|0),0)|0); + $475 = tempRet0; + $476 = (___muldi3(($110|0),0,($38|0),0)|0); + $477 = tempRet0; + $478 = (___muldi3(($104|0),0,($44|0),0)|0); + $479 = tempRet0; + $480 = (___muldi3(($98|0),0,($48|0),0)|0); + $481 = tempRet0; + $482 = (___muldi3(($92|0),0,($54|0),0)|0); + $483 = tempRet0; + $484 = (___muldi3(($86|0),0,($60|0),0)|0); + $485 = tempRet0; + $486 = (___muldi3(($80|0),0,($64|0),($65|0))|0); + $487 = tempRet0; + $488 = (___muldi3(($130|0),($131|0),($20|0),0)|0); + $489 = tempRet0; + $490 = (___muldi3(($126|0),0,($26|0),0)|0); + $491 = tempRet0; + $492 = (___muldi3(($120|0),0,($32|0),0)|0); + $493 = tempRet0; + $494 = (___muldi3(($114|0),0,($38|0),0)|0); + $495 = tempRet0; + $496 = (___muldi3(($110|0),0,($44|0),0)|0); + $497 = tempRet0; + $498 = (___muldi3(($104|0),0,($48|0),0)|0); + $499 = tempRet0; + $500 = (___muldi3(($98|0),0,($54|0),0)|0); + $501 = tempRet0; + $502 = (___muldi3(($92|0),0,($60|0),0)|0); + $503 = tempRet0; + $504 = (___muldi3(($86|0),0,($64|0),($65|0))|0); + $505 = tempRet0; + $506 = (_i64Add(($502|0),($503|0),($504|0),($505|0))|0); + $507 = tempRet0; + $508 = (_i64Add(($506|0),($507|0),($500|0),($501|0))|0); + $509 = tempRet0; + $510 = (_i64Add(($508|0),($509|0),($498|0),($499|0))|0); + $511 = tempRet0; + $512 = (_i64Add(($510|0),($511|0),($494|0),($495|0))|0); + $513 = tempRet0; + $514 = (_i64Add(($512|0),($513|0),($496|0),($497|0))|0); + $515 = tempRet0; + $516 = (_i64Add(($514|0),($515|0),($492|0),($493|0))|0); + $517 = tempRet0; + $518 = (_i64Add(($516|0),($517|0),($490|0),($491|0))|0); + $519 = tempRet0; + $520 = (_i64Add(($518|0),($519|0),($488|0),($489|0))|0); + $521 = tempRet0; + $522 = (___muldi3(($130|0),($131|0),($26|0),0)|0); + $523 = tempRet0; + $524 = (___muldi3(($126|0),0,($32|0),0)|0); + $525 = tempRet0; + $526 = (___muldi3(($120|0),0,($38|0),0)|0); + $527 = tempRet0; + $528 = (___muldi3(($114|0),0,($44|0),0)|0); + $529 = tempRet0; + $530 = (___muldi3(($110|0),0,($48|0),0)|0); + $531 = tempRet0; + $532 = (___muldi3(($104|0),0,($54|0),0)|0); + $533 = tempRet0; + $534 = (___muldi3(($98|0),0,($60|0),0)|0); + $535 = tempRet0; + $536 = (___muldi3(($92|0),0,($64|0),($65|0))|0); + $537 = tempRet0; + $538 = (___muldi3(($130|0),($131|0),($32|0),0)|0); + $539 = tempRet0; + $540 = (___muldi3(($126|0),0,($38|0),0)|0); + $541 = tempRet0; + $542 = (___muldi3(($120|0),0,($44|0),0)|0); + $543 = tempRet0; + $544 = (___muldi3(($114|0),0,($48|0),0)|0); + $545 = tempRet0; + $546 = (___muldi3(($110|0),0,($54|0),0)|0); + $547 = tempRet0; + $548 = (___muldi3(($104|0),0,($60|0),0)|0); + $549 = tempRet0; + $550 = (___muldi3(($98|0),0,($64|0),($65|0))|0); + $551 = tempRet0; + $552 = (_i64Add(($548|0),($549|0),($550|0),($551|0))|0); + $553 = tempRet0; + $554 = (_i64Add(($552|0),($553|0),($544|0),($545|0))|0); + $555 = tempRet0; + $556 = (_i64Add(($554|0),($555|0),($546|0),($547|0))|0); + $557 = tempRet0; + $558 = (_i64Add(($556|0),($557|0),($542|0),($543|0))|0); + $559 = tempRet0; + $560 = (_i64Add(($558|0),($559|0),($540|0),($541|0))|0); + $561 = tempRet0; + $562 = (_i64Add(($560|0),($561|0),($538|0),($539|0))|0); + $563 = tempRet0; + $564 = (___muldi3(($130|0),($131|0),($38|0),0)|0); + $565 = tempRet0; + $566 = (___muldi3(($126|0),0,($44|0),0)|0); + $567 = tempRet0; + $568 = (___muldi3(($120|0),0,($48|0),0)|0); + $569 = tempRet0; + $570 = (___muldi3(($114|0),0,($54|0),0)|0); + $571 = tempRet0; + $572 = (___muldi3(($110|0),0,($60|0),0)|0); + $573 = tempRet0; + $574 = (___muldi3(($104|0),0,($64|0),($65|0))|0); + $575 = tempRet0; + $576 = (___muldi3(($130|0),($131|0),($44|0),0)|0); + $577 = tempRet0; + $578 = (___muldi3(($126|0),0,($48|0),0)|0); + $579 = tempRet0; + $580 = (___muldi3(($120|0),0,($54|0),0)|0); + $581 = tempRet0; + $582 = (___muldi3(($114|0),0,($60|0),0)|0); + $583 = tempRet0; + $584 = (___muldi3(($110|0),0,($64|0),($65|0))|0); + $585 = tempRet0; + $586 = (_i64Add(($584|0),($585|0),($582|0),($583|0))|0); + $587 = tempRet0; + $588 = (_i64Add(($586|0),($587|0),($580|0),($581|0))|0); + $589 = tempRet0; + $590 = (_i64Add(($588|0),($589|0),($578|0),($579|0))|0); + $591 = tempRet0; + $592 = (_i64Add(($590|0),($591|0),($576|0),($577|0))|0); + $593 = tempRet0; + $594 = (___muldi3(($130|0),($131|0),($48|0),0)|0); + $595 = tempRet0; + $596 = (___muldi3(($126|0),0,($54|0),0)|0); + $597 = tempRet0; + $598 = (___muldi3(($120|0),0,($60|0),0)|0); + $599 = tempRet0; + $600 = (___muldi3(($114|0),0,($64|0),($65|0))|0); + $601 = tempRet0; + $602 = (___muldi3(($130|0),($131|0),($54|0),0)|0); + $603 = tempRet0; + $604 = (___muldi3(($126|0),0,($60|0),0)|0); + $605 = tempRet0; + $606 = (___muldi3(($120|0),0,($64|0),($65|0))|0); + $607 = tempRet0; + $608 = (_i64Add(($604|0),($605|0),($606|0),($607|0))|0); + $609 = tempRet0; + $610 = (_i64Add(($608|0),($609|0),($602|0),($603|0))|0); + $611 = tempRet0; + $612 = (___muldi3(($130|0),($131|0),($60|0),0)|0); + $613 = tempRet0; + $614 = (___muldi3(($126|0),0,($64|0),($65|0))|0); + $615 = tempRet0; + $616 = (_i64Add(($612|0),($613|0),($614|0),($615|0))|0); + $617 = tempRet0; + $618 = (___muldi3(($130|0),($131|0),($64|0),($65|0))|0); + $619 = tempRet0; + $620 = (_i64Add(($200|0),($201|0),1048576,0)|0); + $621 = tempRet0; + $622 = (_bitshift64Lshr(($620|0),($621|0),21)|0); + $623 = tempRet0; + $624 = (_i64Add(($202|0),($203|0),($204|0),($205|0))|0); + $625 = tempRet0; + $626 = (_i64Add(($624|0),($625|0),($140|0),0)|0); + $627 = tempRet0; + $628 = (_i64Add(($626|0),($627|0),($622|0),($623|0))|0); + $629 = tempRet0; + $630 = (_bitshift64Shl(($622|0),($623|0),21)|0); + $631 = tempRet0; + $632 = (_i64Subtract(($200|0),($201|0),($630|0),($631|0))|0); + $633 = tempRet0; + $634 = (_i64Add(($216|0),($217|0),1048576,0)|0); + $635 = tempRet0; + $636 = (_bitshift64Lshr(($634|0),($635|0),21)|0); + $637 = tempRet0; + $638 = (_i64Add(($222|0),($223|0),($224|0),($225|0))|0); + $639 = tempRet0; + $640 = (_i64Add(($638|0),($639|0),($220|0),($221|0))|0); + $641 = tempRet0; + $642 = (_i64Add(($640|0),($641|0),($218|0),($219|0))|0); + $643 = tempRet0; + $644 = (_i64Add(($642|0),($643|0),($152|0),0)|0); + $645 = tempRet0; + $646 = (_i64Add(($644|0),($645|0),($636|0),($637|0))|0); + $647 = tempRet0; + $648 = (_bitshift64Shl(($636|0),($637|0),21)|0); + $649 = tempRet0; + $650 = (_i64Add(($244|0),($245|0),1048576,0)|0); + $651 = tempRet0; + $652 = (_bitshift64Ashr(($650|0),($651|0),21)|0); + $653 = tempRet0; + $654 = (_i64Add(($254|0),($255|0),($256|0),($257|0))|0); + $655 = tempRet0; + $656 = (_i64Add(($654|0),($655|0),($252|0),($253|0))|0); + $657 = tempRet0; + $658 = (_i64Add(($656|0),($657|0),($250|0),($251|0))|0); + $659 = tempRet0; + $660 = (_i64Add(($658|0),($659|0),($248|0),($249|0))|0); + $661 = tempRet0; + $662 = (_i64Add(($660|0),($661|0),($246|0),($247|0))|0); + $663 = tempRet0; + $664 = (_i64Add(($662|0),($663|0),($164|0),0)|0); + $665 = tempRet0; + $666 = (_i64Add(($664|0),($665|0),($652|0),($653|0))|0); + $667 = tempRet0; + $668 = (_bitshift64Shl(($652|0),($653|0),21)|0); + $669 = tempRet0; + $670 = (_i64Subtract(($244|0),($245|0),($668|0),($669|0))|0); + $671 = tempRet0; + $672 = (_i64Add(($284|0),($285|0),1048576,0)|0); + $673 = tempRet0; + $674 = (_bitshift64Ashr(($672|0),($673|0),21)|0); + $675 = tempRet0; + $676 = (_i64Add(($298|0),($299|0),($300|0),($301|0))|0); + $677 = tempRet0; + $678 = (_i64Add(($676|0),($677|0),($296|0),($297|0))|0); + $679 = tempRet0; + $680 = (_i64Add(($678|0),($679|0),($294|0),($295|0))|0); + $681 = tempRet0; + $682 = (_i64Add(($680|0),($681|0),($292|0),($293|0))|0); + $683 = tempRet0; + $684 = (_i64Add(($682|0),($683|0),($290|0),($291|0))|0); + $685 = tempRet0; + $686 = (_i64Add(($684|0),($685|0),($288|0),($289|0))|0); + $687 = tempRet0; + $688 = (_i64Add(($686|0),($687|0),($286|0),($287|0))|0); + $689 = tempRet0; + $690 = (_i64Add(($688|0),($689|0),($176|0),0)|0); + $691 = tempRet0; + $692 = (_i64Add(($690|0),($691|0),($674|0),($675|0))|0); + $693 = tempRet0; + $694 = (_bitshift64Shl(($674|0),($675|0),21)|0); + $695 = tempRet0; + $696 = (_i64Add(($336|0),($337|0),1048576,0)|0); + $697 = tempRet0; + $698 = (_bitshift64Ashr(($696|0),($697|0),21)|0); + $699 = tempRet0; + $700 = (_i64Add(($354|0),($355|0),($356|0),($357|0))|0); + $701 = tempRet0; + $702 = (_i64Add(($700|0),($701|0),($352|0),($353|0))|0); + $703 = tempRet0; + $704 = (_i64Add(($702|0),($703|0),($350|0),($351|0))|0); + $705 = tempRet0; + $706 = (_i64Add(($704|0),($705|0),($348|0),($349|0))|0); + $707 = tempRet0; + $708 = (_i64Add(($706|0),($707|0),($346|0),($347|0))|0); + $709 = tempRet0; + $710 = (_i64Add(($708|0),($709|0),($344|0),($345|0))|0); + $711 = tempRet0; + $712 = (_i64Add(($710|0),($711|0),($340|0),($341|0))|0); + $713 = tempRet0; + $714 = (_i64Add(($712|0),($713|0),($342|0),($343|0))|0); + $715 = tempRet0; + $716 = (_i64Add(($714|0),($715|0),($338|0),($339|0))|0); + $717 = tempRet0; + $718 = (_i64Add(($716|0),($717|0),($186|0),0)|0); + $719 = tempRet0; + $720 = (_i64Add(($718|0),($719|0),($698|0),($699|0))|0); + $721 = tempRet0; + $722 = (_bitshift64Shl(($698|0),($699|0),21)|0); + $723 = tempRet0; + $724 = (_i64Add(($400|0),($401|0),1048576,0)|0); + $725 = tempRet0; + $726 = (_bitshift64Ashr(($724|0),($725|0),21)|0); + $727 = tempRet0; + $728 = (_i64Add(($422|0),($423|0),($424|0),($425|0))|0); + $729 = tempRet0; + $730 = (_i64Add(($728|0),($729|0),($420|0),($421|0))|0); + $731 = tempRet0; + $732 = (_i64Add(($730|0),($731|0),($418|0),($419|0))|0); + $733 = tempRet0; + $734 = (_i64Add(($732|0),($733|0),($416|0),($417|0))|0); + $735 = tempRet0; + $736 = (_i64Add(($734|0),($735|0),($414|0),($415|0))|0); + $737 = tempRet0; + $738 = (_i64Add(($736|0),($737|0),($412|0),($413|0))|0); + $739 = tempRet0; + $740 = (_i64Add(($738|0),($739|0),($408|0),($409|0))|0); + $741 = tempRet0; + $742 = (_i64Add(($740|0),($741|0),($410|0),($411|0))|0); + $743 = tempRet0; + $744 = (_i64Add(($742|0),($743|0),($406|0),($407|0))|0); + $745 = tempRet0; + $746 = (_i64Add(($744|0),($745|0),($402|0),($403|0))|0); + $747 = tempRet0; + $748 = (_i64Add(($746|0),($747|0),($404|0),($405|0))|0); + $749 = tempRet0; + $750 = (_i64Add(($748|0),($749|0),($196|0),($197|0))|0); + $751 = tempRet0; + $752 = (_i64Add(($750|0),($751|0),($726|0),($727|0))|0); + $753 = tempRet0; + $754 = (_bitshift64Shl(($726|0),($727|0),21)|0); + $755 = tempRet0; + $756 = (_i64Add(($466|0),($467|0),1048576,0)|0); + $757 = tempRet0; + $758 = (_bitshift64Ashr(($756|0),($757|0),21)|0); + $759 = tempRet0; + $760 = (_i64Add(($484|0),($485|0),($486|0),($487|0))|0); + $761 = tempRet0; + $762 = (_i64Add(($760|0),($761|0),($482|0),($483|0))|0); + $763 = tempRet0; + $764 = (_i64Add(($762|0),($763|0),($480|0),($481|0))|0); + $765 = tempRet0; + $766 = (_i64Add(($764|0),($765|0),($478|0),($479|0))|0); + $767 = tempRet0; + $768 = (_i64Add(($766|0),($767|0),($474|0),($475|0))|0); + $769 = tempRet0; + $770 = (_i64Add(($768|0),($769|0),($476|0),($477|0))|0); + $771 = tempRet0; + $772 = (_i64Add(($770|0),($771|0),($472|0),($473|0))|0); + $773 = tempRet0; + $774 = (_i64Add(($772|0),($773|0),($470|0),($471|0))|0); + $775 = tempRet0; + $776 = (_i64Add(($774|0),($775|0),($468|0),($469|0))|0); + $777 = tempRet0; + $778 = (_i64Add(($776|0),($777|0),($758|0),($759|0))|0); + $779 = tempRet0; + $780 = (_bitshift64Shl(($758|0),($759|0),21)|0); + $781 = tempRet0; + $782 = (_i64Add(($520|0),($521|0),1048576,0)|0); + $783 = tempRet0; + $784 = (_bitshift64Ashr(($782|0),($783|0),21)|0); + $785 = tempRet0; + $786 = (_i64Add(($534|0),($535|0),($536|0),($537|0))|0); + $787 = tempRet0; + $788 = (_i64Add(($786|0),($787|0),($532|0),($533|0))|0); + $789 = tempRet0; + $790 = (_i64Add(($788|0),($789|0),($528|0),($529|0))|0); + $791 = tempRet0; + $792 = (_i64Add(($790|0),($791|0),($530|0),($531|0))|0); + $793 = tempRet0; + $794 = (_i64Add(($792|0),($793|0),($526|0),($527|0))|0); + $795 = tempRet0; + $796 = (_i64Add(($794|0),($795|0),($524|0),($525|0))|0); + $797 = tempRet0; + $798 = (_i64Add(($796|0),($797|0),($522|0),($523|0))|0); + $799 = tempRet0; + $800 = (_i64Add(($798|0),($799|0),($784|0),($785|0))|0); + $801 = tempRet0; + $802 = (_bitshift64Shl(($784|0),($785|0),21)|0); + $803 = tempRet0; + $804 = (_i64Add(($562|0),($563|0),1048576,0)|0); + $805 = tempRet0; + $806 = (_bitshift64Ashr(($804|0),($805|0),21)|0); + $807 = tempRet0; + $808 = (_i64Add(($570|0),($571|0),($574|0),($575|0))|0); + $809 = tempRet0; + $810 = (_i64Add(($808|0),($809|0),($572|0),($573|0))|0); + $811 = tempRet0; + $812 = (_i64Add(($810|0),($811|0),($568|0),($569|0))|0); + $813 = tempRet0; + $814 = (_i64Add(($812|0),($813|0),($566|0),($567|0))|0); + $815 = tempRet0; + $816 = (_i64Add(($814|0),($815|0),($564|0),($565|0))|0); + $817 = tempRet0; + $818 = (_i64Add(($816|0),($817|0),($806|0),($807|0))|0); + $819 = tempRet0; + $820 = (_bitshift64Shl(($806|0),($807|0),21)|0); + $821 = tempRet0; + $822 = (_i64Add(($592|0),($593|0),1048576,0)|0); + $823 = tempRet0; + $824 = (_bitshift64Ashr(($822|0),($823|0),21)|0); + $825 = tempRet0; + $826 = (_i64Add(($598|0),($599|0),($600|0),($601|0))|0); + $827 = tempRet0; + $828 = (_i64Add(($826|0),($827|0),($596|0),($597|0))|0); + $829 = tempRet0; + $830 = (_i64Add(($828|0),($829|0),($594|0),($595|0))|0); + $831 = tempRet0; + $832 = (_i64Add(($830|0),($831|0),($824|0),($825|0))|0); + $833 = tempRet0; + $834 = (_bitshift64Shl(($824|0),($825|0),21)|0); + $835 = tempRet0; + $836 = (_i64Subtract(($592|0),($593|0),($834|0),($835|0))|0); + $837 = tempRet0; + $838 = (_i64Add(($610|0),($611|0),1048576,0)|0); + $839 = tempRet0; + $840 = (_bitshift64Lshr(($838|0),($839|0),21)|0); + $841 = tempRet0; + $842 = (_i64Add(($616|0),($617|0),($840|0),($841|0))|0); + $843 = tempRet0; + $844 = (_bitshift64Shl(($840|0),($841|0),21)|0); + $845 = tempRet0; + $846 = (_i64Subtract(($610|0),($611|0),($844|0),($845|0))|0); + $847 = tempRet0; + $848 = (_i64Add(($618|0),($619|0),1048576,0)|0); + $849 = tempRet0; + $850 = (_bitshift64Lshr(($848|0),($849|0),21)|0); + $851 = tempRet0; + $852 = (_bitshift64Shl(($850|0),($851|0),21)|0); + $853 = tempRet0; + $854 = (_i64Subtract(($618|0),($619|0),($852|0),($853|0))|0); + $855 = tempRet0; + $856 = (_i64Add(($628|0),($629|0),1048576,0)|0); + $857 = tempRet0; + $858 = (_bitshift64Lshr(($856|0),($857|0),21)|0); + $859 = tempRet0; + $860 = (_bitshift64Shl(($858|0),($859|0),21)|0); + $861 = tempRet0; + $862 = (_i64Subtract(($628|0),($629|0),($860|0),($861|0))|0); + $863 = tempRet0; + $864 = (_i64Add(($646|0),($647|0),1048576,0)|0); + $865 = tempRet0; + $866 = (_bitshift64Ashr(($864|0),($865|0),21)|0); + $867 = tempRet0; + $868 = (_i64Add(($670|0),($671|0),($866|0),($867|0))|0); + $869 = tempRet0; + $870 = (_bitshift64Shl(($866|0),($867|0),21)|0); + $871 = tempRet0; + $872 = (_i64Subtract(($646|0),($647|0),($870|0),($871|0))|0); + $873 = tempRet0; + $874 = (_i64Add(($666|0),($667|0),1048576,0)|0); + $875 = tempRet0; + $876 = (_bitshift64Ashr(($874|0),($875|0),21)|0); + $877 = tempRet0; + $878 = (_bitshift64Shl(($876|0),($877|0),21)|0); + $879 = tempRet0; + $880 = (_i64Subtract(($666|0),($667|0),($878|0),($879|0))|0); + $881 = tempRet0; + $882 = (_i64Add(($692|0),($693|0),1048576,0)|0); + $883 = tempRet0; + $884 = (_bitshift64Ashr(($882|0),($883|0),21)|0); + $885 = tempRet0; + $886 = (_bitshift64Shl(($884|0),($885|0),21)|0); + $887 = tempRet0; + $888 = (_i64Add(($720|0),($721|0),1048576,0)|0); + $889 = tempRet0; + $890 = (_bitshift64Ashr(($888|0),($889|0),21)|0); + $891 = tempRet0; + $892 = (_bitshift64Shl(($890|0),($891|0),21)|0); + $893 = tempRet0; + $894 = (_i64Add(($752|0),($753|0),1048576,0)|0); + $895 = tempRet0; + $896 = (_bitshift64Ashr(($894|0),($895|0),21)|0); + $897 = tempRet0; + $898 = (_bitshift64Shl(($896|0),($897|0),21)|0); + $899 = tempRet0; + $900 = (_i64Add(($778|0),($779|0),1048576,0)|0); + $901 = tempRet0; + $902 = (_bitshift64Ashr(($900|0),($901|0),21)|0); + $903 = tempRet0; + $904 = (_bitshift64Shl(($902|0),($903|0),21)|0); + $905 = tempRet0; + $906 = (_i64Add(($800|0),($801|0),1048576,0)|0); + $907 = tempRet0; + $908 = (_bitshift64Ashr(($906|0),($907|0),21)|0); + $909 = tempRet0; + $910 = (_bitshift64Shl(($908|0),($909|0),21)|0); + $911 = tempRet0; + $912 = (_i64Add(($818|0),($819|0),1048576,0)|0); + $913 = tempRet0; + $914 = (_bitshift64Ashr(($912|0),($913|0),21)|0); + $915 = tempRet0; + $916 = (_i64Add(($914|0),($915|0),($836|0),($837|0))|0); + $917 = tempRet0; + $918 = (_bitshift64Shl(($914|0),($915|0),21)|0); + $919 = tempRet0; + $920 = (_i64Subtract(($818|0),($819|0),($918|0),($919|0))|0); + $921 = tempRet0; + $922 = (_i64Add(($832|0),($833|0),1048576,0)|0); + $923 = tempRet0; + $924 = (_bitshift64Ashr(($922|0),($923|0),21)|0); + $925 = tempRet0; + $926 = (_i64Add(($924|0),($925|0),($846|0),($847|0))|0); + $927 = tempRet0; + $928 = (_bitshift64Shl(($924|0),($925|0),21)|0); + $929 = tempRet0; + $930 = (_i64Subtract(($832|0),($833|0),($928|0),($929|0))|0); + $931 = tempRet0; + $932 = (_i64Add(($842|0),($843|0),1048576,0)|0); + $933 = tempRet0; + $934 = (_bitshift64Lshr(($932|0),($933|0),21)|0); + $935 = tempRet0; + $936 = (_i64Add(($934|0),($935|0),($854|0),($855|0))|0); + $937 = tempRet0; + $938 = (_bitshift64Shl(($934|0),($935|0),21)|0); + $939 = tempRet0; + $940 = (_i64Subtract(($842|0),($843|0),($938|0),($939|0))|0); + $941 = tempRet0; + $942 = (___muldi3(($850|0),($851|0),666643,0)|0); + $943 = tempRet0; + $944 = (___muldi3(($850|0),($851|0),470296,0)|0); + $945 = tempRet0; + $946 = (___muldi3(($850|0),($851|0),654183,0)|0); + $947 = tempRet0; + $948 = (___muldi3(($850|0),($851|0),-997805,-1)|0); + $949 = tempRet0; + $950 = (___muldi3(($850|0),($851|0),136657,0)|0); + $951 = tempRet0; + $952 = (___muldi3(($850|0),($851|0),-683901,-1)|0); + $953 = tempRet0; + $954 = (_i64Add(($952|0),($953|0),($562|0),($563|0))|0); + $955 = tempRet0; + $956 = (_i64Subtract(($954|0),($955|0),($820|0),($821|0))|0); + $957 = tempRet0; + $958 = (_i64Add(($956|0),($957|0),($908|0),($909|0))|0); + $959 = tempRet0; + $960 = (___muldi3(($936|0),($937|0),666643,0)|0); + $961 = tempRet0; + $962 = (___muldi3(($936|0),($937|0),470296,0)|0); + $963 = tempRet0; + $964 = (___muldi3(($936|0),($937|0),654183,0)|0); + $965 = tempRet0; + $966 = (___muldi3(($936|0),($937|0),-997805,-1)|0); + $967 = tempRet0; + $968 = (___muldi3(($936|0),($937|0),136657,0)|0); + $969 = tempRet0; + $970 = (___muldi3(($936|0),($937|0),-683901,-1)|0); + $971 = tempRet0; + $972 = (___muldi3(($940|0),($941|0),666643,0)|0); + $973 = tempRet0; + $974 = (___muldi3(($940|0),($941|0),470296,0)|0); + $975 = tempRet0; + $976 = (___muldi3(($940|0),($941|0),654183,0)|0); + $977 = tempRet0; + $978 = (___muldi3(($940|0),($941|0),-997805,-1)|0); + $979 = tempRet0; + $980 = (___muldi3(($940|0),($941|0),136657,0)|0); + $981 = tempRet0; + $982 = (___muldi3(($940|0),($941|0),-683901,-1)|0); + $983 = tempRet0; + $984 = (_i64Add(($948|0),($949|0),($520|0),($521|0))|0); + $985 = tempRet0; + $986 = (_i64Subtract(($984|0),($985|0),($802|0),($803|0))|0); + $987 = tempRet0; + $988 = (_i64Add(($986|0),($987|0),($902|0),($903|0))|0); + $989 = tempRet0; + $990 = (_i64Add(($988|0),($989|0),($968|0),($969|0))|0); + $991 = tempRet0; + $992 = (_i64Add(($990|0),($991|0),($982|0),($983|0))|0); + $993 = tempRet0; + $994 = (___muldi3(($926|0),($927|0),666643,0)|0); + $995 = tempRet0; + $996 = (___muldi3(($926|0),($927|0),470296,0)|0); + $997 = tempRet0; + $998 = (___muldi3(($926|0),($927|0),654183,0)|0); + $999 = tempRet0; + $1000 = (___muldi3(($926|0),($927|0),-997805,-1)|0); + $1001 = tempRet0; + $1002 = (___muldi3(($926|0),($927|0),136657,0)|0); + $1003 = tempRet0; + $1004 = (___muldi3(($926|0),($927|0),-683901,-1)|0); + $1005 = tempRet0; + $1006 = (___muldi3(($930|0),($931|0),666643,0)|0); + $1007 = tempRet0; + $1008 = (___muldi3(($930|0),($931|0),470296,0)|0); + $1009 = tempRet0; + $1010 = (___muldi3(($930|0),($931|0),654183,0)|0); + $1011 = tempRet0; + $1012 = (___muldi3(($930|0),($931|0),-997805,-1)|0); + $1013 = tempRet0; + $1014 = (___muldi3(($930|0),($931|0),136657,0)|0); + $1015 = tempRet0; + $1016 = (___muldi3(($930|0),($931|0),-683901,-1)|0); + $1017 = tempRet0; + $1018 = (_i64Add(($944|0),($945|0),($466|0),($467|0))|0); + $1019 = tempRet0; + $1020 = (_i64Subtract(($1018|0),($1019|0),($780|0),($781|0))|0); + $1021 = tempRet0; + $1022 = (_i64Add(($1020|0),($1021|0),($964|0),($965|0))|0); + $1023 = tempRet0; + $1024 = (_i64Add(($1022|0),($1023|0),($1002|0),($1003|0))|0); + $1025 = tempRet0; + $1026 = (_i64Add(($1024|0),($1025|0),($978|0),($979|0))|0); + $1027 = tempRet0; + $1028 = (_i64Add(($1026|0),($1027|0),($1016|0),($1017|0))|0); + $1029 = tempRet0; + $1030 = (_i64Add(($1028|0),($1029|0),($896|0),($897|0))|0); + $1031 = tempRet0; + $1032 = (___muldi3(($916|0),($917|0),666643,0)|0); + $1033 = tempRet0; + $1034 = (_i64Add(($1032|0),($1033|0),($284|0),($285|0))|0); + $1035 = tempRet0; + $1036 = (_i64Subtract(($1034|0),($1035|0),($694|0),($695|0))|0); + $1037 = tempRet0; + $1038 = (_i64Add(($1036|0),($1037|0),($876|0),($877|0))|0); + $1039 = tempRet0; + $1040 = (___muldi3(($916|0),($917|0),470296,0)|0); + $1041 = tempRet0; + $1042 = (___muldi3(($916|0),($917|0),654183,0)|0); + $1043 = tempRet0; + $1044 = (_i64Add(($994|0),($995|0),($336|0),($337|0))|0); + $1045 = tempRet0; + $1046 = (_i64Add(($1044|0),($1045|0),($1042|0),($1043|0))|0); + $1047 = tempRet0; + $1048 = (_i64Add(($1046|0),($1047|0),($1008|0),($1009|0))|0); + $1049 = tempRet0; + $1050 = (_i64Subtract(($1048|0),($1049|0),($722|0),($723|0))|0); + $1051 = tempRet0; + $1052 = (_i64Add(($1050|0),($1051|0),($884|0),($885|0))|0); + $1053 = tempRet0; + $1054 = (___muldi3(($916|0),($917|0),-997805,-1)|0); + $1055 = tempRet0; + $1056 = (___muldi3(($916|0),($917|0),136657,0)|0); + $1057 = tempRet0; + $1058 = (_i64Add(($998|0),($999|0),($960|0),($961|0))|0); + $1059 = tempRet0; + $1060 = (_i64Add(($1058|0),($1059|0),($1056|0),($1057|0))|0); + $1061 = tempRet0; + $1062 = (_i64Add(($1060|0),($1061|0),($974|0),($975|0))|0); + $1063 = tempRet0; + $1064 = (_i64Add(($1062|0),($1063|0),($1012|0),($1013|0))|0); + $1065 = tempRet0; + $1066 = (_i64Add(($1064|0),($1065|0),($400|0),($401|0))|0); + $1067 = tempRet0; + $1068 = (_i64Add(($1066|0),($1067|0),($890|0),($891|0))|0); + $1069 = tempRet0; + $1070 = (_i64Subtract(($1068|0),($1069|0),($754|0),($755|0))|0); + $1071 = tempRet0; + $1072 = (___muldi3(($916|0),($917|0),-683901,-1)|0); + $1073 = tempRet0; + $1074 = (_i64Add(($1038|0),($1039|0),1048576,0)|0); + $1075 = tempRet0; + $1076 = (_bitshift64Ashr(($1074|0),($1075|0),21)|0); + $1077 = tempRet0; + $1078 = (_i64Add(($1006|0),($1007|0),($1040|0),($1041|0))|0); + $1079 = tempRet0; + $1080 = (_i64Add(($1078|0),($1079|0),($692|0),($693|0))|0); + $1081 = tempRet0; + $1082 = (_i64Subtract(($1080|0),($1081|0),($886|0),($887|0))|0); + $1083 = tempRet0; + $1084 = (_i64Add(($1082|0),($1083|0),($1076|0),($1077|0))|0); + $1085 = tempRet0; + $1086 = (_bitshift64Shl(($1076|0),($1077|0),21)|0); + $1087 = tempRet0; + $1088 = (_i64Add(($1052|0),($1053|0),1048576,0)|0); + $1089 = tempRet0; + $1090 = (_bitshift64Ashr(($1088|0),($1089|0),21)|0); + $1091 = tempRet0; + $1092 = (_i64Add(($1054|0),($1055|0),($996|0),($997|0))|0); + $1093 = tempRet0; + $1094 = (_i64Add(($1092|0),($1093|0),($972|0),($973|0))|0); + $1095 = tempRet0; + $1096 = (_i64Add(($1094|0),($1095|0),($1010|0),($1011|0))|0); + $1097 = tempRet0; + $1098 = (_i64Add(($1096|0),($1097|0),($720|0),($721|0))|0); + $1099 = tempRet0; + $1100 = (_i64Subtract(($1098|0),($1099|0),($892|0),($893|0))|0); + $1101 = tempRet0; + $1102 = (_i64Add(($1100|0),($1101|0),($1090|0),($1091|0))|0); + $1103 = tempRet0; + $1104 = (_bitshift64Shl(($1090|0),($1091|0),21)|0); + $1105 = tempRet0; + $1106 = (_i64Add(($1070|0),($1071|0),1048576,0)|0); + $1107 = tempRet0; + $1108 = (_bitshift64Ashr(($1106|0),($1107|0),21)|0); + $1109 = tempRet0; + $1110 = (_i64Add(($962|0),($963|0),($942|0),($943|0))|0); + $1111 = tempRet0; + $1112 = (_i64Add(($1110|0),($1111|0),($1000|0),($1001|0))|0); + $1113 = tempRet0; + $1114 = (_i64Add(($1112|0),($1113|0),($1072|0),($1073|0))|0); + $1115 = tempRet0; + $1116 = (_i64Add(($1114|0),($1115|0),($976|0),($977|0))|0); + $1117 = tempRet0; + $1118 = (_i64Add(($1116|0),($1117|0),($1014|0),($1015|0))|0); + $1119 = tempRet0; + $1120 = (_i64Add(($1118|0),($1119|0),($752|0),($753|0))|0); + $1121 = tempRet0; + $1122 = (_i64Subtract(($1120|0),($1121|0),($898|0),($899|0))|0); + $1123 = tempRet0; + $1124 = (_i64Add(($1122|0),($1123|0),($1108|0),($1109|0))|0); + $1125 = tempRet0; + $1126 = (_bitshift64Shl(($1108|0),($1109|0),21)|0); + $1127 = tempRet0; + $1128 = (_i64Add(($1030|0),($1031|0),1048576,0)|0); + $1129 = tempRet0; + $1130 = (_bitshift64Ashr(($1128|0),($1129|0),21)|0); + $1131 = tempRet0; + $1132 = (_i64Add(($778|0),($779|0),($946|0),($947|0))|0); + $1133 = tempRet0; + $1134 = (_i64Subtract(($1132|0),($1133|0),($904|0),($905|0))|0); + $1135 = tempRet0; + $1136 = (_i64Add(($1134|0),($1135|0),($966|0),($967|0))|0); + $1137 = tempRet0; + $1138 = (_i64Add(($1136|0),($1137|0),($1004|0),($1005|0))|0); + $1139 = tempRet0; + $1140 = (_i64Add(($1138|0),($1139|0),($980|0),($981|0))|0); + $1141 = tempRet0; + $1142 = (_i64Add(($1140|0),($1141|0),($1130|0),($1131|0))|0); + $1143 = tempRet0; + $1144 = (_bitshift64Shl(($1130|0),($1131|0),21)|0); + $1145 = tempRet0; + $1146 = (_i64Subtract(($1030|0),($1031|0),($1144|0),($1145|0))|0); + $1147 = tempRet0; + $1148 = (_i64Add(($992|0),($993|0),1048576,0)|0); + $1149 = tempRet0; + $1150 = (_bitshift64Ashr(($1148|0),($1149|0),21)|0); + $1151 = tempRet0; + $1152 = (_i64Add(($800|0),($801|0),($950|0),($951|0))|0); + $1153 = tempRet0; + $1154 = (_i64Subtract(($1152|0),($1153|0),($910|0),($911|0))|0); + $1155 = tempRet0; + $1156 = (_i64Add(($1154|0),($1155|0),($970|0),($971|0))|0); + $1157 = tempRet0; + $1158 = (_i64Add(($1156|0),($1157|0),($1150|0),($1151|0))|0); + $1159 = tempRet0; + $1160 = (_bitshift64Shl(($1150|0),($1151|0),21)|0); + $1161 = tempRet0; + $1162 = (_i64Subtract(($992|0),($993|0),($1160|0),($1161|0))|0); + $1163 = tempRet0; + $1164 = (_i64Add(($958|0),($959|0),1048576,0)|0); + $1165 = tempRet0; + $1166 = (_bitshift64Ashr(($1164|0),($1165|0),21)|0); + $1167 = tempRet0; + $1168 = (_i64Add(($1166|0),($1167|0),($920|0),($921|0))|0); + $1169 = tempRet0; + $1170 = (_bitshift64Shl(($1166|0),($1167|0),21)|0); + $1171 = tempRet0; + $1172 = (_i64Subtract(($958|0),($959|0),($1170|0),($1171|0))|0); + $1173 = tempRet0; + $1174 = (_i64Add(($1084|0),($1085|0),1048576,0)|0); + $1175 = tempRet0; + $1176 = (_bitshift64Ashr(($1174|0),($1175|0),21)|0); + $1177 = tempRet0; + $1178 = (_bitshift64Shl(($1176|0),($1177|0),21)|0); + $1179 = tempRet0; + $1180 = (_i64Add(($1102|0),($1103|0),1048576,0)|0); + $1181 = tempRet0; + $1182 = (_bitshift64Ashr(($1180|0),($1181|0),21)|0); + $1183 = tempRet0; + $1184 = (_bitshift64Shl(($1182|0),($1183|0),21)|0); + $1185 = tempRet0; + $1186 = (_i64Add(($1124|0),($1125|0),1048576,0)|0); + $1187 = tempRet0; + $1188 = (_bitshift64Ashr(($1186|0),($1187|0),21)|0); + $1189 = tempRet0; + $1190 = (_i64Add(($1146|0),($1147|0),($1188|0),($1189|0))|0); + $1191 = tempRet0; + $1192 = (_bitshift64Shl(($1188|0),($1189|0),21)|0); + $1193 = tempRet0; + $1194 = (_i64Subtract(($1124|0),($1125|0),($1192|0),($1193|0))|0); + $1195 = tempRet0; + $1196 = (_i64Add(($1142|0),($1143|0),1048576,0)|0); + $1197 = tempRet0; + $1198 = (_bitshift64Ashr(($1196|0),($1197|0),21)|0); + $1199 = tempRet0; + $1200 = (_i64Add(($1198|0),($1199|0),($1162|0),($1163|0))|0); + $1201 = tempRet0; + $1202 = (_bitshift64Shl(($1198|0),($1199|0),21)|0); + $1203 = tempRet0; + $1204 = (_i64Subtract(($1142|0),($1143|0),($1202|0),($1203|0))|0); + $1205 = tempRet0; + $1206 = (_i64Add(($1158|0),($1159|0),1048576,0)|0); + $1207 = tempRet0; + $1208 = (_bitshift64Ashr(($1206|0),($1207|0),21)|0); + $1209 = tempRet0; + $1210 = (_i64Add(($1208|0),($1209|0),($1172|0),($1173|0))|0); + $1211 = tempRet0; + $1212 = (_bitshift64Shl(($1208|0),($1209|0),21)|0); + $1213 = tempRet0; + $1214 = (_i64Subtract(($1158|0),($1159|0),($1212|0),($1213|0))|0); + $1215 = tempRet0; + $1216 = (___muldi3(($1168|0),($1169|0),666643,0)|0); + $1217 = tempRet0; + $1218 = (_i64Add(($880|0),($881|0),($1216|0),($1217|0))|0); + $1219 = tempRet0; + $1220 = (___muldi3(($1168|0),($1169|0),470296,0)|0); + $1221 = tempRet0; + $1222 = (___muldi3(($1168|0),($1169|0),654183,0)|0); + $1223 = tempRet0; + $1224 = (___muldi3(($1168|0),($1169|0),-997805,-1)|0); + $1225 = tempRet0; + $1226 = (___muldi3(($1168|0),($1169|0),136657,0)|0); + $1227 = tempRet0; + $1228 = (___muldi3(($1168|0),($1169|0),-683901,-1)|0); + $1229 = tempRet0; + $1230 = (_i64Add(($1070|0),($1071|0),($1228|0),($1229|0))|0); + $1231 = tempRet0; + $1232 = (_i64Subtract(($1230|0),($1231|0),($1126|0),($1127|0))|0); + $1233 = tempRet0; + $1234 = (_i64Add(($1232|0),($1233|0),($1182|0),($1183|0))|0); + $1235 = tempRet0; + $1236 = (___muldi3(($1210|0),($1211|0),666643,0)|0); + $1237 = tempRet0; + $1238 = (_i64Add(($868|0),($869|0),($1236|0),($1237|0))|0); + $1239 = tempRet0; + $1240 = (___muldi3(($1210|0),($1211|0),470296,0)|0); + $1241 = tempRet0; + $1242 = (_i64Add(($1218|0),($1219|0),($1240|0),($1241|0))|0); + $1243 = tempRet0; + $1244 = (___muldi3(($1210|0),($1211|0),654183,0)|0); + $1245 = tempRet0; + $1246 = (___muldi3(($1210|0),($1211|0),-997805,-1)|0); + $1247 = tempRet0; + $1248 = (___muldi3(($1210|0),($1211|0),136657,0)|0); + $1249 = tempRet0; + $1250 = (___muldi3(($1210|0),($1211|0),-683901,-1)|0); + $1251 = tempRet0; + $1252 = (___muldi3(($1214|0),($1215|0),666643,0)|0); + $1253 = tempRet0; + $1254 = (_i64Add(($872|0),($873|0),($1252|0),($1253|0))|0); + $1255 = tempRet0; + $1256 = (___muldi3(($1214|0),($1215|0),470296,0)|0); + $1257 = tempRet0; + $1258 = (_i64Add(($1238|0),($1239|0),($1256|0),($1257|0))|0); + $1259 = tempRet0; + $1260 = (___muldi3(($1214|0),($1215|0),654183,0)|0); + $1261 = tempRet0; + $1262 = (_i64Add(($1242|0),($1243|0),($1260|0),($1261|0))|0); + $1263 = tempRet0; + $1264 = (___muldi3(($1214|0),($1215|0),-997805,-1)|0); + $1265 = tempRet0; + $1266 = (___muldi3(($1214|0),($1215|0),136657,0)|0); + $1267 = tempRet0; + $1268 = (___muldi3(($1214|0),($1215|0),-683901,-1)|0); + $1269 = tempRet0; + $1270 = (_i64Add(($1052|0),($1053|0),($1224|0),($1225|0))|0); + $1271 = tempRet0; + $1272 = (_i64Subtract(($1270|0),($1271|0),($1104|0),($1105|0))|0); + $1273 = tempRet0; + $1274 = (_i64Add(($1272|0),($1273|0),($1176|0),($1177|0))|0); + $1275 = tempRet0; + $1276 = (_i64Add(($1274|0),($1275|0),($1248|0),($1249|0))|0); + $1277 = tempRet0; + $1278 = (_i64Add(($1276|0),($1277|0),($1268|0),($1269|0))|0); + $1279 = tempRet0; + $1280 = (___muldi3(($1200|0),($1201|0),666643,0)|0); + $1281 = tempRet0; + $1282 = (___muldi3(($1200|0),($1201|0),470296,0)|0); + $1283 = tempRet0; + $1284 = (___muldi3(($1200|0),($1201|0),654183,0)|0); + $1285 = tempRet0; + $1286 = (___muldi3(($1200|0),($1201|0),-997805,-1)|0); + $1287 = tempRet0; + $1288 = (___muldi3(($1200|0),($1201|0),136657,0)|0); + $1289 = tempRet0; + $1290 = (___muldi3(($1200|0),($1201|0),-683901,-1)|0); + $1291 = tempRet0; + $1292 = (___muldi3(($1204|0),($1205|0),666643,0)|0); + $1293 = tempRet0; + $1294 = (___muldi3(($1204|0),($1205|0),470296,0)|0); + $1295 = tempRet0; + $1296 = (___muldi3(($1204|0),($1205|0),654183,0)|0); + $1297 = tempRet0; + $1298 = (___muldi3(($1204|0),($1205|0),-997805,-1)|0); + $1299 = tempRet0; + $1300 = (___muldi3(($1204|0),($1205|0),136657,0)|0); + $1301 = tempRet0; + $1302 = (___muldi3(($1204|0),($1205|0),-683901,-1)|0); + $1303 = tempRet0; + $1304 = (_i64Add(($1038|0),($1039|0),($1220|0),($1221|0))|0); + $1305 = tempRet0; + $1306 = (_i64Subtract(($1304|0),($1305|0),($1086|0),($1087|0))|0); + $1307 = tempRet0; + $1308 = (_i64Add(($1306|0),($1307|0),($1244|0),($1245|0))|0); + $1309 = tempRet0; + $1310 = (_i64Add(($1308|0),($1309|0),($1264|0),($1265|0))|0); + $1311 = tempRet0; + $1312 = (_i64Add(($1310|0),($1311|0),($1288|0),($1289|0))|0); + $1313 = tempRet0; + $1314 = (_i64Add(($1312|0),($1313|0),($1302|0),($1303|0))|0); + $1315 = tempRet0; + $1316 = (___muldi3(($1190|0),($1191|0),666643,0)|0); + $1317 = tempRet0; + $1318 = (_i64Add(($1316|0),($1317|0),($632|0),($633|0))|0); + $1319 = tempRet0; + $1320 = (___muldi3(($1190|0),($1191|0),470296,0)|0); + $1321 = tempRet0; + $1322 = (___muldi3(($1190|0),($1191|0),654183,0)|0); + $1323 = tempRet0; + $1324 = (_i64Add(($858|0),($859|0),($216|0),($217|0))|0); + $1325 = tempRet0; + $1326 = (_i64Subtract(($1324|0),($1325|0),($648|0),($649|0))|0); + $1327 = tempRet0; + $1328 = (_i64Add(($1326|0),($1327|0),($1322|0),($1323|0))|0); + $1329 = tempRet0; + $1330 = (_i64Add(($1328|0),($1329|0),($1280|0),($1281|0))|0); + $1331 = tempRet0; + $1332 = (_i64Add(($1330|0),($1331|0),($1294|0),($1295|0))|0); + $1333 = tempRet0; + $1334 = (___muldi3(($1190|0),($1191|0),-997805,-1)|0); + $1335 = tempRet0; + $1336 = (___muldi3(($1190|0),($1191|0),136657,0)|0); + $1337 = tempRet0; + $1338 = (_i64Add(($1258|0),($1259|0),($1336|0),($1337|0))|0); + $1339 = tempRet0; + $1340 = (_i64Add(($1338|0),($1339|0),($1284|0),($1285|0))|0); + $1341 = tempRet0; + $1342 = (_i64Add(($1340|0),($1341|0),($1298|0),($1299|0))|0); + $1343 = tempRet0; + $1344 = (___muldi3(($1190|0),($1191|0),-683901,-1)|0); + $1345 = tempRet0; + $1346 = (_i64Add(($1318|0),($1319|0),1048576,0)|0); + $1347 = tempRet0; + $1348 = (_bitshift64Ashr(($1346|0),($1347|0),21)|0); + $1349 = tempRet0; + $1350 = (_i64Add(($862|0),($863|0),($1320|0),($1321|0))|0); + $1351 = tempRet0; + $1352 = (_i64Add(($1350|0),($1351|0),($1292|0),($1293|0))|0); + $1353 = tempRet0; + $1354 = (_i64Add(($1352|0),($1353|0),($1348|0),($1349|0))|0); + $1355 = tempRet0; + $1356 = (_bitshift64Shl(($1348|0),($1349|0),21)|0); + $1357 = tempRet0; + $1358 = (_i64Subtract(($1318|0),($1319|0),($1356|0),($1357|0))|0); + $1359 = tempRet0; + $1360 = (_i64Add(($1332|0),($1333|0),1048576,0)|0); + $1361 = tempRet0; + $1362 = (_bitshift64Ashr(($1360|0),($1361|0),21)|0); + $1363 = tempRet0; + $1364 = (_i64Add(($1254|0),($1255|0),($1334|0),($1335|0))|0); + $1365 = tempRet0; + $1366 = (_i64Add(($1364|0),($1365|0),($1282|0),($1283|0))|0); + $1367 = tempRet0; + $1368 = (_i64Add(($1366|0),($1367|0),($1296|0),($1297|0))|0); + $1369 = tempRet0; + $1370 = (_i64Add(($1368|0),($1369|0),($1362|0),($1363|0))|0); + $1371 = tempRet0; + $1372 = (_bitshift64Shl(($1362|0),($1363|0),21)|0); + $1373 = tempRet0; + $1374 = (_i64Add(($1342|0),($1343|0),1048576,0)|0); + $1375 = tempRet0; + $1376 = (_bitshift64Ashr(($1374|0),($1375|0),21)|0); + $1377 = tempRet0; + $1378 = (_i64Add(($1262|0),($1263|0),($1344|0),($1345|0))|0); + $1379 = tempRet0; + $1380 = (_i64Add(($1378|0),($1379|0),($1286|0),($1287|0))|0); + $1381 = tempRet0; + $1382 = (_i64Add(($1380|0),($1381|0),($1300|0),($1301|0))|0); + $1383 = tempRet0; + $1384 = (_i64Add(($1382|0),($1383|0),($1376|0),($1377|0))|0); + $1385 = tempRet0; + $1386 = (_bitshift64Shl(($1376|0),($1377|0),21)|0); + $1387 = tempRet0; + $1388 = (_i64Add(($1314|0),($1315|0),1048576,0)|0); + $1389 = tempRet0; + $1390 = (_bitshift64Ashr(($1388|0),($1389|0),21)|0); + $1391 = tempRet0; + $1392 = (_i64Add(($1084|0),($1085|0),($1222|0),($1223|0))|0); + $1393 = tempRet0; + $1394 = (_i64Add(($1392|0),($1393|0),($1246|0),($1247|0))|0); + $1395 = tempRet0; + $1396 = (_i64Subtract(($1394|0),($1395|0),($1178|0),($1179|0))|0); + $1397 = tempRet0; + $1398 = (_i64Add(($1396|0),($1397|0),($1266|0),($1267|0))|0); + $1399 = tempRet0; + $1400 = (_i64Add(($1398|0),($1399|0),($1290|0),($1291|0))|0); + $1401 = tempRet0; + $1402 = (_i64Add(($1400|0),($1401|0),($1390|0),($1391|0))|0); + $1403 = tempRet0; + $1404 = (_bitshift64Shl(($1390|0),($1391|0),21)|0); + $1405 = tempRet0; + $1406 = (_i64Subtract(($1314|0),($1315|0),($1404|0),($1405|0))|0); + $1407 = tempRet0; + $1408 = (_i64Add(($1278|0),($1279|0),1048576,0)|0); + $1409 = tempRet0; + $1410 = (_bitshift64Ashr(($1408|0),($1409|0),21)|0); + $1411 = tempRet0; + $1412 = (_i64Add(($1102|0),($1103|0),($1226|0),($1227|0))|0); + $1413 = tempRet0; + $1414 = (_i64Add(($1412|0),($1413|0),($1250|0),($1251|0))|0); + $1415 = tempRet0; + $1416 = (_i64Subtract(($1414|0),($1415|0),($1184|0),($1185|0))|0); + $1417 = tempRet0; + $1418 = (_i64Add(($1416|0),($1417|0),($1410|0),($1411|0))|0); + $1419 = tempRet0; + $1420 = (_bitshift64Shl(($1410|0),($1411|0),21)|0); + $1421 = tempRet0; + $1422 = (_i64Subtract(($1278|0),($1279|0),($1420|0),($1421|0))|0); + $1423 = tempRet0; + $1424 = (_i64Add(($1234|0),($1235|0),1048576,0)|0); + $1425 = tempRet0; + $1426 = (_bitshift64Ashr(($1424|0),($1425|0),21)|0); + $1427 = tempRet0; + $1428 = (_i64Add(($1194|0),($1195|0),($1426|0),($1427|0))|0); + $1429 = tempRet0; + $1430 = (_bitshift64Shl(($1426|0),($1427|0),21)|0); + $1431 = tempRet0; + $1432 = (_i64Subtract(($1234|0),($1235|0),($1430|0),($1431|0))|0); + $1433 = tempRet0; + $1434 = (_i64Add(($1354|0),($1355|0),1048576,0)|0); + $1435 = tempRet0; + $1436 = (_bitshift64Ashr(($1434|0),($1435|0),21)|0); + $1437 = tempRet0; + $1438 = (_bitshift64Shl(($1436|0),($1437|0),21)|0); + $1439 = tempRet0; + $1440 = (_i64Add(($1370|0),($1371|0),1048576,0)|0); + $1441 = tempRet0; + $1442 = (_bitshift64Ashr(($1440|0),($1441|0),21)|0); + $1443 = tempRet0; + $1444 = (_bitshift64Shl(($1442|0),($1443|0),21)|0); + $1445 = tempRet0; + $1446 = (_i64Add(($1384|0),($1385|0),1048576,0)|0); + $1447 = tempRet0; + $1448 = (_bitshift64Ashr(($1446|0),($1447|0),21)|0); + $1449 = tempRet0; + $1450 = (_i64Add(($1406|0),($1407|0),($1448|0),($1449|0))|0); + $1451 = tempRet0; + $1452 = (_bitshift64Shl(($1448|0),($1449|0),21)|0); + $1453 = tempRet0; + $1454 = (_i64Add(($1402|0),($1403|0),1048576,0)|0); + $1455 = tempRet0; + $1456 = (_bitshift64Ashr(($1454|0),($1455|0),21)|0); + $1457 = tempRet0; + $1458 = (_i64Add(($1422|0),($1423|0),($1456|0),($1457|0))|0); + $1459 = tempRet0; + $1460 = (_bitshift64Shl(($1456|0),($1457|0),21)|0); + $1461 = tempRet0; + $1462 = (_i64Subtract(($1402|0),($1403|0),($1460|0),($1461|0))|0); + $1463 = tempRet0; + $1464 = (_i64Add(($1418|0),($1419|0),1048576,0)|0); + $1465 = tempRet0; + $1466 = (_bitshift64Ashr(($1464|0),($1465|0),21)|0); + $1467 = tempRet0; + $1468 = (_i64Add(($1432|0),($1433|0),($1466|0),($1467|0))|0); + $1469 = tempRet0; + $1470 = (_bitshift64Shl(($1466|0),($1467|0),21)|0); + $1471 = tempRet0; + $1472 = (_i64Subtract(($1418|0),($1419|0),($1470|0),($1471|0))|0); + $1473 = tempRet0; + $1474 = (_i64Add(($1428|0),($1429|0),1048576,0)|0); + $1475 = tempRet0; + $1476 = (_bitshift64Ashr(($1474|0),($1475|0),21)|0); + $1477 = tempRet0; + $1478 = (_bitshift64Shl(($1476|0),($1477|0),21)|0); + $1479 = tempRet0; + $1480 = (_i64Subtract(($1428|0),($1429|0),($1478|0),($1479|0))|0); + $1481 = tempRet0; + $1482 = (___muldi3(($1476|0),($1477|0),666643,0)|0); + $1483 = tempRet0; + $1484 = (_i64Add(($1358|0),($1359|0),($1482|0),($1483|0))|0); + $1485 = tempRet0; + $1486 = (___muldi3(($1476|0),($1477|0),470296,0)|0); + $1487 = tempRet0; + $1488 = (___muldi3(($1476|0),($1477|0),654183,0)|0); + $1489 = tempRet0; + $1490 = (___muldi3(($1476|0),($1477|0),-997805,-1)|0); + $1491 = tempRet0; + $1492 = (___muldi3(($1476|0),($1477|0),136657,0)|0); + $1493 = tempRet0; + $1494 = (___muldi3(($1476|0),($1477|0),-683901,-1)|0); + $1495 = tempRet0; + $1496 = (_bitshift64Ashr(($1484|0),($1485|0),21)|0); + $1497 = tempRet0; + $1498 = (_i64Add(($1486|0),($1487|0),($1354|0),($1355|0))|0); + $1499 = tempRet0; + $1500 = (_i64Subtract(($1498|0),($1499|0),($1438|0),($1439|0))|0); + $1501 = tempRet0; + $1502 = (_i64Add(($1500|0),($1501|0),($1496|0),($1497|0))|0); + $1503 = tempRet0; + $1504 = (_bitshift64Shl(($1496|0),($1497|0),21)|0); + $1505 = tempRet0; + $1506 = (_i64Subtract(($1484|0),($1485|0),($1504|0),($1505|0))|0); + $1507 = tempRet0; + $1508 = (_bitshift64Ashr(($1502|0),($1503|0),21)|0); + $1509 = tempRet0; + $1510 = (_i64Add(($1488|0),($1489|0),($1332|0),($1333|0))|0); + $1511 = tempRet0; + $1512 = (_i64Subtract(($1510|0),($1511|0),($1372|0),($1373|0))|0); + $1513 = tempRet0; + $1514 = (_i64Add(($1512|0),($1513|0),($1436|0),($1437|0))|0); + $1515 = tempRet0; + $1516 = (_i64Add(($1514|0),($1515|0),($1508|0),($1509|0))|0); + $1517 = tempRet0; + $1518 = (_bitshift64Shl(($1508|0),($1509|0),21)|0); + $1519 = tempRet0; + $1520 = (_i64Subtract(($1502|0),($1503|0),($1518|0),($1519|0))|0); + $1521 = tempRet0; + $1522 = (_bitshift64Ashr(($1516|0),($1517|0),21)|0); + $1523 = tempRet0; + $1524 = (_i64Add(($1370|0),($1371|0),($1490|0),($1491|0))|0); + $1525 = tempRet0; + $1526 = (_i64Subtract(($1524|0),($1525|0),($1444|0),($1445|0))|0); + $1527 = tempRet0; + $1528 = (_i64Add(($1526|0),($1527|0),($1522|0),($1523|0))|0); + $1529 = tempRet0; + $1530 = (_bitshift64Shl(($1522|0),($1523|0),21)|0); + $1531 = tempRet0; + $1532 = (_i64Subtract(($1516|0),($1517|0),($1530|0),($1531|0))|0); + $1533 = tempRet0; + $1534 = (_bitshift64Ashr(($1528|0),($1529|0),21)|0); + $1535 = tempRet0; + $1536 = (_i64Add(($1492|0),($1493|0),($1342|0),($1343|0))|0); + $1537 = tempRet0; + $1538 = (_i64Subtract(($1536|0),($1537|0),($1386|0),($1387|0))|0); + $1539 = tempRet0; + $1540 = (_i64Add(($1538|0),($1539|0),($1442|0),($1443|0))|0); + $1541 = tempRet0; + $1542 = (_i64Add(($1540|0),($1541|0),($1534|0),($1535|0))|0); + $1543 = tempRet0; + $1544 = (_bitshift64Shl(($1534|0),($1535|0),21)|0); + $1545 = tempRet0; + $1546 = (_i64Subtract(($1528|0),($1529|0),($1544|0),($1545|0))|0); + $1547 = tempRet0; + $1548 = (_bitshift64Ashr(($1542|0),($1543|0),21)|0); + $1549 = tempRet0; + $1550 = (_i64Add(($1384|0),($1385|0),($1494|0),($1495|0))|0); + $1551 = tempRet0; + $1552 = (_i64Subtract(($1550|0),($1551|0),($1452|0),($1453|0))|0); + $1553 = tempRet0; + $1554 = (_i64Add(($1552|0),($1553|0),($1548|0),($1549|0))|0); + $1555 = tempRet0; + $1556 = (_bitshift64Shl(($1548|0),($1549|0),21)|0); + $1557 = tempRet0; + $1558 = (_i64Subtract(($1542|0),($1543|0),($1556|0),($1557|0))|0); + $1559 = tempRet0; + $1560 = (_bitshift64Ashr(($1554|0),($1555|0),21)|0); + $1561 = tempRet0; + $1562 = (_i64Add(($1450|0),($1451|0),($1560|0),($1561|0))|0); + $1563 = tempRet0; + $1564 = (_bitshift64Shl(($1560|0),($1561|0),21)|0); + $1565 = tempRet0; + $1566 = (_i64Subtract(($1554|0),($1555|0),($1564|0),($1565|0))|0); + $1567 = tempRet0; + $1568 = (_bitshift64Ashr(($1562|0),($1563|0),21)|0); + $1569 = tempRet0; + $1570 = (_i64Add(($1568|0),($1569|0),($1462|0),($1463|0))|0); + $1571 = tempRet0; + $1572 = (_bitshift64Shl(($1568|0),($1569|0),21)|0); + $1573 = tempRet0; + $1574 = (_i64Subtract(($1562|0),($1563|0),($1572|0),($1573|0))|0); + $1575 = tempRet0; + $1576 = (_bitshift64Ashr(($1570|0),($1571|0),21)|0); + $1577 = tempRet0; + $1578 = (_i64Add(($1458|0),($1459|0),($1576|0),($1577|0))|0); + $1579 = tempRet0; + $1580 = (_bitshift64Shl(($1576|0),($1577|0),21)|0); + $1581 = tempRet0; + $1582 = (_i64Subtract(($1570|0),($1571|0),($1580|0),($1581|0))|0); + $1583 = tempRet0; + $1584 = (_bitshift64Ashr(($1578|0),($1579|0),21)|0); + $1585 = tempRet0; + $1586 = (_i64Add(($1584|0),($1585|0),($1472|0),($1473|0))|0); + $1587 = tempRet0; + $1588 = (_bitshift64Shl(($1584|0),($1585|0),21)|0); + $1589 = tempRet0; + $1590 = (_i64Subtract(($1578|0),($1579|0),($1588|0),($1589|0))|0); + $1591 = tempRet0; + $1592 = (_bitshift64Ashr(($1586|0),($1587|0),21)|0); + $1593 = tempRet0; + $1594 = (_i64Add(($1468|0),($1469|0),($1592|0),($1593|0))|0); + $1595 = tempRet0; + $1596 = (_bitshift64Shl(($1592|0),($1593|0),21)|0); + $1597 = tempRet0; + $1598 = (_i64Subtract(($1586|0),($1587|0),($1596|0),($1597|0))|0); + $1599 = tempRet0; + $1600 = (_bitshift64Ashr(($1594|0),($1595|0),21)|0); + $1601 = tempRet0; + $1602 = (_i64Add(($1600|0),($1601|0),($1480|0),($1481|0))|0); + $1603 = tempRet0; + $1604 = (_bitshift64Shl(($1600|0),($1601|0),21)|0); + $1605 = tempRet0; + $1606 = (_i64Subtract(($1594|0),($1595|0),($1604|0),($1605|0))|0); + $1607 = tempRet0; + $1608 = (_bitshift64Ashr(($1602|0),($1603|0),21)|0); + $1609 = tempRet0; + $1610 = (_bitshift64Shl(($1608|0),($1609|0),21)|0); + $1611 = tempRet0; + $1612 = (_i64Subtract(($1602|0),($1603|0),($1610|0),($1611|0))|0); + $1613 = tempRet0; + $1614 = (___muldi3(($1608|0),($1609|0),666643,0)|0); + $1615 = tempRet0; + $1616 = (_i64Add(($1614|0),($1615|0),($1506|0),($1507|0))|0); + $1617 = tempRet0; + $1618 = (___muldi3(($1608|0),($1609|0),470296,0)|0); + $1619 = tempRet0; + $1620 = (_i64Add(($1520|0),($1521|0),($1618|0),($1619|0))|0); + $1621 = tempRet0; + $1622 = (___muldi3(($1608|0),($1609|0),654183,0)|0); + $1623 = tempRet0; + $1624 = (_i64Add(($1532|0),($1533|0),($1622|0),($1623|0))|0); + $1625 = tempRet0; + $1626 = (___muldi3(($1608|0),($1609|0),-997805,-1)|0); + $1627 = tempRet0; + $1628 = (_i64Add(($1546|0),($1547|0),($1626|0),($1627|0))|0); + $1629 = tempRet0; + $1630 = (___muldi3(($1608|0),($1609|0),136657,0)|0); + $1631 = tempRet0; + $1632 = (_i64Add(($1558|0),($1559|0),($1630|0),($1631|0))|0); + $1633 = tempRet0; + $1634 = (___muldi3(($1608|0),($1609|0),-683901,-1)|0); + $1635 = tempRet0; + $1636 = (_i64Add(($1566|0),($1567|0),($1634|0),($1635|0))|0); + $1637 = tempRet0; + $1638 = (_bitshift64Ashr(($1616|0),($1617|0),21)|0); + $1639 = tempRet0; + $1640 = (_i64Add(($1620|0),($1621|0),($1638|0),($1639|0))|0); + $1641 = tempRet0; + $1642 = (_bitshift64Shl(($1638|0),($1639|0),21)|0); + $1643 = tempRet0; + $1644 = (_i64Subtract(($1616|0),($1617|0),($1642|0),($1643|0))|0); + $1645 = tempRet0; + $1646 = (_bitshift64Ashr(($1640|0),($1641|0),21)|0); + $1647 = tempRet0; + $1648 = (_i64Add(($1624|0),($1625|0),($1646|0),($1647|0))|0); + $1649 = tempRet0; + $1650 = (_bitshift64Shl(($1646|0),($1647|0),21)|0); + $1651 = tempRet0; + $1652 = (_i64Subtract(($1640|0),($1641|0),($1650|0),($1651|0))|0); + $1653 = tempRet0; + $1654 = (_bitshift64Ashr(($1648|0),($1649|0),21)|0); + $1655 = tempRet0; + $1656 = (_i64Add(($1628|0),($1629|0),($1654|0),($1655|0))|0); + $1657 = tempRet0; + $1658 = (_bitshift64Shl(($1654|0),($1655|0),21)|0); + $1659 = tempRet0; + $1660 = (_i64Subtract(($1648|0),($1649|0),($1658|0),($1659|0))|0); + $1661 = tempRet0; + $1662 = (_bitshift64Ashr(($1656|0),($1657|0),21)|0); + $1663 = tempRet0; + $1664 = (_i64Add(($1632|0),($1633|0),($1662|0),($1663|0))|0); + $1665 = tempRet0; + $1666 = (_bitshift64Shl(($1662|0),($1663|0),21)|0); + $1667 = tempRet0; + $1668 = (_i64Subtract(($1656|0),($1657|0),($1666|0),($1667|0))|0); + $1669 = tempRet0; + $1670 = (_bitshift64Ashr(($1664|0),($1665|0),21)|0); + $1671 = tempRet0; + $1672 = (_i64Add(($1636|0),($1637|0),($1670|0),($1671|0))|0); + $1673 = tempRet0; + $1674 = (_bitshift64Shl(($1670|0),($1671|0),21)|0); + $1675 = tempRet0; + $1676 = (_i64Subtract(($1664|0),($1665|0),($1674|0),($1675|0))|0); + $1677 = tempRet0; + $1678 = (_bitshift64Ashr(($1672|0),($1673|0),21)|0); + $1679 = tempRet0; + $1680 = (_i64Add(($1678|0),($1679|0),($1574|0),($1575|0))|0); + $1681 = tempRet0; + $1682 = (_bitshift64Shl(($1678|0),($1679|0),21)|0); + $1683 = tempRet0; + $1684 = (_i64Subtract(($1672|0),($1673|0),($1682|0),($1683|0))|0); + $1685 = tempRet0; + $1686 = (_bitshift64Ashr(($1680|0),($1681|0),21)|0); + $1687 = tempRet0; + $1688 = (_i64Add(($1686|0),($1687|0),($1582|0),($1583|0))|0); + $1689 = tempRet0; + $1690 = (_bitshift64Shl(($1686|0),($1687|0),21)|0); + $1691 = tempRet0; + $1692 = (_i64Subtract(($1680|0),($1681|0),($1690|0),($1691|0))|0); + $1693 = tempRet0; + $1694 = (_bitshift64Ashr(($1688|0),($1689|0),21)|0); + $1695 = tempRet0; + $1696 = (_i64Add(($1694|0),($1695|0),($1590|0),($1591|0))|0); + $1697 = tempRet0; + $1698 = (_bitshift64Shl(($1694|0),($1695|0),21)|0); + $1699 = tempRet0; + $1700 = (_i64Subtract(($1688|0),($1689|0),($1698|0),($1699|0))|0); + $1701 = tempRet0; + $1702 = (_bitshift64Ashr(($1696|0),($1697|0),21)|0); + $1703 = tempRet0; + $1704 = (_i64Add(($1702|0),($1703|0),($1598|0),($1599|0))|0); + $1705 = tempRet0; + $1706 = (_bitshift64Shl(($1702|0),($1703|0),21)|0); + $1707 = tempRet0; + $1708 = (_i64Subtract(($1696|0),($1697|0),($1706|0),($1707|0))|0); + $1709 = tempRet0; + $1710 = (_bitshift64Ashr(($1704|0),($1705|0),21)|0); + $1711 = tempRet0; + $1712 = (_i64Add(($1710|0),($1711|0),($1606|0),($1607|0))|0); + $1713 = tempRet0; + $1714 = (_bitshift64Shl(($1710|0),($1711|0),21)|0); + $1715 = tempRet0; + $1716 = (_i64Subtract(($1704|0),($1705|0),($1714|0),($1715|0))|0); + $1717 = tempRet0; + $1718 = (_bitshift64Ashr(($1712|0),($1713|0),21)|0); + $1719 = tempRet0; + $1720 = (_i64Add(($1718|0),($1719|0),($1612|0),($1613|0))|0); + $1721 = tempRet0; + $1722 = (_bitshift64Shl(($1718|0),($1719|0),21)|0); + $1723 = tempRet0; + $1724 = (_i64Subtract(($1712|0),($1713|0),($1722|0),($1723|0))|0); + $1725 = tempRet0; + $1726 = $1644&255; + HEAP8[$s>>0] = $1726; + $1727 = (_bitshift64Lshr(($1644|0),($1645|0),8)|0); + $1728 = tempRet0; + $1729 = $1727&255; + $1730 = (($s) + 1|0); + HEAP8[$1730>>0] = $1729; + $1731 = (_bitshift64Lshr(($1644|0),($1645|0),16)|0); + $1732 = tempRet0; + $1733 = (_bitshift64Shl(($1652|0),($1653|0),5)|0); + $1734 = tempRet0; + $1735 = $1733 | $1731; + $1734 | $1732; + $1736 = $1735&255; + $1737 = (($s) + 2|0); + HEAP8[$1737>>0] = $1736; + $1738 = (_bitshift64Lshr(($1652|0),($1653|0),3)|0); + $1739 = tempRet0; + $1740 = $1738&255; + $1741 = (($s) + 3|0); + HEAP8[$1741>>0] = $1740; + $1742 = (_bitshift64Lshr(($1652|0),($1653|0),11)|0); + $1743 = tempRet0; + $1744 = $1742&255; + $1745 = (($s) + 4|0); + HEAP8[$1745>>0] = $1744; + $1746 = (_bitshift64Lshr(($1652|0),($1653|0),19)|0); + $1747 = tempRet0; + $1748 = (_bitshift64Shl(($1660|0),($1661|0),2)|0); + $1749 = tempRet0; + $1750 = $1748 | $1746; + $1749 | $1747; + $1751 = $1750&255; + $1752 = (($s) + 5|0); + HEAP8[$1752>>0] = $1751; + $1753 = (_bitshift64Lshr(($1660|0),($1661|0),6)|0); + $1754 = tempRet0; + $1755 = $1753&255; + $1756 = (($s) + 6|0); + HEAP8[$1756>>0] = $1755; + $1757 = (_bitshift64Lshr(($1660|0),($1661|0),14)|0); + $1758 = tempRet0; + $1759 = (_bitshift64Shl(($1668|0),($1669|0),7)|0); + $1760 = tempRet0; + $1761 = $1759 | $1757; + $1760 | $1758; + $1762 = $1761&255; + $1763 = (($s) + 7|0); + HEAP8[$1763>>0] = $1762; + $1764 = (_bitshift64Lshr(($1668|0),($1669|0),1)|0); + $1765 = tempRet0; + $1766 = $1764&255; + $1767 = (($s) + 8|0); + HEAP8[$1767>>0] = $1766; + $1768 = (_bitshift64Lshr(($1668|0),($1669|0),9)|0); + $1769 = tempRet0; + $1770 = $1768&255; + $1771 = (($s) + 9|0); + HEAP8[$1771>>0] = $1770; + $1772 = (_bitshift64Lshr(($1668|0),($1669|0),17)|0); + $1773 = tempRet0; + $1774 = (_bitshift64Shl(($1676|0),($1677|0),4)|0); + $1775 = tempRet0; + $1776 = $1774 | $1772; + $1775 | $1773; + $1777 = $1776&255; + $1778 = (($s) + 10|0); + HEAP8[$1778>>0] = $1777; + $1779 = (_bitshift64Lshr(($1676|0),($1677|0),4)|0); + $1780 = tempRet0; + $1781 = $1779&255; + $1782 = (($s) + 11|0); + HEAP8[$1782>>0] = $1781; + $1783 = (_bitshift64Lshr(($1676|0),($1677|0),12)|0); + $1784 = tempRet0; + $1785 = $1783&255; + $1786 = (($s) + 12|0); + HEAP8[$1786>>0] = $1785; + $1787 = (_bitshift64Lshr(($1676|0),($1677|0),20)|0); + $1788 = tempRet0; + $1789 = (_bitshift64Shl(($1684|0),($1685|0),1)|0); + $1790 = tempRet0; + $1791 = $1789 | $1787; + $1790 | $1788; + $1792 = $1791&255; + $1793 = (($s) + 13|0); + HEAP8[$1793>>0] = $1792; + $1794 = (_bitshift64Lshr(($1684|0),($1685|0),7)|0); + $1795 = tempRet0; + $1796 = $1794&255; + $1797 = (($s) + 14|0); + HEAP8[$1797>>0] = $1796; + $1798 = (_bitshift64Lshr(($1684|0),($1685|0),15)|0); + $1799 = tempRet0; + $1800 = (_bitshift64Shl(($1692|0),($1693|0),6)|0); + $1801 = tempRet0; + $1802 = $1800 | $1798; + $1801 | $1799; + $1803 = $1802&255; + $1804 = (($s) + 15|0); + HEAP8[$1804>>0] = $1803; + $1805 = (_bitshift64Lshr(($1692|0),($1693|0),2)|0); + $1806 = tempRet0; + $1807 = $1805&255; + $1808 = (($s) + 16|0); + HEAP8[$1808>>0] = $1807; + $1809 = (_bitshift64Lshr(($1692|0),($1693|0),10)|0); + $1810 = tempRet0; + $1811 = $1809&255; + $1812 = (($s) + 17|0); + HEAP8[$1812>>0] = $1811; + $1813 = (_bitshift64Lshr(($1692|0),($1693|0),18)|0); + $1814 = tempRet0; + $1815 = (_bitshift64Shl(($1700|0),($1701|0),3)|0); + $1816 = tempRet0; + $1817 = $1815 | $1813; + $1816 | $1814; + $1818 = $1817&255; + $1819 = (($s) + 18|0); + HEAP8[$1819>>0] = $1818; + $1820 = (_bitshift64Lshr(($1700|0),($1701|0),5)|0); + $1821 = tempRet0; + $1822 = $1820&255; + $1823 = (($s) + 19|0); + HEAP8[$1823>>0] = $1822; + $1824 = (_bitshift64Lshr(($1700|0),($1701|0),13)|0); + $1825 = tempRet0; + $1826 = $1824&255; + $1827 = (($s) + 20|0); + HEAP8[$1827>>0] = $1826; + $1828 = $1708&255; + $1829 = (($s) + 21|0); + HEAP8[$1829>>0] = $1828; + $1830 = (_bitshift64Lshr(($1708|0),($1709|0),8)|0); + $1831 = tempRet0; + $1832 = $1830&255; + $1833 = (($s) + 22|0); + HEAP8[$1833>>0] = $1832; + $1834 = (_bitshift64Lshr(($1708|0),($1709|0),16)|0); + $1835 = tempRet0; + $1836 = (_bitshift64Shl(($1716|0),($1717|0),5)|0); + $1837 = tempRet0; + $1838 = $1836 | $1834; + $1837 | $1835; + $1839 = $1838&255; + $1840 = (($s) + 23|0); + HEAP8[$1840>>0] = $1839; + $1841 = (_bitshift64Lshr(($1716|0),($1717|0),3)|0); + $1842 = tempRet0; + $1843 = $1841&255; + $1844 = (($s) + 24|0); + HEAP8[$1844>>0] = $1843; + $1845 = (_bitshift64Lshr(($1716|0),($1717|0),11)|0); + $1846 = tempRet0; + $1847 = $1845&255; + $1848 = (($s) + 25|0); + HEAP8[$1848>>0] = $1847; + $1849 = (_bitshift64Lshr(($1716|0),($1717|0),19)|0); + $1850 = tempRet0; + $1851 = (_bitshift64Shl(($1724|0),($1725|0),2)|0); + $1852 = tempRet0; + $1853 = $1851 | $1849; + $1852 | $1850; + $1854 = $1853&255; + $1855 = (($s) + 26|0); + HEAP8[$1855>>0] = $1854; + $1856 = (_bitshift64Lshr(($1724|0),($1725|0),6)|0); + $1857 = tempRet0; + $1858 = $1856&255; + $1859 = (($s) + 27|0); + HEAP8[$1859>>0] = $1858; + $1860 = (_bitshift64Lshr(($1724|0),($1725|0),14)|0); + $1861 = tempRet0; + $1862 = (_bitshift64Shl(($1720|0),($1721|0),7)|0); + $1863 = tempRet0; + $1864 = $1860 | $1862; + $1861 | $1863; + $1865 = $1864&255; + $1866 = (($s) + 28|0); + HEAP8[$1866>>0] = $1865; + $1867 = (_bitshift64Lshr(($1720|0),($1721|0),1)|0); + $1868 = tempRet0; + $1869 = $1867&255; + $1870 = (($s) + 29|0); + HEAP8[$1870>>0] = $1869; + $1871 = (_bitshift64Lshr(($1720|0),($1721|0),9)|0); + $1872 = tempRet0; + $1873 = $1871&255; + $1874 = (($s) + 30|0); + HEAP8[$1874>>0] = $1873; + $1875 = (_bitshift64Lshr(($1720|0),($1721|0),17)|0); + $1876 = tempRet0; + $1877 = $1875&255; + $1878 = (($s) + 31|0); + HEAP8[$1878>>0] = $1877; + STACKTOP = sp;return; +} +function _load_347($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + tempRet0 = $14; + STACKTOP = sp;return ($13|0); +} +function _load_448($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + $15 = (($in) + 3|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16&255; + $18 = (_bitshift64Shl(($17|0),0,24)|0); + $19 = tempRet0; + $20 = $13 | $18; + $21 = $14 | $19; + tempRet0 = $21; + STACKTOP = sp;return ($20|0); +} +function _crypto_sign_ed25519_ref10_sc_reduce($s) { + $s = $s|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; + var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0; + var $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0; + var $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0; + var $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0; + var $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0; + var $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0; + var $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0; + var $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0; + var $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0; + var $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0; + var $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0; + var $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0; + var $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0; + var $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0; + var $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0; + var $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0; + var $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0; + var $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0; + var $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0; + var $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0; + var $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0; + var $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0; + var $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0; + var $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0; + var $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0; + var $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0; + var $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0; + var $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0; + var $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0; + var $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0; + var $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0; + var $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0; + var $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0; + var $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0; + var $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0; + var $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0; + var $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0; + var $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0; + var $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0; + var $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0; + var $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0; + var $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0; + var $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0; + var $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0; + var $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0; + var $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0; + var $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0; + var $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0; + var $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0; + var $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0; + var $997 = 0, $998 = 0, $999 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (_load_351($s)|0); + $1 = tempRet0; + $2 = $0 & 2097151; + $3 = (($s) + 2|0); + $4 = (_load_452($3)|0); + $5 = tempRet0; + $6 = (_bitshift64Lshr(($4|0),($5|0),5)|0); + $7 = tempRet0; + $8 = $6 & 2097151; + $9 = (($s) + 5|0); + $10 = (_load_351($9)|0); + $11 = tempRet0; + $12 = (_bitshift64Lshr(($10|0),($11|0),2)|0); + $13 = tempRet0; + $14 = $12 & 2097151; + $15 = (($s) + 7|0); + $16 = (_load_452($15)|0); + $17 = tempRet0; + $18 = (_bitshift64Lshr(($16|0),($17|0),7)|0); + $19 = tempRet0; + $20 = $18 & 2097151; + $21 = (($s) + 10|0); + $22 = (_load_452($21)|0); + $23 = tempRet0; + $24 = (_bitshift64Lshr(($22|0),($23|0),4)|0); + $25 = tempRet0; + $26 = $24 & 2097151; + $27 = (($s) + 13|0); + $28 = (_load_351($27)|0); + $29 = tempRet0; + $30 = (_bitshift64Lshr(($28|0),($29|0),1)|0); + $31 = tempRet0; + $32 = $30 & 2097151; + $33 = (($s) + 15|0); + $34 = (_load_452($33)|0); + $35 = tempRet0; + $36 = (_bitshift64Lshr(($34|0),($35|0),6)|0); + $37 = tempRet0; + $38 = $36 & 2097151; + $39 = (($s) + 18|0); + $40 = (_load_351($39)|0); + $41 = tempRet0; + $42 = (_bitshift64Lshr(($40|0),($41|0),3)|0); + $43 = tempRet0; + $44 = $42 & 2097151; + $45 = (($s) + 21|0); + $46 = (_load_351($45)|0); + $47 = tempRet0; + $48 = $46 & 2097151; + $49 = (($s) + 23|0); + $50 = (_load_452($49)|0); + $51 = tempRet0; + $52 = (_bitshift64Lshr(($50|0),($51|0),5)|0); + $53 = tempRet0; + $54 = $52 & 2097151; + $55 = (($s) + 26|0); + $56 = (_load_351($55)|0); + $57 = tempRet0; + $58 = (_bitshift64Lshr(($56|0),($57|0),2)|0); + $59 = tempRet0; + $60 = $58 & 2097151; + $61 = (($s) + 28|0); + $62 = (_load_452($61)|0); + $63 = tempRet0; + $64 = (_bitshift64Lshr(($62|0),($63|0),7)|0); + $65 = tempRet0; + $66 = $64 & 2097151; + $67 = (($s) + 31|0); + $68 = (_load_452($67)|0); + $69 = tempRet0; + $70 = (_bitshift64Lshr(($68|0),($69|0),4)|0); + $71 = tempRet0; + $72 = $70 & 2097151; + $73 = (($s) + 34|0); + $74 = (_load_351($73)|0); + $75 = tempRet0; + $76 = (_bitshift64Lshr(($74|0),($75|0),1)|0); + $77 = tempRet0; + $78 = $76 & 2097151; + $79 = (($s) + 36|0); + $80 = (_load_452($79)|0); + $81 = tempRet0; + $82 = (_bitshift64Lshr(($80|0),($81|0),6)|0); + $83 = tempRet0; + $84 = $82 & 2097151; + $85 = (($s) + 39|0); + $86 = (_load_351($85)|0); + $87 = tempRet0; + $88 = (_bitshift64Lshr(($86|0),($87|0),3)|0); + $89 = tempRet0; + $90 = $88 & 2097151; + $91 = (($s) + 42|0); + $92 = (_load_351($91)|0); + $93 = tempRet0; + $94 = $92 & 2097151; + $95 = (($s) + 44|0); + $96 = (_load_452($95)|0); + $97 = tempRet0; + $98 = (_bitshift64Lshr(($96|0),($97|0),5)|0); + $99 = tempRet0; + $100 = $98 & 2097151; + $101 = (($s) + 47|0); + $102 = (_load_351($101)|0); + $103 = tempRet0; + $104 = (_bitshift64Lshr(($102|0),($103|0),2)|0); + $105 = tempRet0; + $106 = $104 & 2097151; + $107 = (($s) + 49|0); + $108 = (_load_452($107)|0); + $109 = tempRet0; + $110 = (_bitshift64Lshr(($108|0),($109|0),7)|0); + $111 = tempRet0; + $112 = $110 & 2097151; + $113 = (($s) + 52|0); + $114 = (_load_452($113)|0); + $115 = tempRet0; + $116 = (_bitshift64Lshr(($114|0),($115|0),4)|0); + $117 = tempRet0; + $118 = $116 & 2097151; + $119 = (($s) + 55|0); + $120 = (_load_351($119)|0); + $121 = tempRet0; + $122 = (_bitshift64Lshr(($120|0),($121|0),1)|0); + $123 = tempRet0; + $124 = $122 & 2097151; + $125 = (($s) + 57|0); + $126 = (_load_452($125)|0); + $127 = tempRet0; + $128 = (_bitshift64Lshr(($126|0),($127|0),6)|0); + $129 = tempRet0; + $130 = $128 & 2097151; + $131 = (($s) + 60|0); + $132 = (_load_452($131)|0); + $133 = tempRet0; + $134 = (_bitshift64Lshr(($132|0),($133|0),3)|0); + $135 = tempRet0; + $136 = (___muldi3(($134|0),($135|0),666643,0)|0); + $137 = tempRet0; + $138 = (___muldi3(($134|0),($135|0),470296,0)|0); + $139 = tempRet0; + $140 = (___muldi3(($134|0),($135|0),654183,0)|0); + $141 = tempRet0; + $142 = (___muldi3(($134|0),($135|0),-997805,-1)|0); + $143 = tempRet0; + $144 = (___muldi3(($134|0),($135|0),136657,0)|0); + $145 = tempRet0; + $146 = (_i64Add(($144|0),($145|0),($90|0),0)|0); + $147 = tempRet0; + $148 = (___muldi3(($134|0),($135|0),-683901,-1)|0); + $149 = tempRet0; + $150 = (_i64Add(($148|0),($149|0),($94|0),0)|0); + $151 = tempRet0; + $152 = (___muldi3(($130|0),0,666643,0)|0); + $153 = tempRet0; + $154 = (___muldi3(($130|0),0,470296,0)|0); + $155 = tempRet0; + $156 = (___muldi3(($130|0),0,654183,0)|0); + $157 = tempRet0; + $158 = (___muldi3(($130|0),0,-997805,-1)|0); + $159 = tempRet0; + $160 = (___muldi3(($130|0),0,136657,0)|0); + $161 = tempRet0; + $162 = (___muldi3(($130|0),0,-683901,-1)|0); + $163 = tempRet0; + $164 = (_i64Add(($146|0),($147|0),($162|0),($163|0))|0); + $165 = tempRet0; + $166 = (___muldi3(($124|0),0,666643,0)|0); + $167 = tempRet0; + $168 = (___muldi3(($124|0),0,470296,0)|0); + $169 = tempRet0; + $170 = (___muldi3(($124|0),0,654183,0)|0); + $171 = tempRet0; + $172 = (___muldi3(($124|0),0,-997805,-1)|0); + $173 = tempRet0; + $174 = (___muldi3(($124|0),0,136657,0)|0); + $175 = tempRet0; + $176 = (___muldi3(($124|0),0,-683901,-1)|0); + $177 = tempRet0; + $178 = (_i64Add(($176|0),($177|0),($84|0),0)|0); + $179 = tempRet0; + $180 = (_i64Add(($178|0),($179|0),($142|0),($143|0))|0); + $181 = tempRet0; + $182 = (_i64Add(($180|0),($181|0),($160|0),($161|0))|0); + $183 = tempRet0; + $184 = (___muldi3(($118|0),0,666643,0)|0); + $185 = tempRet0; + $186 = (___muldi3(($118|0),0,470296,0)|0); + $187 = tempRet0; + $188 = (___muldi3(($118|0),0,654183,0)|0); + $189 = tempRet0; + $190 = (___muldi3(($118|0),0,-997805,-1)|0); + $191 = tempRet0; + $192 = (___muldi3(($118|0),0,136657,0)|0); + $193 = tempRet0; + $194 = (___muldi3(($118|0),0,-683901,-1)|0); + $195 = tempRet0; + $196 = (___muldi3(($112|0),0,666643,0)|0); + $197 = tempRet0; + $198 = (___muldi3(($112|0),0,470296,0)|0); + $199 = tempRet0; + $200 = (___muldi3(($112|0),0,654183,0)|0); + $201 = tempRet0; + $202 = (___muldi3(($112|0),0,-997805,-1)|0); + $203 = tempRet0; + $204 = (___muldi3(($112|0),0,136657,0)|0); + $205 = tempRet0; + $206 = (___muldi3(($112|0),0,-683901,-1)|0); + $207 = tempRet0; + $208 = (_i64Add(($206|0),($207|0),($72|0),0)|0); + $209 = tempRet0; + $210 = (_i64Add(($208|0),($209|0),($192|0),($193|0))|0); + $211 = tempRet0; + $212 = (_i64Add(($210|0),($211|0),($172|0),($173|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($212|0),($213|0),($138|0),($139|0))|0); + $215 = tempRet0; + $216 = (_i64Add(($214|0),($215|0),($156|0),($157|0))|0); + $217 = tempRet0; + $218 = (___muldi3(($106|0),0,666643,0)|0); + $219 = tempRet0; + $220 = (_i64Add(($218|0),($219|0),($38|0),0)|0); + $221 = tempRet0; + $222 = (___muldi3(($106|0),0,470296,0)|0); + $223 = tempRet0; + $224 = (___muldi3(($106|0),0,654183,0)|0); + $225 = tempRet0; + $226 = (_i64Add(($224|0),($225|0),($48|0),0)|0); + $227 = tempRet0; + $228 = (_i64Add(($226|0),($227|0),($198|0),($199|0))|0); + $229 = tempRet0; + $230 = (_i64Add(($228|0),($229|0),($184|0),($185|0))|0); + $231 = tempRet0; + $232 = (___muldi3(($106|0),0,-997805,-1)|0); + $233 = tempRet0; + $234 = (___muldi3(($106|0),0,136657,0)|0); + $235 = tempRet0; + $236 = (_i64Add(($234|0),($235|0),($60|0),0)|0); + $237 = tempRet0; + $238 = (_i64Add(($236|0),($237|0),($202|0),($203|0))|0); + $239 = tempRet0; + $240 = (_i64Add(($238|0),($239|0),($188|0),($189|0))|0); + $241 = tempRet0; + $242 = (_i64Add(($240|0),($241|0),($168|0),($169|0))|0); + $243 = tempRet0; + $244 = (_i64Add(($242|0),($243|0),($152|0),($153|0))|0); + $245 = tempRet0; + $246 = (___muldi3(($106|0),0,-683901,-1)|0); + $247 = tempRet0; + $248 = (_i64Add(($220|0),($221|0),1048576,0)|0); + $249 = tempRet0; + $250 = (_bitshift64Lshr(($248|0),($249|0),21)|0); + $251 = tempRet0; + $252 = (_i64Add(($222|0),($223|0),($44|0),0)|0); + $253 = tempRet0; + $254 = (_i64Add(($252|0),($253|0),($196|0),($197|0))|0); + $255 = tempRet0; + $256 = (_i64Add(($254|0),($255|0),($250|0),($251|0))|0); + $257 = tempRet0; + $258 = (_bitshift64Shl(($250|0),($251|0),21)|0); + $259 = tempRet0; + $260 = (_i64Subtract(($220|0),($221|0),($258|0),($259|0))|0); + $261 = tempRet0; + $262 = (_i64Add(($230|0),($231|0),1048576,0)|0); + $263 = tempRet0; + $264 = (_bitshift64Lshr(($262|0),($263|0),21)|0); + $265 = tempRet0; + $266 = (_i64Add(($232|0),($233|0),($54|0),0)|0); + $267 = tempRet0; + $268 = (_i64Add(($266|0),($267|0),($200|0),($201|0))|0); + $269 = tempRet0; + $270 = (_i64Add(($268|0),($269|0),($186|0),($187|0))|0); + $271 = tempRet0; + $272 = (_i64Add(($270|0),($271|0),($166|0),($167|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($264|0),($265|0))|0); + $275 = tempRet0; + $276 = (_bitshift64Shl(($264|0),($265|0),21)|0); + $277 = tempRet0; + $278 = (_i64Subtract(($230|0),($231|0),($276|0),($277|0))|0); + $279 = tempRet0; + $280 = (_i64Add(($244|0),($245|0),1048576,0)|0); + $281 = tempRet0; + $282 = (_bitshift64Ashr(($280|0),($281|0),21)|0); + $283 = tempRet0; + $284 = (_i64Add(($246|0),($247|0),($66|0),0)|0); + $285 = tempRet0; + $286 = (_i64Add(($284|0),($285|0),($204|0),($205|0))|0); + $287 = tempRet0; + $288 = (_i64Add(($286|0),($287|0),($190|0),($191|0))|0); + $289 = tempRet0; + $290 = (_i64Add(($288|0),($289|0),($170|0),($171|0))|0); + $291 = tempRet0; + $292 = (_i64Add(($290|0),($291|0),($136|0),($137|0))|0); + $293 = tempRet0; + $294 = (_i64Add(($292|0),($293|0),($154|0),($155|0))|0); + $295 = tempRet0; + $296 = (_i64Add(($294|0),($295|0),($282|0),($283|0))|0); + $297 = tempRet0; + $298 = (_bitshift64Shl(($282|0),($283|0),21)|0); + $299 = tempRet0; + $300 = (_i64Subtract(($244|0),($245|0),($298|0),($299|0))|0); + $301 = tempRet0; + $302 = (_i64Add(($216|0),($217|0),1048576,0)|0); + $303 = tempRet0; + $304 = (_bitshift64Ashr(($302|0),($303|0),21)|0); + $305 = tempRet0; + $306 = (_i64Add(($194|0),($195|0),($78|0),0)|0); + $307 = tempRet0; + $308 = (_i64Add(($306|0),($307|0),($174|0),($175|0))|0); + $309 = tempRet0; + $310 = (_i64Add(($308|0),($309|0),($140|0),($141|0))|0); + $311 = tempRet0; + $312 = (_i64Add(($310|0),($311|0),($158|0),($159|0))|0); + $313 = tempRet0; + $314 = (_i64Add(($312|0),($313|0),($304|0),($305|0))|0); + $315 = tempRet0; + $316 = (_bitshift64Shl(($304|0),($305|0),21)|0); + $317 = tempRet0; + $318 = (_i64Subtract(($216|0),($217|0),($316|0),($317|0))|0); + $319 = tempRet0; + $320 = (_i64Add(($182|0),($183|0),1048576,0)|0); + $321 = tempRet0; + $322 = (_bitshift64Ashr(($320|0),($321|0),21)|0); + $323 = tempRet0; + $324 = (_i64Add(($164|0),($165|0),($322|0),($323|0))|0); + $325 = tempRet0; + $326 = (_bitshift64Shl(($322|0),($323|0),21)|0); + $327 = tempRet0; + $328 = (_i64Subtract(($182|0),($183|0),($326|0),($327|0))|0); + $329 = tempRet0; + $330 = (_i64Add(($150|0),($151|0),1048576,0)|0); + $331 = tempRet0; + $332 = (_bitshift64Ashr(($330|0),($331|0),21)|0); + $333 = tempRet0; + $334 = (_i64Add(($332|0),($333|0),($100|0),0)|0); + $335 = tempRet0; + $336 = (_bitshift64Shl(($332|0),($333|0),21)|0); + $337 = tempRet0; + $338 = (_i64Subtract(($150|0),($151|0),($336|0),($337|0))|0); + $339 = tempRet0; + $340 = (_i64Add(($256|0),($257|0),1048576,0)|0); + $341 = tempRet0; + $342 = (_bitshift64Lshr(($340|0),($341|0),21)|0); + $343 = tempRet0; + $344 = (_i64Add(($278|0),($279|0),($342|0),($343|0))|0); + $345 = tempRet0; + $346 = (_bitshift64Shl(($342|0),($343|0),21)|0); + $347 = tempRet0; + $348 = (_i64Subtract(($256|0),($257|0),($346|0),($347|0))|0); + $349 = tempRet0; + $350 = (_i64Add(($274|0),($275|0),1048576,0)|0); + $351 = tempRet0; + $352 = (_bitshift64Ashr(($350|0),($351|0),21)|0); + $353 = tempRet0; + $354 = (_i64Add(($300|0),($301|0),($352|0),($353|0))|0); + $355 = tempRet0; + $356 = (_bitshift64Shl(($352|0),($353|0),21)|0); + $357 = tempRet0; + $358 = (_i64Subtract(($274|0),($275|0),($356|0),($357|0))|0); + $359 = tempRet0; + $360 = (_i64Add(($296|0),($297|0),1048576,0)|0); + $361 = tempRet0; + $362 = (_bitshift64Ashr(($360|0),($361|0),21)|0); + $363 = tempRet0; + $364 = (_i64Add(($318|0),($319|0),($362|0),($363|0))|0); + $365 = tempRet0; + $366 = (_bitshift64Shl(($362|0),($363|0),21)|0); + $367 = tempRet0; + $368 = (_i64Subtract(($296|0),($297|0),($366|0),($367|0))|0); + $369 = tempRet0; + $370 = (_i64Add(($314|0),($315|0),1048576,0)|0); + $371 = tempRet0; + $372 = (_bitshift64Ashr(($370|0),($371|0),21)|0); + $373 = tempRet0; + $374 = (_i64Add(($372|0),($373|0),($328|0),($329|0))|0); + $375 = tempRet0; + $376 = (_bitshift64Shl(($372|0),($373|0),21)|0); + $377 = tempRet0; + $378 = (_i64Subtract(($314|0),($315|0),($376|0),($377|0))|0); + $379 = tempRet0; + $380 = (_i64Add(($324|0),($325|0),1048576,0)|0); + $381 = tempRet0; + $382 = (_bitshift64Ashr(($380|0),($381|0),21)|0); + $383 = tempRet0; + $384 = (_i64Add(($382|0),($383|0),($338|0),($339|0))|0); + $385 = tempRet0; + $386 = (_bitshift64Shl(($382|0),($383|0),21)|0); + $387 = tempRet0; + $388 = (_i64Subtract(($324|0),($325|0),($386|0),($387|0))|0); + $389 = tempRet0; + $390 = (___muldi3(($334|0),($335|0),666643,0)|0); + $391 = tempRet0; + $392 = (_i64Add(($390|0),($391|0),($32|0),0)|0); + $393 = tempRet0; + $394 = (___muldi3(($334|0),($335|0),470296,0)|0); + $395 = tempRet0; + $396 = (_i64Add(($260|0),($261|0),($394|0),($395|0))|0); + $397 = tempRet0; + $398 = (___muldi3(($334|0),($335|0),654183,0)|0); + $399 = tempRet0; + $400 = (_i64Add(($348|0),($349|0),($398|0),($399|0))|0); + $401 = tempRet0; + $402 = (___muldi3(($334|0),($335|0),-997805,-1)|0); + $403 = tempRet0; + $404 = (_i64Add(($344|0),($345|0),($402|0),($403|0))|0); + $405 = tempRet0; + $406 = (___muldi3(($334|0),($335|0),136657,0)|0); + $407 = tempRet0; + $408 = (_i64Add(($358|0),($359|0),($406|0),($407|0))|0); + $409 = tempRet0; + $410 = (___muldi3(($334|0),($335|0),-683901,-1)|0); + $411 = tempRet0; + $412 = (_i64Add(($354|0),($355|0),($410|0),($411|0))|0); + $413 = tempRet0; + $414 = (___muldi3(($384|0),($385|0),666643,0)|0); + $415 = tempRet0; + $416 = (___muldi3(($384|0),($385|0),470296,0)|0); + $417 = tempRet0; + $418 = (___muldi3(($384|0),($385|0),654183,0)|0); + $419 = tempRet0; + $420 = (_i64Add(($396|0),($397|0),($418|0),($419|0))|0); + $421 = tempRet0; + $422 = (___muldi3(($384|0),($385|0),-997805,-1)|0); + $423 = tempRet0; + $424 = (_i64Add(($400|0),($401|0),($422|0),($423|0))|0); + $425 = tempRet0; + $426 = (___muldi3(($384|0),($385|0),136657,0)|0); + $427 = tempRet0; + $428 = (_i64Add(($404|0),($405|0),($426|0),($427|0))|0); + $429 = tempRet0; + $430 = (___muldi3(($384|0),($385|0),-683901,-1)|0); + $431 = tempRet0; + $432 = (_i64Add(($408|0),($409|0),($430|0),($431|0))|0); + $433 = tempRet0; + $434 = (___muldi3(($388|0),($389|0),666643,0)|0); + $435 = tempRet0; + $436 = (___muldi3(($388|0),($389|0),470296,0)|0); + $437 = tempRet0; + $438 = (___muldi3(($388|0),($389|0),654183,0)|0); + $439 = tempRet0; + $440 = (___muldi3(($388|0),($389|0),-997805,-1)|0); + $441 = tempRet0; + $442 = (___muldi3(($388|0),($389|0),136657,0)|0); + $443 = tempRet0; + $444 = (___muldi3(($388|0),($389|0),-683901,-1)|0); + $445 = tempRet0; + $446 = (_i64Add(($428|0),($429|0),($444|0),($445|0))|0); + $447 = tempRet0; + $448 = (___muldi3(($374|0),($375|0),666643,0)|0); + $449 = tempRet0; + $450 = (___muldi3(($374|0),($375|0),470296,0)|0); + $451 = tempRet0; + $452 = (___muldi3(($374|0),($375|0),654183,0)|0); + $453 = tempRet0; + $454 = (___muldi3(($374|0),($375|0),-997805,-1)|0); + $455 = tempRet0; + $456 = (___muldi3(($374|0),($375|0),136657,0)|0); + $457 = tempRet0; + $458 = (___muldi3(($374|0),($375|0),-683901,-1)|0); + $459 = tempRet0; + $460 = (___muldi3(($378|0),($379|0),666643,0)|0); + $461 = tempRet0; + $462 = (___muldi3(($378|0),($379|0),470296,0)|0); + $463 = tempRet0; + $464 = (___muldi3(($378|0),($379|0),654183,0)|0); + $465 = tempRet0; + $466 = (___muldi3(($378|0),($379|0),-997805,-1)|0); + $467 = tempRet0; + $468 = (___muldi3(($378|0),($379|0),136657,0)|0); + $469 = tempRet0; + $470 = (___muldi3(($378|0),($379|0),-683901,-1)|0); + $471 = tempRet0; + $472 = (_i64Add(($420|0),($421|0),($456|0),($457|0))|0); + $473 = tempRet0; + $474 = (_i64Add(($472|0),($473|0),($440|0),($441|0))|0); + $475 = tempRet0; + $476 = (_i64Add(($474|0),($475|0),($470|0),($471|0))|0); + $477 = tempRet0; + $478 = (___muldi3(($364|0),($365|0),666643,0)|0); + $479 = tempRet0; + $480 = (_i64Add(($478|0),($479|0),($2|0),0)|0); + $481 = tempRet0; + $482 = (___muldi3(($364|0),($365|0),470296,0)|0); + $483 = tempRet0; + $484 = (___muldi3(($364|0),($365|0),654183,0)|0); + $485 = tempRet0; + $486 = (_i64Add(($484|0),($485|0),($14|0),0)|0); + $487 = tempRet0; + $488 = (_i64Add(($486|0),($487|0),($448|0),($449|0))|0); + $489 = tempRet0; + $490 = (_i64Add(($488|0),($489|0),($462|0),($463|0))|0); + $491 = tempRet0; + $492 = (___muldi3(($364|0),($365|0),-997805,-1)|0); + $493 = tempRet0; + $494 = (___muldi3(($364|0),($365|0),136657,0)|0); + $495 = tempRet0; + $496 = (_i64Add(($494|0),($495|0),($26|0),0)|0); + $497 = tempRet0; + $498 = (_i64Add(($496|0),($497|0),($414|0),($415|0))|0); + $499 = tempRet0; + $500 = (_i64Add(($498|0),($499|0),($452|0),($453|0))|0); + $501 = tempRet0; + $502 = (_i64Add(($500|0),($501|0),($436|0),($437|0))|0); + $503 = tempRet0; + $504 = (_i64Add(($502|0),($503|0),($466|0),($467|0))|0); + $505 = tempRet0; + $506 = (___muldi3(($364|0),($365|0),-683901,-1)|0); + $507 = tempRet0; + $508 = (_i64Add(($480|0),($481|0),1048576,0)|0); + $509 = tempRet0; + $510 = (_bitshift64Ashr(($508|0),($509|0),21)|0); + $511 = tempRet0; + $512 = (_i64Add(($482|0),($483|0),($8|0),0)|0); + $513 = tempRet0; + $514 = (_i64Add(($512|0),($513|0),($460|0),($461|0))|0); + $515 = tempRet0; + $516 = (_i64Add(($514|0),($515|0),($510|0),($511|0))|0); + $517 = tempRet0; + $518 = (_bitshift64Shl(($510|0),($511|0),21)|0); + $519 = tempRet0; + $520 = (_i64Subtract(($480|0),($481|0),($518|0),($519|0))|0); + $521 = tempRet0; + $522 = (_i64Add(($490|0),($491|0),1048576,0)|0); + $523 = tempRet0; + $524 = (_bitshift64Ashr(($522|0),($523|0),21)|0); + $525 = tempRet0; + $526 = (_i64Add(($492|0),($493|0),($20|0),0)|0); + $527 = tempRet0; + $528 = (_i64Add(($526|0),($527|0),($450|0),($451|0))|0); + $529 = tempRet0; + $530 = (_i64Add(($528|0),($529|0),($434|0),($435|0))|0); + $531 = tempRet0; + $532 = (_i64Add(($530|0),($531|0),($464|0),($465|0))|0); + $533 = tempRet0; + $534 = (_i64Add(($532|0),($533|0),($524|0),($525|0))|0); + $535 = tempRet0; + $536 = (_bitshift64Shl(($524|0),($525|0),21)|0); + $537 = tempRet0; + $538 = (_i64Add(($504|0),($505|0),1048576,0)|0); + $539 = tempRet0; + $540 = (_bitshift64Ashr(($538|0),($539|0),21)|0); + $541 = tempRet0; + $542 = (_i64Add(($392|0),($393|0),($506|0),($507|0))|0); + $543 = tempRet0; + $544 = (_i64Add(($542|0),($543|0),($416|0),($417|0))|0); + $545 = tempRet0; + $546 = (_i64Add(($544|0),($545|0),($454|0),($455|0))|0); + $547 = tempRet0; + $548 = (_i64Add(($546|0),($547|0),($438|0),($439|0))|0); + $549 = tempRet0; + $550 = (_i64Add(($548|0),($549|0),($468|0),($469|0))|0); + $551 = tempRet0; + $552 = (_i64Add(($550|0),($551|0),($540|0),($541|0))|0); + $553 = tempRet0; + $554 = (_bitshift64Shl(($540|0),($541|0),21)|0); + $555 = tempRet0; + $556 = (_i64Add(($476|0),($477|0),1048576,0)|0); + $557 = tempRet0; + $558 = (_bitshift64Ashr(($556|0),($557|0),21)|0); + $559 = tempRet0; + $560 = (_i64Add(($424|0),($425|0),($458|0),($459|0))|0); + $561 = tempRet0; + $562 = (_i64Add(($560|0),($561|0),($442|0),($443|0))|0); + $563 = tempRet0; + $564 = (_i64Add(($562|0),($563|0),($558|0),($559|0))|0); + $565 = tempRet0; + $566 = (_bitshift64Shl(($558|0),($559|0),21)|0); + $567 = tempRet0; + $568 = (_i64Subtract(($476|0),($477|0),($566|0),($567|0))|0); + $569 = tempRet0; + $570 = (_i64Add(($446|0),($447|0),1048576,0)|0); + $571 = tempRet0; + $572 = (_bitshift64Ashr(($570|0),($571|0),21)|0); + $573 = tempRet0; + $574 = (_i64Add(($432|0),($433|0),($572|0),($573|0))|0); + $575 = tempRet0; + $576 = (_bitshift64Shl(($572|0),($573|0),21)|0); + $577 = tempRet0; + $578 = (_i64Subtract(($446|0),($447|0),($576|0),($577|0))|0); + $579 = tempRet0; + $580 = (_i64Add(($412|0),($413|0),1048576,0)|0); + $581 = tempRet0; + $582 = (_bitshift64Ashr(($580|0),($581|0),21)|0); + $583 = tempRet0; + $584 = (_i64Add(($582|0),($583|0),($368|0),($369|0))|0); + $585 = tempRet0; + $586 = (_bitshift64Shl(($582|0),($583|0),21)|0); + $587 = tempRet0; + $588 = (_i64Subtract(($412|0),($413|0),($586|0),($587|0))|0); + $589 = tempRet0; + $590 = (_i64Add(($516|0),($517|0),1048576,0)|0); + $591 = tempRet0; + $592 = (_bitshift64Ashr(($590|0),($591|0),21)|0); + $593 = tempRet0; + $594 = (_bitshift64Shl(($592|0),($593|0),21)|0); + $595 = tempRet0; + $596 = (_i64Add(($534|0),($535|0),1048576,0)|0); + $597 = tempRet0; + $598 = (_bitshift64Ashr(($596|0),($597|0),21)|0); + $599 = tempRet0; + $600 = (_bitshift64Shl(($598|0),($599|0),21)|0); + $601 = tempRet0; + $602 = (_i64Add(($552|0),($553|0),1048576,0)|0); + $603 = tempRet0; + $604 = (_bitshift64Ashr(($602|0),($603|0),21)|0); + $605 = tempRet0; + $606 = (_i64Add(($568|0),($569|0),($604|0),($605|0))|0); + $607 = tempRet0; + $608 = (_bitshift64Shl(($604|0),($605|0),21)|0); + $609 = tempRet0; + $610 = (_i64Add(($564|0),($565|0),1048576,0)|0); + $611 = tempRet0; + $612 = (_bitshift64Ashr(($610|0),($611|0),21)|0); + $613 = tempRet0; + $614 = (_i64Add(($578|0),($579|0),($612|0),($613|0))|0); + $615 = tempRet0; + $616 = (_bitshift64Shl(($612|0),($613|0),21)|0); + $617 = tempRet0; + $618 = (_i64Subtract(($564|0),($565|0),($616|0),($617|0))|0); + $619 = tempRet0; + $620 = (_i64Add(($574|0),($575|0),1048576,0)|0); + $621 = tempRet0; + $622 = (_bitshift64Ashr(($620|0),($621|0),21)|0); + $623 = tempRet0; + $624 = (_i64Add(($588|0),($589|0),($622|0),($623|0))|0); + $625 = tempRet0; + $626 = (_bitshift64Shl(($622|0),($623|0),21)|0); + $627 = tempRet0; + $628 = (_i64Subtract(($574|0),($575|0),($626|0),($627|0))|0); + $629 = tempRet0; + $630 = (_i64Add(($584|0),($585|0),1048576,0)|0); + $631 = tempRet0; + $632 = (_bitshift64Ashr(($630|0),($631|0),21)|0); + $633 = tempRet0; + $634 = (_bitshift64Shl(($632|0),($633|0),21)|0); + $635 = tempRet0; + $636 = (_i64Subtract(($584|0),($585|0),($634|0),($635|0))|0); + $637 = tempRet0; + $638 = (___muldi3(($632|0),($633|0),666643,0)|0); + $639 = tempRet0; + $640 = (_i64Add(($520|0),($521|0),($638|0),($639|0))|0); + $641 = tempRet0; + $642 = (___muldi3(($632|0),($633|0),470296,0)|0); + $643 = tempRet0; + $644 = (___muldi3(($632|0),($633|0),654183,0)|0); + $645 = tempRet0; + $646 = (___muldi3(($632|0),($633|0),-997805,-1)|0); + $647 = tempRet0; + $648 = (___muldi3(($632|0),($633|0),136657,0)|0); + $649 = tempRet0; + $650 = (___muldi3(($632|0),($633|0),-683901,-1)|0); + $651 = tempRet0; + $652 = (_bitshift64Ashr(($640|0),($641|0),21)|0); + $653 = tempRet0; + $654 = (_i64Add(($642|0),($643|0),($516|0),($517|0))|0); + $655 = tempRet0; + $656 = (_i64Subtract(($654|0),($655|0),($594|0),($595|0))|0); + $657 = tempRet0; + $658 = (_i64Add(($656|0),($657|0),($652|0),($653|0))|0); + $659 = tempRet0; + $660 = (_bitshift64Shl(($652|0),($653|0),21)|0); + $661 = tempRet0; + $662 = (_i64Subtract(($640|0),($641|0),($660|0),($661|0))|0); + $663 = tempRet0; + $664 = (_bitshift64Ashr(($658|0),($659|0),21)|0); + $665 = tempRet0; + $666 = (_i64Add(($644|0),($645|0),($490|0),($491|0))|0); + $667 = tempRet0; + $668 = (_i64Subtract(($666|0),($667|0),($536|0),($537|0))|0); + $669 = tempRet0; + $670 = (_i64Add(($668|0),($669|0),($592|0),($593|0))|0); + $671 = tempRet0; + $672 = (_i64Add(($670|0),($671|0),($664|0),($665|0))|0); + $673 = tempRet0; + $674 = (_bitshift64Shl(($664|0),($665|0),21)|0); + $675 = tempRet0; + $676 = (_i64Subtract(($658|0),($659|0),($674|0),($675|0))|0); + $677 = tempRet0; + $678 = (_bitshift64Ashr(($672|0),($673|0),21)|0); + $679 = tempRet0; + $680 = (_i64Add(($534|0),($535|0),($646|0),($647|0))|0); + $681 = tempRet0; + $682 = (_i64Subtract(($680|0),($681|0),($600|0),($601|0))|0); + $683 = tempRet0; + $684 = (_i64Add(($682|0),($683|0),($678|0),($679|0))|0); + $685 = tempRet0; + $686 = (_bitshift64Shl(($678|0),($679|0),21)|0); + $687 = tempRet0; + $688 = (_i64Subtract(($672|0),($673|0),($686|0),($687|0))|0); + $689 = tempRet0; + $690 = (_bitshift64Ashr(($684|0),($685|0),21)|0); + $691 = tempRet0; + $692 = (_i64Add(($648|0),($649|0),($504|0),($505|0))|0); + $693 = tempRet0; + $694 = (_i64Subtract(($692|0),($693|0),($554|0),($555|0))|0); + $695 = tempRet0; + $696 = (_i64Add(($694|0),($695|0),($598|0),($599|0))|0); + $697 = tempRet0; + $698 = (_i64Add(($696|0),($697|0),($690|0),($691|0))|0); + $699 = tempRet0; + $700 = (_bitshift64Shl(($690|0),($691|0),21)|0); + $701 = tempRet0; + $702 = (_i64Subtract(($684|0),($685|0),($700|0),($701|0))|0); + $703 = tempRet0; + $704 = (_bitshift64Ashr(($698|0),($699|0),21)|0); + $705 = tempRet0; + $706 = (_i64Add(($552|0),($553|0),($650|0),($651|0))|0); + $707 = tempRet0; + $708 = (_i64Subtract(($706|0),($707|0),($608|0),($609|0))|0); + $709 = tempRet0; + $710 = (_i64Add(($708|0),($709|0),($704|0),($705|0))|0); + $711 = tempRet0; + $712 = (_bitshift64Shl(($704|0),($705|0),21)|0); + $713 = tempRet0; + $714 = (_i64Subtract(($698|0),($699|0),($712|0),($713|0))|0); + $715 = tempRet0; + $716 = (_bitshift64Ashr(($710|0),($711|0),21)|0); + $717 = tempRet0; + $718 = (_i64Add(($606|0),($607|0),($716|0),($717|0))|0); + $719 = tempRet0; + $720 = (_bitshift64Shl(($716|0),($717|0),21)|0); + $721 = tempRet0; + $722 = (_i64Subtract(($710|0),($711|0),($720|0),($721|0))|0); + $723 = tempRet0; + $724 = (_bitshift64Ashr(($718|0),($719|0),21)|0); + $725 = tempRet0; + $726 = (_i64Add(($724|0),($725|0),($618|0),($619|0))|0); + $727 = tempRet0; + $728 = (_bitshift64Shl(($724|0),($725|0),21)|0); + $729 = tempRet0; + $730 = (_i64Subtract(($718|0),($719|0),($728|0),($729|0))|0); + $731 = tempRet0; + $732 = (_bitshift64Ashr(($726|0),($727|0),21)|0); + $733 = tempRet0; + $734 = (_i64Add(($614|0),($615|0),($732|0),($733|0))|0); + $735 = tempRet0; + $736 = (_bitshift64Shl(($732|0),($733|0),21)|0); + $737 = tempRet0; + $738 = (_i64Subtract(($726|0),($727|0),($736|0),($737|0))|0); + $739 = tempRet0; + $740 = (_bitshift64Ashr(($734|0),($735|0),21)|0); + $741 = tempRet0; + $742 = (_i64Add(($740|0),($741|0),($628|0),($629|0))|0); + $743 = tempRet0; + $744 = (_bitshift64Shl(($740|0),($741|0),21)|0); + $745 = tempRet0; + $746 = (_i64Subtract(($734|0),($735|0),($744|0),($745|0))|0); + $747 = tempRet0; + $748 = (_bitshift64Ashr(($742|0),($743|0),21)|0); + $749 = tempRet0; + $750 = (_i64Add(($624|0),($625|0),($748|0),($749|0))|0); + $751 = tempRet0; + $752 = (_bitshift64Shl(($748|0),($749|0),21)|0); + $753 = tempRet0; + $754 = (_i64Subtract(($742|0),($743|0),($752|0),($753|0))|0); + $755 = tempRet0; + $756 = (_bitshift64Ashr(($750|0),($751|0),21)|0); + $757 = tempRet0; + $758 = (_i64Add(($756|0),($757|0),($636|0),($637|0))|0); + $759 = tempRet0; + $760 = (_bitshift64Shl(($756|0),($757|0),21)|0); + $761 = tempRet0; + $762 = (_i64Subtract(($750|0),($751|0),($760|0),($761|0))|0); + $763 = tempRet0; + $764 = (_bitshift64Ashr(($758|0),($759|0),21)|0); + $765 = tempRet0; + $766 = (_bitshift64Shl(($764|0),($765|0),21)|0); + $767 = tempRet0; + $768 = (_i64Subtract(($758|0),($759|0),($766|0),($767|0))|0); + $769 = tempRet0; + $770 = (___muldi3(($764|0),($765|0),666643,0)|0); + $771 = tempRet0; + $772 = (_i64Add(($770|0),($771|0),($662|0),($663|0))|0); + $773 = tempRet0; + $774 = (___muldi3(($764|0),($765|0),470296,0)|0); + $775 = tempRet0; + $776 = (_i64Add(($676|0),($677|0),($774|0),($775|0))|0); + $777 = tempRet0; + $778 = (___muldi3(($764|0),($765|0),654183,0)|0); + $779 = tempRet0; + $780 = (_i64Add(($688|0),($689|0),($778|0),($779|0))|0); + $781 = tempRet0; + $782 = (___muldi3(($764|0),($765|0),-997805,-1)|0); + $783 = tempRet0; + $784 = (_i64Add(($702|0),($703|0),($782|0),($783|0))|0); + $785 = tempRet0; + $786 = (___muldi3(($764|0),($765|0),136657,0)|0); + $787 = tempRet0; + $788 = (_i64Add(($714|0),($715|0),($786|0),($787|0))|0); + $789 = tempRet0; + $790 = (___muldi3(($764|0),($765|0),-683901,-1)|0); + $791 = tempRet0; + $792 = (_i64Add(($722|0),($723|0),($790|0),($791|0))|0); + $793 = tempRet0; + $794 = (_bitshift64Ashr(($772|0),($773|0),21)|0); + $795 = tempRet0; + $796 = (_i64Add(($776|0),($777|0),($794|0),($795|0))|0); + $797 = tempRet0; + $798 = (_bitshift64Shl(($794|0),($795|0),21)|0); + $799 = tempRet0; + $800 = (_i64Subtract(($772|0),($773|0),($798|0),($799|0))|0); + $801 = tempRet0; + $802 = (_bitshift64Ashr(($796|0),($797|0),21)|0); + $803 = tempRet0; + $804 = (_i64Add(($780|0),($781|0),($802|0),($803|0))|0); + $805 = tempRet0; + $806 = (_bitshift64Shl(($802|0),($803|0),21)|0); + $807 = tempRet0; + $808 = (_i64Subtract(($796|0),($797|0),($806|0),($807|0))|0); + $809 = tempRet0; + $810 = (_bitshift64Ashr(($804|0),($805|0),21)|0); + $811 = tempRet0; + $812 = (_i64Add(($784|0),($785|0),($810|0),($811|0))|0); + $813 = tempRet0; + $814 = (_bitshift64Shl(($810|0),($811|0),21)|0); + $815 = tempRet0; + $816 = (_i64Subtract(($804|0),($805|0),($814|0),($815|0))|0); + $817 = tempRet0; + $818 = (_bitshift64Ashr(($812|0),($813|0),21)|0); + $819 = tempRet0; + $820 = (_i64Add(($788|0),($789|0),($818|0),($819|0))|0); + $821 = tempRet0; + $822 = (_bitshift64Shl(($818|0),($819|0),21)|0); + $823 = tempRet0; + $824 = (_i64Subtract(($812|0),($813|0),($822|0),($823|0))|0); + $825 = tempRet0; + $826 = (_bitshift64Ashr(($820|0),($821|0),21)|0); + $827 = tempRet0; + $828 = (_i64Add(($792|0),($793|0),($826|0),($827|0))|0); + $829 = tempRet0; + $830 = (_bitshift64Shl(($826|0),($827|0),21)|0); + $831 = tempRet0; + $832 = (_i64Subtract(($820|0),($821|0),($830|0),($831|0))|0); + $833 = tempRet0; + $834 = (_bitshift64Ashr(($828|0),($829|0),21)|0); + $835 = tempRet0; + $836 = (_i64Add(($834|0),($835|0),($730|0),($731|0))|0); + $837 = tempRet0; + $838 = (_bitshift64Shl(($834|0),($835|0),21)|0); + $839 = tempRet0; + $840 = (_i64Subtract(($828|0),($829|0),($838|0),($839|0))|0); + $841 = tempRet0; + $842 = (_bitshift64Ashr(($836|0),($837|0),21)|0); + $843 = tempRet0; + $844 = (_i64Add(($842|0),($843|0),($738|0),($739|0))|0); + $845 = tempRet0; + $846 = (_bitshift64Shl(($842|0),($843|0),21)|0); + $847 = tempRet0; + $848 = (_i64Subtract(($836|0),($837|0),($846|0),($847|0))|0); + $849 = tempRet0; + $850 = (_bitshift64Ashr(($844|0),($845|0),21)|0); + $851 = tempRet0; + $852 = (_i64Add(($850|0),($851|0),($746|0),($747|0))|0); + $853 = tempRet0; + $854 = (_bitshift64Shl(($850|0),($851|0),21)|0); + $855 = tempRet0; + $856 = (_i64Subtract(($844|0),($845|0),($854|0),($855|0))|0); + $857 = tempRet0; + $858 = (_bitshift64Ashr(($852|0),($853|0),21)|0); + $859 = tempRet0; + $860 = (_i64Add(($858|0),($859|0),($754|0),($755|0))|0); + $861 = tempRet0; + $862 = (_bitshift64Shl(($858|0),($859|0),21)|0); + $863 = tempRet0; + $864 = (_i64Subtract(($852|0),($853|0),($862|0),($863|0))|0); + $865 = tempRet0; + $866 = (_bitshift64Ashr(($860|0),($861|0),21)|0); + $867 = tempRet0; + $868 = (_i64Add(($866|0),($867|0),($762|0),($763|0))|0); + $869 = tempRet0; + $870 = (_bitshift64Shl(($866|0),($867|0),21)|0); + $871 = tempRet0; + $872 = (_i64Subtract(($860|0),($861|0),($870|0),($871|0))|0); + $873 = tempRet0; + $874 = (_bitshift64Ashr(($868|0),($869|0),21)|0); + $875 = tempRet0; + $876 = (_i64Add(($874|0),($875|0),($768|0),($769|0))|0); + $877 = tempRet0; + $878 = (_bitshift64Shl(($874|0),($875|0),21)|0); + $879 = tempRet0; + $880 = (_i64Subtract(($868|0),($869|0),($878|0),($879|0))|0); + $881 = tempRet0; + $882 = $800&255; + HEAP8[$s>>0] = $882; + $883 = (_bitshift64Lshr(($800|0),($801|0),8)|0); + $884 = tempRet0; + $885 = $883&255; + $886 = (($s) + 1|0); + HEAP8[$886>>0] = $885; + $887 = (_bitshift64Lshr(($800|0),($801|0),16)|0); + $888 = tempRet0; + $889 = (_bitshift64Shl(($808|0),($809|0),5)|0); + $890 = tempRet0; + $891 = $889 | $887; + $890 | $888; + $892 = $891&255; + HEAP8[$3>>0] = $892; + $893 = (_bitshift64Lshr(($808|0),($809|0),3)|0); + $894 = tempRet0; + $895 = $893&255; + $896 = (($s) + 3|0); + HEAP8[$896>>0] = $895; + $897 = (_bitshift64Lshr(($808|0),($809|0),11)|0); + $898 = tempRet0; + $899 = $897&255; + $900 = (($s) + 4|0); + HEAP8[$900>>0] = $899; + $901 = (_bitshift64Lshr(($808|0),($809|0),19)|0); + $902 = tempRet0; + $903 = (_bitshift64Shl(($816|0),($817|0),2)|0); + $904 = tempRet0; + $905 = $903 | $901; + $904 | $902; + $906 = $905&255; + HEAP8[$9>>0] = $906; + $907 = (_bitshift64Lshr(($816|0),($817|0),6)|0); + $908 = tempRet0; + $909 = $907&255; + $910 = (($s) + 6|0); + HEAP8[$910>>0] = $909; + $911 = (_bitshift64Lshr(($816|0),($817|0),14)|0); + $912 = tempRet0; + $913 = (_bitshift64Shl(($824|0),($825|0),7)|0); + $914 = tempRet0; + $915 = $913 | $911; + $914 | $912; + $916 = $915&255; + HEAP8[$15>>0] = $916; + $917 = (_bitshift64Lshr(($824|0),($825|0),1)|0); + $918 = tempRet0; + $919 = $917&255; + $920 = (($s) + 8|0); + HEAP8[$920>>0] = $919; + $921 = (_bitshift64Lshr(($824|0),($825|0),9)|0); + $922 = tempRet0; + $923 = $921&255; + $924 = (($s) + 9|0); + HEAP8[$924>>0] = $923; + $925 = (_bitshift64Lshr(($824|0),($825|0),17)|0); + $926 = tempRet0; + $927 = (_bitshift64Shl(($832|0),($833|0),4)|0); + $928 = tempRet0; + $929 = $927 | $925; + $928 | $926; + $930 = $929&255; + HEAP8[$21>>0] = $930; + $931 = (_bitshift64Lshr(($832|0),($833|0),4)|0); + $932 = tempRet0; + $933 = $931&255; + $934 = (($s) + 11|0); + HEAP8[$934>>0] = $933; + $935 = (_bitshift64Lshr(($832|0),($833|0),12)|0); + $936 = tempRet0; + $937 = $935&255; + $938 = (($s) + 12|0); + HEAP8[$938>>0] = $937; + $939 = (_bitshift64Lshr(($832|0),($833|0),20)|0); + $940 = tempRet0; + $941 = (_bitshift64Shl(($840|0),($841|0),1)|0); + $942 = tempRet0; + $943 = $941 | $939; + $942 | $940; + $944 = $943&255; + HEAP8[$27>>0] = $944; + $945 = (_bitshift64Lshr(($840|0),($841|0),7)|0); + $946 = tempRet0; + $947 = $945&255; + $948 = (($s) + 14|0); + HEAP8[$948>>0] = $947; + $949 = (_bitshift64Lshr(($840|0),($841|0),15)|0); + $950 = tempRet0; + $951 = (_bitshift64Shl(($848|0),($849|0),6)|0); + $952 = tempRet0; + $953 = $951 | $949; + $952 | $950; + $954 = $953&255; + HEAP8[$33>>0] = $954; + $955 = (_bitshift64Lshr(($848|0),($849|0),2)|0); + $956 = tempRet0; + $957 = $955&255; + $958 = (($s) + 16|0); + HEAP8[$958>>0] = $957; + $959 = (_bitshift64Lshr(($848|0),($849|0),10)|0); + $960 = tempRet0; + $961 = $959&255; + $962 = (($s) + 17|0); + HEAP8[$962>>0] = $961; + $963 = (_bitshift64Lshr(($848|0),($849|0),18)|0); + $964 = tempRet0; + $965 = (_bitshift64Shl(($856|0),($857|0),3)|0); + $966 = tempRet0; + $967 = $965 | $963; + $966 | $964; + $968 = $967&255; + HEAP8[$39>>0] = $968; + $969 = (_bitshift64Lshr(($856|0),($857|0),5)|0); + $970 = tempRet0; + $971 = $969&255; + $972 = (($s) + 19|0); + HEAP8[$972>>0] = $971; + $973 = (_bitshift64Lshr(($856|0),($857|0),13)|0); + $974 = tempRet0; + $975 = $973&255; + $976 = (($s) + 20|0); + HEAP8[$976>>0] = $975; + $977 = $864&255; + HEAP8[$45>>0] = $977; + $978 = (_bitshift64Lshr(($864|0),($865|0),8)|0); + $979 = tempRet0; + $980 = $978&255; + $981 = (($s) + 22|0); + HEAP8[$981>>0] = $980; + $982 = (_bitshift64Lshr(($864|0),($865|0),16)|0); + $983 = tempRet0; + $984 = (_bitshift64Shl(($872|0),($873|0),5)|0); + $985 = tempRet0; + $986 = $984 | $982; + $985 | $983; + $987 = $986&255; + HEAP8[$49>>0] = $987; + $988 = (_bitshift64Lshr(($872|0),($873|0),3)|0); + $989 = tempRet0; + $990 = $988&255; + $991 = (($s) + 24|0); + HEAP8[$991>>0] = $990; + $992 = (_bitshift64Lshr(($872|0),($873|0),11)|0); + $993 = tempRet0; + $994 = $992&255; + $995 = (($s) + 25|0); + HEAP8[$995>>0] = $994; + $996 = (_bitshift64Lshr(($872|0),($873|0),19)|0); + $997 = tempRet0; + $998 = (_bitshift64Shl(($880|0),($881|0),2)|0); + $999 = tempRet0; + $1000 = $998 | $996; + $999 | $997; + $1001 = $1000&255; + HEAP8[$55>>0] = $1001; + $1002 = (_bitshift64Lshr(($880|0),($881|0),6)|0); + $1003 = tempRet0; + $1004 = $1002&255; + $1005 = (($s) + 27|0); + HEAP8[$1005>>0] = $1004; + $1006 = (_bitshift64Lshr(($880|0),($881|0),14)|0); + $1007 = tempRet0; + $1008 = (_bitshift64Shl(($876|0),($877|0),7)|0); + $1009 = tempRet0; + $1010 = $1006 | $1008; + $1007 | $1009; + $1011 = $1010&255; + HEAP8[$61>>0] = $1011; + $1012 = (_bitshift64Lshr(($876|0),($877|0),1)|0); + $1013 = tempRet0; + $1014 = $1012&255; + $1015 = (($s) + 29|0); + HEAP8[$1015>>0] = $1014; + $1016 = (_bitshift64Lshr(($876|0),($877|0),9)|0); + $1017 = tempRet0; + $1018 = $1016&255; + $1019 = (($s) + 30|0); + HEAP8[$1019>>0] = $1018; + $1020 = (_bitshift64Lshr(($876|0),($877|0),17)|0); + $1021 = tempRet0; + $1022 = $1020&255; + HEAP8[$67>>0] = $1022; + STACKTOP = sp;return; +} +function _load_351($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + tempRet0 = $14; + STACKTOP = sp;return ($13|0); +} +function _load_452($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + $15 = (($in) + 3|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16&255; + $18 = (_bitshift64Shl(($17|0),0,24)|0); + $19 = tempRet0; + $20 = $13 | $18; + $21 = $14 | $19; + tempRet0 = $21; + STACKTOP = sp;return ($20|0); +} +function _sph_sha512_init($cc) { + $cc = $cc|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + $0 = (($cc) + 128|0); + dest=$0+0|0; src=31840+0|0; stop=dest+64|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + $1 = (($cc) + 192|0); + $2 = $1; + $3 = $2; + HEAP32[$3>>2] = 0; + $4 = (($2) + 4)|0; + $5 = $4; + HEAP32[$5>>2] = 0; + STACKTOP = sp;return; +} +function _sph_sha384($cc,$data,$len) { + $cc = $cc|0; + $data = $data|0; + $len = $len|0; + var $$01$ = 0, $$012 = 0, $$03 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0; + var $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $current$04 = 0, $current$1 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($cc) + 192|0); + $1 = ($len|0)==(0); + if ($1) { + STACKTOP = sp;return; + } + $2 = $0; + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = $4 & 127; + $9 = (($cc) + 128|0); + $$012 = $len;$$03 = $data;$current$04 = $8; + while(1) { + $10 = (128 - ($current$04))|0; + $11 = ($10>>>0)>($$012>>>0); + $$01$ = $11 ? $$012 : $10; + $12 = (($cc) + ($current$04)|0); + _memcpy(($12|0),($$03|0),($$01$|0))|0; + $13 = (($$03) + ($$01$)|0); + $14 = (($$01$) + ($current$04))|0; + $15 = (($$012) - ($$01$))|0; + $16 = ($14|0)==(128); + if ($16) { + _sha3_round($cc,$9); + $current$1 = 0; + } else { + $current$1 = $14; + } + $17 = $0; + $18 = $17; + $19 = HEAP32[$18>>2]|0; + $20 = (($17) + 4)|0; + $21 = $20; + $22 = HEAP32[$21>>2]|0; + $23 = (_i64Add(($19|0),($22|0),($$01$|0),0)|0); + $24 = tempRet0; + $25 = $0; + $26 = $25; + HEAP32[$26>>2] = $23; + $27 = (($25) + 4)|0; + $28 = $27; + HEAP32[$28>>2] = $24; + $29 = ($$012|0)==($$01$|0); + if ($29) { + break; + } else { + $$012 = $15;$$03 = $13;$current$04 = $current$1; + } + } + STACKTOP = sp;return; +} +function _sph_sha512_close($cc,$dst) { + $cc = $cc|0; + $dst = $dst|0; + var label = 0, sp = 0; + sp = STACKTOP; + _sha384_close($cc,$dst,8); + _sph_sha512_init($cc); + STACKTOP = sp;return; +} +function _sha3_round($data,$r) { + $data = $data|0; + $r = $r|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; + var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; + var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; + var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; + var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; + var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; + var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; + var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0; + var $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0; + var $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0; + var $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0; + var $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0; + var $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0; + var $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0; + var $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0; + var $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0; + var $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0; + var $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0; + var $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0; + var $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0; + var $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0; + var $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0; + var $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0; + var $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0; + var $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0; + var $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0; + var $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0; + var $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0; + var $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0; + var $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0; + var $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0; + var $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0; + var $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0; + var $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0; + var $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0; + var $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0; + var $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $W = 0, $exitcond = 0, $exitcond19 = 0, $i$011 = 0, $i$110 = 0, $i$29 = 0; + var label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 640|0; + $W = sp; + $i$011 = 0; + while(1) { + $0 = $i$011 << 3; + $1 = (($data) + ($0)|0); + $2 = (_sph_dec64be_aligned($1)|0); + $3 = tempRet0; + $4 = (($W) + ($i$011<<3)|0); + $5 = $4; + $6 = $5; + HEAP32[$6>>2] = $2; + $7 = (($5) + 4)|0; + $8 = $7; + HEAP32[$8>>2] = $3; + $9 = (($i$011) + 1)|0; + $exitcond19 = ($9|0)==(16); + if ($exitcond19) { + $i$110 = 16; + break; + } else { + $i$011 = $9; + } + } + while(1) { + $10 = (($i$110) + -2)|0; + $11 = (($W) + ($10<<3)|0); + $12 = $11; + $13 = $12; + $14 = HEAP32[$13>>2]|0; + $15 = (($12) + 4)|0; + $16 = $15; + $17 = HEAP32[$16>>2]|0; + $18 = (_bitshift64Shl(($14|0),($17|0),45)|0); + $19 = tempRet0; + $20 = (_bitshift64Lshr(($14|0),($17|0),19)|0); + $21 = tempRet0; + $22 = $18 | $20; + $23 = $19 | $21; + $24 = (_bitshift64Shl(($14|0),($17|0),3)|0); + $25 = tempRet0; + $26 = (_bitshift64Lshr(($14|0),($17|0),61)|0); + $27 = tempRet0; + $28 = $24 | $26; + $29 = $25 | $27; + $30 = (_bitshift64Lshr(($14|0),($17|0),6)|0); + $31 = tempRet0; + $32 = $28 ^ $30; + $33 = $29 ^ $31; + $34 = $32 ^ $22; + $35 = $33 ^ $23; + $36 = (($i$110) + -7)|0; + $37 = (($W) + ($36<<3)|0); + $38 = $37; + $39 = $38; + $40 = HEAP32[$39>>2]|0; + $41 = (($38) + 4)|0; + $42 = $41; + $43 = HEAP32[$42>>2]|0; + $44 = (($i$110) + -15)|0; + $45 = (($W) + ($44<<3)|0); + $46 = $45; + $47 = $46; + $48 = HEAP32[$47>>2]|0; + $49 = (($46) + 4)|0; + $50 = $49; + $51 = HEAP32[$50>>2]|0; + $52 = (_bitshift64Shl(($48|0),($51|0),63)|0); + $53 = tempRet0; + $54 = (_bitshift64Lshr(($48|0),($51|0),1)|0); + $55 = tempRet0; + $56 = $52 | $54; + $57 = $53 | $55; + $58 = (_bitshift64Shl(($48|0),($51|0),56)|0); + $59 = tempRet0; + $60 = (_bitshift64Lshr(($48|0),($51|0),8)|0); + $61 = tempRet0; + $62 = $58 | $60; + $63 = $59 | $61; + $64 = (_bitshift64Lshr(($48|0),($51|0),7)|0); + $65 = tempRet0; + $66 = $62 ^ $64; + $67 = $63 ^ $65; + $68 = $66 ^ $56; + $69 = $67 ^ $57; + $70 = (($i$110) + -16)|0; + $71 = (($W) + ($70<<3)|0); + $72 = $71; + $73 = $72; + $74 = HEAP32[$73>>2]|0; + $75 = (($72) + 4)|0; + $76 = $75; + $77 = HEAP32[$76>>2]|0; + $78 = (_i64Add(($74|0),($77|0),($40|0),($43|0))|0); + $79 = tempRet0; + $80 = (_i64Add(($78|0),($79|0),($34|0),($35|0))|0); + $81 = tempRet0; + $82 = (_i64Add(($80|0),($81|0),($68|0),($69|0))|0); + $83 = tempRet0; + $84 = (($W) + ($i$110<<3)|0); + $85 = $84; + $86 = $85; + HEAP32[$86>>2] = $82; + $87 = (($85) + 4)|0; + $88 = $87; + HEAP32[$88>>2] = $83; + $89 = (($i$110) + 1)|0; + $exitcond = ($89|0)==(80); + if ($exitcond) { + break; + } else { + $i$110 = $89; + } + } + $90 = $r; + $91 = $90; + $92 = HEAP32[$91>>2]|0; + $93 = (($90) + 4)|0; + $94 = $93; + $95 = HEAP32[$94>>2]|0; + $96 = (($r) + 8|0); + $97 = $96; + $98 = $97; + $99 = HEAP32[$98>>2]|0; + $100 = (($97) + 4)|0; + $101 = $100; + $102 = HEAP32[$101>>2]|0; + $103 = (($r) + 16|0); + $104 = $103; + $105 = $104; + $106 = HEAP32[$105>>2]|0; + $107 = (($104) + 4)|0; + $108 = $107; + $109 = HEAP32[$108>>2]|0; + $110 = (($r) + 24|0); + $111 = $110; + $112 = $111; + $113 = HEAP32[$112>>2]|0; + $114 = (($111) + 4)|0; + $115 = $114; + $116 = HEAP32[$115>>2]|0; + $117 = (($r) + 32|0); + $118 = $117; + $119 = $118; + $120 = HEAP32[$119>>2]|0; + $121 = (($118) + 4)|0; + $122 = $121; + $123 = HEAP32[$122>>2]|0; + $124 = (($r) + 40|0); + $125 = $124; + $126 = $125; + $127 = HEAP32[$126>>2]|0; + $128 = (($125) + 4)|0; + $129 = $128; + $130 = HEAP32[$129>>2]|0; + $131 = (($r) + 48|0); + $132 = $131; + $133 = $132; + $134 = HEAP32[$133>>2]|0; + $135 = (($132) + 4)|0; + $136 = $135; + $137 = HEAP32[$136>>2]|0; + $138 = (($r) + 56|0); + $139 = $138; + $140 = $139; + $141 = HEAP32[$140>>2]|0; + $142 = (($139) + 4)|0; + $143 = $142; + $144 = HEAP32[$143>>2]|0; + $145 = $120;$146 = $123;$170 = $134;$171 = $127;$173 = $137;$174 = $130;$193 = $141;$194 = $144;$203 = $92;$204 = $95;$228 = $99;$230 = $102;$234 = $106;$236 = $109;$241 = $113;$242 = $116;$i$29 = 0; + while(1) { + $147 = (_bitshift64Shl(($145|0),($146|0),50)|0); + $148 = tempRet0; + $149 = (_bitshift64Lshr(($145|0),($146|0),14)|0); + $150 = tempRet0; + $151 = $147 | $149; + $152 = $148 | $150; + $153 = (_bitshift64Shl(($145|0),($146|0),46)|0); + $154 = tempRet0; + $155 = (_bitshift64Lshr(($145|0),($146|0),18)|0); + $156 = tempRet0; + $157 = $153 | $155; + $158 = $154 | $156; + $159 = $151 ^ $157; + $160 = $152 ^ $158; + $161 = (_bitshift64Shl(($145|0),($146|0),23)|0); + $162 = tempRet0; + $163 = (_bitshift64Lshr(($145|0),($146|0),41)|0); + $164 = tempRet0; + $165 = $161 | $163; + $166 = $162 | $164; + $167 = $159 ^ $165; + $168 = $160 ^ $166; + $169 = $171 ^ $170; + $172 = $174 ^ $173; + $175 = $169 & $145; + $176 = $172 & $146; + $177 = $175 ^ $170; + $178 = $176 ^ $173; + $179 = (31904 + ($i$29<<3)|0); + $180 = $179; + $181 = $180; + $182 = HEAP32[$181>>2]|0; + $183 = (($180) + 4)|0; + $184 = $183; + $185 = HEAP32[$184>>2]|0; + $186 = (($W) + ($i$29<<3)|0); + $187 = $186; + $188 = $187; + $189 = HEAP32[$188>>2]|0; + $190 = (($187) + 4)|0; + $191 = $190; + $192 = HEAP32[$191>>2]|0; + $195 = (_i64Add(($177|0),($178|0),($193|0),($194|0))|0); + $196 = tempRet0; + $197 = (_i64Add(($195|0),($196|0),($167|0),($168|0))|0); + $198 = tempRet0; + $199 = (_i64Add(($197|0),($198|0),($182|0),($185|0))|0); + $200 = tempRet0; + $201 = (_i64Add(($199|0),($200|0),($189|0),($192|0))|0); + $202 = tempRet0; + $205 = (_bitshift64Shl(($203|0),($204|0),36)|0); + $206 = tempRet0; + $207 = (_bitshift64Lshr(($203|0),($204|0),28)|0); + $208 = tempRet0; + $209 = $205 | $207; + $210 = $206 | $208; + $211 = (_bitshift64Shl(($203|0),($204|0),30)|0); + $212 = tempRet0; + $213 = (_bitshift64Lshr(($203|0),($204|0),34)|0); + $214 = tempRet0; + $215 = $211 | $213; + $216 = $212 | $214; + $217 = $209 ^ $215; + $218 = $210 ^ $216; + $219 = (_bitshift64Shl(($203|0),($204|0),25)|0); + $220 = tempRet0; + $221 = (_bitshift64Lshr(($203|0),($204|0),39)|0); + $222 = tempRet0; + $223 = $219 | $221; + $224 = $220 | $222; + $225 = $217 ^ $223; + $226 = $218 ^ $224; + $227 = $203 & $228; + $229 = $204 & $230; + $231 = $203 | $228; + $232 = $204 | $230; + $233 = $231 & $234; + $235 = $232 & $236; + $237 = $233 | $227; + $238 = $235 | $229; + $239 = (_i64Add(($225|0),($226|0),($237|0),($238|0))|0); + $240 = tempRet0; + $243 = (_i64Add(($201|0),($202|0),($241|0),($242|0))|0); + $244 = tempRet0; + $245 = (_i64Add(($239|0),($240|0),($201|0),($202|0))|0); + $246 = tempRet0; + $247 = (_bitshift64Shl(($243|0),($244|0),50)|0); + $248 = tempRet0; + $249 = (_bitshift64Lshr(($243|0),($244|0),14)|0); + $250 = tempRet0; + $251 = $247 | $249; + $252 = $248 | $250; + $253 = (_bitshift64Shl(($243|0),($244|0),46)|0); + $254 = tempRet0; + $255 = (_bitshift64Lshr(($243|0),($244|0),18)|0); + $256 = tempRet0; + $257 = $253 | $255; + $258 = $254 | $256; + $259 = $251 ^ $257; + $260 = $252 ^ $258; + $261 = (_bitshift64Shl(($243|0),($244|0),23)|0); + $262 = tempRet0; + $263 = (_bitshift64Lshr(($243|0),($244|0),41)|0); + $264 = tempRet0; + $265 = $261 | $263; + $266 = $262 | $264; + $267 = $259 ^ $265; + $268 = $260 ^ $266; + $269 = $145 ^ $171; + $270 = $146 ^ $174; + $271 = $243 & $269; + $272 = $244 & $270; + $273 = $271 ^ $171; + $274 = $272 ^ $174; + $275 = $i$29 | 1; + $276 = (31904 + ($275<<3)|0); + $277 = $276; + $278 = $277; + $279 = HEAP32[$278>>2]|0; + $280 = (($277) + 4)|0; + $281 = $280; + $282 = HEAP32[$281>>2]|0; + $283 = (($W) + ($275<<3)|0); + $284 = $283; + $285 = $284; + $286 = HEAP32[$285>>2]|0; + $287 = (($284) + 4)|0; + $288 = $287; + $289 = HEAP32[$288>>2]|0; + $290 = (_i64Add(($279|0),($282|0),($170|0),($173|0))|0); + $291 = tempRet0; + $292 = (_i64Add(($290|0),($291|0),($286|0),($289|0))|0); + $293 = tempRet0; + $294 = (_i64Add(($292|0),($293|0),($273|0),($274|0))|0); + $295 = tempRet0; + $296 = (_i64Add(($294|0),($295|0),($267|0),($268|0))|0); + $297 = tempRet0; + $298 = (_bitshift64Shl(($245|0),($246|0),36)|0); + $299 = tempRet0; + $300 = (_bitshift64Lshr(($245|0),($246|0),28)|0); + $301 = tempRet0; + $302 = $298 | $300; + $303 = $299 | $301; + $304 = (_bitshift64Shl(($245|0),($246|0),30)|0); + $305 = tempRet0; + $306 = (_bitshift64Lshr(($245|0),($246|0),34)|0); + $307 = tempRet0; + $308 = $304 | $306; + $309 = $305 | $307; + $310 = $302 ^ $308; + $311 = $303 ^ $309; + $312 = (_bitshift64Shl(($245|0),($246|0),25)|0); + $313 = tempRet0; + $314 = (_bitshift64Lshr(($245|0),($246|0),39)|0); + $315 = tempRet0; + $316 = $312 | $314; + $317 = $313 | $315; + $318 = $310 ^ $316; + $319 = $311 ^ $317; + $320 = $245 & $203; + $321 = $246 & $204; + $322 = $245 | $203; + $323 = $246 | $204; + $324 = $322 & $228; + $325 = $323 & $230; + $326 = $324 | $320; + $327 = $325 | $321; + $328 = (_i64Add(($318|0),($319|0),($326|0),($327|0))|0); + $329 = tempRet0; + $330 = (_i64Add(($296|0),($297|0),($234|0),($236|0))|0); + $331 = tempRet0; + $332 = (_i64Add(($328|0),($329|0),($296|0),($297|0))|0); + $333 = tempRet0; + $334 = (_bitshift64Shl(($330|0),($331|0),50)|0); + $335 = tempRet0; + $336 = (_bitshift64Lshr(($330|0),($331|0),14)|0); + $337 = tempRet0; + $338 = $334 | $336; + $339 = $335 | $337; + $340 = (_bitshift64Shl(($330|0),($331|0),46)|0); + $341 = tempRet0; + $342 = (_bitshift64Lshr(($330|0),($331|0),18)|0); + $343 = tempRet0; + $344 = $340 | $342; + $345 = $341 | $343; + $346 = $338 ^ $344; + $347 = $339 ^ $345; + $348 = (_bitshift64Shl(($330|0),($331|0),23)|0); + $349 = tempRet0; + $350 = (_bitshift64Lshr(($330|0),($331|0),41)|0); + $351 = tempRet0; + $352 = $348 | $350; + $353 = $349 | $351; + $354 = $346 ^ $352; + $355 = $347 ^ $353; + $356 = $243 ^ $145; + $357 = $244 ^ $146; + $358 = $330 & $356; + $359 = $331 & $357; + $360 = $358 ^ $145; + $361 = $359 ^ $146; + $362 = $i$29 | 2; + $363 = (31904 + ($362<<3)|0); + $364 = $363; + $365 = $364; + $366 = HEAP32[$365>>2]|0; + $367 = (($364) + 4)|0; + $368 = $367; + $369 = HEAP32[$368>>2]|0; + $370 = (($W) + ($362<<3)|0); + $371 = $370; + $372 = $371; + $373 = HEAP32[$372>>2]|0; + $374 = (($371) + 4)|0; + $375 = $374; + $376 = HEAP32[$375>>2]|0; + $377 = (_i64Add(($366|0),($369|0),($171|0),($174|0))|0); + $378 = tempRet0; + $379 = (_i64Add(($377|0),($378|0),($373|0),($376|0))|0); + $380 = tempRet0; + $381 = (_i64Add(($379|0),($380|0),($360|0),($361|0))|0); + $382 = tempRet0; + $383 = (_i64Add(($381|0),($382|0),($354|0),($355|0))|0); + $384 = tempRet0; + $385 = (_bitshift64Shl(($332|0),($333|0),36)|0); + $386 = tempRet0; + $387 = (_bitshift64Lshr(($332|0),($333|0),28)|0); + $388 = tempRet0; + $389 = $385 | $387; + $390 = $386 | $388; + $391 = (_bitshift64Shl(($332|0),($333|0),30)|0); + $392 = tempRet0; + $393 = (_bitshift64Lshr(($332|0),($333|0),34)|0); + $394 = tempRet0; + $395 = $391 | $393; + $396 = $392 | $394; + $397 = $389 ^ $395; + $398 = $390 ^ $396; + $399 = (_bitshift64Shl(($332|0),($333|0),25)|0); + $400 = tempRet0; + $401 = (_bitshift64Lshr(($332|0),($333|0),39)|0); + $402 = tempRet0; + $403 = $399 | $401; + $404 = $400 | $402; + $405 = $397 ^ $403; + $406 = $398 ^ $404; + $407 = $332 & $245; + $408 = $333 & $246; + $409 = $332 | $245; + $410 = $333 | $246; + $411 = $409 & $203; + $412 = $410 & $204; + $413 = $411 | $407; + $414 = $412 | $408; + $415 = (_i64Add(($405|0),($406|0),($413|0),($414|0))|0); + $416 = tempRet0; + $417 = (_i64Add(($383|0),($384|0),($228|0),($230|0))|0); + $418 = tempRet0; + $419 = (_i64Add(($415|0),($416|0),($383|0),($384|0))|0); + $420 = tempRet0; + $421 = (_bitshift64Shl(($417|0),($418|0),50)|0); + $422 = tempRet0; + $423 = (_bitshift64Lshr(($417|0),($418|0),14)|0); + $424 = tempRet0; + $425 = $421 | $423; + $426 = $422 | $424; + $427 = (_bitshift64Shl(($417|0),($418|0),46)|0); + $428 = tempRet0; + $429 = (_bitshift64Lshr(($417|0),($418|0),18)|0); + $430 = tempRet0; + $431 = $427 | $429; + $432 = $428 | $430; + $433 = $425 ^ $431; + $434 = $426 ^ $432; + $435 = (_bitshift64Shl(($417|0),($418|0),23)|0); + $436 = tempRet0; + $437 = (_bitshift64Lshr(($417|0),($418|0),41)|0); + $438 = tempRet0; + $439 = $435 | $437; + $440 = $436 | $438; + $441 = $433 ^ $439; + $442 = $434 ^ $440; + $443 = $330 ^ $243; + $444 = $331 ^ $244; + $445 = $417 & $443; + $446 = $418 & $444; + $447 = $445 ^ $243; + $448 = $446 ^ $244; + $449 = $i$29 | 3; + $450 = (31904 + ($449<<3)|0); + $451 = $450; + $452 = $451; + $453 = HEAP32[$452>>2]|0; + $454 = (($451) + 4)|0; + $455 = $454; + $456 = HEAP32[$455>>2]|0; + $457 = (($W) + ($449<<3)|0); + $458 = $457; + $459 = $458; + $460 = HEAP32[$459>>2]|0; + $461 = (($458) + 4)|0; + $462 = $461; + $463 = HEAP32[$462>>2]|0; + $464 = (_i64Add(($453|0),($456|0),($145|0),($146|0))|0); + $465 = tempRet0; + $466 = (_i64Add(($464|0),($465|0),($460|0),($463|0))|0); + $467 = tempRet0; + $468 = (_i64Add(($466|0),($467|0),($447|0),($448|0))|0); + $469 = tempRet0; + $470 = (_i64Add(($468|0),($469|0),($441|0),($442|0))|0); + $471 = tempRet0; + $472 = (_bitshift64Shl(($419|0),($420|0),36)|0); + $473 = tempRet0; + $474 = (_bitshift64Lshr(($419|0),($420|0),28)|0); + $475 = tempRet0; + $476 = $472 | $474; + $477 = $473 | $475; + $478 = (_bitshift64Shl(($419|0),($420|0),30)|0); + $479 = tempRet0; + $480 = (_bitshift64Lshr(($419|0),($420|0),34)|0); + $481 = tempRet0; + $482 = $478 | $480; + $483 = $479 | $481; + $484 = $476 ^ $482; + $485 = $477 ^ $483; + $486 = (_bitshift64Shl(($419|0),($420|0),25)|0); + $487 = tempRet0; + $488 = (_bitshift64Lshr(($419|0),($420|0),39)|0); + $489 = tempRet0; + $490 = $486 | $488; + $491 = $487 | $489; + $492 = $484 ^ $490; + $493 = $485 ^ $491; + $494 = $419 & $332; + $495 = $420 & $333; + $496 = $419 | $332; + $497 = $420 | $333; + $498 = $496 & $245; + $499 = $497 & $246; + $500 = $498 | $494; + $501 = $499 | $495; + $502 = (_i64Add(($492|0),($493|0),($500|0),($501|0))|0); + $503 = tempRet0; + $504 = (_i64Add(($470|0),($471|0),($203|0),($204|0))|0); + $505 = tempRet0; + $506 = (_i64Add(($502|0),($503|0),($470|0),($471|0))|0); + $507 = tempRet0; + $508 = (_bitshift64Shl(($504|0),($505|0),50)|0); + $509 = tempRet0; + $510 = (_bitshift64Lshr(($504|0),($505|0),14)|0); + $511 = tempRet0; + $512 = $508 | $510; + $513 = $509 | $511; + $514 = (_bitshift64Shl(($504|0),($505|0),46)|0); + $515 = tempRet0; + $516 = (_bitshift64Lshr(($504|0),($505|0),18)|0); + $517 = tempRet0; + $518 = $514 | $516; + $519 = $515 | $517; + $520 = $512 ^ $518; + $521 = $513 ^ $519; + $522 = (_bitshift64Shl(($504|0),($505|0),23)|0); + $523 = tempRet0; + $524 = (_bitshift64Lshr(($504|0),($505|0),41)|0); + $525 = tempRet0; + $526 = $522 | $524; + $527 = $523 | $525; + $528 = $520 ^ $526; + $529 = $521 ^ $527; + $530 = $417 ^ $330; + $531 = $418 ^ $331; + $532 = $504 & $530; + $533 = $505 & $531; + $534 = $532 ^ $330; + $535 = $533 ^ $331; + $536 = $i$29 | 4; + $537 = (31904 + ($536<<3)|0); + $538 = $537; + $539 = $538; + $540 = HEAP32[$539>>2]|0; + $541 = (($538) + 4)|0; + $542 = $541; + $543 = HEAP32[$542>>2]|0; + $544 = (($W) + ($536<<3)|0); + $545 = $544; + $546 = $545; + $547 = HEAP32[$546>>2]|0; + $548 = (($545) + 4)|0; + $549 = $548; + $550 = HEAP32[$549>>2]|0; + $551 = (_i64Add(($540|0),($543|0),($243|0),($244|0))|0); + $552 = tempRet0; + $553 = (_i64Add(($551|0),($552|0),($547|0),($550|0))|0); + $554 = tempRet0; + $555 = (_i64Add(($553|0),($554|0),($534|0),($535|0))|0); + $556 = tempRet0; + $557 = (_i64Add(($555|0),($556|0),($528|0),($529|0))|0); + $558 = tempRet0; + $559 = (_bitshift64Shl(($506|0),($507|0),36)|0); + $560 = tempRet0; + $561 = (_bitshift64Lshr(($506|0),($507|0),28)|0); + $562 = tempRet0; + $563 = $559 | $561; + $564 = $560 | $562; + $565 = (_bitshift64Shl(($506|0),($507|0),30)|0); + $566 = tempRet0; + $567 = (_bitshift64Lshr(($506|0),($507|0),34)|0); + $568 = tempRet0; + $569 = $565 | $567; + $570 = $566 | $568; + $571 = $563 ^ $569; + $572 = $564 ^ $570; + $573 = (_bitshift64Shl(($506|0),($507|0),25)|0); + $574 = tempRet0; + $575 = (_bitshift64Lshr(($506|0),($507|0),39)|0); + $576 = tempRet0; + $577 = $573 | $575; + $578 = $574 | $576; + $579 = $571 ^ $577; + $580 = $572 ^ $578; + $581 = $506 & $419; + $582 = $507 & $420; + $583 = $506 | $419; + $584 = $507 | $420; + $585 = $583 & $332; + $586 = $584 & $333; + $587 = $585 | $581; + $588 = $586 | $582; + $589 = (_i64Add(($579|0),($580|0),($587|0),($588|0))|0); + $590 = tempRet0; + $591 = (_i64Add(($557|0),($558|0),($245|0),($246|0))|0); + $592 = tempRet0; + $593 = (_i64Add(($589|0),($590|0),($557|0),($558|0))|0); + $594 = tempRet0; + $595 = (_bitshift64Shl(($591|0),($592|0),50)|0); + $596 = tempRet0; + $597 = (_bitshift64Lshr(($591|0),($592|0),14)|0); + $598 = tempRet0; + $599 = $595 | $597; + $600 = $596 | $598; + $601 = (_bitshift64Shl(($591|0),($592|0),46)|0); + $602 = tempRet0; + $603 = (_bitshift64Lshr(($591|0),($592|0),18)|0); + $604 = tempRet0; + $605 = $601 | $603; + $606 = $602 | $604; + $607 = $599 ^ $605; + $608 = $600 ^ $606; + $609 = (_bitshift64Shl(($591|0),($592|0),23)|0); + $610 = tempRet0; + $611 = (_bitshift64Lshr(($591|0),($592|0),41)|0); + $612 = tempRet0; + $613 = $609 | $611; + $614 = $610 | $612; + $615 = $607 ^ $613; + $616 = $608 ^ $614; + $617 = $504 ^ $417; + $618 = $505 ^ $418; + $619 = $591 & $617; + $620 = $592 & $618; + $621 = $619 ^ $417; + $622 = $620 ^ $418; + $623 = $i$29 | 5; + $624 = (31904 + ($623<<3)|0); + $625 = $624; + $626 = $625; + $627 = HEAP32[$626>>2]|0; + $628 = (($625) + 4)|0; + $629 = $628; + $630 = HEAP32[$629>>2]|0; + $631 = (($W) + ($623<<3)|0); + $632 = $631; + $633 = $632; + $634 = HEAP32[$633>>2]|0; + $635 = (($632) + 4)|0; + $636 = $635; + $637 = HEAP32[$636>>2]|0; + $638 = (_i64Add(($627|0),($630|0),($330|0),($331|0))|0); + $639 = tempRet0; + $640 = (_i64Add(($638|0),($639|0),($634|0),($637|0))|0); + $641 = tempRet0; + $642 = (_i64Add(($640|0),($641|0),($621|0),($622|0))|0); + $643 = tempRet0; + $644 = (_i64Add(($642|0),($643|0),($615|0),($616|0))|0); + $645 = tempRet0; + $646 = (_bitshift64Shl(($593|0),($594|0),36)|0); + $647 = tempRet0; + $648 = (_bitshift64Lshr(($593|0),($594|0),28)|0); + $649 = tempRet0; + $650 = $646 | $648; + $651 = $647 | $649; + $652 = (_bitshift64Shl(($593|0),($594|0),30)|0); + $653 = tempRet0; + $654 = (_bitshift64Lshr(($593|0),($594|0),34)|0); + $655 = tempRet0; + $656 = $652 | $654; + $657 = $653 | $655; + $658 = $650 ^ $656; + $659 = $651 ^ $657; + $660 = (_bitshift64Shl(($593|0),($594|0),25)|0); + $661 = tempRet0; + $662 = (_bitshift64Lshr(($593|0),($594|0),39)|0); + $663 = tempRet0; + $664 = $660 | $662; + $665 = $661 | $663; + $666 = $658 ^ $664; + $667 = $659 ^ $665; + $668 = $593 & $506; + $669 = $594 & $507; + $670 = $593 | $506; + $671 = $594 | $507; + $672 = $670 & $419; + $673 = $671 & $420; + $674 = $672 | $668; + $675 = $673 | $669; + $676 = (_i64Add(($666|0),($667|0),($674|0),($675|0))|0); + $677 = tempRet0; + $678 = (_i64Add(($644|0),($645|0),($332|0),($333|0))|0); + $679 = tempRet0; + $680 = (_i64Add(($676|0),($677|0),($644|0),($645|0))|0); + $681 = tempRet0; + $682 = (_bitshift64Shl(($678|0),($679|0),50)|0); + $683 = tempRet0; + $684 = (_bitshift64Lshr(($678|0),($679|0),14)|0); + $685 = tempRet0; + $686 = $682 | $684; + $687 = $683 | $685; + $688 = (_bitshift64Shl(($678|0),($679|0),46)|0); + $689 = tempRet0; + $690 = (_bitshift64Lshr(($678|0),($679|0),18)|0); + $691 = tempRet0; + $692 = $688 | $690; + $693 = $689 | $691; + $694 = $686 ^ $692; + $695 = $687 ^ $693; + $696 = (_bitshift64Shl(($678|0),($679|0),23)|0); + $697 = tempRet0; + $698 = (_bitshift64Lshr(($678|0),($679|0),41)|0); + $699 = tempRet0; + $700 = $696 | $698; + $701 = $697 | $699; + $702 = $694 ^ $700; + $703 = $695 ^ $701; + $704 = $591 ^ $504; + $705 = $592 ^ $505; + $706 = $678 & $704; + $707 = $679 & $705; + $708 = $706 ^ $504; + $709 = $707 ^ $505; + $710 = $i$29 | 6; + $711 = (31904 + ($710<<3)|0); + $712 = $711; + $713 = $712; + $714 = HEAP32[$713>>2]|0; + $715 = (($712) + 4)|0; + $716 = $715; + $717 = HEAP32[$716>>2]|0; + $718 = (($W) + ($710<<3)|0); + $719 = $718; + $720 = $719; + $721 = HEAP32[$720>>2]|0; + $722 = (($719) + 4)|0; + $723 = $722; + $724 = HEAP32[$723>>2]|0; + $725 = (_i64Add(($721|0),($724|0),($714|0),($717|0))|0); + $726 = tempRet0; + $727 = (_i64Add(($725|0),($726|0),($417|0),($418|0))|0); + $728 = tempRet0; + $729 = (_i64Add(($727|0),($728|0),($708|0),($709|0))|0); + $730 = tempRet0; + $731 = (_i64Add(($729|0),($730|0),($702|0),($703|0))|0); + $732 = tempRet0; + $733 = (_bitshift64Shl(($680|0),($681|0),36)|0); + $734 = tempRet0; + $735 = (_bitshift64Lshr(($680|0),($681|0),28)|0); + $736 = tempRet0; + $737 = $733 | $735; + $738 = $734 | $736; + $739 = (_bitshift64Shl(($680|0),($681|0),30)|0); + $740 = tempRet0; + $741 = (_bitshift64Lshr(($680|0),($681|0),34)|0); + $742 = tempRet0; + $743 = $739 | $741; + $744 = $740 | $742; + $745 = $737 ^ $743; + $746 = $738 ^ $744; + $747 = (_bitshift64Shl(($680|0),($681|0),25)|0); + $748 = tempRet0; + $749 = (_bitshift64Lshr(($680|0),($681|0),39)|0); + $750 = tempRet0; + $751 = $747 | $749; + $752 = $748 | $750; + $753 = $745 ^ $751; + $754 = $746 ^ $752; + $755 = $680 & $593; + $756 = $681 & $594; + $757 = $680 | $593; + $758 = $681 | $594; + $759 = $757 & $506; + $760 = $758 & $507; + $761 = $759 | $755; + $762 = $760 | $756; + $763 = (_i64Add(($753|0),($754|0),($761|0),($762|0))|0); + $764 = tempRet0; + $765 = (_i64Add(($731|0),($732|0),($419|0),($420|0))|0); + $766 = tempRet0; + $767 = (_i64Add(($763|0),($764|0),($731|0),($732|0))|0); + $768 = tempRet0; + $769 = (_bitshift64Shl(($765|0),($766|0),50)|0); + $770 = tempRet0; + $771 = (_bitshift64Lshr(($765|0),($766|0),14)|0); + $772 = tempRet0; + $773 = $769 | $771; + $774 = $770 | $772; + $775 = (_bitshift64Shl(($765|0),($766|0),46)|0); + $776 = tempRet0; + $777 = (_bitshift64Lshr(($765|0),($766|0),18)|0); + $778 = tempRet0; + $779 = $775 | $777; + $780 = $776 | $778; + $781 = $773 ^ $779; + $782 = $774 ^ $780; + $783 = (_bitshift64Shl(($765|0),($766|0),23)|0); + $784 = tempRet0; + $785 = (_bitshift64Lshr(($765|0),($766|0),41)|0); + $786 = tempRet0; + $787 = $783 | $785; + $788 = $784 | $786; + $789 = $781 ^ $787; + $790 = $782 ^ $788; + $791 = $678 ^ $591; + $792 = $679 ^ $592; + $793 = $765 & $791; + $794 = $766 & $792; + $795 = $793 ^ $591; + $796 = $794 ^ $592; + $797 = $i$29 | 7; + $798 = (31904 + ($797<<3)|0); + $799 = $798; + $800 = $799; + $801 = HEAP32[$800>>2]|0; + $802 = (($799) + 4)|0; + $803 = $802; + $804 = HEAP32[$803>>2]|0; + $805 = (($W) + ($797<<3)|0); + $806 = $805; + $807 = $806; + $808 = HEAP32[$807>>2]|0; + $809 = (($806) + 4)|0; + $810 = $809; + $811 = HEAP32[$810>>2]|0; + $812 = (_i64Add(($808|0),($811|0),($801|0),($804|0))|0); + $813 = tempRet0; + $814 = (_i64Add(($812|0),($813|0),($504|0),($505|0))|0); + $815 = tempRet0; + $816 = (_i64Add(($814|0),($815|0),($795|0),($796|0))|0); + $817 = tempRet0; + $818 = (_i64Add(($816|0),($817|0),($789|0),($790|0))|0); + $819 = tempRet0; + $820 = (_bitshift64Shl(($767|0),($768|0),36)|0); + $821 = tempRet0; + $822 = (_bitshift64Lshr(($767|0),($768|0),28)|0); + $823 = tempRet0; + $824 = $820 | $822; + $825 = $821 | $823; + $826 = (_bitshift64Shl(($767|0),($768|0),30)|0); + $827 = tempRet0; + $828 = (_bitshift64Lshr(($767|0),($768|0),34)|0); + $829 = tempRet0; + $830 = $826 | $828; + $831 = $827 | $829; + $832 = $824 ^ $830; + $833 = $825 ^ $831; + $834 = (_bitshift64Shl(($767|0),($768|0),25)|0); + $835 = tempRet0; + $836 = (_bitshift64Lshr(($767|0),($768|0),39)|0); + $837 = tempRet0; + $838 = $834 | $836; + $839 = $835 | $837; + $840 = $832 ^ $838; + $841 = $833 ^ $839; + $842 = $767 & $680; + $843 = $768 & $681; + $844 = $767 | $680; + $845 = $768 | $681; + $846 = $844 & $593; + $847 = $845 & $594; + $848 = $846 | $842; + $849 = $847 | $843; + $850 = (_i64Add(($840|0),($841|0),($848|0),($849|0))|0); + $851 = tempRet0; + $852 = (_i64Add(($818|0),($819|0),($506|0),($507|0))|0); + $853 = tempRet0; + $854 = (_i64Add(($850|0),($851|0),($818|0),($819|0))|0); + $855 = tempRet0; + $856 = (($i$29) + 8)|0; + $857 = ($856|0)<(80); + if ($857) { + $145 = $852;$146 = $853;$170 = $678;$171 = $765;$173 = $679;$174 = $766;$193 = $591;$194 = $592;$203 = $854;$204 = $855;$228 = $767;$230 = $768;$234 = $680;$236 = $681;$241 = $593;$242 = $594;$i$29 = $856; + } else { + break; + } + } + $858 = $r; + $859 = $858; + $860 = HEAP32[$859>>2]|0; + $861 = (($858) + 4)|0; + $862 = $861; + $863 = HEAP32[$862>>2]|0; + $864 = (_i64Add(($860|0),($863|0),($854|0),($855|0))|0); + $865 = tempRet0; + $866 = $r; + $867 = $866; + HEAP32[$867>>2] = $864; + $868 = (($866) + 4)|0; + $869 = $868; + HEAP32[$869>>2] = $865; + $870 = $96; + $871 = $870; + $872 = HEAP32[$871>>2]|0; + $873 = (($870) + 4)|0; + $874 = $873; + $875 = HEAP32[$874>>2]|0; + $876 = (_i64Add(($872|0),($875|0),($767|0),($768|0))|0); + $877 = tempRet0; + $878 = $96; + $879 = $878; + HEAP32[$879>>2] = $876; + $880 = (($878) + 4)|0; + $881 = $880; + HEAP32[$881>>2] = $877; + $882 = $103; + $883 = $882; + $884 = HEAP32[$883>>2]|0; + $885 = (($882) + 4)|0; + $886 = $885; + $887 = HEAP32[$886>>2]|0; + $888 = (_i64Add(($884|0),($887|0),($680|0),($681|0))|0); + $889 = tempRet0; + $890 = $103; + $891 = $890; + HEAP32[$891>>2] = $888; + $892 = (($890) + 4)|0; + $893 = $892; + HEAP32[$893>>2] = $889; + $894 = $110; + $895 = $894; + $896 = HEAP32[$895>>2]|0; + $897 = (($894) + 4)|0; + $898 = $897; + $899 = HEAP32[$898>>2]|0; + $900 = (_i64Add(($896|0),($899|0),($593|0),($594|0))|0); + $901 = tempRet0; + $902 = $110; + $903 = $902; + HEAP32[$903>>2] = $900; + $904 = (($902) + 4)|0; + $905 = $904; + HEAP32[$905>>2] = $901; + $906 = $117; + $907 = $906; + $908 = HEAP32[$907>>2]|0; + $909 = (($906) + 4)|0; + $910 = $909; + $911 = HEAP32[$910>>2]|0; + $912 = (_i64Add(($908|0),($911|0),($852|0),($853|0))|0); + $913 = tempRet0; + $914 = $117; + $915 = $914; + HEAP32[$915>>2] = $912; + $916 = (($914) + 4)|0; + $917 = $916; + HEAP32[$917>>2] = $913; + $918 = $124; + $919 = $918; + $920 = HEAP32[$919>>2]|0; + $921 = (($918) + 4)|0; + $922 = $921; + $923 = HEAP32[$922>>2]|0; + $924 = (_i64Add(($920|0),($923|0),($765|0),($766|0))|0); + $925 = tempRet0; + $926 = $124; + $927 = $926; + HEAP32[$927>>2] = $924; + $928 = (($926) + 4)|0; + $929 = $928; + HEAP32[$929>>2] = $925; + $930 = $131; + $931 = $930; + $932 = HEAP32[$931>>2]|0; + $933 = (($930) + 4)|0; + $934 = $933; + $935 = HEAP32[$934>>2]|0; + $936 = (_i64Add(($932|0),($935|0),($678|0),($679|0))|0); + $937 = tempRet0; + $938 = $131; + $939 = $938; + HEAP32[$939>>2] = $936; + $940 = (($938) + 4)|0; + $941 = $940; + HEAP32[$941>>2] = $937; + $942 = $138; + $943 = $942; + $944 = HEAP32[$943>>2]|0; + $945 = (($942) + 4)|0; + $946 = $945; + $947 = HEAP32[$946>>2]|0; + $948 = (_i64Add(($944|0),($947|0),($591|0),($592|0))|0); + $949 = tempRet0; + $950 = $138; + $951 = $950; + HEAP32[$951>>2] = $948; + $952 = (($950) + 4)|0; + $953 = $952; + HEAP32[$953>>2] = $949; + STACKTOP = sp;return; +} +function _sha384_close($cc,$dst,$rnum) { + $cc = $cc|0; + $dst = $dst|0; + $rnum = $rnum|0; + var label = 0, sp = 0; + sp = STACKTOP; + _sha384_addbits_and_close($cc,0,0,$dst,$rnum); + STACKTOP = sp;return; +} +function _sha384_addbits_and_close($cc,$ub,$n,$dst,$rnum) { + $cc = $cc|0; + $ub = $ub|0; + $n = $n|0; + $dst = $dst|0; + $rnum = $rnum|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $exitcond = 0, $u$01 = 0, dest = 0, label = 0, sp = 0, stop = 0; + sp = STACKTOP; + $0 = (($cc) + 192|0); + $1 = $0; + $2 = $1; + $3 = HEAP32[$2>>2]|0; + $4 = (($1) + 4)|0; + $5 = $4; + $6 = HEAP32[$5>>2]|0; + $7 = $3 & 127; + $8 = 128 >>> $n; + $9 = (0 - ($8))|0; + $10 = $9 & $ub; + $11 = $10 | $8; + $12 = $11&255; + $13 = (($7) + 1)|0; + $14 = (($cc) + ($7)|0); + HEAP8[$14>>0] = $12; + $15 = ($13>>>0)>(112); + $16 = (($cc) + ($13)|0); + if ($15) { + $17 = $7 ^ 127; + _memset(($16|0),0,($17|0))|0; + $18 = (($cc) + 128|0); + _sha3_round($cc,$18); + dest=$cc+0|0; stop=dest+112|0; do { HEAP8[dest>>0]=0|0; dest=dest+1|0; } while ((dest|0) < (stop|0)); + } else { + $19 = (111 - ($7))|0; + _memset(($16|0),0,($19|0))|0; + } + $20 = (($cc) + 112|0); + $21 = $0; + $22 = $21; + $23 = HEAP32[$22>>2]|0; + $24 = (($21) + 4)|0; + $25 = $24; + $26 = HEAP32[$25>>2]|0; + $27 = (_bitshift64Lshr(($23|0),($26|0),61)|0); + $28 = tempRet0; + _sph_enc64be_aligned($20,$27,$28); + $29 = (($cc) + 120|0); + $30 = $0; + $31 = $30; + $32 = HEAP32[$31>>2]|0; + $33 = (($30) + 4)|0; + $34 = $33; + $35 = HEAP32[$34>>2]|0; + $36 = (_bitshift64Shl(($32|0),($35|0),3)|0); + $37 = tempRet0; + $38 = (_i64Add(($36|0),($37|0),($n|0),0)|0); + $39 = tempRet0; + _sph_enc64be_aligned($29,$38,$39); + $40 = (($cc) + 128|0); + _sha3_round($cc,$40); + $41 = ($rnum|0)==(0); + if ($41) { + STACKTOP = sp;return; + } else { + $u$01 = 0; + } + while(1) { + $42 = $u$01 << 3; + $43 = (($dst) + ($42)|0); + $44 = (($40) + ($u$01<<3)|0); + $45 = $44; + $46 = $45; + $47 = HEAP32[$46>>2]|0; + $48 = (($45) + 4)|0; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + _sph_enc64be($43,$47,$50); + $51 = (($u$01) + 1)|0; + $exitcond = ($51|0)==($rnum|0); + if ($exitcond) { + break; + } else { + $u$01 = $51; + } + } + STACKTOP = sp;return; +} +function _sph_dec64be_aligned($src) { + $src = $src|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$src>>0]|0; + $1 = $0&255; + $2 = (_bitshift64Shl(($1|0),0,56)|0); + $3 = tempRet0; + $4 = (($src) + 1|0); + $5 = HEAP8[$4>>0]|0; + $6 = $5&255; + $7 = (_bitshift64Shl(($6|0),0,48)|0); + $8 = tempRet0; + $9 = $7 | $2; + $10 = $8 | $3; + $11 = (($src) + 2|0); + $12 = HEAP8[$11>>0]|0; + $13 = $12&255; + $14 = (_bitshift64Shl(($13|0),0,40)|0); + $15 = tempRet0; + $16 = $9 | $14; + $17 = $10 | $15; + $18 = (($src) + 3|0); + $19 = HEAP8[$18>>0]|0; + $20 = $19&255; + $21 = $17 | $20; + $22 = (($src) + 4|0); + $23 = HEAP8[$22>>0]|0; + $24 = $23&255; + $25 = (_bitshift64Shl(($24|0),0,24)|0); + $26 = tempRet0; + $27 = $16 | $25; + $28 = $21 | $26; + $29 = (($src) + 5|0); + $30 = HEAP8[$29>>0]|0; + $31 = $30&255; + $32 = (_bitshift64Shl(($31|0),0,16)|0); + $33 = tempRet0; + $34 = $27 | $32; + $35 = $28 | $33; + $36 = (($src) + 6|0); + $37 = HEAP8[$36>>0]|0; + $38 = $37&255; + $39 = (_bitshift64Shl(($38|0),0,8)|0); + $40 = tempRet0; + $41 = $34 | $39; + $42 = $35 | $40; + $43 = (($src) + 7|0); + $44 = HEAP8[$43>>0]|0; + $45 = $44&255; + $46 = $41 | $45; + tempRet0 = $42; + STACKTOP = sp;return ($46|0); +} +function _sph_enc64be_aligned($dst,$0,$1) { + $dst = $dst|0; + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = (_bitshift64Lshr(($0|0),($1|0),56)|0); + $3 = tempRet0; + $4 = $2&255; + HEAP8[$dst>>0] = $4; + $5 = (_bitshift64Lshr(($0|0),($1|0),48)|0); + $6 = tempRet0; + $7 = $5&255; + $8 = (($dst) + 1|0); + HEAP8[$8>>0] = $7; + $9 = (_bitshift64Lshr(($0|0),($1|0),40)|0); + $10 = tempRet0; + $11 = $9&255; + $12 = (($dst) + 2|0); + HEAP8[$12>>0] = $11; + $13 = $1&255; + $14 = (($dst) + 3|0); + HEAP8[$14>>0] = $13; + $15 = (_bitshift64Lshr(($0|0),($1|0),24)|0); + $16 = tempRet0; + $17 = $15&255; + $18 = (($dst) + 4|0); + HEAP8[$18>>0] = $17; + $19 = (_bitshift64Lshr(($0|0),($1|0),16)|0); + $20 = tempRet0; + $21 = $19&255; + $22 = (($dst) + 5|0); + HEAP8[$22>>0] = $21; + $23 = (_bitshift64Lshr(($0|0),($1|0),8)|0); + $24 = tempRet0; + $25 = $23&255; + $26 = (($dst) + 6|0); + HEAP8[$26>>0] = $25; + $27 = $0&255; + $28 = (($dst) + 7|0); + HEAP8[$28>>0] = $27; + STACKTOP = sp;return; +} +function _sph_enc64be($dst,$0,$1) { + $dst = $dst|0; + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = (_bitshift64Lshr(($0|0),($1|0),56)|0); + $3 = tempRet0; + $4 = $2&255; + HEAP8[$dst>>0] = $4; + $5 = (_bitshift64Lshr(($0|0),($1|0),48)|0); + $6 = tempRet0; + $7 = $5&255; + $8 = (($dst) + 1|0); + HEAP8[$8>>0] = $7; + $9 = (_bitshift64Lshr(($0|0),($1|0),40)|0); + $10 = tempRet0; + $11 = $9&255; + $12 = (($dst) + 2|0); + HEAP8[$12>>0] = $11; + $13 = $1&255; + $14 = (($dst) + 3|0); + HEAP8[$14>>0] = $13; + $15 = (_bitshift64Lshr(($0|0),($1|0),24)|0); + $16 = tempRet0; + $17 = $15&255; + $18 = (($dst) + 4|0); + HEAP8[$18>>0] = $17; + $19 = (_bitshift64Lshr(($0|0),($1|0),16)|0); + $20 = tempRet0; + $21 = $19&255; + $22 = (($dst) + 5|0); + HEAP8[$22>>0] = $21; + $23 = (_bitshift64Lshr(($0|0),($1|0),8)|0); + $24 = tempRet0; + $25 = $23&255; + $26 = (($dst) + 6|0); + HEAP8[$26>>0] = $25; + $27 = $0&255; + $28 = (($dst) + 7|0); + HEAP8[$28>>0] = $27; + STACKTOP = sp;return; +} +function _malloc($bytes) { + $bytes = $bytes|0; + var $$pre = 0, $$pre$i = 0, $$pre$i$i = 0, $$pre$i23$i = 0, $$pre$i25 = 0, $$pre$phi$i$iZ2D = 0, $$pre$phi$i24$iZ2D = 0, $$pre$phi$i26Z2D = 0, $$pre$phi$iZ2D = 0, $$pre$phi59$i$iZ2D = 0, $$pre$phiZ2D = 0, $$pre105 = 0, $$pre58$i$i = 0, $$rsize$0$i = 0, $$rsize$3$i = 0, $$sum = 0, $$sum$i$i = 0, $$sum$i$i$i = 0, $$sum$i12$i = 0, $$sum$i13$i = 0; + var $$sum$i16$i = 0, $$sum$i19$i = 0, $$sum$i2338 = 0, $$sum$i32 = 0, $$sum$i39 = 0, $$sum1 = 0, $$sum1$i = 0, $$sum1$i$i = 0, $$sum1$i14$i = 0, $$sum1$i20$i = 0, $$sum1$i24 = 0, $$sum10 = 0, $$sum10$i = 0, $$sum10$i$i = 0, $$sum10$pre$i$i = 0, $$sum102$i = 0, $$sum103$i = 0, $$sum104$i = 0, $$sum105$i = 0, $$sum106$i = 0; + var $$sum107$i = 0, $$sum108$i = 0, $$sum109$i = 0, $$sum11$i = 0, $$sum11$i$i = 0, $$sum11$i22$i = 0, $$sum110$i = 0, $$sum111$i = 0, $$sum1112 = 0, $$sum112$i = 0, $$sum113$i = 0, $$sum114$i = 0, $$sum115$i = 0, $$sum12$i = 0, $$sum12$i$i = 0, $$sum13$i = 0, $$sum13$i$i = 0, $$sum14$i$i = 0, $$sum14$pre$i = 0, $$sum15$i = 0; + var $$sum15$i$i = 0, $$sum16$i = 0, $$sum16$i$i = 0, $$sum17$i = 0, $$sum17$i$i = 0, $$sum18$i = 0, $$sum1819$i$i = 0, $$sum2 = 0, $$sum2$i = 0, $$sum2$i$i = 0, $$sum2$i$i$i = 0, $$sum2$i15$i = 0, $$sum2$i17$i = 0, $$sum2$i21$i = 0, $$sum2$pre$i = 0, $$sum20$i$i = 0, $$sum21$i$i = 0, $$sum22$i$i = 0, $$sum23$i$i = 0, $$sum24$i$i = 0; + var $$sum25$i$i = 0, $$sum26$pre$i$i = 0, $$sum27$i$i = 0, $$sum28$i$i = 0, $$sum29$i$i = 0, $$sum3$i = 0, $$sum3$i$i = 0, $$sum3$i27 = 0, $$sum30$i$i = 0, $$sum3132$i$i = 0, $$sum34$i$i = 0, $$sum3536$i$i = 0, $$sum3738$i$i = 0, $$sum39$i$i = 0, $$sum4 = 0, $$sum4$i = 0, $$sum4$i28 = 0, $$sum40$i$i = 0, $$sum41$i$i = 0, $$sum42$i$i = 0; + var $$sum5$i = 0, $$sum5$i$i = 0, $$sum56 = 0, $$sum6$i = 0, $$sum67$i$i = 0, $$sum7$i = 0, $$sum8$i = 0, $$sum8$pre = 0, $$sum9 = 0, $$sum9$i = 0, $$sum9$i$i = 0, $$tsize$1$i = 0, $$v$0$i = 0, $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0; + var $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0; + var $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0; + var $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0; + var $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0, $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $108 = 0; + var $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0; + var $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0; + var $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0; + var $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0; + var $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0; + var $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0; + var $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0; + var $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0; + var $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0; + var $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0; + var $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0; + var $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0; + var $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0; + var $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0; + var $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0; + var $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0; + var $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0; + var $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0; + var $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0; + var $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0; + var $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0; + var $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0; + var $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0; + var $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0; + var $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0; + var $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0; + var $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0; + var $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0; + var $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0; + var $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0; + var $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0; + var $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0; + var $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0; + var $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0; + var $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0; + var $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0; + var $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0; + var $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0; + var $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0; + var $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0; + var $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0; + var $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0; + var $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0; + var $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0; + var $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0; + var $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0; + var $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0; + var $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0; + var $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0; + var $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, $F$0$i$i = 0, $F1$0$i = 0, $F4$0 = 0, $F4$0$i$i = 0, $F5$0$i = 0, $I1$0$c$i$i = 0, $I1$0$i$i = 0, $I7$0$i = 0, $I7$0$i$i = 0, $K12$027$i = 0, $K2$015$i$i = 0, $K8$053$i$i = 0; + var $R$0$i = 0, $R$0$i$i = 0, $R$0$i18 = 0, $R$1$i = 0, $R$1$i$i = 0, $R$1$i20 = 0, $RP$0$i = 0, $RP$0$i$i = 0, $RP$0$i17 = 0, $T$0$lcssa$i = 0, $T$0$lcssa$i$i = 0, $T$0$lcssa$i26$i = 0, $T$014$i$i = 0, $T$026$i = 0, $T$052$i$i = 0, $br$0$i = 0, $br$030$i = 0, $cond$i = 0, $cond$i$i = 0, $cond$i21 = 0; + var $exitcond$i$i = 0, $i$02$i$i = 0, $idx$0$i = 0, $mem$0 = 0, $nb$0 = 0, $oldfirst$0$i$i = 0, $or$cond$i = 0, $or$cond$i$i = 0, $or$cond$i27$i = 0, $or$cond$i29 = 0, $or$cond1$i = 0, $or$cond19$i = 0, $or$cond2$i = 0, $or$cond24$i = 0, $or$cond3$i = 0, $or$cond4$i = 0, $or$cond47$i = 0, $or$cond5$i = 0, $or$cond6$i = 0, $or$cond8$i = 0; + var $qsize$0$i$i = 0, $rsize$0$i = 0, $rsize$0$i15 = 0, $rsize$1$i = 0, $rsize$2$i = 0, $rsize$3$lcssa$i = 0, $rsize$331$i = 0, $rst$0$i = 0, $rst$1$i = 0, $sizebits$0$i = 0, $sp$0$i$i = 0, $sp$0$i$i$i = 0, $sp$073$i = 0, $sp$166$i = 0, $ssize$0$i = 0, $ssize$1$i = 0, $ssize$129$i = 0, $ssize$2$i = 0, $t$0$i = 0, $t$0$i14 = 0; + var $t$1$i = 0, $t$2$ph$i = 0, $t$2$v$3$i = 0, $t$230$i = 0, $tbase$245$i = 0, $tsize$03141$i = 0, $tsize$1$i = 0, $tsize$244$i = 0, $v$0$i = 0, $v$0$i16 = 0, $v$1$i = 0, $v$2$i = 0, $v$3$lcssa$i = 0, $v$332$i = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = ($bytes>>>0)<(245); + do { + if ($0) { + $1 = ($bytes>>>0)<(11); + if ($1) { + $5 = 16; + } else { + $2 = (($bytes) + 11)|0; + $3 = $2 & -8; + $5 = $3; + } + $4 = $5 >>> 3; + $6 = HEAP32[32544>>2]|0; + $7 = $6 >>> $4; + $8 = $7 & 3; + $9 = ($8|0)==(0); + if (!($9)) { + $10 = $7 & 1; + $11 = $10 ^ 1; + $12 = (($11) + ($4))|0; + $13 = $12 << 1; + $14 = ((32544 + ($13<<2)|0) + 40|0); + $$sum10 = (($13) + 2)|0; + $15 = ((32544 + ($$sum10<<2)|0) + 40|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($16) + 8|0); + $18 = HEAP32[$17>>2]|0; + $19 = ($14|0)==($18|0); + do { + if ($19) { + $20 = 1 << $12; + $21 = $20 ^ -1; + $22 = $6 & $21; + HEAP32[32544>>2] = $22; + } else { + $23 = HEAP32[((32544 + 16|0))>>2]|0; + $24 = ($18>>>0)<($23>>>0); + if ($24) { + _abort(); + // unreachable; + } + $25 = (($18) + 12|0); + $26 = HEAP32[$25>>2]|0; + $27 = ($26|0)==($16|0); + if ($27) { + HEAP32[$25>>2] = $14; + HEAP32[$15>>2] = $18; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $28 = $12 << 3; + $29 = $28 | 3; + $30 = (($16) + 4|0); + HEAP32[$30>>2] = $29; + $$sum1112 = $28 | 4; + $31 = (($16) + ($$sum1112)|0); + $32 = HEAP32[$31>>2]|0; + $33 = $32 | 1; + HEAP32[$31>>2] = $33; + $mem$0 = $17; + STACKTOP = sp;return ($mem$0|0); + } + $34 = HEAP32[((32544 + 8|0))>>2]|0; + $35 = ($5>>>0)>($34>>>0); + if ($35) { + $36 = ($7|0)==(0); + if (!($36)) { + $37 = $7 << $4; + $38 = 2 << $4; + $39 = (0 - ($38))|0; + $40 = $38 | $39; + $41 = $37 & $40; + $42 = (0 - ($41))|0; + $43 = $41 & $42; + $44 = (($43) + -1)|0; + $45 = $44 >>> 12; + $46 = $45 & 16; + $47 = $44 >>> $46; + $48 = $47 >>> 5; + $49 = $48 & 8; + $50 = $49 | $46; + $51 = $47 >>> $49; + $52 = $51 >>> 2; + $53 = $52 & 4; + $54 = $50 | $53; + $55 = $51 >>> $53; + $56 = $55 >>> 1; + $57 = $56 & 2; + $58 = $54 | $57; + $59 = $55 >>> $57; + $60 = $59 >>> 1; + $61 = $60 & 1; + $62 = $58 | $61; + $63 = $59 >>> $61; + $64 = (($62) + ($63))|0; + $65 = $64 << 1; + $66 = ((32544 + ($65<<2)|0) + 40|0); + $$sum4 = (($65) + 2)|0; + $67 = ((32544 + ($$sum4<<2)|0) + 40|0); + $68 = HEAP32[$67>>2]|0; + $69 = (($68) + 8|0); + $70 = HEAP32[$69>>2]|0; + $71 = ($66|0)==($70|0); + do { + if ($71) { + $72 = 1 << $64; + $73 = $72 ^ -1; + $74 = $6 & $73; + HEAP32[32544>>2] = $74; + $88 = $34; + } else { + $75 = HEAP32[((32544 + 16|0))>>2]|0; + $76 = ($70>>>0)<($75>>>0); + if ($76) { + _abort(); + // unreachable; + } + $77 = (($70) + 12|0); + $78 = HEAP32[$77>>2]|0; + $79 = ($78|0)==($68|0); + if ($79) { + HEAP32[$77>>2] = $66; + HEAP32[$67>>2] = $70; + $$pre = HEAP32[((32544 + 8|0))>>2]|0; + $88 = $$pre; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $80 = $64 << 3; + $81 = (($80) - ($5))|0; + $82 = $5 | 3; + $83 = (($68) + 4|0); + HEAP32[$83>>2] = $82; + $84 = (($68) + ($5)|0); + $85 = $81 | 1; + $$sum56 = $5 | 4; + $86 = (($68) + ($$sum56)|0); + HEAP32[$86>>2] = $85; + $87 = (($68) + ($80)|0); + HEAP32[$87>>2] = $81; + $89 = ($88|0)==(0); + if (!($89)) { + $90 = HEAP32[((32544 + 20|0))>>2]|0; + $91 = $88 >>> 3; + $92 = $91 << 1; + $93 = ((32544 + ($92<<2)|0) + 40|0); + $94 = HEAP32[32544>>2]|0; + $95 = 1 << $91; + $96 = $94 & $95; + $97 = ($96|0)==(0); + if ($97) { + $98 = $94 | $95; + HEAP32[32544>>2] = $98; + $$sum8$pre = (($92) + 2)|0; + $$pre105 = ((32544 + ($$sum8$pre<<2)|0) + 40|0); + $$pre$phiZ2D = $$pre105;$F4$0 = $93; + } else { + $$sum9 = (($92) + 2)|0; + $99 = ((32544 + ($$sum9<<2)|0) + 40|0); + $100 = HEAP32[$99>>2]|0; + $101 = HEAP32[((32544 + 16|0))>>2]|0; + $102 = ($100>>>0)<($101>>>0); + if ($102) { + _abort(); + // unreachable; + } else { + $$pre$phiZ2D = $99;$F4$0 = $100; + } + } + HEAP32[$$pre$phiZ2D>>2] = $90; + $103 = (($F4$0) + 12|0); + HEAP32[$103>>2] = $90; + $104 = (($90) + 8|0); + HEAP32[$104>>2] = $F4$0; + $105 = (($90) + 12|0); + HEAP32[$105>>2] = $93; + } + HEAP32[((32544 + 8|0))>>2] = $81; + HEAP32[((32544 + 20|0))>>2] = $84; + $mem$0 = $69; + STACKTOP = sp;return ($mem$0|0); + } + $106 = HEAP32[((32544 + 4|0))>>2]|0; + $107 = ($106|0)==(0); + if ($107) { + $nb$0 = $5; + } else { + $108 = (0 - ($106))|0; + $109 = $106 & $108; + $110 = (($109) + -1)|0; + $111 = $110 >>> 12; + $112 = $111 & 16; + $113 = $110 >>> $112; + $114 = $113 >>> 5; + $115 = $114 & 8; + $116 = $115 | $112; + $117 = $113 >>> $115; + $118 = $117 >>> 2; + $119 = $118 & 4; + $120 = $116 | $119; + $121 = $117 >>> $119; + $122 = $121 >>> 1; + $123 = $122 & 2; + $124 = $120 | $123; + $125 = $121 >>> $123; + $126 = $125 >>> 1; + $127 = $126 & 1; + $128 = $124 | $127; + $129 = $125 >>> $127; + $130 = (($128) + ($129))|0; + $131 = ((32544 + ($130<<2)|0) + 304|0); + $132 = HEAP32[$131>>2]|0; + $133 = (($132) + 4|0); + $134 = HEAP32[$133>>2]|0; + $135 = $134 & -8; + $136 = (($135) - ($5))|0; + $rsize$0$i = $136;$t$0$i = $132;$v$0$i = $132; + while(1) { + $137 = (($t$0$i) + 16|0); + $138 = HEAP32[$137>>2]|0; + $139 = ($138|0)==(0|0); + if ($139) { + $140 = (($t$0$i) + 20|0); + $141 = HEAP32[$140>>2]|0; + $142 = ($141|0)==(0|0); + if ($142) { + break; + } else { + $144 = $141; + } + } else { + $144 = $138; + } + $143 = (($144) + 4|0); + $145 = HEAP32[$143>>2]|0; + $146 = $145 & -8; + $147 = (($146) - ($5))|0; + $148 = ($147>>>0)<($rsize$0$i>>>0); + $$rsize$0$i = $148 ? $147 : $rsize$0$i; + $$v$0$i = $148 ? $144 : $v$0$i; + $rsize$0$i = $$rsize$0$i;$t$0$i = $144;$v$0$i = $$v$0$i; + } + $149 = HEAP32[((32544 + 16|0))>>2]|0; + $150 = ($v$0$i>>>0)<($149>>>0); + if ($150) { + _abort(); + // unreachable; + } + $151 = (($v$0$i) + ($5)|0); + $152 = ($v$0$i>>>0)<($151>>>0); + if (!($152)) { + _abort(); + // unreachable; + } + $153 = (($v$0$i) + 24|0); + $154 = HEAP32[$153>>2]|0; + $155 = (($v$0$i) + 12|0); + $156 = HEAP32[$155>>2]|0; + $157 = ($156|0)==($v$0$i|0); + do { + if ($157) { + $167 = (($v$0$i) + 20|0); + $168 = HEAP32[$167>>2]|0; + $169 = ($168|0)==(0|0); + if ($169) { + $170 = (($v$0$i) + 16|0); + $171 = HEAP32[$170>>2]|0; + $172 = ($171|0)==(0|0); + if ($172) { + $R$1$i = 0; + break; + } else { + $R$0$i = $171;$RP$0$i = $170; + } + } else { + $R$0$i = $168;$RP$0$i = $167; + } + while(1) { + $173 = (($R$0$i) + 20|0); + $174 = HEAP32[$173>>2]|0; + $175 = ($174|0)==(0|0); + if (!($175)) { + $R$0$i = $174;$RP$0$i = $173; + continue; + } + $176 = (($R$0$i) + 16|0); + $177 = HEAP32[$176>>2]|0; + $178 = ($177|0)==(0|0); + if ($178) { + break; + } else { + $R$0$i = $177;$RP$0$i = $176; + } + } + $179 = ($RP$0$i>>>0)<($149>>>0); + if ($179) { + _abort(); + // unreachable; + } else { + HEAP32[$RP$0$i>>2] = 0; + $R$1$i = $R$0$i; + break; + } + } else { + $158 = (($v$0$i) + 8|0); + $159 = HEAP32[$158>>2]|0; + $160 = ($159>>>0)<($149>>>0); + if ($160) { + _abort(); + // unreachable; + } + $161 = (($159) + 12|0); + $162 = HEAP32[$161>>2]|0; + $163 = ($162|0)==($v$0$i|0); + if (!($163)) { + _abort(); + // unreachable; + } + $164 = (($156) + 8|0); + $165 = HEAP32[$164>>2]|0; + $166 = ($165|0)==($v$0$i|0); + if ($166) { + HEAP32[$161>>2] = $156; + HEAP32[$164>>2] = $159; + $R$1$i = $156; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $180 = ($154|0)==(0|0); + do { + if (!($180)) { + $181 = (($v$0$i) + 28|0); + $182 = HEAP32[$181>>2]|0; + $183 = ((32544 + ($182<<2)|0) + 304|0); + $184 = HEAP32[$183>>2]|0; + $185 = ($v$0$i|0)==($184|0); + if ($185) { + HEAP32[$183>>2] = $R$1$i; + $cond$i = ($R$1$i|0)==(0|0); + if ($cond$i) { + $186 = 1 << $182; + $187 = $186 ^ -1; + $188 = HEAP32[((32544 + 4|0))>>2]|0; + $189 = $188 & $187; + HEAP32[((32544 + 4|0))>>2] = $189; + break; + } + } else { + $190 = HEAP32[((32544 + 16|0))>>2]|0; + $191 = ($154>>>0)<($190>>>0); + if ($191) { + _abort(); + // unreachable; + } + $192 = (($154) + 16|0); + $193 = HEAP32[$192>>2]|0; + $194 = ($193|0)==($v$0$i|0); + if ($194) { + HEAP32[$192>>2] = $R$1$i; + } else { + $195 = (($154) + 20|0); + HEAP32[$195>>2] = $R$1$i; + } + $196 = ($R$1$i|0)==(0|0); + if ($196) { + break; + } + } + $197 = HEAP32[((32544 + 16|0))>>2]|0; + $198 = ($R$1$i>>>0)<($197>>>0); + if ($198) { + _abort(); + // unreachable; + } + $199 = (($R$1$i) + 24|0); + HEAP32[$199>>2] = $154; + $200 = (($v$0$i) + 16|0); + $201 = HEAP32[$200>>2]|0; + $202 = ($201|0)==(0|0); + do { + if (!($202)) { + $203 = ($201>>>0)<($197>>>0); + if ($203) { + _abort(); + // unreachable; + } else { + $204 = (($R$1$i) + 16|0); + HEAP32[$204>>2] = $201; + $205 = (($201) + 24|0); + HEAP32[$205>>2] = $R$1$i; + break; + } + } + } while(0); + $206 = (($v$0$i) + 20|0); + $207 = HEAP32[$206>>2]|0; + $208 = ($207|0)==(0|0); + if (!($208)) { + $209 = HEAP32[((32544 + 16|0))>>2]|0; + $210 = ($207>>>0)<($209>>>0); + if ($210) { + _abort(); + // unreachable; + } else { + $211 = (($R$1$i) + 20|0); + HEAP32[$211>>2] = $207; + $212 = (($207) + 24|0); + HEAP32[$212>>2] = $R$1$i; + break; + } + } + } + } while(0); + $213 = ($rsize$0$i>>>0)<(16); + if ($213) { + $214 = (($rsize$0$i) + ($5))|0; + $215 = $214 | 3; + $216 = (($v$0$i) + 4|0); + HEAP32[$216>>2] = $215; + $$sum4$i = (($214) + 4)|0; + $217 = (($v$0$i) + ($$sum4$i)|0); + $218 = HEAP32[$217>>2]|0; + $219 = $218 | 1; + HEAP32[$217>>2] = $219; + } else { + $220 = $5 | 3; + $221 = (($v$0$i) + 4|0); + HEAP32[$221>>2] = $220; + $222 = $rsize$0$i | 1; + $$sum$i39 = $5 | 4; + $223 = (($v$0$i) + ($$sum$i39)|0); + HEAP32[$223>>2] = $222; + $$sum1$i = (($rsize$0$i) + ($5))|0; + $224 = (($v$0$i) + ($$sum1$i)|0); + HEAP32[$224>>2] = $rsize$0$i; + $225 = HEAP32[((32544 + 8|0))>>2]|0; + $226 = ($225|0)==(0); + if (!($226)) { + $227 = HEAP32[((32544 + 20|0))>>2]|0; + $228 = $225 >>> 3; + $229 = $228 << 1; + $230 = ((32544 + ($229<<2)|0) + 40|0); + $231 = HEAP32[32544>>2]|0; + $232 = 1 << $228; + $233 = $231 & $232; + $234 = ($233|0)==(0); + if ($234) { + $235 = $231 | $232; + HEAP32[32544>>2] = $235; + $$sum2$pre$i = (($229) + 2)|0; + $$pre$i = ((32544 + ($$sum2$pre$i<<2)|0) + 40|0); + $$pre$phi$iZ2D = $$pre$i;$F1$0$i = $230; + } else { + $$sum3$i = (($229) + 2)|0; + $236 = ((32544 + ($$sum3$i<<2)|0) + 40|0); + $237 = HEAP32[$236>>2]|0; + $238 = HEAP32[((32544 + 16|0))>>2]|0; + $239 = ($237>>>0)<($238>>>0); + if ($239) { + _abort(); + // unreachable; + } else { + $$pre$phi$iZ2D = $236;$F1$0$i = $237; + } + } + HEAP32[$$pre$phi$iZ2D>>2] = $227; + $240 = (($F1$0$i) + 12|0); + HEAP32[$240>>2] = $227; + $241 = (($227) + 8|0); + HEAP32[$241>>2] = $F1$0$i; + $242 = (($227) + 12|0); + HEAP32[$242>>2] = $230; + } + HEAP32[((32544 + 8|0))>>2] = $rsize$0$i; + HEAP32[((32544 + 20|0))>>2] = $151; + } + $243 = (($v$0$i) + 8|0); + $mem$0 = $243; + STACKTOP = sp;return ($mem$0|0); + } + } else { + $nb$0 = $5; + } + } else { + $244 = ($bytes>>>0)>(4294967231); + if ($244) { + $nb$0 = -1; + } else { + $245 = (($bytes) + 11)|0; + $246 = $245 & -8; + $247 = HEAP32[((32544 + 4|0))>>2]|0; + $248 = ($247|0)==(0); + if ($248) { + $nb$0 = $246; + } else { + $249 = (0 - ($246))|0; + $250 = $245 >>> 8; + $251 = ($250|0)==(0); + if ($251) { + $idx$0$i = 0; + } else { + $252 = ($246>>>0)>(16777215); + if ($252) { + $idx$0$i = 31; + } else { + $253 = (($250) + 1048320)|0; + $254 = $253 >>> 16; + $255 = $254 & 8; + $256 = $250 << $255; + $257 = (($256) + 520192)|0; + $258 = $257 >>> 16; + $259 = $258 & 4; + $260 = $259 | $255; + $261 = $256 << $259; + $262 = (($261) + 245760)|0; + $263 = $262 >>> 16; + $264 = $263 & 2; + $265 = $260 | $264; + $266 = (14 - ($265))|0; + $267 = $261 << $264; + $268 = $267 >>> 15; + $269 = (($266) + ($268))|0; + $270 = $269 << 1; + $271 = (($269) + 7)|0; + $272 = $246 >>> $271; + $273 = $272 & 1; + $274 = $273 | $270; + $idx$0$i = $274; + } + } + $275 = ((32544 + ($idx$0$i<<2)|0) + 304|0); + $276 = HEAP32[$275>>2]|0; + $277 = ($276|0)==(0|0); + L126: do { + if ($277) { + $rsize$2$i = $249;$t$1$i = 0;$v$2$i = 0; + } else { + $278 = ($idx$0$i|0)==(31); + if ($278) { + $282 = 0; + } else { + $279 = $idx$0$i >>> 1; + $280 = (25 - ($279))|0; + $282 = $280; + } + $281 = $246 << $282; + $rsize$0$i15 = $249;$rst$0$i = 0;$sizebits$0$i = $281;$t$0$i14 = $276;$v$0$i16 = 0; + while(1) { + $283 = (($t$0$i14) + 4|0); + $284 = HEAP32[$283>>2]|0; + $285 = $284 & -8; + $286 = (($285) - ($246))|0; + $287 = ($286>>>0)<($rsize$0$i15>>>0); + if ($287) { + $288 = ($285|0)==($246|0); + if ($288) { + $rsize$2$i = $286;$t$1$i = $t$0$i14;$v$2$i = $t$0$i14; + break L126; + } else { + $rsize$1$i = $286;$v$1$i = $t$0$i14; + } + } else { + $rsize$1$i = $rsize$0$i15;$v$1$i = $v$0$i16; + } + $289 = (($t$0$i14) + 20|0); + $290 = HEAP32[$289>>2]|0; + $291 = $sizebits$0$i >>> 31; + $292 = ((($t$0$i14) + ($291<<2)|0) + 16|0); + $293 = HEAP32[$292>>2]|0; + $294 = ($290|0)==(0|0); + $295 = ($290|0)==($293|0); + $or$cond19$i = $294 | $295; + $rst$1$i = $or$cond19$i ? $rst$0$i : $290; + $296 = ($293|0)==(0|0); + $297 = $sizebits$0$i << 1; + if ($296) { + $rsize$2$i = $rsize$1$i;$t$1$i = $rst$1$i;$v$2$i = $v$1$i; + break; + } else { + $rsize$0$i15 = $rsize$1$i;$rst$0$i = $rst$1$i;$sizebits$0$i = $297;$t$0$i14 = $293;$v$0$i16 = $v$1$i; + } + } + } + } while(0); + $298 = ($t$1$i|0)==(0|0); + $299 = ($v$2$i|0)==(0|0); + $or$cond$i = $298 & $299; + if ($or$cond$i) { + $300 = 2 << $idx$0$i; + $301 = (0 - ($300))|0; + $302 = $300 | $301; + $303 = $247 & $302; + $304 = ($303|0)==(0); + if ($304) { + $nb$0 = $246; + break; + } + $305 = (0 - ($303))|0; + $306 = $303 & $305; + $307 = (($306) + -1)|0; + $308 = $307 >>> 12; + $309 = $308 & 16; + $310 = $307 >>> $309; + $311 = $310 >>> 5; + $312 = $311 & 8; + $313 = $312 | $309; + $314 = $310 >>> $312; + $315 = $314 >>> 2; + $316 = $315 & 4; + $317 = $313 | $316; + $318 = $314 >>> $316; + $319 = $318 >>> 1; + $320 = $319 & 2; + $321 = $317 | $320; + $322 = $318 >>> $320; + $323 = $322 >>> 1; + $324 = $323 & 1; + $325 = $321 | $324; + $326 = $322 >>> $324; + $327 = (($325) + ($326))|0; + $328 = ((32544 + ($327<<2)|0) + 304|0); + $329 = HEAP32[$328>>2]|0; + $t$2$ph$i = $329; + } else { + $t$2$ph$i = $t$1$i; + } + $330 = ($t$2$ph$i|0)==(0|0); + if ($330) { + $rsize$3$lcssa$i = $rsize$2$i;$v$3$lcssa$i = $v$2$i; + } else { + $rsize$331$i = $rsize$2$i;$t$230$i = $t$2$ph$i;$v$332$i = $v$2$i; + while(1) { + $331 = (($t$230$i) + 4|0); + $332 = HEAP32[$331>>2]|0; + $333 = $332 & -8; + $334 = (($333) - ($246))|0; + $335 = ($334>>>0)<($rsize$331$i>>>0); + $$rsize$3$i = $335 ? $334 : $rsize$331$i; + $t$2$v$3$i = $335 ? $t$230$i : $v$332$i; + $336 = (($t$230$i) + 16|0); + $337 = HEAP32[$336>>2]|0; + $338 = ($337|0)==(0|0); + if (!($338)) { + $rsize$331$i = $$rsize$3$i;$t$230$i = $337;$v$332$i = $t$2$v$3$i; + continue; + } + $339 = (($t$230$i) + 20|0); + $340 = HEAP32[$339>>2]|0; + $341 = ($340|0)==(0|0); + if ($341) { + $rsize$3$lcssa$i = $$rsize$3$i;$v$3$lcssa$i = $t$2$v$3$i; + break; + } else { + $rsize$331$i = $$rsize$3$i;$t$230$i = $340;$v$332$i = $t$2$v$3$i; + } + } + } + $342 = ($v$3$lcssa$i|0)==(0|0); + if ($342) { + $nb$0 = $246; + } else { + $343 = HEAP32[((32544 + 8|0))>>2]|0; + $344 = (($343) - ($246))|0; + $345 = ($rsize$3$lcssa$i>>>0)<($344>>>0); + if ($345) { + $346 = HEAP32[((32544 + 16|0))>>2]|0; + $347 = ($v$3$lcssa$i>>>0)<($346>>>0); + if ($347) { + _abort(); + // unreachable; + } + $348 = (($v$3$lcssa$i) + ($246)|0); + $349 = ($v$3$lcssa$i>>>0)<($348>>>0); + if (!($349)) { + _abort(); + // unreachable; + } + $350 = (($v$3$lcssa$i) + 24|0); + $351 = HEAP32[$350>>2]|0; + $352 = (($v$3$lcssa$i) + 12|0); + $353 = HEAP32[$352>>2]|0; + $354 = ($353|0)==($v$3$lcssa$i|0); + do { + if ($354) { + $364 = (($v$3$lcssa$i) + 20|0); + $365 = HEAP32[$364>>2]|0; + $366 = ($365|0)==(0|0); + if ($366) { + $367 = (($v$3$lcssa$i) + 16|0); + $368 = HEAP32[$367>>2]|0; + $369 = ($368|0)==(0|0); + if ($369) { + $R$1$i20 = 0; + break; + } else { + $R$0$i18 = $368;$RP$0$i17 = $367; + } + } else { + $R$0$i18 = $365;$RP$0$i17 = $364; + } + while(1) { + $370 = (($R$0$i18) + 20|0); + $371 = HEAP32[$370>>2]|0; + $372 = ($371|0)==(0|0); + if (!($372)) { + $R$0$i18 = $371;$RP$0$i17 = $370; + continue; + } + $373 = (($R$0$i18) + 16|0); + $374 = HEAP32[$373>>2]|0; + $375 = ($374|0)==(0|0); + if ($375) { + break; + } else { + $R$0$i18 = $374;$RP$0$i17 = $373; + } + } + $376 = ($RP$0$i17>>>0)<($346>>>0); + if ($376) { + _abort(); + // unreachable; + } else { + HEAP32[$RP$0$i17>>2] = 0; + $R$1$i20 = $R$0$i18; + break; + } + } else { + $355 = (($v$3$lcssa$i) + 8|0); + $356 = HEAP32[$355>>2]|0; + $357 = ($356>>>0)<($346>>>0); + if ($357) { + _abort(); + // unreachable; + } + $358 = (($356) + 12|0); + $359 = HEAP32[$358>>2]|0; + $360 = ($359|0)==($v$3$lcssa$i|0); + if (!($360)) { + _abort(); + // unreachable; + } + $361 = (($353) + 8|0); + $362 = HEAP32[$361>>2]|0; + $363 = ($362|0)==($v$3$lcssa$i|0); + if ($363) { + HEAP32[$358>>2] = $353; + HEAP32[$361>>2] = $356; + $R$1$i20 = $353; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $377 = ($351|0)==(0|0); + do { + if (!($377)) { + $378 = (($v$3$lcssa$i) + 28|0); + $379 = HEAP32[$378>>2]|0; + $380 = ((32544 + ($379<<2)|0) + 304|0); + $381 = HEAP32[$380>>2]|0; + $382 = ($v$3$lcssa$i|0)==($381|0); + if ($382) { + HEAP32[$380>>2] = $R$1$i20; + $cond$i21 = ($R$1$i20|0)==(0|0); + if ($cond$i21) { + $383 = 1 << $379; + $384 = $383 ^ -1; + $385 = HEAP32[((32544 + 4|0))>>2]|0; + $386 = $385 & $384; + HEAP32[((32544 + 4|0))>>2] = $386; + break; + } + } else { + $387 = HEAP32[((32544 + 16|0))>>2]|0; + $388 = ($351>>>0)<($387>>>0); + if ($388) { + _abort(); + // unreachable; + } + $389 = (($351) + 16|0); + $390 = HEAP32[$389>>2]|0; + $391 = ($390|0)==($v$3$lcssa$i|0); + if ($391) { + HEAP32[$389>>2] = $R$1$i20; + } else { + $392 = (($351) + 20|0); + HEAP32[$392>>2] = $R$1$i20; + } + $393 = ($R$1$i20|0)==(0|0); + if ($393) { + break; + } + } + $394 = HEAP32[((32544 + 16|0))>>2]|0; + $395 = ($R$1$i20>>>0)<($394>>>0); + if ($395) { + _abort(); + // unreachable; + } + $396 = (($R$1$i20) + 24|0); + HEAP32[$396>>2] = $351; + $397 = (($v$3$lcssa$i) + 16|0); + $398 = HEAP32[$397>>2]|0; + $399 = ($398|0)==(0|0); + do { + if (!($399)) { + $400 = ($398>>>0)<($394>>>0); + if ($400) { + _abort(); + // unreachable; + } else { + $401 = (($R$1$i20) + 16|0); + HEAP32[$401>>2] = $398; + $402 = (($398) + 24|0); + HEAP32[$402>>2] = $R$1$i20; + break; + } + } + } while(0); + $403 = (($v$3$lcssa$i) + 20|0); + $404 = HEAP32[$403>>2]|0; + $405 = ($404|0)==(0|0); + if (!($405)) { + $406 = HEAP32[((32544 + 16|0))>>2]|0; + $407 = ($404>>>0)<($406>>>0); + if ($407) { + _abort(); + // unreachable; + } else { + $408 = (($R$1$i20) + 20|0); + HEAP32[$408>>2] = $404; + $409 = (($404) + 24|0); + HEAP32[$409>>2] = $R$1$i20; + break; + } + } + } + } while(0); + $410 = ($rsize$3$lcssa$i>>>0)<(16); + L204: do { + if ($410) { + $411 = (($rsize$3$lcssa$i) + ($246))|0; + $412 = $411 | 3; + $413 = (($v$3$lcssa$i) + 4|0); + HEAP32[$413>>2] = $412; + $$sum18$i = (($411) + 4)|0; + $414 = (($v$3$lcssa$i) + ($$sum18$i)|0); + $415 = HEAP32[$414>>2]|0; + $416 = $415 | 1; + HEAP32[$414>>2] = $416; + } else { + $417 = $246 | 3; + $418 = (($v$3$lcssa$i) + 4|0); + HEAP32[$418>>2] = $417; + $419 = $rsize$3$lcssa$i | 1; + $$sum$i2338 = $246 | 4; + $420 = (($v$3$lcssa$i) + ($$sum$i2338)|0); + HEAP32[$420>>2] = $419; + $$sum1$i24 = (($rsize$3$lcssa$i) + ($246))|0; + $421 = (($v$3$lcssa$i) + ($$sum1$i24)|0); + HEAP32[$421>>2] = $rsize$3$lcssa$i; + $422 = $rsize$3$lcssa$i >>> 3; + $423 = ($rsize$3$lcssa$i>>>0)<(256); + if ($423) { + $424 = $422 << 1; + $425 = ((32544 + ($424<<2)|0) + 40|0); + $426 = HEAP32[32544>>2]|0; + $427 = 1 << $422; + $428 = $426 & $427; + $429 = ($428|0)==(0); + do { + if ($429) { + $430 = $426 | $427; + HEAP32[32544>>2] = $430; + $$sum14$pre$i = (($424) + 2)|0; + $$pre$i25 = ((32544 + ($$sum14$pre$i<<2)|0) + 40|0); + $$pre$phi$i26Z2D = $$pre$i25;$F5$0$i = $425; + } else { + $$sum17$i = (($424) + 2)|0; + $431 = ((32544 + ($$sum17$i<<2)|0) + 40|0); + $432 = HEAP32[$431>>2]|0; + $433 = HEAP32[((32544 + 16|0))>>2]|0; + $434 = ($432>>>0)<($433>>>0); + if (!($434)) { + $$pre$phi$i26Z2D = $431;$F5$0$i = $432; + break; + } + _abort(); + // unreachable; + } + } while(0); + HEAP32[$$pre$phi$i26Z2D>>2] = $348; + $435 = (($F5$0$i) + 12|0); + HEAP32[$435>>2] = $348; + $$sum15$i = (($246) + 8)|0; + $436 = (($v$3$lcssa$i) + ($$sum15$i)|0); + HEAP32[$436>>2] = $F5$0$i; + $$sum16$i = (($246) + 12)|0; + $437 = (($v$3$lcssa$i) + ($$sum16$i)|0); + HEAP32[$437>>2] = $425; + break; + } + $438 = $rsize$3$lcssa$i >>> 8; + $439 = ($438|0)==(0); + if ($439) { + $I7$0$i = 0; + } else { + $440 = ($rsize$3$lcssa$i>>>0)>(16777215); + if ($440) { + $I7$0$i = 31; + } else { + $441 = (($438) + 1048320)|0; + $442 = $441 >>> 16; + $443 = $442 & 8; + $444 = $438 << $443; + $445 = (($444) + 520192)|0; + $446 = $445 >>> 16; + $447 = $446 & 4; + $448 = $447 | $443; + $449 = $444 << $447; + $450 = (($449) + 245760)|0; + $451 = $450 >>> 16; + $452 = $451 & 2; + $453 = $448 | $452; + $454 = (14 - ($453))|0; + $455 = $449 << $452; + $456 = $455 >>> 15; + $457 = (($454) + ($456))|0; + $458 = $457 << 1; + $459 = (($457) + 7)|0; + $460 = $rsize$3$lcssa$i >>> $459; + $461 = $460 & 1; + $462 = $461 | $458; + $I7$0$i = $462; + } + } + $463 = ((32544 + ($I7$0$i<<2)|0) + 304|0); + $$sum2$i = (($246) + 28)|0; + $464 = (($v$3$lcssa$i) + ($$sum2$i)|0); + HEAP32[$464>>2] = $I7$0$i; + $$sum3$i27 = (($246) + 16)|0; + $465 = (($v$3$lcssa$i) + ($$sum3$i27)|0); + $$sum4$i28 = (($246) + 20)|0; + $466 = (($v$3$lcssa$i) + ($$sum4$i28)|0); + HEAP32[$466>>2] = 0; + HEAP32[$465>>2] = 0; + $467 = HEAP32[((32544 + 4|0))>>2]|0; + $468 = 1 << $I7$0$i; + $469 = $467 & $468; + $470 = ($469|0)==(0); + if ($470) { + $471 = $467 | $468; + HEAP32[((32544 + 4|0))>>2] = $471; + HEAP32[$463>>2] = $348; + $$sum5$i = (($246) + 24)|0; + $472 = (($v$3$lcssa$i) + ($$sum5$i)|0); + HEAP32[$472>>2] = $463; + $$sum6$i = (($246) + 12)|0; + $473 = (($v$3$lcssa$i) + ($$sum6$i)|0); + HEAP32[$473>>2] = $348; + $$sum7$i = (($246) + 8)|0; + $474 = (($v$3$lcssa$i) + ($$sum7$i)|0); + HEAP32[$474>>2] = $348; + break; + } + $475 = HEAP32[$463>>2]|0; + $476 = ($I7$0$i|0)==(31); + if ($476) { + $484 = 0; + } else { + $477 = $I7$0$i >>> 1; + $478 = (25 - ($477))|0; + $484 = $478; + } + $479 = (($475) + 4|0); + $480 = HEAP32[$479>>2]|0; + $481 = $480 & -8; + $482 = ($481|0)==($rsize$3$lcssa$i|0); + L225: do { + if ($482) { + $T$0$lcssa$i = $475; + } else { + $483 = $rsize$3$lcssa$i << $484; + $K12$027$i = $483;$T$026$i = $475; + while(1) { + $491 = $K12$027$i >>> 31; + $492 = ((($T$026$i) + ($491<<2)|0) + 16|0); + $487 = HEAP32[$492>>2]|0; + $493 = ($487|0)==(0|0); + if ($493) { + break; + } + $485 = $K12$027$i << 1; + $486 = (($487) + 4|0); + $488 = HEAP32[$486>>2]|0; + $489 = $488 & -8; + $490 = ($489|0)==($rsize$3$lcssa$i|0); + if ($490) { + $T$0$lcssa$i = $487; + break L225; + } else { + $K12$027$i = $485;$T$026$i = $487; + } + } + $494 = HEAP32[((32544 + 16|0))>>2]|0; + $495 = ($492>>>0)<($494>>>0); + if ($495) { + _abort(); + // unreachable; + } else { + HEAP32[$492>>2] = $348; + $$sum11$i = (($246) + 24)|0; + $496 = (($v$3$lcssa$i) + ($$sum11$i)|0); + HEAP32[$496>>2] = $T$026$i; + $$sum12$i = (($246) + 12)|0; + $497 = (($v$3$lcssa$i) + ($$sum12$i)|0); + HEAP32[$497>>2] = $348; + $$sum13$i = (($246) + 8)|0; + $498 = (($v$3$lcssa$i) + ($$sum13$i)|0); + HEAP32[$498>>2] = $348; + break L204; + } + } + } while(0); + $499 = (($T$0$lcssa$i) + 8|0); + $500 = HEAP32[$499>>2]|0; + $501 = HEAP32[((32544 + 16|0))>>2]|0; + $502 = ($T$0$lcssa$i>>>0)>=($501>>>0); + $503 = ($500>>>0)>=($501>>>0); + $or$cond24$i = $502 & $503; + if ($or$cond24$i) { + $504 = (($500) + 12|0); + HEAP32[$504>>2] = $348; + HEAP32[$499>>2] = $348; + $$sum8$i = (($246) + 8)|0; + $505 = (($v$3$lcssa$i) + ($$sum8$i)|0); + HEAP32[$505>>2] = $500; + $$sum9$i = (($246) + 12)|0; + $506 = (($v$3$lcssa$i) + ($$sum9$i)|0); + HEAP32[$506>>2] = $T$0$lcssa$i; + $$sum10$i = (($246) + 24)|0; + $507 = (($v$3$lcssa$i) + ($$sum10$i)|0); + HEAP32[$507>>2] = 0; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $508 = (($v$3$lcssa$i) + 8|0); + $mem$0 = $508; + STACKTOP = sp;return ($mem$0|0); + } else { + $nb$0 = $246; + } + } + } + } + } + } while(0); + $509 = HEAP32[((32544 + 8|0))>>2]|0; + $510 = ($509>>>0)<($nb$0>>>0); + if (!($510)) { + $511 = (($509) - ($nb$0))|0; + $512 = HEAP32[((32544 + 20|0))>>2]|0; + $513 = ($511>>>0)>(15); + if ($513) { + $514 = (($512) + ($nb$0)|0); + HEAP32[((32544 + 20|0))>>2] = $514; + HEAP32[((32544 + 8|0))>>2] = $511; + $515 = $511 | 1; + $$sum2 = (($nb$0) + 4)|0; + $516 = (($512) + ($$sum2)|0); + HEAP32[$516>>2] = $515; + $517 = (($512) + ($509)|0); + HEAP32[$517>>2] = $511; + $518 = $nb$0 | 3; + $519 = (($512) + 4|0); + HEAP32[$519>>2] = $518; + } else { + HEAP32[((32544 + 8|0))>>2] = 0; + HEAP32[((32544 + 20|0))>>2] = 0; + $520 = $509 | 3; + $521 = (($512) + 4|0); + HEAP32[$521>>2] = $520; + $$sum1 = (($509) + 4)|0; + $522 = (($512) + ($$sum1)|0); + $523 = HEAP32[$522>>2]|0; + $524 = $523 | 1; + HEAP32[$522>>2] = $524; + } + $525 = (($512) + 8|0); + $mem$0 = $525; + STACKTOP = sp;return ($mem$0|0); + } + $526 = HEAP32[((32544 + 12|0))>>2]|0; + $527 = ($526>>>0)>($nb$0>>>0); + if ($527) { + $528 = (($526) - ($nb$0))|0; + HEAP32[((32544 + 12|0))>>2] = $528; + $529 = HEAP32[((32544 + 24|0))>>2]|0; + $530 = (($529) + ($nb$0)|0); + HEAP32[((32544 + 24|0))>>2] = $530; + $531 = $528 | 1; + $$sum = (($nb$0) + 4)|0; + $532 = (($529) + ($$sum)|0); + HEAP32[$532>>2] = $531; + $533 = $nb$0 | 3; + $534 = (($529) + 4|0); + HEAP32[$534>>2] = $533; + $535 = (($529) + 8|0); + $mem$0 = $535; + STACKTOP = sp;return ($mem$0|0); + } + $536 = HEAP32[33016>>2]|0; + $537 = ($536|0)==(0); + do { + if ($537) { + $538 = (_sysconf(30)|0); + $539 = (($538) + -1)|0; + $540 = $539 & $538; + $541 = ($540|0)==(0); + if ($541) { + HEAP32[((33016 + 8|0))>>2] = $538; + HEAP32[((33016 + 4|0))>>2] = $538; + HEAP32[((33016 + 12|0))>>2] = -1; + HEAP32[((33016 + 16|0))>>2] = -1; + HEAP32[((33016 + 20|0))>>2] = 0; + HEAP32[((32544 + 444|0))>>2] = 0; + $542 = (_time((0|0))|0); + $543 = $542 & -16; + $544 = $543 ^ 1431655768; + HEAP32[33016>>2] = $544; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $545 = (($nb$0) + 48)|0; + $546 = HEAP32[((33016 + 8|0))>>2]|0; + $547 = (($nb$0) + 47)|0; + $548 = (($546) + ($547))|0; + $549 = (0 - ($546))|0; + $550 = $548 & $549; + $551 = ($550>>>0)>($nb$0>>>0); + if (!($551)) { + $mem$0 = 0; + STACKTOP = sp;return ($mem$0|0); + } + $552 = HEAP32[((32544 + 440|0))>>2]|0; + $553 = ($552|0)==(0); + if (!($553)) { + $554 = HEAP32[((32544 + 432|0))>>2]|0; + $555 = (($554) + ($550))|0; + $556 = ($555>>>0)<=($554>>>0); + $557 = ($555>>>0)>($552>>>0); + $or$cond1$i = $556 | $557; + if ($or$cond1$i) { + $mem$0 = 0; + STACKTOP = sp;return ($mem$0|0); + } + } + $558 = HEAP32[((32544 + 444|0))>>2]|0; + $559 = $558 & 4; + $560 = ($559|0)==(0); + L266: do { + if ($560) { + $561 = HEAP32[((32544 + 24|0))>>2]|0; + $562 = ($561|0)==(0|0); + L268: do { + if ($562) { + label = 181; + } else { + $sp$0$i$i = ((32544 + 448|0)); + while(1) { + $563 = HEAP32[$sp$0$i$i>>2]|0; + $564 = ($563>>>0)>($561>>>0); + if (!($564)) { + $565 = (($sp$0$i$i) + 4|0); + $566 = HEAP32[$565>>2]|0; + $567 = (($563) + ($566)|0); + $568 = ($567>>>0)>($561>>>0); + if ($568) { + break; + } + } + $569 = (($sp$0$i$i) + 8|0); + $570 = HEAP32[$569>>2]|0; + $571 = ($570|0)==(0|0); + if ($571) { + label = 181; + break L268; + } else { + $sp$0$i$i = $570; + } + } + $572 = ($sp$0$i$i|0)==(0|0); + if ($572) { + label = 181; + } else { + $595 = HEAP32[((32544 + 12|0))>>2]|0; + $596 = (($548) - ($595))|0; + $597 = $596 & $549; + $598 = ($597>>>0)<(2147483647); + if ($598) { + $599 = (_sbrk(($597|0))|0); + $600 = HEAP32[$sp$0$i$i>>2]|0; + $601 = HEAP32[$565>>2]|0; + $602 = (($600) + ($601)|0); + $603 = ($599|0)==($602|0); + if ($603) { + $br$0$i = $599;$ssize$1$i = $597; + label = 190; + } else { + $br$030$i = $599;$ssize$129$i = $597; + label = 191; + } + } else { + $tsize$03141$i = 0; + } + } + } + } while(0); + do { + if ((label|0) == 181) { + $573 = (_sbrk(0)|0); + $574 = ($573|0)==((-1)|0); + if ($574) { + $tsize$03141$i = 0; + } else { + $575 = $573; + $576 = HEAP32[((33016 + 4|0))>>2]|0; + $577 = (($576) + -1)|0; + $578 = $577 & $575; + $579 = ($578|0)==(0); + if ($579) { + $ssize$0$i = $550; + } else { + $580 = (($577) + ($575))|0; + $581 = (0 - ($576))|0; + $582 = $580 & $581; + $583 = (($550) - ($575))|0; + $584 = (($583) + ($582))|0; + $ssize$0$i = $584; + } + $585 = HEAP32[((32544 + 432|0))>>2]|0; + $586 = (($585) + ($ssize$0$i))|0; + $587 = ($ssize$0$i>>>0)>($nb$0>>>0); + $588 = ($ssize$0$i>>>0)<(2147483647); + $or$cond$i29 = $587 & $588; + if ($or$cond$i29) { + $589 = HEAP32[((32544 + 440|0))>>2]|0; + $590 = ($589|0)==(0); + if (!($590)) { + $591 = ($586>>>0)<=($585>>>0); + $592 = ($586>>>0)>($589>>>0); + $or$cond2$i = $591 | $592; + if ($or$cond2$i) { + $tsize$03141$i = 0; + break; + } + } + $593 = (_sbrk(($ssize$0$i|0))|0); + $594 = ($593|0)==($573|0); + if ($594) { + $br$0$i = $573;$ssize$1$i = $ssize$0$i; + label = 190; + } else { + $br$030$i = $593;$ssize$129$i = $ssize$0$i; + label = 191; + } + } else { + $tsize$03141$i = 0; + } + } + } + } while(0); + L288: do { + if ((label|0) == 190) { + $604 = ($br$0$i|0)==((-1)|0); + if ($604) { + $tsize$03141$i = $ssize$1$i; + } else { + $tbase$245$i = $br$0$i;$tsize$244$i = $ssize$1$i; + label = 201; + break L266; + } + } + else if ((label|0) == 191) { + $605 = (0 - ($ssize$129$i))|0; + $606 = ($br$030$i|0)!=((-1)|0); + $607 = ($ssize$129$i>>>0)<(2147483647); + $or$cond5$i = $606 & $607; + $608 = ($545>>>0)>($ssize$129$i>>>0); + $or$cond4$i = $or$cond5$i & $608; + do { + if ($or$cond4$i) { + $609 = HEAP32[((33016 + 8|0))>>2]|0; + $610 = (($547) - ($ssize$129$i))|0; + $611 = (($610) + ($609))|0; + $612 = (0 - ($609))|0; + $613 = $611 & $612; + $614 = ($613>>>0)<(2147483647); + if ($614) { + $615 = (_sbrk(($613|0))|0); + $616 = ($615|0)==((-1)|0); + if ($616) { + (_sbrk(($605|0))|0); + $tsize$03141$i = 0; + break L288; + } else { + $617 = (($613) + ($ssize$129$i))|0; + $ssize$2$i = $617; + break; + } + } else { + $ssize$2$i = $ssize$129$i; + } + } else { + $ssize$2$i = $ssize$129$i; + } + } while(0); + $618 = ($br$030$i|0)==((-1)|0); + if ($618) { + $tsize$03141$i = 0; + } else { + $tbase$245$i = $br$030$i;$tsize$244$i = $ssize$2$i; + label = 201; + break L266; + } + } + } while(0); + $619 = HEAP32[((32544 + 444|0))>>2]|0; + $620 = $619 | 4; + HEAP32[((32544 + 444|0))>>2] = $620; + $tsize$1$i = $tsize$03141$i; + label = 198; + } else { + $tsize$1$i = 0; + label = 198; + } + } while(0); + if ((label|0) == 198) { + $621 = ($550>>>0)<(2147483647); + if ($621) { + $622 = (_sbrk(($550|0))|0); + $623 = (_sbrk(0)|0); + $624 = ($622|0)!=((-1)|0); + $625 = ($623|0)!=((-1)|0); + $or$cond3$i = $624 & $625; + $626 = ($622>>>0)<($623>>>0); + $or$cond6$i = $or$cond3$i & $626; + if ($or$cond6$i) { + $627 = $623; + $628 = $622; + $629 = (($627) - ($628))|0; + $630 = (($nb$0) + 40)|0; + $631 = ($629>>>0)>($630>>>0); + $$tsize$1$i = $631 ? $629 : $tsize$1$i; + if ($631) { + $tbase$245$i = $622;$tsize$244$i = $$tsize$1$i; + label = 201; + } + } + } + } + if ((label|0) == 201) { + $632 = HEAP32[((32544 + 432|0))>>2]|0; + $633 = (($632) + ($tsize$244$i))|0; + HEAP32[((32544 + 432|0))>>2] = $633; + $634 = HEAP32[((32544 + 436|0))>>2]|0; + $635 = ($633>>>0)>($634>>>0); + if ($635) { + HEAP32[((32544 + 436|0))>>2] = $633; + } + $636 = HEAP32[((32544 + 24|0))>>2]|0; + $637 = ($636|0)==(0|0); + L308: do { + if ($637) { + $638 = HEAP32[((32544 + 16|0))>>2]|0; + $639 = ($638|0)==(0|0); + $640 = ($tbase$245$i>>>0)<($638>>>0); + $or$cond8$i = $639 | $640; + if ($or$cond8$i) { + HEAP32[((32544 + 16|0))>>2] = $tbase$245$i; + } + HEAP32[((32544 + 448|0))>>2] = $tbase$245$i; + HEAP32[((32544 + 452|0))>>2] = $tsize$244$i; + HEAP32[((32544 + 460|0))>>2] = 0; + $641 = HEAP32[33016>>2]|0; + HEAP32[((32544 + 36|0))>>2] = $641; + HEAP32[((32544 + 32|0))>>2] = -1; + $i$02$i$i = 0; + while(1) { + $642 = $i$02$i$i << 1; + $643 = ((32544 + ($642<<2)|0) + 40|0); + $$sum$i$i = (($642) + 3)|0; + $644 = ((32544 + ($$sum$i$i<<2)|0) + 40|0); + HEAP32[$644>>2] = $643; + $$sum1$i$i = (($642) + 2)|0; + $645 = ((32544 + ($$sum1$i$i<<2)|0) + 40|0); + HEAP32[$645>>2] = $643; + $646 = (($i$02$i$i) + 1)|0; + $exitcond$i$i = ($646|0)==(32); + if ($exitcond$i$i) { + break; + } else { + $i$02$i$i = $646; + } + } + $647 = (($tsize$244$i) + -40)|0; + $648 = (($tbase$245$i) + 8|0); + $649 = $648; + $650 = $649 & 7; + $651 = ($650|0)==(0); + if ($651) { + $655 = 0; + } else { + $652 = (0 - ($649))|0; + $653 = $652 & 7; + $655 = $653; + } + $654 = (($tbase$245$i) + ($655)|0); + $656 = (($647) - ($655))|0; + HEAP32[((32544 + 24|0))>>2] = $654; + HEAP32[((32544 + 12|0))>>2] = $656; + $657 = $656 | 1; + $$sum$i12$i = (($655) + 4)|0; + $658 = (($tbase$245$i) + ($$sum$i12$i)|0); + HEAP32[$658>>2] = $657; + $$sum2$i$i = (($tsize$244$i) + -36)|0; + $659 = (($tbase$245$i) + ($$sum2$i$i)|0); + HEAP32[$659>>2] = 40; + $660 = HEAP32[((33016 + 16|0))>>2]|0; + HEAP32[((32544 + 28|0))>>2] = $660; + } else { + $sp$073$i = ((32544 + 448|0)); + while(1) { + $661 = HEAP32[$sp$073$i>>2]|0; + $662 = (($sp$073$i) + 4|0); + $663 = HEAP32[$662>>2]|0; + $664 = (($661) + ($663)|0); + $665 = ($tbase$245$i|0)==($664|0); + if ($665) { + label = 213; + break; + } + $666 = (($sp$073$i) + 8|0); + $667 = HEAP32[$666>>2]|0; + $668 = ($667|0)==(0|0); + if ($668) { + break; + } else { + $sp$073$i = $667; + } + } + if ((label|0) == 213) { + $669 = (($sp$073$i) + 12|0); + $670 = HEAP32[$669>>2]|0; + $671 = $670 & 8; + $672 = ($671|0)==(0); + if ($672) { + $673 = ($636>>>0)>=($661>>>0); + $674 = ($636>>>0)<($tbase$245$i>>>0); + $or$cond47$i = $673 & $674; + if ($or$cond47$i) { + $675 = (($663) + ($tsize$244$i))|0; + HEAP32[$662>>2] = $675; + $676 = HEAP32[((32544 + 12|0))>>2]|0; + $677 = (($676) + ($tsize$244$i))|0; + $678 = (($636) + 8|0); + $679 = $678; + $680 = $679 & 7; + $681 = ($680|0)==(0); + if ($681) { + $685 = 0; + } else { + $682 = (0 - ($679))|0; + $683 = $682 & 7; + $685 = $683; + } + $684 = (($636) + ($685)|0); + $686 = (($677) - ($685))|0; + HEAP32[((32544 + 24|0))>>2] = $684; + HEAP32[((32544 + 12|0))>>2] = $686; + $687 = $686 | 1; + $$sum$i16$i = (($685) + 4)|0; + $688 = (($636) + ($$sum$i16$i)|0); + HEAP32[$688>>2] = $687; + $$sum2$i17$i = (($677) + 4)|0; + $689 = (($636) + ($$sum2$i17$i)|0); + HEAP32[$689>>2] = 40; + $690 = HEAP32[((33016 + 16|0))>>2]|0; + HEAP32[((32544 + 28|0))>>2] = $690; + break; + } + } + } + $691 = HEAP32[((32544 + 16|0))>>2]|0; + $692 = ($tbase$245$i>>>0)<($691>>>0); + if ($692) { + HEAP32[((32544 + 16|0))>>2] = $tbase$245$i; + $756 = $tbase$245$i; + } else { + $756 = $691; + } + $693 = (($tbase$245$i) + ($tsize$244$i)|0); + $sp$166$i = ((32544 + 448|0)); + while(1) { + $694 = HEAP32[$sp$166$i>>2]|0; + $695 = ($694|0)==($693|0); + if ($695) { + label = 223; + break; + } + $696 = (($sp$166$i) + 8|0); + $697 = HEAP32[$696>>2]|0; + $698 = ($697|0)==(0|0); + if ($698) { + break; + } else { + $sp$166$i = $697; + } + } + if ((label|0) == 223) { + $699 = (($sp$166$i) + 12|0); + $700 = HEAP32[$699>>2]|0; + $701 = $700 & 8; + $702 = ($701|0)==(0); + if ($702) { + HEAP32[$sp$166$i>>2] = $tbase$245$i; + $703 = (($sp$166$i) + 4|0); + $704 = HEAP32[$703>>2]|0; + $705 = (($704) + ($tsize$244$i))|0; + HEAP32[$703>>2] = $705; + $706 = (($tbase$245$i) + 8|0); + $707 = $706; + $708 = $707 & 7; + $709 = ($708|0)==(0); + if ($709) { + $713 = 0; + } else { + $710 = (0 - ($707))|0; + $711 = $710 & 7; + $713 = $711; + } + $712 = (($tbase$245$i) + ($713)|0); + $$sum102$i = (($tsize$244$i) + 8)|0; + $714 = (($tbase$245$i) + ($$sum102$i)|0); + $715 = $714; + $716 = $715 & 7; + $717 = ($716|0)==(0); + if ($717) { + $720 = 0; + } else { + $718 = (0 - ($715))|0; + $719 = $718 & 7; + $720 = $719; + } + $$sum103$i = (($720) + ($tsize$244$i))|0; + $721 = (($tbase$245$i) + ($$sum103$i)|0); + $722 = $721; + $723 = $712; + $724 = (($722) - ($723))|0; + $$sum$i19$i = (($713) + ($nb$0))|0; + $725 = (($tbase$245$i) + ($$sum$i19$i)|0); + $726 = (($724) - ($nb$0))|0; + $727 = $nb$0 | 3; + $$sum1$i20$i = (($713) + 4)|0; + $728 = (($tbase$245$i) + ($$sum1$i20$i)|0); + HEAP32[$728>>2] = $727; + $729 = ($721|0)==($636|0); + L345: do { + if ($729) { + $730 = HEAP32[((32544 + 12|0))>>2]|0; + $731 = (($730) + ($726))|0; + HEAP32[((32544 + 12|0))>>2] = $731; + HEAP32[((32544 + 24|0))>>2] = $725; + $732 = $731 | 1; + $$sum42$i$i = (($$sum$i19$i) + 4)|0; + $733 = (($tbase$245$i) + ($$sum42$i$i)|0); + HEAP32[$733>>2] = $732; + } else { + $734 = HEAP32[((32544 + 20|0))>>2]|0; + $735 = ($721|0)==($734|0); + if ($735) { + $736 = HEAP32[((32544 + 8|0))>>2]|0; + $737 = (($736) + ($726))|0; + HEAP32[((32544 + 8|0))>>2] = $737; + HEAP32[((32544 + 20|0))>>2] = $725; + $738 = $737 | 1; + $$sum40$i$i = (($$sum$i19$i) + 4)|0; + $739 = (($tbase$245$i) + ($$sum40$i$i)|0); + HEAP32[$739>>2] = $738; + $$sum41$i$i = (($737) + ($$sum$i19$i))|0; + $740 = (($tbase$245$i) + ($$sum41$i$i)|0); + HEAP32[$740>>2] = $737; + break; + } + $$sum2$i21$i = (($tsize$244$i) + 4)|0; + $$sum104$i = (($$sum2$i21$i) + ($720))|0; + $741 = (($tbase$245$i) + ($$sum104$i)|0); + $742 = HEAP32[$741>>2]|0; + $743 = $742 & 3; + $744 = ($743|0)==(1); + if ($744) { + $745 = $742 & -8; + $746 = $742 >>> 3; + $747 = ($742>>>0)<(256); + L353: do { + if ($747) { + $$sum3738$i$i = $720 | 8; + $$sum114$i = (($$sum3738$i$i) + ($tsize$244$i))|0; + $748 = (($tbase$245$i) + ($$sum114$i)|0); + $749 = HEAP32[$748>>2]|0; + $$sum39$i$i = (($tsize$244$i) + 12)|0; + $$sum115$i = (($$sum39$i$i) + ($720))|0; + $750 = (($tbase$245$i) + ($$sum115$i)|0); + $751 = HEAP32[$750>>2]|0; + $752 = $746 << 1; + $753 = ((32544 + ($752<<2)|0) + 40|0); + $754 = ($749|0)==($753|0); + do { + if (!($754)) { + $755 = ($749>>>0)<($756>>>0); + if ($755) { + _abort(); + // unreachable; + } + $757 = (($749) + 12|0); + $758 = HEAP32[$757>>2]|0; + $759 = ($758|0)==($721|0); + if ($759) { + break; + } + _abort(); + // unreachable; + } + } while(0); + $760 = ($751|0)==($749|0); + if ($760) { + $761 = 1 << $746; + $762 = $761 ^ -1; + $763 = HEAP32[32544>>2]|0; + $764 = $763 & $762; + HEAP32[32544>>2] = $764; + break; + } + $765 = ($751|0)==($753|0); + do { + if ($765) { + $$pre58$i$i = (($751) + 8|0); + $$pre$phi59$i$iZ2D = $$pre58$i$i; + } else { + $766 = ($751>>>0)<($756>>>0); + if ($766) { + _abort(); + // unreachable; + } + $767 = (($751) + 8|0); + $768 = HEAP32[$767>>2]|0; + $769 = ($768|0)==($721|0); + if ($769) { + $$pre$phi59$i$iZ2D = $767; + break; + } + _abort(); + // unreachable; + } + } while(0); + $770 = (($749) + 12|0); + HEAP32[$770>>2] = $751; + HEAP32[$$pre$phi59$i$iZ2D>>2] = $749; + } else { + $$sum34$i$i = $720 | 24; + $$sum105$i = (($$sum34$i$i) + ($tsize$244$i))|0; + $771 = (($tbase$245$i) + ($$sum105$i)|0); + $772 = HEAP32[$771>>2]|0; + $$sum5$i$i = (($tsize$244$i) + 12)|0; + $$sum106$i = (($$sum5$i$i) + ($720))|0; + $773 = (($tbase$245$i) + ($$sum106$i)|0); + $774 = HEAP32[$773>>2]|0; + $775 = ($774|0)==($721|0); + do { + if ($775) { + $$sum67$i$i = $720 | 16; + $$sum112$i = (($$sum2$i21$i) + ($$sum67$i$i))|0; + $785 = (($tbase$245$i) + ($$sum112$i)|0); + $786 = HEAP32[$785>>2]|0; + $787 = ($786|0)==(0|0); + if ($787) { + $$sum113$i = (($$sum67$i$i) + ($tsize$244$i))|0; + $788 = (($tbase$245$i) + ($$sum113$i)|0); + $789 = HEAP32[$788>>2]|0; + $790 = ($789|0)==(0|0); + if ($790) { + $R$1$i$i = 0; + break; + } else { + $R$0$i$i = $789;$RP$0$i$i = $788; + } + } else { + $R$0$i$i = $786;$RP$0$i$i = $785; + } + while(1) { + $791 = (($R$0$i$i) + 20|0); + $792 = HEAP32[$791>>2]|0; + $793 = ($792|0)==(0|0); + if (!($793)) { + $R$0$i$i = $792;$RP$0$i$i = $791; + continue; + } + $794 = (($R$0$i$i) + 16|0); + $795 = HEAP32[$794>>2]|0; + $796 = ($795|0)==(0|0); + if ($796) { + break; + } else { + $R$0$i$i = $795;$RP$0$i$i = $794; + } + } + $797 = ($RP$0$i$i>>>0)<($756>>>0); + if ($797) { + _abort(); + // unreachable; + } else { + HEAP32[$RP$0$i$i>>2] = 0; + $R$1$i$i = $R$0$i$i; + break; + } + } else { + $$sum3536$i$i = $720 | 8; + $$sum107$i = (($$sum3536$i$i) + ($tsize$244$i))|0; + $776 = (($tbase$245$i) + ($$sum107$i)|0); + $777 = HEAP32[$776>>2]|0; + $778 = ($777>>>0)<($756>>>0); + if ($778) { + _abort(); + // unreachable; + } + $779 = (($777) + 12|0); + $780 = HEAP32[$779>>2]|0; + $781 = ($780|0)==($721|0); + if (!($781)) { + _abort(); + // unreachable; + } + $782 = (($774) + 8|0); + $783 = HEAP32[$782>>2]|0; + $784 = ($783|0)==($721|0); + if ($784) { + HEAP32[$779>>2] = $774; + HEAP32[$782>>2] = $777; + $R$1$i$i = $774; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $798 = ($772|0)==(0|0); + if ($798) { + break; + } + $$sum30$i$i = (($tsize$244$i) + 28)|0; + $$sum108$i = (($$sum30$i$i) + ($720))|0; + $799 = (($tbase$245$i) + ($$sum108$i)|0); + $800 = HEAP32[$799>>2]|0; + $801 = ((32544 + ($800<<2)|0) + 304|0); + $802 = HEAP32[$801>>2]|0; + $803 = ($721|0)==($802|0); + do { + if ($803) { + HEAP32[$801>>2] = $R$1$i$i; + $cond$i$i = ($R$1$i$i|0)==(0|0); + if (!($cond$i$i)) { + break; + } + $804 = 1 << $800; + $805 = $804 ^ -1; + $806 = HEAP32[((32544 + 4|0))>>2]|0; + $807 = $806 & $805; + HEAP32[((32544 + 4|0))>>2] = $807; + break L353; + } else { + $808 = HEAP32[((32544 + 16|0))>>2]|0; + $809 = ($772>>>0)<($808>>>0); + if ($809) { + _abort(); + // unreachable; + } + $810 = (($772) + 16|0); + $811 = HEAP32[$810>>2]|0; + $812 = ($811|0)==($721|0); + if ($812) { + HEAP32[$810>>2] = $R$1$i$i; + } else { + $813 = (($772) + 20|0); + HEAP32[$813>>2] = $R$1$i$i; + } + $814 = ($R$1$i$i|0)==(0|0); + if ($814) { + break L353; + } + } + } while(0); + $815 = HEAP32[((32544 + 16|0))>>2]|0; + $816 = ($R$1$i$i>>>0)<($815>>>0); + if ($816) { + _abort(); + // unreachable; + } + $817 = (($R$1$i$i) + 24|0); + HEAP32[$817>>2] = $772; + $$sum3132$i$i = $720 | 16; + $$sum109$i = (($$sum3132$i$i) + ($tsize$244$i))|0; + $818 = (($tbase$245$i) + ($$sum109$i)|0); + $819 = HEAP32[$818>>2]|0; + $820 = ($819|0)==(0|0); + do { + if (!($820)) { + $821 = ($819>>>0)<($815>>>0); + if ($821) { + _abort(); + // unreachable; + } else { + $822 = (($R$1$i$i) + 16|0); + HEAP32[$822>>2] = $819; + $823 = (($819) + 24|0); + HEAP32[$823>>2] = $R$1$i$i; + break; + } + } + } while(0); + $$sum110$i = (($$sum2$i21$i) + ($$sum3132$i$i))|0; + $824 = (($tbase$245$i) + ($$sum110$i)|0); + $825 = HEAP32[$824>>2]|0; + $826 = ($825|0)==(0|0); + if ($826) { + break; + } + $827 = HEAP32[((32544 + 16|0))>>2]|0; + $828 = ($825>>>0)<($827>>>0); + if ($828) { + _abort(); + // unreachable; + } else { + $829 = (($R$1$i$i) + 20|0); + HEAP32[$829>>2] = $825; + $830 = (($825) + 24|0); + HEAP32[$830>>2] = $R$1$i$i; + break; + } + } + } while(0); + $$sum9$i$i = $745 | $720; + $$sum111$i = (($$sum9$i$i) + ($tsize$244$i))|0; + $831 = (($tbase$245$i) + ($$sum111$i)|0); + $832 = (($745) + ($726))|0; + $oldfirst$0$i$i = $831;$qsize$0$i$i = $832; + } else { + $oldfirst$0$i$i = $721;$qsize$0$i$i = $726; + } + $833 = (($oldfirst$0$i$i) + 4|0); + $834 = HEAP32[$833>>2]|0; + $835 = $834 & -2; + HEAP32[$833>>2] = $835; + $836 = $qsize$0$i$i | 1; + $$sum10$i$i = (($$sum$i19$i) + 4)|0; + $837 = (($tbase$245$i) + ($$sum10$i$i)|0); + HEAP32[$837>>2] = $836; + $$sum11$i22$i = (($qsize$0$i$i) + ($$sum$i19$i))|0; + $838 = (($tbase$245$i) + ($$sum11$i22$i)|0); + HEAP32[$838>>2] = $qsize$0$i$i; + $839 = $qsize$0$i$i >>> 3; + $840 = ($qsize$0$i$i>>>0)<(256); + if ($840) { + $841 = $839 << 1; + $842 = ((32544 + ($841<<2)|0) + 40|0); + $843 = HEAP32[32544>>2]|0; + $844 = 1 << $839; + $845 = $843 & $844; + $846 = ($845|0)==(0); + do { + if ($846) { + $847 = $843 | $844; + HEAP32[32544>>2] = $847; + $$sum26$pre$i$i = (($841) + 2)|0; + $$pre$i23$i = ((32544 + ($$sum26$pre$i$i<<2)|0) + 40|0); + $$pre$phi$i24$iZ2D = $$pre$i23$i;$F4$0$i$i = $842; + } else { + $$sum29$i$i = (($841) + 2)|0; + $848 = ((32544 + ($$sum29$i$i<<2)|0) + 40|0); + $849 = HEAP32[$848>>2]|0; + $850 = HEAP32[((32544 + 16|0))>>2]|0; + $851 = ($849>>>0)<($850>>>0); + if (!($851)) { + $$pre$phi$i24$iZ2D = $848;$F4$0$i$i = $849; + break; + } + _abort(); + // unreachable; + } + } while(0); + HEAP32[$$pre$phi$i24$iZ2D>>2] = $725; + $852 = (($F4$0$i$i) + 12|0); + HEAP32[$852>>2] = $725; + $$sum27$i$i = (($$sum$i19$i) + 8)|0; + $853 = (($tbase$245$i) + ($$sum27$i$i)|0); + HEAP32[$853>>2] = $F4$0$i$i; + $$sum28$i$i = (($$sum$i19$i) + 12)|0; + $854 = (($tbase$245$i) + ($$sum28$i$i)|0); + HEAP32[$854>>2] = $842; + break; + } + $855 = $qsize$0$i$i >>> 8; + $856 = ($855|0)==(0); + do { + if ($856) { + $I7$0$i$i = 0; + } else { + $857 = ($qsize$0$i$i>>>0)>(16777215); + if ($857) { + $I7$0$i$i = 31; + break; + } + $858 = (($855) + 1048320)|0; + $859 = $858 >>> 16; + $860 = $859 & 8; + $861 = $855 << $860; + $862 = (($861) + 520192)|0; + $863 = $862 >>> 16; + $864 = $863 & 4; + $865 = $864 | $860; + $866 = $861 << $864; + $867 = (($866) + 245760)|0; + $868 = $867 >>> 16; + $869 = $868 & 2; + $870 = $865 | $869; + $871 = (14 - ($870))|0; + $872 = $866 << $869; + $873 = $872 >>> 15; + $874 = (($871) + ($873))|0; + $875 = $874 << 1; + $876 = (($874) + 7)|0; + $877 = $qsize$0$i$i >>> $876; + $878 = $877 & 1; + $879 = $878 | $875; + $I7$0$i$i = $879; + } + } while(0); + $880 = ((32544 + ($I7$0$i$i<<2)|0) + 304|0); + $$sum12$i$i = (($$sum$i19$i) + 28)|0; + $881 = (($tbase$245$i) + ($$sum12$i$i)|0); + HEAP32[$881>>2] = $I7$0$i$i; + $$sum13$i$i = (($$sum$i19$i) + 16)|0; + $882 = (($tbase$245$i) + ($$sum13$i$i)|0); + $$sum14$i$i = (($$sum$i19$i) + 20)|0; + $883 = (($tbase$245$i) + ($$sum14$i$i)|0); + HEAP32[$883>>2] = 0; + HEAP32[$882>>2] = 0; + $884 = HEAP32[((32544 + 4|0))>>2]|0; + $885 = 1 << $I7$0$i$i; + $886 = $884 & $885; + $887 = ($886|0)==(0); + if ($887) { + $888 = $884 | $885; + HEAP32[((32544 + 4|0))>>2] = $888; + HEAP32[$880>>2] = $725; + $$sum15$i$i = (($$sum$i19$i) + 24)|0; + $889 = (($tbase$245$i) + ($$sum15$i$i)|0); + HEAP32[$889>>2] = $880; + $$sum16$i$i = (($$sum$i19$i) + 12)|0; + $890 = (($tbase$245$i) + ($$sum16$i$i)|0); + HEAP32[$890>>2] = $725; + $$sum17$i$i = (($$sum$i19$i) + 8)|0; + $891 = (($tbase$245$i) + ($$sum17$i$i)|0); + HEAP32[$891>>2] = $725; + break; + } + $892 = HEAP32[$880>>2]|0; + $893 = ($I7$0$i$i|0)==(31); + if ($893) { + $901 = 0; + } else { + $894 = $I7$0$i$i >>> 1; + $895 = (25 - ($894))|0; + $901 = $895; + } + $896 = (($892) + 4|0); + $897 = HEAP32[$896>>2]|0; + $898 = $897 & -8; + $899 = ($898|0)==($qsize$0$i$i|0); + L442: do { + if ($899) { + $T$0$lcssa$i26$i = $892; + } else { + $900 = $qsize$0$i$i << $901; + $K8$053$i$i = $900;$T$052$i$i = $892; + while(1) { + $908 = $K8$053$i$i >>> 31; + $909 = ((($T$052$i$i) + ($908<<2)|0) + 16|0); + $904 = HEAP32[$909>>2]|0; + $910 = ($904|0)==(0|0); + if ($910) { + break; + } + $902 = $K8$053$i$i << 1; + $903 = (($904) + 4|0); + $905 = HEAP32[$903>>2]|0; + $906 = $905 & -8; + $907 = ($906|0)==($qsize$0$i$i|0); + if ($907) { + $T$0$lcssa$i26$i = $904; + break L442; + } else { + $K8$053$i$i = $902;$T$052$i$i = $904; + } + } + $911 = HEAP32[((32544 + 16|0))>>2]|0; + $912 = ($909>>>0)<($911>>>0); + if ($912) { + _abort(); + // unreachable; + } else { + HEAP32[$909>>2] = $725; + $$sum23$i$i = (($$sum$i19$i) + 24)|0; + $913 = (($tbase$245$i) + ($$sum23$i$i)|0); + HEAP32[$913>>2] = $T$052$i$i; + $$sum24$i$i = (($$sum$i19$i) + 12)|0; + $914 = (($tbase$245$i) + ($$sum24$i$i)|0); + HEAP32[$914>>2] = $725; + $$sum25$i$i = (($$sum$i19$i) + 8)|0; + $915 = (($tbase$245$i) + ($$sum25$i$i)|0); + HEAP32[$915>>2] = $725; + break L345; + } + } + } while(0); + $916 = (($T$0$lcssa$i26$i) + 8|0); + $917 = HEAP32[$916>>2]|0; + $918 = HEAP32[((32544 + 16|0))>>2]|0; + $919 = ($T$0$lcssa$i26$i>>>0)>=($918>>>0); + $920 = ($917>>>0)>=($918>>>0); + $or$cond$i27$i = $919 & $920; + if ($or$cond$i27$i) { + $921 = (($917) + 12|0); + HEAP32[$921>>2] = $725; + HEAP32[$916>>2] = $725; + $$sum20$i$i = (($$sum$i19$i) + 8)|0; + $922 = (($tbase$245$i) + ($$sum20$i$i)|0); + HEAP32[$922>>2] = $917; + $$sum21$i$i = (($$sum$i19$i) + 12)|0; + $923 = (($tbase$245$i) + ($$sum21$i$i)|0); + HEAP32[$923>>2] = $T$0$lcssa$i26$i; + $$sum22$i$i = (($$sum$i19$i) + 24)|0; + $924 = (($tbase$245$i) + ($$sum22$i$i)|0); + HEAP32[$924>>2] = 0; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $$sum1819$i$i = $713 | 8; + $925 = (($tbase$245$i) + ($$sum1819$i$i)|0); + $mem$0 = $925; + STACKTOP = sp;return ($mem$0|0); + } + } + $sp$0$i$i$i = ((32544 + 448|0)); + while(1) { + $926 = HEAP32[$sp$0$i$i$i>>2]|0; + $927 = ($926>>>0)>($636>>>0); + if (!($927)) { + $928 = (($sp$0$i$i$i) + 4|0); + $929 = HEAP32[$928>>2]|0; + $930 = (($926) + ($929)|0); + $931 = ($930>>>0)>($636>>>0); + if ($931) { + break; + } + } + $932 = (($sp$0$i$i$i) + 8|0); + $933 = HEAP32[$932>>2]|0; + $sp$0$i$i$i = $933; + } + $$sum$i13$i = (($929) + -47)|0; + $$sum1$i14$i = (($929) + -39)|0; + $934 = (($926) + ($$sum1$i14$i)|0); + $935 = $934; + $936 = $935 & 7; + $937 = ($936|0)==(0); + if ($937) { + $940 = 0; + } else { + $938 = (0 - ($935))|0; + $939 = $938 & 7; + $940 = $939; + } + $$sum2$i15$i = (($$sum$i13$i) + ($940))|0; + $941 = (($926) + ($$sum2$i15$i)|0); + $942 = (($636) + 16|0); + $943 = ($941>>>0)<($942>>>0); + $944 = $943 ? $636 : $941; + $945 = (($944) + 8|0); + $946 = (($tsize$244$i) + -40)|0; + $947 = (($tbase$245$i) + 8|0); + $948 = $947; + $949 = $948 & 7; + $950 = ($949|0)==(0); + if ($950) { + $954 = 0; + } else { + $951 = (0 - ($948))|0; + $952 = $951 & 7; + $954 = $952; + } + $953 = (($tbase$245$i) + ($954)|0); + $955 = (($946) - ($954))|0; + HEAP32[((32544 + 24|0))>>2] = $953; + HEAP32[((32544 + 12|0))>>2] = $955; + $956 = $955 | 1; + $$sum$i$i$i = (($954) + 4)|0; + $957 = (($tbase$245$i) + ($$sum$i$i$i)|0); + HEAP32[$957>>2] = $956; + $$sum2$i$i$i = (($tsize$244$i) + -36)|0; + $958 = (($tbase$245$i) + ($$sum2$i$i$i)|0); + HEAP32[$958>>2] = 40; + $959 = HEAP32[((33016 + 16|0))>>2]|0; + HEAP32[((32544 + 28|0))>>2] = $959; + $960 = (($944) + 4|0); + HEAP32[$960>>2] = 27; + ;HEAP32[$945+0>>2]=HEAP32[((32544 + 448|0))+0>>2]|0;HEAP32[$945+4>>2]=HEAP32[((32544 + 448|0))+4>>2]|0;HEAP32[$945+8>>2]=HEAP32[((32544 + 448|0))+8>>2]|0;HEAP32[$945+12>>2]=HEAP32[((32544 + 448|0))+12>>2]|0; + HEAP32[((32544 + 448|0))>>2] = $tbase$245$i; + HEAP32[((32544 + 452|0))>>2] = $tsize$244$i; + HEAP32[((32544 + 460|0))>>2] = 0; + HEAP32[((32544 + 456|0))>>2] = $945; + $961 = (($944) + 28|0); + HEAP32[$961>>2] = 7; + $962 = (($944) + 32|0); + $963 = ($962>>>0)<($930>>>0); + if ($963) { + $965 = $961; + while(1) { + $964 = (($965) + 4|0); + HEAP32[$964>>2] = 7; + $966 = (($965) + 8|0); + $967 = ($966>>>0)<($930>>>0); + if ($967) { + $965 = $964; + } else { + break; + } + } + } + $968 = ($944|0)==($636|0); + if (!($968)) { + $969 = $944; + $970 = $636; + $971 = (($969) - ($970))|0; + $972 = (($636) + ($971)|0); + $$sum3$i$i = (($971) + 4)|0; + $973 = (($636) + ($$sum3$i$i)|0); + $974 = HEAP32[$973>>2]|0; + $975 = $974 & -2; + HEAP32[$973>>2] = $975; + $976 = $971 | 1; + $977 = (($636) + 4|0); + HEAP32[$977>>2] = $976; + HEAP32[$972>>2] = $971; + $978 = $971 >>> 3; + $979 = ($971>>>0)<(256); + if ($979) { + $980 = $978 << 1; + $981 = ((32544 + ($980<<2)|0) + 40|0); + $982 = HEAP32[32544>>2]|0; + $983 = 1 << $978; + $984 = $982 & $983; + $985 = ($984|0)==(0); + do { + if ($985) { + $986 = $982 | $983; + HEAP32[32544>>2] = $986; + $$sum10$pre$i$i = (($980) + 2)|0; + $$pre$i$i = ((32544 + ($$sum10$pre$i$i<<2)|0) + 40|0); + $$pre$phi$i$iZ2D = $$pre$i$i;$F$0$i$i = $981; + } else { + $$sum11$i$i = (($980) + 2)|0; + $987 = ((32544 + ($$sum11$i$i<<2)|0) + 40|0); + $988 = HEAP32[$987>>2]|0; + $989 = HEAP32[((32544 + 16|0))>>2]|0; + $990 = ($988>>>0)<($989>>>0); + if (!($990)) { + $$pre$phi$i$iZ2D = $987;$F$0$i$i = $988; + break; + } + _abort(); + // unreachable; + } + } while(0); + HEAP32[$$pre$phi$i$iZ2D>>2] = $636; + $991 = (($F$0$i$i) + 12|0); + HEAP32[$991>>2] = $636; + $992 = (($636) + 8|0); + HEAP32[$992>>2] = $F$0$i$i; + $993 = (($636) + 12|0); + HEAP32[$993>>2] = $981; + break; + } + $994 = $971 >>> 8; + $995 = ($994|0)==(0); + if ($995) { + $I1$0$i$i = 0; + } else { + $996 = ($971>>>0)>(16777215); + if ($996) { + $I1$0$i$i = 31; + } else { + $997 = (($994) + 1048320)|0; + $998 = $997 >>> 16; + $999 = $998 & 8; + $1000 = $994 << $999; + $1001 = (($1000) + 520192)|0; + $1002 = $1001 >>> 16; + $1003 = $1002 & 4; + $1004 = $1003 | $999; + $1005 = $1000 << $1003; + $1006 = (($1005) + 245760)|0; + $1007 = $1006 >>> 16; + $1008 = $1007 & 2; + $1009 = $1004 | $1008; + $1010 = (14 - ($1009))|0; + $1011 = $1005 << $1008; + $1012 = $1011 >>> 15; + $1013 = (($1010) + ($1012))|0; + $1014 = $1013 << 1; + $1015 = (($1013) + 7)|0; + $1016 = $971 >>> $1015; + $1017 = $1016 & 1; + $1018 = $1017 | $1014; + $I1$0$i$i = $1018; + } + } + $1019 = ((32544 + ($I1$0$i$i<<2)|0) + 304|0); + $1020 = (($636) + 28|0); + $I1$0$c$i$i = $I1$0$i$i; + HEAP32[$1020>>2] = $I1$0$c$i$i; + $1021 = (($636) + 20|0); + HEAP32[$1021>>2] = 0; + $1022 = (($636) + 16|0); + HEAP32[$1022>>2] = 0; + $1023 = HEAP32[((32544 + 4|0))>>2]|0; + $1024 = 1 << $I1$0$i$i; + $1025 = $1023 & $1024; + $1026 = ($1025|0)==(0); + if ($1026) { + $1027 = $1023 | $1024; + HEAP32[((32544 + 4|0))>>2] = $1027; + HEAP32[$1019>>2] = $636; + $1028 = (($636) + 24|0); + HEAP32[$1028>>2] = $1019; + $1029 = (($636) + 12|0); + HEAP32[$1029>>2] = $636; + $1030 = (($636) + 8|0); + HEAP32[$1030>>2] = $636; + break; + } + $1031 = HEAP32[$1019>>2]|0; + $1032 = ($I1$0$i$i|0)==(31); + if ($1032) { + $1040 = 0; + } else { + $1033 = $I1$0$i$i >>> 1; + $1034 = (25 - ($1033))|0; + $1040 = $1034; + } + $1035 = (($1031) + 4|0); + $1036 = HEAP32[$1035>>2]|0; + $1037 = $1036 & -8; + $1038 = ($1037|0)==($971|0); + L493: do { + if ($1038) { + $T$0$lcssa$i$i = $1031; + } else { + $1039 = $971 << $1040; + $K2$015$i$i = $1039;$T$014$i$i = $1031; + while(1) { + $1047 = $K2$015$i$i >>> 31; + $1048 = ((($T$014$i$i) + ($1047<<2)|0) + 16|0); + $1043 = HEAP32[$1048>>2]|0; + $1049 = ($1043|0)==(0|0); + if ($1049) { + break; + } + $1041 = $K2$015$i$i << 1; + $1042 = (($1043) + 4|0); + $1044 = HEAP32[$1042>>2]|0; + $1045 = $1044 & -8; + $1046 = ($1045|0)==($971|0); + if ($1046) { + $T$0$lcssa$i$i = $1043; + break L493; + } else { + $K2$015$i$i = $1041;$T$014$i$i = $1043; + } + } + $1050 = HEAP32[((32544 + 16|0))>>2]|0; + $1051 = ($1048>>>0)<($1050>>>0); + if ($1051) { + _abort(); + // unreachable; + } else { + HEAP32[$1048>>2] = $636; + $1052 = (($636) + 24|0); + HEAP32[$1052>>2] = $T$014$i$i; + $1053 = (($636) + 12|0); + HEAP32[$1053>>2] = $636; + $1054 = (($636) + 8|0); + HEAP32[$1054>>2] = $636; + break L308; + } + } + } while(0); + $1055 = (($T$0$lcssa$i$i) + 8|0); + $1056 = HEAP32[$1055>>2]|0; + $1057 = HEAP32[((32544 + 16|0))>>2]|0; + $1058 = ($T$0$lcssa$i$i>>>0)>=($1057>>>0); + $1059 = ($1056>>>0)>=($1057>>>0); + $or$cond$i$i = $1058 & $1059; + if ($or$cond$i$i) { + $1060 = (($1056) + 12|0); + HEAP32[$1060>>2] = $636; + HEAP32[$1055>>2] = $636; + $1061 = (($636) + 8|0); + HEAP32[$1061>>2] = $1056; + $1062 = (($636) + 12|0); + HEAP32[$1062>>2] = $T$0$lcssa$i$i; + $1063 = (($636) + 24|0); + HEAP32[$1063>>2] = 0; + break; + } else { + _abort(); + // unreachable; + } + } + } + } while(0); + $1064 = HEAP32[((32544 + 12|0))>>2]|0; + $1065 = ($1064>>>0)>($nb$0>>>0); + if ($1065) { + $1066 = (($1064) - ($nb$0))|0; + HEAP32[((32544 + 12|0))>>2] = $1066; + $1067 = HEAP32[((32544 + 24|0))>>2]|0; + $1068 = (($1067) + ($nb$0)|0); + HEAP32[((32544 + 24|0))>>2] = $1068; + $1069 = $1066 | 1; + $$sum$i32 = (($nb$0) + 4)|0; + $1070 = (($1067) + ($$sum$i32)|0); + HEAP32[$1070>>2] = $1069; + $1071 = $nb$0 | 3; + $1072 = (($1067) + 4|0); + HEAP32[$1072>>2] = $1071; + $1073 = (($1067) + 8|0); + $mem$0 = $1073; + STACKTOP = sp;return ($mem$0|0); + } + } + $1074 = (___errno_location()|0); + HEAP32[$1074>>2] = 12; + $mem$0 = 0; + STACKTOP = sp;return ($mem$0|0); +} +function _free($mem) { + $mem = $mem|0; + var $$pre = 0, $$pre$phi66Z2D = 0, $$pre$phi68Z2D = 0, $$pre$phiZ2D = 0, $$pre65 = 0, $$pre67 = 0, $$sum = 0, $$sum16$pre = 0, $$sum17 = 0, $$sum18 = 0, $$sum19 = 0, $$sum2 = 0, $$sum20 = 0, $$sum2324 = 0, $$sum25 = 0, $$sum26 = 0, $$sum28 = 0, $$sum29 = 0, $$sum3 = 0, $$sum30 = 0; + var $$sum31 = 0, $$sum32 = 0, $$sum33 = 0, $$sum34 = 0, $$sum35 = 0, $$sum36 = 0, $$sum37 = 0, $$sum5 = 0, $$sum67 = 0, $$sum8 = 0, $$sum9 = 0, $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0; + var $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0; + var $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0; + var $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0; + var $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0; + var $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0; + var $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0; + var $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0; + var $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0; + var $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0; + var $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0; + var $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0; + var $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0; + var $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0; + var $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0; + var $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0; + var $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $F16$0 = 0, $I18$0 = 0, $I18$0$c = 0, $K19$058 = 0, $R$0 = 0, $R$1 = 0, $R7$0 = 0; + var $R7$1 = 0, $RP$0 = 0, $RP9$0 = 0, $T$0$lcssa = 0, $T$057 = 0, $cond = 0, $cond54 = 0, $or$cond = 0, $p$0 = 0, $psize$0 = 0, $psize$1 = 0, $sp$0$i = 0, $sp$0$in$i = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = ($mem|0)==(0|0); + if ($0) { + STACKTOP = sp;return; + } + $1 = (($mem) + -8|0); + $2 = HEAP32[((32544 + 16|0))>>2]|0; + $3 = ($1>>>0)<($2>>>0); + if ($3) { + _abort(); + // unreachable; + } + $4 = (($mem) + -4|0); + $5 = HEAP32[$4>>2]|0; + $6 = $5 & 3; + $7 = ($6|0)==(1); + if ($7) { + _abort(); + // unreachable; + } + $8 = $5 & -8; + $$sum = (($8) + -8)|0; + $9 = (($mem) + ($$sum)|0); + $10 = $5 & 1; + $11 = ($10|0)==(0); + do { + if ($11) { + $12 = HEAP32[$1>>2]|0; + $13 = ($6|0)==(0); + if ($13) { + STACKTOP = sp;return; + } + $$sum2 = (-8 - ($12))|0; + $14 = (($mem) + ($$sum2)|0); + $15 = (($12) + ($8))|0; + $16 = ($14>>>0)<($2>>>0); + if ($16) { + _abort(); + // unreachable; + } + $17 = HEAP32[((32544 + 20|0))>>2]|0; + $18 = ($14|0)==($17|0); + if ($18) { + $$sum3 = (($8) + -4)|0; + $103 = (($mem) + ($$sum3)|0); + $104 = HEAP32[$103>>2]|0; + $105 = $104 & 3; + $106 = ($105|0)==(3); + if (!($106)) { + $p$0 = $14;$psize$0 = $15; + break; + } + HEAP32[((32544 + 8|0))>>2] = $15; + $107 = $104 & -2; + HEAP32[$103>>2] = $107; + $108 = $15 | 1; + $$sum26 = (($$sum2) + 4)|0; + $109 = (($mem) + ($$sum26)|0); + HEAP32[$109>>2] = $108; + HEAP32[$9>>2] = $15; + STACKTOP = sp;return; + } + $19 = $12 >>> 3; + $20 = ($12>>>0)<(256); + if ($20) { + $$sum36 = (($$sum2) + 8)|0; + $21 = (($mem) + ($$sum36)|0); + $22 = HEAP32[$21>>2]|0; + $$sum37 = (($$sum2) + 12)|0; + $23 = (($mem) + ($$sum37)|0); + $24 = HEAP32[$23>>2]|0; + $25 = $19 << 1; + $26 = ((32544 + ($25<<2)|0) + 40|0); + $27 = ($22|0)==($26|0); + if (!($27)) { + $28 = ($22>>>0)<($2>>>0); + if ($28) { + _abort(); + // unreachable; + } + $29 = (($22) + 12|0); + $30 = HEAP32[$29>>2]|0; + $31 = ($30|0)==($14|0); + if (!($31)) { + _abort(); + // unreachable; + } + } + $32 = ($24|0)==($22|0); + if ($32) { + $33 = 1 << $19; + $34 = $33 ^ -1; + $35 = HEAP32[32544>>2]|0; + $36 = $35 & $34; + HEAP32[32544>>2] = $36; + $p$0 = $14;$psize$0 = $15; + break; + } + $37 = ($24|0)==($26|0); + if ($37) { + $$pre67 = (($24) + 8|0); + $$pre$phi68Z2D = $$pre67; + } else { + $38 = ($24>>>0)<($2>>>0); + if ($38) { + _abort(); + // unreachable; + } + $39 = (($24) + 8|0); + $40 = HEAP32[$39>>2]|0; + $41 = ($40|0)==($14|0); + if ($41) { + $$pre$phi68Z2D = $39; + } else { + _abort(); + // unreachable; + } + } + $42 = (($22) + 12|0); + HEAP32[$42>>2] = $24; + HEAP32[$$pre$phi68Z2D>>2] = $22; + $p$0 = $14;$psize$0 = $15; + break; + } + $$sum28 = (($$sum2) + 24)|0; + $43 = (($mem) + ($$sum28)|0); + $44 = HEAP32[$43>>2]|0; + $$sum29 = (($$sum2) + 12)|0; + $45 = (($mem) + ($$sum29)|0); + $46 = HEAP32[$45>>2]|0; + $47 = ($46|0)==($14|0); + do { + if ($47) { + $$sum31 = (($$sum2) + 20)|0; + $57 = (($mem) + ($$sum31)|0); + $58 = HEAP32[$57>>2]|0; + $59 = ($58|0)==(0|0); + if ($59) { + $$sum30 = (($$sum2) + 16)|0; + $60 = (($mem) + ($$sum30)|0); + $61 = HEAP32[$60>>2]|0; + $62 = ($61|0)==(0|0); + if ($62) { + $R$1 = 0; + break; + } else { + $R$0 = $61;$RP$0 = $60; + } + } else { + $R$0 = $58;$RP$0 = $57; + } + while(1) { + $63 = (($R$0) + 20|0); + $64 = HEAP32[$63>>2]|0; + $65 = ($64|0)==(0|0); + if (!($65)) { + $R$0 = $64;$RP$0 = $63; + continue; + } + $66 = (($R$0) + 16|0); + $67 = HEAP32[$66>>2]|0; + $68 = ($67|0)==(0|0); + if ($68) { + break; + } else { + $R$0 = $67;$RP$0 = $66; + } + } + $69 = ($RP$0>>>0)<($2>>>0); + if ($69) { + _abort(); + // unreachable; + } else { + HEAP32[$RP$0>>2] = 0; + $R$1 = $R$0; + break; + } + } else { + $$sum35 = (($$sum2) + 8)|0; + $48 = (($mem) + ($$sum35)|0); + $49 = HEAP32[$48>>2]|0; + $50 = ($49>>>0)<($2>>>0); + if ($50) { + _abort(); + // unreachable; + } + $51 = (($49) + 12|0); + $52 = HEAP32[$51>>2]|0; + $53 = ($52|0)==($14|0); + if (!($53)) { + _abort(); + // unreachable; + } + $54 = (($46) + 8|0); + $55 = HEAP32[$54>>2]|0; + $56 = ($55|0)==($14|0); + if ($56) { + HEAP32[$51>>2] = $46; + HEAP32[$54>>2] = $49; + $R$1 = $46; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $70 = ($44|0)==(0|0); + if ($70) { + $p$0 = $14;$psize$0 = $15; + } else { + $$sum32 = (($$sum2) + 28)|0; + $71 = (($mem) + ($$sum32)|0); + $72 = HEAP32[$71>>2]|0; + $73 = ((32544 + ($72<<2)|0) + 304|0); + $74 = HEAP32[$73>>2]|0; + $75 = ($14|0)==($74|0); + if ($75) { + HEAP32[$73>>2] = $R$1; + $cond = ($R$1|0)==(0|0); + if ($cond) { + $76 = 1 << $72; + $77 = $76 ^ -1; + $78 = HEAP32[((32544 + 4|0))>>2]|0; + $79 = $78 & $77; + HEAP32[((32544 + 4|0))>>2] = $79; + $p$0 = $14;$psize$0 = $15; + break; + } + } else { + $80 = HEAP32[((32544 + 16|0))>>2]|0; + $81 = ($44>>>0)<($80>>>0); + if ($81) { + _abort(); + // unreachable; + } + $82 = (($44) + 16|0); + $83 = HEAP32[$82>>2]|0; + $84 = ($83|0)==($14|0); + if ($84) { + HEAP32[$82>>2] = $R$1; + } else { + $85 = (($44) + 20|0); + HEAP32[$85>>2] = $R$1; + } + $86 = ($R$1|0)==(0|0); + if ($86) { + $p$0 = $14;$psize$0 = $15; + break; + } + } + $87 = HEAP32[((32544 + 16|0))>>2]|0; + $88 = ($R$1>>>0)<($87>>>0); + if ($88) { + _abort(); + // unreachable; + } + $89 = (($R$1) + 24|0); + HEAP32[$89>>2] = $44; + $$sum33 = (($$sum2) + 16)|0; + $90 = (($mem) + ($$sum33)|0); + $91 = HEAP32[$90>>2]|0; + $92 = ($91|0)==(0|0); + do { + if (!($92)) { + $93 = ($91>>>0)<($87>>>0); + if ($93) { + _abort(); + // unreachable; + } else { + $94 = (($R$1) + 16|0); + HEAP32[$94>>2] = $91; + $95 = (($91) + 24|0); + HEAP32[$95>>2] = $R$1; + break; + } + } + } while(0); + $$sum34 = (($$sum2) + 20)|0; + $96 = (($mem) + ($$sum34)|0); + $97 = HEAP32[$96>>2]|0; + $98 = ($97|0)==(0|0); + if ($98) { + $p$0 = $14;$psize$0 = $15; + } else { + $99 = HEAP32[((32544 + 16|0))>>2]|0; + $100 = ($97>>>0)<($99>>>0); + if ($100) { + _abort(); + // unreachable; + } else { + $101 = (($R$1) + 20|0); + HEAP32[$101>>2] = $97; + $102 = (($97) + 24|0); + HEAP32[$102>>2] = $R$1; + $p$0 = $14;$psize$0 = $15; + break; + } + } + } + } else { + $p$0 = $1;$psize$0 = $8; + } + } while(0); + $110 = ($p$0>>>0)<($9>>>0); + if (!($110)) { + _abort(); + // unreachable; + } + $$sum25 = (($8) + -4)|0; + $111 = (($mem) + ($$sum25)|0); + $112 = HEAP32[$111>>2]|0; + $113 = $112 & 1; + $114 = ($113|0)==(0); + if ($114) { + _abort(); + // unreachable; + } + $115 = $112 & 2; + $116 = ($115|0)==(0); + if ($116) { + $117 = HEAP32[((32544 + 24|0))>>2]|0; + $118 = ($9|0)==($117|0); + if ($118) { + $119 = HEAP32[((32544 + 12|0))>>2]|0; + $120 = (($119) + ($psize$0))|0; + HEAP32[((32544 + 12|0))>>2] = $120; + HEAP32[((32544 + 24|0))>>2] = $p$0; + $121 = $120 | 1; + $122 = (($p$0) + 4|0); + HEAP32[$122>>2] = $121; + $123 = HEAP32[((32544 + 20|0))>>2]|0; + $124 = ($p$0|0)==($123|0); + if (!($124)) { + STACKTOP = sp;return; + } + HEAP32[((32544 + 20|0))>>2] = 0; + HEAP32[((32544 + 8|0))>>2] = 0; + STACKTOP = sp;return; + } + $125 = HEAP32[((32544 + 20|0))>>2]|0; + $126 = ($9|0)==($125|0); + if ($126) { + $127 = HEAP32[((32544 + 8|0))>>2]|0; + $128 = (($127) + ($psize$0))|0; + HEAP32[((32544 + 8|0))>>2] = $128; + HEAP32[((32544 + 20|0))>>2] = $p$0; + $129 = $128 | 1; + $130 = (($p$0) + 4|0); + HEAP32[$130>>2] = $129; + $131 = (($p$0) + ($128)|0); + HEAP32[$131>>2] = $128; + STACKTOP = sp;return; + } + $132 = $112 & -8; + $133 = (($132) + ($psize$0))|0; + $134 = $112 >>> 3; + $135 = ($112>>>0)<(256); + do { + if ($135) { + $136 = (($mem) + ($8)|0); + $137 = HEAP32[$136>>2]|0; + $$sum2324 = $8 | 4; + $138 = (($mem) + ($$sum2324)|0); + $139 = HEAP32[$138>>2]|0; + $140 = $134 << 1; + $141 = ((32544 + ($140<<2)|0) + 40|0); + $142 = ($137|0)==($141|0); + if (!($142)) { + $143 = HEAP32[((32544 + 16|0))>>2]|0; + $144 = ($137>>>0)<($143>>>0); + if ($144) { + _abort(); + // unreachable; + } + $145 = (($137) + 12|0); + $146 = HEAP32[$145>>2]|0; + $147 = ($146|0)==($9|0); + if (!($147)) { + _abort(); + // unreachable; + } + } + $148 = ($139|0)==($137|0); + if ($148) { + $149 = 1 << $134; + $150 = $149 ^ -1; + $151 = HEAP32[32544>>2]|0; + $152 = $151 & $150; + HEAP32[32544>>2] = $152; + break; + } + $153 = ($139|0)==($141|0); + if ($153) { + $$pre65 = (($139) + 8|0); + $$pre$phi66Z2D = $$pre65; + } else { + $154 = HEAP32[((32544 + 16|0))>>2]|0; + $155 = ($139>>>0)<($154>>>0); + if ($155) { + _abort(); + // unreachable; + } + $156 = (($139) + 8|0); + $157 = HEAP32[$156>>2]|0; + $158 = ($157|0)==($9|0); + if ($158) { + $$pre$phi66Z2D = $156; + } else { + _abort(); + // unreachable; + } + } + $159 = (($137) + 12|0); + HEAP32[$159>>2] = $139; + HEAP32[$$pre$phi66Z2D>>2] = $137; + } else { + $$sum5 = (($8) + 16)|0; + $160 = (($mem) + ($$sum5)|0); + $161 = HEAP32[$160>>2]|0; + $$sum67 = $8 | 4; + $162 = (($mem) + ($$sum67)|0); + $163 = HEAP32[$162>>2]|0; + $164 = ($163|0)==($9|0); + do { + if ($164) { + $$sum9 = (($8) + 12)|0; + $175 = (($mem) + ($$sum9)|0); + $176 = HEAP32[$175>>2]|0; + $177 = ($176|0)==(0|0); + if ($177) { + $$sum8 = (($8) + 8)|0; + $178 = (($mem) + ($$sum8)|0); + $179 = HEAP32[$178>>2]|0; + $180 = ($179|0)==(0|0); + if ($180) { + $R7$1 = 0; + break; + } else { + $R7$0 = $179;$RP9$0 = $178; + } + } else { + $R7$0 = $176;$RP9$0 = $175; + } + while(1) { + $181 = (($R7$0) + 20|0); + $182 = HEAP32[$181>>2]|0; + $183 = ($182|0)==(0|0); + if (!($183)) { + $R7$0 = $182;$RP9$0 = $181; + continue; + } + $184 = (($R7$0) + 16|0); + $185 = HEAP32[$184>>2]|0; + $186 = ($185|0)==(0|0); + if ($186) { + break; + } else { + $R7$0 = $185;$RP9$0 = $184; + } + } + $187 = HEAP32[((32544 + 16|0))>>2]|0; + $188 = ($RP9$0>>>0)<($187>>>0); + if ($188) { + _abort(); + // unreachable; + } else { + HEAP32[$RP9$0>>2] = 0; + $R7$1 = $R7$0; + break; + } + } else { + $165 = (($mem) + ($8)|0); + $166 = HEAP32[$165>>2]|0; + $167 = HEAP32[((32544 + 16|0))>>2]|0; + $168 = ($166>>>0)<($167>>>0); + if ($168) { + _abort(); + // unreachable; + } + $169 = (($166) + 12|0); + $170 = HEAP32[$169>>2]|0; + $171 = ($170|0)==($9|0); + if (!($171)) { + _abort(); + // unreachable; + } + $172 = (($163) + 8|0); + $173 = HEAP32[$172>>2]|0; + $174 = ($173|0)==($9|0); + if ($174) { + HEAP32[$169>>2] = $163; + HEAP32[$172>>2] = $166; + $R7$1 = $163; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $189 = ($161|0)==(0|0); + if (!($189)) { + $$sum18 = (($8) + 20)|0; + $190 = (($mem) + ($$sum18)|0); + $191 = HEAP32[$190>>2]|0; + $192 = ((32544 + ($191<<2)|0) + 304|0); + $193 = HEAP32[$192>>2]|0; + $194 = ($9|0)==($193|0); + if ($194) { + HEAP32[$192>>2] = $R7$1; + $cond54 = ($R7$1|0)==(0|0); + if ($cond54) { + $195 = 1 << $191; + $196 = $195 ^ -1; + $197 = HEAP32[((32544 + 4|0))>>2]|0; + $198 = $197 & $196; + HEAP32[((32544 + 4|0))>>2] = $198; + break; + } + } else { + $199 = HEAP32[((32544 + 16|0))>>2]|0; + $200 = ($161>>>0)<($199>>>0); + if ($200) { + _abort(); + // unreachable; + } + $201 = (($161) + 16|0); + $202 = HEAP32[$201>>2]|0; + $203 = ($202|0)==($9|0); + if ($203) { + HEAP32[$201>>2] = $R7$1; + } else { + $204 = (($161) + 20|0); + HEAP32[$204>>2] = $R7$1; + } + $205 = ($R7$1|0)==(0|0); + if ($205) { + break; + } + } + $206 = HEAP32[((32544 + 16|0))>>2]|0; + $207 = ($R7$1>>>0)<($206>>>0); + if ($207) { + _abort(); + // unreachable; + } + $208 = (($R7$1) + 24|0); + HEAP32[$208>>2] = $161; + $$sum19 = (($8) + 8)|0; + $209 = (($mem) + ($$sum19)|0); + $210 = HEAP32[$209>>2]|0; + $211 = ($210|0)==(0|0); + do { + if (!($211)) { + $212 = ($210>>>0)<($206>>>0); + if ($212) { + _abort(); + // unreachable; + } else { + $213 = (($R7$1) + 16|0); + HEAP32[$213>>2] = $210; + $214 = (($210) + 24|0); + HEAP32[$214>>2] = $R7$1; + break; + } + } + } while(0); + $$sum20 = (($8) + 12)|0; + $215 = (($mem) + ($$sum20)|0); + $216 = HEAP32[$215>>2]|0; + $217 = ($216|0)==(0|0); + if (!($217)) { + $218 = HEAP32[((32544 + 16|0))>>2]|0; + $219 = ($216>>>0)<($218>>>0); + if ($219) { + _abort(); + // unreachable; + } else { + $220 = (($R7$1) + 20|0); + HEAP32[$220>>2] = $216; + $221 = (($216) + 24|0); + HEAP32[$221>>2] = $R7$1; + break; + } + } + } + } + } while(0); + $222 = $133 | 1; + $223 = (($p$0) + 4|0); + HEAP32[$223>>2] = $222; + $224 = (($p$0) + ($133)|0); + HEAP32[$224>>2] = $133; + $225 = HEAP32[((32544 + 20|0))>>2]|0; + $226 = ($p$0|0)==($225|0); + if ($226) { + HEAP32[((32544 + 8|0))>>2] = $133; + STACKTOP = sp;return; + } else { + $psize$1 = $133; + } + } else { + $227 = $112 & -2; + HEAP32[$111>>2] = $227; + $228 = $psize$0 | 1; + $229 = (($p$0) + 4|0); + HEAP32[$229>>2] = $228; + $230 = (($p$0) + ($psize$0)|0); + HEAP32[$230>>2] = $psize$0; + $psize$1 = $psize$0; + } + $231 = $psize$1 >>> 3; + $232 = ($psize$1>>>0)<(256); + if ($232) { + $233 = $231 << 1; + $234 = ((32544 + ($233<<2)|0) + 40|0); + $235 = HEAP32[32544>>2]|0; + $236 = 1 << $231; + $237 = $235 & $236; + $238 = ($237|0)==(0); + if ($238) { + $239 = $235 | $236; + HEAP32[32544>>2] = $239; + $$sum16$pre = (($233) + 2)|0; + $$pre = ((32544 + ($$sum16$pre<<2)|0) + 40|0); + $$pre$phiZ2D = $$pre;$F16$0 = $234; + } else { + $$sum17 = (($233) + 2)|0; + $240 = ((32544 + ($$sum17<<2)|0) + 40|0); + $241 = HEAP32[$240>>2]|0; + $242 = HEAP32[((32544 + 16|0))>>2]|0; + $243 = ($241>>>0)<($242>>>0); + if ($243) { + _abort(); + // unreachable; + } else { + $$pre$phiZ2D = $240;$F16$0 = $241; + } + } + HEAP32[$$pre$phiZ2D>>2] = $p$0; + $244 = (($F16$0) + 12|0); + HEAP32[$244>>2] = $p$0; + $245 = (($p$0) + 8|0); + HEAP32[$245>>2] = $F16$0; + $246 = (($p$0) + 12|0); + HEAP32[$246>>2] = $234; + STACKTOP = sp;return; + } + $247 = $psize$1 >>> 8; + $248 = ($247|0)==(0); + if ($248) { + $I18$0 = 0; + } else { + $249 = ($psize$1>>>0)>(16777215); + if ($249) { + $I18$0 = 31; + } else { + $250 = (($247) + 1048320)|0; + $251 = $250 >>> 16; + $252 = $251 & 8; + $253 = $247 << $252; + $254 = (($253) + 520192)|0; + $255 = $254 >>> 16; + $256 = $255 & 4; + $257 = $256 | $252; + $258 = $253 << $256; + $259 = (($258) + 245760)|0; + $260 = $259 >>> 16; + $261 = $260 & 2; + $262 = $257 | $261; + $263 = (14 - ($262))|0; + $264 = $258 << $261; + $265 = $264 >>> 15; + $266 = (($263) + ($265))|0; + $267 = $266 << 1; + $268 = (($266) + 7)|0; + $269 = $psize$1 >>> $268; + $270 = $269 & 1; + $271 = $270 | $267; + $I18$0 = $271; + } + } + $272 = ((32544 + ($I18$0<<2)|0) + 304|0); + $273 = (($p$0) + 28|0); + $I18$0$c = $I18$0; + HEAP32[$273>>2] = $I18$0$c; + $274 = (($p$0) + 20|0); + HEAP32[$274>>2] = 0; + $275 = (($p$0) + 16|0); + HEAP32[$275>>2] = 0; + $276 = HEAP32[((32544 + 4|0))>>2]|0; + $277 = 1 << $I18$0; + $278 = $276 & $277; + $279 = ($278|0)==(0); + L199: do { + if ($279) { + $280 = $276 | $277; + HEAP32[((32544 + 4|0))>>2] = $280; + HEAP32[$272>>2] = $p$0; + $281 = (($p$0) + 24|0); + HEAP32[$281>>2] = $272; + $282 = (($p$0) + 12|0); + HEAP32[$282>>2] = $p$0; + $283 = (($p$0) + 8|0); + HEAP32[$283>>2] = $p$0; + } else { + $284 = HEAP32[$272>>2]|0; + $285 = ($I18$0|0)==(31); + if ($285) { + $293 = 0; + } else { + $286 = $I18$0 >>> 1; + $287 = (25 - ($286))|0; + $293 = $287; + } + $288 = (($284) + 4|0); + $289 = HEAP32[$288>>2]|0; + $290 = $289 & -8; + $291 = ($290|0)==($psize$1|0); + L205: do { + if ($291) { + $T$0$lcssa = $284; + } else { + $292 = $psize$1 << $293; + $K19$058 = $292;$T$057 = $284; + while(1) { + $300 = $K19$058 >>> 31; + $301 = ((($T$057) + ($300<<2)|0) + 16|0); + $296 = HEAP32[$301>>2]|0; + $302 = ($296|0)==(0|0); + if ($302) { + break; + } + $294 = $K19$058 << 1; + $295 = (($296) + 4|0); + $297 = HEAP32[$295>>2]|0; + $298 = $297 & -8; + $299 = ($298|0)==($psize$1|0); + if ($299) { + $T$0$lcssa = $296; + break L205; + } else { + $K19$058 = $294;$T$057 = $296; + } + } + $303 = HEAP32[((32544 + 16|0))>>2]|0; + $304 = ($301>>>0)<($303>>>0); + if ($304) { + _abort(); + // unreachable; + } else { + HEAP32[$301>>2] = $p$0; + $305 = (($p$0) + 24|0); + HEAP32[$305>>2] = $T$057; + $306 = (($p$0) + 12|0); + HEAP32[$306>>2] = $p$0; + $307 = (($p$0) + 8|0); + HEAP32[$307>>2] = $p$0; + break L199; + } + } + } while(0); + $308 = (($T$0$lcssa) + 8|0); + $309 = HEAP32[$308>>2]|0; + $310 = HEAP32[((32544 + 16|0))>>2]|0; + $311 = ($T$0$lcssa>>>0)>=($310>>>0); + $312 = ($309>>>0)>=($310>>>0); + $or$cond = $311 & $312; + if ($or$cond) { + $313 = (($309) + 12|0); + HEAP32[$313>>2] = $p$0; + HEAP32[$308>>2] = $p$0; + $314 = (($p$0) + 8|0); + HEAP32[$314>>2] = $309; + $315 = (($p$0) + 12|0); + HEAP32[$315>>2] = $T$0$lcssa; + $316 = (($p$0) + 24|0); + HEAP32[$316>>2] = 0; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $317 = HEAP32[((32544 + 32|0))>>2]|0; + $318 = (($317) + -1)|0; + HEAP32[((32544 + 32|0))>>2] = $318; + $319 = ($318|0)==(0); + if ($319) { + $sp$0$in$i = ((32544 + 456|0)); + } else { + STACKTOP = sp;return; + } + while(1) { + $sp$0$i = HEAP32[$sp$0$in$i>>2]|0; + $320 = ($sp$0$i|0)==(0|0); + $321 = (($sp$0$i) + 8|0); + if ($320) { + break; + } else { + $sp$0$in$i = $321; + } + } + HEAP32[((32544 + 32|0))>>2] = -1; + STACKTOP = sp;return; +} +function runPostSets() { + +} +function _bitshift64Ashr(low, high, bits) { + low = low|0; high = high|0; bits = bits|0; + var ander = 0; + if ((bits|0) < 32) { + ander = ((1 << bits) - 1)|0; + tempRet0 = high >> bits; + return (low >>> bits) | ((high&ander) << (32 - bits)); + } + tempRet0 = (high|0) < 0 ? -1 : 0; + return (high >> (bits - 32))|0; +} +function _i64Subtract(a, b, c, d) { + a = a|0; b = b|0; c = c|0; d = d|0; + var l = 0, h = 0; + l = (a - c)>>>0; + h = (b - d)>>>0; + h = (b - d - (((c>>>0) > (a>>>0))|0))>>>0; // Borrow one from high word to low word on underflow. + return ((tempRet0 = h,l|0)|0); +} +function _i64Add(a, b, c, d) { + /* + x = a + b*2^32 + y = c + d*2^32 + result = l + h*2^32 + */ + a = a|0; b = b|0; c = c|0; d = d|0; + var l = 0, h = 0; + l = (a + c)>>>0; + h = (b + d + (((l>>>0) < (a>>>0))|0))>>>0; // Add carry from low word to high word on overflow. + return ((tempRet0 = h,l|0)|0); +} +function _memset(ptr, value, num) { + ptr = ptr|0; value = value|0; num = num|0; + var stop = 0, value4 = 0, stop4 = 0, unaligned = 0; + stop = (ptr + num)|0; + if ((num|0) >= 20) { + // This is unaligned, but quite large, so work hard to get to aligned settings + value = value & 0xff; + unaligned = ptr & 3; + value4 = value | (value << 8) | (value << 16) | (value << 24); + stop4 = stop & ~3; + if (unaligned) { + unaligned = (ptr + 4 - unaligned)|0; + while ((ptr|0) < (unaligned|0)) { // no need to check for stop, since we have large num + HEAP8[((ptr)>>0)]=value; + ptr = (ptr+1)|0; + } + } + while ((ptr|0) < (stop4|0)) { + HEAP32[((ptr)>>2)]=value4; + ptr = (ptr+4)|0; + } + } + while ((ptr|0) < (stop|0)) { + HEAP8[((ptr)>>0)]=value; + ptr = (ptr+1)|0; + } + return (ptr-num)|0; +} +function _bitshift64Lshr(low, high, bits) { + low = low|0; high = high|0; bits = bits|0; + var ander = 0; + if ((bits|0) < 32) { + ander = ((1 << bits) - 1)|0; + tempRet0 = high >>> bits; + return (low >>> bits) | ((high&ander) << (32 - bits)); + } + tempRet0 = 0; + return (high >>> (bits - 32))|0; +} +function _bitshift64Shl(low, high, bits) { + low = low|0; high = high|0; bits = bits|0; + var ander = 0; + if ((bits|0) < 32) { + ander = ((1 << bits) - 1)|0; + tempRet0 = (high << bits) | ((low&(ander << (32 - bits))) >>> (32 - bits)); + return low << bits; + } + tempRet0 = low << (bits - 32); + return 0; +} +function _strlen(ptr) { + ptr = ptr|0; + var curr = 0; + curr = ptr; + while (((HEAP8[((curr)>>0)])|0)) { + curr = (curr + 1)|0; + } + return (curr - ptr)|0; +} +function _memcpy(dest, src, num) { + + dest = dest|0; src = src|0; num = num|0; + var ret = 0; + if ((num|0) >= 4096) return _emscripten_memcpy_big(dest|0, src|0, num|0)|0; + ret = dest|0; + if ((dest&3) == (src&3)) { + while (dest & 3) { + if ((num|0) == 0) return ret|0; + HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); + dest = (dest+1)|0; + src = (src+1)|0; + num = (num-1)|0; + } + while ((num|0) >= 4) { + HEAP32[((dest)>>2)]=((HEAP32[((src)>>2)])|0); + dest = (dest+4)|0; + src = (src+4)|0; + num = (num-4)|0; + } + } + while ((num|0) > 0) { + HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); + dest = (dest+1)|0; + src = (src+1)|0; + num = (num-1)|0; + } + return ret|0; +} +function _memmove(dest, src, num) { + dest = dest|0; src = src|0; num = num|0; + var ret = 0; + if (((src|0) < (dest|0)) & ((dest|0) < ((src + num)|0))) { + // Unlikely case: Copy backwards in a safe manner + ret = dest; + src = (src + num)|0; + dest = (dest + num)|0; + while ((num|0) > 0) { + dest = (dest - 1)|0; + src = (src - 1)|0; + num = (num - 1)|0; + HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); + } + dest = ret; + } else { + _memcpy(dest, src, num) | 0; + } + return dest | 0; +} +function _llvm_ctlz_i32(x) { + x = x|0; + var ret = 0; + ret = ((HEAP8[(((ctlz_i8)+(x >>> 24))>>0)])|0); + if ((ret|0) < 8) return ret|0; + ret = ((HEAP8[(((ctlz_i8)+((x >> 16)&0xff))>>0)])|0); + if ((ret|0) < 8) return (ret + 8)|0; + ret = ((HEAP8[(((ctlz_i8)+((x >> 8)&0xff))>>0)])|0); + if ((ret|0) < 8) return (ret + 16)|0; + return (((HEAP8[(((ctlz_i8)+(x&0xff))>>0)])|0) + 24)|0; + } + +function _llvm_cttz_i32(x) { + x = x|0; + var ret = 0; + ret = ((HEAP8[(((cttz_i8)+(x & 0xff))>>0)])|0); + if ((ret|0) < 8) return ret|0; + ret = ((HEAP8[(((cttz_i8)+((x >> 8)&0xff))>>0)])|0); + if ((ret|0) < 8) return (ret + 8)|0; + ret = ((HEAP8[(((cttz_i8)+((x >> 16)&0xff))>>0)])|0); + if ((ret|0) < 8) return (ret + 16)|0; + return (((HEAP8[(((cttz_i8)+(x >>> 24))>>0)])|0) + 24)|0; + } + +// ======== compiled code from system/lib/compiler-rt , see readme therein +function ___muldsi3($a, $b) { + $a = $a | 0; + $b = $b | 0; + var $1 = 0, $2 = 0, $3 = 0, $6 = 0, $8 = 0, $11 = 0, $12 = 0; + $1 = $a & 65535; + $2 = $b & 65535; + $3 = Math_imul($2, $1) | 0; + $6 = $a >>> 16; + $8 = ($3 >>> 16) + (Math_imul($2, $6) | 0) | 0; + $11 = $b >>> 16; + $12 = Math_imul($11, $1) | 0; + return (tempRet0 = (($8 >>> 16) + (Math_imul($11, $6) | 0) | 0) + ((($8 & 65535) + $12 | 0) >>> 16) | 0, 0 | ($8 + $12 << 16 | $3 & 65535)) | 0; +} +function ___divdi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $1$0 = 0, $1$1 = 0, $2$0 = 0, $2$1 = 0, $4$0 = 0, $4$1 = 0, $6$0 = 0, $7$0 = 0, $7$1 = 0, $8$0 = 0, $10$0 = 0; + $1$0 = $a$1 >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; + $1$1 = (($a$1 | 0) < 0 ? -1 : 0) >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; + $2$0 = $b$1 >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; + $2$1 = (($b$1 | 0) < 0 ? -1 : 0) >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; + $4$0 = _i64Subtract($1$0 ^ $a$0, $1$1 ^ $a$1, $1$0, $1$1) | 0; + $4$1 = tempRet0; + $6$0 = _i64Subtract($2$0 ^ $b$0, $2$1 ^ $b$1, $2$0, $2$1) | 0; + $7$0 = $2$0 ^ $1$0; + $7$1 = $2$1 ^ $1$1; + $8$0 = ___udivmoddi4($4$0, $4$1, $6$0, tempRet0, 0) | 0; + $10$0 = _i64Subtract($8$0 ^ $7$0, tempRet0 ^ $7$1, $7$0, $7$1) | 0; + return (tempRet0 = tempRet0, $10$0) | 0; +} +function ___remdi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $rem = 0, $1$0 = 0, $1$1 = 0, $2$0 = 0, $2$1 = 0, $4$0 = 0, $4$1 = 0, $6$0 = 0, $10$0 = 0, $10$1 = 0, __stackBase__ = 0; + __stackBase__ = STACKTOP; + STACKTOP = STACKTOP + 8 | 0; + $rem = __stackBase__ | 0; + $1$0 = $a$1 >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; + $1$1 = (($a$1 | 0) < 0 ? -1 : 0) >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; + $2$0 = $b$1 >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; + $2$1 = (($b$1 | 0) < 0 ? -1 : 0) >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; + $4$0 = _i64Subtract($1$0 ^ $a$0, $1$1 ^ $a$1, $1$0, $1$1) | 0; + $4$1 = tempRet0; + $6$0 = _i64Subtract($2$0 ^ $b$0, $2$1 ^ $b$1, $2$0, $2$1) | 0; + ___udivmoddi4($4$0, $4$1, $6$0, tempRet0, $rem) | 0; + $10$0 = _i64Subtract(HEAP32[$rem >> 2] ^ $1$0, HEAP32[$rem + 4 >> 2] ^ $1$1, $1$0, $1$1) | 0; + $10$1 = tempRet0; + STACKTOP = __stackBase__; + return (tempRet0 = $10$1, $10$0) | 0; +} +function ___muldi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $x_sroa_0_0_extract_trunc = 0, $y_sroa_0_0_extract_trunc = 0, $1$0 = 0, $1$1 = 0, $2 = 0; + $x_sroa_0_0_extract_trunc = $a$0; + $y_sroa_0_0_extract_trunc = $b$0; + $1$0 = ___muldsi3($x_sroa_0_0_extract_trunc, $y_sroa_0_0_extract_trunc) | 0; + $1$1 = tempRet0; + $2 = Math_imul($a$1, $y_sroa_0_0_extract_trunc) | 0; + return (tempRet0 = ((Math_imul($b$1, $x_sroa_0_0_extract_trunc) | 0) + $2 | 0) + $1$1 | $1$1 & 0, 0 | $1$0 & -1) | 0; +} +function ___udivdi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $1$0 = 0; + $1$0 = ___udivmoddi4($a$0, $a$1, $b$0, $b$1, 0) | 0; + return (tempRet0 = tempRet0, $1$0) | 0; +} +function ___uremdi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $rem = 0, __stackBase__ = 0; + __stackBase__ = STACKTOP; + STACKTOP = STACKTOP + 8 | 0; + $rem = __stackBase__ | 0; + ___udivmoddi4($a$0, $a$1, $b$0, $b$1, $rem) | 0; + STACKTOP = __stackBase__; + return (tempRet0 = HEAP32[$rem + 4 >> 2] | 0, HEAP32[$rem >> 2] | 0) | 0; +} +function ___udivmoddi4($a$0, $a$1, $b$0, $b$1, $rem) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + $rem = $rem | 0; + var $n_sroa_0_0_extract_trunc = 0, $n_sroa_1_4_extract_shift$0 = 0, $n_sroa_1_4_extract_trunc = 0, $d_sroa_0_0_extract_trunc = 0, $d_sroa_1_4_extract_shift$0 = 0, $d_sroa_1_4_extract_trunc = 0, $4 = 0, $17 = 0, $37 = 0, $49 = 0, $51 = 0, $57 = 0, $58 = 0, $66 = 0, $78 = 0, $86 = 0, $88 = 0, $89 = 0, $91 = 0, $92 = 0, $95 = 0, $105 = 0, $117 = 0, $119 = 0, $125 = 0, $126 = 0, $130 = 0, $q_sroa_1_1_ph = 0, $q_sroa_0_1_ph = 0, $r_sroa_1_1_ph = 0, $r_sroa_0_1_ph = 0, $sr_1_ph = 0, $d_sroa_0_0_insert_insert99$0 = 0, $d_sroa_0_0_insert_insert99$1 = 0, $137$0 = 0, $137$1 = 0, $carry_0203 = 0, $sr_1202 = 0, $r_sroa_0_1201 = 0, $r_sroa_1_1200 = 0, $q_sroa_0_1199 = 0, $q_sroa_1_1198 = 0, $147 = 0, $149 = 0, $r_sroa_0_0_insert_insert42$0 = 0, $r_sroa_0_0_insert_insert42$1 = 0, $150$1 = 0, $151$0 = 0, $152 = 0, $154$0 = 0, $r_sroa_0_0_extract_trunc = 0, $r_sroa_1_4_extract_trunc = 0, $155 = 0, $carry_0_lcssa$0 = 0, $carry_0_lcssa$1 = 0, $r_sroa_0_1_lcssa = 0, $r_sroa_1_1_lcssa = 0, $q_sroa_0_1_lcssa = 0, $q_sroa_1_1_lcssa = 0, $q_sroa_0_0_insert_ext75$0 = 0, $q_sroa_0_0_insert_ext75$1 = 0, $q_sroa_0_0_insert_insert77$1 = 0, $_0$0 = 0, $_0$1 = 0; + $n_sroa_0_0_extract_trunc = $a$0; + $n_sroa_1_4_extract_shift$0 = $a$1; + $n_sroa_1_4_extract_trunc = $n_sroa_1_4_extract_shift$0; + $d_sroa_0_0_extract_trunc = $b$0; + $d_sroa_1_4_extract_shift$0 = $b$1; + $d_sroa_1_4_extract_trunc = $d_sroa_1_4_extract_shift$0; + if (($n_sroa_1_4_extract_trunc | 0) == 0) { + $4 = ($rem | 0) != 0; + if (($d_sroa_1_4_extract_trunc | 0) == 0) { + if ($4) { + HEAP32[$rem >> 2] = ($n_sroa_0_0_extract_trunc >>> 0) % ($d_sroa_0_0_extract_trunc >>> 0); + HEAP32[$rem + 4 >> 2] = 0; + } + $_0$1 = 0; + $_0$0 = ($n_sroa_0_0_extract_trunc >>> 0) / ($d_sroa_0_0_extract_trunc >>> 0) >>> 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } else { + if (!$4) { + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + HEAP32[$rem >> 2] = $a$0 & -1; + HEAP32[$rem + 4 >> 2] = $a$1 & 0; + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + } + $17 = ($d_sroa_1_4_extract_trunc | 0) == 0; + do { + if (($d_sroa_0_0_extract_trunc | 0) == 0) { + if ($17) { + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = ($n_sroa_1_4_extract_trunc >>> 0) % ($d_sroa_0_0_extract_trunc >>> 0); + HEAP32[$rem + 4 >> 2] = 0; + } + $_0$1 = 0; + $_0$0 = ($n_sroa_1_4_extract_trunc >>> 0) / ($d_sroa_0_0_extract_trunc >>> 0) >>> 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + if (($n_sroa_0_0_extract_trunc | 0) == 0) { + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = 0; + HEAP32[$rem + 4 >> 2] = ($n_sroa_1_4_extract_trunc >>> 0) % ($d_sroa_1_4_extract_trunc >>> 0); + } + $_0$1 = 0; + $_0$0 = ($n_sroa_1_4_extract_trunc >>> 0) / ($d_sroa_1_4_extract_trunc >>> 0) >>> 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + $37 = $d_sroa_1_4_extract_trunc - 1 | 0; + if (($37 & $d_sroa_1_4_extract_trunc | 0) == 0) { + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = 0 | $a$0 & -1; + HEAP32[$rem + 4 >> 2] = $37 & $n_sroa_1_4_extract_trunc | $a$1 & 0; + } + $_0$1 = 0; + $_0$0 = $n_sroa_1_4_extract_trunc >>> ((_llvm_cttz_i32($d_sroa_1_4_extract_trunc | 0) | 0) >>> 0); + return (tempRet0 = $_0$1, $_0$0) | 0; + } + $49 = _llvm_ctlz_i32($d_sroa_1_4_extract_trunc | 0) | 0; + $51 = $49 - (_llvm_ctlz_i32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; + if ($51 >>> 0 <= 30) { + $57 = $51 + 1 | 0; + $58 = 31 - $51 | 0; + $sr_1_ph = $57; + $r_sroa_0_1_ph = $n_sroa_1_4_extract_trunc << $58 | $n_sroa_0_0_extract_trunc >>> ($57 >>> 0); + $r_sroa_1_1_ph = $n_sroa_1_4_extract_trunc >>> ($57 >>> 0); + $q_sroa_0_1_ph = 0; + $q_sroa_1_1_ph = $n_sroa_0_0_extract_trunc << $58; + break; + } + if (($rem | 0) == 0) { + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + HEAP32[$rem >> 2] = 0 | $a$0 & -1; + HEAP32[$rem + 4 >> 2] = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } else { + if (!$17) { + $117 = _llvm_ctlz_i32($d_sroa_1_4_extract_trunc | 0) | 0; + $119 = $117 - (_llvm_ctlz_i32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; + if ($119 >>> 0 <= 31) { + $125 = $119 + 1 | 0; + $126 = 31 - $119 | 0; + $130 = $119 - 31 >> 31; + $sr_1_ph = $125; + $r_sroa_0_1_ph = $n_sroa_0_0_extract_trunc >>> ($125 >>> 0) & $130 | $n_sroa_1_4_extract_trunc << $126; + $r_sroa_1_1_ph = $n_sroa_1_4_extract_trunc >>> ($125 >>> 0) & $130; + $q_sroa_0_1_ph = 0; + $q_sroa_1_1_ph = $n_sroa_0_0_extract_trunc << $126; + break; + } + if (($rem | 0) == 0) { + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + HEAP32[$rem >> 2] = 0 | $a$0 & -1; + HEAP32[$rem + 4 >> 2] = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + $66 = $d_sroa_0_0_extract_trunc - 1 | 0; + if (($66 & $d_sroa_0_0_extract_trunc | 0) != 0) { + $86 = (_llvm_ctlz_i32($d_sroa_0_0_extract_trunc | 0) | 0) + 33 | 0; + $88 = $86 - (_llvm_ctlz_i32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; + $89 = 64 - $88 | 0; + $91 = 32 - $88 | 0; + $92 = $91 >> 31; + $95 = $88 - 32 | 0; + $105 = $95 >> 31; + $sr_1_ph = $88; + $r_sroa_0_1_ph = $91 - 1 >> 31 & $n_sroa_1_4_extract_trunc >>> ($95 >>> 0) | ($n_sroa_1_4_extract_trunc << $91 | $n_sroa_0_0_extract_trunc >>> ($88 >>> 0)) & $105; + $r_sroa_1_1_ph = $105 & $n_sroa_1_4_extract_trunc >>> ($88 >>> 0); + $q_sroa_0_1_ph = $n_sroa_0_0_extract_trunc << $89 & $92; + $q_sroa_1_1_ph = ($n_sroa_1_4_extract_trunc << $89 | $n_sroa_0_0_extract_trunc >>> ($95 >>> 0)) & $92 | $n_sroa_0_0_extract_trunc << $91 & $88 - 33 >> 31; + break; + } + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = $66 & $n_sroa_0_0_extract_trunc; + HEAP32[$rem + 4 >> 2] = 0; + } + if (($d_sroa_0_0_extract_trunc | 0) == 1) { + $_0$1 = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; + $_0$0 = 0 | $a$0 & -1; + return (tempRet0 = $_0$1, $_0$0) | 0; + } else { + $78 = _llvm_cttz_i32($d_sroa_0_0_extract_trunc | 0) | 0; + $_0$1 = 0 | $n_sroa_1_4_extract_trunc >>> ($78 >>> 0); + $_0$0 = $n_sroa_1_4_extract_trunc << 32 - $78 | $n_sroa_0_0_extract_trunc >>> ($78 >>> 0) | 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + } + } while (0); + if (($sr_1_ph | 0) == 0) { + $q_sroa_1_1_lcssa = $q_sroa_1_1_ph; + $q_sroa_0_1_lcssa = $q_sroa_0_1_ph; + $r_sroa_1_1_lcssa = $r_sroa_1_1_ph; + $r_sroa_0_1_lcssa = $r_sroa_0_1_ph; + $carry_0_lcssa$1 = 0; + $carry_0_lcssa$0 = 0; + } else { + $d_sroa_0_0_insert_insert99$0 = 0 | $b$0 & -1; + $d_sroa_0_0_insert_insert99$1 = $d_sroa_1_4_extract_shift$0 | $b$1 & 0; + $137$0 = _i64Add($d_sroa_0_0_insert_insert99$0, $d_sroa_0_0_insert_insert99$1, -1, -1) | 0; + $137$1 = tempRet0; + $q_sroa_1_1198 = $q_sroa_1_1_ph; + $q_sroa_0_1199 = $q_sroa_0_1_ph; + $r_sroa_1_1200 = $r_sroa_1_1_ph; + $r_sroa_0_1201 = $r_sroa_0_1_ph; + $sr_1202 = $sr_1_ph; + $carry_0203 = 0; + while (1) { + $147 = $q_sroa_0_1199 >>> 31 | $q_sroa_1_1198 << 1; + $149 = $carry_0203 | $q_sroa_0_1199 << 1; + $r_sroa_0_0_insert_insert42$0 = 0 | ($r_sroa_0_1201 << 1 | $q_sroa_1_1198 >>> 31); + $r_sroa_0_0_insert_insert42$1 = $r_sroa_0_1201 >>> 31 | $r_sroa_1_1200 << 1 | 0; + _i64Subtract($137$0, $137$1, $r_sroa_0_0_insert_insert42$0, $r_sroa_0_0_insert_insert42$1) | 0; + $150$1 = tempRet0; + $151$0 = $150$1 >> 31 | (($150$1 | 0) < 0 ? -1 : 0) << 1; + $152 = $151$0 & 1; + $154$0 = _i64Subtract($r_sroa_0_0_insert_insert42$0, $r_sroa_0_0_insert_insert42$1, $151$0 & $d_sroa_0_0_insert_insert99$0, ((($150$1 | 0) < 0 ? -1 : 0) >> 31 | (($150$1 | 0) < 0 ? -1 : 0) << 1) & $d_sroa_0_0_insert_insert99$1) | 0; + $r_sroa_0_0_extract_trunc = $154$0; + $r_sroa_1_4_extract_trunc = tempRet0; + $155 = $sr_1202 - 1 | 0; + if (($155 | 0) == 0) { + break; + } else { + $q_sroa_1_1198 = $147; + $q_sroa_0_1199 = $149; + $r_sroa_1_1200 = $r_sroa_1_4_extract_trunc; + $r_sroa_0_1201 = $r_sroa_0_0_extract_trunc; + $sr_1202 = $155; + $carry_0203 = $152; + } + } + $q_sroa_1_1_lcssa = $147; + $q_sroa_0_1_lcssa = $149; + $r_sroa_1_1_lcssa = $r_sroa_1_4_extract_trunc; + $r_sroa_0_1_lcssa = $r_sroa_0_0_extract_trunc; + $carry_0_lcssa$1 = 0; + $carry_0_lcssa$0 = $152; + } + $q_sroa_0_0_insert_ext75$0 = $q_sroa_0_1_lcssa; + $q_sroa_0_0_insert_ext75$1 = 0; + $q_sroa_0_0_insert_insert77$1 = $q_sroa_1_1_lcssa | $q_sroa_0_0_insert_ext75$1; + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = 0 | $r_sroa_0_1_lcssa; + HEAP32[$rem + 4 >> 2] = $r_sroa_1_1_lcssa | 0; + } + $_0$1 = (0 | $q_sroa_0_0_insert_ext75$0) >>> 31 | $q_sroa_0_0_insert_insert77$1 << 1 | ($q_sroa_0_0_insert_ext75$1 << 1 | $q_sroa_0_0_insert_ext75$0 >>> 31) & 0 | $carry_0_lcssa$1; + $_0$0 = ($q_sroa_0_0_insert_ext75$0 << 1 | 0 >>> 31) & -2 | $carry_0_lcssa$0; + return (tempRet0 = $_0$1, $_0$0) | 0; +} +// ======================================================================= + + + +// EMSCRIPTEN_END_FUNCS + + + + // EMSCRIPTEN_END_FUNCS + + + return { _curve25519_verify: _curve25519_verify, _crypto_sign_ed25519_ref10_ge_scalarmult_base: _crypto_sign_ed25519_ref10_ge_scalarmult_base, _curve25519_sign: _curve25519_sign, _free: _free, _i64Add: _i64Add, _memmove: _memmove, _bitshift64Ashr: _bitshift64Ashr, _sph_sha512_init: _sph_sha512_init, _curve25519_donna: _curve25519_donna, _memset: _memset, _malloc: _malloc, _memcpy: _memcpy, _strlen: _strlen, _bitshift64Lshr: _bitshift64Lshr, _i64Subtract: _i64Subtract, _bitshift64Shl: _bitshift64Shl, runPostSets: runPostSets, stackAlloc: stackAlloc, stackSave: stackSave, stackRestore: stackRestore, setThrew: setThrew, setTempRet0: setTempRet0, getTempRet0: getTempRet0 }; +}) +// EMSCRIPTEN_END_ASM +(Module.asmGlobalArg, Module.asmLibraryArg, buffer); +var _curve25519_verify = Module["_curve25519_verify"] = asm["_curve25519_verify"]; +var _crypto_sign_ed25519_ref10_ge_scalarmult_base = Module["_crypto_sign_ed25519_ref10_ge_scalarmult_base"] = asm["_crypto_sign_ed25519_ref10_ge_scalarmult_base"]; +var _curve25519_sign = Module["_curve25519_sign"] = asm["_curve25519_sign"]; +var _free = Module["_free"] = asm["_free"]; +var _i64Add = Module["_i64Add"] = asm["_i64Add"]; +var _memmove = Module["_memmove"] = asm["_memmove"]; +var _bitshift64Ashr = Module["_bitshift64Ashr"] = asm["_bitshift64Ashr"]; +var _sph_sha512_init = Module["_sph_sha512_init"] = asm["_sph_sha512_init"]; +var _curve25519_donna = Module["_curve25519_donna"] = asm["_curve25519_donna"]; +var _memset = Module["_memset"] = asm["_memset"]; +var _malloc = Module["_malloc"] = asm["_malloc"]; +var _memcpy = Module["_memcpy"] = asm["_memcpy"]; +var _strlen = Module["_strlen"] = asm["_strlen"]; +var _bitshift64Lshr = Module["_bitshift64Lshr"] = asm["_bitshift64Lshr"]; +var _i64Subtract = Module["_i64Subtract"] = asm["_i64Subtract"]; +var _bitshift64Shl = Module["_bitshift64Shl"] = asm["_bitshift64Shl"]; +var runPostSets = Module["runPostSets"] = asm["runPostSets"]; + +Runtime.stackAlloc = asm['stackAlloc']; +Runtime.stackSave = asm['stackSave']; +Runtime.stackRestore = asm['stackRestore']; +Runtime.setTempRet0 = asm['setTempRet0']; +Runtime.getTempRet0 = asm['getTempRet0']; + + +// TODO: strip out parts of this we do not need + +//======= begin closure i64 code ======= + +// Copyright 2009 The Closure Library Authors. All Rights Reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS-IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +/** + * @fileoverview Defines a Long class for representing a 64-bit two's-complement + * integer value, which faithfully simulates the behavior of a Java "long". This + * implementation is derived from LongLib in GWT. + * + */ + +var i64Math = (function() { // Emscripten wrapper + var goog = { math: {} }; + + + /** + * Constructs a 64-bit two's-complement integer, given its low and high 32-bit + * values as *signed* integers. See the from* functions below for more + * convenient ways of constructing Longs. + * + * The internal representation of a long is the two given signed, 32-bit values. + * We use 32-bit pieces because these are the size of integers on which + * Javascript performs bit-operations. For operations like addition and + * multiplication, we split each number into 16-bit pieces, which can easily be + * multiplied within Javascript's floating-point representation without overflow + * or change in sign. + * + * In the algorithms below, we frequently reduce the negative case to the + * positive case by negating the input(s) and then post-processing the result. + * Note that we must ALWAYS check specially whether those values are MIN_VALUE + * (-2^63) because -MIN_VALUE == MIN_VALUE (since 2^63 cannot be represented as + * a positive number, it overflows back into a negative). Not handling this + * case would often result in infinite recursion. + * + * @param {number} low The low (signed) 32 bits of the long. + * @param {number} high The high (signed) 32 bits of the long. + * @constructor + */ + goog.math.Long = function(low, high) { + /** + * @type {number} + * @private + */ + this.low_ = low | 0; // force into 32 signed bits. + + /** + * @type {number} + * @private + */ + this.high_ = high | 0; // force into 32 signed bits. + }; + + + // NOTE: Common constant values ZERO, ONE, NEG_ONE, etc. are defined below the + // from* methods on which they depend. + + + /** + * A cache of the Long representations of small integer values. + * @type {!Object} + * @private + */ + goog.math.Long.IntCache_ = {}; + + + /** + * Returns a Long representing the given (32-bit) integer value. + * @param {number} value The 32-bit integer in question. + * @return {!goog.math.Long} The corresponding Long value. + */ + goog.math.Long.fromInt = function(value) { + if (-128 <= value && value < 128) { + var cachedObj = goog.math.Long.IntCache_[value]; + if (cachedObj) { + return cachedObj; + } + } + + var obj = new goog.math.Long(value | 0, value < 0 ? -1 : 0); + if (-128 <= value && value < 128) { + goog.math.Long.IntCache_[value] = obj; + } + return obj; + }; + + + /** + * Returns a Long representing the given value, provided that it is a finite + * number. Otherwise, zero is returned. + * @param {number} value The number in question. + * @return {!goog.math.Long} The corresponding Long value. + */ + goog.math.Long.fromNumber = function(value) { + if (isNaN(value) || !isFinite(value)) { + return goog.math.Long.ZERO; + } else if (value <= -goog.math.Long.TWO_PWR_63_DBL_) { + return goog.math.Long.MIN_VALUE; + } else if (value + 1 >= goog.math.Long.TWO_PWR_63_DBL_) { + return goog.math.Long.MAX_VALUE; + } else if (value < 0) { + return goog.math.Long.fromNumber(-value).negate(); + } else { + return new goog.math.Long( + (value % goog.math.Long.TWO_PWR_32_DBL_) | 0, + (value / goog.math.Long.TWO_PWR_32_DBL_) | 0); + } + }; + + + /** + * Returns a Long representing the 64-bit integer that comes by concatenating + * the given high and low bits. Each is assumed to use 32 bits. + * @param {number} lowBits The low 32-bits. + * @param {number} highBits The high 32-bits. + * @return {!goog.math.Long} The corresponding Long value. + */ + goog.math.Long.fromBits = function(lowBits, highBits) { + return new goog.math.Long(lowBits, highBits); + }; + + + /** + * Returns a Long representation of the given string, written using the given + * radix. + * @param {string} str The textual representation of the Long. + * @param {number=} opt_radix The radix in which the text is written. + * @return {!goog.math.Long} The corresponding Long value. + */ + goog.math.Long.fromString = function(str, opt_radix) { + if (str.length == 0) { + throw Error('number format error: empty string'); + } + + var radix = opt_radix || 10; + if (radix < 2 || 36 < radix) { + throw Error('radix out of range: ' + radix); + } + + if (str.charAt(0) == '-') { + return goog.math.Long.fromString(str.substring(1), radix).negate(); + } else if (str.indexOf('-') >= 0) { + throw Error('number format error: interior "-" character: ' + str); + } + + // Do several (8) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + var radixToPower = goog.math.Long.fromNumber(Math.pow(radix, 8)); + + var result = goog.math.Long.ZERO; + for (var i = 0; i < str.length; i += 8) { + var size = Math.min(8, str.length - i); + var value = parseInt(str.substring(i, i + size), radix); + if (size < 8) { + var power = goog.math.Long.fromNumber(Math.pow(radix, size)); + result = result.multiply(power).add(goog.math.Long.fromNumber(value)); + } else { + result = result.multiply(radixToPower); + result = result.add(goog.math.Long.fromNumber(value)); + } + } + return result; + }; + + + // NOTE: the compiler should inline these constant values below and then remove + // these variables, so there should be no runtime penalty for these. + + + /** + * Number used repeated below in calculations. This must appear before the + * first call to any from* function below. + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_16_DBL_ = 1 << 16; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_24_DBL_ = 1 << 24; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_32_DBL_ = + goog.math.Long.TWO_PWR_16_DBL_ * goog.math.Long.TWO_PWR_16_DBL_; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_31_DBL_ = + goog.math.Long.TWO_PWR_32_DBL_ / 2; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_48_DBL_ = + goog.math.Long.TWO_PWR_32_DBL_ * goog.math.Long.TWO_PWR_16_DBL_; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_64_DBL_ = + goog.math.Long.TWO_PWR_32_DBL_ * goog.math.Long.TWO_PWR_32_DBL_; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_63_DBL_ = + goog.math.Long.TWO_PWR_64_DBL_ / 2; + + + /** @type {!goog.math.Long} */ + goog.math.Long.ZERO = goog.math.Long.fromInt(0); + + + /** @type {!goog.math.Long} */ + goog.math.Long.ONE = goog.math.Long.fromInt(1); + + + /** @type {!goog.math.Long} */ + goog.math.Long.NEG_ONE = goog.math.Long.fromInt(-1); + + + /** @type {!goog.math.Long} */ + goog.math.Long.MAX_VALUE = + goog.math.Long.fromBits(0xFFFFFFFF | 0, 0x7FFFFFFF | 0); + + + /** @type {!goog.math.Long} */ + goog.math.Long.MIN_VALUE = goog.math.Long.fromBits(0, 0x80000000 | 0); + + + /** + * @type {!goog.math.Long} + * @private + */ + goog.math.Long.TWO_PWR_24_ = goog.math.Long.fromInt(1 << 24); + + + /** @return {number} The value, assuming it is a 32-bit integer. */ + goog.math.Long.prototype.toInt = function() { + return this.low_; + }; + + + /** @return {number} The closest floating-point representation to this value. */ + goog.math.Long.prototype.toNumber = function() { + return this.high_ * goog.math.Long.TWO_PWR_32_DBL_ + + this.getLowBitsUnsigned(); + }; + + + /** + * @param {number=} opt_radix The radix in which the text should be written. + * @return {string} The textual representation of this value. + */ + goog.math.Long.prototype.toString = function(opt_radix) { + var radix = opt_radix || 10; + if (radix < 2 || 36 < radix) { + throw Error('radix out of range: ' + radix); + } + + if (this.isZero()) { + return '0'; + } + + if (this.isNegative()) { + if (this.equals(goog.math.Long.MIN_VALUE)) { + // We need to change the Long value before it can be negated, so we remove + // the bottom-most digit in this base and then recurse to do the rest. + var radixLong = goog.math.Long.fromNumber(radix); + var div = this.div(radixLong); + var rem = div.multiply(radixLong).subtract(this); + return div.toString(radix) + rem.toInt().toString(radix); + } else { + return '-' + this.negate().toString(radix); + } + } + + // Do several (6) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + var radixToPower = goog.math.Long.fromNumber(Math.pow(radix, 6)); + + var rem = this; + var result = ''; + while (true) { + var remDiv = rem.div(radixToPower); + var intval = rem.subtract(remDiv.multiply(radixToPower)).toInt(); + var digits = intval.toString(radix); + + rem = remDiv; + if (rem.isZero()) { + return digits + result; + } else { + while (digits.length < 6) { + digits = '0' + digits; + } + result = '' + digits + result; + } + } + }; + + + /** @return {number} The high 32-bits as a signed value. */ + goog.math.Long.prototype.getHighBits = function() { + return this.high_; + }; + + + /** @return {number} The low 32-bits as a signed value. */ + goog.math.Long.prototype.getLowBits = function() { + return this.low_; + }; + + + /** @return {number} The low 32-bits as an unsigned value. */ + goog.math.Long.prototype.getLowBitsUnsigned = function() { + return (this.low_ >= 0) ? + this.low_ : goog.math.Long.TWO_PWR_32_DBL_ + this.low_; + }; + + + /** + * @return {number} Returns the number of bits needed to represent the absolute + * value of this Long. + */ + goog.math.Long.prototype.getNumBitsAbs = function() { + if (this.isNegative()) { + if (this.equals(goog.math.Long.MIN_VALUE)) { + return 64; + } else { + return this.negate().getNumBitsAbs(); + } + } else { + var val = this.high_ != 0 ? this.high_ : this.low_; + for (var bit = 31; bit > 0; bit--) { + if ((val & (1 << bit)) != 0) { + break; + } + } + return this.high_ != 0 ? bit + 33 : bit + 1; + } + }; + + + /** @return {boolean} Whether this value is zero. */ + goog.math.Long.prototype.isZero = function() { + return this.high_ == 0 && this.low_ == 0; + }; + + + /** @return {boolean} Whether this value is negative. */ + goog.math.Long.prototype.isNegative = function() { + return this.high_ < 0; + }; + + + /** @return {boolean} Whether this value is odd. */ + goog.math.Long.prototype.isOdd = function() { + return (this.low_ & 1) == 1; + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long equals the other. + */ + goog.math.Long.prototype.equals = function(other) { + return (this.high_ == other.high_) && (this.low_ == other.low_); + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long does not equal the other. + */ + goog.math.Long.prototype.notEquals = function(other) { + return (this.high_ != other.high_) || (this.low_ != other.low_); + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long is less than the other. + */ + goog.math.Long.prototype.lessThan = function(other) { + return this.compare(other) < 0; + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long is less than or equal to the other. + */ + goog.math.Long.prototype.lessThanOrEqual = function(other) { + return this.compare(other) <= 0; + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long is greater than the other. + */ + goog.math.Long.prototype.greaterThan = function(other) { + return this.compare(other) > 0; + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long is greater than or equal to the other. + */ + goog.math.Long.prototype.greaterThanOrEqual = function(other) { + return this.compare(other) >= 0; + }; + + + /** + * Compares this Long with the given one. + * @param {goog.math.Long} other Long to compare against. + * @return {number} 0 if they are the same, 1 if the this is greater, and -1 + * if the given one is greater. + */ + goog.math.Long.prototype.compare = function(other) { + if (this.equals(other)) { + return 0; + } + + var thisNeg = this.isNegative(); + var otherNeg = other.isNegative(); + if (thisNeg && !otherNeg) { + return -1; + } + if (!thisNeg && otherNeg) { + return 1; + } + + // at this point, the signs are the same, so subtraction will not overflow + if (this.subtract(other).isNegative()) { + return -1; + } else { + return 1; + } + }; + + + /** @return {!goog.math.Long} The negation of this value. */ + goog.math.Long.prototype.negate = function() { + if (this.equals(goog.math.Long.MIN_VALUE)) { + return goog.math.Long.MIN_VALUE; + } else { + return this.not().add(goog.math.Long.ONE); + } + }; + + + /** + * Returns the sum of this and the given Long. + * @param {goog.math.Long} other Long to add to this one. + * @return {!goog.math.Long} The sum of this and the given Long. + */ + goog.math.Long.prototype.add = function(other) { + // Divide each number into 4 chunks of 16 bits, and then sum the chunks. + + var a48 = this.high_ >>> 16; + var a32 = this.high_ & 0xFFFF; + var a16 = this.low_ >>> 16; + var a00 = this.low_ & 0xFFFF; + + var b48 = other.high_ >>> 16; + var b32 = other.high_ & 0xFFFF; + var b16 = other.low_ >>> 16; + var b00 = other.low_ & 0xFFFF; + + var c48 = 0, c32 = 0, c16 = 0, c00 = 0; + c00 += a00 + b00; + c16 += c00 >>> 16; + c00 &= 0xFFFF; + c16 += a16 + b16; + c32 += c16 >>> 16; + c16 &= 0xFFFF; + c32 += a32 + b32; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c48 += a48 + b48; + c48 &= 0xFFFF; + return goog.math.Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32); + }; + + + /** + * Returns the difference of this and the given Long. + * @param {goog.math.Long} other Long to subtract from this. + * @return {!goog.math.Long} The difference of this and the given Long. + */ + goog.math.Long.prototype.subtract = function(other) { + return this.add(other.negate()); + }; + + + /** + * Returns the product of this and the given long. + * @param {goog.math.Long} other Long to multiply with this. + * @return {!goog.math.Long} The product of this and the other. + */ + goog.math.Long.prototype.multiply = function(other) { + if (this.isZero()) { + return goog.math.Long.ZERO; + } else if (other.isZero()) { + return goog.math.Long.ZERO; + } + + if (this.equals(goog.math.Long.MIN_VALUE)) { + return other.isOdd() ? goog.math.Long.MIN_VALUE : goog.math.Long.ZERO; + } else if (other.equals(goog.math.Long.MIN_VALUE)) { + return this.isOdd() ? goog.math.Long.MIN_VALUE : goog.math.Long.ZERO; + } + + if (this.isNegative()) { + if (other.isNegative()) { + return this.negate().multiply(other.negate()); + } else { + return this.negate().multiply(other).negate(); + } + } else if (other.isNegative()) { + return this.multiply(other.negate()).negate(); + } + + // If both longs are small, use float multiplication + if (this.lessThan(goog.math.Long.TWO_PWR_24_) && + other.lessThan(goog.math.Long.TWO_PWR_24_)) { + return goog.math.Long.fromNumber(this.toNumber() * other.toNumber()); + } + + // Divide each long into 4 chunks of 16 bits, and then add up 4x4 products. + // We can skip products that would overflow. + + var a48 = this.high_ >>> 16; + var a32 = this.high_ & 0xFFFF; + var a16 = this.low_ >>> 16; + var a00 = this.low_ & 0xFFFF; + + var b48 = other.high_ >>> 16; + var b32 = other.high_ & 0xFFFF; + var b16 = other.low_ >>> 16; + var b00 = other.low_ & 0xFFFF; + + var c48 = 0, c32 = 0, c16 = 0, c00 = 0; + c00 += a00 * b00; + c16 += c00 >>> 16; + c00 &= 0xFFFF; + c16 += a16 * b00; + c32 += c16 >>> 16; + c16 &= 0xFFFF; + c16 += a00 * b16; + c32 += c16 >>> 16; + c16 &= 0xFFFF; + c32 += a32 * b00; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c32 += a16 * b16; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c32 += a00 * b32; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c48 += a48 * b00 + a32 * b16 + a16 * b32 + a00 * b48; + c48 &= 0xFFFF; + return goog.math.Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32); + }; + + + /** + * Returns this Long divided by the given one. + * @param {goog.math.Long} other Long by which to divide. + * @return {!goog.math.Long} This Long divided by the given one. + */ + goog.math.Long.prototype.div = function(other) { + if (other.isZero()) { + throw Error('division by zero'); + } else if (this.isZero()) { + return goog.math.Long.ZERO; + } + + if (this.equals(goog.math.Long.MIN_VALUE)) { + if (other.equals(goog.math.Long.ONE) || + other.equals(goog.math.Long.NEG_ONE)) { + return goog.math.Long.MIN_VALUE; // recall that -MIN_VALUE == MIN_VALUE + } else if (other.equals(goog.math.Long.MIN_VALUE)) { + return goog.math.Long.ONE; + } else { + // At this point, we have |other| >= 2, so |this/other| < |MIN_VALUE|. + var halfThis = this.shiftRight(1); + var approx = halfThis.div(other).shiftLeft(1); + if (approx.equals(goog.math.Long.ZERO)) { + return other.isNegative() ? goog.math.Long.ONE : goog.math.Long.NEG_ONE; + } else { + var rem = this.subtract(other.multiply(approx)); + var result = approx.add(rem.div(other)); + return result; + } + } + } else if (other.equals(goog.math.Long.MIN_VALUE)) { + return goog.math.Long.ZERO; + } + + if (this.isNegative()) { + if (other.isNegative()) { + return this.negate().div(other.negate()); + } else { + return this.negate().div(other).negate(); + } + } else if (other.isNegative()) { + return this.div(other.negate()).negate(); + } + + // Repeat the following until the remainder is less than other: find a + // floating-point that approximates remainder / other *from below*, add this + // into the result, and subtract it from the remainder. It is critical that + // the approximate value is less than or equal to the real value so that the + // remainder never becomes negative. + var res = goog.math.Long.ZERO; + var rem = this; + while (rem.greaterThanOrEqual(other)) { + // Approximate the result of division. This may be a little greater or + // smaller than the actual value. + var approx = Math.max(1, Math.floor(rem.toNumber() / other.toNumber())); + + // We will tweak the approximate result by changing it in the 48-th digit or + // the smallest non-fractional digit, whichever is larger. + var log2 = Math.ceil(Math.log(approx) / Math.LN2); + var delta = (log2 <= 48) ? 1 : Math.pow(2, log2 - 48); + + // Decrease the approximation until it is smaller than the remainder. Note + // that if it is too large, the product overflows and is negative. + var approxRes = goog.math.Long.fromNumber(approx); + var approxRem = approxRes.multiply(other); + while (approxRem.isNegative() || approxRem.greaterThan(rem)) { + approx -= delta; + approxRes = goog.math.Long.fromNumber(approx); + approxRem = approxRes.multiply(other); + } + + // We know the answer can't be zero... and actually, zero would cause + // infinite recursion since we would make no progress. + if (approxRes.isZero()) { + approxRes = goog.math.Long.ONE; + } + + res = res.add(approxRes); + rem = rem.subtract(approxRem); + } + return res; + }; + + + /** + * Returns this Long modulo the given one. + * @param {goog.math.Long} other Long by which to mod. + * @return {!goog.math.Long} This Long modulo the given one. + */ + goog.math.Long.prototype.modulo = function(other) { + return this.subtract(this.div(other).multiply(other)); + }; + + + /** @return {!goog.math.Long} The bitwise-NOT of this value. */ + goog.math.Long.prototype.not = function() { + return goog.math.Long.fromBits(~this.low_, ~this.high_); + }; + + + /** + * Returns the bitwise-AND of this Long and the given one. + * @param {goog.math.Long} other The Long with which to AND. + * @return {!goog.math.Long} The bitwise-AND of this and the other. + */ + goog.math.Long.prototype.and = function(other) { + return goog.math.Long.fromBits(this.low_ & other.low_, + this.high_ & other.high_); + }; + + + /** + * Returns the bitwise-OR of this Long and the given one. + * @param {goog.math.Long} other The Long with which to OR. + * @return {!goog.math.Long} The bitwise-OR of this and the other. + */ + goog.math.Long.prototype.or = function(other) { + return goog.math.Long.fromBits(this.low_ | other.low_, + this.high_ | other.high_); + }; + + + /** + * Returns the bitwise-XOR of this Long and the given one. + * @param {goog.math.Long} other The Long with which to XOR. + * @return {!goog.math.Long} The bitwise-XOR of this and the other. + */ + goog.math.Long.prototype.xor = function(other) { + return goog.math.Long.fromBits(this.low_ ^ other.low_, + this.high_ ^ other.high_); + }; + + + /** + * Returns this Long with bits shifted to the left by the given amount. + * @param {number} numBits The number of bits by which to shift. + * @return {!goog.math.Long} This shifted to the left by the given amount. + */ + goog.math.Long.prototype.shiftLeft = function(numBits) { + numBits &= 63; + if (numBits == 0) { + return this; + } else { + var low = this.low_; + if (numBits < 32) { + var high = this.high_; + return goog.math.Long.fromBits( + low << numBits, + (high << numBits) | (low >>> (32 - numBits))); + } else { + return goog.math.Long.fromBits(0, low << (numBits - 32)); + } + } + }; + + + /** + * Returns this Long with bits shifted to the right by the given amount. + * @param {number} numBits The number of bits by which to shift. + * @return {!goog.math.Long} This shifted to the right by the given amount. + */ + goog.math.Long.prototype.shiftRight = function(numBits) { + numBits &= 63; + if (numBits == 0) { + return this; + } else { + var high = this.high_; + if (numBits < 32) { + var low = this.low_; + return goog.math.Long.fromBits( + (low >>> numBits) | (high << (32 - numBits)), + high >> numBits); + } else { + return goog.math.Long.fromBits( + high >> (numBits - 32), + high >= 0 ? 0 : -1); + } + } + }; + + + /** + * Returns this Long with bits shifted to the right by the given amount, with + * the new top bits matching the current sign bit. + * @param {number} numBits The number of bits by which to shift. + * @return {!goog.math.Long} This shifted to the right by the given amount, with + * zeros placed into the new leading bits. + */ + goog.math.Long.prototype.shiftRightUnsigned = function(numBits) { + numBits &= 63; + if (numBits == 0) { + return this; + } else { + var high = this.high_; + if (numBits < 32) { + var low = this.low_; + return goog.math.Long.fromBits( + (low >>> numBits) | (high << (32 - numBits)), + high >>> numBits); + } else if (numBits == 32) { + return goog.math.Long.fromBits(high, 0); + } else { + return goog.math.Long.fromBits(high >>> (numBits - 32), 0); + } + } + }; + + //======= begin jsbn ======= + + var navigator = { appName: 'Modern Browser' }; // polyfill a little + + // Copyright (c) 2005 Tom Wu + // All Rights Reserved. + // http://www-cs-students.stanford.edu/~tjw/jsbn/ + + /* + * Copyright (c) 2003-2005 Tom Wu + * All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, + * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY + * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + * + * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, + * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER + * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF + * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT + * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * In addition, the following condition applies: + * + * All redistributions must retain an intact copy of this copyright notice + * and disclaimer. + */ + + // Basic JavaScript BN library - subset useful for RSA encryption. + + // Bits per digit + var dbits; + + // JavaScript engine analysis + var canary = 0xdeadbeefcafe; + var j_lm = ((canary&0xffffff)==0xefcafe); + + // (public) Constructor + function BigInteger(a,b,c) { + if(a != null) + if("number" == typeof a) this.fromNumber(a,b,c); + else if(b == null && "string" != typeof a) this.fromString(a,256); + else this.fromString(a,b); + } + + // return new, unset BigInteger + function nbi() { return new BigInteger(null); } + + // am: Compute w_j += (x*this_i), propagate carries, + // c is initial carry, returns final carry. + // c < 3*dvalue, x < 2*dvalue, this_i < dvalue + // We need to select the fastest one that works in this environment. + + // am1: use a single mult and divide to get the high bits, + // max digit bits should be 26 because + // max internal value = 2*dvalue^2-2*dvalue (< 2^53) + function am1(i,x,w,j,c,n) { + while(--n >= 0) { + var v = x*this[i++]+w[j]+c; + c = Math.floor(v/0x4000000); + w[j++] = v&0x3ffffff; + } + return c; + } + // am2 avoids a big mult-and-extract completely. + // Max digit bits should be <= 30 because we do bitwise ops + // on values up to 2*hdvalue^2-hdvalue-1 (< 2^31) + function am2(i,x,w,j,c,n) { + var xl = x&0x7fff, xh = x>>15; + while(--n >= 0) { + var l = this[i]&0x7fff; + var h = this[i++]>>15; + var m = xh*l+h*xl; + l = xl*l+((m&0x7fff)<<15)+w[j]+(c&0x3fffffff); + c = (l>>>30)+(m>>>15)+xh*h+(c>>>30); + w[j++] = l&0x3fffffff; + } + return c; + } + // Alternately, set max digit bits to 28 since some + // browsers slow down when dealing with 32-bit numbers. + function am3(i,x,w,j,c,n) { + var xl = x&0x3fff, xh = x>>14; + while(--n >= 0) { + var l = this[i]&0x3fff; + var h = this[i++]>>14; + var m = xh*l+h*xl; + l = xl*l+((m&0x3fff)<<14)+w[j]+c; + c = (l>>28)+(m>>14)+xh*h; + w[j++] = l&0xfffffff; + } + return c; + } + if(j_lm && (navigator.appName == "Microsoft Internet Explorer")) { + BigInteger.prototype.am = am2; + dbits = 30; + } + else if(j_lm && (navigator.appName != "Netscape")) { + BigInteger.prototype.am = am1; + dbits = 26; + } + else { // Mozilla/Netscape seems to prefer am3 + BigInteger.prototype.am = am3; + dbits = 28; + } + + BigInteger.prototype.DB = dbits; + BigInteger.prototype.DM = ((1<= 0; --i) r[i] = this[i]; + r.t = this.t; + r.s = this.s; + } + + // (protected) set from integer value x, -DV <= x < DV + function bnpFromInt(x) { + this.t = 1; + this.s = (x<0)?-1:0; + if(x > 0) this[0] = x; + else if(x < -1) this[0] = x+DV; + else this.t = 0; + } + + // return bigint initialized to value + function nbv(i) { var r = nbi(); r.fromInt(i); return r; } + + // (protected) set from string and radix + function bnpFromString(s,b) { + var k; + if(b == 16) k = 4; + else if(b == 8) k = 3; + else if(b == 256) k = 8; // byte array + else if(b == 2) k = 1; + else if(b == 32) k = 5; + else if(b == 4) k = 2; + else { this.fromRadix(s,b); return; } + this.t = 0; + this.s = 0; + var i = s.length, mi = false, sh = 0; + while(--i >= 0) { + var x = (k==8)?s[i]&0xff:intAt(s,i); + if(x < 0) { + if(s.charAt(i) == "-") mi = true; + continue; + } + mi = false; + if(sh == 0) + this[this.t++] = x; + else if(sh+k > this.DB) { + this[this.t-1] |= (x&((1<<(this.DB-sh))-1))<>(this.DB-sh)); + } + else + this[this.t-1] |= x<= this.DB) sh -= this.DB; + } + if(k == 8 && (s[0]&0x80) != 0) { + this.s = -1; + if(sh > 0) this[this.t-1] |= ((1<<(this.DB-sh))-1)< 0 && this[this.t-1] == c) --this.t; + } + + // (public) return string representation in given radix + function bnToString(b) { + if(this.s < 0) return "-"+this.negate().toString(b); + var k; + if(b == 16) k = 4; + else if(b == 8) k = 3; + else if(b == 2) k = 1; + else if(b == 32) k = 5; + else if(b == 4) k = 2; + else return this.toRadix(b); + var km = (1< 0) { + if(p < this.DB && (d = this[i]>>p) > 0) { m = true; r = int2char(d); } + while(i >= 0) { + if(p < k) { + d = (this[i]&((1<>(p+=this.DB-k); + } + else { + d = (this[i]>>(p-=k))&km; + if(p <= 0) { p += this.DB; --i; } + } + if(d > 0) m = true; + if(m) r += int2char(d); + } + } + return m?r:"0"; + } + + // (public) -this + function bnNegate() { var r = nbi(); BigInteger.ZERO.subTo(this,r); return r; } + + // (public) |this| + function bnAbs() { return (this.s<0)?this.negate():this; } + + // (public) return + if this > a, - if this < a, 0 if equal + function bnCompareTo(a) { + var r = this.s-a.s; + if(r != 0) return r; + var i = this.t; + r = i-a.t; + if(r != 0) return (this.s<0)?-r:r; + while(--i >= 0) if((r=this[i]-a[i]) != 0) return r; + return 0; + } + + // returns bit length of the integer x + function nbits(x) { + var r = 1, t; + if((t=x>>>16) != 0) { x = t; r += 16; } + if((t=x>>8) != 0) { x = t; r += 8; } + if((t=x>>4) != 0) { x = t; r += 4; } + if((t=x>>2) != 0) { x = t; r += 2; } + if((t=x>>1) != 0) { x = t; r += 1; } + return r; + } + + // (public) return the number of bits in "this" + function bnBitLength() { + if(this.t <= 0) return 0; + return this.DB*(this.t-1)+nbits(this[this.t-1]^(this.s&this.DM)); + } + + // (protected) r = this << n*DB + function bnpDLShiftTo(n,r) { + var i; + for(i = this.t-1; i >= 0; --i) r[i+n] = this[i]; + for(i = n-1; i >= 0; --i) r[i] = 0; + r.t = this.t+n; + r.s = this.s; + } + + // (protected) r = this >> n*DB + function bnpDRShiftTo(n,r) { + for(var i = n; i < this.t; ++i) r[i-n] = this[i]; + r.t = Math.max(this.t-n,0); + r.s = this.s; + } + + // (protected) r = this << n + function bnpLShiftTo(n,r) { + var bs = n%this.DB; + var cbs = this.DB-bs; + var bm = (1<= 0; --i) { + r[i+ds+1] = (this[i]>>cbs)|c; + c = (this[i]&bm)<= 0; --i) r[i] = 0; + r[ds] = c; + r.t = this.t+ds+1; + r.s = this.s; + r.clamp(); + } + + // (protected) r = this >> n + function bnpRShiftTo(n,r) { + r.s = this.s; + var ds = Math.floor(n/this.DB); + if(ds >= this.t) { r.t = 0; return; } + var bs = n%this.DB; + var cbs = this.DB-bs; + var bm = (1<>bs; + for(var i = ds+1; i < this.t; ++i) { + r[i-ds-1] |= (this[i]&bm)<>bs; + } + if(bs > 0) r[this.t-ds-1] |= (this.s&bm)<>= this.DB; + } + if(a.t < this.t) { + c -= a.s; + while(i < this.t) { + c += this[i]; + r[i++] = c&this.DM; + c >>= this.DB; + } + c += this.s; + } + else { + c += this.s; + while(i < a.t) { + c -= a[i]; + r[i++] = c&this.DM; + c >>= this.DB; + } + c -= a.s; + } + r.s = (c<0)?-1:0; + if(c < -1) r[i++] = this.DV+c; + else if(c > 0) r[i++] = c; + r.t = i; + r.clamp(); + } + + // (protected) r = this * a, r != this,a (HAC 14.12) + // "this" should be the larger one if appropriate. + function bnpMultiplyTo(a,r) { + var x = this.abs(), y = a.abs(); + var i = x.t; + r.t = i+y.t; + while(--i >= 0) r[i] = 0; + for(i = 0; i < y.t; ++i) r[i+x.t] = x.am(0,y[i],r,i,0,x.t); + r.s = 0; + r.clamp(); + if(this.s != a.s) BigInteger.ZERO.subTo(r,r); + } + + // (protected) r = this^2, r != this (HAC 14.16) + function bnpSquareTo(r) { + var x = this.abs(); + var i = r.t = 2*x.t; + while(--i >= 0) r[i] = 0; + for(i = 0; i < x.t-1; ++i) { + var c = x.am(i,x[i],r,2*i,0,1); + if((r[i+x.t]+=x.am(i+1,2*x[i],r,2*i+1,c,x.t-i-1)) >= x.DV) { + r[i+x.t] -= x.DV; + r[i+x.t+1] = 1; + } + } + if(r.t > 0) r[r.t-1] += x.am(i,x[i],r,2*i,0,1); + r.s = 0; + r.clamp(); + } + + // (protected) divide this by m, quotient and remainder to q, r (HAC 14.20) + // r != q, this != m. q or r may be null. + function bnpDivRemTo(m,q,r) { + var pm = m.abs(); + if(pm.t <= 0) return; + var pt = this.abs(); + if(pt.t < pm.t) { + if(q != null) q.fromInt(0); + if(r != null) this.copyTo(r); + return; + } + if(r == null) r = nbi(); + var y = nbi(), ts = this.s, ms = m.s; + var nsh = this.DB-nbits(pm[pm.t-1]); // normalize modulus + if(nsh > 0) { pm.lShiftTo(nsh,y); pt.lShiftTo(nsh,r); } + else { pm.copyTo(y); pt.copyTo(r); } + var ys = y.t; + var y0 = y[ys-1]; + if(y0 == 0) return; + var yt = y0*(1<1)?y[ys-2]>>this.F2:0); + var d1 = this.FV/yt, d2 = (1<= 0) { + r[r.t++] = 1; + r.subTo(t,r); + } + BigInteger.ONE.dlShiftTo(ys,t); + t.subTo(y,y); // "negative" y so we can replace sub with am later + while(y.t < ys) y[y.t++] = 0; + while(--j >= 0) { + // Estimate quotient digit + var qd = (r[--i]==y0)?this.DM:Math.floor(r[i]*d1+(r[i-1]+e)*d2); + if((r[i]+=y.am(0,qd,r,j,0,ys)) < qd) { // Try it out + y.dlShiftTo(j,t); + r.subTo(t,r); + while(r[i] < --qd) r.subTo(t,r); + } + } + if(q != null) { + r.drShiftTo(ys,q); + if(ts != ms) BigInteger.ZERO.subTo(q,q); + } + r.t = ys; + r.clamp(); + if(nsh > 0) r.rShiftTo(nsh,r); // Denormalize remainder + if(ts < 0) BigInteger.ZERO.subTo(r,r); + } + + // (public) this mod a + function bnMod(a) { + var r = nbi(); + this.abs().divRemTo(a,null,r); + if(this.s < 0 && r.compareTo(BigInteger.ZERO) > 0) a.subTo(r,r); + return r; + } + + // Modular reduction using "classic" algorithm + function Classic(m) { this.m = m; } + function cConvert(x) { + if(x.s < 0 || x.compareTo(this.m) >= 0) return x.mod(this.m); + else return x; + } + function cRevert(x) { return x; } + function cReduce(x) { x.divRemTo(this.m,null,x); } + function cMulTo(x,y,r) { x.multiplyTo(y,r); this.reduce(r); } + function cSqrTo(x,r) { x.squareTo(r); this.reduce(r); } + + Classic.prototype.convert = cConvert; + Classic.prototype.revert = cRevert; + Classic.prototype.reduce = cReduce; + Classic.prototype.mulTo = cMulTo; + Classic.prototype.sqrTo = cSqrTo; + + // (protected) return "-1/this % 2^DB"; useful for Mont. reduction + // justification: + // xy == 1 (mod m) + // xy = 1+km + // xy(2-xy) = (1+km)(1-km) + // x[y(2-xy)] = 1-k^2m^2 + // x[y(2-xy)] == 1 (mod m^2) + // if y is 1/x mod m, then y(2-xy) is 1/x mod m^2 + // should reduce x and y(2-xy) by m^2 at each step to keep size bounded. + // JS multiply "overflows" differently from C/C++, so care is needed here. + function bnpInvDigit() { + if(this.t < 1) return 0; + var x = this[0]; + if((x&1) == 0) return 0; + var y = x&3; // y == 1/x mod 2^2 + y = (y*(2-(x&0xf)*y))&0xf; // y == 1/x mod 2^4 + y = (y*(2-(x&0xff)*y))&0xff; // y == 1/x mod 2^8 + y = (y*(2-(((x&0xffff)*y)&0xffff)))&0xffff; // y == 1/x mod 2^16 + // last step - calculate inverse mod DV directly; + // assumes 16 < DB <= 32 and assumes ability to handle 48-bit ints + y = (y*(2-x*y%this.DV))%this.DV; // y == 1/x mod 2^dbits + // we really want the negative inverse, and -DV < y < DV + return (y>0)?this.DV-y:-y; + } + + // Montgomery reduction + function Montgomery(m) { + this.m = m; + this.mp = m.invDigit(); + this.mpl = this.mp&0x7fff; + this.mph = this.mp>>15; + this.um = (1<<(m.DB-15))-1; + this.mt2 = 2*m.t; + } + + // xR mod m + function montConvert(x) { + var r = nbi(); + x.abs().dlShiftTo(this.m.t,r); + r.divRemTo(this.m,null,r); + if(x.s < 0 && r.compareTo(BigInteger.ZERO) > 0) this.m.subTo(r,r); + return r; + } + + // x/R mod m + function montRevert(x) { + var r = nbi(); + x.copyTo(r); + this.reduce(r); + return r; + } + + // x = x/R mod m (HAC 14.32) + function montReduce(x) { + while(x.t <= this.mt2) // pad x so am has enough room later + x[x.t++] = 0; + for(var i = 0; i < this.m.t; ++i) { + // faster way of calculating u0 = x[i]*mp mod DV + var j = x[i]&0x7fff; + var u0 = (j*this.mpl+(((j*this.mph+(x[i]>>15)*this.mpl)&this.um)<<15))&x.DM; + // use am to combine the multiply-shift-add into one call + j = i+this.m.t; + x[j] += this.m.am(0,u0,x,i,0,this.m.t); + // propagate carry + while(x[j] >= x.DV) { x[j] -= x.DV; x[++j]++; } + } + x.clamp(); + x.drShiftTo(this.m.t,x); + if(x.compareTo(this.m) >= 0) x.subTo(this.m,x); + } + + // r = "x^2/R mod m"; x != r + function montSqrTo(x,r) { x.squareTo(r); this.reduce(r); } + + // r = "xy/R mod m"; x,y != r + function montMulTo(x,y,r) { x.multiplyTo(y,r); this.reduce(r); } + + Montgomery.prototype.convert = montConvert; + Montgomery.prototype.revert = montRevert; + Montgomery.prototype.reduce = montReduce; + Montgomery.prototype.mulTo = montMulTo; + Montgomery.prototype.sqrTo = montSqrTo; + + // (protected) true iff this is even + function bnpIsEven() { return ((this.t>0)?(this[0]&1):this.s) == 0; } + + // (protected) this^e, e < 2^32, doing sqr and mul with "r" (HAC 14.79) + function bnpExp(e,z) { + if(e > 0xffffffff || e < 1) return BigInteger.ONE; + var r = nbi(), r2 = nbi(), g = z.convert(this), i = nbits(e)-1; + g.copyTo(r); + while(--i >= 0) { + z.sqrTo(r,r2); + if((e&(1< 0) z.mulTo(r2,g,r); + else { var t = r; r = r2; r2 = t; } + } + return z.revert(r); + } + + // (public) this^e % m, 0 <= e < 2^32 + function bnModPowInt(e,m) { + var z; + if(e < 256 || m.isEven()) z = new Classic(m); else z = new Montgomery(m); + return this.exp(e,z); + } + + // protected + BigInteger.prototype.copyTo = bnpCopyTo; + BigInteger.prototype.fromInt = bnpFromInt; + BigInteger.prototype.fromString = bnpFromString; + BigInteger.prototype.clamp = bnpClamp; + BigInteger.prototype.dlShiftTo = bnpDLShiftTo; + BigInteger.prototype.drShiftTo = bnpDRShiftTo; + BigInteger.prototype.lShiftTo = bnpLShiftTo; + BigInteger.prototype.rShiftTo = bnpRShiftTo; + BigInteger.prototype.subTo = bnpSubTo; + BigInteger.prototype.multiplyTo = bnpMultiplyTo; + BigInteger.prototype.squareTo = bnpSquareTo; + BigInteger.prototype.divRemTo = bnpDivRemTo; + BigInteger.prototype.invDigit = bnpInvDigit; + BigInteger.prototype.isEven = bnpIsEven; + BigInteger.prototype.exp = bnpExp; + + // public + BigInteger.prototype.toString = bnToString; + BigInteger.prototype.negate = bnNegate; + BigInteger.prototype.abs = bnAbs; + BigInteger.prototype.compareTo = bnCompareTo; + BigInteger.prototype.bitLength = bnBitLength; + BigInteger.prototype.mod = bnMod; + BigInteger.prototype.modPowInt = bnModPowInt; + + // "constants" + BigInteger.ZERO = nbv(0); + BigInteger.ONE = nbv(1); + + // jsbn2 stuff + + // (protected) convert from radix string + function bnpFromRadix(s,b) { + this.fromInt(0); + if(b == null) b = 10; + var cs = this.chunkSize(b); + var d = Math.pow(b,cs), mi = false, j = 0, w = 0; + for(var i = 0; i < s.length; ++i) { + var x = intAt(s,i); + if(x < 0) { + if(s.charAt(i) == "-" && this.signum() == 0) mi = true; + continue; + } + w = b*w+x; + if(++j >= cs) { + this.dMultiply(d); + this.dAddOffset(w,0); + j = 0; + w = 0; + } + } + if(j > 0) { + this.dMultiply(Math.pow(b,j)); + this.dAddOffset(w,0); + } + if(mi) BigInteger.ZERO.subTo(this,this); + } + + // (protected) return x s.t. r^x < DV + function bnpChunkSize(r) { return Math.floor(Math.LN2*this.DB/Math.log(r)); } + + // (public) 0 if this == 0, 1 if this > 0 + function bnSigNum() { + if(this.s < 0) return -1; + else if(this.t <= 0 || (this.t == 1 && this[0] <= 0)) return 0; + else return 1; + } + + // (protected) this *= n, this >= 0, 1 < n < DV + function bnpDMultiply(n) { + this[this.t] = this.am(0,n-1,this,0,0,this.t); + ++this.t; + this.clamp(); + } + + // (protected) this += n << w words, this >= 0 + function bnpDAddOffset(n,w) { + if(n == 0) return; + while(this.t <= w) this[this.t++] = 0; + this[w] += n; + while(this[w] >= this.DV) { + this[w] -= this.DV; + if(++w >= this.t) this[this.t++] = 0; + ++this[w]; + } + } + + // (protected) convert to radix string + function bnpToRadix(b) { + if(b == null) b = 10; + if(this.signum() == 0 || b < 2 || b > 36) return "0"; + var cs = this.chunkSize(b); + var a = Math.pow(b,cs); + var d = nbv(a), y = nbi(), z = nbi(), r = ""; + this.divRemTo(d,y,z); + while(y.signum() > 0) { + r = (a+z.intValue()).toString(b).substr(1) + r; + y.divRemTo(d,y,z); + } + return z.intValue().toString(b) + r; + } + + // (public) return value as integer + function bnIntValue() { + if(this.s < 0) { + if(this.t == 1) return this[0]-this.DV; + else if(this.t == 0) return -1; + } + else if(this.t == 1) return this[0]; + else if(this.t == 0) return 0; + // assumes 16 < DB < 32 + return ((this[1]&((1<<(32-this.DB))-1))<>= this.DB; + } + if(a.t < this.t) { + c += a.s; + while(i < this.t) { + c += this[i]; + r[i++] = c&this.DM; + c >>= this.DB; + } + c += this.s; + } + else { + c += this.s; + while(i < a.t) { + c += a[i]; + r[i++] = c&this.DM; + c >>= this.DB; + } + c += a.s; + } + r.s = (c<0)?-1:0; + if(c > 0) r[i++] = c; + else if(c < -1) r[i++] = this.DV+c; + r.t = i; + r.clamp(); + } + + BigInteger.prototype.fromRadix = bnpFromRadix; + BigInteger.prototype.chunkSize = bnpChunkSize; + BigInteger.prototype.signum = bnSigNum; + BigInteger.prototype.dMultiply = bnpDMultiply; + BigInteger.prototype.dAddOffset = bnpDAddOffset; + BigInteger.prototype.toRadix = bnpToRadix; + BigInteger.prototype.intValue = bnIntValue; + BigInteger.prototype.addTo = bnpAddTo; + + //======= end jsbn ======= + + // Emscripten wrapper + var Wrapper = { + abs: function(l, h) { + var x = new goog.math.Long(l, h); + var ret; + if (x.isNegative()) { + ret = x.negate(); + } else { + ret = x; + } + HEAP32[tempDoublePtr>>2] = ret.low_; + HEAP32[tempDoublePtr+4>>2] = ret.high_; + }, + ensureTemps: function() { + if (Wrapper.ensuredTemps) return; + Wrapper.ensuredTemps = true; + Wrapper.two32 = new BigInteger(); + Wrapper.two32.fromString('4294967296', 10); + Wrapper.two64 = new BigInteger(); + Wrapper.two64.fromString('18446744073709551616', 10); + Wrapper.temp1 = new BigInteger(); + Wrapper.temp2 = new BigInteger(); + }, + lh2bignum: function(l, h) { + var a = new BigInteger(); + a.fromString(h.toString(), 10); + var b = new BigInteger(); + a.multiplyTo(Wrapper.two32, b); + var c = new BigInteger(); + c.fromString(l.toString(), 10); + var d = new BigInteger(); + c.addTo(b, d); + return d; + }, + stringify: function(l, h, unsigned) { + var ret = new goog.math.Long(l, h).toString(); + if (unsigned && ret[0] == '-') { + // unsign slowly using jsbn bignums + Wrapper.ensureTemps(); + var bignum = new BigInteger(); + bignum.fromString(ret, 10); + ret = new BigInteger(); + Wrapper.two64.addTo(bignum, ret); + ret = ret.toString(10); + } + return ret; + }, + fromString: function(str, base, min, max, unsigned) { + Wrapper.ensureTemps(); + var bignum = new BigInteger(); + bignum.fromString(str, base); + var bigmin = new BigInteger(); + bigmin.fromString(min, 10); + var bigmax = new BigInteger(); + bigmax.fromString(max, 10); + if (unsigned && bignum.compareTo(BigInteger.ZERO) < 0) { + var temp = new BigInteger(); + bignum.addTo(Wrapper.two64, temp); + bignum = temp; + } + var error = false; + if (bignum.compareTo(bigmin) < 0) { + bignum = bigmin; + error = true; + } else if (bignum.compareTo(bigmax) > 0) { + bignum = bigmax; + error = true; + } + var ret = goog.math.Long.fromString(bignum.toString()); // min-max checks should have clamped this to a range goog.math.Long can handle well + HEAP32[tempDoublePtr>>2] = ret.low_; + HEAP32[tempDoublePtr+4>>2] = ret.high_; + if (error) throw 'range error'; + } + }; + return Wrapper; +})(); + +//======= end closure i64 code ======= + + + +// === Auto-generated postamble setup entry stuff === + +if (memoryInitializer) { + if (typeof Module['locateFile'] === 'function') { + memoryInitializer = Module['locateFile'](memoryInitializer); + } else if (Module['memoryInitializerPrefixURL']) { + memoryInitializer = Module['memoryInitializerPrefixURL'] + memoryInitializer; + } + if (ENVIRONMENT_IS_NODE || ENVIRONMENT_IS_SHELL) { + var data = Module['readBinary'](memoryInitializer); + HEAPU8.set(data, STATIC_BASE); + } else { + addRunDependency('memory initializer'); + Browser.asyncLoad(memoryInitializer, function(data) { + HEAPU8.set(data, STATIC_BASE); + removeRunDependency('memory initializer'); + }, function(data) { + throw 'could not load memory initializer ' + memoryInitializer; + }); + } +} + +function ExitStatus(status) { + this.name = "ExitStatus"; + this.message = "Program terminated with exit(" + status + ")"; + this.status = status; +}; +ExitStatus.prototype = new Error(); +ExitStatus.prototype.constructor = ExitStatus; + +var initialStackTop; +var preloadStartTime = null; +var calledMain = false; + +dependenciesFulfilled = function runCaller() { + // If run has never been called, and we should call run (INVOKE_RUN is true, and Module.noInitialRun is not false) + if (!Module['calledRun'] && shouldRunNow) run(); + if (!Module['calledRun']) dependenciesFulfilled = runCaller; // try this again later, after new deps are fulfilled +} + +Module['callMain'] = Module.callMain = function callMain(args) { + assert(runDependencies == 0, 'cannot call main when async dependencies remain! (listen on __ATMAIN__)'); + assert(__ATPRERUN__.length == 0, 'cannot call main when preRun functions remain to be called'); + + args = args || []; + + ensureInitRuntime(); + + var argc = args.length+1; + function pad() { + for (var i = 0; i < 4-1; i++) { + argv.push(0); + } + } + var argv = [allocate(intArrayFromString(Module['thisProgram']), 'i8', ALLOC_NORMAL) ]; + pad(); + for (var i = 0; i < argc-1; i = i + 1) { + argv.push(allocate(intArrayFromString(args[i]), 'i8', ALLOC_NORMAL)); + pad(); + } + argv.push(0); + argv = allocate(argv, 'i32', ALLOC_NORMAL); + + initialStackTop = STACKTOP; + + try { + + var ret = Module['_main'](argc, argv, 0); + + + // if we're not running an evented main loop, it's time to exit + exit(ret); + } + catch(e) { + if (e instanceof ExitStatus) { + // exit() throws this once it's done to make sure execution + // has been stopped completely + return; + } else if (e == 'SimulateInfiniteLoop') { + // running an evented main loop, don't immediately exit + Module['noExitRuntime'] = true; + return; + } else { + if (e && typeof e === 'object' && e.stack) Module.printErr('exception thrown: ' + [e, e.stack]); + throw e; + } + } finally { + calledMain = true; + } +} + + + + +function run(args) { + args = args || Module['arguments']; + + if (preloadStartTime === null) preloadStartTime = Date.now(); + + if (runDependencies > 0) { + return; + } + + preRun(); + + if (runDependencies > 0) return; // a preRun added a dependency, run will be called later + if (Module['calledRun']) return; // run may have just been called through dependencies being fulfilled just in this very frame + + function doRun() { + if (Module['calledRun']) return; // run may have just been called while the async setStatus time below was happening + Module['calledRun'] = true; + + if (ABORT) return; + + ensureInitRuntime(); + + preMain(); + + if (ENVIRONMENT_IS_WEB && preloadStartTime !== null) { + Module.printErr('pre-main prep time: ' + (Date.now() - preloadStartTime) + ' ms'); + } + + if (Module['onRuntimeInitialized']) Module['onRuntimeInitialized'](); + + if (Module['_main'] && shouldRunNow) Module['callMain'](args); + + postRun(); + } + + if (Module['setStatus']) { + Module['setStatus']('Running...'); + setTimeout(function() { + setTimeout(function() { + Module['setStatus'](''); + }, 1); + doRun(); + }, 1); + } else { + doRun(); + } +} +Module['run'] = Module.run = run; + +function exit(status) { + if (Module['noExitRuntime']) { + return; + } + + ABORT = true; + EXITSTATUS = status; + STACKTOP = initialStackTop; + + // exit the runtime + exitRuntime(); + + if (ENVIRONMENT_IS_NODE) { + // Work around a node.js bug where stdout buffer is not flushed at process exit: + // Instead of process.exit() directly, wait for stdout flush event. + // See https://github.com/joyent/node/issues/1669 and https://github.com/kripken/emscripten/issues/2582 + // Workaround is based on https://github.com/RReverser/acorn/commit/50ab143cecc9ed71a2d66f78b4aec3bb2e9844f6 + process['stdout']['once']('drain', function () { + process['exit'](status); + }); + console.log(' '); // Make sure to print something to force the drain event to occur, in case the stdout buffer was empty. + // Work around another node bug where sometimes 'drain' is never fired - make another effort + // to emit the exit status, after a significant delay (if node hasn't fired drain by then, give up) + setTimeout(function() { + process['exit'](status); + }, 500); + } else + if (ENVIRONMENT_IS_SHELL && typeof quit === 'function') { + quit(status); + } + // if we reach here, we must throw an exception to halt the current execution + throw new ExitStatus(status); +} +Module['exit'] = Module.exit = exit; + +function abort(text) { + if (text) { + Module.print(text); + Module.printErr(text); + } + + ABORT = true; + EXITSTATUS = 1; + + var extra = '\nIf this abort() is unexpected, build with -s ASSERTIONS=1 which can give more information.'; + + throw 'abort() at ' + stackTrace() + extra; +} +Module['abort'] = Module.abort = abort; + +// {{PRE_RUN_ADDITIONS}} + +if (Module['preInit']) { + if (typeof Module['preInit'] == 'function') Module['preInit'] = [Module['preInit']]; + while (Module['preInit'].length > 0) { + Module['preInit'].pop()(); + } +} + +// shouldRunNow refers to calling main(), not run(). +var shouldRunNow = true; +if (Module['noInitialRun']) { + shouldRunNow = false; +} + + +run(); + +// {{POST_RUN_ADDITIONS}} + + + + + + +// {{MODULE_ADDITIONS}} + + + diff --git a/build/curve25519_concat.js b/build/curve25519_concat.js new file mode 100644 index 0000000..9360e0c --- /dev/null +++ b/build/curve25519_concat.js @@ -0,0 +1,25283 @@ +// The Module object: Our interface to the outside world. We import +// and export values on it, and do the work to get that through +// closure compiler if necessary. There are various ways Module can be used: +// 1. Not defined. We create it here +// 2. A function parameter, function(Module) { ..generated code.. } +// 3. pre-run appended it, var Module = {}; ..generated code.. +// 4. External script tag defines var Module. +// We need to do an eval in order to handle the closure compiler +// case, where this code here is minified but Module was defined +// elsewhere (e.g. case 4 above). We also need to check if Module +// already exists (e.g. case 3 above). +// Note that if you want to run closure, and also to use Module +// after the generated code, you will need to define var Module = {}; +// before the code. Then that object will be used in the code, and you +// can continue to use Module afterwards as well. +var Module; +if (!Module) Module = (typeof Module !== 'undefined' ? Module : null) || {}; + +// Sometimes an existing Module object exists with properties +// meant to overwrite the default module functionality. Here +// we collect those properties and reapply _after_ we configure +// the current environment's defaults to avoid having to be so +// defensive during initialization. +var moduleOverrides = {}; +for (var key in Module) { + if (Module.hasOwnProperty(key)) { + moduleOverrides[key] = Module[key]; + } +} + +// The environment setup code below is customized to use Module. +// *** Environment setup code *** +var ENVIRONMENT_IS_NODE = typeof process === 'object' && typeof require === 'function'; +var ENVIRONMENT_IS_WEB = typeof window === 'object'; +var ENVIRONMENT_IS_WORKER = typeof importScripts === 'function'; +var ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER; + +if (ENVIRONMENT_IS_NODE) { + // Expose functionality in the same simple way that the shells work + // Note that we pollute the global namespace here, otherwise we break in node + if (!Module['print']) Module['print'] = function print(x) { + process['stdout'].write(x + '\n'); + }; + if (!Module['printErr']) Module['printErr'] = function printErr(x) { + process['stderr'].write(x + '\n'); + }; + + var nodeFS = require('fs'); + var nodePath = require('path'); + + Module['read'] = function read(filename, binary) { + filename = nodePath['normalize'](filename); + var ret = nodeFS['readFileSync'](filename); + // The path is absolute if the normalized version is the same as the resolved. + if (!ret && filename != nodePath['resolve'](filename)) { + filename = path.join(__dirname, '..', 'src', filename); + ret = nodeFS['readFileSync'](filename); + } + if (ret && !binary) ret = ret.toString(); + return ret; + }; + + Module['readBinary'] = function readBinary(filename) { return Module['read'](filename, true) }; + + Module['load'] = function load(f) { + globalEval(read(f)); + }; + + if (process['argv'].length > 1) { + Module['thisProgram'] = process['argv'][1].replace(/\\/g, '/'); + } else { + Module['thisProgram'] = 'unknown-program'; + } + + Module['arguments'] = process['argv'].slice(2); + + if (typeof module !== 'undefined') { + module['exports'] = Module; + } + + process['on']('uncaughtException', function(ex) { + // suppress ExitStatus exceptions from showing an error + if (!(ex instanceof ExitStatus)) { + throw ex; + } + }); +} +else if (ENVIRONMENT_IS_SHELL) { + if (!Module['print']) Module['print'] = print; + if (typeof printErr != 'undefined') Module['printErr'] = printErr; // not present in v8 or older sm + + if (typeof read != 'undefined') { + Module['read'] = read; + } else { + Module['read'] = function read() { throw 'no read() available (jsc?)' }; + } + + Module['readBinary'] = function readBinary(f) { + if (typeof readbuffer === 'function') { + return new Uint8Array(readbuffer(f)); + } + var data = read(f, 'binary'); + assert(typeof data === 'object'); + return data; + }; + + if (typeof scriptArgs != 'undefined') { + Module['arguments'] = scriptArgs; + } else if (typeof arguments != 'undefined') { + Module['arguments'] = arguments; + } + + this['Module'] = Module; + +} +else if (ENVIRONMENT_IS_WEB || ENVIRONMENT_IS_WORKER) { + Module['read'] = function read(url) { + var xhr = new XMLHttpRequest(); + xhr.open('GET', url, false); + xhr.send(null); + return xhr.responseText; + }; + + if (typeof arguments != 'undefined') { + Module['arguments'] = arguments; + } + + if (typeof console !== 'undefined') { + if (!Module['print']) Module['print'] = function print(x) { + console.log(x); + }; + if (!Module['printErr']) Module['printErr'] = function printErr(x) { + console.log(x); + }; + } else { + // Probably a worker, and without console.log. We can do very little here... + var TRY_USE_DUMP = false; + if (!Module['print']) Module['print'] = (TRY_USE_DUMP && (typeof(dump) !== "undefined") ? (function(x) { + dump(x); + }) : (function(x) { + // self.postMessage(x); // enable this if you want stdout to be sent as messages + })); + } + + if (ENVIRONMENT_IS_WEB) { + window['Module'] = Module; + } else { + Module['load'] = importScripts; + } +} +else { + // Unreachable because SHELL is dependant on the others + throw 'Unknown runtime environment. Where are we?'; +} + +function globalEval(x) { + eval.call(null, x); +} +if (!Module['load'] && Module['read']) { + Module['load'] = function load(f) { + globalEval(Module['read'](f)); + }; +} +if (!Module['print']) { + Module['print'] = function(){}; +} +if (!Module['printErr']) { + Module['printErr'] = Module['print']; +} +if (!Module['arguments']) { + Module['arguments'] = []; +} +if (!Module['thisProgram']) { + Module['thisProgram'] = './this.program'; +} + +// *** Environment setup code *** + +// Closure helpers +Module.print = Module['print']; +Module.printErr = Module['printErr']; + +// Callbacks +Module['preRun'] = []; +Module['postRun'] = []; + +// Merge back in the overrides +for (var key in moduleOverrides) { + if (moduleOverrides.hasOwnProperty(key)) { + Module[key] = moduleOverrides[key]; + } +} + + + +// === Preamble library stuff === + +// Documentation for the public APIs defined in this file must be updated in: +// site/source/docs/api_reference/preamble.js.rst +// A prebuilt local version of the documentation is available at: +// site/build/text/docs/api_reference/preamble.js.txt +// You can also build docs locally as HTML or other formats in site/ +// An online HTML version (which may be of a different version of Emscripten) +// is up at http://kripken.github.io/emscripten-site/docs/api_reference/preamble.js.html + +//======================================== +// Runtime code shared with compiler +//======================================== + +var Runtime = { + setTempRet0: function (value) { + tempRet0 = value; + }, + getTempRet0: function () { + return tempRet0; + }, + stackSave: function () { + return STACKTOP; + }, + stackRestore: function (stackTop) { + STACKTOP = stackTop; + }, + getNativeTypeSize: function (type) { + switch (type) { + case 'i1': case 'i8': return 1; + case 'i16': return 2; + case 'i32': return 4; + case 'i64': return 8; + case 'float': return 4; + case 'double': return 8; + default: { + if (type[type.length-1] === '*') { + return Runtime.QUANTUM_SIZE; // A pointer + } else if (type[0] === 'i') { + var bits = parseInt(type.substr(1)); + assert(bits % 8 === 0); + return bits/8; + } else { + return 0; + } + } + } + }, + getNativeFieldSize: function (type) { + return Math.max(Runtime.getNativeTypeSize(type), Runtime.QUANTUM_SIZE); + }, + STACK_ALIGN: 16, + getAlignSize: function (type, size, vararg) { + // we align i64s and doubles on 64-bit boundaries, unlike x86 + if (!vararg && (type == 'i64' || type == 'double')) return 8; + if (!type) return Math.min(size, 8); // align structures internally to 64 bits + return Math.min(size || (type ? Runtime.getNativeFieldSize(type) : 0), Runtime.QUANTUM_SIZE); + }, + dynCall: function (sig, ptr, args) { + if (args && args.length) { + if (!args.splice) args = Array.prototype.slice.call(args); + args.splice(0, 0, ptr); + return Module['dynCall_' + sig].apply(null, args); + } else { + return Module['dynCall_' + sig].call(null, ptr); + } + }, + functionPointers: [], + addFunction: function (func) { + for (var i = 0; i < Runtime.functionPointers.length; i++) { + if (!Runtime.functionPointers[i]) { + Runtime.functionPointers[i] = func; + return 2*(1 + i); + } + } + throw 'Finished up all reserved function pointers. Use a higher value for RESERVED_FUNCTION_POINTERS.'; + }, + removeFunction: function (index) { + Runtime.functionPointers[(index-2)/2] = null; + }, + getAsmConst: function (code, numArgs) { + // code is a constant string on the heap, so we can cache these + if (!Runtime.asmConstCache) Runtime.asmConstCache = {}; + var func = Runtime.asmConstCache[code]; + if (func) return func; + var args = []; + for (var i = 0; i < numArgs; i++) { + args.push(String.fromCharCode(36) + i); // $0, $1 etc + } + var source = Pointer_stringify(code); + if (source[0] === '"') { + // tolerate EM_ASM("..code..") even though EM_ASM(..code..) is correct + if (source.indexOf('"', 1) === source.length-1) { + source = source.substr(1, source.length-2); + } else { + // something invalid happened, e.g. EM_ASM("..code($0)..", input) + abort('invalid EM_ASM input |' + source + '|. Please use EM_ASM(..code..) (no quotes) or EM_ASM({ ..code($0).. }, input) (to input values)'); + } + } + try { + // Module is the only 'upvar', which we provide directly. We also provide FS for legacy support. + var evalled = eval('(function(Module, FS) { return function(' + args.join(',') + '){ ' + source + ' } })')(Module, typeof FS !== 'undefined' ? FS : null); + } catch(e) { + Module.printErr('error in executing inline EM_ASM code: ' + e + ' on: \n\n' + source + '\n\nwith args |' + args + '| (make sure to use the right one out of EM_ASM, EM_ASM_ARGS, etc.)'); + throw e; + } + return Runtime.asmConstCache[code] = evalled; + }, + warnOnce: function (text) { + if (!Runtime.warnOnce.shown) Runtime.warnOnce.shown = {}; + if (!Runtime.warnOnce.shown[text]) { + Runtime.warnOnce.shown[text] = 1; + Module.printErr(text); + } + }, + funcWrappers: {}, + getFuncWrapper: function (func, sig) { + assert(sig); + if (!Runtime.funcWrappers[sig]) { + Runtime.funcWrappers[sig] = {}; + } + var sigCache = Runtime.funcWrappers[sig]; + if (!sigCache[func]) { + sigCache[func] = function dynCall_wrapper() { + return Runtime.dynCall(sig, func, arguments); + }; + } + return sigCache[func]; + }, + UTF8Processor: function () { + var buffer = []; + var needed = 0; + this.processCChar = function (code) { + code = code & 0xFF; + + if (buffer.length == 0) { + if ((code & 0x80) == 0x00) { // 0xxxxxxx + return String.fromCharCode(code); + } + buffer.push(code); + if ((code & 0xE0) == 0xC0) { // 110xxxxx + needed = 1; + } else if ((code & 0xF0) == 0xE0) { // 1110xxxx + needed = 2; + } else { // 11110xxx + needed = 3; + } + return ''; + } + + if (needed) { + buffer.push(code); + needed--; + if (needed > 0) return ''; + } + + var c1 = buffer[0]; + var c2 = buffer[1]; + var c3 = buffer[2]; + var c4 = buffer[3]; + var ret; + if (buffer.length == 2) { + ret = String.fromCharCode(((c1 & 0x1F) << 6) | (c2 & 0x3F)); + } else if (buffer.length == 3) { + ret = String.fromCharCode(((c1 & 0x0F) << 12) | ((c2 & 0x3F) << 6) | (c3 & 0x3F)); + } else { + // http://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae + var codePoint = ((c1 & 0x07) << 18) | ((c2 & 0x3F) << 12) | + ((c3 & 0x3F) << 6) | (c4 & 0x3F); + ret = String.fromCharCode( + (((codePoint - 0x10000) / 0x400)|0) + 0xD800, + (codePoint - 0x10000) % 0x400 + 0xDC00); + } + buffer.length = 0; + return ret; + } + this.processJSString = function processJSString(string) { + /* TODO: use TextEncoder when present, + var encoder = new TextEncoder(); + encoder['encoding'] = "utf-8"; + var utf8Array = encoder['encode'](aMsg.data); + */ + string = unescape(encodeURIComponent(string)); + var ret = []; + for (var i = 0; i < string.length; i++) { + ret.push(string.charCodeAt(i)); + } + return ret; + } + }, + getCompilerSetting: function (name) { + throw 'You must build with -s RETAIN_COMPILER_SETTINGS=1 for Runtime.getCompilerSetting or emscripten_get_compiler_setting to work'; + }, + stackAlloc: function (size) { var ret = STACKTOP;STACKTOP = (STACKTOP + size)|0;STACKTOP = (((STACKTOP)+15)&-16); return ret; }, + staticAlloc: function (size) { var ret = STATICTOP;STATICTOP = (STATICTOP + size)|0;STATICTOP = (((STATICTOP)+15)&-16); return ret; }, + dynamicAlloc: function (size) { var ret = DYNAMICTOP;DYNAMICTOP = (DYNAMICTOP + size)|0;DYNAMICTOP = (((DYNAMICTOP)+15)&-16); if (DYNAMICTOP >= TOTAL_MEMORY) enlargeMemory();; return ret; }, + alignMemory: function (size,quantum) { var ret = size = Math.ceil((size)/(quantum ? quantum : 16))*(quantum ? quantum : 16); return ret; }, + makeBigInt: function (low,high,unsigned) { var ret = (unsigned ? ((+((low>>>0)))+((+((high>>>0)))*4294967296.0)) : ((+((low>>>0)))+((+((high|0)))*4294967296.0))); return ret; }, + GLOBAL_BASE: 8, + QUANTUM_SIZE: 4, + __dummy__: 0 +} + + +Module['Runtime'] = Runtime; + + + + + + + + + +//======================================== +// Runtime essentials +//======================================== + +var __THREW__ = 0; // Used in checking for thrown exceptions. + +var ABORT = false; // whether we are quitting the application. no code should run after this. set in exit() and abort() +var EXITSTATUS = 0; + +var undef = 0; +// tempInt is used for 32-bit signed values or smaller. tempBigInt is used +// for 32-bit unsigned values or more than 32 bits. TODO: audit all uses of tempInt +var tempValue, tempInt, tempBigInt, tempInt2, tempBigInt2, tempPair, tempBigIntI, tempBigIntR, tempBigIntS, tempBigIntP, tempBigIntD, tempDouble, tempFloat; +var tempI64, tempI64b; +var tempRet0, tempRet1, tempRet2, tempRet3, tempRet4, tempRet5, tempRet6, tempRet7, tempRet8, tempRet9; + +function assert(condition, text) { + if (!condition) { + abort('Assertion failed: ' + text); + } +} + +var globalScope = this; + +// Returns the C function with a specified identifier (for C++, you need to do manual name mangling) +function getCFunc(ident) { + var func = Module['_' + ident]; // closure exported function + if (!func) { + try { + func = eval('_' + ident); // explicit lookup + } catch(e) {} + } + assert(func, 'Cannot call unknown function ' + ident + ' (perhaps LLVM optimizations or closure removed it?)'); + return func; +} + +var cwrap, ccall; +(function(){ + var JSfuncs = { + // Helpers for cwrap -- it can't refer to Runtime directly because it might + // be renamed by closure, instead it calls JSfuncs['stackSave'].body to find + // out what the minified function name is. + 'stackSave': function() { + Runtime.stackSave() + }, + 'stackRestore': function() { + Runtime.stackRestore() + }, + // type conversion from js to c + 'arrayToC' : function(arr) { + var ret = Runtime.stackAlloc(arr.length); + writeArrayToMemory(arr, ret); + return ret; + }, + 'stringToC' : function(str) { + var ret = 0; + if (str !== null && str !== undefined && str !== 0) { // null string + // at most 4 bytes per UTF-8 code point, +1 for the trailing '\0' + ret = Runtime.stackAlloc((str.length << 2) + 1); + writeStringToMemory(str, ret); + } + return ret; + } + }; + // For fast lookup of conversion functions + var toC = {'string' : JSfuncs['stringToC'], 'array' : JSfuncs['arrayToC']}; + + // C calling interface. + ccall = function ccallFunc(ident, returnType, argTypes, args) { + var func = getCFunc(ident); + var cArgs = []; + var stack = 0; + if (args) { + for (var i = 0; i < args.length; i++) { + var converter = toC[argTypes[i]]; + if (converter) { + if (stack === 0) stack = Runtime.stackSave(); + cArgs[i] = converter(args[i]); + } else { + cArgs[i] = args[i]; + } + } + } + var ret = func.apply(null, cArgs); + if (returnType === 'string') ret = Pointer_stringify(ret); + if (stack !== 0) Runtime.stackRestore(stack); + return ret; + } + + var sourceRegex = /^function\s*\(([^)]*)\)\s*{\s*([^*]*?)[\s;]*(?:return\s*(.*?)[;\s]*)?}$/; + function parseJSFunc(jsfunc) { + // Match the body and the return value of a javascript function source + var parsed = jsfunc.toString().match(sourceRegex).slice(1); + return {arguments : parsed[0], body : parsed[1], returnValue: parsed[2]} + } + var JSsource = {}; + for (var fun in JSfuncs) { + if (JSfuncs.hasOwnProperty(fun)) { + // Elements of toCsource are arrays of three items: + // the code, and the return value + JSsource[fun] = parseJSFunc(JSfuncs[fun]); + } + } + + + cwrap = function cwrap(ident, returnType, argTypes) { + argTypes = argTypes || []; + var cfunc = getCFunc(ident); + // When the function takes numbers and returns a number, we can just return + // the original function + var numericArgs = argTypes.every(function(type){ return type === 'number'}); + var numericRet = (returnType !== 'string'); + if ( numericRet && numericArgs) { + return cfunc; + } + // Creation of the arguments list (["$1","$2",...,"$nargs"]) + var argNames = argTypes.map(function(x,i){return '$'+i}); + var funcstr = "(function(" + argNames.join(',') + ") {"; + var nargs = argTypes.length; + if (!numericArgs) { + // Generate the code needed to convert the arguments from javascript + // values to pointers + funcstr += 'var stack = ' + JSsource['stackSave'].body + ';'; + for (var i = 0; i < nargs; i++) { + var arg = argNames[i], type = argTypes[i]; + if (type === 'number') continue; + var convertCode = JSsource[type + 'ToC']; // [code, return] + funcstr += 'var ' + convertCode.arguments + ' = ' + arg + ';'; + funcstr += convertCode.body + ';'; + funcstr += arg + '=' + convertCode.returnValue + ';'; + } + } + + // When the code is compressed, the name of cfunc is not literally 'cfunc' anymore + var cfuncname = parseJSFunc(function(){return cfunc}).returnValue; + // Call the function + funcstr += 'var ret = ' + cfuncname + '(' + argNames.join(',') + ');'; + if (!numericRet) { // Return type can only by 'string' or 'number' + // Convert the result to a string + var strgfy = parseJSFunc(function(){return Pointer_stringify}).returnValue; + funcstr += 'ret = ' + strgfy + '(ret);'; + } + if (!numericArgs) { + // If we had a stack, restore it + funcstr += JSsource['stackRestore'].body.replace('()', '(stack)') + ';'; + } + funcstr += 'return ret})'; + return eval(funcstr); + }; +})(); +Module["cwrap"] = cwrap; +Module["ccall"] = ccall; + + +function setValue(ptr, value, type, noSafe) { + type = type || 'i8'; + if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit + switch(type) { + case 'i1': HEAP8[((ptr)>>0)]=value; break; + case 'i8': HEAP8[((ptr)>>0)]=value; break; + case 'i16': HEAP16[((ptr)>>1)]=value; break; + case 'i32': HEAP32[((ptr)>>2)]=value; break; + case 'i64': (tempI64 = [value>>>0,(tempDouble=value,(+(Math_abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math_min((+(Math_floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math_ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[((ptr)>>2)]=tempI64[0],HEAP32[(((ptr)+(4))>>2)]=tempI64[1]); break; + case 'float': HEAPF32[((ptr)>>2)]=value; break; + case 'double': HEAPF64[((ptr)>>3)]=value; break; + default: abort('invalid type for setValue: ' + type); + } +} +Module['setValue'] = setValue; + + +function getValue(ptr, type, noSafe) { + type = type || 'i8'; + if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit + switch(type) { + case 'i1': return HEAP8[((ptr)>>0)]; + case 'i8': return HEAP8[((ptr)>>0)]; + case 'i16': return HEAP16[((ptr)>>1)]; + case 'i32': return HEAP32[((ptr)>>2)]; + case 'i64': return HEAP32[((ptr)>>2)]; + case 'float': return HEAPF32[((ptr)>>2)]; + case 'double': return HEAPF64[((ptr)>>3)]; + default: abort('invalid type for setValue: ' + type); + } + return null; +} +Module['getValue'] = getValue; + +var ALLOC_NORMAL = 0; // Tries to use _malloc() +var ALLOC_STACK = 1; // Lives for the duration of the current function call +var ALLOC_STATIC = 2; // Cannot be freed +var ALLOC_DYNAMIC = 3; // Cannot be freed except through sbrk +var ALLOC_NONE = 4; // Do not allocate +Module['ALLOC_NORMAL'] = ALLOC_NORMAL; +Module['ALLOC_STACK'] = ALLOC_STACK; +Module['ALLOC_STATIC'] = ALLOC_STATIC; +Module['ALLOC_DYNAMIC'] = ALLOC_DYNAMIC; +Module['ALLOC_NONE'] = ALLOC_NONE; + +// allocate(): This is for internal use. You can use it yourself as well, but the interface +// is a little tricky (see docs right below). The reason is that it is optimized +// for multiple syntaxes to save space in generated code. So you should +// normally not use allocate(), and instead allocate memory using _malloc(), +// initialize it with setValue(), and so forth. +// @slab: An array of data, or a number. If a number, then the size of the block to allocate, +// in *bytes* (note that this is sometimes confusing: the next parameter does not +// affect this!) +// @types: Either an array of types, one for each byte (or 0 if no type at that position), +// or a single type which is used for the entire block. This only matters if there +// is initial data - if @slab is a number, then this does not matter at all and is +// ignored. +// @allocator: How to allocate memory, see ALLOC_* +function allocate(slab, types, allocator, ptr) { + var zeroinit, size; + if (typeof slab === 'number') { + zeroinit = true; + size = slab; + } else { + zeroinit = false; + size = slab.length; + } + + var singleType = typeof types === 'string' ? types : null; + + var ret; + if (allocator == ALLOC_NONE) { + ret = ptr; + } else { + ret = [_malloc, Runtime.stackAlloc, Runtime.staticAlloc, Runtime.dynamicAlloc][allocator === undefined ? ALLOC_STATIC : allocator](Math.max(size, singleType ? 1 : types.length)); + } + + if (zeroinit) { + var ptr = ret, stop; + assert((ret & 3) == 0); + stop = ret + (size & ~3); + for (; ptr < stop; ptr += 4) { + HEAP32[((ptr)>>2)]=0; + } + stop = ret + size; + while (ptr < stop) { + HEAP8[((ptr++)>>0)]=0; + } + return ret; + } + + if (singleType === 'i8') { + if (slab.subarray || slab.slice) { + HEAPU8.set(slab, ret); + } else { + HEAPU8.set(new Uint8Array(slab), ret); + } + return ret; + } + + var i = 0, type, typeSize, previousType; + while (i < size) { + var curr = slab[i]; + + if (typeof curr === 'function') { + curr = Runtime.getFunctionIndex(curr); + } + + type = singleType || types[i]; + if (type === 0) { + i++; + continue; + } + + if (type == 'i64') type = 'i32'; // special case: we have one i32 here, and one i32 later + + setValue(ret+i, curr, type); + + // no need to look up size unless type changes, so cache it + if (previousType !== type) { + typeSize = Runtime.getNativeTypeSize(type); + previousType = type; + } + i += typeSize; + } + + return ret; +} +Module['allocate'] = allocate; + +function Pointer_stringify(ptr, /* optional */ length) { + if (length === 0 || !ptr) return ''; + // TODO: use TextDecoder + // Find the length, and check for UTF while doing so + var hasUtf = false; + var t; + var i = 0; + while (1) { + t = HEAPU8[(((ptr)+(i))>>0)]; + if (t >= 128) hasUtf = true; + else if (t == 0 && !length) break; + i++; + if (length && i == length) break; + } + if (!length) length = i; + + var ret = ''; + + if (!hasUtf) { + var MAX_CHUNK = 1024; // split up into chunks, because .apply on a huge string can overflow the stack + var curr; + while (length > 0) { + curr = String.fromCharCode.apply(String, HEAPU8.subarray(ptr, ptr + Math.min(length, MAX_CHUNK))); + ret = ret ? ret + curr : curr; + ptr += MAX_CHUNK; + length -= MAX_CHUNK; + } + return ret; + } + + var utf8 = new Runtime.UTF8Processor(); + for (i = 0; i < length; i++) { + t = HEAPU8[(((ptr)+(i))>>0)]; + ret += utf8.processCChar(t); + } + return ret; +} +Module['Pointer_stringify'] = Pointer_stringify; + +function UTF16ToString(ptr) { + var i = 0; + + var str = ''; + while (1) { + var codeUnit = HEAP16[(((ptr)+(i*2))>>1)]; + if (codeUnit == 0) + return str; + ++i; + // fromCharCode constructs a character from a UTF-16 code unit, so we can pass the UTF16 string right through. + str += String.fromCharCode(codeUnit); + } +} +Module['UTF16ToString'] = UTF16ToString; + + +function stringToUTF16(str, outPtr) { + for(var i = 0; i < str.length; ++i) { + // charCodeAt returns a UTF-16 encoded code unit, so it can be directly written to the HEAP. + var codeUnit = str.charCodeAt(i); // possibly a lead surrogate + HEAP16[(((outPtr)+(i*2))>>1)]=codeUnit; + } + // Null-terminate the pointer to the HEAP. + HEAP16[(((outPtr)+(str.length*2))>>1)]=0; +} +Module['stringToUTF16'] = stringToUTF16; + + +function UTF32ToString(ptr) { + var i = 0; + + var str = ''; + while (1) { + var utf32 = HEAP32[(((ptr)+(i*4))>>2)]; + if (utf32 == 0) + return str; + ++i; + // Gotcha: fromCharCode constructs a character from a UTF-16 encoded code (pair), not from a Unicode code point! So encode the code point to UTF-16 for constructing. + if (utf32 >= 0x10000) { + var ch = utf32 - 0x10000; + str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF)); + } else { + str += String.fromCharCode(utf32); + } + } +} +Module['UTF32ToString'] = UTF32ToString; + + +function stringToUTF32(str, outPtr) { + var iChar = 0; + for(var iCodeUnit = 0; iCodeUnit < str.length; ++iCodeUnit) { + // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! We must decode the string to UTF-32 to the heap. + var codeUnit = str.charCodeAt(iCodeUnit); // possibly a lead surrogate + if (codeUnit >= 0xD800 && codeUnit <= 0xDFFF) { + var trailSurrogate = str.charCodeAt(++iCodeUnit); + codeUnit = 0x10000 + ((codeUnit & 0x3FF) << 10) | (trailSurrogate & 0x3FF); + } + HEAP32[(((outPtr)+(iChar*4))>>2)]=codeUnit; + ++iChar; + } + // Null-terminate the pointer to the HEAP. + HEAP32[(((outPtr)+(iChar*4))>>2)]=0; +} +Module['stringToUTF32'] = stringToUTF32; + +function demangle(func) { + var hasLibcxxabi = !!Module['___cxa_demangle']; + if (hasLibcxxabi) { + try { + var buf = _malloc(func.length); + writeStringToMemory(func.substr(1), buf); + var status = _malloc(4); + var ret = Module['___cxa_demangle'](buf, 0, 0, status); + if (getValue(status, 'i32') === 0 && ret) { + return Pointer_stringify(ret); + } + // otherwise, libcxxabi failed, we can try ours which may return a partial result + } catch(e) { + // failure when using libcxxabi, we can try ours which may return a partial result + } finally { + if (buf) _free(buf); + if (status) _free(status); + if (ret) _free(ret); + } + } + var i = 3; + // params, etc. + var basicTypes = { + 'v': 'void', + 'b': 'bool', + 'c': 'char', + 's': 'short', + 'i': 'int', + 'l': 'long', + 'f': 'float', + 'd': 'double', + 'w': 'wchar_t', + 'a': 'signed char', + 'h': 'unsigned char', + 't': 'unsigned short', + 'j': 'unsigned int', + 'm': 'unsigned long', + 'x': 'long long', + 'y': 'unsigned long long', + 'z': '...' + }; + var subs = []; + var first = true; + function dump(x) { + //return; + if (x) Module.print(x); + Module.print(func); + var pre = ''; + for (var a = 0; a < i; a++) pre += ' '; + Module.print (pre + '^'); + } + function parseNested() { + i++; + if (func[i] === 'K') i++; // ignore const + var parts = []; + while (func[i] !== 'E') { + if (func[i] === 'S') { // substitution + i++; + var next = func.indexOf('_', i); + var num = func.substring(i, next) || 0; + parts.push(subs[num] || '?'); + i = next+1; + continue; + } + if (func[i] === 'C') { // constructor + parts.push(parts[parts.length-1]); + i += 2; + continue; + } + var size = parseInt(func.substr(i)); + var pre = size.toString().length; + if (!size || !pre) { i--; break; } // counter i++ below us + var curr = func.substr(i + pre, size); + parts.push(curr); + subs.push(curr); + i += pre + size; + } + i++; // skip E + return parts; + } + function parse(rawList, limit, allowVoid) { // main parser + limit = limit || Infinity; + var ret = '', list = []; + function flushList() { + return '(' + list.join(', ') + ')'; + } + var name; + if (func[i] === 'N') { + // namespaced N-E + name = parseNested().join('::'); + limit--; + if (limit === 0) return rawList ? [name] : name; + } else { + // not namespaced + if (func[i] === 'K' || (first && func[i] === 'L')) i++; // ignore const and first 'L' + var size = parseInt(func.substr(i)); + if (size) { + var pre = size.toString().length; + name = func.substr(i + pre, size); + i += pre + size; + } + } + first = false; + if (func[i] === 'I') { + i++; + var iList = parse(true); + var iRet = parse(true, 1, true); + ret += iRet[0] + ' ' + name + '<' + iList.join(', ') + '>'; + } else { + ret = name; + } + paramLoop: while (i < func.length && limit-- > 0) { + //dump('paramLoop'); + var c = func[i++]; + if (c in basicTypes) { + list.push(basicTypes[c]); + } else { + switch (c) { + case 'P': list.push(parse(true, 1, true)[0] + '*'); break; // pointer + case 'R': list.push(parse(true, 1, true)[0] + '&'); break; // reference + case 'L': { // literal + i++; // skip basic type + var end = func.indexOf('E', i); + var size = end - i; + list.push(func.substr(i, size)); + i += size + 2; // size + 'EE' + break; + } + case 'A': { // array + var size = parseInt(func.substr(i)); + i += size.toString().length; + if (func[i] !== '_') throw '?'; + i++; // skip _ + list.push(parse(true, 1, true)[0] + ' [' + size + ']'); + break; + } + case 'E': break paramLoop; + default: ret += '?' + c; break paramLoop; + } + } + } + if (!allowVoid && list.length === 1 && list[0] === 'void') list = []; // avoid (void) + if (rawList) { + if (ret) { + list.push(ret + '?'); + } + return list; + } else { + return ret + flushList(); + } + } + var parsed = func; + try { + // Special-case the entry point, since its name differs from other name mangling. + if (func == 'Object._main' || func == '_main') { + return 'main()'; + } + if (typeof func === 'number') func = Pointer_stringify(func); + if (func[0] !== '_') return func; + if (func[1] !== '_') return func; // C function + if (func[2] !== 'Z') return func; + switch (func[3]) { + case 'n': return 'operator new()'; + case 'd': return 'operator delete()'; + } + parsed = parse(); + } catch(e) { + parsed += '?'; + } + if (parsed.indexOf('?') >= 0 && !hasLibcxxabi) { + Runtime.warnOnce('warning: a problem occurred in builtin C++ name demangling; build with -s DEMANGLE_SUPPORT=1 to link in libcxxabi demangling'); + } + return parsed; +} + +function demangleAll(text) { + return text.replace(/__Z[\w\d_]+/g, function(x) { var y = demangle(x); return x === y ? x : (x + ' [' + y + ']') }); +} + +function jsStackTrace() { + var err = new Error(); + if (!err.stack) { + // IE10+ special cases: It does have callstack info, but it is only populated if an Error object is thrown, + // so try that as a special-case. + try { + throw new Error(0); + } catch(e) { + err = e; + } + if (!err.stack) { + return '(no stack trace available)'; + } + } + return err.stack.toString(); +} + +function stackTrace() { + return demangleAll(jsStackTrace()); +} +Module['stackTrace'] = stackTrace; + +// Memory management + +var PAGE_SIZE = 4096; +function alignMemoryPage(x) { + return (x+4095)&-4096; +} + +var HEAP; +var HEAP8, HEAPU8, HEAP16, HEAPU16, HEAP32, HEAPU32, HEAPF32, HEAPF64; + +var STATIC_BASE = 0, STATICTOP = 0, staticSealed = false; // static area +var STACK_BASE = 0, STACKTOP = 0, STACK_MAX = 0; // stack area +var DYNAMIC_BASE = 0, DYNAMICTOP = 0; // dynamic area handled by sbrk + +function enlargeMemory() { + abort('Cannot enlarge memory arrays. Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value ' + TOTAL_MEMORY + ', (2) compile with ALLOW_MEMORY_GROWTH which adjusts the size at runtime but prevents some optimizations, or (3) set Module.TOTAL_MEMORY before the program runs.'); +} + + +var TOTAL_STACK = Module['TOTAL_STACK'] || 5242880; +var TOTAL_MEMORY = Module['TOTAL_MEMORY'] || 16777216; +var FAST_MEMORY = Module['FAST_MEMORY'] || 2097152; + +var totalMemory = 64*1024; +while (totalMemory < TOTAL_MEMORY || totalMemory < 2*TOTAL_STACK) { + if (totalMemory < 16*1024*1024) { + totalMemory *= 2; + } else { + totalMemory += 16*1024*1024 + } +} +if (totalMemory !== TOTAL_MEMORY) { + Module.printErr('increasing TOTAL_MEMORY to ' + totalMemory + ' to be compliant with the asm.js spec'); + TOTAL_MEMORY = totalMemory; +} + +// Initialize the runtime's memory +// check for full engine support (use string 'subarray' to avoid closure compiler confusion) +assert(typeof Int32Array !== 'undefined' && typeof Float64Array !== 'undefined' && !!(new Int32Array(1)['subarray']) && !!(new Int32Array(1)['set']), + 'JS engine does not provide full typed array support'); + +var buffer = new ArrayBuffer(TOTAL_MEMORY); +HEAP8 = new Int8Array(buffer); +HEAP16 = new Int16Array(buffer); +HEAP32 = new Int32Array(buffer); +HEAPU8 = new Uint8Array(buffer); +HEAPU16 = new Uint16Array(buffer); +HEAPU32 = new Uint32Array(buffer); +HEAPF32 = new Float32Array(buffer); +HEAPF64 = new Float64Array(buffer); + +// Endianness check (note: assumes compiler arch was little-endian) +HEAP32[0] = 255; +assert(HEAPU8[0] === 255 && HEAPU8[3] === 0, 'Typed arrays 2 must be run on a little-endian system'); + +Module['HEAP'] = HEAP; +Module['buffer'] = buffer; +Module['HEAP8'] = HEAP8; +Module['HEAP16'] = HEAP16; +Module['HEAP32'] = HEAP32; +Module['HEAPU8'] = HEAPU8; +Module['HEAPU16'] = HEAPU16; +Module['HEAPU32'] = HEAPU32; +Module['HEAPF32'] = HEAPF32; +Module['HEAPF64'] = HEAPF64; + +function callRuntimeCallbacks(callbacks) { + while(callbacks.length > 0) { + var callback = callbacks.shift(); + if (typeof callback == 'function') { + callback(); + continue; + } + var func = callback.func; + if (typeof func === 'number') { + if (callback.arg === undefined) { + Runtime.dynCall('v', func); + } else { + Runtime.dynCall('vi', func, [callback.arg]); + } + } else { + func(callback.arg === undefined ? null : callback.arg); + } + } +} + +var __ATPRERUN__ = []; // functions called before the runtime is initialized +var __ATINIT__ = []; // functions called during startup +var __ATMAIN__ = []; // functions called when main() is to be run +var __ATEXIT__ = []; // functions called during shutdown +var __ATPOSTRUN__ = []; // functions called after the runtime has exited + +var runtimeInitialized = false; +var runtimeExited = false; + +function preRun() { + // compatibility - merge in anything from Module['preRun'] at this time + if (Module['preRun']) { + if (typeof Module['preRun'] == 'function') Module['preRun'] = [Module['preRun']]; + while (Module['preRun'].length) { + addOnPreRun(Module['preRun'].shift()); + } + } + callRuntimeCallbacks(__ATPRERUN__); +} + +function ensureInitRuntime() { + if (runtimeInitialized) return; + runtimeInitialized = true; + callRuntimeCallbacks(__ATINIT__); +} + +function preMain() { + callRuntimeCallbacks(__ATMAIN__); +} + +function exitRuntime() { + callRuntimeCallbacks(__ATEXIT__); + runtimeExited = true; +} + +function postRun() { + // compatibility - merge in anything from Module['postRun'] at this time + if (Module['postRun']) { + if (typeof Module['postRun'] == 'function') Module['postRun'] = [Module['postRun']]; + while (Module['postRun'].length) { + addOnPostRun(Module['postRun'].shift()); + } + } + callRuntimeCallbacks(__ATPOSTRUN__); +} + +function addOnPreRun(cb) { + __ATPRERUN__.unshift(cb); +} +Module['addOnPreRun'] = Module.addOnPreRun = addOnPreRun; + +function addOnInit(cb) { + __ATINIT__.unshift(cb); +} +Module['addOnInit'] = Module.addOnInit = addOnInit; + +function addOnPreMain(cb) { + __ATMAIN__.unshift(cb); +} +Module['addOnPreMain'] = Module.addOnPreMain = addOnPreMain; + +function addOnExit(cb) { + __ATEXIT__.unshift(cb); +} +Module['addOnExit'] = Module.addOnExit = addOnExit; + +function addOnPostRun(cb) { + __ATPOSTRUN__.unshift(cb); +} +Module['addOnPostRun'] = Module.addOnPostRun = addOnPostRun; + +// Tools + + +function intArrayFromString(stringy, dontAddNull, length /* optional */) { + var ret = (new Runtime.UTF8Processor()).processJSString(stringy); + if (length) { + ret.length = length; + } + if (!dontAddNull) { + ret.push(0); + } + return ret; +} +Module['intArrayFromString'] = intArrayFromString; + +function intArrayToString(array) { + var ret = []; + for (var i = 0; i < array.length; i++) { + var chr = array[i]; + if (chr > 0xFF) { + chr &= 0xFF; + } + ret.push(String.fromCharCode(chr)); + } + return ret.join(''); +} +Module['intArrayToString'] = intArrayToString; + +function writeStringToMemory(string, buffer, dontAddNull) { + var array = intArrayFromString(string, dontAddNull); + var i = 0; + while (i < array.length) { + var chr = array[i]; + HEAP8[(((buffer)+(i))>>0)]=chr; + i = i + 1; + } +} +Module['writeStringToMemory'] = writeStringToMemory; + +function writeArrayToMemory(array, buffer) { + for (var i = 0; i < array.length; i++) { + HEAP8[(((buffer)+(i))>>0)]=array[i]; + } +} +Module['writeArrayToMemory'] = writeArrayToMemory; + +function writeAsciiToMemory(str, buffer, dontAddNull) { + for (var i = 0; i < str.length; i++) { + HEAP8[(((buffer)+(i))>>0)]=str.charCodeAt(i); + } + if (!dontAddNull) HEAP8[(((buffer)+(str.length))>>0)]=0; +} +Module['writeAsciiToMemory'] = writeAsciiToMemory; + +function unSign(value, bits, ignore) { + if (value >= 0) { + return value; + } + return bits <= 32 ? 2*Math.abs(1 << (bits-1)) + value // Need some trickery, since if bits == 32, we are right at the limit of the bits JS uses in bitshifts + : Math.pow(2, bits) + value; +} +function reSign(value, bits, ignore) { + if (value <= 0) { + return value; + } + var half = bits <= 32 ? Math.abs(1 << (bits-1)) // abs is needed if bits == 32 + : Math.pow(2, bits-1); + if (value >= half && (bits <= 32 || value > half)) { // for huge values, we can hit the precision limit and always get true here. so don't do that + // but, in general there is no perfect solution here. With 64-bit ints, we get rounding and errors + // TODO: In i64 mode 1, resign the two parts separately and safely + value = -2*half + value; // Cannot bitshift half, as it may be at the limit of the bits JS uses in bitshifts + } + return value; +} + +// check for imul support, and also for correctness ( https://bugs.webkit.org/show_bug.cgi?id=126345 ) +if (!Math['imul'] || Math['imul'](0xffffffff, 5) !== -5) Math['imul'] = function imul(a, b) { + var ah = a >>> 16; + var al = a & 0xffff; + var bh = b >>> 16; + var bl = b & 0xffff; + return (al*bl + ((ah*bl + al*bh) << 16))|0; +}; +Math.imul = Math['imul']; + + +var Math_abs = Math.abs; +var Math_cos = Math.cos; +var Math_sin = Math.sin; +var Math_tan = Math.tan; +var Math_acos = Math.acos; +var Math_asin = Math.asin; +var Math_atan = Math.atan; +var Math_atan2 = Math.atan2; +var Math_exp = Math.exp; +var Math_log = Math.log; +var Math_sqrt = Math.sqrt; +var Math_ceil = Math.ceil; +var Math_floor = Math.floor; +var Math_pow = Math.pow; +var Math_imul = Math.imul; +var Math_fround = Math.fround; +var Math_min = Math.min; + +// A counter of dependencies for calling run(). If we need to +// do asynchronous work before running, increment this and +// decrement it. Incrementing must happen in a place like +// PRE_RUN_ADDITIONS (used by emcc to add file preloading). +// Note that you can add dependencies in preRun, even though +// it happens right before run - run will be postponed until +// the dependencies are met. +var runDependencies = 0; +var runDependencyWatcher = null; +var dependenciesFulfilled = null; // overridden to take different actions when all run dependencies are fulfilled + +function addRunDependency(id) { + runDependencies++; + if (Module['monitorRunDependencies']) { + Module['monitorRunDependencies'](runDependencies); + } +} +Module['addRunDependency'] = addRunDependency; +function removeRunDependency(id) { + runDependencies--; + if (Module['monitorRunDependencies']) { + Module['monitorRunDependencies'](runDependencies); + } + if (runDependencies == 0) { + if (runDependencyWatcher !== null) { + clearInterval(runDependencyWatcher); + runDependencyWatcher = null; + } + if (dependenciesFulfilled) { + var callback = dependenciesFulfilled; + dependenciesFulfilled = null; + callback(); // can add another dependenciesFulfilled + } + } +} +Module['removeRunDependency'] = removeRunDependency; + +Module["preloadedImages"] = {}; // maps url to image data +Module["preloadedAudios"] = {}; // maps url to audio data + + +var memoryInitializer = null; + +// === Body === + + + + + +STATIC_BASE = 8; + +STATICTOP = STATIC_BASE + 33040; + /* global initializers */ __ATINIT__.push(); + + +/* memory initializer */ allocate([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,59,140,1,189,241,36,255,248,37,195,1,96,220,55,0,183,76,62,255,195,66,61,0,50,76,164,1,225,164,76,255,76,61,163,255,117,62,31,0,81,145,64,255,118,65,14,0,162,115,214,255,6,138,46,0,124,230,244,255,10,138,143,0,52,26,194,0,184,244,76,0,129,143,41,1,190,244,19,255,123,170,122,255,98,129,68,0,121,213,147,0,86,101,30,255,161,103,155,0,140,89,67,255,239,229,190,1,67,11,181,0,198,240,137,254,238,69,188,255,67,151,238,0,19,42,108,255,229,85,113,1,50,68,135,255,17,106,9,0,50,103,1,255,80,1,168,1,35,152,30,255,16,168,185,1,56,89,232,255,101,210,252,0,41,250,71,0,204,170,79,255,14,46,239,255,80,77,239,0,189,214,75,255,17,141,249,0,38,80,76,255,190,85,117,0,86,228,170,0,156,216,208,1,195,207,164,255,150,66,76,255,175,225,16,255,141,80,98,1,76,219,242,0,198,162,114,0,46,218,152,0,155,43,241,254,155,160,104,255,51,187,165,0,2,17,175,0,66,84,160,1,247,58,30,0,35,65,53,254,69,236,191,0,45,134,245,1,163,123,221,0,32,110,20,255,52,23,165,0,186,214,71,0,233,176,96,0,242,239,54,1,57,89,138,0,83,0,84,255,136,160,100,0,92,142,120,254,104,124,190,0,181,177,62,255,250,41,85,0,152,130,42,1,96,252,246,0,151,151,63,254,239,133,62,0,32,56,156,0,45,167,189,255,142,133,179,1,131,86,211,0,187,179,150,254,250,170,14,255,210,163,78,0,37,52,151,0,99,77,26,0,238,156,213,255,213,192,209,1,73,46,84,0,20,65,41,1,54,206,79,0,201,131,146,254,170,111,24,255,177,33,50,254,171,38,203,255,78,247,116,0,209,221,153,0,133,128,178,1,58,44,25,0,201,39,59,1,189,19,252,0,49,229,210,1,117,187,117,0,181,179,184,1,0,114,219,0,48,94,147,0,245,41,56,0,125,13,204,254,244,173,119,0,44,221,32,254,84,234,20,0,249,160,198,1,236,126,234,255,47,99,168,254,170,226,153,255,102,179,216,0,226,141,122,255,122,66,153,254,182,245,134,0,227,228,25,1,214,57,235,255,216,173,56,255,181,231,210,0,119,128,157,255,129,95,136,255,110,126,51,0,2,169,183,255,7,130,98,254,69,176,94,255,116,4,227,1,217,242,145,255,202,173,31,1,105,1,39,255,46,175,69,0,228,47,58,255,215,224,69,254,207,56,69,255,16,254,139,255,23,207,212,255,202,20,126,255,95,213,96,255,9,176,33,0,200,5,207,255,241,42,128,254,35,33,192,255,248,229,196,1,129,17,120,0,251,103,151,255,7,52,112,255,140,56,66,255,40,226,245,255,217,70,37,254,172,214,9,255,72,67,134,1,146,192,214,255,44,38,112,0,68,184,75,255,206,90,251,0,149,235,141,0,181,170,58,0,116,244,239,0,92,157,2,0,102,173,98,0,233,137,96,1,127,49,203,0,5,155,148,0,23,148,9,255,211,122,12,0,34,134,26,255,219,204,136,0,134,8,41,255,224,83,43,254,85,25,247,0,109,127,0,254,169,136,48,0,238,119,219,255,231,173,213,0,206,18,254,254,8,186,7,255,126,9,7,1,111,42,72,0,111,52,236,254,96,63,141,0,147,191,127,254,205,78,192,255,14,106,237,1,187,219,76,0,175,243,187,254,105,89,173,0,85,25,89,1,162,243,148,0,2,118,209,254,33,158,9,0,139,163,46,255,93,70,40,0,108,42,142,254,111,252,142,255,155,223,144,0,51,229,167,255,73,252,155,255,94,116,12,255,152,160,218,255,156,238,37,255,179,234,207,255,197,0,179,255,154,164,141,0,225,196,104,0,10,35,25,254,209,212,242,255,97,253,222,254,184,101,229,0,222,18,127,1,164,136,135,255,30,207,140,254,146,97,243,0,129,192,26,254,201,84,33,255,111,10,78,255,147,81,178,255,4,4,24,0,161,238,215,255,6,141,33,0,53,215,14,255,41,181,208,255,231,139,157,0,179,203,221,255,255,185,113,0,189,226,172,255,113,66,214,255,202,62,45,255,102,64,8,255,78,174,16,254,133,117,68,255,182,120,89,255,133,114,211,0,189,110,21,255,15,10,106,0,41,192,1,0,152,232,121,255,188,60,160,255,153,113,206,255,0,183,226,254,180,13,72,255,176,160,14,254,211,201,134,255,158,24,143,0,127,105,53,0,96,12,189,0,167,215,251,255,159,76,128,254,106,101,225,255,30,252,4,0,146,12,174,0,89,241,178,254,10,229,166,255,123,221,42,254,30,20,212,0,82,128,3,0,48,209,243,0,119,121,64,255,50,227,156,255,0,110,197,1,103,27,144,0,133,59,140,1,189,241,36,255,248,37,195,1,96,220,55,0,183,76,62,255,195,66,61,0,50,76,164,1,225,164,76,255,76,61,163,255,117,62,31,0,81,145,64,255,118,65,14,0,162,115,214,255,6,138,46,0,124,230,244,255,10,138,143,0,52,26,194,0,184,244,76,0,129,143,41,1,190,244,19,255,123,170,122,255,98,129,68,0,121,213,147,0,86,101,30,255,161,103,155,0,140,89,67,255,239,229,190,1,67,11,181,0,198,240,137,254,238,69,188,255,234,113,60,255,37,255,57,255,69,178,182,254,128,208,179,0,118,26,125,254,3,7,214,255,241,50,77,255,85,203,197,255,211,135,250,255,25,48,100,255,187,213,180,254,17,88,105,0,83,209,158,1,5,115,98,0,4,174,60,254,171,55,110,255,217,181,17,255,20,188,170,0,146,156,102,254,87,214,174,255,114,122,155,1,233,44,170,0,127,8,239,1,214,236,234,0,175,5,219,0,49,106,61,255,6,66,208,255,2,106,110,255,81,234,19,255,215,107,192,255,67,151,238,0,19,42,108,255,229,85,113,1,50,68,135,255,17,106,9,0,50,103,1,255,80,1,168,1,35,152,30,255,16,168,185,1,56,89,232,255,101,210,252,0,41,250,71,0,204,170,79,255,14,46,239,255,80,77,239,0,189,214,75,255,17,141,249,0,38,80,76,255,190,85,117,0,86,228,170,0,156,216,208,1,195,207,164,255,150,66,76,255,175,225,16,255,141,80,98,1,76,219,242,0,198,162,114,0,46,218,152,0,155,43,241,254,155,160,104,255,178,9,252,254,100,110,212,0,14,5,167,0,233,239,163,255,28,151,157,1,101,146,10,255,254,158,70,254,71,249,228,0,88,30,50,0,68,58,160,255,191,24,104,1,129,66,129,255,192,50,85,255,8,179,138,255,38,250,201,0,115,80,160,0,131,230,113,0,125,88,147,0,90,68,199,0,253,76,158,0,28,255,118,0,113,250,254,0,66,75,46,0,230,218,43,0,229,120,186,1,148,68,43,0,136,124,238,1,187,107,197,255,84,53,246,255,51,116,254,255,51,187,165,0,2,17,175,0,66,84,160,1,247,58,30,0,35,65,53,254,69,236,191,0,45,134,245,1,163,123,221,0,32,110,20,255,52,23,165,0,186,214,71,0,233,176,96,0,242,239,54,1,57,89,138,0,83,0,84,255,136,160,100,0,92,142,120,254,104,124,190,0,181,177,62,255,250,41,85,0,152,130,42,1,96,252,246,0,151,151,63,254,239,133,62,0,32,56,156,0,45,167,189,255,142,133,179,1,131,86,211,0,187,179,150,254,250,170,14,255,68,113,21,255,222,186,59,255,66,7,241,1,69,6,72,0,86,156,108,254,55,167,89,0,109,52,219,254,13,176,23,255,196,44,106,255,239,149,71,255,164,140,125,255,159,173,1,0,51,41,231,0,145,62,33,0,138,111,93,1,185,83,69,0,144,115,46,0,97,151,16,255,24,228,26,0,49,217,226,0,113,75,234,254,193,153,12,255,182,48,96,255,14,13,26,0,128,195,249,254,69,193,59,0,132,37,81,254,125,106,60,0,214,240,169,1,164,227,66,0,210,163,78,0,37,52,151,0,99,77,26,0,238,156,213,255,213,192,209,1,73,46,84,0,20,65,41,1,54,206,79,0,201,131,146,254,170,111,24,255,177,33,50,254,171,38,203,255,78,247,116,0,209,221,153,0,133,128,178,1,58,44,25,0,201,39,59,1,189,19,252,0,49,229,210,1,117,187,117,0,181,179,184,1,0,114,219,0,48,94,147,0,245,41,56,0,125,13,204,254,244,173,119,0,44,221,32,254,84,234,20,0,249,160,198,1,236,126,234,255,143,62,221,0,129,89,214,255,55,139,5,254,68,20,191,255,14,204,178,1,35,195,217,0,47,51,206,1,38,246,165,0,206,27,6,254,158,87,36,0,217,52,146,255,125,123,215,255,85,60,31,255,171,13,7,0,218,245,88,254,252,35,60,0,55,214,160,255,133,101,56,0,224,32,19,254,147,64,234,0,26,145,162,1,114,118,125,0,248,252,250,0,101,94,196,255,198,141,226,254,51,42,182,0,135,12,9,254,109,172,210,255,197,236,194,1,241,65,154,0,48,156,47,255,153,67,55,255,218,165,34,254,74,180,179,0,218,66,71,1,88,122,99,0,212,181,219,255,92,42,231,255,239,0,154,0,245,77,183,255,94,81,170,1,18,213,216,0,171,93,71,0,52,94,248,0,18,151,161,254,197,209,66,255,174,244,15,254,162,48,183,0,49,61,240,254,182,93,195,0,199,228,6,1,200,5,17,255,137,45,237,255,108,148,4,0,90,79,237,255,39,63,77,255,53,82,207,1,142,22,118,255,101,232,18,1,92,26,67,0,5,200,88,255,33,168,138,255,149,225,72,0,2,209,27,255,44,245,168,1,220,237,17,255,30,211,105,254,141,238,221,0,128,80,245,254,111,254,14,0,222,95,190,1,223,9,241,0,146,76,212,255,108,205,104,255,63,117,153,0,144,69,48,0,35,228,111,0,192,33,193,255,112,214,190,254,115,152,151,0,23,102,88,0,51,74,248,0,226,199,143,254,204,162,101,255,208,97,189,1,245,104,18,0,230,246,30,255,23,148,69,0,110,88,52,254,226,181,89,255,208,47,90,254,114,161,80,255,33,116,248,0,179,152,87,255,69,144,177,1,88,238,26,255,58,32,113,1,1,77,69,0,59,121,52,255,152,238,83,0,52,8,193,0,231,39,233,255,199,34,138,0,222,68,173,0,91,57,242,254,220,210,127,255,192,7,246,254,151,35,187,0,195,236,165,0,111,93,206,0,212,247,133,1,154,133,209,255,155,231,10,0,64,78,38,0,122,249,100,1,30,19,97,255,62,91,249,1,248,133,77,0,197,63,168,254,116,10,82,0,184,236,113,254,212,203,194,255,61,100,252,254,36,5,202,255,119,91,153,255,129,79,29,0,103,103,171,254,237,215,111,255,216,53,69,0,239,240,23,0,194,149,221,255,38,225,222,0,232,255,180,254,118,82,133,255,57,209,177,1,139,232,133,0,158,176,46,254,194,115,46,0,88,247,229,1,28,103,191,0,221,222,175,254,149,235,44,0,151,228,25,254,218,105,103,0,142,85,210,0,149,129,190,255,213,65,94,254,117,134,224,255,82,198,117,0,157,221,220,0,163,101,36,0,197,114,37,0,104,172,166,254,11,182,0,0,81,72,188,255,97,188,16,255,69,6,10,0,199,147,145,255,8,9,115,1,65,214,175,255,217,173,209,0,80,127,166,0,247,229,4,254,167,183,124,255,90,28,204,254,175,59,240,255,11,41,248,1,108,40,51,255,144,177,195,254,150,250,126,0,138,91,65,1,120,60,222,255,245,193,239,0,29,214,189,255,128,2,25,0,80,154,162,0,77,220,107,1,234,205,74,255,54,166,103,255,116,72,9,0,228,94,47,255,30,200,25,255,35,214,89,255,61,176,140,255,83,226,163,255,75,130,172,0,128,38,17,0,95,137,152,255,215,124,159,1,79,93,0,0,148,82,157,254,195,130,251,255,40,202,76,255,251,126,224,0,157,99,62,254,207,7,225,255,96,68,195,0,140,186,157,255,131,19,231,255,42,128,254,0,52,219,61,254,102,203,72,0,141,7,11,255,186,164,213,0,31,122,119,0,133,242,145,0,208,252,232,255,91,213,182,255,143,4,250,254,249,215,74,0,165,30,111,1,171,9,223,0,229,123,34,1,92,130,26,255,77,155,45,1,195,139,28,255,59,224,78,0,136,17,247,0,108,121,32,0,79,250,189,255,96,227,252,254,38,241,62,0,62,174,125,255,155,111,93,255,10,230,206,1,97,197,40,255,0,49,57,254,65,250,13,0,18,251,150,255,220,109,210,255,5,174,166,254,44,129,189,0,235,35,147,255,37,247,141,255,72,141,4,255,103,107,255,0,247,90,4,0,53,44,42,0,2,30,240,0,4,59,63,0,88,78,36,0,113,167,180,0,190,71,193,255,199,158,164,255,58,8,172,0,77,33,12,0,65,63,3,0,153,77,33,255,172,254,102,1,228,221,4,255,87,30,254,1,146,41,86,255,138,204,239,254,108,141,17,255,187,242,135,0,210,208,127,0,68,45,14,254,73,96,62,0,81,60,24,255,170,6,36,255,3,249,26,0,35,213,109,0,22,129,54,255,21,35,225,255,234,61,56,255,58,217,6,0,143,124,88,0,236,126,66,0,209,38,183,255,34,238,6,255,174,145,102,0,95,22,211,0,196,15,153,254,46,84,232,255,117,34,146,1,231,250,74,255,27,134,100,1,92,187,195,255,170,198,112,0,120,28,42,0,209,70,67,0,29,81,31,0,29,168,100,1,169,173,160,0,107,35,117,0,62,96,59,255,81,12,69,1,135,239,190,255,220,252,18,0,163,220,58,255,137,137,188,255,83,102,109,0,96,6,76,0,234,222,210,255,185,174,205,1,60,158,213,255,13,241,214,0,172,129,140,0,93,104,242,0,192,156,251,0,43,117,30,0,225,81,158,0,127,232,218,0,226,28,203,0,233,27,151,255,117,43,5,255,242,14,47,255,33,20,6,0,137,251,44,254,27,31,245,255,183,214,125,254,40,121,149,0,186,158,213,255,89,8,227,0,69,88,0,254,203,135,225,0,201,174,203,0,147,71,184,0,18,121,41,254,94,5,78,0,224,214,240,254,36,5,180,0,251,135,231,1,163,138,212,0,210,249,116,254,88,129,187,0,19,8,49,254,62,14,144,255,159,76,211,0,214,51,82,0,109,117,228,254,103,223,203,255,75,252,15,1,154,71,220,255,23,13,91,1,141,168,96,255,181,182,133,0,250,51,55,0,234,234,212,254,175,63,158,0,39,240,52,1,158,189,36,255,213,40,85,1,32,180,247,255,19,102,26,1,84,24,97,255,69,21,222,0,148,139,122,255,220,213,235,1,232,203,255,0,121,57,147,0,227,7,154,0,53,22,147,1,72,1,225,0,82,134,48,254,83,60,157,255,145,72,169,0,34,103,239,0,198,233,47,0,116,19,4,255,184,106,9,255,183,129,83,0,36,176,230,1,34,103,72,0,219,162,134,0,245,42,158,0,32,149,96,254,165,44,144,0,202,239,72,254,215,150,5,0,42,66,36,1,132,215,175,0,86,174,86,255,26,197,156,255,49,232,135,254,103,182,82,0,253,128,176,1,153,178,122,0,245,250,10,0,236,24,178,0,137,106,132,0,40,29,41,0,50,30,152,255,124,105,38,0,230,191,75,0,143,43,170,0,44,131,20,255,44,13,23,255,237,255,155,1,159,109,100,255,112,181,24,255,104,220,108,0,55,211,131,0,99,12,213,255,152,151,145,255,238,5,159,0,97,155,8,0,33,108,81,0,1,3,103,0,62,109,34,255,250,155,180,0,32,71,195,255,38,70,145,1,159,95,245,0,69,229,101,1,136,28,240,0,79,224,25,0,78,110,121,255,248,168,124,0,187,128,247,0,2,147,235,254,79,11,132,0,70,58,12,1,181,8,163,255,79,137,133,255,37,170,11,255,141,243,85,255,176,231,215,255,204,150,164,255,239,215,39,255,46,87,156,254,8,163,88,255,172,34,232,0,66,44,102,255,27,54,41,254,236,99,87,255,41,123,169,1,52,114,43,0,117,134,40,0,155,134,26,0,231,207,91,254,35,132,38,255,19,102,125,254,36,227,133,255,118,3,113,255,29,13,124,0,152,96,74,1,88,146,206,255,167,191,220,254,162,18,88,255,182,100,23,0,31,117,52,0,81,46,106,1,12,2,7,0,69,80,201,1,209,246,172,0,12,48,141,1,224,211,88,0,116,226,159,0,122,98,130,0,65,236,234,1,225,226,9,255,207,226,123,1,89,214,59,0,112,135,88,1,90,244,203,255,49,11,38,1,129,108,186,0,89,112,15,1,101,46,204,255,127,204,45,254,79,255,221,255,51,73,18,255,127,42,101,255,241,21,202,0,160,227,7,0,105,50,236,0,79,52,197,255,104,202,208,1,180,15,16,0,101,197,78,255,98,77,203,0,41,185,241,1,35,193,124,0,35,155,23,255,207,53,192,0,11,125,163,1,249,158,185,255,4,131,48,0,21,93,111,255,61,121,231,1,69,200,36,255,185,48,185,255,111,238,21,255,39,50,25,255,99,215,163,255,87,212,30,255,164,147,5,255,128,6,35,1,108,223,110,255,194,76,178,0,74,101,180,0,243,47,48,0,174,25,43,255,82,173,253,1,54,114,192,255,40,55,91,0,215,108,176,255,11,56,7,0,224,233,76,0,209,98,202,254,242,25,125,0,44,193,93,254,203,8,177,0,135,176,19,0,112,71,213,255,206,59,176,1,4,67,26,0,14,143,213,254,42,55,208,255,60,67,120,0,193,21,163,0,99,164,115,0,10,20,118,0,156,212,222,254,160,7,217,255,114,245,76,1,117,59,123,0,176,194,86,254,213,15,176,0,78,206,207,254,213,129,59,0,233,251,22,1,96,55,152,255,236,255,15,255,197,89,84,255,93,149,133,0,174,160,113,0,234,99,169,255,152,116,88,0,144,164,83,255,95,29,198,255,34,47,15,255,99,120,134,255,5,236,193,0,249,247,126,255,147,187,30,0,50,230,117,255,108,217,219,255,163,81,166,255,72,25,169,254,155,121,79,255,28,155,89,254,7,126,17,0,147,65,33,1,47,234,253,0,26,51,18,0,105,83,199,255,163,196,230,0,113,248,164,0,226,254,218,0,189,209,203,255,164,247,222,254,255,35,165,0,4,188,243,1,127,179,71,0,37,237,254,255,100,186,240,0,5,57,71,254,103,72,73,255,244,18,81,254,229,210,132,255,238,6,180,255,11,229,174,255,227,221,192,1,17,49,28,0,163,215,196,254,9,118,4,255,51,240,71,0,113,129,109,255,76,240,231,0,188,177,127,0,125,71,44,1,26,175,243,0,94,169,25,254,27,230,29,0,15,139,119,1,168,170,186,255,172,197,76,255,252,75,188,0,137,124,196,0,72,22,96,255,45,151,249,1,220,145,100,0,64,192,159,255,120,239,226,0,129,178,146,0,0,192,125,0,235,138,234,0,183,157,146,0,83,199,192,255,184,172,72,255,73,225,128,0,77,6,250,255,186,65,67,0,104,246,207,0,188,32,138,255,218,24,242,0,67,138,81,254,237,129,121,255,20,207,150,1,41,199,16,255,6,20,128,0,159,118,5,0,181,16,143,255,220,38,15,0,23,64,147,254,73,26,13,0,87,228,57,1,204,124,128,0,43,24,223,0,219,99,199,0,22,75,20,255,19,27,126,0,157,62,215,0,110,29,230,0,179,167,255,1,54,252,190,0,221,204,182,254,179,158,65,255,81,157,3,0,194,218,159,0,170,223,0,0,224,11,32,255,38,197,98,0,168,164,37,0,23,88,7,1,164,186,110,0,96,36,134,0,234,242,229,0,250,121,19,0,242,254,112,255,3,47,94,1,9,239,6,255,81,134,153,254,214,253,168,255,67,124,224,0,245,95,74,0,28,30,44,254,1,109,220,255,178,89,89,0,252,36,76,0,24,198,46,255,76,77,111,0,134,234,136,255,39,94,29,0,185,72,234,255,70,68,135,255,231,102,7,254,77,231,140,0,167,47,58,1,148,97,118,255,16,27,225,1,166,206,143,255,110,178,214,255,180,131,162,0,143,141,225,1,13,218,78,255,114,153,33,1,98,104,204,0,175,114,117,1,167,206,75,0,202,196,83,1,58,64,67,0,138,47,111,1,196,247,128,255,137,224,224,254,158,112,207,0,154,100,255,1,134,37,107,0,198,128,79,255,127,209,155,255,163,254,185,254,60,14,243,0,31,219,112,254,29,217,65,0,200,13,116,254,123,60,196,255,224,59,184,254,242,89,196,0,123,16,75,254,149,16,206,0,69,254,48,1,231,116,223,255,209,160,65,1,200,80,98,0,37,194,184,254,148,63,34,0,139,240,65,255,217,144,132,255,56,38,45,254,199,120,210,0,108,177,166,255,160,222,4,0,220,126,119,254,165,107,160,255,82,220,248,1,241,175,136,0,144,141,23,255,169,138,84,0,160,137,78,255,226,118,80,255,52,27,132,255,63,96,139,255,152,250,39,0,188,155,15,0,232,51,150,254,40,15,232,255,240,229,9,255,137,175,27,255,75,73,97,1,218,212,11,0,135,5,162,1,107,185,213,0,2,249,107,255,40,242,70,0,219,200,25,0,25,157,13,0,67,82,80,255,196,249,23,255,145,20,149,0,50,72,146,0,94,76,148,1,24,251,65,0,31,192,23,0,184,212,201,255,123,233,162,1,247,173,72,0,162,87,219,254,126,134,89,0,159,11,12,254,166,105,29,0,73,27,228,1,113,120,183,255,66,163,109,1,212,143,11,255,159,231,168,1,255,128,90,0,57,14,58,254,89,52,10,255,253,8,163,1,0,145,210,255,10,129,85,1,46,181,27,0,103,136,160,254,126,188,209,255,34,35,111,0,215,219,24,255,212,11,214,254,101,5,118,0,232,197,133,255,223,167,109,255,237,80,86,255,70,139,94,0,158,193,191,1,155,15,51,255,15,190,115,0,78,135,207,255,249,10,27,1,181,125,233,0,95,172,13,254,170,213,161,255,39,236,138,255,95,93,87,255,190,128,95,0,125,15,206,0,166,150,159,0,227,15,158,255,206,158,120,255,42,141,128,0,101,178,120,1,156,109,131,0,218,14,44,254,247,168,206,255,212,112,28,0,112,17,228,255,90,16,37,1,197,222,108,0,254,207,83,255,9,90,243,255,243,244,172,0,26,88,115,255,205,116,122,0,191,230,193,0,180,100,11,1,217,37,96,255,154,78,156,0,235,234,31,255,206,178,178,255,149,192,251,0,182,250,135,0,246,22,105,0,124,193,109,255,2,210,149,255,169,17,170,0,0,96,110,255,117,9,8,1,50,123,40,255,193,189,99,0,34,227,160,0,48,80,70,254,211,51,236,0,45,122,245,254,44,174,8,0,173,37,233,255,158,65,171,0,122,69,215,255,90,80,2,255,131,106,96,254,227,114,135,0,205,49,119,254,176,62,64,255,82,51,17,255,241,20,243,255,130,13,8,254,128,217,243,255,162,27,1,254,90,118,241,0,246,198,246,255,55,16,118,255,200,159,157,0,163,17,1,0,140,107,121,0,85,161,118,255,38,0,149,0,156,47,238,0,9,166,166,1,75,98,181,255,50,74,25,0,66,15,47,0,139,225,159,0,76,3,142,255,14,238,184,0,11,207,53,255,183,192,186,1,171,32,174,255,191,76,221,1,247,170,219,0,25,172,50,254,217,9,233,0,203,126,68,255,183,92,48,0,127,167,183,1,65,49,254,0,16,63,127,1,254,21,170,255,59,224,127,254,22,48,63,255,27,78,130,254,40,195,29,0,250,132,112,254,35,203,144,0,104,169,168,0,207,253,30,255,104,40,38,254,94,228,88,0,206,16,128,255,212,55,122,255,223,22,234,0,223,197,127,0,253,181,181,1,145,102,118,0,236,153,36,255,212,217,72,255,20,38,24,254,138,62,62,0,152,140,4,0,230,220,99,255,1,21,212,255,148,201,231,0,244,123,9,254,0,171,210,0,51,58,37,255,1,255,14,255,244,183,145,254,0,242,166,0,22,74,132,0,121,216,41,0,95,195,114,254,133,24,151,255,156,226,231,255,247,5,77,255,246,148,115,254,225,92,81,255,222,80,246,254,170,123,89,255,74,199,141,0,29,20,8,255,138,136,70,255,93,75,92,0,221,147,49,254,52,126,226,0,229,124,23,0,46,9,181,0,205,64,52,1,131,254,28,0,151,158,212,0,131,64,78,0,206,25,171,0,0,230,139,0,191,253,110,254,103,247,167,0,64,40,40,1,42,165,241,255,59,75,228,254,124,243,189,255,196,92,178,255,130,140,86,255,141,89,56,1,147,198,5,255,203,248,158,254,144,162,141,0,11,172,226,0,130,42,21,255,1,167,143,255,144,36,36,255,48,88,164,254,168,170,220,0,98,71,214,0,91,208,79,0,159,76,201,1,166,42,214,255,69,255,0,255,6,128,125,255,190,1,140,0,146,83,218,255,215,238,72,1,122,127,53,0,189,116,165,255,84,8,66,255,214,3,208,255,213,110,133,0,195,168,44,1,158,231,69,0,162,64,200,254,91,58,104,0,182,58,187,254,249,228,136,0,203,134,76,254,99,221,233,0,75,254,214,254,80,69,154,0,64,152,248,254,236,136,202,255,157,105,153,254,149,175,20,0,22,35,19,255,124,121,233,0,186,250,198,254,132,229,139,0,137,80,174,255,165,125,68,0,144,202,148,254,235,239,248,0,135,184,118,0,101,94,17,255,122,72,70,254,69,130,146,0,127,222,248,1,69,127,118,255,30,82,215,254,188,74,19,255,229,167,194,254,117,25,66,255,65,234,56,254,213,22,156,0,151,59,93,254,45,28,27,255,186,126,164,255,32,6,239,0,127,114,99,1,219,52,2,255,99,96,166,254,62,190,126,255,108,222,168,1,75,226,174,0,230,226,199,0,60,117,218,255,252,248,20,1,214,188,204,0,31,194,134,254,123,69,192,255,169,173,36,254,55,98,91,0,223,42,102,254,137,1,102,0,157,90,25,0,239,122,64,255,252,6,233,0,7,54,20,255,82,116,174,0,135,37,54,255,15,186,125,0,227,112,175,255,100,180,225,255,42,237,244,255,244,173,226,254,248,18,33,0,171,99,150,255,74,235,50,255,117,82,32,254,106,168,237,0,207,109,208,1,228,9,186,0,135,60,169,254,179,92,143,0,244,170,104,255,235,45,124,255,70,99,186,0,117,137,183,0,224,31,215,0,40,9,100,0,26,16,95,1,68,217,87,0,8,151,20,255,26,100,58,255,176,165,203,1,52,118,70,0,7,32,254,254,244,254,245,255,167,144,194,255,125,113,23,255,176,121,181,0,136,84,209,0,138,6,30,255,89,48,28,0,33,155,14,255,25,240,154,0,141,205,109,1,70,115,62,255,20,40,107,254,138,154,199,255,94,223,226,255,157,171,38,0,163,177,25,254,45,118,3,255,14,222,23,1,209,190,81,255,118,123,232,1,13,213,101,255,123,55,123,254,27,246,165,0,50,99,76,255,140,214,32,255,97,65,67,255,24,12,28,0,174,86,78,1,64,247,96,0,160,135,67,0,66,55,243,255,147,204,96,255,26,6,33,255,98,51,83,1,153,213,208,255,2,184,54,255,25,218,11,0,49,67,246,254,18,149,72,255,13,25,72,0,42,79,214,0,42,4,38,1,27,139,144,255,149,187,23,0,18,164,132,0,245,84,184,254,120,198,104,255,126,218,96,0,56,117,234,255,13,29,214,254,68,47,10,255,167,154,132,254,152,38,198,0,66,178,89,255,200,46,171,255,13,99,83,255,210,187,253,255,170,45,42,1,138,209,124,0,214,162,141,0,12,230,156,0,102,36,112,254,3,147,67,0,52,215,123,255,233,171,54,255,98,137,62,0,247,218,39,255,231,218,236,0,247,191,127,0,195,146,84,0,165,176,92,255,19,212,94,255,17,74,227,0,88,40,153,1,198,147,1,255,206,67,245,254,240,3,218,255,61,141,213,255,97,183,106,0,195,232,235,254,95,86,154,0,209,48,205,254,118,209,241,255,240,120,223,1,213,29,159,0,163,127,147,255,13,218,93,0,85,24,68,254,70,20,80,255,189,5,140,1,82,97,254,255,99,99,191,255,132,84,133,255,107,218,116,255,112,122,46,0,105,17,32,0,194,160,63,255,68,222,39,1,216,253,92,0,177,105,205,255,149,201,195,0,42,225,11,255,40,162,115,0,9,7,81,0,165,218,219,0,180,22,0,254,29,146,252,255,146,207,225,1,180,135,96,0,31,163,112,0,177,11,219,255,133,12,193,254,43,78,50,0,65,113,121,1,59,217,6,255,110,94,24,1,112,172,111,0,7,15,96,0,36,85,123,0,71,150,21,255,208,73,188,0,192,11,167,1,213,245,34,0,9,230,92,0,162,142,39,255,215,90,27,0,98,97,89,0,94,79,211,0,90,157,240,0,95,220,126,1,102,176,226,0,36,30,224,254,35,31,127,0,231,232,115,1,85,83,130,0,210,73,245,255,47,143,114,255,68,65,197,0,59,72,62,255,183,133,173,254,93,121,118,255,59,177,81,255,234,69,173,255,205,128,177,0,220,244,51,0,26,244,209,1,73,222,77,255,163,8,96,254,150,149,211,0,158,254,203,1,54,127,139,0,161,224,59,0,4,109,22,255,222,42,45,255,208,146,102,255,236,142,187,0,50,205,245,255,10,74,89,254,48,79,142,0,222,76,130,255,30,166,63,0,236,12,13,255,49,184,244,0,187,113,102,0,218,101,253,0,153,57,182,254,32,150,42,0,25,198,146,1,237,241,56,0,140,68,5,0,91,164,172,255,78,145,186,254,67,52,205,0,219,207,129,1,109,115,17,0,54,143,58,1,21,248,120,255,179,255,30,0,193,236,66,255,1,255,7,255,253,192,48,255,19,69,217,1,3,214,0,255,64,101,146,1,223,125,35,255,235,73,179,255,249,167,226,0,225,175,10,1,97,162,58,0,106,112,171,1,84,172,5,255,133,140,178,255,134,245,142,0,97,90,125,255,186,203,185,255,223,77,23,255,192,92,106,0,15,198,115,255,217,152,248,0,171,178,120,255,228,134,53,0,176,54,193,1,250,251,53,0,213,10,100,1,34,199,106,0,151,31,244,254,172,224,87,255,14,237,23,255,253,85,26,255,127,39,116,255,172,104,100,0,251,14,70,255,212,208,138,255,253,211,250,0,176,49,165,0,15,76,123,255,37,218,160,255,92,135,16,1,10,126,114,255,70,5,224,255,247,249,141,0,68,20,60,1,241,210,189,255,195,217,187,1,151,3,113,0,151,92,174,0,231,62,178,255,219,183,225,0,23,23,33,255,205,181,80,0,57,184,248,255,67,180,1,255,90,123,93,255,39,0,162,255,96,248,52,255,84,66,140,0,34,127,228,255,194,138,7,1,166,110,188,0,21,17,155,1,154,190,198,255,214,80,59,255,18,7,143,0,72,29,226,1,199,217,249,0,232,161,71,1,149,190,201,0,217,175,95,254,113,147,67,255,138,143,199,255,127,204,1,0,29,182,83,1,206,230,155,255,186,204,60,0,10,125,85,255,232,96,25,255,255,89,247,255,213,254,175,1,232,193,81,0,28,43,156,254,12,69,8,0,147,24,248,0,18,198,49,0,134,60,35,0,118,246,18,255,49,88,254,254,228,21,186,255,182,65,112,1,219,22,1,255,22,126,52,255,189,53,49,255,112,25,143,0,38,127,55,255,226,101,163,254,208,133,61,255,137,69,174,1,190,118,145,255,60,98,219,255,217,13,245,255,250,136,10,0,84,254,226,0,201,31,125,1,240,51,251,255,31,131,130,255,2,138,50,255,215,215,177,1,223,12,238,255,252,149,56,255,124,91,68,255,72,126,170,254,119,255,100,0,130,135,232,255,14,79,178,0,250,131,197,0,138,198,208,0,121,216,139,254,119,18,36,255,29,193,122,0,16,42,45,255,213,240,235,1,230,190,169,255,198,35,228,254,110,173,72,0,214,221,241,255,56,148,135,0,192,117,78,254,141,93,207,255,143,65,149,0,21,18,98,255,95,44,244,1,106,191,77,0,254,85,8,254,214,110,176,255,73,173,19,254,160,196,199,255,237,90,144,0,193,172,113,255,200,155,136,254,228,90,221,0,137,49,74,1,164,221,215,255,209,189,5,255,105,236,55,255,42,31,129,1,193,255,236,0,46,217,60,0,138,88,187,255,226,82,236,255,81,69,151,255,142,190,16,1,13,134,8,0,127,122,48,255,81,64,156,0,171,243,139,0,237,35,246,0,122,143,193,254,212,122,146,0,95,41,255,1,87,132,77,0,4,212,31,0,17,31,78,0,39,45,173,254,24,142,217,255,95,9,6,255,227,83,6,0,98,59,130,254,62,30,33,0,8,115,211,1,162,97,128,255,7,184,23,254,116,28,168,255,248,138,151,255,98,244,240,0,186,118,130,0,114,248,235,255,105,173,200,1,160,124,71,255,94,36,164,1,175,65,146,255,238,241,170,254,202,198,197,0,228,71,138,254,45,246,109,255,194,52,158,0,133,187,176,0,83,252,154,254,89,189,221,255,170,73,252,0,148,58,125,0,36,68,51,254,42,69,177,255,168,76,86,255,38,100,204,255,38,53,35,0,175,19,97,0,225,238,253,255,81,81,135,0,210,27,255,254,235,73,107,0,8,207,115,0,82,127,136,0,84,99,21,254,207,19,136,0,100,164,101,0,80,208,77,255,132,207,237,255,15,3,15,255,33,166,110,0,156,95,85,255,37,185,111,1,150,106,35,255,166,151,76,0,114,87,135,255,159,194,64,0,12,122,31,255,232,7,101,254,173,119,98,0,154,71,220,254,191,57,53,255,168,232,160,255,224,32,99,255,218,156,165,0,151,153,163,0,217,13,148,1,197,113,89,0,149,28,161,254,207,23,30,0,105,132,227,255,54,230,94,255,133,173,204,255,92,183,157,255,88,144,252,254,102,33,90,0,159,97,3,0,181,218,155,255,240,114,119,0,106,214,53,255,165,190,115,1,152,91,225,255,88,106,44,255,208,61,113,0,151,52,124,0,191,27,156,255,110,54,236,1,14,30,166,255,39,127,207,1,229,199,28,0,188,228,188,254,100,157,235,0,246,218,183,1,107,22,193,255,206,160,95,0,76,239,147,0,207,161,117,0,51,166,2,255,52,117,10,254,73,56,227,255,152,193,225,0,132,94,136,255,101,191,209,0,32,107,229,255,198,43,180,1,100,210,118,0,114,67,153,255,23,88,26,255,89,154,92,1,220,120,140,255,144,114,207,255,252,115,250,255,34,206,72,0,138,133,127,255,8,178,124,1,87,75,97,0,15,229,92,254,240,67,131,255,118,123,227,254,146,120,104,255,145,213,255,1,129,187,70,255,219,119,54,0,1,19,173,0,45,150,148,1,248,83,72,0,203,233,169,1,142,107,56,0,247,249,38,1,45,242,80,255,30,233,103,0,96,82,70,0,23,201,111,0,81,39,30,255,161,183,78,255,194,234,33,255,68,227,140,254,216,206,116,0,70,27,235,255,104,144,79,0,164,230,93,254,214,135,156,0,154,187,242,254,188,20,131,255,36,109,174,0,159,112,241,0,5,110,149,1,36,165,218,0,166,29,19,1,178,46,73,0,93,43,32,254,248,189,237,0,102,155,141,0,201,93,195,255,241,139,253,255,15,111,98,255,108,65,163,254,155,79,190,255,73,174,193,254,246,40,48,255,107,88,11,254,202,97,85,255,253,204,18,255,113,242,66,0,110,160,194,254,208,18,186,0,81,21,60,0,188,104,167,255,124,166,97,254,210,133,142,0,56,242,137,254,41,111,130,0,111,151,58,1,111,213,141,255,183,172,241,255,38,6,196,255,185,7,123,255,46,11,246,0,245,105,119,1,15,2,161,255,8,206,45,255,18,202,74,255,83,124,115,1,212,141,157,0,83,8,209,254,139,15,232,255,172,54,173,254,50,247,132,0,214,189,213,0,144,184,105,0,223,254,248,0,255,147,240,255,23,188,72,0,7,51,54,0,188,25,180,254,220,180,0,255,83,160,20,0,163,189,243,255,58,209,194,255,87,73,60,0,106,24,49,0,245,249,220,0,22,173,167,0,118,11,195,255,19,126,237,0,110,159,37,255,59,82,47,0,180,187,86,0,188,148,208,1,100,37,133,255,7,112,193,0,129,188,156,255,84,106,129,255,133,225,202,0,14,236,111,255,40,20,101,0,172,172,49,254,51,54,74,255,251,185,184,255,93,155,224,255,180,249,224,1,230,178,146,0,72,57,54,254,178,62,184,0,119,205,72,0,185,239,253,255,61,15,218,0,196,67,56,255,234,32,171,1,46,219,228,0,208,108,234,255,20,63,232,255,165,53,199,1,133,228,5,255,52,205,107,0,74,238,140,255,150,156,219,254,239,172,178,255,251,189,223,254,32,142,211,255,218,15,138,1,241,196,80,0,28,36,98,254,22,234,199,0,61,237,220,255,246,57,37,0,142,17,142,255,157,62,26,0,43,238,95,254,3,217,6,255,213,25,240,1,39,220,174,255,154,205,48,254,19,13,192,255,244,34,54,254,140,16,155,0,240,181,5,254,155,193,60,0,166,128,4,255,36,145,56,255,150,240,219,0,120,51,145,0,82,153,42,1,140,236,146,0,107,92,248,1,189,10,3,0,63,136,242,0,211,39,24,0,19,202,161,1,173,27,186,255,210,204,239,254,41,209,162,255,182,254,159,255,172,116,52,0,195,103,222,254,205,69,59,0,53,22,41,1,218,48,194,0,80,210,242,0,210,188,207,0,187,161,161,254,216,17,1,0,136,225,113,0,250,184,63,0,223,30,98,254,77,168,162,0,59,53,175,0,19,201,10,255,139,224,194,0,147,193,154,255,212,189,12,254,1,200,174,255,50,133,113,1,94,179,90,0,173,182,135,0,94,177,113,0,43,89,215,255,136,252,106,255,123,134,83,254,5,245,66,255,82,49,39,1,220,2,224,0,97,129,177,0,77,59,89,0,61,29,155,1,203,171,220,255,92,78,139,0,145,33,181,255,169,24,141,1,55,150,179,0,139,60,80,255,218,39,97,0,2,147,107,255,60,248,72,0,173,230,47,1,6,83,182,255,16,105,162,254,137,212,81,255,180,184,134,1,39,222,164,255,221,105,251,1,239,112,125,0,63,7,97,0,63,104,227,255,148,58,12,0,90,60,224,255,84,212,252,0,79,215,168,0,248,221,199,1,115,121,1,0,36,172,120,0,32,162,187,255,57,107,49,255,147,42,21,0,106,198,43,1,57,74,87,0,126,203,81,255,129,135,195,0,140,31,177,0,221,139,194,0,3,222,215,0,131,68,231,0,177,86,178,254,124,151,180,0,184,124,38,1,70,163,17,0,249,251,181,1,42,55,227,0,226,161,44,0,23,236,110,0,51,149,142,1,93,5,236,0,218,183,106,254,67,24,77,0,40,245,209,255,222,121,153,0,165,57,30,0,83,125,60,0,70,38,82,1,229,6,188,0,109,222,157,255,55,118,63,255,205,151,186,0,227,33,149,255,254,176,246,1,227,177,227,0,34,106,163,254,176,43,79,0,106,95,78,1,185,241,122,255,185,14,61,0,36,1,202,0,13,178,162,255,247,11,132,0,161,230,92,1,65,1,185,255,212,50,165,1,141,146,64,255,158,242,218,0,21,164,125,0,213,139,122,1,67,71,87,0,203,158,178,1,151,92,43,0,152,111,5,255,39,3,239,255,217,255,250,255,176,63,71,255,74,245,77,1,250,174,18,255,34,49,227,255,246,46,251,255,154,35,48,1,125,157,61,255,106,36,78,255,97,236,153,0,136,187,120,255,113,134,171,255,19,213,217,254,216,94,209,255,252,5,61,0,94,3,202,0,3,26,183,255,64,191,43,255,30,23,21,0,129,141,77,255,102,120,7,1,194,76,140,0,188,175,52,255,17,81,148,0,232,86,55,1,225,48,172,0,134,42,42,255,238,50,47,0,169,18,254,0,20,147,87,255,14,195,239,255,69,247,23,0,238,229,128,255,177,49,112,0,168,98,251,255,121,71,248,0,243,8,145,254,246,227,153,255,219,169,177,254,251,139,165,255,12,163,185,255,164,40,171,255,153,159,27,254,243,109,91,255,222,24,112,1,18,214,231,0,107,157,181,254,195,147,0,255,194,99,104,255,89,140,190,255,177,66,126,254,106,185,66,0,49,218,31,0,252,174,158,0,188,79,230,1,238,41,224,0,212,234,8,1,136,11,181,0,166,117,83,255,68,195,94,0,46,132,201,0,240,152,88,0,164,57,69,254,160,224,42,255,59,215,67,255,119,195,141,255,36,180,121,254,207,47,8,255,174,210,223,0,101,197,68,255,255,82,141,1,250,137,233,0,97,86,133,1,16,80,69,0,132,131,159,0,116,93,100,0,45,141,139,0,152,172,157,255,90,43,91,0,71,153,46,0,39,16,112,255,217,136,97,255,220,198,25,254,177,53,49,0,222,88,134,255,128,15,60,0,207,192,169,255,192,116,209,255,106,78,211,1,200,213,183,255,7,12,122,254,222,203,60,255,33,110,199,254,251,106,117,0,228,225,4,1,120,58,7,255,221,193,84,254,112,133,27,0,189,200,201,255,139,135,150,0,234,55,176,255,61,50,65,0,152,108,169,255,220,85,1,255,112,135,227,0,162,26,186,0,207,96,185,254,244,136,107,0,93,153,50,1,198,97,151,0,110,11,86,255,143,117,174,255,115,212,200,0,5,202,183,0,237,164,10,254,185,239,62,0,236,120,18,254,98,123,99,255,168,201,194,254,46,234,214,0,191,133,49,255,99,169,119,0,190,187,35,1,115,21,45,255,249,131,72,0,112,6,123,255,214,49,181,254,166,233,34,0,92,197,102,254,253,228,205,255,3,59,201,1,42,98,46,0,219,37,35,255,169,195,38,0,94,124,193,1,156,43,223,0,95,72,133,254,120,206,191,0,122,197,239,255,177,187,79,255,254,46,2,1,250,167,190,0,84,129,19,0,203,113,166,255,249,31,189,254,72,157,202,255,208,71,73,255,207,24,72,0,10,16,18,1,210,81,76,255,88,208,192,255,126,243,107,255,238,141,120,255,199,121,234,255,137,12,59,255,36,220,123,255,148,179,60,254,240,12,29,0,66,0,97,1,36,30,38,255,115,1,93,255,96,103,231,255,197,158,59,1,192,164,240,0,202,202,57,255,24,174,48,0,89,77,155,1,42,76,215,0,244,151,233,0,23,48,81,0,239,127,52,254,227,130,37,255,248,116,93,1,124,132,118,0,173,254,192,1,6,235,83,255,110,175,231,1,251,28,182,0,129,249,93,254,84,184,128,0,76,181,62,0,175,128,186,0,100,53,136,254,109,29,226,0,221,233,58,1,20,99,74,0,0,22,160,0,134,13,21,0,9,52,55,255,17,89,140,0,175,34,59,0,84,165,119,255,224,226,234,255,7,72,166,255,123,115,255,1,18,214,246,0,250,7,71,1,217,220,185,0,212,35,76,255,38,125,175,0,189,97,210,0,114,238,44,255,41,188,169,254,45,186,154,0,81,92,22,0,132,160,193,0,121,208,98,255,13,81,44,255,203,156,82,0,71,58,21,255,208,114,191,254,50,38,147,0,154,216,195,0,101,25,18,0,60,250,215,255,233,132,235,255,103,175,142,1,16,14,92,0,141,31,110,254,238,241,45,255,153,217,239,1,97,168,47,255,249,85,16,1,28,175,62,255,57,254,54,0,222,231,126,0,166,45,117,254,18,189,96,255,228,76,50,0,200,244,94,0,198,152,120,1,68,34,69,255,12,65,160,254,101,19,90,0,167,197,120,255,68,54,185,255,41,218,188,0,113,168,48,0,88,105,189,1,26,82,32,255,185,93,164,1,228,240,237,255,66,182,53,0,171,197,92,255,107,9,233,1,199,120,144,255,78,49,10,255,109,170,105,255,90,4,31,255,28,244,113,255,74,58,11,0,62,220,246,255,121,154,200,254,144,210,178,255,126,57,129,1,43,250,14,255,101,111,28,1,47,86,241,255,61,70,150,255,53,73,5,255,30,26,158,0,209,26,86,0,138,237,74,0,164,95,188,0,142,60,29,254,162,116,248,255,187,175,160,0,151,18,16,0,209,111,65,254,203,134,39,255,88,108,49,255,131,26,71,255,221,27,215,254,104,105,93,255,31,236,31,254,135,0,211,255,143,127,110,1,212,73,229,0,233,67,167,254,195,1,208,255,132,17,221,255,51,217,90,0,67,235,50,255,223,210,143,0,179,53,130,1,233,106,198,0,217,173,220,255,112,229,24,255,175,154,93,254,71,203,246,255,48,66,133,255,3,136,230,255,23,221,113,254,235,111,213,0,170,120,95,254,251,221,2,0,45,130,158,254,105,94,217,255,242,52,180,254,213,68,45,255,104,38,28,0,244,158,76,0,161,200,96,255,207,53,13,255,187,67,148,0,170,54,248,0,119,162,178,255,83,20,11,0,42,42,192,1,146,159,163,255,183,232,111,0,77,229,21,255,71,53,143,0,27,76,34,0,246,136,47,255,219,39,182,255,92,224,201,1,19,142,14,255,69,182,241,255,163,118,245,0,9,109,106,1,170,181,247,255,78,47,238,255,84,210,176,255,213,107,139,0,39,38,11,0,72,21,150,0,72,130,69,0,205,77,155,254,142,133,21], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE); +/* memory initializer */ allocate([71,111,172,254,226,42,59,255,179,0,215,1,33,128,241,0,234,252,13,1,184,79,8,0,110,30,73,255,246,141,189,0,170,207,218,1,74,154,69,255,138,246,49,255,155,32,100,0,125,74,105,255,90,85,61,255,35,229,177,255,62,125,193,255,153,86,188,1,73,120,212,0,209,123,246,254,135,209,38,255,151,58,44,1,92,69,214,255,14,12,88,255,252,153,166,255,253,207,112,255,60,78,83,255,227,124,110,0,180,96,252,255,53,117,33,254,164,220,82,255,41,1,27,255,38,164,166,255,164,99,169,254,61,144,70,255,192,166,18,0,107,250,66,0,197,65,50,0,1,179,18,255,255,104,1,255,43,153,35,255,80,111,168,0,110,175,168,0,41,105,45,255,219,14,205,255,164,233,140,254,43,1,118,0,233,67,195,0,178,82,159,255,138,87,122,255,212,238,90,255,144,35,124,254,25,140,164,0,251,215,44,254,133,70,107,255,101,227,80,254,92,169,55,0,215,42,49,0,114,180,85,255,33,232,27,1,172,213,25,0,62,176,123,254,32,133,24,255,225,191,62,0,93,70,153,0,181,42,104,1,22,191,224,255,200,200,140,255,249,234,37,0,149,57,141,0,195,56,208,255,254,130,70,255,32,173,240,255,29,220,199,0,110,100,115,255,132,229,249,0,228,233,223,255,37,216,209,254,178,177,209,255,183,45,165,254,224,97,114,0,137,97,168,255,225,222,172,0,165,13,49,1,210,235,204,255,252,4,28,254,70,160,151,0,232,190,52,254,83,248,93,255,62,215,77,1,175,175,179,255,160,50,66,0,121,48,208,0,63,169,209,255,0,210,200,0,224,187,44,1,73,162,82,0,9,176,143,255,19,76,193,255,29,59,167,1,24,43,154,0,28,190,190,0,141,188,129,0,232,235,203,255,234,0,109,255,54,65,159,0,60,88,232,255,121,253,150,254,252,233,131,255,198,110,41,1,83,77,71,255,200,22,59,254,106,253,242,255,21,12,207,255,237,66,189,0,90,198,202,1,225,172,127,0,53,22,202,0,56,230,132,0,1,86,183,0,109,190,42,0,243,68,174,1,109,228,154,0,200,177,122,1,35,160,183,255,177,48,85,255,90,218,169,255,248,152,78,0,202,254,110,0,6,52,43,0,142,98,65,255,63,145,22,0,70,106,93,0,232,138,107,1,110,179,61,255,211,129,218,1,242,209,92,0,35,90,217,1,182,143,106,255,116,101,217,255,114,250,221,255,173,204,6,0,60,150,163,0,73,172,44,255,239,110,80,255,237,76,153,254,161,140,249,0,149,232,229,0,133,31,40,255,174,164,119,0,113,51,214,0,129,228,2,254,64,34,243,0,107,227,244,255,174,106,200,255,84,153,70,1,50,35,16,0,250,74,216,254,236,189,66,255,153,249,13,0,230,178,4,255,221,41,238,0,118,227,121,255,94,87,140,254,254,119,92,0,73,239,246,254,117,87,128,0,19,211,145,255,177,46,252,0,229,91,246,1,69,128,247,255,202,77,54,1,8,11,9,255,153,96,166,0,217,214,173,255,134,192,2,1,0,207,0,0,189,174,107,1,140,134,100,0,158,193,243,1,182,102,171,0,235,154,51,0,142,5,123,255,60,168,89,1,217,14,92,255,19,214,5,1,211,167,254,0,44,6,202,254,120,18,236,255,15,113,184,255,184,223,139,0,40,177,119,254,182,123,90,255,176,165,176,0,247,77,194,0,27,234,120,0,231,0,214,255,59,39,30,0,125,99,145,255,150,68,68,1,141,222,248,0,153,123,210,255,110,127,152,255,229,33,214,1,135,221,197,0,137,97,2,0,12,143,204,255,81,41,188,0,115,79,130,255,94,3,132,0,152,175,187,255,124,141,10,255,126,192,179,255,11,103,198,0,149,6,45,0,219,85,187,1,230,18,178,255,72,182,152,0,3,198,184,255,128,112,224,1,97,161,230,0,254,99,38,255,58,159,197,0,151,66,219,0,59,69,143,255,185,112,249,0,119,136,47,255,123,130,132,0,168,71,95,255,113,176,40,1,232,185,173,0,207,93,117,1,68,157,108,255,102,5,147,254,49,97,33,0,89,65,111,254,247,30,163,255,124,217,221,1,102,250,216,0,198,174,75,254,57,55,18,0,227,5,236,1,229,213,173,0,201,109,218,1,49,233,239,0,30,55,158,1,25,178,106,0,155,111,188,1,94,126,140,0,215,31,238,1,77,240,16,0,213,242,25,1,38,71,168,0,205,186,93,254,49,211,140,255,219,0,180,255,134,118,165,0,160,147,134,255,110,186,35,255,198,243,42,0,243,146,119,0,134,235,163,1,4,241,135,255,193,46,193,254,103,180,79,255,225,4,184,254,242,118,130,0,146,135,176,1,234,111,30,0,69,66,213,254,41,96,123,0,121,94,42,255,178,191,195,255,46,130,42,0,117,84,8,255,233,49,214,254,238,122,109,0,6,71,89,1,236,211,123,0,244,13,48,254,119,148,14,0,114,28,86,255,75,237,25,255,145,229,16,254,129,100,53,255,134,150,120,254,168,157,50,0,23,72,104,255,224,49,14,0,255,123,22,255,151,185,151,255,170,80,184,1,134,182,20,0,41,100,101,1,153,33,16,0,76,154,111,1,86,206,234,255,192,160,164,254,165,123,93,255,1,216,164,254,67,17,175,255,169,11,59,255,158,41,61,255,73,188,14,255,195,6,137,255,22,147,29,255,20,103,3,255,246,130,227,255,122,40,128,0,226,47,24,254,35,36,32,0,152,186,183,255,69,202,20,0,195,133,195,0,222,51,247,0,169,171,94,1,183,0,160,255,64,205,18,1,156,83,15,255,197,58,249,254,251,89,110,255,50,10,88,254,51,43,216,0,98,242,198,1,245,151,113,0,171,236,194,1,197,31,199,255,229,81,38,1,41,59,20,0,253,104,230,0,152,93,14,255,246,242,146,254,214,169,240,255,240,102,108,254,160,167,236,0,154,218,188,0,150,233,202,255,27,19,250,1,2,71,133,255,175,12,63,1,145,183,198,0,104,120,115,255,130,251,247,0,17,212,167,255,62,123,132,255,247,100,189,0,155,223,152,0,143,197,33,0,155,59,44,255,150,93,240,1,127,3,87,255,95,71,207,1,167,85,1,255,188,152,116,255,10,23,23,0,137,195,93,1,54,98,97,0,240,0,168,255,148,188,127,0,134,107,151,0,76,253,171,0,90,132,192,0,146,22,54,0,224,66,54,254,230,186,229,255,39,182,196,0,148,251,130,255,65,131,108,254,128,1,160,0,169,49,167,254,199,254,148,255,251,6,131,0,187,254,129,255,85,82,62,0,178,23,58,255,254,132,5,0,164,213,39,0,134,252,146,254,37,53,81,255,155,134,82,0,205,167,238,255,94,45,180,255,132,40,161,0,254,111,112,1,54,75,217,0,179,230,221,1,235,94,191,255,23,243,48,1,202,145,203,255,39,118,42,255,117,141,253,0,254,0,222,0,43,251,50,0,54,169,234,1,80,68,208,0,148,203,243,254,145,7,135,0,6,254,0,0,252,185,127,0,98,8,129,255,38,35,72,255,211,36,220,1,40,26,89,0,168,64,197,254,3,222,239,255,2,83,215,254,180,159,105,0,58,115,194,0,186,116,106,255,229,247,219,255,129,118,193,0,202,174,183,1,166,161,72,0,201,107,147,254,237,136,74,0,233,230,106,1,105,111,168,0,64,224,30,1,1,229,3,0,102,151,175,255,194,238,228,255,254,250,212,0,187,237,121,0,67,251,96,1,197,30,11,0,183,95,204,0,205,89,138,0,64,221,37,1,255,223,30,255,178,48,211,255,241,200,90,255,167,209,96,255,57,130,221,0,46,114,200,255,61,184,66,0,55,182,24,254,110,182,33,0,171,190,232,255,114,94,31,0,18,221,8,0,47,231,254,0,255,112,83,0,118,15,215,255,173,25,40,254,192,193,31,255,238,21,146,255,171,193,118,255,101,234,53,254,131,212,112,0,89,192,107,1,8,208,27,0,181,217,15,255,231,149,232,0,140,236,126,0,144,9,199,255,12,79,181,254,147,182,202,255,19,109,182,255,49,212,225,0,74,163,203,0,175,233,148,0,26,112,51,0,193,193,9,255,15,135,249,0,150,227,130,0,204,0,219,1,24,242,205,0,238,208,117,255,22,244,112,0,26,229,34,0,37,80,188,255,38,45,206,254,240,90,225,255,29,3,47,255,42,224,76,0,186,243,167,0,32,132,15,255,5,51,125,0,139,135,24,0,6,241,219,0,172,229,133,255,246,214,50,0,231,11,207,255,191,126,83,1,180,163,170,255,245,56,24,1,178,164,211,255,3,16,202,1,98,57,118,255,141,131,89,254,33,51,24,0,243,149,91,255,253,52,14,0,35,169,67,254,49,30,88,255,179,27,36,255,165,140,183,0,58,189,151,0,88,31,0,0,75,169,66,0,66,101,199,255,24,216,199,1,121,196,26,255,14,79,203,254,240,226,81,255,94,28,10,255,83,193,240,255,204,193,131,255,94,15,86,0,218,40,157,0,51,193,209,0,0,242,177,0,102,185,247,0,158,109,116,0,38,135,91,0,223,175,149,0,220,66,1,255,86,60,232,0,25,96,37,255,225,122,162,1,215,187,168,255,158,157,46,0,56,171,162,0,232,240,101,1,122,22,9,0,51,9,21,255,53,25,238,255,217,30,232,254,125,169,148,0,13,232,102,0,148,9,37,0,165,97,141,1,228,131,41,0,222,15,243,255,254,18,17,0,6,60,237,1,106,3,113,0,59,132,189,0,92,112,30,0,105,208,213,0,48,84,179,255,187,121,231,254,27,216,109,255,162,221,107,254,73,239,195,255,250,31,57,255,149,135,89,255,185,23,115,1,3,163,157,255,18,112,250,0,25,57,187,255,161,96,164,0,47,16,243,0,12,141,251,254,67,234,184,255,41,18,161,0,175,6,96,255,160,172,52,254,24,176,183,255,198,193,85,1,124,121,137,255,151,50,114,255,220,203,60,255,207,239,5,1,0,38,107,255,55,238,94,254,70,152,94,0,213,220,77,1,120,17,69,255,85,164,190,255,203,234,81,0,38,49,37,254,61,144,124,0,137,78,49,254,168,247,48,0,95,164,252,0,105,169,135,0,253,228,134,0,64,166,75,0,81,73,20,255,207,210,10,0,234,106,150,255,94,34,90,255,254,159,57,254,220,133,99,0,139,147,180,254,24,23,185,0,41,57,30,255,189,97,76,0,65,187,223,255,224,172,37,255,34,62,95,1,231,144,240,0,77,106,126,254,64,152,91,0,29,98,155,0,226,251,53,255,234,211,5,255,144,203,222,255,164,176,221,254,5,231,24,0,179,122,205,0,36,1,134,255,125,70,151,254,97,228,252,0,172,129,23,254,48,90,209,255,150,224,82,1,84,134,30,0,241,196,46,0,103,113,234,255,46,101,121,254,40,124,250,255,135,45,242,254,9,249,168,255,140,108,131,255,143,163,171,0,50,173,199,255,88,222,142,255,200,95,158,0,142,192,163,255,7,117,135,0,111,124,22,0,236,12,65,254,68,38,65,255,227,174,254,0,244,245,38,0,240,50,208,255,161,63,250,0,60,209,239,0,122,35,19,0,14,33,230,254,2,159,113,0,106,20,127,255,228,205,96,0,137,210,174,254,180,212,144,255,89,98,154,1,34,88,139,0,167,162,112,1,65,110,197,0,241,37,169,0,66,56,131,255,10,201,83,254,133,253,187,255,177,112,45,254,196,251,0,0,196,250,151,255,238,232,214,255,150,209,205,0,28,240,118,0,71,76,83,1,236,99,91,0,42,250,131,1,96,18,64,255,118,222,35,0,113,214,203,255,122,119,184,255,66,19,36,0,204,64,249,0,146,89,139,0,134,62,135,1,104,233,101,0,188,84,26,0,49,249,129,0,208,214,75,255,207,130,77,255,115,175,235,0,171,2,137,255,175,145,186,1,55,245,135,255,154,86,181,1,100,58,246,255,109,199,60,255,82,204,134,255,215,49,230,1,140,229,192,255,222,193,251,255,81,136,15,255,179,149,162,255,23,39,29,255,7,95,75,254,191,81,222,0,241,81,90,255,107,49,201,255,244,211,157,0,222,140,149,255,65,219,56,254,189,246,90,255,178,59,157,1,48,219,52,0,98,34,215,0,28,17,187,255,175,169,24,0,92,79,161,255,236,200,194,1,147,143,234,0,229,225,7,1,197,168,14,0,235,51,53,1,253,120,174,0,197,6,168,255,202,117,171,0,163,21,206,0,114,85,90,255,15,41,10,255,194,19,99,0,65,55,216,254,162,146,116,0,50,206,212,255,64,146,29,255,158,158,131,1,100,165,130,255,172,23,129,255,125,53,9,255,15,193,18,1,26,49,11,255,181,174,201,1,135,201,14,255,100,19,149,0,219,98,79,0,42,99,143,254,96,0,48,255,197,249,83,254,104,149,79,255,235,110,136,254,82,128,44,255,65,41,36,254,88,211,10,0,187,121,187,0,98,134,199,0,171,188,179,254,210,11,238,255,66,123,130,254,52,234,61,0,48,113,23,254,6,86,120,255,119,178,245,0,87,129,201,0,242,141,209,0,202,114,85,0,148,22,161,0,103,195,48,0,25,49,171,255,138,67,130,0,182,73,122,254,148,24,130,0,211,229,154,0,32,155,158,0,84,105,61,0,177,194,9,255,166,89,86,1,54,83,187,0,249,40,117,255,109,3,215,255,53,146,44,1,63,47,179,0,194,216,3,254,14,84,136,0,136,177,13,255,72,243,186,255,117,17,125,255,211,58,211,255,93,79,223,0,90,88,245,255,139,209,111,255,70,222,47,0,10,246,79,255,198,217,178,0,227,225,11,1,78,126,179,255,62,43,126,0,103,148,35,0,129,8,165,254,245,240,148,0,61,51,142,0,81,208,134,0,15,137,115,255,211,119,236,255,159,245,248,255,2,134,136,255,230,139,58,1,160,164,254,0,114,85,141,255,49,166,182,255,144,70,84,1,85,182,7,0,46,53,93,0,9,166,161,255,55,162,178,255,45,184,188,0,146,28,44,254,169,90,49,0,120,178,241,1,14,123,127,255,7,241,199,1,189,66,50,255,198,143,101,254,189,243,135,255,141,24,24,254,75,97,87,0,118,251,154,1,237,54,156,0,171,146,207,255,131,196,246,255,136,64,113,1,151,232,57,0,240,218,115,0,49,61,27,255,64,129,73,1,252,169,27,255,40,132,10,1,90,201,193,255,252,121,240,1,186,206,41,0,43,198,97,0,145,100,183,0,204,216,80,254,172,150,65,0,249,229,196,254,104,123,73,255,77,104,96,254,130,180,8,0,104,123,57,0,220,202,229,255,102,249,211,0,86,14,232,255,182,78,209,0,239,225,164,0,106,13,32,255,120,73,17,255,134,67,233,0,83,254,181,0,183,236,112,1,48,64,131,255,241,216,243,255,65,193,226,0,206,241,100,254,100,134,166,255,237,202,197,0,55,13,81,0,32,124,102,255,40,228,177,0,118,181,31,1,231,160,134,255,119,187,202,0,0,142,60,255,128,38,189,255,166,201,150,0,207,120,26,1,54,184,172,0,12,242,204,254,133,66,230,0,34,38,31,1,184,112,80,0,32,51,165,254,191,243,55,0,58,73,146,254,155,167,205,255,100,104,152,255,197,254,207,255,173,19,247,0,238,10,202,0,239,151,242,0,94,59,39,255,240,29,102,255,10,92,154,255,229,84,219,255,161,129,80,0,208,90,204,1,240,219,174,255,158,102,145,1,53,178,76,255,52,108,168,1,83,222,107,0,211,36,109,0,118,58,56,0,8,29,22,0,237,160,199,0,170,209,157,0,137,71,47,0,143,86,32,0,198,242,2,0,212,48,136,1,92,172,186,0,230,151,105,1,96,191,229,0,138,80,191,254,240,216,130,255,98,43,6,254,168,196,49,0,253,18,91,1,144,73,121,0,61,146,39,1,63,104,24,255,184,165,112,254,126,235,98,0,80,213,98,255,123,60,87,255,82,140,245,1,223,120,173,255,15,198,134,1,206,60,239,0,231,234,92,255,33,238,19,255,165,113,142,1,176,119,38,0,160,43,166,254,239,91,105,0,107,61,194,1,25,4,68,0,15,139,51,0,164,132,106,255,34,116,46,254,168,95,197,0,137,212,23,0,72,156,58,0,137,112,69,254,150,105,154,255,236,201,157,0,23,212,154,255,136,82,227,254,226,59,221,255,95,149,192,0,81,118,52,255,33,43,215,1,14,147,75,255,89,156,121,254,14,18,79,0,147,208,139,1,151,218,62,255,156,88,8,1,210,184,98,255,20,175,123,255,102,83,229,0,220,65,116,1,150,250,4,255,92,142,220,255,34,247,66,255,204,225,179,254,151,81,151,0,71,40,236,255,138,63,62,0,6,79,240,255,183,185,181,0,118,50,27,0,63,227,192,0,123,99,58,1,50,224,155,255,17,225,223,254,220,224,77,255,14,44,123,1,141,128,175,0,248,212,200,0,150,59,183,255,147,97,29,0,150,204,181,0,253,37,71,0,145,85,119,0,154,200,186,0,2,128,249,255,83,24,124,0,14,87,143,0,168,51,245,1,124,151,231,255,208,240,197,1,124,190,185,0,48,58,246,0,20,233,232,0,125,18,98,255,13,254,31,255,245,177,130,255,108,142,35,0,171,125,242,254,140,12,34,255,165,161,162,0,206,205,101,0,247,25,34,1,100,145,57,0,39,70,57,0,118,204,203,255,242,0,162,0,165,244,30,0,198,116,226,0,128,111,153,255,140,54,182,1,60,122,15,255,155,58,57,1,54,50,198,0,171,211,29,255,107,138,167,255,173,107,199,255,109,161,193,0,89,72,242,255,206,115,89,255,250,254,142,254,177,202,94,255,81,89,50,0,7,105,66,255,25,254,255,254,203,64,23,255,79,222,108,255,39,249,75,0,241,124,50,0,239,152,133,0,221,241,105,0,147,151,98,0,213,161,121,254,242,49,137,0,233,37,249,254,42,183,27,0,184,119,230,255,217,32,163,255,208,251,228,1,137,62,131,255,79,64,9,254,94,48,113,0,17,138,50,254,193,255,22,0,247,18,197,1,67,55,104,0,16,205,95,255,48,37,66,0,55,156,63,1,64,82,74,255,200,53,71,254,239,67,125,0,26,224,222,0,223,137,93,255,30,224,202,255,9,220,132,0,198,38,235,1,102,141,86,0,60,43,81,1,136,28,26,0,233,36,8,254,207,242,148,0,164,162,63,0,51,46,224,255,114,48,79,255,9,175,226,0,222,3,193,255,47,160,232,255,255,93,105,254,14,42,230,0,26,138,82,1,208,43,244,0,27,39,38,255,98,208,127,255,64,149,182,255,5,250,209,0,187,60,28,254,49,25,218,255,169,116,205,255,119,18,120,0,156,116,147,255,132,53,109,255,13,10,202,0,110,83,167,0,157,219,137,255,6,3,130,255,50,167,30,255,60,159,47,255,129,128,157,254,94,3,189,0,3,166,68,0,83,223,215,0,150,90,194,1,15,168,65,0,227,83,51,255,205,171,66,255,54,187,60,1,152,102,45,255,119,154,225,0,240,247,136,0,100,197,178,255,139,71,223,255,204,82,16,1,41,206,42,255,156,192,221,255,216,123,244,255,218,218,185,255,187,186,239,255,252,172,160,255,195,52,22,0,144,174,181,254,187,100,115,255,211,78,176,255,27,7,193,0,147,213,104,255,90,201,10,255,80,123,66,1,22,33,186,0,1,7,99,254,30,206,10,0,229,234,5,0,53,30,210,0,138,8,220,254,71,55,167,0,72,225,86,1,118,190,188,0,254,193,101,1,171,249,172,255,94,158,183,254,93,2,108,255,176,93,76,255,73,99,79,255,74,64,129,254,246,46,65,0,99,241,127,254,246,151,102,255,44,53,208,254,59,102,234,0,154,175,164,255,88,242,32,0,111,38,1,0,255,182,190,255,115,176,15,254,169,60,129,0,122,237,241,0,90,76,63,0,62,74,120,255,122,195,110,0,119,4,178,0,222,242,210,0,130,33,46,254,156,40,41,0,167,146,112,1,49,163,111,255,121,176,235,0,76,207,14,255,3,25,198,1,41,235,213,0,85,36,214,1,49,92,109,255,200,24,30,254,168,236,195,0,145,39,124,1,236,195,149,0,90,36,184,255,67,85,170,255,38,35,26,254,131,124,68,255,239,155,35,255,54,201,164,0,196,22,117,255,49,15,205,0,24,224,29,1,126,113,144,0,117,21,182,0,203,159,141,0,223,135,77,0,176,230,176,255,190,229,215,255,99,37,181,255,51,21,138,255,25,189,89,255,49,48,165,254,152,45,247,0,170,108,222,0,80,202,5,0,27,69,103,254,204,22,129,255,180,252,62,254,210,1,91,255,146,110,254,255,219,162,28,0,223,252,213,1,59,8,33,0,206,16,244,0,129,211,48,0,107,160,208,0,112,59,209,0,109,77,216,254,34,21,185,255,246,99,56,255,179,139,19,255,185,29,50,255,84,89,19,0,74,250,98,255,225,42,200,255,192,217,205,255,210,16,167,0,99,132,95,1,43,230,57,0,254,11,203,255,99,188,63,255,119,193,251,254,80,105,54,0,232,181,189,1,183,69,112,255,208,171,165,255,47,109,180,255,123,83,165,0,146,162,52,255,154,11,4,255,151,227,90,255,146,137,97,254,61,233,41,255,94,42,55,255,108,164,236,0,152,68,254,0,10,140,131,255,10,106,79,254,243,158,137,0,67,178,66,254,177,123,198,255,15,62,34,0,197,88,42,255,149,95,177,255,152,0,198,255,149,254,113,255,225,90,163,255,125,217,247,0,18,17,224,0,128,66,120,254,192,25,9,255,50,221,205,0,49,212,70,0,233,255,164,0,2,209,9,0,221,52,219,254,172,224,244,255,94,56,206,1,242,179,2,255,31,91,164,1,230,46,138,255,189,230,220,0,57,47,61,255,111,11,157,0,177,91,152,0,28,230,98,0,97,87,126,0,198,89,145,255,167,79,107,0,249,77,160,1,29,233,230,255,150,21,86,254,60,11,193,0,151,37,36,254,185,150,243,255,228,212,83,1,172,151,180,0,201,169,155,0,244,60,234,0,142,235,4,1,67,218,60,0,192,113,75,1,116,243,207,255,65,172,155,0,81,30,156,255,80,72,33,254,18,231,109,255,142,107,21,254,125,26,132,255,176,16,59,255,150,201,58,0,206,169,201,0,208,121,226,0,40,172,14,255,150,61,94,255,56,57,156,255,141,60,145,255,45,108,149,255,238,145,155,255,209,85,31,254,192,12,210,0,99,98,93,254,152,16,151,0,225,185,220,0,141,235,44,255,160,172,21,254,71,26,31,255,13,64,93,254,28,56,198,0,177,62,248,1,182,8,241,0,166,101,148,255,78,81,133,255,129,222,215,1,188,169,129,255,232,7,97,0,49,112,60,255,217,229,251,0,119,108,138,0,39,19,123,254,131,49,235,0,132,84,145,0,130,230,148,255,25,74,187,0,5,245,54,255,185,219,241,1,18,194,228,255,241,202,102,0,105,113,202,0,155,235,79,0,21,9,178,255,156,1,239,0,200,148,61,0,115,247,210,255,49,221,135,0,58,189,8,1,35,46,9,0,81,65,5,255,52,158,185,255,125,116,46,255,74,140,13,255,210,92,172,254,147,23,71,0,217,224,253,254,115,108,180,255,145,58,48,254,219,177,24,255,156,255,60,1,154,147,242,0,253,134,87,0,53,75,229,0,48,195,222,255,31,175,50,255,156,210,120,255,208,35,222,255,18,248,179,1,2,10,101,255,157,194,248,255,158,204,101,255,104,254,197,255,79,62,4,0,178,172,101,1,96,146,251,255,65,10,156,0,2,137,165,255,116,4,231,0,242,215,1,0,19,35,29,255,43,161,79,0,59,149,246,1,251,66,176,0,200,33,3,255,80,110,142,255,195,161,17,1,228,56,66,255,123,47,145,254,132,4,164,0,67,174,172,0,25,253,114,0,87,97,87,1,250,220,84,0,96,91,200,255,37,125,59,0,19,65,118,0,161,52,241,255,237,172,6,255,176,191,255,255,1,65,130,254,223,190,230,0,101,253,231,255,146,35,109,0,250,29,77,1,49,0,19,0,123,90,155,1,22,86,32,255,218,213,65,0,111,93,127,0,60,93,169,255,8,127,182,0,17,186,14,254,253,137,246,255,213,25,48,254,76,238,0,255,248,92,70,255,99,224,139,0,184,9,255,1,7,164,208,0,205,131,198,1,87,214,199,0,130,214,95,0,221,149,222,0,23,38,171,254,197,110,213,0,43,115,140,254,215,177,118,0,96,52,66,1,117,158,237,0,14,64,182,255,46,63,174,255,158,95,190,255,225,205,177,255,43,5,142,255,172,99,212,255,244,187,147,0,29,51,153,255,228,116,24,254,30,101,207,0,19,246,150,255,134,231,5,0,125,134,226,1,77,65,98,0,236,130,33,255,5,110,62,0,69,108,127,255,7,113,22,0,145,20,83,254,194,161,231,255,131,181,60,0,217,209,177,255,229,148,212,254,3,131,184,0,117,177,187,1,28,14,31,255,176,102,80,0,50,84,151,255,125,31,54,255,21,157,133,255,19,179,139,1,224,232,26,0,34,117,170,255,167,252,171,255,73,141,206,254,129,250,35,0,72,79,236,1,220,229,20,255,41,202,173,255,99,76,238,255,198,22,224,255,108,198,195,255,36,141,96,1,236,158,59,255,106,100,87,0,110,226,2,0,227,234,222,0,154,93,119,255,74,112,164,255,67,91,2,255,21,145,33,255,102,214,137,255,175,230,103,254,163,246,166,0,93,247,116,254,167,224,28,255,220,2,57,1,171,206,84,0,123,228,17,255,27,120,119,0,119,11,147,1,180,47,225,255,104,200,185,254,165,2,114,0,77,78,212,0,45,154,177,255,24,196,121,254,82,157,182,0,90,16,190,1,12,147,197,0,95,239,152,255,11,235,71,0,86,146,119,255,172,134,214,0,60,131,196,0,161,225,129,0,31,130,120,254,95,200,51,0,105,231,210,255,58,9,148,255,43,168,221,255,124,237,142,0,198,211,50,254,46,245,103,0,164,248,84,0,152,70,208,255,180,117,177,0,70,79,185,0,243,74,32,0,149,156,207,0,197,196,161,1,245,53,239,0,15,93,246,254,139,240,49,255,196,88,36,255,162,38,123,0,128,200,157,1,174,76,103,255,173,169,34,254,216,1,171,255,114,51,17,0,136,228,194,0,110,150,56,254,106,246,159,0,19,184,79,255,150,77,240,255,155,80,162,0,0,53,169,255,29,151,86,0,68,94,16,0,92,7,110,254,98,117,149,255,249,77,230,255,253,10,140,0,214,124,92,254,35,118,235,0,89,48,57,1,22,53,166,0,184,144,61,255,179,255,194,0,214,248,61,254,59,110,246,0,121,21,81,254,166,3,228,0,106,64,26,255,69,232,134,255,242,220,53,254,46,220,85,0,113,149,247,255,97,179,103,255,190,127,11,0,135,209,182,0,95,52,129,1,170,144,206,255,122,200,204,255,168,100,146,0,60,144,149,254,70,60,40,0,122,52,177,255,246,211,101,255,174,237,8,0,7,51,120,0,19,31,173,0,126,239,156,255,143,189,203,0,196,128,88,255,233,133,226,255,30,125,173,255,201,108,50,0,123,100,59,255,254,163,3,1,221,148,181,255,214,136,57,254,222,180,137,255,207,88,54,255,28,33,251,255,67,214,52,1,210,208,100,0,81,170,94,0,145,40,53,0,224,111,231,254,35,28,244,255,226,199,195,254,238,17,230,0,217,217,164,254,169,157,221,0,218,46,162,1,199,207,163,255,108,115,162,1,14,96,187,255,118,60,76,0,184,159,152,0,209,231,71,254,42,164,186,255,186,153,51,254,221,171,182,255,162,142,173,0,235,47,193,0,7,139,16,1,95,164,64,255,16,221,166,0,219,197,16,0,132,29,44,255,100,69,117,255,60,235,88,254,40,81,173,0,71,190,61,255,187,88,157,0,231,11,23,0,237,117,164,0,225,168,223,255,154,114,116,255,163,152,242,1,24,32,170,0,125,98,113,254,168,19,76,0,17,157,220,254,155,52,5,0,19,111,161,255,71,90,252,255,173,110,240,0,10,198,121,255,253,255,240,255,66,123,210,0,221,194,215,254,121,163,17,255,225,7,99,0,190,49,182,0,115,9,133,1,232,26,138,255,213,68,132,0,44,119,122,255,179,98,51,0,149,90,106,0,71,50,230,255,10,153,118,255,177,70,25,0,165,87,205,0,55,138,234,0,238,30,97,0,113,155,207,0,98,153,127,0,34,107,219,254,117,114,172,255,76,180,255,254,242,57,179,255,221,34,172,254,56,162,49,255,83,3,255,255,113,221,189,255,188,25,228,254,16,88,89,255,71,28,198,254,22,17,149,255,243,121,254,255,107,202,99,255,9,206,14,1,220,47,153,0,107,137,39,1,97,49,194,255,149,51,197,254,186,58,11,255,107,43,232,1,200,6,14,255,181,133,65,254,221,228,171,255,123,62,231,1,227,234,179,255,34,189,212,254,244,187,249,0,190,13,80,1,130,89,1,0,223,133,173,0,9,222,198,255,66,127,74,0,167,216,93,255,155,168,198,1,66,145,0,0,68,102,46,1,172,90,154,0,216,128,75,255,160,40,51,0,158,17,27,1,124,240,49,0,236,202,176,255,151,124,192,255,38,193,190,0,95,182,61,0,163,147,124,255,255,165,51,255,28,40,17,254,215,96,78,0,86,145,218,254,31,36,202,255,86,9,5,0,111,41,200,255,237,108,97,0,57,62,44,0,117,184,15,1,45,241,116,0,152,1,220,255,157,165,188,0,250,15,131,1,60,44,125,255,65,220,251,255,75,50,184,0,53,90,128,255,231,80,194,255,136,129,127,1,21,18,187,255,45,58,161,255,71,147,34,0,174,249,11,254,35,141,29,0,239,68,177,255,115,110,58,0,238,190,177,1,87,245,166,255,190,49,247,255,146,83,184,255,173,14,39,255,146,215,104,0,142,223,120,0,149,200,155,255,212,207,145,1,16,181,217,0,173,32,87,255,255,35,181,0,119,223,161,1,200,223,94,255,70,6,186,255,192,67,85,255,50,169,152,0,144,26,123,255,56,243,179,254,20,68,136,0,39,140,188,254,253,208,5,255,200,115,135,1,43,172,229,255,156,104,187,0,151,251,167,0,52,135,23,0,151,153,72,0,147,197,107,254,148,158,5,255,238,143,206,0,126,153,137,255,88,152,197,254,7,68,167,0,252,159,165,255,239,78,54,255,24,63,55,255,38,222,94,0,237,183,12,255,206,204,210,0,19,39,246,254,30,74,231,0,135,108,29,1,179,115,0,0,117,118,116,1,132,6,252,255,145,129,161,1,105,67,141,0,82,37,226,255,238,226,228,255,204,214,129,254,162,123,100,255,185,121,234,0,45,108,231,0,66,8,56,255,132,136,128,0,172,224,66,254,175,157,188,0,230,223,226,254,242,219,69,0,184,14,119,1,82,162,56,0,114,123,20,0,162,103,85,255,49,239,99,254,156,135,215,0,111,255,167,254,39,196,214,0,144,38,79,1,249,168,125,0,155,97,156,255,23,52,219,255,150,22,144,0,44,149,165,255,40,127,183,0,196,77,233,255,118,129,210,255,170,135,230,255,214,119,198,0,233,240,35,0,253,52,7,255,117,102,48,255,21,204,154,255,179,136,177,255,23,2,3,1,149,130,89,255,252,17,159,1,70,60,26,0,144,107,17,0,180,190,60,255,56,182,59,255,110,71,54,255,198,18,129,255,149,224,87,255,223,21,152,255,138,22,182,255,250,156,205,0,236,45,208,255,79,148,242,1,101,70,209,0,103,78,174,0,101,144,172,255,152,136,237,1,191,194,136,0,113,80,125,1,152,4,141,0,155,150,53,255,196,116,245,0,239,114,73,254,19,82,17,255,124,125,234,255,40,52,191,0,42,210,158,255,155,132,165,0,178,5,42,1,64,92,40,255,36,85,77,255,178,228,118,0,137,66,96,254,115,226,66,0,110,240,69,254,151,111,80,0,167,174,236,255,227,108,107,255,188,242,65,255,183,81,255,0,57,206,181,255,47,34,181,255,213,240,158,1,71,75,95,0,156,40,24,255,102,210,81,0,171,199,228,255,154,34,41,0,227,175,75,0,21,239,195,0,138,229,95,1,76,192,49,0,117,123,87,1,227,225,130,0,125,62,63,255,2,198,171,0,254,36,13,254,145,186,206,0,148,255,244,255,35,0,166,0,30,150,219,1,92,228,212,0,92,198,60,254,62,133,200,255,201,41,59,0,125,238,109,255,180,163,238,1,140,122,82,0,9,22,88,255,197,157,47,255,153,94,57,0,88,30,182,0,84,161,85,0,178,146,124,0,166,166,7,255,21,208,223,0,156,182,242,0,155,121,185,0,83,156,174,254,154,16,118,255,186,83,232,1,223,58,121,255,29,23,88,0,35,125,127,255,170,5,149,254,164,12,130,255,155,196,29,0,161,96,136,0,7,35,29,1,162,37,251,0,3,46,242,255,0,217,188,0,57,174,226,1,206,233,2,0,57,187,136,254,123,189,9,255,201,117,127,255,186,36,204,0,231,25,216,0,80,78,105,0,19,134,129,255,148,203,68,0,141,81,125,254,248,165,200,255,214,144,135,0,151,55,166,255,38,235,91,0,21,46,154,0,223,254,150,255,35,153,180,255,125,176,29,1,43,98,30,255,216,122,230,255,233,160,12,0,57,185,12,254,240,113,7,255,5,9,16,254,26,91,108,0,109,198,203,0,8,147,40,0,129,134,228,255,124,186,40,255,114,98,132,254,166,132,23,0,99,69,44,0,9,242,238,255,184,53,59,0,132,129,102,255,52,32,243,254,147,223,200,255,123,83,179,254,135,144,201,255,141,37,56,1,151,60,227,255,90,73,156,1,203,172,187,0,80,151,47,255,94,137,231,255,36,191,59,255,225,209,181,255,74,215,213,254,6,118,179,255,153,54,193,1,50,0,231,0,104,157,72,1,140,227,154,255,182,226,16,254,96,225,92,255,115,20,170,254,6,250,78,0,248,75,173,255,53,89,6,255,0,180,118,0,72,173,1,0,64,8,206,1,174,133,223,0,185,62,133,255,214,11,98,0,197,31,208,0,171,167,244,255,22,231,181,1,150,218,185,0,247,169,97,1,165,139,247,255,47,120,149,1,103,248,51,0,60,69,28,254,25,179,196,0,124,7,218,254,58,107,81,0,184,233,156,255,252,74,36,0,118,188,67,0,141,95,53,255,222,94,165,254,46,61,53,0,206,59,115,255,47,236,250,255,74,5,32,1,129,154,238,255,106,32,226,0,121,187,61,255,3,166,241,254,67,170,172,255,29,216,178,255,23,201,252,0,253,110,243,0,200,125,57,0,109,192,96,255,52,115,238,0,38,121,243,255,201,56,33,0,194,118,130,0,75,96,25,255,170,30,230,254,39,63,253,0,36,45,250,255,251,1,239,0,160,212,92,1,45,209,237,0,243,33,87,254,237,84,201,255,212,18,157,254,212,99,127,255,217,98,16,254,139,172,239,0,168,201,130,255,143,193,169,255,238,151,193,1,215,104,41,0,239,61,165,254,2,3,242,0,22,203,177,254,177,204,22,0,149,129,213,254,31,11,41,255,0,159,121,254,160,25,114,255,162,80,200,0,157,151,11,0,154,134,78,1,216,54,252,0,48,103,133,0,105,220,197,0,253,168,77,254,53,179,23,0,24,121,240,1,255,46,96,255,107,60,135,254,98,205,249,255,63,249,119,255,120,59,211,255,114,180,55,254,91,85,237,0,149,212,77,1,56,73,49,0,86,198,150,0,93,209,160,0,69,205,182,255,244,90,43,0,20,36,176,0,122,116,221,0,51,167,39,1,231,1,63,255,13,197,134,0,3,209,34,255,135,59,202,0,167,100,78,0,47,223,76,0,185,60,62,0,178,166,123,1,132,12,161,255,61,174,43,0,195,69,144,0,127,47,191,1,34,44,78,0,57,234,52,1,255,22,40,255,246,94,146,0,83,228,128,0,60,78,224,255,0,96,210,255,153,175,236,0,159,21,73,0,180,115,196,254,131,225,106,0,255,167,134,0,159,8,112,255,120,68,194,255,176,196,198,255,118,48,168,255,93,169,1,0,112,200,102,1,74,24,254,0,19,141,4,254,142,62,63,0,131,179,187,255,77,156,155,255,119,86,164,0,170,208,146,255,208,133,154,255,148,155,58,255,162,120,232,254,252,213,155,0,241,13,42,0,94,50,131,0,179,170,112,0,140,83,151,255,55,119,84,1,140,35,239,255,153,45,67,1,236,175,39,0,54,151,103,255,158,42,65,255,196,239,135,254,86,53,203,0,149,97,47,254,216,35,17,255,70,3,70,1,103,36,90,255,40,26,173,0,184,48,13,0,163,219,217,255,81,6,1,255,221,170,108,254,233,208,93,0,100,201,249,254,86,36,35,255,209,154,30,1,227,201,251,255,2,189,167,254,100,57,3,0,13,128,41,0,197,100,75,0,150,204,235,255,145,174,59,0,120,248,149,255,85,55,225,0,114,210,53,254,199,204,119,0,14,247,74,1,63,251,129,0,67,104,151,1,135,130,80,0,79,89,55,255,117,230,157,255,25,96,143,0,213,145,5,0,69,241,120,1,149,243,95,255,114,42,20,0,131,72,2,0,154,53,20,255,73,62,109,0,196,102,152,0,41,12,204,255,122,38,11,1,250,10,145,0,207,125,148,0,246,244,222,255,41,32,85,1,112,213,126,0,162,249,86,1,71,198,127,255,81,9,21,1,98,39,4,255,204,71,45,1,75,111,137,0,234,59,231,0,32,48,95,255,204,31,114,1,29,196,181,255,51,241,167,254,93,109,142,0,104,144,45,0,235,12,181,255,52,112,164,0,76,254,202,255,174,14,162,0,61,235,147,255,43,64,185,254,233,125,217,0,243,88,167,254,74,49,8,0,156,204,66,0,124,214,123,0,38,221,118,1,146,112,236,0,114,98,177,0,151,89,199,0,87,197,112,0,185,149,161,0,44,96,165,0,248,179,20,255,188,219,216,254,40,62,13,0,243,142,141,0,229,227,206,255,172,202,35,255,117,176,225,255,82,110,38,1,42,245,14,255,20,83,97,0,49,171,10,0,242,119,120,0,25,232,61,0,212,240,147,255,4,115,56,255,145,17,239,254,202,17,251,255,249,18,245,255,99,117,239,0,184,4,179,255,246,237,51,255,37,239,137,255,166,112,166,255,81,188,33,255,185,250,142,255,54,187,173,0,208,112,201,0,246,43,228,1,104,184,88,255,212,52,196,255,51,117,108,255,254,117,155,0,46,91,15,255,87,14,144,255,87,227,204,0,83,26,83,1,159,76,227,0,159,27,213,1,24,151,108,0,117,144,179,254,137,209,82,0,38,159,10,0,115,133,201,0,223,182,156,1,110,196,93,255,57,60,233,0,5,167,105,255,154,197,164,0,96,34,186,255,147,133,37,1,220,99,190,0,1,167,84,255,20,145,171,0,194,197,251,254,95,78,133,255,252,248,243,255,225,93,131,255,187,134,196,255,216,153,170,0,20,118,158,254,140,1,118,0,86,158,15,1,45,211,41,255,147,1,100,254,113,116,76,255,211,127,108,1,103,15,48,0,193,16,102,1,69,51,95,255,107,128,157,0,137,171,233,0,90,124,144,1,106,161,182,0,175,76,236,1,200,141,172,255,163,58,104,0,233,180,52,255,240,253,14,255,162,113,254,255,38,239,138,254,52,46,166,0,241,101,33,254,131,186,156,0,111,208,62,255,124,94,160,255,31,172,254,0,112,174,56,255,188,99,27,255,67,138,251,0,125,58,128,1,156,152,174,255,178,12,247,255,252,84,158,0,82,197,14,254,172,200,83,255,37,39,46,1,106,207,167,0,24,189,34,0,131,178,144,0,206,213,4,0,161,226,210,0,72,51,105,255,97,45,187,255,78,184,223,255,176,29,251,0,79,160,86,255,116,37,178,0,82,77,213,1,82,84,141,255,226,101,212,1,175,88,199,255,245,94,247,1,172,118,109,255,166,185,190,0,131,181,120,0,87,254,93,255,134,240,73,255,32,245,143,255,139,162,103,255,179,98,18,254,217,204,112,0,147,223,120,255,53,10,243,0,166,140,150,0,125,80,200,255,14,109,219,255,91,218,1,255,252,252,47,254,109,156,116,255,115,49,127,1,204,87,211,255,148,202,217,255,26,85,249,255,14,245,134,1,76,89,169,255,242,45,230,0,59,98,172,255,114,73,132,254,78,155,49,255,158,126,84,0,49,175,43,255,16,182,84,255,157,103,35,0,104,193,109,255,67,221,154,0,201,172,1,254,8,162,88,0,165,1,29,255,125,155,229,255,30,154,220,1,103,239,92,0,220,1,109,255,202,198,1,0,94,2,142,1,36,54,44,0,235,226,158,255,170,251,214,255,185,77,9,0,97,74,242,0,219,163,149,255,240,35,118,255,223,114,88,254,192,199,3,0,106,37,24,255,201,161,118,255,97,89,99,1,224,58,103,255,101,199,147,254,222,60,99,0,234,25,59,1,52,135,27,0,102,3,91,254,168,216,235,0,229,232,136,0,104,60,129,0,46,168,238,0,39,191,67,0,75,163,47,0,143,97,98,255,56,216,168,1,168,233,252,255,35,111,22,255,92,84,43,0,26,200,87,1,91,253,152,0,202,56,70,0,142,8,77,0,80,10,175,1,252,199,76,0,22,110,82,255,129,1,194,0,11,128,61,1,87,14,145,255,253,222,190,1,15,72,174,0,85,163,86,254,58,99,44,255,45,24,188,254,26,205,15,0,19,229,210,254,248,67,195,0,99,71,184,0,154,199,37,255,151,243,121,255,38,51,75,255,201,85,130,254,44,65,250,0,57,147,243,254,146,43,59,255,89,28,53,0,33,84,24,255,179,51,18,254,189,70,83,0,11,156,179,1,98,134,119,0,158,111,111,0,119,154,73,255,200,63,140,254,45,13,13,255,154,192,2,254,81,72,42,0,46,160,185,254,44,112,6,0,146,215,149,1,26,176,104,0,68,28,87,1,236,50,153,255,179,128,250,254,206,193,191,255,166,92,137,254,53,40,239,0,210,1,204,254,168,173,35,0,141,243,45,1,36,50,109,255,15,242,194,255,227,159,122,255,176,175,202,254,70,57,72,0,40,223,56,0,208,162,58,255,183,98,93,0,15,111,12,0,30,8,76,255,132,127,246,255,45,242,103,0,69,181,15,255,10,209,30,0,3,179,121,0,241,232,218,1,123,199,88,255,2,210,202,1,188,130,81,255,94,101,208,1,103,36,45,0,76,193,24,1,95,26,241,255,165,162,187,0,36,114,140,0,202,66,5,255,37,56,147,0,152,11,243,1,127,85,232,255,250,135,212,1,185,177,113,0,90,220,75,255,69,248,146,0,50,111,50,0,92,22,80,0,244,36,115,254,163,100,82,255,25,193,6,1,127,61,36,0,253,67,30,254,65,236,170,255,161,17,215,254,63,175,140,0,55,127,4,0,79,112,233,0,109,160,40,0,143,83,7,255,65,26,238,255,217,169,140,255,78,94,189,255,0,147,190,255,147,71,186,254,106,77,127,255,233,157,233,1,135,87,237,255,208,13,236,1,155,109,36,255,180,100,218,0,180,163,18,0,190,110,9,1,17,63,123,255,179,136,180,255,165,123,123,255,144,188,81,254,71,240,108,255,25,112,11,255,227,218,51,255,167,50,234,255,114,79,108,255,31,19,115,255,183,240,99,0,227,87,143,255,72,217,248,255,102,169,95,1,129,149,149,0,238,133,12,1,227,204,35,0,208,115,26,1,102,8,234,0,112,88,143,1,144,249,14,0,240,158,172,254,100,112,119,0,194,141,153,254,40,56,83,255,121,176,46,0,42,53,76,255,158,191,154,0,91,209,92,0,173,13,16,1,5,72,226,255,204,254,149,0,80,184,207,0,100,9,122,254,118,101,171,255,252,203,0,254,160,207,54,0,56,72,249,1,56,140,13,255,10,64,107,254,91,101,52,255,225,181,248,1,139,255,132,0,230,145,17,0,233,56,23,0,119,1,241,255,213,169,151,255,99,99,9,254,185,15,191,255,173,103,109,1,174,13,251,255,178,88,7,254,27,59,68,255,10,33,2,255,248,97,59,0,26,30,146,1,176,147,10,0,95,121,207,1,188,88,24,0,185,94,254,254,115,55,201,0,24,50,70,0,120,53,6,0,142,66,146,0,228,226,249,255,104,192,222,1,173,68,219,0,162,184,36,255,143,102,137,255,157,11,23,0,125,45,98,0,235,93,225,254,56,112,160,255,70,116,243,1,153,249,55,255,129,39,17,1,241,80,244,0,87,69,21,1,94,228,73,255,78,66,65,255,194,227,231,0,61,146,87,255,173,155,23,255,112,116,219,254,216,38,11,255,131,186,133,0,94,212,187,0,100,47,91,0,204,254,175,255,222,18,215,254,173,68,108,255,227,228,79,255,38,221,213,0,163,227,150,254,31,190,18,0,160,179,11,1,10,90,94,255,220,174,88,0,163,211,229,255,199,136,52,0,130,95,221,255,140,188,231,254,139,113,128,255,117,171,236,254,49,220,20,255,59,20,171,255,228,109,188,0,20,225,32,254,195,16,174,0,227,254,136,1,135,39,105,0,150,77,206,255,210,238,226,0,55,212,132,254,239,57,124,0,170,194,93,255,249,16,247,255,24,151,62,255,10,151,10,0,79,139,178,255,120,242,202,0,26,219,213,0,62,125,35,255,144,2,108,255,230,33,83,255,81,45,216,1,224,62,17,0,214,217,125,0,98,153,153,255], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+10240); +/* memory initializer */ allocate([179,176,106,254,131,93,138,255,109,62,36,255,178,121,32,255,120,252,70,0,220,248,37,0,204,88,103,1,128,220,251,255,236,227,7,1,106,49,198,255,60,56,107,0,99,114,238,0,220,204,94,1,73,187,1,0,89,154,34,0,78,217,165,255,14,195,249,255,9,230,253,255,205,135,245,0,26,252,7,255,84,205,27,1,134,2,112,0,37,158,32,0,231,91,237,255,191,170,204,255,152,7,222,0,109,192,49,0,193,166,146,255,232,19,181,255,105,142,52,255,103,16,27,1,253,200,165,0,195,217,4,255,52,189,144,255,123,155,160,254,87,130,54,255,78,120,61,255,14,56,41,0,25,41,125,255,87,168,245,0,214,165,70,0,212,169,6,255,219,211,194,254,72,93,164,255,197,33,103,255,43,142,141,0,131,225,172,0,244,105,28,0,68,68,225,0,136,84,13,255,130,57,40,254,139,77,56,0,84,150,53,0,54,95,157,0,144,13,177,254,95,115,186,0,117,23,118,255,244,166,241,255,11,186,135,0,178,106,203,255,97,218,93,0,43,253,45,0,164,152,4,0,139,118,239,0,96,1,24,254,235,153,211,255,168,110,20,255,50,239,176,0,114,41,232,0,193,250,53,0,254,160,111,254,136,122,41,255,97,108,67,0,215,152,23,255,140,209,212,0,42,189,163,0,202,42,50,255,106,106,189,255,190,68,217,255,233,58,117,0,229,220,243,1,197,3,4,0,37,120,54,254,4,156,134,255,36,61,171,254,165,136,100,255,212,232,14,0,90,174,10,0,216,198,65,255,12,3,64,0,116,113,115,255,248,103,8,0,231,125,18,255,160,28,197,0,30,184,35,1,223,73,249,255,123,20,46,254,135,56,37,255,173,13,229,1,119,161,34,255,245,61,73,0,205,125,112,0,137,104,134,0,217,246,30,255,237,142,143,0,65,159,102,255,108,164,190,0,219,117,173,255,34,37,120,254,200,69,80,0,31,124,218,254,74,27,160,255,186,154,199,255,71,199,252,0,104,81,159,1,17,200,39,0,211,61,192,1,26,238,91,0,148,217,12,0,59,91,213,255,11,81,183,255,129,230,122,255,114,203,145,1,119,180,66,255,72,138,180,0,224,149,106,0,119,82,104,255,208,140,43,0,98,9,182,255,205,101,134,255,18,101,38,0,95,197,166,255,203,241,147,0,62,208,145,255,133,246,251,0,2,169,14,0,13,247,184,0,142,7,254,0,36,200,23,255,88,205,223,0,91,129,52,255,21,186,30,0,143,228,210,1,247,234,248,255,230,69,31,254,176,186,135,255,238,205,52,1,139,79,43,0,17,176,217,254,32,243,67,0,242,111,233,0,44,35,9,255,227,114,81,1,4,71,12,255,38,105,191,0,7,117,50,255,81,79,16,0,63,68,65,255,157,36,110,255,77,241,3,255,226,45,251,1,142,25,206,0,120,123,209,1,28,254,238,255,5,128,126,255,91,222,215,255,162,15,191,0,86,240,73,0,135,185,81,254,44,241,163,0,212,219,210,255,112,162,155,0,207,101,118,0,168,72,56,255,196,5,52,0,72,172,242,255,126,22,157,255,146,96,59,255,162,121,152,254,140,16,95,0,195,254,200,254,82,150,162,0,119,43,145,254,204,172,78,255,166,224,159,0,104,19,237,255,245,126,208,255,226,59,213,0,117,217,197,0,152,72,237,0,220,31,23,254,14,90,231,255,188,212,64,1,60,101,246,255,85,24,86,0,1,177,109,0,146,83,32,1,75,182,192,0,119,241,224,0,185,237,27,255,184,101,82,1,235,37,77,255,253,134,19,0,232,246,122,0,60,106,179,0,195,11,12,0,109,66,235,1,125,113,59,0,61,40,164,0,175,104,240,0,2,47,187,255,50,12,141,0,194,139,181,255,135,250,104,0,97,92,222,255,217,149,201,255,203,241,118,255,79,151,67,0,122,142,218,255,149,245,239,0,138,42,200,254,80,37,97,255,124,112,167,255,36,138,87,255,130,29,147,255,241,87,78,255,204,97,19,1,177,209,22,255,247,227,127,254,99,119,83,255,212,25,198,1,16,179,179,0,145,77,172,254,89,153,14,255,218,189,167,0,107,233,59,255,35,33,243,254,44,112,112,255,161,127,79,1,204,175,10,0,40,21,138,254,104,116,228,0,199,95,137,255,133,190,168,255,146,165,234,1,183,99,39,0,183,220,54,254,255,222,133,0,162,219,121,254,63,239,6,0,225,102,54,255,251,18,246,0,4,34,129,1,135,36,131,0,206,50,59,1,15,97,183,0,171,216,135,255,101,152,43,255,150,251,91,0,38,145,95,0,34,204,38,254,178,140,83,255,25,129,243,255,76,144,37,0,106,36,26,254,118,144,172,255,68,186,229,255,107,161,213,255,46,163,68,255,149,170,253,0,187,17,15,0,218,160,165,255,171,35,246,1,96,13,19,0,165,203,117,0,214,107,192,255,244,123,177,1,100,3,104,0,178,242,97,255,251,76,130,255,211,77,42,1,250,79,70,255,63,244,80,1,105,101,246,0,61,136,58,1,238,91,213,0,14,59,98,255,167,84,77,0,17,132,46,254,57,175,197,255,185,62,184,0,76,64,207,0,172,175,208,254,175,74,37,0,138,27,211,254,148,125,194,0,10,89,81,0,168,203,101,255,43,213,209,1,235,245,54,0,30,35,226,255,9,126,70,0,226,125,94,254,156,117,20,255,57,248,112,1,230,48,64,255,164,92,166,1,224,214,230,255,36,120,143,0,55,8,43,255,251,1,245,1,106,98,165,0,74,107,106,254,53,4,54,255,90,178,150,1,3,120,123,255,244,5,89,1,114,250,61,255,254,153,82,1,77,15,17,0,57,238,90,1,95,223,230,0,236,52,47,254,103,148,164,255,121,207,36,1,18,16,185,255,75,20,74,0,187,11,101,0,46,48,129,255,22,239,210,255,77,236,129,255,111,77,204,255,61,72,97,255,199,217,251,255,42,215,204,0,133,145,201,255,57,230,146,1,235,100,198,0,146,73,35,254,108,198,20,255,182,79,210,255,82,103,136,0,246,108,176,0,34,17,60,255,19,74,114,254,168,170,78,255,157,239,20,255,149,41,168,0,58,121,28,0,79,179,134,255,231,121,135,255,174,209,98,255,243,122,190,0,171,166,205,0,212,116,48,0,29,108,66,255,162,222,182,1,14,119,21,0,213,39,249,255,254,223,228,255,183,165,198,0,133,190,48,0,124,208,109,255,119,175,85,255,9,209,121,1,48,171,189,255,195,71,134,1,136,219,51,255,182,91,141,254,49,159,72,0,35,118,245,255,112,186,227,255,59,137,31,0,137,44,163,0,114,103,60,254,8,213,150,0,162,10,113,255,194,104,72,0,220,131,116,255,178,79,92,0,203,250,213,254,93,193,189,255,130,255,34,254,212,188,151,0,136,17,20,255,20,101,83,255,212,206,166,0,229,238,73,255,151,74,3,255,168,87,215,0,155,188,133,255,166,129,73,0,240,79,133,255,178,211,81,255,203,72,163,254,193,168,165,0,14,164,199,254,30,255,204,0,65,72,91,1,166,74,102,255,200,42,0,255,194,113,227,255,66,23,208,0,229,216,100,255,24,239,26,0,10,233,62,255,123,10,178,1,26,36,174,255,119,219,199,1,45,163,190,0,16,168,42,0,166,57,198,255,28,26,26,0,126,165,231,0,251,108,100,255,61,229,121,255,58,118,138,0,76,207,17,0,13,34,112,254,89,16,168,0,37,208,105,255,35,201,215,255,40,106,101,254,6,239,114,0,40,103,226,254,246,127,110,255,63,167,58,0,132,240,142,0,5,158,88,255,129,73,158,255,94,89,146,0,230,54,146,0,8,45,173,0,79,169,1,0,115,186,247,0,84,64,131,0,67,224,253,255,207,189,64,0,154,28,81,1,45,184,54,255,87,212,224,255,0,96,73,255,129,33,235,1,52,66,80,255,251,174,155,255,4,179,37,0,234,164,93,254,93,175,253,0,198,69,87,255,224,106,46,0,99,29,210,0,62,188,114,255,44,234,8,0,169,175,247,255,23,109,137,255,229,182,39,0,192,165,94,254,245,101,217,0,191,88,96,0,196,94,99,255,106,238,11,254,53,126,243,0,94,1,101,255,46,147,2,0,201,124,124,255,141,12,218,0,13,166,157,1,48,251,237,255,155,250,124,255,106,148,146,255,182,13,202,0,28,61,167,0,217,152,8,254,220,130,45,255,200,230,255,1,55,65,87,255,93,191,97,254,114,251,14,0,32,105,92,1,26,207,141,0,24,207,13,254,21,50,48,255,186,148,116,255,211,43,225,0,37,34,162,254,164,210,42,255,68,23,96,255,182,214,8,255,245,117,137,255,66,195,50,0,75,12,83,254,80,140,164,0,9,165,36,1,228,110,227,0,241,17,90,1,25,52,212,0,6,223,12,255,139,243,57,0,12,113,75,1,246,183,191,255,213,191,69,255,230,15,142,0,1,195,196,255,138,171,47,255,64,63,106,1,16,169,214,255,207,174,56,1,88,73,133,255,182,133,140,0,177,14,25,255,147,184,53,255,10,227,161,255,120,216,244,255,73,77,233,0,157,238,139,1,59,65,233,0,70,251,216,1,41,184,153,255,32,203,112,0,146,147,253,0,87,101,109,1,44,82,133,255,244,150,53,255,94,152,232,255,59,93,39,255,88,147,220,255,78,81,13,1,32,47,252,255,160,19,114,255,93,107,39,255,118,16,211,1,185,119,209,255,227,219,127,254,88,105,236,255,162,110,23,255,36,166,110,255,91,236,221,255,66,234,116,0,111,19,244,254,10,233,26,0,32,183,6,254,2,191,242,0,218,156,53,254,41,60,70,255,168,236,111,0,121,185,126,255,238,142,207,255,55,126,52,0,220,129,208,254,80,204,164,255,67,23,144,254,218,40,108,255,127,202,164,0,203,33,3,255,2,158,0,0,37,96,188,255,192,49,74,0,109,4,0,0,111,167,10,254,91,218,135,255,203,66,173,255,150,194,226,0,201,253,6,255,174,102,121,0,205,191,110,0,53,194,4,0,81,40,45,254,35,102,143,255,12,108,198,255,16,27,232,255,252,71,186,1,176,110,114,0,142,3,117,1,113,77,142,0,19,156,197,1,92,47,252,0,53,232,22,1,54,18,235,0,46,35,189,255,236,212,129,0,2,96,208,254,200,238,199,255,59,175,164,255,146,43,231,0,194,217,52,255,3,223,12,0,138,54,178,254,85,235,207,0,232,207,34,0,49,52,50,255,166,113,89,255,10,45,216,255,62,173,28,0,111,165,246,0,118,115,91,255,128,84,60,0,167,144,203,0,87,13,243,0,22,30,228,1,177,113,146,255,129,170,230,254,252,153,129,255,145,225,43,0,70,231,5,255,122,105,126,254,86,246,148,255,110,37,154,254,209,3,91,0,68,145,62,0,228,16,165,255,55,221,249,254,178,210,91,0,83,146,226,254,69,146,186,0,93,210,104,254,16,25,173,0,231,186,38,0,189,122,140,255,251,13,112,255,105,110,93,0,251,72,170,0,192,23,223,255,24,3,202,1,225,93,228,0,153,147,199,254,109,170,22,0,248,101,246,255,178,124,12,255,178,254,102,254,55,4,65,0,125,214,180,0,183,96,147,0,45,117,23,254,132,191,249,0,143,176,203,254,136,183,54,255,146,234,177,0,146,101,86,255,44,123,143,1,33,209,152,0,192,90,41,254,83,15,125,255,213,172,82,0,215,169,144,0,16,13,34,0,32,209,100,255,84,18,249,1,197,17,236,255,217,186,230,0,49,160,176,255,111,118,97,255,237,104,235,0,79,59,92,254,69,249,11,255,35,172,74,1,19,118,68,0,222,124,165,255,180,66,35,255,86,174,246,0,43,74,111,255,126,144,86,255,228,234,91,0,242,213,24,254,69,44,235,255,220,180,35,0,8,248,7,255,102,47,92,255,240,205,102,255,113,230,171,1,31,185,201,255,194,246,70,255,122,17,187,0,134,70,199,255,149,3,150,255,117,63,103,0,65,104,123,255,212,54,19,1,6,141,88,0,83,134,243,255,136,53,103,0,169,27,180,0,177,49,24,0,111,54,167,0,195,61,215,255,31,1,108,1,60,42,70,0,185,3,162,255,194,149,40,255,246,127,38,254,190,119,38,255,61,119,8,1,96,161,219,255,42,203,221,1,177,242,164,255,245,159,10,0,116,196,0,0,5,93,205,254,128,127,179,0,125,237,246,255,149,162,217,255,87,37,20,254,140,238,192,0,9,9,193,0,97,1,226,0,29,38,10,0,0,136,63,255,229,72,210,254,38,134,92,255,78,218,208,1,104,36,84,255,12,5,193,255,242,175,61,255,191,169,46,1,179,147,147,255,113,190,139,254,125,172,31,0,3,75,252,254,215,36,15,0,193,27,24,1,255,69,149,255,110,129,118,0,203,93,249,0,138,137,64,254,38,70,6,0,153,116,222,0,161,74,123,0,193,99,79,255,118,59,94,255,61,12,43,1,146,177,157,0,46,147,191,0,16,255,38,0,11,51,31,1,60,58,98,255,111,194,77,1,154,91,244,0,140,40,144,1,173,10,251,0,203,209,50,254,108,130,78,0,228,180,90,0,174,7,250,0,31,174,60,0,41,171,30,0,116,99,82,255,118,193,139,255,187,173,198,254,218,111,56,0,185,123,216,0,249,158,52,0,52,180,93,255,201,9,91,255,56,45,166,254,132,155,203,255,58,232,110,0,52,211,89,255,253,0,162,1,9,87,183,0,145,136,44,1,94,122,245,0,85,188,171,1,147,92,198,0,0,8,104,0,30,95,174,0,221,230,52,1,247,247,235,255,137,174,53,255,35,21,204,255,71,227,214,1,232,82,194,0,11,48,227,255,170,73,184,255,198,251,252,254,44,112,34,0,131,101,131,255,72,168,187,0,132,135,125,255,138,104,97,255,238,184,168,255,243,104,84,255,135,216,226,255,139,144,237,0,188,137,150,1,80,56,140,255,86,169,167,255,194,78,25,255,220,17,180,255,17,13,193,0,117,137,212,255,141,224,151,0,49,244,175,0,193,99,175,255,19,99,154,1,255,65,62,255,156,210,55,255,242,244,3,255,250,14,149,0,158,88,217,255,157,207,134,254,251,232,28,0,46,156,251,255,171,56,184,255,239,51,234,0,142,138,131,255,25,254,243,1,10,201,194,0,63,97,75,0,210,239,162,0,192,200,31,1,117,214,243,0,24,71,222,254,54,40,232,255,76,183,111,254,144,14,87,255,214,79,136,255,216,196,212,0,132,27,140,254,131,5,253,0,124,108,19,255,28,215,75,0,76,222,55,254,233,182,63,0,68,171,191,254,52,111,222,255,10,105,77,255,80,170,235,0,143,24,88,255,45,231,121,0,148,129,224,1,61,246,84,0,253,46,219,255,239,76,33,0,49,148,18,254,230,37,69,0,67,134,22,254,142,155,94,0,31,157,211,254,213,42,30,255,4,228,247,254,252,176,13,255,39,0,31,254,241,244,255,255,170,45,10,254,253,222,249,0,222,114,132,0,255,47,6,255,180,163,179,1,84,94,151,255,89,209,82,254,229,52,169,255,213,236,0,1,214,56,228,255,135,119,151,255,112,201,193,0,83,160,53,254,6,151,66,0,18,162,17,0,233,97,91,0,131,5,78,1,181,120,53,255,117,95,63,255,237,117,185,0,191,126,136,255,144,119,233,0,183,57,97,1,47,201,187,255,167,165,119,1,45,100,126,0,21,98,6,254,145,150,95,255,120,54,152,0,209,98,104,0,143,111,30,254,184,148,249,0,235,216,46,0,248,202,148,255,57,95,22,0,242,225,163,0,233,247,232,255,71,171,19,255,103,244,49,255,84,103,93,255,68,121,244,1,82,224,13,0,41,79,43,255,249,206,167,255,215,52,21,254,192,32,22,255,247,111,60,0,101,74,38,255,22,91,84,254,29,28,13,255,198,231,215,254,244,154,200,0,223,137,237,0,211,132,14,0,95,64,206,255,17,62,247,255,233,131,121,1,93,23,77,0,205,204,52,254,81,189,136,0,180,219,138,1,143,18,94,0,204,43,140,254,188,175,219,0,111,98,143,255,151,63,162,255,211,50,71,254,19,146,53,0,146,45,83,254,178,82,238,255,16,133,84,255,226,198,93,255,201,97,20,255,120,118,35,255,114,50,231,255,162,229,156,255,211,26,12,0,114,39,115,255,206,212,134,0,197,217,160,255,116,129,94,254,199,215,219,255,75,223,249,1,253,116,181,255,232,215,104,255,228,130,246,255,185,117,86,0,14,5,8,0,239,29,61,1,237,87,133,255,125,146,137,254,204,168,223,0,46,168,245,0,154,105,22,0,220,212,161,255,107,69,24,255,137,218,181,255,241,84,198,255,130,122,211,255,141,8,153,255,190,177,118,0,96,89,178,0,255,16,48,254,122,96,105,255,117,54,232,255,34,126,105,255,204,67,166,0,232,52,138,255,211,147,12,0,25,54,7,0,44,15,215,254,51,236,45,0,190,68,129,1,106,147,225,0,28,93,45,254,236,141,15,255,17,61,161,0,220,115,192,0,236,145,24,254,111,168,169,0,224,58,63,255,127,164,188,0,82,234,75,1,224,158,134,0,209,68,110,1,217,166,217,0,70,225,166,1,187,193,143,255,16,7,88,255,10,205,140,0,117,192,156,1,17,56,38,0,27,124,108,1,171,215,55,255,95,253,212,0,155,135,168,255,246,178,153,254,154,68,74,0,232,61,96,254,105,132,59,0,33,76,199,1,189,176,130,255,9,104,25,254,75,198,102,255,233,1,112,0,108,220,20,255,114,230,70,0,140,194,133,255,57,158,164,254,146,6,80,255,169,196,97,1,85,183,130,0,70,158,222,1,59,237,234,255,96,25,26,255,232,175,97,255,11,121,248,254,88,35,194,0,219,180,252,254,74,8,227,0,195,227,73,1,184,110,161,255,49,233,164,1,128,53,47,0,82,14,121,255,193,190,58,0,48,174,117,255,132,23,32,0,40,10,134,1,22,51,25,255,240,11,176,255,110,57,146,0,117,143,239,1,157,101,118,255,54,84,76,0,205,184,18,255,47,4,72,255,78,112,85,255,193,50,66,1,93,16,52,255,8,105,134,0,12,109,72,255,58,156,251,0,144,35,204,0,44,160,117,254,50,107,194,0,1,68,165,255,111,110,162,0,158,83,40,254,76,214,234,0,58,216,205,255,171,96,147,255,40,227,114,1,176,227,241,0,70,249,183,1,136,84,139,255,60,122,247,254,143,9,117,255,177,174,137,254,73,247,143,0,236,185,126,255,62,25,247,255,45,64,56,255,161,244,6,0,34,57,56,1,105,202,83,0,128,147,208,0,6,103,10,255,74,138,65,255,97,80,100,255,214,174,33,255,50,134,74,255,110,151,130,254,111,84,172,0,84,199,75,254,248,59,112,255,8,216,178,1,9,183,95,0,238,27,8,254,170,205,220,0,195,229,135,0,98,76,237,255,226,91,26,1,82,219,39,255,225,190,199,1,217,200,121,255,81,179,8,255,140,65,206,0,178,207,87,254,250,252,46,255,104,89,110,1,253,189,158,255,144,214,158,255,160,245,54,255,53,183,92,1,21,200,194,255,146,33,113,1,209,1,255,0,235,106,43,255,167,52,232,0,157,229,221,0,51,30,25,0,250,221,27,1,65,147,87,255,79,123,196,0,65,196,223,255,76,44,17,1,85,241,68,0,202,183,249,255,65,212,212,255,9,33,154,1,71,59,80,0,175,194,59,255,141,72,9,0,100,160,244,0,230,208,56,0,59,25,75,254,80,194,194,0,18,3,200,254,160,159,115,0,132,143,247,1,111,93,57,255,58,237,11,1,134,222,135,255,122,163,108,1,123,43,190,255,251,189,206,254,80,182,72,255,208,246,224,1,17,60,9,0,161,207,38,0,141,109,91,0,216,15,211,255,136,78,110,0,98,163,104,255,21,80,121,255,173,178,183,1,127,143,4,0,104,60,82,254,214,16,13,255,96,238,33,1,158,148,230,255,127,129,62,255,51,255,210,255,62,141,236,254,157,55,224,255,114,39,244,0,192,188,250,255,228,76,53,0,98,84,81,255,173,203,61,254,147,50,55,255,204,235,191,0,52,197,244,0,88,43,211,254,27,191,119,0,188,231,154,0,66,81,161,0,92,193,160,1,250,227,120,0,123,55,226,0,184,17,72,0,133,168,10,254,22,135,156,255,41,25,103,255,48,202,58,0,186,149,81,255,188,134,239,0,235,181,189,254,217,139,188,255,74,48,82,0,46,218,229,0,189,253,251,0,50,229,12,255,211,141,191,1,128,244,25,255,169,231,122,254,86,47,189,255,132,183,23,255,37,178,150,255,51,137,253,0,200,78,31,0,22,105,50,0,130,60,0,0,132,163,91,254,23,231,187,0,192,79,239,0,157,102,164,255,192,82,20,1,24,181,103,255,240,9,234,0,1,123,164,255,133,233,0,255,202,242,242,0,60,186,245,0,241,16,199,255,224,116,158,254,191,125,91,255,224,86,207,0,121,37,231,255,227,9,198,255,15,153,239,255,121,232,217,254,75,112,82,0,95,12,57,254,51,214,105,255,148,220,97,1,199,98,36,0,156,209,12,254,10,212,52,0,217,180,55,254,212,170,232,255,216,20,84,255,157,250,135,0,157,99,127,254,1,206,41,0,149,36,70,1,54,196,201,255,87,116,0,254,235,171,150,0,27,163,234,0,202,135,180,0,208,95,0,254,123,156,93,0,183,62,75,0,137,235,182,0,204,225,255,255,214,139,210,255,2,115,8,255,29,12,111,0,52,156,1,0,253,21,251,255,37,165,31,254,12,130,211,0,106,18,53,254,42,99,154,0,14,217,61,254,216,11,92,255,200,197,112,254,147,38,199,0,36,252,120,254,107,169,77,0,1,123,159,255,207,75,102,0,163,175,196,0,44,1,240,0,120,186,176,254,13,98,76,255,237,124,241,255,232,146,188,255,200,96,224,0,204,31,41,0,208,200,13,0,21,225,96,255,175,156,196,0,247,208,126,0,62,184,244,254,2,171,81,0,85,115,158,0,54,64,45,255,19,138,114,0,135,71,205,0,227,47,147,1,218,231,66,0,253,209,28,0,244,15,173,255,6,15,118,254,16,150,208,255,185,22,50,255,86,112,207,255,75,113,215,1,63,146,43,255,4,225,19,254,227,23,62,255,14,255,214,254,45,8,205,255,87,197,151,254,210,82,215,255,245,248,247,255,128,248,70,0,225,247,87,0,90,120,70,0,213,245,92,0,13,133,226,0,47,181,5,1,92,163,105,255,6,30,133,254,232,178,61,255,230,149,24,255,18,49,158,0,228,100,61,254,116,243,251,255,77,75,92,1,81,219,147,255,76,163,254,254,141,213,246,0,232,37,152,254,97,44,100,0,201,37,50,1,212,244,57,0,174,171,183,255,249,74,112,0,166,156,30,0,222,221,97,255,243,93,73,254,251,101,100,255,216,217,93,255,254,138,187,255,142,190,52,255,59,203,177,255,200,94,52,0,115,114,158,255,165,152,104,1,126,99,226,255,118,157,244,1,107,200,16,0,193,90,229,0,121,6,88,0,156,32,93,254,125,241,211,255,14,237,157,255,165,154,21,255,184,224,22,255,250,24,152,255,113,77,31,0,247,171,23,255,237,177,204,255,52,137,145,255,194,182,114,0,224,234,149,0,10,111,103,1,201,129,4,0,238,142,78,0,52,6,40,255,110,213,165,254,60,207,253,0,62,215,69,0,96,97,0,255,49,45,202,0,120,121,22,255,235,139,48,1,198,45,34,255,182,50,27,1,131,210,91,255,46,54,128,0,175,123,105,255,198,141,78,254,67,244,239,255,245,54,103,254,78,38,242,255,2,92,249,254,251,174,87,255,139,63,144,0,24,108,27,255,34,102,18,1,34,22,152,0,66,229,118,254,50,143,99,0,144,169,149,1,118,30,152,0,178,8,121,1,8,159,18,0,90,101,230,255,129,29,119,0,68,36,11,1,232,183,55,0,23,255,96,255,161,41,193,255,63,139,222,0,15,179,243,0,255,100,15,255,82,53,135,0,137,57,149,1,99,240,170,255,22,230,228,254,49,180,82,255,61,82,43,0,110,245,217,0,199,125,61,0,46,253,52,0,141,197,219,0,211,159,193,0,55,121,105,254,183,20,129,0,169,119,170,255,203,178,139,255,135,40,182,255,172,13,202,255,65,178,148,0,8,207,43,0,122,53,127,1,74,161,48,0,227,214,128,254,86,11,243,255,100,86,7,1,245,68,134,255,61,43,21,1,152,84,94,255,190,60,250,254,239,118,232,255,214,136,37,1,113,76,107,255,93,104,100,1,144,206,23,255,110,150,154,1,228,103,185,0,218,49,50,254,135,77,139,255,185,1,78,0,0,161,148,255,97,29,233,255,207,148,149,255,160,168,0,0,91,128,171,255,6,28,19,254,11,111,247,0,39,187,150,255,138,232,149,0,117,62,68,255,63,216,188,255,235,234,32,254,29,57,160,255,25,12,241,1,169,60,191,0,32,131,141,255,237,159,123,255,94,197,94,254,116,254,3,255,92,179,97,254,121,97,92,255,170,112,14,0,21,149,248,0,248,227,3,0,80,96,109,0,75,192,74,1,12,90,226,255,161,106,68,1,208,114,127,255,114,42,255,254,74,26,74,255,247,179,150,254,121,140,60,0,147,70,200,255,214,40,161,255,161,188,201,255,141,65,135,255,242,115,252,0,62,47,202,0,180,149,255,254,130,55,237,0,165,17,186,255,10,169,194,0,156,109,218,255,112,140,123,255,104,128,223,254,177,142,108,255,121,37,219,255,128,77,18,255,111,108,23,1,91,192,75,0,174,245,22,255,4,236,62,255,43,64,153,1,227,173,254,0,237,122,132,1,127,89,186,255,142,82,128,254,252,84,174,0,90,179,177,1,243,214,87,255,103,60,162,255,208,130,14,255,11,130,139,0,206,129,219,255,94,217,157,255,239,230,230,255,116,115,159,254,164,107,95,0,51,218,2,1,216,125,198,255,140,202,128,254,11,95,68,255,55,9,93,254,174,153,6,255,204,172,96,0,69,160,110,0,213,38,49,254,27,80,213,0,118,125,114,0,70,70,67,255,15,142,73,255,131,122,185,255,243,20,50,254,130,237,40,0,210,159,140,1,197,151,65,255,84,153,66,0,195,126,90,0,16,238,236,1,118,187,102,255,3,24,133,255,187,69,230,0,56,197,92,1,213,69,94,255,80,138,229,1,206,7,230,0,222,111,230,1,91,233,119,255,9,89,7,1,2,98,1,0,148,74,133,255,51,246,180,255,228,177,112,1,58,189,108,255,194,203,237,254,21,209,195,0,147,10,35,1,86,157,226,0,31,163,139,254,56,7,75,255,62,90,116,0,181,60,169,0,138,162,212,254,81,167,31,0,205,90,112,255,33,112,227,0,83,151,117,1,177,224,73,255,174,144,217,255,230,204,79,255,22,77,232,255,114,78,234,0,224,57,126,254,9,49,141,0,242,147,165,1,104,182,140,255,167,132,12,1,123,68,127,0,225,87,39,1,251,108,8,0,198,193,143,1,121,135,207,255,172,22,70,0,50,68,116,255,101,175,40,255,248,105,233,0,166,203,7,0,110,197,218,0,215,254,26,254,168,226,253,0,31,143,96,0,11,103,41,0,183,129,203,254,100,247,74,255,213,126,132,0,210,147,44,0,199,234,27,1,148,47,181,0,155,91,158,1,54,105,175,255,2,78,145,254,102,154,95,0,128,207,127,254,52,124,236,255,130,84,71,0,221,243,211,0,152,170,207,0,222,106,199,0,183,84,94,254,92,200,56,255,138,182,115,1,142,96,146,0,133,136,228,0,97,18,150,0,55,251,66,0,140,102,4,0,202,103,151,0,30,19,248,255,51,184,207,0,202,198,89,0,55,197,225,254,169,95,249,255,66,65,68,255,188,234,126,0,166,223,100,1,112,239,244,0,144,23,194,0,58,39,182,0,244,44,24,254,175,68,179,255,152,118,154,1,176,162,130,0,217,114,204,254,173,126,78,255,33,222,30,255,36,2,91,255,2,143,243,0,9,235,215,0,3,171,151,1,24,215,245,255,168,47,164,254,241,146,207,0,69,129,180,0,68,243,113,0,144,53,72,254,251,45,14,0,23,110,168,0,68,68,79,255,110,70,95,254,174,91,144,255,33,206,95,255,137,41,7,255,19,187,153,254,35,255,112,255,9,145,185,254,50,157,37,0,11,112,49,1,102,8,190,255,234,243,169,1,60,85,23,0,74,39,189,0,116,49,239,0,173,213,210,0,46,161,108,255,159,150,37,0,196,120,185,255,34,98,6,255,153,195,62,255,97,230,71,255,102,61,76,0,26,212,236,255,164,97,16,0,198,59,146,0,163,23,196,0,56,24,61,0,181,98,193,0,251,147,229,255,98,189,24,255,46,54,206,255,234,82,246,0,183,103,38,1,109,62,204,0,10,240,224,0,146,22,117,255,142,154,120,0,69,212,35,0,208,99,118,1,121,255,3,255,72,6,194,0,117,17,197,255,125,15,23,0,154,79,153,0,214,94,197,255,185,55,147,255,62,254,78,254,127,82,153,0,110,102,63,255,108,82,161,255,105,187,212,1,80,138,39,0,60,255,93,255,72,12,186,0,210,251,31,1,190,167,144,255,228,44,19,254,128,67,232,0,214,249,107,254,136,145,86,255,132,46,176,0,189,187,227,255,208,22,140,0,217,211,116,0,50,81,186,254,139,250,31,0,30,64,198,1,135,155,100,0,160,206,23,254,187,162,211,255,16,188,63,0,254,208,49,0,85,84,191,0,241,192,242,255,153,126,145,1,234,162,162,255,230,97,216,1,64,135,126,0,190,148,223,1,52,0,43,255,28,39,189,1,64,136,238,0,175,196,185,0,98,226,213,255,127,159,244,1,226,175,60,0,160,233,142,1,180,243,207,255,69,152,89,1,31,101,21,0,144,25,164,254,139,191,209,0,91,25,121,0,32,147,5,0,39,186,123,255,63,115,230,255,93,167,198,255,143,213,220,255,179,156,19,255,25,66,122,0,214,160,217,255,2,45,62,255,106,79,146,254,51,137,99,255,87,100,231,255,175,145,232,255,101,184,1,255,174,9,125,0,82,37,161,1,36,114,141,255,48,222,142,255,245,186,154,0,5,174,221,254,63,114,155,255,135,55,160,1,80,31,135,0,126,250,179,1,236,218,45,0,20,28,145,1,16,147,73,0,249,189,132,1,17,189,192,255,223,142,198,255,72,20,15,255,250,53,237,254,15,11,18,0,27,211,113,254,213,107,56,255,174,147,146,255,96,126,48,0,23,193,109,1,37,162,94,0,199,157,249,254,24,128,187,255,205,49,178,254,93,164,42,255,43,119,235,1,88,183,237,255,218,210,1,255,107,254,42,0,230,10,99,255,162,0,226,0,219,237,91,0,129,178,203,0,208,50,95,254,206,208,95,255,247,191,89,254,110,234,79,255,165,61,243,0,20,122,112,255,246,246,185,254,103,4,123,0,233,99,230,1,219,91,252,255,199,222,22,255,179,245,233,255,211,241,234,0,111,250,192,255,85,84,136,0,101,58,50,255,131,173,156,254,119,45,51,255,118,233,16,254,242,90,214,0,94,159,219,1,3,3,234,255,98,76,92,254,80,54,230,0,5,228,231,254,53,24,223,255,113,56,118,1,20,132,1,255,171,210,236,0,56,241,158,255,186,115,19,255,8,229,174,0,48,44,0,1,114,114,166,255,6,73,226,255,205,89,244,0,137,227,75,1,248,173,56,0,74,120,246,254,119,3,11,255,81,120,198,255,136,122,98,255,146,241,221,1,109,194,78,255,223,241,70,1,214,200,169,255,97,190,47,255,47,103,174,255,99,92,72,254,118,233,180,255,193,35,233,254,26,229,32,255,222,252,198,0,204,43,71,255,199,84,172,0,134,102,190,0,111,238,97,254,230,40,230,0,227,205,64,254,200,12,225,0,166,25,222,0,113,69,51,255,143,159,24,0,167,184,74,0,29,224,116,254,158,208,233,0,193,116,126,255,212,11,133,255,22,58,140,1,204,36,51,255,232,30,43,0,235,70,181,255,64,56,146,254,169,18,84,255,226,1,13,255,200,50,176,255,52,213,245,254,168,209,97,0,191,71,55,0,34,78,156,0,232,144,58,1,185,74,189,0,186,142,149,254,64,69,127,255,161,203,147,255,176,151,191,0,136,231,203,254,163,182,137,0,161,126,251,254,233,32,66,0,68,207,66,0,30,28,37,0,93,114,96,1,254,92,247,255,44,171,69,0,202,119,11,255,188,118,50,1,255,83,136,255,71,82,26,0,70,227,2,0,32,235,121,1,181,41,154,0,71,134,229,254,202,255,36,0,41,152,5,0,154,63,73,255,34,182,124,0,121,221,150,255,26,204,213,1,41,172,87,0,90,157,146,255,109,130,20,0,71,107,200,255,243,102,189,0,1,195,145,254,46,88,117,0,8,206,227,0,191,110,253,255,109,128,20,254,134,85,51,255,137,177,112,1,216,34,22,255,131,16,208,255,121,149,170,0,114,19,23,1,166,80,31,255,113,240,122,0,232,179,250,0,68,110,180,254,210,170,119,0,223,108,164,255,207,79,233,255,27,229,226,254,209,98,81,255,79,68,7,0,131,185,100,0,170,29,162,255,17,162,107,255,57,21,11,1,100,200,181,255,127,65,166,1,165,134,204,0,104,167,168,0,1,164,79,0,146,135,59,1,70,50,128,255,102,119,13,254,227,6,135,0,162,142,179,255,160,100,222,0,27,224,219,1,158,93,195,255,234,141,137,0,16,24,125,255,238,206,47,255,97,17,98,255,116,110,12,255,96,115,77,0,91,227,232,255,248,254,79,255,92,229,6,254,88,198,139,0,206,75,129,0,250,77,206,255,141,244,123,1,138,69,220,0,32,151,6,1,131,167,22,255,237,68,167,254,199,189,150,0,163,171,138,255,51,188,6,255,95,29,137,254,148,226,179,0,181,107,208,255,134,31,82,255,151,101,45,255,129,202,225,0,224,72,147,0,48,138,151,255,195,64,206,254,237,218,158,0,106,29,137,254,253,189,233,255,103,15,17,255,194,97,255,0,178,45,169,254,198,225,155,0,39,48,117,255,135,106,115,0,97,38,181,0,150,47,65,255,83,130,229,254,246,38,129,0,92,239,154,254,91,99,127,0,161,111,33,255,238,217,242,255,131,185,195,255,213,191,158,255,41,150,218,0,132,169,131,0,89,84,252,1,171,70,128,255,163,248,203,254,1,50,180,255,124,76,85,1,251,111,80,0,99,66,239,255,154,237,182,255,221,126,133,254,74,204,99,255,65,147,119,255,99,56,167,255,79,248,149,255,116,155,228,255,237,43,14,254,69,137,11,255,22,250,241,1,91,122,143,255,205,249,243,0,212,26,60,255,48,182,176,1,48,23,191,255,203,121,152,254,45,74,213,255,62,90,18,254,245,163,230,255,185,106,116,255,83,35,159,0,12,33,2,255,80,34,62,0,16,87,174,255,173,101,85,0,202,36,81,254,160,69,204,255,64,225,187,0,58,206,94,0,86,144,47,0,229,86,245,0,63,145,190,1,37,5,39,0,109,251,26,0,137,147,234,0,162,121,145,255,144,116,206,255,197,232,185,255,183,190,140,255,73,12,254,255,139,20,242,255,170,90,239,255,97,66,187,255,245,181,135,254,222,136,52,0,245,5,51,254,203,47,78,0,152,101,216,0,73,23,125,0,254,96,33,1,235,210,73,255,43,209,88,1,7,129,109,0,122,104,228,254,170,242,203,0,242,204,135,255,202,28,233,255,65,6,127,0,159,144,71,0,100,140,95,0,78,150,13,0,251,107,118,1,182,58,125,255,1,38,108,255,141,189,209,255,8,155,125,1,113,163,91,255,121,79,190,255,134,239,108,255,76,47,248,0,163,228,239,0,17,111,10,0,88,149,75,255,215,235,239,0,167,159,24,255,47,151,108,255,107,209,188,0,233,231,99,254,28,202,148,255,174,35,138,255,110,24,68,255,2,69,181,0,107,102,82,0,102,237,7,0,92,36,237,255,221,162,83,1,55,202,6,255,135,234,135,255,24,250,222,0,65,94,168,254,245,248,210,255,167,108,201,254,255,161,111,0,205,8,254,0,136,13,116,0,100,176,132,255,43,215,126,255,177,133,130,255,158,79,148,0,67,224,37,1,12,206,21,255,62,34,110,1,237,104,175,255,80,132,111,255,142,174,72,0,84,229,180,254,105,179,140,0,64,248,15,255,233,138,16,0,245,67,123,254,218,121,212,255,63,95,218,1,213,133,137,255,143,182,82,255,48,28,11,0,244,114,141,1,209,175,76,255,157,181,150,255,186,229,3,255,164,157,111,1,231,189,139,0,119,202,190,255,218,106,64,255,68,235,63,254,96,26,172,255,187,47,11,1,215,18,251,255,81,84,89,0,68,58,128,0,94,113,5,1,92,129,208,255,97,15,83,254,9,28,188,0,239,9,164,0,60,205,152,0,192,163,98,255,184,18,60,0,217,182,139,0,109,59,120,255,4,192,251,0,169,210,240,255,37,172,92,254,148,211,245,255,179,65,52,0,253,13,115,0,185,174,206,1,114,188,149,255,237,90,173,0,43,199,192,255,88,108,113,0,52,35,76,0,66,25,148,255,221,4,7,255,151,241,114,255,190,209,232,0,98,50,199,0,151,150,213,255,18,74,36,1,53,40,7,0,19,135,65,255,26,172,69,0,174,237,85,0,99,95,41,0,3,56,16,0,39,160,177,255,200,106,218,254,185,68,84,255,91,186,61,254,67,143,141,255,13,244,166,255,99,114,198,0,199,110,163,255,193,18,186,0,124,239,246,1,110,68,22,0,2,235,46,1,212,60,107,0,105,42,105,1,14,230,152,0,7,5,131,0,141,104,154,255,213,3,6,0,131,228,162,255,179,100,28,1,231,123,85,255,206,14,223,1,253,96,230,0,38,152,149,1,98,137,122,0,214,205,3,255,226,152,179,255,6,133,137,0,158,69,140,255,113,162,154,255,180,243,172,255,27,189,115,255,143,46,220,255,213,134,225,255,126,29,69,0,188,43,137,1,242,70,9,0,90,204,255,255,231,170,147,0,23,56,19,254,56,125,157,255,48,179,218,255,79,182,253,255,38,212,191,1,41,235,124,0,96,151,28,0,135,148,190,0,205,249,39,254,52,96,136,255,212,44,136,255,67,209,131,255,252,130,23,255,219,128,20,255,198,129,118,0,108,101,11,0,178,5,146,1,62,7,100,255,181,236,94,254,28,26,164,0,76,22,112,255,120,102,79,0,202,192,229,1,200,176,215,0,41,64,244,255,206,184,78,0,167,45,63,1,160,35,0,255,59,12,142,255,204,9,144,255,219,94,229,1,122,27,112,0,189,105,109,255,64,208,74,255,251,127,55,1,2,226,198,0,44,76,209,0,151,152,77,255,210,23,46,1,201,171,69,255,44,211,231,0,190,37,224,255,245,196,62,255,169,181,222,255,34,211,17,0,119,241,197,255,229,35,152,1,21,69,40,255,178,226,161,0,148,179,193,0,219,194,254,1,40,206,51,255,231,92,250,1,67,153,170,0,21,148,241,0,170,69,82,255,121,18,231,255,92,114,3,0,184,62,230,0,225,201,87,255,146,96,162,255,181,242,220,0,173,187,221,1,226,62,170,255,56,126,217,1,117,13,227,255,179,44,239,0,157,141,155,255,144,221,83,0,235,209,208,0,42,17,165,1,251,81,133,0,124,245,201,254,97,211,24,255,83,214,166,0,154,36,9,255,248,47,127,0,90,219,140,255,161,217,38,254,212,147,63,255,66,84,148,1,207,3,1,0,230,134,89,1,127,78,122,255,224,155,1,255,82,136,74,0,178,156,208,255,186,25,49,255,222,3,210,1,229,150,190,255,85,162,52,255,41,84,141,255,73,123,84,254,93,17,150,0,119,19,28,1,32,22,215,255,28,23,204,255,142,241,52,255,228,52,125,0,29,76,207,0,215,167,250,254,175,164,230,0,55,207,105,1,109,187,245,255,161,44,220,1,41,101,128,255,167,16,94,0,93,214,107,255,118,72,0,254,80,61,234,255,121,175,125,0,139,169,251,0,97,39,147,254,250,196,49,255,165,179,110,254,223,70,187,255,22,142,125,1,154,179,138,255,118,176,42,1,10,174,153,0,156,92,102,0,168,13,161,255,143,16,32,0,250,197,180,255,203,163,44,1,87,32,36,0,161,153,20,255,123,252,15,0,25,227,80,0,60,88,142,0,17,22,201,1,154,205,77,255,39,63,47,0,8,122,141,0,128,23,182,254,204,39,19,255,4,112,29,255,23,36,140,255,210,234,116,254,53,50,63,255,121,171,104,255,160,219,94,0,87,82,14,254,231,42,5,0,165,139,127,254,86,78,38,0,130,60,66,254,203,30,45,255,46,196,122,1,249,53,162,255,136,143,103,254,215,210,114,0,231,7,160,254,169,152,42,255,111,45,246,0,142,131,135,255,131,71,204,255,36,226,11,0,0,28,242,255,225,138,213,255,247,46,216,254,245,3,183,0,108,252,74,1,206,26,48,255,205,54,246,255,211,198,36,255,121,35,50,0,52,216,202,255,38,139,129,254,242,73,148,0,67,231,141,255,42,47,204,0,78,116,25,1,4,225,191,255,6,147,228,0,58,88,177,0,122,165,229,255,252,83,201,255,224,167,96,1,177,184,158,255,242,105,179,1,248,198,240,0,133,66,203,1,254,36,47,0,45,24,115,255,119,62,254,0,196,225,186,254,123,141,172,0,26,85,41,255,226,111,183,0,213,231,151,0,4,59,7,255,238,138,148,0,66,147,33,255,31,246,141,255,209,141,116,255,104,112,31,0,88,161,172,0,83,215,230,254,47,111,151,0,45,38,52,1,132,45,204,0,138,128,109,254,233,117,134,255,243,190,173,254,241,236,240,0,82,127,236,254,40,223,161,255,110,182,225,255,123,174,239,0,135,242,145,1,51,209,154,0,150,3,115,254,217,164,252,255,55,156,69,1,84,94,255,255,232,73,45,1,20,19,212,255,96,197,59,254,96,251,33,0,38,199,73,1,64,172,247,255,117,116,56,255,228,17,18,0,62,138,103,1,246,229,164,255,244,118,201,254,86,32,159,255,109,34,137,1,85,211,186,0,10,193,193,254,122,194,177,0,122,238,102,255,162,218,171,0,108,217,161,1,158,170,34,0,176,47,155,1,181,228,11,255,8,156,0,0,16,75,93,0,206,98,255,1,58,154,35,0,12,243,184,254,67,117,66,255,230,229,123,0,201,42,110,0,134,228,178,254,186,108,118,255,58,19,154,255,82,169,62,255,114,143,115,1,239,196,50,255,173,48,193,255,147,2,84,255,150,134,147,254,95,232,73,0,109,227,52,254,191,137,10,0,40,204,30,254,76,52,97,255,164,235,126,0,254,124,188,0,74,182,21,1,121,29,35,255,241,30,7,254,85,218,214,255,7,84,150,254,81,27,117,255,160,159,152,254,66,24,221,255,227,10,60,1,141,135,102,0,208,189,150,1,117,179,92,0,132,22,136,255,120,199,28,0,21,129,79,254,182,9,65,0,218,163,169,0,246,147,198,255,107,38,144,1,78,175,205,255,214,5,250,254,47,88,29,255,164,47,204,255,43,55,6,255,131,134,207,254,116,100,214,0,96,140,75,1,106,220,144,0,195,32,28,1,172,81,5,255,199,179,52,255,37,84,203,0,170,112,174,0,11,4,91,0,69,244,27,1,117,131,92,0,33,152,175,255,140,153,107,255,251,135,43,254,87,138,4,255,198,234,147,254,121,152,84,255,205,101,155,1,157,9,25,0,72,106,17,254,108,153,0,255,189,229,186,0,193,8,176,255,174,149,209,0,238,130,29,0,233,214,126,1,61,226,102,0,57,163,4,1,198,111,51,255,45,79,78,1,115,210,10,255,218,9,25,255,158,139,198,255,211,82,187,254,80,133,83,0,157,129,230,1,243,133,134,255,40,136,16,0,77,107,79,255,183,85,92,1,177,204,202,0,163,71,147,255,152,69,190,0,172,51,188,1,250,210,172,255,211,242,113,1,89,89,26,255,64,66,111,254,116,152,42,0,161,39,27,255,54,80,254,0,106,209,115,1,103,124,97,0,221,230,98,255,31,231,6,0,178,192,120,254,15,217,203,255,124,158,79,0,112,145,247,0,92,250,48,1,163,181,193,255,37,47,142,254,144,189,165,255,46,146,240,0,6,75,128,0,41,157,200,254,87,121,213,0,1,113,236,0,5,45,250,0,144,12,82,0,31,108,231,0,225,239,119,255,167,7,189,255,187,228,132,255,110,189,34,0,94,44,204,1,162,52,197,0,78,188,241,254,57,20,141,0,244,146,47,1,206,100,51,0,125,107,148,254,27,195,77,0,152,253,90,1,7,143,144,255,51,37,31,0,34,119,38,255,7,197,118,0,153,188,211,0,151,20,116,254,245,65,52,255,180,253,110,1,47,177,209,0,161,99,17,255,118,222,202,0,125,179,252,1,123,54,126,255,145,57,191,0,55,186,121,0,10,243,138,0,205,211,229,255,125,156,241,254,148,156,185,255,227,19,188,255,124,41,32,255,31,34,206,254,17,57,83,0,204,22,37,255,42,96,98,0,119,102,184,1,3,190,28,0,110,82,218,255,200,204,192,255,201,145,118,0,117,204,146,0,132,32,98,1,192,194,121,0,106,161,248,1,237,88,124,0,23,212,26,0,205,171,90,255,248,48,216,1,141,37,230,255,124,203,0,254,158,168,30,255,214,248,21,0,112,187,7,255], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+20480); +/* memory initializer */ allocate([75,133,239,255,74,227,243,255,250,147,70,0,214,120,162,0,167,9,179,255,22,158,18,0,218,77,209,1,97,109,81,255,244,33,179,255,57,52,57,255,65,172,210,255,249,71,209,255,142,169,238,0,158,189,153,255,174,254,103,254,98,33,14,0,141,76,230,255,113,139,52,255,15,58,212,0,168,215,201,255,248,204,215,1,223,68,160,255,57,154,183,254,47,231,121,0,106,166,137,0,81,136,138,0,165,43,51,0,231,139,61,0,57,95,59,254,118,98,25,255,151,63,236,1,94,190,250,255,169,185,114,1,5,250,58,255,75,105,97,1,215,223,134,0,113,99,163,1,128,62,112,0,99,106,147,0,163,195,10,0,33,205,182,0,214,14,174,255,129,38,231,255,53,182,223,0,98,42,159,255,247,13,40,0,188,210,177,1,6,21,0,255,255,61,148,254,137,45,129,255,89,26,116,254,126,38,114,0,251,50,242,254,121,134,128,255,204,249,167,254,165,235,215,0,202,177,243,0,133,141,62,0,240,130,190,1,110,175,255,0,0,20,146,1,37,210,121,255,7,39,130,0,142,250,84,255,141,200,207,0,9,95,104,255,11,244,174,0,134,232,126,0,167,1,123,254,16,193,149,255,232,233,239,1,213,70,112,255,252,116,160,254,242,222,220,255,205,85,227,0,7,185,58,0,118,247,63,1,116,77,177,255,62,245,200,254,63,18,37,255,107,53,232,254,50,221,211,0,162,219,7,254,2,94,43,0,182,62,182,254,160,78,200,255,135,140,170,0,235,184,228,0,175,53,138,254,80,58,77,255,152,201,2,1,63,196,34,0,5,30,184,0,171,176,154,0,121,59,206,0,38,99,39,0,172,80,77,254,0,134,151,0,186,33,241,254,94,253,223,255,44,114,252,0,108,126,57,255,201,40,13,255,39,229,27,255,39,239,23,1,151,121,51,255,153,150,248,0,10,234,174,255,118,246,4,254,200,245,38,0,69,161,242,1,16,178,150,0,113,56,130,0,171,31,105,0,26,88,108,255,49,42,106,0,251,169,66,0,69,93,149,0,20,57,254,0,164,25,111,0,90,188,90,255,204,4,197,0,40,213,50,1,212,96,132,255,88,138,180,254,228,146,124,255,184,246,247,0,65,117,86,255,253,102,210,254,254,121,36,0,137,115,3,255,60,24,216,0,134,18,29,0,59,226,97,0,176,142,71,0,7,209,161,0,189,84,51,254,155,250,72,0,213,84,235,255,45,222,224,0,238,148,143,255,170,42,53,255,78,167,117,0,186,0,40,255,125,177,103,255,69,225,66,0,227,7,88,1,75,172,6,0,169,45,227,1,16,36,70,255,50,2,9,255,139,193,22,0,143,183,231,254,218,69,50,0,236,56,161,1,213,131,42,0,138,145,44,254,136,229,40,255,49,63,35,255,61,145,245,255,101,192,2,254,232,167,113,0,152,104,38,1,121,185,218,0,121,139,211,254,119,240,35,0,65,189,217,254,187,179,162,255,160,187,230,0,62,248,14,255,60,78,97,0,255,247,163,255,225,59,91,255,107,71,58,255,241,47,33,1,50,117,236,0,219,177,63,254,244,90,179,0,35,194,215,255,189,67,50,255,23,135,129,0,104,189,37,255,185,57,194,0,35,62,231,255,220,248,108,0,12,231,178,0,143,80,91,1,131,93,101,255,144,39,2,1,255,250,178,0,5,17,236,254,139,32,46,0,204,188,38,254,245,115,52,255,191,113,73,254,191,108,69,255,22,69,245,1,23,203,178,0,170,99,170,0,65,248,111,0,37,108,153,255,64,37,69,0,0,88,62,254,89,148,144,255,191,68,224,1,241,39,53,0,41,203,237,255,145,126,194,255,221,42,253,255,25,99,151,0,97,253,223,1,74,115,49,255,6,175,72,255,59,176,203,0,124,183,249,1,228,228,99,0,129,12,207,254,168,192,195,255,204,176,16,254,152,234,171,0,77,37,85,255,33,120,135,255,142,194,227,1,31,214,58,0,213,187,125,255,232,46,60,255,190,116,42,254,151,178,19,255,51,62,237,254,204,236,193,0,194,232,60,0,172,34,157,255,189,16,184,254,103,3,95,255,141,233,36,254,41,25,11,255,21,195,166,0,118,245,45,0,67,213,149,255,159,12,18,255,187,164,227,1,160,25,5,0,12,78,195,1,43,197,225,0,48,142,41,254,196,155,60,255,223,199,18,1,145,136,156,0,252,117,169,254,145,226,238,0,239,23,107,0,109,181,188,255,230,112,49,254,73,170,237,255,231,183,227,255,80,220,20,0,194,107,127,1,127,205,101,0,46,52,197,1,210,171,36,255,88,3,90,255,56,151,141,0,96,187,255,255,42,78,200,0,254,70,70,1,244,125,168,0,204,68,138,1,124,215,70,0,102,66,200,254,17,52,228,0,117,220,143,254,203,248,123,0,56,18,174,255,186,151,164,255,51,232,208,1,160,228,43,255,249,29,25,1,68,190,63,0,8,201,188,243,103,230,9,106,59,167,202,132,133,174,103,187,43,248,148,254,114,243,110,60,241,54,29,95,58,245,79,165,209,130,230,173,127,82,14,81,31,108,62,43,140,104,5,155,107,189,65,251,171,217,131,31,121,33,126,19,25,205,224,91,34,174,40,215,152,47,138,66,205,101,239,35,145,68,55,113,47,59,77,236,207,251,192,181,188,219,137,129,165,219,181,233,56,181,72,243,91,194,86,57,25,208,5,182,241,17,241,89,155,79,25,175,164,130,63,146,24,129,109,218,213,94,28,171,66,2,3,163,152,170,7,216,190,111,112,69,1,91,131,18,140,178,228,78,190,133,49,36,226,180,255,213,195,125,12,85,111,137,123,242,116,93,190,114,177,150,22,59,254,177,222,128,53,18,199,37,167,6,220,155,148,38,105,207,116,241,155,193,210,74,241,158,193,105,155,228,227,37,79,56,134,71,190,239,181,213,140,139,198,157,193,15,101,156,172,119,204,161,12,36,117,2,43,89,111,44,233,45,131,228,166,110,170,132,116,74,212,251,65,189,220,169,176,92,181,83,17,131,218,136,249,118,171,223,102,238,82,81,62,152,16,50,180,45,109,198,49,168,63,33,251,152,200,39,3,176,228,14,239,190,199,127,89,191,194,143,168,61,243,11,224,198,37,167,10,147,71,145,167,213,111,130,3,224,81,99,202,6,112,110,14,10,103,41,41,20,252,47,210,70,133,10,183,39,38,201,38,92,56,33,27,46,237,42,196,90,252,109,44,77,223,179,149,157,19,13,56,83,222,99,175,139,84,115,10,101,168,178,119,60,187,10,106,118,230,174,237,71,46,201,194,129,59,53,130,20,133,44,114,146,100,3,241,76,161,232,191,162,1,48,66,188,75,102,26,168,145,151,248,208,112,139,75,194,48,190,84,6,163,81,108,199,24,82,239,214,25,232,146,209,16,169,101,85,36,6,153,214,42,32,113,87,133,53,14,244,184,209,187,50,112,160,106,16,200,208,210,184,22,193,164,25,83,171,65,81,8,108,55,30,153,235,142,223,76,119,72,39,168,72,155,225,181,188,176,52,99,90,201,197,179,12,28,57,203,138,65,227,74,170,216,78,115,227,99,119,79,202,156,91,163,184,178,214,243,111,46,104,252,178,239,93,238,130,143,116,96,47,23,67,111,99,165,120,114,171,240,161,20,120,200,132,236,57,100,26,8,2,199,140,40,30,99,35,250,255,190,144,233,189,130,222,235,108,80,164,21,121,198,178,247,163,249,190,43,83,114,227,242,120,113,198,156,97,38,234,206,62,39,202,7,194,192,33,199,184,134,209,30,235,224,205,214,125,218,234,120,209,110,238,127,79,125,245,186,111,23,114,170,103,240,6,166,152,200,162,197,125,99,10,174,13,249,190,4,152,63,17,27,71,28,19,53,11,113,27,132,125,4,35,245,119,219,40,147,36,199,64,123,171,202,50,188,190,201,21,10,190,158,60,76,13,16,156,196,103,29,67,182,66,62,203,190,212,197,76,42,126,101,252,156,41,127,89,236,250,214,58,171,111,203,95,23,88,71,74,140,25,68,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+30720); + + + + +var tempDoublePtr = Runtime.alignMemory(allocate(12, "i8", ALLOC_STATIC), 8); + +assert(tempDoublePtr % 8 == 0); + +function copyTempFloat(ptr) { // functions, because inlining this code increases code size too much + + HEAP8[tempDoublePtr] = HEAP8[ptr]; + + HEAP8[tempDoublePtr+1] = HEAP8[ptr+1]; + + HEAP8[tempDoublePtr+2] = HEAP8[ptr+2]; + + HEAP8[tempDoublePtr+3] = HEAP8[ptr+3]; + +} + +function copyTempDouble(ptr) { + + HEAP8[tempDoublePtr] = HEAP8[ptr]; + + HEAP8[tempDoublePtr+1] = HEAP8[ptr+1]; + + HEAP8[tempDoublePtr+2] = HEAP8[ptr+2]; + + HEAP8[tempDoublePtr+3] = HEAP8[ptr+3]; + + HEAP8[tempDoublePtr+4] = HEAP8[ptr+4]; + + HEAP8[tempDoublePtr+5] = HEAP8[ptr+5]; + + HEAP8[tempDoublePtr+6] = HEAP8[ptr+6]; + + HEAP8[tempDoublePtr+7] = HEAP8[ptr+7]; + +} + + + + Module["_bitshift64Ashr"] = _bitshift64Ashr; + + + Module["_i64Subtract"] = _i64Subtract; + + + Module["_i64Add"] = _i64Add; + + + Module["_memset"] = _memset; + + + Module["_bitshift64Lshr"] = _bitshift64Lshr; + + + Module["_bitshift64Shl"] = _bitshift64Shl; + + function _abort() { + Module['abort'](); + } + + + Module["_strlen"] = _strlen; + + + function _emscripten_memcpy_big(dest, src, num) { + HEAPU8.set(HEAPU8.subarray(src, src+num), dest); + return dest; + } + Module["_memcpy"] = _memcpy; + + + + var ___errno_state=0;function ___setErrNo(value) { + // For convenient setting and returning of errno. + HEAP32[((___errno_state)>>2)]=value; + return value; + } + + var ERRNO_CODES={EPERM:1,ENOENT:2,ESRCH:3,EINTR:4,EIO:5,ENXIO:6,E2BIG:7,ENOEXEC:8,EBADF:9,ECHILD:10,EAGAIN:11,EWOULDBLOCK:11,ENOMEM:12,EACCES:13,EFAULT:14,ENOTBLK:15,EBUSY:16,EEXIST:17,EXDEV:18,ENODEV:19,ENOTDIR:20,EISDIR:21,EINVAL:22,ENFILE:23,EMFILE:24,ENOTTY:25,ETXTBSY:26,EFBIG:27,ENOSPC:28,ESPIPE:29,EROFS:30,EMLINK:31,EPIPE:32,EDOM:33,ERANGE:34,ENOMSG:42,EIDRM:43,ECHRNG:44,EL2NSYNC:45,EL3HLT:46,EL3RST:47,ELNRNG:48,EUNATCH:49,ENOCSI:50,EL2HLT:51,EDEADLK:35,ENOLCK:37,EBADE:52,EBADR:53,EXFULL:54,ENOANO:55,EBADRQC:56,EBADSLT:57,EDEADLOCK:35,EBFONT:59,ENOSTR:60,ENODATA:61,ETIME:62,ENOSR:63,ENONET:64,ENOPKG:65,EREMOTE:66,ENOLINK:67,EADV:68,ESRMNT:69,ECOMM:70,EPROTO:71,EMULTIHOP:72,EDOTDOT:73,EBADMSG:74,ENOTUNIQ:76,EBADFD:77,EREMCHG:78,ELIBACC:79,ELIBBAD:80,ELIBSCN:81,ELIBMAX:82,ELIBEXEC:83,ENOSYS:38,ENOTEMPTY:39,ENAMETOOLONG:36,ELOOP:40,EOPNOTSUPP:95,EPFNOSUPPORT:96,ECONNRESET:104,ENOBUFS:105,EAFNOSUPPORT:97,EPROTOTYPE:91,ENOTSOCK:88,ENOPROTOOPT:92,ESHUTDOWN:108,ECONNREFUSED:111,EADDRINUSE:98,ECONNABORTED:103,ENETUNREACH:101,ENETDOWN:100,ETIMEDOUT:110,EHOSTDOWN:112,EHOSTUNREACH:113,EINPROGRESS:115,EALREADY:114,EDESTADDRREQ:89,EMSGSIZE:90,EPROTONOSUPPORT:93,ESOCKTNOSUPPORT:94,EADDRNOTAVAIL:99,ENETRESET:102,EISCONN:106,ENOTCONN:107,ETOOMANYREFS:109,EUSERS:87,EDQUOT:122,ESTALE:116,ENOTSUP:95,ENOMEDIUM:123,EILSEQ:84,EOVERFLOW:75,ECANCELED:125,ENOTRECOVERABLE:131,EOWNERDEAD:130,ESTRPIPE:86};function _sysconf(name) { + // long sysconf(int name); + // http://pubs.opengroup.org/onlinepubs/009695399/functions/sysconf.html + switch(name) { + case 30: return PAGE_SIZE; + case 132: + case 133: + case 12: + case 137: + case 138: + case 15: + case 235: + case 16: + case 17: + case 18: + case 19: + case 20: + case 149: + case 13: + case 10: + case 236: + case 153: + case 9: + case 21: + case 22: + case 159: + case 154: + case 14: + case 77: + case 78: + case 139: + case 80: + case 81: + case 79: + case 82: + case 68: + case 67: + case 164: + case 11: + case 29: + case 47: + case 48: + case 95: + case 52: + case 51: + case 46: + return 200809; + case 27: + case 246: + case 127: + case 128: + case 23: + case 24: + case 160: + case 161: + case 181: + case 182: + case 242: + case 183: + case 184: + case 243: + case 244: + case 245: + case 165: + case 178: + case 179: + case 49: + case 50: + case 168: + case 169: + case 175: + case 170: + case 171: + case 172: + case 97: + case 76: + case 32: + case 173: + case 35: + return -1; + case 176: + case 177: + case 7: + case 155: + case 8: + case 157: + case 125: + case 126: + case 92: + case 93: + case 129: + case 130: + case 131: + case 94: + case 91: + return 1; + case 74: + case 60: + case 69: + case 70: + case 4: + return 1024; + case 31: + case 42: + case 72: + return 32; + case 87: + case 26: + case 33: + return 2147483647; + case 34: + case 1: + return 47839; + case 38: + case 36: + return 99; + case 43: + case 37: + return 2048; + case 0: return 2097152; + case 3: return 65536; + case 28: return 32768; + case 44: return 32767; + case 75: return 16384; + case 39: return 1000; + case 89: return 700; + case 71: return 256; + case 40: return 255; + case 2: return 100; + case 180: return 64; + case 25: return 20; + case 5: return 16; + case 6: return 6; + case 73: return 4; + case 84: { + if (typeof navigator === 'object') return navigator['hardwareConcurrency'] || 1; + return 1; + } + } + ___setErrNo(ERRNO_CODES.EINVAL); + return -1; + } + + function _sbrk(bytes) { + // Implement a Linux-like 'memory area' for our 'process'. + // Changes the size of the memory area by |bytes|; returns the + // address of the previous top ('break') of the memory area + // We control the "dynamic" memory - DYNAMIC_BASE to DYNAMICTOP + var self = _sbrk; + if (!self.called) { + DYNAMICTOP = alignMemoryPage(DYNAMICTOP); // make sure we start out aligned + self.called = true; + assert(Runtime.dynamicAlloc); + self.alloc = Runtime.dynamicAlloc; + Runtime.dynamicAlloc = function() { abort('cannot dynamically allocate, sbrk now has control') }; + } + var ret = DYNAMICTOP; + if (bytes != 0) self.alloc(bytes); + return ret; // Previous break location. + } + + + Module["_memmove"] = _memmove; + + function ___errno_location() { + return ___errno_state; + } + + + + + var ERRNO_MESSAGES={0:"Success",1:"Not super-user",2:"No such file or directory",3:"No such process",4:"Interrupted system call",5:"I/O error",6:"No such device or address",7:"Arg list too long",8:"Exec format error",9:"Bad file number",10:"No children",11:"No more processes",12:"Not enough core",13:"Permission denied",14:"Bad address",15:"Block device required",16:"Mount device busy",17:"File exists",18:"Cross-device link",19:"No such device",20:"Not a directory",21:"Is a directory",22:"Invalid argument",23:"Too many open files in system",24:"Too many open files",25:"Not a typewriter",26:"Text file busy",27:"File too large",28:"No space left on device",29:"Illegal seek",30:"Read only file system",31:"Too many links",32:"Broken pipe",33:"Math arg out of domain of func",34:"Math result not representable",35:"File locking deadlock error",36:"File or path name too long",37:"No record locks available",38:"Function not implemented",39:"Directory not empty",40:"Too many symbolic links",42:"No message of desired type",43:"Identifier removed",44:"Channel number out of range",45:"Level 2 not synchronized",46:"Level 3 halted",47:"Level 3 reset",48:"Link number out of range",49:"Protocol driver not attached",50:"No CSI structure available",51:"Level 2 halted",52:"Invalid exchange",53:"Invalid request descriptor",54:"Exchange full",55:"No anode",56:"Invalid request code",57:"Invalid slot",59:"Bad font file fmt",60:"Device not a stream",61:"No data (for no delay io)",62:"Timer expired",63:"Out of streams resources",64:"Machine is not on the network",65:"Package not installed",66:"The object is remote",67:"The link has been severed",68:"Advertise error",69:"Srmount error",70:"Communication error on send",71:"Protocol error",72:"Multihop attempted",73:"Cross mount point (not really error)",74:"Trying to read unreadable message",75:"Value too large for defined data type",76:"Given log. name not unique",77:"f.d. invalid for this operation",78:"Remote address changed",79:"Can access a needed shared lib",80:"Accessing a corrupted shared lib",81:".lib section in a.out corrupted",82:"Attempting to link in too many libs",83:"Attempting to exec a shared library",84:"Illegal byte sequence",86:"Streams pipe error",87:"Too many users",88:"Socket operation on non-socket",89:"Destination address required",90:"Message too long",91:"Protocol wrong type for socket",92:"Protocol not available",93:"Unknown protocol",94:"Socket type not supported",95:"Not supported",96:"Protocol family not supported",97:"Address family not supported by protocol family",98:"Address already in use",99:"Address not available",100:"Network interface is not configured",101:"Network is unreachable",102:"Connection reset by network",103:"Connection aborted",104:"Connection reset by peer",105:"No buffer space available",106:"Socket is already connected",107:"Socket is not connected",108:"Can't send after socket shutdown",109:"Too many references",110:"Connection timed out",111:"Connection refused",112:"Host is down",113:"Host is unreachable",114:"Socket already connected",115:"Connection already in progress",116:"Stale file handle",122:"Quota exceeded",123:"No medium (in tape drive)",125:"Operation canceled",130:"Previous owner died",131:"State not recoverable"}; + + var TTY={ttys:[],init:function () { + // https://github.com/kripken/emscripten/pull/1555 + // if (ENVIRONMENT_IS_NODE) { + // // currently, FS.init does not distinguish if process.stdin is a file or TTY + // // device, it always assumes it's a TTY device. because of this, we're forcing + // // process.stdin to UTF8 encoding to at least make stdin reading compatible + // // with text files until FS.init can be refactored. + // process['stdin']['setEncoding']('utf8'); + // } + },shutdown:function () { + // https://github.com/kripken/emscripten/pull/1555 + // if (ENVIRONMENT_IS_NODE) { + // // inolen: any idea as to why node -e 'process.stdin.read()' wouldn't exit immediately (with process.stdin being a tty)? + // // isaacs: because now it's reading from the stream, you've expressed interest in it, so that read() kicks off a _read() which creates a ReadReq operation + // // inolen: I thought read() in that case was a synchronous operation that just grabbed some amount of buffered data if it exists? + // // isaacs: it is. but it also triggers a _read() call, which calls readStart() on the handle + // // isaacs: do process.stdin.pause() and i'd think it'd probably close the pending call + // process['stdin']['pause'](); + // } + },register:function (dev, ops) { + TTY.ttys[dev] = { input: [], output: [], ops: ops }; + FS.registerDevice(dev, TTY.stream_ops); + },stream_ops:{open:function (stream) { + var tty = TTY.ttys[stream.node.rdev]; + if (!tty) { + throw new FS.ErrnoError(ERRNO_CODES.ENODEV); + } + stream.tty = tty; + stream.seekable = false; + },close:function (stream) { + // flush any pending line data + stream.tty.ops.flush(stream.tty); + },flush:function (stream) { + stream.tty.ops.flush(stream.tty); + },read:function (stream, buffer, offset, length, pos /* ignored */) { + if (!stream.tty || !stream.tty.ops.get_char) { + throw new FS.ErrnoError(ERRNO_CODES.ENXIO); + } + var bytesRead = 0; + for (var i = 0; i < length; i++) { + var result; + try { + result = stream.tty.ops.get_char(stream.tty); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + if (result === undefined && bytesRead === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EAGAIN); + } + if (result === null || result === undefined) break; + bytesRead++; + buffer[offset+i] = result; + } + if (bytesRead) { + stream.node.timestamp = Date.now(); + } + return bytesRead; + },write:function (stream, buffer, offset, length, pos) { + if (!stream.tty || !stream.tty.ops.put_char) { + throw new FS.ErrnoError(ERRNO_CODES.ENXIO); + } + for (var i = 0; i < length; i++) { + try { + stream.tty.ops.put_char(stream.tty, buffer[offset+i]); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + } + if (length) { + stream.node.timestamp = Date.now(); + } + return i; + }},default_tty_ops:{get_char:function (tty) { + if (!tty.input.length) { + var result = null; + if (ENVIRONMENT_IS_NODE) { + result = process['stdin']['read'](); + if (!result) { + if (process['stdin']['_readableState'] && process['stdin']['_readableState']['ended']) { + return null; // EOF + } + return undefined; // no data available + } + } else if (typeof window != 'undefined' && + typeof window.prompt == 'function') { + // Browser. + result = window.prompt('Input: '); // returns null on cancel + if (result !== null) { + result += '\n'; + } + } else if (typeof readline == 'function') { + // Command line. + result = readline(); + if (result !== null) { + result += '\n'; + } + } + if (!result) { + return null; + } + tty.input = intArrayFromString(result, true); + } + return tty.input.shift(); + },flush:function (tty) { + if (tty.output && tty.output.length > 0) { + Module['print'](tty.output.join('')); + tty.output = []; + } + },put_char:function (tty, val) { + if (val === null || val === 10) { + Module['print'](tty.output.join('')); + tty.output = []; + } else { + tty.output.push(TTY.utf8.processCChar(val)); + } + }},default_tty1_ops:{put_char:function (tty, val) { + if (val === null || val === 10) { + Module['printErr'](tty.output.join('')); + tty.output = []; + } else { + tty.output.push(TTY.utf8.processCChar(val)); + } + },flush:function (tty) { + if (tty.output && tty.output.length > 0) { + Module['printErr'](tty.output.join('')); + tty.output = []; + } + }}}; + + var MEMFS={ops_table:null,mount:function (mount) { + return MEMFS.createNode(null, '/', 16384 | 511 /* 0777 */, 0); + },createNode:function (parent, name, mode, dev) { + if (FS.isBlkdev(mode) || FS.isFIFO(mode)) { + // no supported + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + if (!MEMFS.ops_table) { + MEMFS.ops_table = { + dir: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr, + lookup: MEMFS.node_ops.lookup, + mknod: MEMFS.node_ops.mknod, + rename: MEMFS.node_ops.rename, + unlink: MEMFS.node_ops.unlink, + rmdir: MEMFS.node_ops.rmdir, + readdir: MEMFS.node_ops.readdir, + symlink: MEMFS.node_ops.symlink + }, + stream: { + llseek: MEMFS.stream_ops.llseek + } + }, + file: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr + }, + stream: { + llseek: MEMFS.stream_ops.llseek, + read: MEMFS.stream_ops.read, + write: MEMFS.stream_ops.write, + allocate: MEMFS.stream_ops.allocate, + mmap: MEMFS.stream_ops.mmap + } + }, + link: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr, + readlink: MEMFS.node_ops.readlink + }, + stream: {} + }, + chrdev: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr + }, + stream: FS.chrdev_stream_ops + } + }; + } + var node = FS.createNode(parent, name, mode, dev); + if (FS.isDir(node.mode)) { + node.node_ops = MEMFS.ops_table.dir.node; + node.stream_ops = MEMFS.ops_table.dir.stream; + node.contents = {}; + } else if (FS.isFile(node.mode)) { + node.node_ops = MEMFS.ops_table.file.node; + node.stream_ops = MEMFS.ops_table.file.stream; + node.usedBytes = 0; // The actual number of bytes used in the typed array, as opposed to contents.buffer.byteLength which gives the whole capacity. + // When the byte data of the file is populated, this will point to either a typed array, or a normal JS array. Typed arrays are preferred + // for performance, and used by default. However, typed arrays are not resizable like normal JS arrays are, so there is a small disk size + // penalty involved for appending file writes that continuously grow a file similar to std::vector capacity vs used -scheme. + node.contents = null; + } else if (FS.isLink(node.mode)) { + node.node_ops = MEMFS.ops_table.link.node; + node.stream_ops = MEMFS.ops_table.link.stream; + } else if (FS.isChrdev(node.mode)) { + node.node_ops = MEMFS.ops_table.chrdev.node; + node.stream_ops = MEMFS.ops_table.chrdev.stream; + } + node.timestamp = Date.now(); + // add the new node to the parent + if (parent) { + parent.contents[name] = node; + } + return node; + },getFileDataAsRegularArray:function (node) { + if (node.contents && node.contents.subarray) { + var arr = []; + for (var i = 0; i < node.usedBytes; ++i) arr.push(node.contents[i]); + return arr; // Returns a copy of the original data. + } + return node.contents; // No-op, the file contents are already in a JS array. Return as-is. + },getFileDataAsTypedArray:function (node) { + if (!node.contents) return new Uint8Array; + if (node.contents.subarray) return node.contents.subarray(0, node.usedBytes); // Make sure to not return excess unused bytes. + return new Uint8Array(node.contents); + },expandFileStorage:function (node, newCapacity) { + + // If we are asked to expand the size of a file that already exists, revert to using a standard JS array to store the file + // instead of a typed array. This makes resizing the array more flexible because we can just .push() elements at the back to + // increase the size. + if (node.contents && node.contents.subarray && newCapacity > node.contents.length) { + node.contents = MEMFS.getFileDataAsRegularArray(node); + node.usedBytes = node.contents.length; // We might be writing to a lazy-loaded file which had overridden this property, so force-reset it. + } + + if (!node.contents || node.contents.subarray) { // Keep using a typed array if creating a new storage, or if old one was a typed array as well. + var prevCapacity = node.contents ? node.contents.buffer.byteLength : 0; + if (prevCapacity >= newCapacity) return; // No need to expand, the storage was already large enough. + // Don't expand strictly to the given requested limit if it's only a very small increase, but instead geometrically grow capacity. + // For small filesizes (<1MB), perform size*2 geometric increase, but for large sizes, do a much more conservative size*1.125 increase to + // avoid overshooting the allocation cap by a very large margin. + var CAPACITY_DOUBLING_MAX = 1024 * 1024; + newCapacity = Math.max(newCapacity, (prevCapacity * (prevCapacity < CAPACITY_DOUBLING_MAX ? 2.0 : 1.125)) | 0); + if (prevCapacity != 0) newCapacity = Math.max(newCapacity, 256); // At minimum allocate 256b for each file when expanding. + var oldContents = node.contents; + node.contents = new Uint8Array(newCapacity); // Allocate new storage. + if (node.usedBytes > 0) node.contents.set(oldContents.subarray(0, node.usedBytes), 0); // Copy old data over to the new storage. + return; + } + // Not using a typed array to back the file storage. Use a standard JS array instead. + if (!node.contents && newCapacity > 0) node.contents = []; + while (node.contents.length < newCapacity) node.contents.push(0); + },resizeFileStorage:function (node, newSize) { + if (node.usedBytes == newSize) return; + if (newSize == 0) { + node.contents = null; // Fully decommit when requesting a resize to zero. + node.usedBytes = 0; + return; + } + + if (!node.contents || node.contents.subarray) { // Resize a typed array if that is being used as the backing store. + var oldContents = node.contents; + node.contents = new Uint8Array(new ArrayBuffer(newSize)); // Allocate new storage. + if (oldContents) { + node.contents.set(oldContents.subarray(0, Math.min(newSize, node.usedBytes))); // Copy old data over to the new storage. + } + node.usedBytes = newSize; + return; + } + // Backing with a JS array. + if (!node.contents) node.contents = []; + if (node.contents.length > newSize) node.contents.length = newSize; + else while (node.contents.length < newSize) node.contents.push(0); + node.usedBytes = newSize; + },node_ops:{getattr:function (node) { + var attr = {}; + // device numbers reuse inode numbers. + attr.dev = FS.isChrdev(node.mode) ? node.id : 1; + attr.ino = node.id; + attr.mode = node.mode; + attr.nlink = 1; + attr.uid = 0; + attr.gid = 0; + attr.rdev = node.rdev; + if (FS.isDir(node.mode)) { + attr.size = 4096; + } else if (FS.isFile(node.mode)) { + attr.size = node.usedBytes; + } else if (FS.isLink(node.mode)) { + attr.size = node.link.length; + } else { + attr.size = 0; + } + attr.atime = new Date(node.timestamp); + attr.mtime = new Date(node.timestamp); + attr.ctime = new Date(node.timestamp); + // NOTE: In our implementation, st_blocks = Math.ceil(st_size/st_blksize), + // but this is not required by the standard. + attr.blksize = 4096; + attr.blocks = Math.ceil(attr.size / attr.blksize); + return attr; + },setattr:function (node, attr) { + if (attr.mode !== undefined) { + node.mode = attr.mode; + } + if (attr.timestamp !== undefined) { + node.timestamp = attr.timestamp; + } + if (attr.size !== undefined) { + MEMFS.resizeFileStorage(node, attr.size); + } + },lookup:function (parent, name) { + throw FS.genericErrors[ERRNO_CODES.ENOENT]; + },mknod:function (parent, name, mode, dev) { + return MEMFS.createNode(parent, name, mode, dev); + },rename:function (old_node, new_dir, new_name) { + // if we're overwriting a directory at new_name, make sure it's empty. + if (FS.isDir(old_node.mode)) { + var new_node; + try { + new_node = FS.lookupNode(new_dir, new_name); + } catch (e) { + } + if (new_node) { + for (var i in new_node.contents) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); + } + } + } + // do the internal rewiring + delete old_node.parent.contents[old_node.name]; + old_node.name = new_name; + new_dir.contents[new_name] = old_node; + old_node.parent = new_dir; + },unlink:function (parent, name) { + delete parent.contents[name]; + },rmdir:function (parent, name) { + var node = FS.lookupNode(parent, name); + for (var i in node.contents) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); + } + delete parent.contents[name]; + },readdir:function (node) { + var entries = ['.', '..'] + for (var key in node.contents) { + if (!node.contents.hasOwnProperty(key)) { + continue; + } + entries.push(key); + } + return entries; + },symlink:function (parent, newname, oldpath) { + var node = MEMFS.createNode(parent, newname, 511 /* 0777 */ | 40960, 0); + node.link = oldpath; + return node; + },readlink:function (node) { + if (!FS.isLink(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + return node.link; + }},stream_ops:{read:function (stream, buffer, offset, length, position) { + var contents = stream.node.contents; + if (position >= stream.node.usedBytes) return 0; + var size = Math.min(stream.node.usedBytes - position, length); + assert(size >= 0); + if (size > 8 && contents.subarray) { // non-trivial, and typed array + buffer.set(contents.subarray(position, position + size), offset); + } else + { + for (var i = 0; i < size; i++) buffer[offset + i] = contents[position + i]; + } + return size; + },write:function (stream, buffer, offset, length, position, canOwn) { + if (!length) return 0; + var node = stream.node; + node.timestamp = Date.now(); + + if (buffer.subarray && (!node.contents || node.contents.subarray)) { // This write is from a typed array to a typed array? + if (canOwn) { // Can we just reuse the buffer we are given? + node.contents = buffer.subarray(offset, offset + length); + node.usedBytes = length; + return length; + } else if (node.usedBytes === 0 && position === 0) { // If this is a simple first write to an empty file, do a fast set since we don't need to care about old data. + node.contents = new Uint8Array(buffer.subarray(offset, offset + length)); + node.usedBytes = length; + return length; + } else if (position + length <= node.usedBytes) { // Writing to an already allocated and used subrange of the file? + node.contents.set(buffer.subarray(offset, offset + length), position); + return length; + } + } + // Appending to an existing file and we need to reallocate, or source data did not come as a typed array. + MEMFS.expandFileStorage(node, position+length); + if (node.contents.subarray && buffer.subarray) node.contents.set(buffer.subarray(offset, offset + length), position); // Use typed array write if available. + else + for (var i = 0; i < length; i++) { + node.contents[position + i] = buffer[offset + i]; // Or fall back to manual write if not. + } + node.usedBytes = Math.max(node.usedBytes, position+length); + return length; + },llseek:function (stream, offset, whence) { + var position = offset; + if (whence === 1) { // SEEK_CUR. + position += stream.position; + } else if (whence === 2) { // SEEK_END. + if (FS.isFile(stream.node.mode)) { + position += stream.node.usedBytes; + } + } + if (position < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + return position; + },allocate:function (stream, offset, length) { + MEMFS.expandFileStorage(stream.node, offset + length); + stream.node.usedBytes = Math.max(stream.node.usedBytes, offset + length); + },mmap:function (stream, buffer, offset, length, position, prot, flags) { + if (!FS.isFile(stream.node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.ENODEV); + } + var ptr; + var allocated; + var contents = stream.node.contents; + // Only make a new copy when MAP_PRIVATE is specified. + if ( !(flags & 2) && + (contents.buffer === buffer || contents.buffer === buffer.buffer) ) { + // We can't emulate MAP_SHARED when the file is not backed by the buffer + // we're mapping to (e.g. the HEAP buffer). + allocated = false; + ptr = contents.byteOffset; + } else { + // Try to avoid unnecessary slices. + if (position > 0 || position + length < stream.node.usedBytes) { + if (contents.subarray) { + contents = contents.subarray(position, position + length); + } else { + contents = Array.prototype.slice.call(contents, position, position + length); + } + } + allocated = true; + ptr = _malloc(length); + if (!ptr) { + throw new FS.ErrnoError(ERRNO_CODES.ENOMEM); + } + buffer.set(contents, ptr); + } + return { ptr: ptr, allocated: allocated }; + }}}; + + var IDBFS={dbs:{},indexedDB:function () { + if (typeof indexedDB !== 'undefined') return indexedDB; + var ret = null; + if (typeof window === 'object') ret = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; + assert(ret, 'IDBFS used, but indexedDB not supported'); + return ret; + },DB_VERSION:21,DB_STORE_NAME:"FILE_DATA",mount:function (mount) { + // reuse all of the core MEMFS functionality + return MEMFS.mount.apply(null, arguments); + },syncfs:function (mount, populate, callback) { + IDBFS.getLocalSet(mount, function(err, local) { + if (err) return callback(err); + + IDBFS.getRemoteSet(mount, function(err, remote) { + if (err) return callback(err); + + var src = populate ? remote : local; + var dst = populate ? local : remote; + + IDBFS.reconcile(src, dst, callback); + }); + }); + },getDB:function (name, callback) { + // check the cache first + var db = IDBFS.dbs[name]; + if (db) { + return callback(null, db); + } + + var req; + try { + req = IDBFS.indexedDB().open(name, IDBFS.DB_VERSION); + } catch (e) { + return callback(e); + } + req.onupgradeneeded = function(e) { + var db = e.target.result; + var transaction = e.target.transaction; + + var fileStore; + + if (db.objectStoreNames.contains(IDBFS.DB_STORE_NAME)) { + fileStore = transaction.objectStore(IDBFS.DB_STORE_NAME); + } else { + fileStore = db.createObjectStore(IDBFS.DB_STORE_NAME); + } + + fileStore.createIndex('timestamp', 'timestamp', { unique: false }); + }; + req.onsuccess = function() { + db = req.result; + + // add to the cache + IDBFS.dbs[name] = db; + callback(null, db); + }; + req.onerror = function() { + callback(this.error); + }; + },getLocalSet:function (mount, callback) { + var entries = {}; + + function isRealDir(p) { + return p !== '.' && p !== '..'; + }; + function toAbsolute(root) { + return function(p) { + return PATH.join2(root, p); + } + }; + + var check = FS.readdir(mount.mountpoint).filter(isRealDir).map(toAbsolute(mount.mountpoint)); + + while (check.length) { + var path = check.pop(); + var stat; + + try { + stat = FS.stat(path); + } catch (e) { + return callback(e); + } + + if (FS.isDir(stat.mode)) { + check.push.apply(check, FS.readdir(path).filter(isRealDir).map(toAbsolute(path))); + } + + entries[path] = { timestamp: stat.mtime }; + } + + return callback(null, { type: 'local', entries: entries }); + },getRemoteSet:function (mount, callback) { + var entries = {}; + + IDBFS.getDB(mount.mountpoint, function(err, db) { + if (err) return callback(err); + + var transaction = db.transaction([IDBFS.DB_STORE_NAME], 'readonly'); + transaction.onerror = function() { callback(this.error); }; + + var store = transaction.objectStore(IDBFS.DB_STORE_NAME); + var index = store.index('timestamp'); + + index.openKeyCursor().onsuccess = function(event) { + var cursor = event.target.result; + + if (!cursor) { + return callback(null, { type: 'remote', db: db, entries: entries }); + } + + entries[cursor.primaryKey] = { timestamp: cursor.key }; + + cursor.continue(); + }; + }); + },loadLocalEntry:function (path, callback) { + var stat, node; + + try { + var lookup = FS.lookupPath(path); + node = lookup.node; + stat = FS.stat(path); + } catch (e) { + return callback(e); + } + + if (FS.isDir(stat.mode)) { + return callback(null, { timestamp: stat.mtime, mode: stat.mode }); + } else if (FS.isFile(stat.mode)) { + // Performance consideration: storing a normal JavaScript array to a IndexedDB is much slower than storing a typed array. + // Therefore always convert the file contents to a typed array first before writing the data to IndexedDB. + node.contents = MEMFS.getFileDataAsTypedArray(node); + return callback(null, { timestamp: stat.mtime, mode: stat.mode, contents: node.contents }); + } else { + return callback(new Error('node type not supported')); + } + },storeLocalEntry:function (path, entry, callback) { + try { + if (FS.isDir(entry.mode)) { + FS.mkdir(path, entry.mode); + } else if (FS.isFile(entry.mode)) { + FS.writeFile(path, entry.contents, { encoding: 'binary', canOwn: true }); + } else { + return callback(new Error('node type not supported')); + } + + FS.chmod(path, entry.mode); + FS.utime(path, entry.timestamp, entry.timestamp); + } catch (e) { + return callback(e); + } + + callback(null); + },removeLocalEntry:function (path, callback) { + try { + var lookup = FS.lookupPath(path); + var stat = FS.stat(path); + + if (FS.isDir(stat.mode)) { + FS.rmdir(path); + } else if (FS.isFile(stat.mode)) { + FS.unlink(path); + } + } catch (e) { + return callback(e); + } + + callback(null); + },loadRemoteEntry:function (store, path, callback) { + var req = store.get(path); + req.onsuccess = function(event) { callback(null, event.target.result); }; + req.onerror = function() { callback(this.error); }; + },storeRemoteEntry:function (store, path, entry, callback) { + var req = store.put(entry, path); + req.onsuccess = function() { callback(null); }; + req.onerror = function() { callback(this.error); }; + },removeRemoteEntry:function (store, path, callback) { + var req = store.delete(path); + req.onsuccess = function() { callback(null); }; + req.onerror = function() { callback(this.error); }; + },reconcile:function (src, dst, callback) { + var total = 0; + + var create = []; + Object.keys(src.entries).forEach(function (key) { + var e = src.entries[key]; + var e2 = dst.entries[key]; + if (!e2 || e.timestamp > e2.timestamp) { + create.push(key); + total++; + } + }); + + var remove = []; + Object.keys(dst.entries).forEach(function (key) { + var e = dst.entries[key]; + var e2 = src.entries[key]; + if (!e2) { + remove.push(key); + total++; + } + }); + + if (!total) { + return callback(null); + } + + var errored = false; + var completed = 0; + var db = src.type === 'remote' ? src.db : dst.db; + var transaction = db.transaction([IDBFS.DB_STORE_NAME], 'readwrite'); + var store = transaction.objectStore(IDBFS.DB_STORE_NAME); + + function done(err) { + if (err) { + if (!done.errored) { + done.errored = true; + return callback(err); + } + return; + } + if (++completed >= total) { + return callback(null); + } + }; + + transaction.onerror = function() { done(this.error); }; + + // sort paths in ascending order so directory entries are created + // before the files inside them + create.sort().forEach(function (path) { + if (dst.type === 'local') { + IDBFS.loadRemoteEntry(store, path, function (err, entry) { + if (err) return done(err); + IDBFS.storeLocalEntry(path, entry, done); + }); + } else { + IDBFS.loadLocalEntry(path, function (err, entry) { + if (err) return done(err); + IDBFS.storeRemoteEntry(store, path, entry, done); + }); + } + }); + + // sort paths in descending order so files are deleted before their + // parent directories + remove.sort().reverse().forEach(function(path) { + if (dst.type === 'local') { + IDBFS.removeLocalEntry(path, done); + } else { + IDBFS.removeRemoteEntry(store, path, done); + } + }); + }}; + + var NODEFS={isWindows:false,staticInit:function () { + NODEFS.isWindows = !!process.platform.match(/^win/); + },mount:function (mount) { + assert(ENVIRONMENT_IS_NODE); + return NODEFS.createNode(null, '/', NODEFS.getMode(mount.opts.root), 0); + },createNode:function (parent, name, mode, dev) { + if (!FS.isDir(mode) && !FS.isFile(mode) && !FS.isLink(mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + var node = FS.createNode(parent, name, mode); + node.node_ops = NODEFS.node_ops; + node.stream_ops = NODEFS.stream_ops; + return node; + },getMode:function (path) { + var stat; + try { + stat = fs.lstatSync(path); + if (NODEFS.isWindows) { + // On Windows, directories return permission bits 'rw-rw-rw-', even though they have 'rwxrwxrwx', so + // propagate write bits to execute bits. + stat.mode = stat.mode | ((stat.mode & 146) >> 1); + } + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + return stat.mode; + },realPath:function (node) { + var parts = []; + while (node.parent !== node) { + parts.push(node.name); + node = node.parent; + } + parts.push(node.mount.opts.root); + parts.reverse(); + return PATH.join.apply(null, parts); + },flagsToPermissionStringMap:{0:"r",1:"r+",2:"r+",64:"r",65:"r+",66:"r+",129:"rx+",193:"rx+",514:"w+",577:"w",578:"w+",705:"wx",706:"wx+",1024:"a",1025:"a",1026:"a+",1089:"a",1090:"a+",1153:"ax",1154:"ax+",1217:"ax",1218:"ax+",4096:"rs",4098:"rs+"},flagsToPermissionString:function (flags) { + if (flags in NODEFS.flagsToPermissionStringMap) { + return NODEFS.flagsToPermissionStringMap[flags]; + } else { + return flags; + } + },node_ops:{getattr:function (node) { + var path = NODEFS.realPath(node); + var stat; + try { + stat = fs.lstatSync(path); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + // node.js v0.10.20 doesn't report blksize and blocks on Windows. Fake them with default blksize of 4096. + // See http://support.microsoft.com/kb/140365 + if (NODEFS.isWindows && !stat.blksize) { + stat.blksize = 4096; + } + if (NODEFS.isWindows && !stat.blocks) { + stat.blocks = (stat.size+stat.blksize-1)/stat.blksize|0; + } + return { + dev: stat.dev, + ino: stat.ino, + mode: stat.mode, + nlink: stat.nlink, + uid: stat.uid, + gid: stat.gid, + rdev: stat.rdev, + size: stat.size, + atime: stat.atime, + mtime: stat.mtime, + ctime: stat.ctime, + blksize: stat.blksize, + blocks: stat.blocks + }; + },setattr:function (node, attr) { + var path = NODEFS.realPath(node); + try { + if (attr.mode !== undefined) { + fs.chmodSync(path, attr.mode); + // update the common node structure mode as well + node.mode = attr.mode; + } + if (attr.timestamp !== undefined) { + var date = new Date(attr.timestamp); + fs.utimesSync(path, date, date); + } + if (attr.size !== undefined) { + fs.truncateSync(path, attr.size); + } + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },lookup:function (parent, name) { + var path = PATH.join2(NODEFS.realPath(parent), name); + var mode = NODEFS.getMode(path); + return NODEFS.createNode(parent, name, mode); + },mknod:function (parent, name, mode, dev) { + var node = NODEFS.createNode(parent, name, mode, dev); + // create the backing node for this in the fs root as well + var path = NODEFS.realPath(node); + try { + if (FS.isDir(node.mode)) { + fs.mkdirSync(path, node.mode); + } else { + fs.writeFileSync(path, '', { mode: node.mode }); + } + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + return node; + },rename:function (oldNode, newDir, newName) { + var oldPath = NODEFS.realPath(oldNode); + var newPath = PATH.join2(NODEFS.realPath(newDir), newName); + try { + fs.renameSync(oldPath, newPath); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },unlink:function (parent, name) { + var path = PATH.join2(NODEFS.realPath(parent), name); + try { + fs.unlinkSync(path); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },rmdir:function (parent, name) { + var path = PATH.join2(NODEFS.realPath(parent), name); + try { + fs.rmdirSync(path); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },readdir:function (node) { + var path = NODEFS.realPath(node); + try { + return fs.readdirSync(path); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },symlink:function (parent, newName, oldPath) { + var newPath = PATH.join2(NODEFS.realPath(parent), newName); + try { + fs.symlinkSync(oldPath, newPath); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },readlink:function (node) { + var path = NODEFS.realPath(node); + try { + return fs.readlinkSync(path); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + }},stream_ops:{open:function (stream) { + var path = NODEFS.realPath(stream.node); + try { + if (FS.isFile(stream.node.mode)) { + stream.nfd = fs.openSync(path, NODEFS.flagsToPermissionString(stream.flags)); + } + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },close:function (stream) { + try { + if (FS.isFile(stream.node.mode) && stream.nfd) { + fs.closeSync(stream.nfd); + } + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },read:function (stream, buffer, offset, length, position) { + if (length === 0) return 0; // node errors on 0 length reads + // FIXME this is terrible. + var nbuffer = new Buffer(length); + var res; + try { + res = fs.readSync(stream.nfd, nbuffer, 0, length, position); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + if (res > 0) { + for (var i = 0; i < res; i++) { + buffer[offset + i] = nbuffer[i]; + } + } + return res; + },write:function (stream, buffer, offset, length, position) { + // FIXME this is terrible. + var nbuffer = new Buffer(buffer.subarray(offset, offset + length)); + var res; + try { + res = fs.writeSync(stream.nfd, nbuffer, 0, length, position); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + return res; + },llseek:function (stream, offset, whence) { + var position = offset; + if (whence === 1) { // SEEK_CUR. + position += stream.position; + } else if (whence === 2) { // SEEK_END. + if (FS.isFile(stream.node.mode)) { + try { + var stat = fs.fstatSync(stream.nfd); + position += stat.size; + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + } + } + + if (position < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + + return position; + }}}; + + var _stdin=allocate(1, "i32*", ALLOC_STATIC); + + var _stdout=allocate(1, "i32*", ALLOC_STATIC); + + var _stderr=allocate(1, "i32*", ALLOC_STATIC); + + function _fflush(stream) { + // int fflush(FILE *stream); + // http://pubs.opengroup.org/onlinepubs/000095399/functions/fflush.html + + /* + // Disabled, see https://github.com/kripken/emscripten/issues/2770 + stream = FS.getStreamFromPtr(stream); + if (stream.stream_ops.flush) { + stream.stream_ops.flush(stream); + } + */ + }var FS={root:null,mounts:[],devices:[null],streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,trackingDelegate:{},tracking:{openFlags:{READ:1,WRITE:2}},ErrnoError:null,genericErrors:{},handleFSError:function (e) { + if (!(e instanceof FS.ErrnoError)) throw e + ' : ' + stackTrace(); + return ___setErrNo(e.errno); + },lookupPath:function (path, opts) { + path = PATH.resolve(FS.cwd(), path); + opts = opts || {}; + + if (!path) return { path: '', node: null }; + + var defaults = { + follow_mount: true, + recurse_count: 0 + }; + for (var key in defaults) { + if (opts[key] === undefined) { + opts[key] = defaults[key]; + } + } + + if (opts.recurse_count > 8) { // max recursive lookup of 8 + throw new FS.ErrnoError(ERRNO_CODES.ELOOP); + } + + // split the path + var parts = PATH.normalizeArray(path.split('/').filter(function(p) { + return !!p; + }), false); + + // start at the root + var current = FS.root; + var current_path = '/'; + + for (var i = 0; i < parts.length; i++) { + var islast = (i === parts.length-1); + if (islast && opts.parent) { + // stop resolving + break; + } + + current = FS.lookupNode(current, parts[i]); + current_path = PATH.join2(current_path, parts[i]); + + // jump to the mount's root node if this is a mountpoint + if (FS.isMountpoint(current)) { + if (!islast || (islast && opts.follow_mount)) { + current = current.mounted.root; + } + } + + // by default, lookupPath will not follow a symlink if it is the final path component. + // setting opts.follow = true will override this behavior. + if (!islast || opts.follow) { + var count = 0; + while (FS.isLink(current.mode)) { + var link = FS.readlink(current_path); + current_path = PATH.resolve(PATH.dirname(current_path), link); + + var lookup = FS.lookupPath(current_path, { recurse_count: opts.recurse_count }); + current = lookup.node; + + if (count++ > 40) { // limit max consecutive symlinks to 40 (SYMLOOP_MAX). + throw new FS.ErrnoError(ERRNO_CODES.ELOOP); + } + } + } + } + + return { path: current_path, node: current }; + },getPath:function (node) { + var path; + while (true) { + if (FS.isRoot(node)) { + var mount = node.mount.mountpoint; + if (!path) return mount; + return mount[mount.length-1] !== '/' ? mount + '/' + path : mount + path; + } + path = path ? node.name + '/' + path : node.name; + node = node.parent; + } + },hashName:function (parentid, name) { + var hash = 0; + + + for (var i = 0; i < name.length; i++) { + hash = ((hash << 5) - hash + name.charCodeAt(i)) | 0; + } + return ((parentid + hash) >>> 0) % FS.nameTable.length; + },hashAddNode:function (node) { + var hash = FS.hashName(node.parent.id, node.name); + node.name_next = FS.nameTable[hash]; + FS.nameTable[hash] = node; + },hashRemoveNode:function (node) { + var hash = FS.hashName(node.parent.id, node.name); + if (FS.nameTable[hash] === node) { + FS.nameTable[hash] = node.name_next; + } else { + var current = FS.nameTable[hash]; + while (current) { + if (current.name_next === node) { + current.name_next = node.name_next; + break; + } + current = current.name_next; + } + } + },lookupNode:function (parent, name) { + var err = FS.mayLookup(parent); + if (err) { + throw new FS.ErrnoError(err, parent); + } + var hash = FS.hashName(parent.id, name); + for (var node = FS.nameTable[hash]; node; node = node.name_next) { + var nodeName = node.name; + if (node.parent.id === parent.id && nodeName === name) { + return node; + } + } + // if we failed to find it in the cache, call into the VFS + return FS.lookup(parent, name); + },createNode:function (parent, name, mode, rdev) { + if (!FS.FSNode) { + FS.FSNode = function(parent, name, mode, rdev) { + if (!parent) { + parent = this; // root node sets parent to itself + } + this.parent = parent; + this.mount = parent.mount; + this.mounted = null; + this.id = FS.nextInode++; + this.name = name; + this.mode = mode; + this.node_ops = {}; + this.stream_ops = {}; + this.rdev = rdev; + }; + + FS.FSNode.prototype = {}; + + // compatibility + var readMode = 292 | 73; + var writeMode = 146; + + // NOTE we must use Object.defineProperties instead of individual calls to + // Object.defineProperty in order to make closure compiler happy + Object.defineProperties(FS.FSNode.prototype, { + read: { + get: function() { return (this.mode & readMode) === readMode; }, + set: function(val) { val ? this.mode |= readMode : this.mode &= ~readMode; } + }, + write: { + get: function() { return (this.mode & writeMode) === writeMode; }, + set: function(val) { val ? this.mode |= writeMode : this.mode &= ~writeMode; } + }, + isFolder: { + get: function() { return FS.isDir(this.mode); } + }, + isDevice: { + get: function() { return FS.isChrdev(this.mode); } + } + }); + } + + var node = new FS.FSNode(parent, name, mode, rdev); + + FS.hashAddNode(node); + + return node; + },destroyNode:function (node) { + FS.hashRemoveNode(node); + },isRoot:function (node) { + return node === node.parent; + },isMountpoint:function (node) { + return !!node.mounted; + },isFile:function (mode) { + return (mode & 61440) === 32768; + },isDir:function (mode) { + return (mode & 61440) === 16384; + },isLink:function (mode) { + return (mode & 61440) === 40960; + },isChrdev:function (mode) { + return (mode & 61440) === 8192; + },isBlkdev:function (mode) { + return (mode & 61440) === 24576; + },isFIFO:function (mode) { + return (mode & 61440) === 4096; + },isSocket:function (mode) { + return (mode & 49152) === 49152; + },flagModes:{"r":0,"rs":1052672,"r+":2,"w":577,"wx":705,"xw":705,"w+":578,"wx+":706,"xw+":706,"a":1089,"ax":1217,"xa":1217,"a+":1090,"ax+":1218,"xa+":1218},modeStringToFlags:function (str) { + var flags = FS.flagModes[str]; + if (typeof flags === 'undefined') { + throw new Error('Unknown file open mode: ' + str); + } + return flags; + },flagsToPermissionString:function (flag) { + var accmode = flag & 2097155; + var perms = ['r', 'w', 'rw'][accmode]; + if ((flag & 512)) { + perms += 'w'; + } + return perms; + },nodePermissions:function (node, perms) { + if (FS.ignorePermissions) { + return 0; + } + // return 0 if any user, group or owner bits are set. + if (perms.indexOf('r') !== -1 && !(node.mode & 292)) { + return ERRNO_CODES.EACCES; + } else if (perms.indexOf('w') !== -1 && !(node.mode & 146)) { + return ERRNO_CODES.EACCES; + } else if (perms.indexOf('x') !== -1 && !(node.mode & 73)) { + return ERRNO_CODES.EACCES; + } + return 0; + },mayLookup:function (dir) { + var err = FS.nodePermissions(dir, 'x'); + if (err) return err; + if (!dir.node_ops.lookup) return ERRNO_CODES.EACCES; + return 0; + },mayCreate:function (dir, name) { + try { + var node = FS.lookupNode(dir, name); + return ERRNO_CODES.EEXIST; + } catch (e) { + } + return FS.nodePermissions(dir, 'wx'); + },mayDelete:function (dir, name, isdir) { + var node; + try { + node = FS.lookupNode(dir, name); + } catch (e) { + return e.errno; + } + var err = FS.nodePermissions(dir, 'wx'); + if (err) { + return err; + } + if (isdir) { + if (!FS.isDir(node.mode)) { + return ERRNO_CODES.ENOTDIR; + } + if (FS.isRoot(node) || FS.getPath(node) === FS.cwd()) { + return ERRNO_CODES.EBUSY; + } + } else { + if (FS.isDir(node.mode)) { + return ERRNO_CODES.EISDIR; + } + } + return 0; + },mayOpen:function (node, flags) { + if (!node) { + return ERRNO_CODES.ENOENT; + } + if (FS.isLink(node.mode)) { + return ERRNO_CODES.ELOOP; + } else if (FS.isDir(node.mode)) { + if ((flags & 2097155) !== 0 || // opening for write + (flags & 512)) { + return ERRNO_CODES.EISDIR; + } + } + return FS.nodePermissions(node, FS.flagsToPermissionString(flags)); + },MAX_OPEN_FDS:4096,nextfd:function (fd_start, fd_end) { + fd_start = fd_start || 0; + fd_end = fd_end || FS.MAX_OPEN_FDS; + for (var fd = fd_start; fd <= fd_end; fd++) { + if (!FS.streams[fd]) { + return fd; + } + } + throw new FS.ErrnoError(ERRNO_CODES.EMFILE); + },getStream:function (fd) { + return FS.streams[fd]; + },createStream:function (stream, fd_start, fd_end) { + if (!FS.FSStream) { + FS.FSStream = function(){}; + FS.FSStream.prototype = {}; + // compatibility + Object.defineProperties(FS.FSStream.prototype, { + object: { + get: function() { return this.node; }, + set: function(val) { this.node = val; } + }, + isRead: { + get: function() { return (this.flags & 2097155) !== 1; } + }, + isWrite: { + get: function() { return (this.flags & 2097155) !== 0; } + }, + isAppend: { + get: function() { return (this.flags & 1024); } + } + }); + } + // clone it, so we can return an instance of FSStream + var newStream = new FS.FSStream(); + for (var p in stream) { + newStream[p] = stream[p]; + } + stream = newStream; + var fd = FS.nextfd(fd_start, fd_end); + stream.fd = fd; + FS.streams[fd] = stream; + return stream; + },closeStream:function (fd) { + FS.streams[fd] = null; + },getStreamFromPtr:function (ptr) { + return FS.streams[ptr - 1]; + },getPtrForStream:function (stream) { + return stream ? stream.fd + 1 : 0; + },chrdev_stream_ops:{open:function (stream) { + var device = FS.getDevice(stream.node.rdev); + // override node's stream ops with the device's + stream.stream_ops = device.stream_ops; + // forward the open call + if (stream.stream_ops.open) { + stream.stream_ops.open(stream); + } + },llseek:function () { + throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); + }},major:function (dev) { + return ((dev) >> 8); + },minor:function (dev) { + return ((dev) & 0xff); + },makedev:function (ma, mi) { + return ((ma) << 8 | (mi)); + },registerDevice:function (dev, ops) { + FS.devices[dev] = { stream_ops: ops }; + },getDevice:function (dev) { + return FS.devices[dev]; + },getMounts:function (mount) { + var mounts = []; + var check = [mount]; + + while (check.length) { + var m = check.pop(); + + mounts.push(m); + + check.push.apply(check, m.mounts); + } + + return mounts; + },syncfs:function (populate, callback) { + if (typeof(populate) === 'function') { + callback = populate; + populate = false; + } + + var mounts = FS.getMounts(FS.root.mount); + var completed = 0; + + function done(err) { + if (err) { + if (!done.errored) { + done.errored = true; + return callback(err); + } + return; + } + if (++completed >= mounts.length) { + callback(null); + } + }; + + // sync all mounts + mounts.forEach(function (mount) { + if (!mount.type.syncfs) { + return done(null); + } + mount.type.syncfs(mount, populate, done); + }); + },mount:function (type, opts, mountpoint) { + var root = mountpoint === '/'; + var pseudo = !mountpoint; + var node; + + if (root && FS.root) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } else if (!root && !pseudo) { + var lookup = FS.lookupPath(mountpoint, { follow_mount: false }); + + mountpoint = lookup.path; // use the absolute path + node = lookup.node; + + if (FS.isMountpoint(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } + + if (!FS.isDir(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); + } + } + + var mount = { + type: type, + opts: opts, + mountpoint: mountpoint, + mounts: [] + }; + + // create a root node for the fs + var mountRoot = type.mount(mount); + mountRoot.mount = mount; + mount.root = mountRoot; + + if (root) { + FS.root = mountRoot; + } else if (node) { + // set as a mountpoint + node.mounted = mount; + + // add the new mount to the current mount's children + if (node.mount) { + node.mount.mounts.push(mount); + } + } + + return mountRoot; + },unmount:function (mountpoint) { + var lookup = FS.lookupPath(mountpoint, { follow_mount: false }); + + if (!FS.isMountpoint(lookup.node)) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + + // destroy the nodes for this mount, and all its child mounts + var node = lookup.node; + var mount = node.mounted; + var mounts = FS.getMounts(mount); + + Object.keys(FS.nameTable).forEach(function (hash) { + var current = FS.nameTable[hash]; + + while (current) { + var next = current.name_next; + + if (mounts.indexOf(current.mount) !== -1) { + FS.destroyNode(current); + } + + current = next; + } + }); + + // no longer a mountpoint + node.mounted = null; + + // remove this mount from the child mounts + var idx = node.mount.mounts.indexOf(mount); + assert(idx !== -1); + node.mount.mounts.splice(idx, 1); + },lookup:function (parent, name) { + return parent.node_ops.lookup(parent, name); + },mknod:function (path, mode, dev) { + var lookup = FS.lookupPath(path, { parent: true }); + var parent = lookup.node; + var name = PATH.basename(path); + if (!name || name === '.' || name === '..') { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + var err = FS.mayCreate(parent, name); + if (err) { + throw new FS.ErrnoError(err); + } + if (!parent.node_ops.mknod) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + return parent.node_ops.mknod(parent, name, mode, dev); + },create:function (path, mode) { + mode = mode !== undefined ? mode : 438 /* 0666 */; + mode &= 4095; + mode |= 32768; + return FS.mknod(path, mode, 0); + },mkdir:function (path, mode) { + mode = mode !== undefined ? mode : 511 /* 0777 */; + mode &= 511 | 512; + mode |= 16384; + return FS.mknod(path, mode, 0); + },mkdev:function (path, mode, dev) { + if (typeof(dev) === 'undefined') { + dev = mode; + mode = 438 /* 0666 */; + } + mode |= 8192; + return FS.mknod(path, mode, dev); + },symlink:function (oldpath, newpath) { + if (!PATH.resolve(oldpath)) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + var lookup = FS.lookupPath(newpath, { parent: true }); + var parent = lookup.node; + if (!parent) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + var newname = PATH.basename(newpath); + var err = FS.mayCreate(parent, newname); + if (err) { + throw new FS.ErrnoError(err); + } + if (!parent.node_ops.symlink) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + return parent.node_ops.symlink(parent, newname, oldpath); + },rename:function (old_path, new_path) { + var old_dirname = PATH.dirname(old_path); + var new_dirname = PATH.dirname(new_path); + var old_name = PATH.basename(old_path); + var new_name = PATH.basename(new_path); + // parents must exist + var lookup, old_dir, new_dir; + try { + lookup = FS.lookupPath(old_path, { parent: true }); + old_dir = lookup.node; + lookup = FS.lookupPath(new_path, { parent: true }); + new_dir = lookup.node; + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } + if (!old_dir || !new_dir) throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + // need to be part of the same mount + if (old_dir.mount !== new_dir.mount) { + throw new FS.ErrnoError(ERRNO_CODES.EXDEV); + } + // source must exist + var old_node = FS.lookupNode(old_dir, old_name); + // old path should not be an ancestor of the new path + var relative = PATH.relative(old_path, new_dirname); + if (relative.charAt(0) !== '.') { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + // new path should not be an ancestor of the old path + relative = PATH.relative(new_path, old_dirname); + if (relative.charAt(0) !== '.') { + throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); + } + // see if the new path already exists + var new_node; + try { + new_node = FS.lookupNode(new_dir, new_name); + } catch (e) { + // not fatal + } + // early out if nothing needs to change + if (old_node === new_node) { + return; + } + // we'll need to delete the old entry + var isdir = FS.isDir(old_node.mode); + var err = FS.mayDelete(old_dir, old_name, isdir); + if (err) { + throw new FS.ErrnoError(err); + } + // need delete permissions if we'll be overwriting. + // need create permissions if new doesn't already exist. + err = new_node ? + FS.mayDelete(new_dir, new_name, isdir) : + FS.mayCreate(new_dir, new_name); + if (err) { + throw new FS.ErrnoError(err); + } + if (!old_dir.node_ops.rename) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + if (FS.isMountpoint(old_node) || (new_node && FS.isMountpoint(new_node))) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } + // if we are going to change the parent, check write permissions + if (new_dir !== old_dir) { + err = FS.nodePermissions(old_dir, 'w'); + if (err) { + throw new FS.ErrnoError(err); + } + } + try { + if (FS.trackingDelegate['willMovePath']) { + FS.trackingDelegate['willMovePath'](old_path, new_path); + } + } catch(e) { + console.log("FS.trackingDelegate['willMovePath']('"+old_path+"', '"+new_path+"') threw an exception: " + e.message); + } + // remove the node from the lookup hash + FS.hashRemoveNode(old_node); + // do the underlying fs rename + try { + old_dir.node_ops.rename(old_node, new_dir, new_name); + } catch (e) { + throw e; + } finally { + // add the node back to the hash (in case node_ops.rename + // changed its name) + FS.hashAddNode(old_node); + } + try { + if (FS.trackingDelegate['onMovePath']) FS.trackingDelegate['onMovePath'](old_path, new_path); + } catch(e) { + console.log("FS.trackingDelegate['onMovePath']('"+old_path+"', '"+new_path+"') threw an exception: " + e.message); + } + },rmdir:function (path) { + var lookup = FS.lookupPath(path, { parent: true }); + var parent = lookup.node; + var name = PATH.basename(path); + var node = FS.lookupNode(parent, name); + var err = FS.mayDelete(parent, name, true); + if (err) { + throw new FS.ErrnoError(err); + } + if (!parent.node_ops.rmdir) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + if (FS.isMountpoint(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } + try { + if (FS.trackingDelegate['willDeletePath']) { + FS.trackingDelegate['willDeletePath'](path); + } + } catch(e) { + console.log("FS.trackingDelegate['willDeletePath']('"+path+"') threw an exception: " + e.message); + } + parent.node_ops.rmdir(parent, name); + FS.destroyNode(node); + try { + if (FS.trackingDelegate['onDeletePath']) FS.trackingDelegate['onDeletePath'](path); + } catch(e) { + console.log("FS.trackingDelegate['onDeletePath']('"+path+"') threw an exception: " + e.message); + } + },readdir:function (path) { + var lookup = FS.lookupPath(path, { follow: true }); + var node = lookup.node; + if (!node.node_ops.readdir) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); + } + return node.node_ops.readdir(node); + },unlink:function (path) { + var lookup = FS.lookupPath(path, { parent: true }); + var parent = lookup.node; + var name = PATH.basename(path); + var node = FS.lookupNode(parent, name); + var err = FS.mayDelete(parent, name, false); + if (err) { + // POSIX says unlink should set EPERM, not EISDIR + if (err === ERRNO_CODES.EISDIR) err = ERRNO_CODES.EPERM; + throw new FS.ErrnoError(err); + } + if (!parent.node_ops.unlink) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + if (FS.isMountpoint(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } + try { + if (FS.trackingDelegate['willDeletePath']) { + FS.trackingDelegate['willDeletePath'](path); + } + } catch(e) { + console.log("FS.trackingDelegate['willDeletePath']('"+path+"') threw an exception: " + e.message); + } + parent.node_ops.unlink(parent, name); + FS.destroyNode(node); + try { + if (FS.trackingDelegate['onDeletePath']) FS.trackingDelegate['onDeletePath'](path); + } catch(e) { + console.log("FS.trackingDelegate['onDeletePath']('"+path+"') threw an exception: " + e.message); + } + },readlink:function (path) { + var lookup = FS.lookupPath(path); + var link = lookup.node; + if (!link) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + if (!link.node_ops.readlink) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + return link.node_ops.readlink(link); + },stat:function (path, dontFollow) { + var lookup = FS.lookupPath(path, { follow: !dontFollow }); + var node = lookup.node; + if (!node) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + if (!node.node_ops.getattr) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + return node.node_ops.getattr(node); + },lstat:function (path) { + return FS.stat(path, true); + },chmod:function (path, mode, dontFollow) { + var node; + if (typeof path === 'string') { + var lookup = FS.lookupPath(path, { follow: !dontFollow }); + node = lookup.node; + } else { + node = path; + } + if (!node.node_ops.setattr) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + node.node_ops.setattr(node, { + mode: (mode & 4095) | (node.mode & ~4095), + timestamp: Date.now() + }); + },lchmod:function (path, mode) { + FS.chmod(path, mode, true); + },fchmod:function (fd, mode) { + var stream = FS.getStream(fd); + if (!stream) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + FS.chmod(stream.node, mode); + },chown:function (path, uid, gid, dontFollow) { + var node; + if (typeof path === 'string') { + var lookup = FS.lookupPath(path, { follow: !dontFollow }); + node = lookup.node; + } else { + node = path; + } + if (!node.node_ops.setattr) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + node.node_ops.setattr(node, { + timestamp: Date.now() + // we ignore the uid / gid for now + }); + },lchown:function (path, uid, gid) { + FS.chown(path, uid, gid, true); + },fchown:function (fd, uid, gid) { + var stream = FS.getStream(fd); + if (!stream) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + FS.chown(stream.node, uid, gid); + },truncate:function (path, len) { + if (len < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + var node; + if (typeof path === 'string') { + var lookup = FS.lookupPath(path, { follow: true }); + node = lookup.node; + } else { + node = path; + } + if (!node.node_ops.setattr) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + if (FS.isDir(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EISDIR); + } + if (!FS.isFile(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + var err = FS.nodePermissions(node, 'w'); + if (err) { + throw new FS.ErrnoError(err); + } + node.node_ops.setattr(node, { + size: len, + timestamp: Date.now() + }); + },ftruncate:function (fd, len) { + var stream = FS.getStream(fd); + if (!stream) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + if ((stream.flags & 2097155) === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + FS.truncate(stream.node, len); + },utime:function (path, atime, mtime) { + var lookup = FS.lookupPath(path, { follow: true }); + var node = lookup.node; + node.node_ops.setattr(node, { + timestamp: Math.max(atime, mtime) + }); + },open:function (path, flags, mode, fd_start, fd_end) { + if (path === "") { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + flags = typeof flags === 'string' ? FS.modeStringToFlags(flags) : flags; + mode = typeof mode === 'undefined' ? 438 /* 0666 */ : mode; + if ((flags & 64)) { + mode = (mode & 4095) | 32768; + } else { + mode = 0; + } + var node; + if (typeof path === 'object') { + node = path; + } else { + path = PATH.normalize(path); + try { + var lookup = FS.lookupPath(path, { + follow: !(flags & 131072) + }); + node = lookup.node; + } catch (e) { + // ignore + } + } + // perhaps we need to create the node + var created = false; + if ((flags & 64)) { + if (node) { + // if O_CREAT and O_EXCL are set, error out if the node already exists + if ((flags & 128)) { + throw new FS.ErrnoError(ERRNO_CODES.EEXIST); + } + } else { + // node doesn't exist, try to create it + node = FS.mknod(path, mode, 0); + created = true; + } + } + if (!node) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + // can't truncate a device + if (FS.isChrdev(node.mode)) { + flags &= ~512; + } + // check permissions, if this is not a file we just created now (it is ok to + // create and write to a file with read-only permissions; it is read-only + // for later use) + if (!created) { + var err = FS.mayOpen(node, flags); + if (err) { + throw new FS.ErrnoError(err); + } + } + // do truncation if necessary + if ((flags & 512)) { + FS.truncate(node, 0); + } + // we've already handled these, don't pass down to the underlying vfs + flags &= ~(128 | 512); + + // register the stream with the filesystem + var stream = FS.createStream({ + node: node, + path: FS.getPath(node), // we want the absolute path to the node + flags: flags, + seekable: true, + position: 0, + stream_ops: node.stream_ops, + // used by the file family libc calls (fopen, fwrite, ferror, etc.) + ungotten: [], + error: false + }, fd_start, fd_end); + // call the new stream's open function + if (stream.stream_ops.open) { + stream.stream_ops.open(stream); + } + if (Module['logReadFiles'] && !(flags & 1)) { + if (!FS.readFiles) FS.readFiles = {}; + if (!(path in FS.readFiles)) { + FS.readFiles[path] = 1; + Module['printErr']('read file: ' + path); + } + } + try { + if (FS.trackingDelegate['onOpenFile']) { + var trackingFlags = 0; + if ((flags & 2097155) !== 1) { + trackingFlags |= FS.tracking.openFlags.READ; + } + if ((flags & 2097155) !== 0) { + trackingFlags |= FS.tracking.openFlags.WRITE; + } + FS.trackingDelegate['onOpenFile'](path, trackingFlags); + } + } catch(e) { + console.log("FS.trackingDelegate['onOpenFile']('"+path+"', flags) threw an exception: " + e.message); + } + return stream; + },close:function (stream) { + try { + if (stream.stream_ops.close) { + stream.stream_ops.close(stream); + } + } catch (e) { + throw e; + } finally { + FS.closeStream(stream.fd); + } + },llseek:function (stream, offset, whence) { + if (!stream.seekable || !stream.stream_ops.llseek) { + throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); + } + stream.position = stream.stream_ops.llseek(stream, offset, whence); + stream.ungotten = []; + return stream.position; + },read:function (stream, buffer, offset, length, position) { + if (length < 0 || position < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + if ((stream.flags & 2097155) === 1) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + if (FS.isDir(stream.node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EISDIR); + } + if (!stream.stream_ops.read) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + var seeking = true; + if (typeof position === 'undefined') { + position = stream.position; + seeking = false; + } else if (!stream.seekable) { + throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); + } + var bytesRead = stream.stream_ops.read(stream, buffer, offset, length, position); + if (!seeking) stream.position += bytesRead; + return bytesRead; + },write:function (stream, buffer, offset, length, position, canOwn) { + if (length < 0 || position < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + if ((stream.flags & 2097155) === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + if (FS.isDir(stream.node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EISDIR); + } + if (!stream.stream_ops.write) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + if (stream.flags & 1024) { + // seek to the end before writing in append mode + FS.llseek(stream, 0, 2); + } + var seeking = true; + if (typeof position === 'undefined') { + position = stream.position; + seeking = false; + } else if (!stream.seekable) { + throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); + } + var bytesWritten = stream.stream_ops.write(stream, buffer, offset, length, position, canOwn); + if (!seeking) stream.position += bytesWritten; + try { + if (stream.path && FS.trackingDelegate['onWriteToFile']) FS.trackingDelegate['onWriteToFile'](stream.path); + } catch(e) { + console.log("FS.trackingDelegate['onWriteToFile']('"+path+"') threw an exception: " + e.message); + } + return bytesWritten; + },allocate:function (stream, offset, length) { + if (offset < 0 || length <= 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + if ((stream.flags & 2097155) === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + if (!FS.isFile(stream.node.mode) && !FS.isDir(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.ENODEV); + } + if (!stream.stream_ops.allocate) { + throw new FS.ErrnoError(ERRNO_CODES.EOPNOTSUPP); + } + stream.stream_ops.allocate(stream, offset, length); + },mmap:function (stream, buffer, offset, length, position, prot, flags) { + // TODO if PROT is PROT_WRITE, make sure we have write access + if ((stream.flags & 2097155) === 1) { + throw new FS.ErrnoError(ERRNO_CODES.EACCES); + } + if (!stream.stream_ops.mmap) { + throw new FS.ErrnoError(ERRNO_CODES.ENODEV); + } + return stream.stream_ops.mmap(stream, buffer, offset, length, position, prot, flags); + },ioctl:function (stream, cmd, arg) { + if (!stream.stream_ops.ioctl) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTTY); + } + return stream.stream_ops.ioctl(stream, cmd, arg); + },readFile:function (path, opts) { + opts = opts || {}; + opts.flags = opts.flags || 'r'; + opts.encoding = opts.encoding || 'binary'; + if (opts.encoding !== 'utf8' && opts.encoding !== 'binary') { + throw new Error('Invalid encoding type "' + opts.encoding + '"'); + } + var ret; + var stream = FS.open(path, opts.flags); + var stat = FS.stat(path); + var length = stat.size; + var buf = new Uint8Array(length); + FS.read(stream, buf, 0, length, 0); + if (opts.encoding === 'utf8') { + ret = ''; + var utf8 = new Runtime.UTF8Processor(); + for (var i = 0; i < length; i++) { + ret += utf8.processCChar(buf[i]); + } + } else if (opts.encoding === 'binary') { + ret = buf; + } + FS.close(stream); + return ret; + },writeFile:function (path, data, opts) { + opts = opts || {}; + opts.flags = opts.flags || 'w'; + opts.encoding = opts.encoding || 'utf8'; + if (opts.encoding !== 'utf8' && opts.encoding !== 'binary') { + throw new Error('Invalid encoding type "' + opts.encoding + '"'); + } + var stream = FS.open(path, opts.flags, opts.mode); + if (opts.encoding === 'utf8') { + var utf8 = new Runtime.UTF8Processor(); + var buf = new Uint8Array(utf8.processJSString(data)); + FS.write(stream, buf, 0, buf.length, 0, opts.canOwn); + } else if (opts.encoding === 'binary') { + FS.write(stream, data, 0, data.length, 0, opts.canOwn); + } + FS.close(stream); + },cwd:function () { + return FS.currentPath; + },chdir:function (path) { + var lookup = FS.lookupPath(path, { follow: true }); + if (!FS.isDir(lookup.node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); + } + var err = FS.nodePermissions(lookup.node, 'x'); + if (err) { + throw new FS.ErrnoError(err); + } + FS.currentPath = lookup.path; + },createDefaultDirectories:function () { + FS.mkdir('/tmp'); + FS.mkdir('/home'); + FS.mkdir('/home/web_user'); + },createDefaultDevices:function () { + // create /dev + FS.mkdir('/dev'); + // setup /dev/null + FS.registerDevice(FS.makedev(1, 3), { + read: function() { return 0; }, + write: function() { return 0; } + }); + FS.mkdev('/dev/null', FS.makedev(1, 3)); + // setup /dev/tty and /dev/tty1 + // stderr needs to print output using Module['printErr'] + // so we register a second tty just for it. + TTY.register(FS.makedev(5, 0), TTY.default_tty_ops); + TTY.register(FS.makedev(6, 0), TTY.default_tty1_ops); + FS.mkdev('/dev/tty', FS.makedev(5, 0)); + FS.mkdev('/dev/tty1', FS.makedev(6, 0)); + // setup /dev/[u]random + var random_device; + if (typeof crypto !== 'undefined') { + // for modern web browsers + var randomBuffer = new Uint8Array(1); + random_device = function() { crypto.getRandomValues(randomBuffer); return randomBuffer[0]; }; + } else if (ENVIRONMENT_IS_NODE) { + // for nodejs + random_device = function() { return require('crypto').randomBytes(1)[0]; }; + } else { + // default for ES5 platforms + random_device = function() { return (Math.random()*256)|0; }; + } + FS.createDevice('/dev', 'random', random_device); + FS.createDevice('/dev', 'urandom', random_device); + // we're not going to emulate the actual shm device, + // just create the tmp dirs that reside in it commonly + FS.mkdir('/dev/shm'); + FS.mkdir('/dev/shm/tmp'); + },createStandardStreams:function () { + // TODO deprecate the old functionality of a single + // input / output callback and that utilizes FS.createDevice + // and instead require a unique set of stream ops + + // by default, we symlink the standard streams to the + // default tty devices. however, if the standard streams + // have been overwritten we create a unique device for + // them instead. + if (Module['stdin']) { + FS.createDevice('/dev', 'stdin', Module['stdin']); + } else { + FS.symlink('/dev/tty', '/dev/stdin'); + } + if (Module['stdout']) { + FS.createDevice('/dev', 'stdout', null, Module['stdout']); + } else { + FS.symlink('/dev/tty', '/dev/stdout'); + } + if (Module['stderr']) { + FS.createDevice('/dev', 'stderr', null, Module['stderr']); + } else { + FS.symlink('/dev/tty1', '/dev/stderr'); + } + + // open default streams for the stdin, stdout and stderr devices + var stdin = FS.open('/dev/stdin', 'r'); + HEAP32[((_stdin)>>2)]=FS.getPtrForStream(stdin); + assert(stdin.fd === 0, 'invalid handle for stdin (' + stdin.fd + ')'); + + var stdout = FS.open('/dev/stdout', 'w'); + HEAP32[((_stdout)>>2)]=FS.getPtrForStream(stdout); + assert(stdout.fd === 1, 'invalid handle for stdout (' + stdout.fd + ')'); + + var stderr = FS.open('/dev/stderr', 'w'); + HEAP32[((_stderr)>>2)]=FS.getPtrForStream(stderr); + assert(stderr.fd === 2, 'invalid handle for stderr (' + stderr.fd + ')'); + },ensureErrnoError:function () { + if (FS.ErrnoError) return; + FS.ErrnoError = function ErrnoError(errno, node) { + this.node = node; + this.setErrno = function(errno) { + this.errno = errno; + for (var key in ERRNO_CODES) { + if (ERRNO_CODES[key] === errno) { + this.code = key; + break; + } + } + }; + this.setErrno(errno); + this.message = ERRNO_MESSAGES[errno]; + }; + FS.ErrnoError.prototype = new Error(); + FS.ErrnoError.prototype.constructor = FS.ErrnoError; + // Some errors may happen quite a bit, to avoid overhead we reuse them (and suffer a lack of stack info) + [ERRNO_CODES.ENOENT].forEach(function(code) { + FS.genericErrors[code] = new FS.ErrnoError(code); + FS.genericErrors[code].stack = ''; + }); + },staticInit:function () { + FS.ensureErrnoError(); + + FS.nameTable = new Array(4096); + + FS.mount(MEMFS, {}, '/'); + + FS.createDefaultDirectories(); + FS.createDefaultDevices(); + },init:function (input, output, error) { + assert(!FS.init.initialized, 'FS.init was previously called. If you want to initialize later with custom parameters, remove any earlier calls (note that one is automatically added to the generated code)'); + FS.init.initialized = true; + + FS.ensureErrnoError(); + + // Allow Module.stdin etc. to provide defaults, if none explicitly passed to us here + Module['stdin'] = input || Module['stdin']; + Module['stdout'] = output || Module['stdout']; + Module['stderr'] = error || Module['stderr']; + + FS.createStandardStreams(); + },quit:function () { + FS.init.initialized = false; + for (var i = 0; i < FS.streams.length; i++) { + var stream = FS.streams[i]; + if (!stream) { + continue; + } + FS.close(stream); + } + },getMode:function (canRead, canWrite) { + var mode = 0; + if (canRead) mode |= 292 | 73; + if (canWrite) mode |= 146; + return mode; + },joinPath:function (parts, forceRelative) { + var path = PATH.join.apply(null, parts); + if (forceRelative && path[0] == '/') path = path.substr(1); + return path; + },absolutePath:function (relative, base) { + return PATH.resolve(base, relative); + },standardizePath:function (path) { + return PATH.normalize(path); + },findObject:function (path, dontResolveLastLink) { + var ret = FS.analyzePath(path, dontResolveLastLink); + if (ret.exists) { + return ret.object; + } else { + ___setErrNo(ret.error); + return null; + } + },analyzePath:function (path, dontResolveLastLink) { + // operate from within the context of the symlink's target + try { + var lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }); + path = lookup.path; + } catch (e) { + } + var ret = { + isRoot: false, exists: false, error: 0, name: null, path: null, object: null, + parentExists: false, parentPath: null, parentObject: null + }; + try { + var lookup = FS.lookupPath(path, { parent: true }); + ret.parentExists = true; + ret.parentPath = lookup.path; + ret.parentObject = lookup.node; + ret.name = PATH.basename(path); + lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }); + ret.exists = true; + ret.path = lookup.path; + ret.object = lookup.node; + ret.name = lookup.node.name; + ret.isRoot = lookup.path === '/'; + } catch (e) { + ret.error = e.errno; + }; + return ret; + },createFolder:function (parent, name, canRead, canWrite) { + var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); + var mode = FS.getMode(canRead, canWrite); + return FS.mkdir(path, mode); + },createPath:function (parent, path, canRead, canWrite) { + parent = typeof parent === 'string' ? parent : FS.getPath(parent); + var parts = path.split('/').reverse(); + while (parts.length) { + var part = parts.pop(); + if (!part) continue; + var current = PATH.join2(parent, part); + try { + FS.mkdir(current); + } catch (e) { + // ignore EEXIST + } + parent = current; + } + return current; + },createFile:function (parent, name, properties, canRead, canWrite) { + var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); + var mode = FS.getMode(canRead, canWrite); + return FS.create(path, mode); + },createDataFile:function (parent, name, data, canRead, canWrite, canOwn) { + var path = name ? PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name) : parent; + var mode = FS.getMode(canRead, canWrite); + var node = FS.create(path, mode); + if (data) { + if (typeof data === 'string') { + var arr = new Array(data.length); + for (var i = 0, len = data.length; i < len; ++i) arr[i] = data.charCodeAt(i); + data = arr; + } + // make sure we can write to the file + FS.chmod(node, mode | 146); + var stream = FS.open(node, 'w'); + FS.write(stream, data, 0, data.length, 0, canOwn); + FS.close(stream); + FS.chmod(node, mode); + } + return node; + },createDevice:function (parent, name, input, output) { + var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); + var mode = FS.getMode(!!input, !!output); + if (!FS.createDevice.major) FS.createDevice.major = 64; + var dev = FS.makedev(FS.createDevice.major++, 0); + // Create a fake device that a set of stream ops to emulate + // the old behavior. + FS.registerDevice(dev, { + open: function(stream) { + stream.seekable = false; + }, + close: function(stream) { + // flush any pending line data + if (output && output.buffer && output.buffer.length) { + output(10); + } + }, + read: function(stream, buffer, offset, length, pos /* ignored */) { + var bytesRead = 0; + for (var i = 0; i < length; i++) { + var result; + try { + result = input(); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + if (result === undefined && bytesRead === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EAGAIN); + } + if (result === null || result === undefined) break; + bytesRead++; + buffer[offset+i] = result; + } + if (bytesRead) { + stream.node.timestamp = Date.now(); + } + return bytesRead; + }, + write: function(stream, buffer, offset, length, pos) { + for (var i = 0; i < length; i++) { + try { + output(buffer[offset+i]); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + } + if (length) { + stream.node.timestamp = Date.now(); + } + return i; + } + }); + return FS.mkdev(path, mode, dev); + },createLink:function (parent, name, target, canRead, canWrite) { + var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); + return FS.symlink(target, path); + },forceLoadFile:function (obj) { + if (obj.isDevice || obj.isFolder || obj.link || obj.contents) return true; + var success = true; + if (typeof XMLHttpRequest !== 'undefined') { + throw new Error("Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread."); + } else if (Module['read']) { + // Command-line. + try { + // WARNING: Can't read binary files in V8's d8 or tracemonkey's js, as + // read() will try to parse UTF8. + obj.contents = intArrayFromString(Module['read'](obj.url), true); + obj.usedBytes = obj.contents.length; + } catch (e) { + success = false; + } + } else { + throw new Error('Cannot load without read() or XMLHttpRequest.'); + } + if (!success) ___setErrNo(ERRNO_CODES.EIO); + return success; + },createLazyFile:function (parent, name, url, canRead, canWrite) { + // Lazy chunked Uint8Array (implements get and length from Uint8Array). Actual getting is abstracted away for eventual reuse. + function LazyUint8Array() { + this.lengthKnown = false; + this.chunks = []; // Loaded chunks. Index is the chunk number + } + LazyUint8Array.prototype.get = function LazyUint8Array_get(idx) { + if (idx > this.length-1 || idx < 0) { + return undefined; + } + var chunkOffset = idx % this.chunkSize; + var chunkNum = (idx / this.chunkSize)|0; + return this.getter(chunkNum)[chunkOffset]; + } + LazyUint8Array.prototype.setDataGetter = function LazyUint8Array_setDataGetter(getter) { + this.getter = getter; + } + LazyUint8Array.prototype.cacheLength = function LazyUint8Array_cacheLength() { + // Find length + var xhr = new XMLHttpRequest(); + xhr.open('HEAD', url, false); + xhr.send(null); + if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); + var datalength = Number(xhr.getResponseHeader("Content-length")); + var header; + var hasByteServing = (header = xhr.getResponseHeader("Accept-Ranges")) && header === "bytes"; + var chunkSize = 1024*1024; // Chunk size in bytes + + if (!hasByteServing) chunkSize = datalength; + + // Function to get a range from the remote URL. + var doXHR = (function(from, to) { + if (from > to) throw new Error("invalid range (" + from + ", " + to + ") or no bytes requested!"); + if (to > datalength-1) throw new Error("only " + datalength + " bytes available! programmer error!"); + + // TODO: Use mozResponseArrayBuffer, responseStream, etc. if available. + var xhr = new XMLHttpRequest(); + xhr.open('GET', url, false); + if (datalength !== chunkSize) xhr.setRequestHeader("Range", "bytes=" + from + "-" + to); + + // Some hints to the browser that we want binary data. + if (typeof Uint8Array != 'undefined') xhr.responseType = 'arraybuffer'; + if (xhr.overrideMimeType) { + xhr.overrideMimeType('text/plain; charset=x-user-defined'); + } + + xhr.send(null); + if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); + if (xhr.response !== undefined) { + return new Uint8Array(xhr.response || []); + } else { + return intArrayFromString(xhr.responseText || '', true); + } + }); + var lazyArray = this; + lazyArray.setDataGetter(function(chunkNum) { + var start = chunkNum * chunkSize; + var end = (chunkNum+1) * chunkSize - 1; // including this byte + end = Math.min(end, datalength-1); // if datalength-1 is selected, this is the last block + if (typeof(lazyArray.chunks[chunkNum]) === "undefined") { + lazyArray.chunks[chunkNum] = doXHR(start, end); + } + if (typeof(lazyArray.chunks[chunkNum]) === "undefined") throw new Error("doXHR failed!"); + return lazyArray.chunks[chunkNum]; + }); + + this._length = datalength; + this._chunkSize = chunkSize; + this.lengthKnown = true; + } + if (typeof XMLHttpRequest !== 'undefined') { + if (!ENVIRONMENT_IS_WORKER) throw 'Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc'; + var lazyArray = new LazyUint8Array(); + Object.defineProperty(lazyArray, "length", { + get: function() { + if(!this.lengthKnown) { + this.cacheLength(); + } + return this._length; + } + }); + Object.defineProperty(lazyArray, "chunkSize", { + get: function() { + if(!this.lengthKnown) { + this.cacheLength(); + } + return this._chunkSize; + } + }); + + var properties = { isDevice: false, contents: lazyArray }; + } else { + var properties = { isDevice: false, url: url }; + } + + var node = FS.createFile(parent, name, properties, canRead, canWrite); + // This is a total hack, but I want to get this lazy file code out of the + // core of MEMFS. If we want to keep this lazy file concept I feel it should + // be its own thin LAZYFS proxying calls to MEMFS. + if (properties.contents) { + node.contents = properties.contents; + } else if (properties.url) { + node.contents = null; + node.url = properties.url; + } + // Add a function that defers querying the file size until it is asked the first time. + Object.defineProperty(node, "usedBytes", { + get: function() { return this.contents.length; } + }); + // override each stream op with one that tries to force load the lazy file first + var stream_ops = {}; + var keys = Object.keys(node.stream_ops); + keys.forEach(function(key) { + var fn = node.stream_ops[key]; + stream_ops[key] = function forceLoadLazyFile() { + if (!FS.forceLoadFile(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + return fn.apply(null, arguments); + }; + }); + // use a custom read function + stream_ops.read = function stream_ops_read(stream, buffer, offset, length, position) { + if (!FS.forceLoadFile(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + var contents = stream.node.contents; + if (position >= contents.length) + return 0; + var size = Math.min(contents.length - position, length); + assert(size >= 0); + if (contents.slice) { // normal array + for (var i = 0; i < size; i++) { + buffer[offset + i] = contents[position + i]; + } + } else { + for (var i = 0; i < size; i++) { // LazyUint8Array from sync binary XHR + buffer[offset + i] = contents.get(position + i); + } + } + return size; + }; + node.stream_ops = stream_ops; + return node; + },createPreloadedFile:function (parent, name, url, canRead, canWrite, onload, onerror, dontCreateFile, canOwn) { + Browser.init(); + // TODO we should allow people to just pass in a complete filename instead + // of parent and name being that we just join them anyways + var fullname = name ? PATH.resolve(PATH.join2(parent, name)) : parent; + function processData(byteArray) { + function finish(byteArray) { + if (!dontCreateFile) { + FS.createDataFile(parent, name, byteArray, canRead, canWrite, canOwn); + } + if (onload) onload(); + removeRunDependency('cp ' + fullname); + } + var handled = false; + Module['preloadPlugins'].forEach(function(plugin) { + if (handled) return; + if (plugin['canHandle'](fullname)) { + plugin['handle'](byteArray, fullname, finish, function() { + if (onerror) onerror(); + removeRunDependency('cp ' + fullname); + }); + handled = true; + } + }); + if (!handled) finish(byteArray); + } + addRunDependency('cp ' + fullname); + if (typeof url == 'string') { + Browser.asyncLoad(url, function(byteArray) { + processData(byteArray); + }, onerror); + } else { + processData(url); + } + },indexedDB:function () { + return window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; + },DB_NAME:function () { + return 'EM_FS_' + window.location.pathname; + },DB_VERSION:20,DB_STORE_NAME:"FILE_DATA",saveFilesToDB:function (paths, onload, onerror) { + onload = onload || function(){}; + onerror = onerror || function(){}; + var indexedDB = FS.indexedDB(); + try { + var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); + } catch (e) { + return onerror(e); + } + openRequest.onupgradeneeded = function openRequest_onupgradeneeded() { + console.log('creating db'); + var db = openRequest.result; + db.createObjectStore(FS.DB_STORE_NAME); + }; + openRequest.onsuccess = function openRequest_onsuccess() { + var db = openRequest.result; + var transaction = db.transaction([FS.DB_STORE_NAME], 'readwrite'); + var files = transaction.objectStore(FS.DB_STORE_NAME); + var ok = 0, fail = 0, total = paths.length; + function finish() { + if (fail == 0) onload(); else onerror(); + } + paths.forEach(function(path) { + var putRequest = files.put(FS.analyzePath(path).object.contents, path); + putRequest.onsuccess = function putRequest_onsuccess() { ok++; if (ok + fail == total) finish() }; + putRequest.onerror = function putRequest_onerror() { fail++; if (ok + fail == total) finish() }; + }); + transaction.onerror = onerror; + }; + openRequest.onerror = onerror; + },loadFilesFromDB:function (paths, onload, onerror) { + onload = onload || function(){}; + onerror = onerror || function(){}; + var indexedDB = FS.indexedDB(); + try { + var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); + } catch (e) { + return onerror(e); + } + openRequest.onupgradeneeded = onerror; // no database to load from + openRequest.onsuccess = function openRequest_onsuccess() { + var db = openRequest.result; + try { + var transaction = db.transaction([FS.DB_STORE_NAME], 'readonly'); + } catch(e) { + onerror(e); + return; + } + var files = transaction.objectStore(FS.DB_STORE_NAME); + var ok = 0, fail = 0, total = paths.length; + function finish() { + if (fail == 0) onload(); else onerror(); + } + paths.forEach(function(path) { + var getRequest = files.get(path); + getRequest.onsuccess = function getRequest_onsuccess() { + if (FS.analyzePath(path).exists) { + FS.unlink(path); + } + FS.createDataFile(PATH.dirname(path), PATH.basename(path), getRequest.result, true, true, true); + ok++; + if (ok + fail == total) finish(); + }; + getRequest.onerror = function getRequest_onerror() { fail++; if (ok + fail == total) finish() }; + }); + transaction.onerror = onerror; + }; + openRequest.onerror = onerror; + }};var PATH={splitPath:function (filename) { + var splitPathRe = /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; + return splitPathRe.exec(filename).slice(1); + },normalizeArray:function (parts, allowAboveRoot) { + // if the path tries to go above the root, `up` ends up > 0 + var up = 0; + for (var i = parts.length - 1; i >= 0; i--) { + var last = parts[i]; + if (last === '.') { + parts.splice(i, 1); + } else if (last === '..') { + parts.splice(i, 1); + up++; + } else if (up) { + parts.splice(i, 1); + up--; + } + } + // if the path is allowed to go above the root, restore leading ..s + if (allowAboveRoot) { + for (; up--; up) { + parts.unshift('..'); + } + } + return parts; + },normalize:function (path) { + var isAbsolute = path.charAt(0) === '/', + trailingSlash = path.substr(-1) === '/'; + // Normalize the path + path = PATH.normalizeArray(path.split('/').filter(function(p) { + return !!p; + }), !isAbsolute).join('/'); + if (!path && !isAbsolute) { + path = '.'; + } + if (path && trailingSlash) { + path += '/'; + } + return (isAbsolute ? '/' : '') + path; + },dirname:function (path) { + var result = PATH.splitPath(path), + root = result[0], + dir = result[1]; + if (!root && !dir) { + // No dirname whatsoever + return '.'; + } + if (dir) { + // It has a dirname, strip trailing slash + dir = dir.substr(0, dir.length - 1); + } + return root + dir; + },basename:function (path) { + // EMSCRIPTEN return '/'' for '/', not an empty string + if (path === '/') return '/'; + var lastSlash = path.lastIndexOf('/'); + if (lastSlash === -1) return path; + return path.substr(lastSlash+1); + },extname:function (path) { + return PATH.splitPath(path)[3]; + },join:function () { + var paths = Array.prototype.slice.call(arguments, 0); + return PATH.normalize(paths.join('/')); + },join2:function (l, r) { + return PATH.normalize(l + '/' + r); + },resolve:function () { + var resolvedPath = '', + resolvedAbsolute = false; + for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { + var path = (i >= 0) ? arguments[i] : FS.cwd(); + // Skip empty and invalid entries + if (typeof path !== 'string') { + throw new TypeError('Arguments to path.resolve must be strings'); + } else if (!path) { + return ''; // an invalid portion invalidates the whole thing + } + resolvedPath = path + '/' + resolvedPath; + resolvedAbsolute = path.charAt(0) === '/'; + } + // At this point the path should be resolved to a full absolute path, but + // handle relative paths to be safe (might happen when process.cwd() fails) + resolvedPath = PATH.normalizeArray(resolvedPath.split('/').filter(function(p) { + return !!p; + }), !resolvedAbsolute).join('/'); + return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.'; + },relative:function (from, to) { + from = PATH.resolve(from).substr(1); + to = PATH.resolve(to).substr(1); + function trim(arr) { + var start = 0; + for (; start < arr.length; start++) { + if (arr[start] !== '') break; + } + var end = arr.length - 1; + for (; end >= 0; end--) { + if (arr[end] !== '') break; + } + if (start > end) return []; + return arr.slice(start, end - start + 1); + } + var fromParts = trim(from.split('/')); + var toParts = trim(to.split('/')); + var length = Math.min(fromParts.length, toParts.length); + var samePartsLength = length; + for (var i = 0; i < length; i++) { + if (fromParts[i] !== toParts[i]) { + samePartsLength = i; + break; + } + } + var outputParts = []; + for (var i = samePartsLength; i < fromParts.length; i++) { + outputParts.push('..'); + } + outputParts = outputParts.concat(toParts.slice(samePartsLength)); + return outputParts.join('/'); + }}; + + + function _emscripten_set_main_loop_timing(mode, value) { + Browser.mainLoop.timingMode = mode; + Browser.mainLoop.timingValue = value; + + if (!Browser.mainLoop.func) { + return 1; // Return non-zero on failure, can't set timing mode when there is no main loop. + } + + if (mode == 0 /*EM_TIMING_SETTIMEOUT*/) { + Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler() { + setTimeout(Browser.mainLoop.runner, value); // doing this each time means that on exception, we stop + }; + Browser.mainLoop.method = 'timeout'; + } else if (mode == 1 /*EM_TIMING_RAF*/) { + Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler() { + Browser.requestAnimationFrame(Browser.mainLoop.runner); + }; + Browser.mainLoop.method = 'rAF'; + } + return 0; + }function _emscripten_set_main_loop(func, fps, simulateInfiniteLoop, arg) { + Module['noExitRuntime'] = true; + + assert(!Browser.mainLoop.func, 'emscripten_set_main_loop: there can only be one main loop function at once: call emscripten_cancel_main_loop to cancel the previous one before setting a new one with different parameters.'); + + Browser.mainLoop.func = func; + Browser.mainLoop.arg = arg; + + var thisMainLoopId = Browser.mainLoop.currentlyRunningMainloop; + + Browser.mainLoop.runner = function Browser_mainLoop_runner() { + if (ABORT) return; + if (Browser.mainLoop.queue.length > 0) { + var start = Date.now(); + var blocker = Browser.mainLoop.queue.shift(); + blocker.func(blocker.arg); + if (Browser.mainLoop.remainingBlockers) { + var remaining = Browser.mainLoop.remainingBlockers; + var next = remaining%1 == 0 ? remaining-1 : Math.floor(remaining); + if (blocker.counted) { + Browser.mainLoop.remainingBlockers = next; + } else { + // not counted, but move the progress along a tiny bit + next = next + 0.5; // do not steal all the next one's progress + Browser.mainLoop.remainingBlockers = (8*remaining + next)/9; + } + } + console.log('main loop blocker "' + blocker.name + '" took ' + (Date.now() - start) + ' ms'); //, left: ' + Browser.mainLoop.remainingBlockers); + Browser.mainLoop.updateStatus(); + setTimeout(Browser.mainLoop.runner, 0); + return; + } + + // catch pauses from non-main loop sources + if (thisMainLoopId < Browser.mainLoop.currentlyRunningMainloop) return; + + // Implement very basic swap interval control + Browser.mainLoop.currentFrameNumber = Browser.mainLoop.currentFrameNumber + 1 | 0; + if (Browser.mainLoop.timingMode == 1/*EM_TIMING_RAF*/ && Browser.mainLoop.timingValue > 1 && Browser.mainLoop.currentFrameNumber % Browser.mainLoop.timingValue != 0) { + // Not the scheduled time to render this frame - skip. + Browser.mainLoop.scheduler(); + return; + } + + // Signal GL rendering layer that processing of a new frame is about to start. This helps it optimize + // VBO double-buffering and reduce GPU stalls. + + if (Browser.mainLoop.method === 'timeout' && Module.ctx) { + Module.printErr('Looks like you are rendering without using requestAnimationFrame for the main loop. You should use 0 for the frame rate in emscripten_set_main_loop in order to use requestAnimationFrame, as that can greatly improve your frame rates!'); + Browser.mainLoop.method = ''; // just warn once per call to set main loop + } + + Browser.mainLoop.runIter(function() { + if (typeof arg !== 'undefined') { + Runtime.dynCall('vi', func, [arg]); + } else { + Runtime.dynCall('v', func); + } + }); + + // catch pauses from the main loop itself + if (thisMainLoopId < Browser.mainLoop.currentlyRunningMainloop) return; + + // Queue new audio data. This is important to be right after the main loop invocation, so that we will immediately be able + // to queue the newest produced audio samples. + // TODO: Consider adding pre- and post- rAF callbacks so that GL.newRenderingFrameStarted() and SDL.audio.queueNewAudioData() + // do not need to be hardcoded into this function, but can be more generic. + if (typeof SDL === 'object' && SDL.audio && SDL.audio.queueNewAudioData) SDL.audio.queueNewAudioData(); + + Browser.mainLoop.scheduler(); + } + + if (fps && fps > 0) _emscripten_set_main_loop_timing(0/*EM_TIMING_SETTIMEOUT*/, 1000.0 / fps); + else _emscripten_set_main_loop_timing(1/*EM_TIMING_RAF*/, 1); // Do rAF by rendering each frame (no decimating) + + Browser.mainLoop.scheduler(); + + if (simulateInfiniteLoop) { + throw 'SimulateInfiniteLoop'; + } + }var Browser={mainLoop:{scheduler:null,method:"",currentlyRunningMainloop:0,func:null,arg:0,timingMode:0,timingValue:0,currentFrameNumber:0,queue:[],pause:function () { + Browser.mainLoop.scheduler = null; + Browser.mainLoop.currentlyRunningMainloop++; // Incrementing this signals the previous main loop that it's now become old, and it must return. + },resume:function () { + Browser.mainLoop.currentlyRunningMainloop++; + var timingMode = Browser.mainLoop.timingMode; + var timingValue = Browser.mainLoop.timingValue; + var func = Browser.mainLoop.func; + Browser.mainLoop.func = null; + _emscripten_set_main_loop(func, 0, false, Browser.mainLoop.arg); + _emscripten_set_main_loop_timing(timingMode, timingValue); + },updateStatus:function () { + if (Module['setStatus']) { + var message = Module['statusMessage'] || 'Please wait...'; + var remaining = Browser.mainLoop.remainingBlockers; + var expected = Browser.mainLoop.expectedBlockers; + if (remaining) { + if (remaining < expected) { + Module['setStatus'](message + ' (' + (expected - remaining) + '/' + expected + ')'); + } else { + Module['setStatus'](message); + } + } else { + Module['setStatus'](''); + } + } + },runIter:function (func) { + if (ABORT) return; + if (Module['preMainLoop']) { + var preRet = Module['preMainLoop'](); + if (preRet === false) { + return; // |return false| skips a frame + } + } + try { + func(); + } catch (e) { + if (e instanceof ExitStatus) { + return; + } else { + if (e && typeof e === 'object' && e.stack) Module.printErr('exception thrown: ' + [e, e.stack]); + throw e; + } + } + if (Module['postMainLoop']) Module['postMainLoop'](); + }},isFullScreen:false,pointerLock:false,moduleContextCreatedCallbacks:[],workers:[],init:function () { + if (!Module["preloadPlugins"]) Module["preloadPlugins"] = []; // needs to exist even in workers + + if (Browser.initted) return; + Browser.initted = true; + + try { + new Blob(); + Browser.hasBlobConstructor = true; + } catch(e) { + Browser.hasBlobConstructor = false; + console.log("warning: no blob constructor, cannot create blobs with mimetypes"); + } + Browser.BlobBuilder = typeof MozBlobBuilder != "undefined" ? MozBlobBuilder : (typeof WebKitBlobBuilder != "undefined" ? WebKitBlobBuilder : (!Browser.hasBlobConstructor ? console.log("warning: no BlobBuilder") : null)); + Browser.URLObject = typeof window != "undefined" ? (window.URL ? window.URL : window.webkitURL) : undefined; + if (!Module.noImageDecoding && typeof Browser.URLObject === 'undefined') { + console.log("warning: Browser does not support creating object URLs. Built-in browser image decoding will not be available."); + Module.noImageDecoding = true; + } + + // Support for plugins that can process preloaded files. You can add more of these to + // your app by creating and appending to Module.preloadPlugins. + // + // Each plugin is asked if it can handle a file based on the file's name. If it can, + // it is given the file's raw data. When it is done, it calls a callback with the file's + // (possibly modified) data. For example, a plugin might decompress a file, or it + // might create some side data structure for use later (like an Image element, etc.). + + var imagePlugin = {}; + imagePlugin['canHandle'] = function imagePlugin_canHandle(name) { + return !Module.noImageDecoding && /\.(jpg|jpeg|png|bmp)$/i.test(name); + }; + imagePlugin['handle'] = function imagePlugin_handle(byteArray, name, onload, onerror) { + var b = null; + if (Browser.hasBlobConstructor) { + try { + b = new Blob([byteArray], { type: Browser.getMimetype(name) }); + if (b.size !== byteArray.length) { // Safari bug #118630 + // Safari's Blob can only take an ArrayBuffer + b = new Blob([(new Uint8Array(byteArray)).buffer], { type: Browser.getMimetype(name) }); + } + } catch(e) { + Runtime.warnOnce('Blob constructor present but fails: ' + e + '; falling back to blob builder'); + } + } + if (!b) { + var bb = new Browser.BlobBuilder(); + bb.append((new Uint8Array(byteArray)).buffer); // we need to pass a buffer, and must copy the array to get the right data range + b = bb.getBlob(); + } + var url = Browser.URLObject.createObjectURL(b); + var img = new Image(); + img.onload = function img_onload() { + assert(img.complete, 'Image ' + name + ' could not be decoded'); + var canvas = document.createElement('canvas'); + canvas.width = img.width; + canvas.height = img.height; + var ctx = canvas.getContext('2d'); + ctx.drawImage(img, 0, 0); + Module["preloadedImages"][name] = canvas; + Browser.URLObject.revokeObjectURL(url); + if (onload) onload(byteArray); + }; + img.onerror = function img_onerror(event) { + console.log('Image ' + url + ' could not be decoded'); + if (onerror) onerror(); + }; + img.src = url; + }; + Module['preloadPlugins'].push(imagePlugin); + + var audioPlugin = {}; + audioPlugin['canHandle'] = function audioPlugin_canHandle(name) { + return !Module.noAudioDecoding && name.substr(-4) in { '.ogg': 1, '.wav': 1, '.mp3': 1 }; + }; + audioPlugin['handle'] = function audioPlugin_handle(byteArray, name, onload, onerror) { + var done = false; + function finish(audio) { + if (done) return; + done = true; + Module["preloadedAudios"][name] = audio; + if (onload) onload(byteArray); + } + function fail() { + if (done) return; + done = true; + Module["preloadedAudios"][name] = new Audio(); // empty shim + if (onerror) onerror(); + } + if (Browser.hasBlobConstructor) { + try { + var b = new Blob([byteArray], { type: Browser.getMimetype(name) }); + } catch(e) { + return fail(); + } + var url = Browser.URLObject.createObjectURL(b); // XXX we never revoke this! + var audio = new Audio(); + audio.addEventListener('canplaythrough', function() { finish(audio) }, false); // use addEventListener due to chromium bug 124926 + audio.onerror = function audio_onerror(event) { + if (done) return; + console.log('warning: browser could not fully decode audio ' + name + ', trying slower base64 approach'); + function encode64(data) { + var BASE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; + var PAD = '='; + var ret = ''; + var leftchar = 0; + var leftbits = 0; + for (var i = 0; i < data.length; i++) { + leftchar = (leftchar << 8) | data[i]; + leftbits += 8; + while (leftbits >= 6) { + var curr = (leftchar >> (leftbits-6)) & 0x3f; + leftbits -= 6; + ret += BASE[curr]; + } + } + if (leftbits == 2) { + ret += BASE[(leftchar&3) << 4]; + ret += PAD + PAD; + } else if (leftbits == 4) { + ret += BASE[(leftchar&0xf) << 2]; + ret += PAD; + } + return ret; + } + audio.src = 'data:audio/x-' + name.substr(-3) + ';base64,' + encode64(byteArray); + finish(audio); // we don't wait for confirmation this worked - but it's worth trying + }; + audio.src = url; + // workaround for chrome bug 124926 - we do not always get oncanplaythrough or onerror + Browser.safeSetTimeout(function() { + finish(audio); // try to use it even though it is not necessarily ready to play + }, 10000); + } else { + return fail(); + } + }; + Module['preloadPlugins'].push(audioPlugin); + + // Canvas event setup + + var canvas = Module['canvas']; + function pointerLockChange() { + Browser.pointerLock = document['pointerLockElement'] === canvas || + document['mozPointerLockElement'] === canvas || + document['webkitPointerLockElement'] === canvas || + document['msPointerLockElement'] === canvas; + } + if (canvas) { + // forced aspect ratio can be enabled by defining 'forcedAspectRatio' on Module + // Module['forcedAspectRatio'] = 4 / 3; + + canvas.requestPointerLock = canvas['requestPointerLock'] || + canvas['mozRequestPointerLock'] || + canvas['webkitRequestPointerLock'] || + canvas['msRequestPointerLock'] || + function(){}; + canvas.exitPointerLock = document['exitPointerLock'] || + document['mozExitPointerLock'] || + document['webkitExitPointerLock'] || + document['msExitPointerLock'] || + function(){}; // no-op if function does not exist + canvas.exitPointerLock = canvas.exitPointerLock.bind(document); + + + document.addEventListener('pointerlockchange', pointerLockChange, false); + document.addEventListener('mozpointerlockchange', pointerLockChange, false); + document.addEventListener('webkitpointerlockchange', pointerLockChange, false); + document.addEventListener('mspointerlockchange', pointerLockChange, false); + + if (Module['elementPointerLock']) { + canvas.addEventListener("click", function(ev) { + if (!Browser.pointerLock && canvas.requestPointerLock) { + canvas.requestPointerLock(); + ev.preventDefault(); + } + }, false); + } + } + },createContext:function (canvas, useWebGL, setInModule, webGLContextAttributes) { + if (useWebGL && Module.ctx && canvas == Module.canvas) return Module.ctx; // no need to recreate GL context if it's already been created for this canvas. + + var ctx; + var contextHandle; + if (useWebGL) { + // For GLES2/desktop GL compatibility, adjust a few defaults to be different to WebGL defaults, so that they align better with the desktop defaults. + var contextAttributes = { + antialias: false, + alpha: false + }; + + if (webGLContextAttributes) { + for (var attribute in webGLContextAttributes) { + contextAttributes[attribute] = webGLContextAttributes[attribute]; + } + } + + contextHandle = GL.createContext(canvas, contextAttributes); + if (contextHandle) { + ctx = GL.getContext(contextHandle).GLctx; + } + // Set the background of the WebGL canvas to black + canvas.style.backgroundColor = "black"; + } else { + ctx = canvas.getContext('2d'); + } + + if (!ctx) return null; + + if (setInModule) { + if (!useWebGL) assert(typeof GLctx === 'undefined', 'cannot set in module if GLctx is used, but we are a non-GL context that would replace it'); + + Module.ctx = ctx; + if (useWebGL) GL.makeContextCurrent(contextHandle); + Module.useWebGL = useWebGL; + Browser.moduleContextCreatedCallbacks.forEach(function(callback) { callback() }); + Browser.init(); + } + return ctx; + },destroyContext:function (canvas, useWebGL, setInModule) {},fullScreenHandlersInstalled:false,lockPointer:undefined,resizeCanvas:undefined,requestFullScreen:function (lockPointer, resizeCanvas) { + Browser.lockPointer = lockPointer; + Browser.resizeCanvas = resizeCanvas; + if (typeof Browser.lockPointer === 'undefined') Browser.lockPointer = true; + if (typeof Browser.resizeCanvas === 'undefined') Browser.resizeCanvas = false; + + var canvas = Module['canvas']; + function fullScreenChange() { + Browser.isFullScreen = false; + var canvasContainer = canvas.parentNode; + if ((document['webkitFullScreenElement'] || document['webkitFullscreenElement'] || + document['mozFullScreenElement'] || document['mozFullscreenElement'] || + document['fullScreenElement'] || document['fullscreenElement'] || + document['msFullScreenElement'] || document['msFullscreenElement'] || + document['webkitCurrentFullScreenElement']) === canvasContainer) { + canvas.cancelFullScreen = document['cancelFullScreen'] || + document['mozCancelFullScreen'] || + document['webkitCancelFullScreen'] || + document['msExitFullscreen'] || + document['exitFullscreen'] || + function() {}; + canvas.cancelFullScreen = canvas.cancelFullScreen.bind(document); + if (Browser.lockPointer) canvas.requestPointerLock(); + Browser.isFullScreen = true; + if (Browser.resizeCanvas) Browser.setFullScreenCanvasSize(); + } else { + + // remove the full screen specific parent of the canvas again to restore the HTML structure from before going full screen + canvasContainer.parentNode.insertBefore(canvas, canvasContainer); + canvasContainer.parentNode.removeChild(canvasContainer); + + if (Browser.resizeCanvas) Browser.setWindowedCanvasSize(); + } + if (Module['onFullScreen']) Module['onFullScreen'](Browser.isFullScreen); + Browser.updateCanvasDimensions(canvas); + } + + if (!Browser.fullScreenHandlersInstalled) { + Browser.fullScreenHandlersInstalled = true; + document.addEventListener('fullscreenchange', fullScreenChange, false); + document.addEventListener('mozfullscreenchange', fullScreenChange, false); + document.addEventListener('webkitfullscreenchange', fullScreenChange, false); + document.addEventListener('MSFullscreenChange', fullScreenChange, false); + } + + // create a new parent to ensure the canvas has no siblings. this allows browsers to optimize full screen performance when its parent is the full screen root + var canvasContainer = document.createElement("div"); + canvas.parentNode.insertBefore(canvasContainer, canvas); + canvasContainer.appendChild(canvas); + + // use parent of canvas as full screen root to allow aspect ratio correction (Firefox stretches the root to screen size) + canvasContainer.requestFullScreen = canvasContainer['requestFullScreen'] || + canvasContainer['mozRequestFullScreen'] || + canvasContainer['msRequestFullscreen'] || + (canvasContainer['webkitRequestFullScreen'] ? function() { canvasContainer['webkitRequestFullScreen'](Element['ALLOW_KEYBOARD_INPUT']) } : null); + canvasContainer.requestFullScreen(); + },nextRAF:0,fakeRequestAnimationFrame:function (func) { + // try to keep 60fps between calls to here + var now = Date.now(); + if (Browser.nextRAF === 0) { + Browser.nextRAF = now + 1000/60; + } else { + while (now + 2 >= Browser.nextRAF) { // fudge a little, to avoid timer jitter causing us to do lots of delay:0 + Browser.nextRAF += 1000/60; + } + } + var delay = Math.max(Browser.nextRAF - now, 0); + setTimeout(func, delay); + },requestAnimationFrame:function requestAnimationFrame(func) { + if (typeof window === 'undefined') { // Provide fallback to setTimeout if window is undefined (e.g. in Node.js) + Browser.fakeRequestAnimationFrame(func); + } else { + if (!window.requestAnimationFrame) { + window.requestAnimationFrame = window['requestAnimationFrame'] || + window['mozRequestAnimationFrame'] || + window['webkitRequestAnimationFrame'] || + window['msRequestAnimationFrame'] || + window['oRequestAnimationFrame'] || + Browser.fakeRequestAnimationFrame; + } + window.requestAnimationFrame(func); + } + },safeCallback:function (func) { + return function() { + if (!ABORT) return func.apply(null, arguments); + }; + },safeRequestAnimationFrame:function (func) { + return Browser.requestAnimationFrame(function() { + if (!ABORT) func(); + }); + },safeSetTimeout:function (func, timeout) { + Module['noExitRuntime'] = true; + return setTimeout(function() { + if (!ABORT) func(); + }, timeout); + },safeSetInterval:function (func, timeout) { + Module['noExitRuntime'] = true; + return setInterval(function() { + if (!ABORT) func(); + }, timeout); + },getMimetype:function (name) { + return { + 'jpg': 'image/jpeg', + 'jpeg': 'image/jpeg', + 'png': 'image/png', + 'bmp': 'image/bmp', + 'ogg': 'audio/ogg', + 'wav': 'audio/wav', + 'mp3': 'audio/mpeg' + }[name.substr(name.lastIndexOf('.')+1)]; + },getUserMedia:function (func) { + if(!window.getUserMedia) { + window.getUserMedia = navigator['getUserMedia'] || + navigator['mozGetUserMedia']; + } + window.getUserMedia(func); + },getMovementX:function (event) { + return event['movementX'] || + event['mozMovementX'] || + event['webkitMovementX'] || + 0; + },getMovementY:function (event) { + return event['movementY'] || + event['mozMovementY'] || + event['webkitMovementY'] || + 0; + },getMouseWheelDelta:function (event) { + var delta = 0; + switch (event.type) { + case 'DOMMouseScroll': + delta = event.detail; + break; + case 'mousewheel': + delta = event.wheelDelta; + break; + case 'wheel': + delta = event['deltaY']; + break; + default: + throw 'unrecognized mouse wheel event: ' + event.type; + } + return delta; + },mouseX:0,mouseY:0,mouseMovementX:0,mouseMovementY:0,touches:{},lastTouches:{},calculateMouseEvent:function (event) { // event should be mousemove, mousedown or mouseup + if (Browser.pointerLock) { + // When the pointer is locked, calculate the coordinates + // based on the movement of the mouse. + // Workaround for Firefox bug 764498 + if (event.type != 'mousemove' && + ('mozMovementX' in event)) { + Browser.mouseMovementX = Browser.mouseMovementY = 0; + } else { + Browser.mouseMovementX = Browser.getMovementX(event); + Browser.mouseMovementY = Browser.getMovementY(event); + } + + // check if SDL is available + if (typeof SDL != "undefined") { + Browser.mouseX = SDL.mouseX + Browser.mouseMovementX; + Browser.mouseY = SDL.mouseY + Browser.mouseMovementY; + } else { + // just add the mouse delta to the current absolut mouse position + // FIXME: ideally this should be clamped against the canvas size and zero + Browser.mouseX += Browser.mouseMovementX; + Browser.mouseY += Browser.mouseMovementY; + } + } else { + // Otherwise, calculate the movement based on the changes + // in the coordinates. + var rect = Module["canvas"].getBoundingClientRect(); + var cw = Module["canvas"].width; + var ch = Module["canvas"].height; + + // Neither .scrollX or .pageXOffset are defined in a spec, but + // we prefer .scrollX because it is currently in a spec draft. + // (see: http://www.w3.org/TR/2013/WD-cssom-view-20131217/) + var scrollX = ((typeof window.scrollX !== 'undefined') ? window.scrollX : window.pageXOffset); + var scrollY = ((typeof window.scrollY !== 'undefined') ? window.scrollY : window.pageYOffset); + + if (event.type === 'touchstart' || event.type === 'touchend' || event.type === 'touchmove') { + var touch = event.touch; + if (touch === undefined) { + return; // the "touch" property is only defined in SDL + + } + var adjustedX = touch.pageX - (scrollX + rect.left); + var adjustedY = touch.pageY - (scrollY + rect.top); + + adjustedX = adjustedX * (cw / rect.width); + adjustedY = adjustedY * (ch / rect.height); + + var coords = { x: adjustedX, y: adjustedY }; + + if (event.type === 'touchstart') { + Browser.lastTouches[touch.identifier] = coords; + Browser.touches[touch.identifier] = coords; + } else if (event.type === 'touchend' || event.type === 'touchmove') { + Browser.lastTouches[touch.identifier] = Browser.touches[touch.identifier]; + Browser.touches[touch.identifier] = { x: adjustedX, y: adjustedY }; + } + return; + } + + var x = event.pageX - (scrollX + rect.left); + var y = event.pageY - (scrollY + rect.top); + + // the canvas might be CSS-scaled compared to its backbuffer; + // SDL-using content will want mouse coordinates in terms + // of backbuffer units. + x = x * (cw / rect.width); + y = y * (ch / rect.height); + + Browser.mouseMovementX = x - Browser.mouseX; + Browser.mouseMovementY = y - Browser.mouseY; + Browser.mouseX = x; + Browser.mouseY = y; + } + },xhrLoad:function (url, onload, onerror) { + var xhr = new XMLHttpRequest(); + xhr.open('GET', url, true); + xhr.responseType = 'arraybuffer'; + xhr.onload = function xhr_onload() { + if (xhr.status == 200 || (xhr.status == 0 && xhr.response)) { // file URLs can return 0 + onload(xhr.response); + } else { + onerror(); + } + }; + xhr.onerror = onerror; + xhr.send(null); + },asyncLoad:function (url, onload, onerror, noRunDep) { + Browser.xhrLoad(url, function(arrayBuffer) { + assert(arrayBuffer, 'Loading data file "' + url + '" failed (no arrayBuffer).'); + onload(new Uint8Array(arrayBuffer)); + if (!noRunDep) removeRunDependency('al ' + url); + }, function(event) { + if (onerror) { + onerror(); + } else { + throw 'Loading data file "' + url + '" failed.'; + } + }); + if (!noRunDep) addRunDependency('al ' + url); + },resizeListeners:[],updateResizeListeners:function () { + var canvas = Module['canvas']; + Browser.resizeListeners.forEach(function(listener) { + listener(canvas.width, canvas.height); + }); + },setCanvasSize:function (width, height, noUpdates) { + var canvas = Module['canvas']; + Browser.updateCanvasDimensions(canvas, width, height); + if (!noUpdates) Browser.updateResizeListeners(); + },windowedWidth:0,windowedHeight:0,setFullScreenCanvasSize:function () { + // check if SDL is available + if (typeof SDL != "undefined") { + var flags = HEAPU32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]; + flags = flags | 0x00800000; // set SDL_FULLSCREEN flag + HEAP32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]=flags + } + Browser.updateResizeListeners(); + },setWindowedCanvasSize:function () { + // check if SDL is available + if (typeof SDL != "undefined") { + var flags = HEAPU32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]; + flags = flags & ~0x00800000; // clear SDL_FULLSCREEN flag + HEAP32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]=flags + } + Browser.updateResizeListeners(); + },updateCanvasDimensions:function (canvas, wNative, hNative) { + if (wNative && hNative) { + canvas.widthNative = wNative; + canvas.heightNative = hNative; + } else { + wNative = canvas.widthNative; + hNative = canvas.heightNative; + } + var w = wNative; + var h = hNative; + if (Module['forcedAspectRatio'] && Module['forcedAspectRatio'] > 0) { + if (w/h < Module['forcedAspectRatio']) { + w = Math.round(h * Module['forcedAspectRatio']); + } else { + h = Math.round(w / Module['forcedAspectRatio']); + } + } + if (((document['webkitFullScreenElement'] || document['webkitFullscreenElement'] || + document['mozFullScreenElement'] || document['mozFullscreenElement'] || + document['fullScreenElement'] || document['fullscreenElement'] || + document['msFullScreenElement'] || document['msFullscreenElement'] || + document['webkitCurrentFullScreenElement']) === canvas.parentNode) && (typeof screen != 'undefined')) { + var factor = Math.min(screen.width / w, screen.height / h); + w = Math.round(w * factor); + h = Math.round(h * factor); + } + if (Browser.resizeCanvas) { + if (canvas.width != w) canvas.width = w; + if (canvas.height != h) canvas.height = h; + if (typeof canvas.style != 'undefined') { + canvas.style.removeProperty( "width"); + canvas.style.removeProperty("height"); + } + } else { + if (canvas.width != wNative) canvas.width = wNative; + if (canvas.height != hNative) canvas.height = hNative; + if (typeof canvas.style != 'undefined') { + if (w != wNative || h != hNative) { + canvas.style.setProperty( "width", w + "px", "important"); + canvas.style.setProperty("height", h + "px", "important"); + } else { + canvas.style.removeProperty( "width"); + canvas.style.removeProperty("height"); + } + } + } + },wgetRequests:{},nextWgetRequestHandle:0,getNextWgetRequestHandle:function () { + var handle = Browser.nextWgetRequestHandle; + Browser.nextWgetRequestHandle++; + return handle; + }}; + + function _time(ptr) { + var ret = (Date.now()/1000)|0; + if (ptr) { + HEAP32[((ptr)>>2)]=ret; + } + return ret; + } +___errno_state = Runtime.staticAlloc(4); HEAP32[((___errno_state)>>2)]=0; +Module["requestFullScreen"] = function Module_requestFullScreen(lockPointer, resizeCanvas) { Browser.requestFullScreen(lockPointer, resizeCanvas) }; + Module["requestAnimationFrame"] = function Module_requestAnimationFrame(func) { Browser.requestAnimationFrame(func) }; + Module["setCanvasSize"] = function Module_setCanvasSize(width, height, noUpdates) { Browser.setCanvasSize(width, height, noUpdates) }; + Module["pauseMainLoop"] = function Module_pauseMainLoop() { Browser.mainLoop.pause() }; + Module["resumeMainLoop"] = function Module_resumeMainLoop() { Browser.mainLoop.resume() }; + Module["getUserMedia"] = function Module_getUserMedia() { Browser.getUserMedia() } +FS.staticInit();__ATINIT__.unshift({ func: function() { if (!Module["noFSInit"] && !FS.init.initialized) FS.init() } });__ATMAIN__.push({ func: function() { FS.ignorePermissions = false } });__ATEXIT__.push({ func: function() { FS.quit() } });Module["FS_createFolder"] = FS.createFolder;Module["FS_createPath"] = FS.createPath;Module["FS_createDataFile"] = FS.createDataFile;Module["FS_createPreloadedFile"] = FS.createPreloadedFile;Module["FS_createLazyFile"] = FS.createLazyFile;Module["FS_createLink"] = FS.createLink;Module["FS_createDevice"] = FS.createDevice; +__ATINIT__.unshift({ func: function() { TTY.init() } });__ATEXIT__.push({ func: function() { TTY.shutdown() } });TTY.utf8 = new Runtime.UTF8Processor(); +if (ENVIRONMENT_IS_NODE) { var fs = require("fs"); NODEFS.staticInit(); } +STACK_BASE = STACKTOP = Runtime.alignMemory(STATICTOP); + +staticSealed = true; // seal the static portion of memory + +STACK_MAX = STACK_BASE + TOTAL_STACK; + +DYNAMIC_BASE = DYNAMICTOP = Runtime.alignMemory(STACK_MAX); + +assert(DYNAMIC_BASE < TOTAL_MEMORY, "TOTAL_MEMORY not big enough for stack"); + + var ctlz_i8 = allocate([8,7,6,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], "i8", ALLOC_DYNAMIC); + var cttz_i8 = allocate([8,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,7,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0], "i8", ALLOC_DYNAMIC); + + +Module.asmGlobalArg = { "Math": Math, "Int8Array": Int8Array, "Int16Array": Int16Array, "Int32Array": Int32Array, "Uint8Array": Uint8Array, "Uint16Array": Uint16Array, "Uint32Array": Uint32Array, "Float32Array": Float32Array, "Float64Array": Float64Array }; +Module.asmLibraryArg = { "abort": abort, "assert": assert, "min": Math_min, "_fflush": _fflush, "_sysconf": _sysconf, "_abort": _abort, "___setErrNo": ___setErrNo, "_sbrk": _sbrk, "_time": _time, "_emscripten_set_main_loop_timing": _emscripten_set_main_loop_timing, "_emscripten_memcpy_big": _emscripten_memcpy_big, "_emscripten_set_main_loop": _emscripten_set_main_loop, "___errno_location": ___errno_location, "STACKTOP": STACKTOP, "STACK_MAX": STACK_MAX, "tempDoublePtr": tempDoublePtr, "ABORT": ABORT, "cttz_i8": cttz_i8, "ctlz_i8": ctlz_i8, "NaN": NaN, "Infinity": Infinity }; +// EMSCRIPTEN_START_ASM +var asm = (function(global, env, buffer) { + 'use asm'; + + var HEAP8 = new global.Int8Array(buffer); + var HEAP16 = new global.Int16Array(buffer); + var HEAP32 = new global.Int32Array(buffer); + var HEAPU8 = new global.Uint8Array(buffer); + var HEAPU16 = new global.Uint16Array(buffer); + var HEAPU32 = new global.Uint32Array(buffer); + var HEAPF32 = new global.Float32Array(buffer); + var HEAPF64 = new global.Float64Array(buffer); + + + var STACKTOP=env.STACKTOP|0; + var STACK_MAX=env.STACK_MAX|0; + var tempDoublePtr=env.tempDoublePtr|0; + var ABORT=env.ABORT|0; + var cttz_i8=env.cttz_i8|0; + var ctlz_i8=env.ctlz_i8|0; + + var __THREW__ = 0; + var threwValue = 0; + var setjmpId = 0; + var undef = 0; + var nan = +env.NaN, inf = +env.Infinity; + var tempInt = 0, tempBigInt = 0, tempBigIntP = 0, tempBigIntS = 0, tempBigIntR = 0.0, tempBigIntI = 0, tempBigIntD = 0, tempValue = 0, tempDouble = 0.0; + + var tempRet0 = 0; + var tempRet1 = 0; + var tempRet2 = 0; + var tempRet3 = 0; + var tempRet4 = 0; + var tempRet5 = 0; + var tempRet6 = 0; + var tempRet7 = 0; + var tempRet8 = 0; + var tempRet9 = 0; + var Math_floor=global.Math.floor; + var Math_abs=global.Math.abs; + var Math_sqrt=global.Math.sqrt; + var Math_pow=global.Math.pow; + var Math_cos=global.Math.cos; + var Math_sin=global.Math.sin; + var Math_tan=global.Math.tan; + var Math_acos=global.Math.acos; + var Math_asin=global.Math.asin; + var Math_atan=global.Math.atan; + var Math_atan2=global.Math.atan2; + var Math_exp=global.Math.exp; + var Math_log=global.Math.log; + var Math_ceil=global.Math.ceil; + var Math_imul=global.Math.imul; + var abort=env.abort; + var assert=env.assert; + var Math_min=env.min; + var _fflush=env._fflush; + var _sysconf=env._sysconf; + var _abort=env._abort; + var ___setErrNo=env.___setErrNo; + var _sbrk=env._sbrk; + var _time=env._time; + var _emscripten_set_main_loop_timing=env._emscripten_set_main_loop_timing; + var _emscripten_memcpy_big=env._emscripten_memcpy_big; + var _emscripten_set_main_loop=env._emscripten_set_main_loop; + var ___errno_location=env.___errno_location; + var tempFloat = 0.0; + +// EMSCRIPTEN_START_FUNCS +function stackAlloc(size) { + size = size|0; + var ret = 0; + ret = STACKTOP; + STACKTOP = (STACKTOP + size)|0; +STACKTOP = (STACKTOP + 15)&-16; + + return ret|0; +} +function stackSave() { + return STACKTOP|0; +} +function stackRestore(top) { + top = top|0; + STACKTOP = top; +} + +function setThrew(threw, value) { + threw = threw|0; + value = value|0; + if ((__THREW__|0) == 0) { + __THREW__ = threw; + threwValue = value; + } +} +function copyTempFloat(ptr) { + ptr = ptr|0; + HEAP8[tempDoublePtr>>0] = HEAP8[ptr>>0]; + HEAP8[tempDoublePtr+1>>0] = HEAP8[ptr+1>>0]; + HEAP8[tempDoublePtr+2>>0] = HEAP8[ptr+2>>0]; + HEAP8[tempDoublePtr+3>>0] = HEAP8[ptr+3>>0]; +} +function copyTempDouble(ptr) { + ptr = ptr|0; + HEAP8[tempDoublePtr>>0] = HEAP8[ptr>>0]; + HEAP8[tempDoublePtr+1>>0] = HEAP8[ptr+1>>0]; + HEAP8[tempDoublePtr+2>>0] = HEAP8[ptr+2>>0]; + HEAP8[tempDoublePtr+3>>0] = HEAP8[ptr+3>>0]; + HEAP8[tempDoublePtr+4>>0] = HEAP8[ptr+4>>0]; + HEAP8[tempDoublePtr+5>>0] = HEAP8[ptr+5>>0]; + HEAP8[tempDoublePtr+6>>0] = HEAP8[ptr+6>>0]; + HEAP8[tempDoublePtr+7>>0] = HEAP8[ptr+7>>0]; +} +function setTempRet0(value) { + value = value|0; + tempRet0 = value; +} +function getTempRet0() { + return tempRet0|0; +} + +function _crypto_verify_32_ref($x,$y) { + $x = $x|0; + $y = $y|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0; + var $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; + var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; + var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; + var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$x>>0]|0; + $1 = HEAP8[$y>>0]|0; + $2 = $1 ^ $0; + $3 = (($x) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = (($y) + 1|0); + $6 = HEAP8[$5>>0]|0; + $7 = $6 ^ $4; + $8 = $7 | $2; + $9 = (($x) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = (($y) + 2|0); + $12 = HEAP8[$11>>0]|0; + $13 = $12 ^ $10; + $14 = $8 | $13; + $15 = (($x) + 3|0); + $16 = HEAP8[$15>>0]|0; + $17 = (($y) + 3|0); + $18 = HEAP8[$17>>0]|0; + $19 = $18 ^ $16; + $20 = $14 | $19; + $21 = (($x) + 4|0); + $22 = HEAP8[$21>>0]|0; + $23 = (($y) + 4|0); + $24 = HEAP8[$23>>0]|0; + $25 = $24 ^ $22; + $26 = $20 | $25; + $27 = (($x) + 5|0); + $28 = HEAP8[$27>>0]|0; + $29 = (($y) + 5|0); + $30 = HEAP8[$29>>0]|0; + $31 = $30 ^ $28; + $32 = $26 | $31; + $33 = (($x) + 6|0); + $34 = HEAP8[$33>>0]|0; + $35 = (($y) + 6|0); + $36 = HEAP8[$35>>0]|0; + $37 = $36 ^ $34; + $38 = $32 | $37; + $39 = (($x) + 7|0); + $40 = HEAP8[$39>>0]|0; + $41 = (($y) + 7|0); + $42 = HEAP8[$41>>0]|0; + $43 = $42 ^ $40; + $44 = $38 | $43; + $45 = (($x) + 8|0); + $46 = HEAP8[$45>>0]|0; + $47 = (($y) + 8|0); + $48 = HEAP8[$47>>0]|0; + $49 = $48 ^ $46; + $50 = $44 | $49; + $51 = (($x) + 9|0); + $52 = HEAP8[$51>>0]|0; + $53 = (($y) + 9|0); + $54 = HEAP8[$53>>0]|0; + $55 = $54 ^ $52; + $56 = $50 | $55; + $57 = (($x) + 10|0); + $58 = HEAP8[$57>>0]|0; + $59 = (($y) + 10|0); + $60 = HEAP8[$59>>0]|0; + $61 = $60 ^ $58; + $62 = $56 | $61; + $63 = (($x) + 11|0); + $64 = HEAP8[$63>>0]|0; + $65 = (($y) + 11|0); + $66 = HEAP8[$65>>0]|0; + $67 = $66 ^ $64; + $68 = $62 | $67; + $69 = (($x) + 12|0); + $70 = HEAP8[$69>>0]|0; + $71 = (($y) + 12|0); + $72 = HEAP8[$71>>0]|0; + $73 = $72 ^ $70; + $74 = $68 | $73; + $75 = (($x) + 13|0); + $76 = HEAP8[$75>>0]|0; + $77 = (($y) + 13|0); + $78 = HEAP8[$77>>0]|0; + $79 = $78 ^ $76; + $80 = $74 | $79; + $81 = (($x) + 14|0); + $82 = HEAP8[$81>>0]|0; + $83 = (($y) + 14|0); + $84 = HEAP8[$83>>0]|0; + $85 = $84 ^ $82; + $86 = $80 | $85; + $87 = (($x) + 15|0); + $88 = HEAP8[$87>>0]|0; + $89 = (($y) + 15|0); + $90 = HEAP8[$89>>0]|0; + $91 = $90 ^ $88; + $92 = $86 | $91; + $93 = (($x) + 16|0); + $94 = HEAP8[$93>>0]|0; + $95 = (($y) + 16|0); + $96 = HEAP8[$95>>0]|0; + $97 = $96 ^ $94; + $98 = $92 | $97; + $99 = (($x) + 17|0); + $100 = HEAP8[$99>>0]|0; + $101 = (($y) + 17|0); + $102 = HEAP8[$101>>0]|0; + $103 = $102 ^ $100; + $104 = $98 | $103; + $105 = (($x) + 18|0); + $106 = HEAP8[$105>>0]|0; + $107 = (($y) + 18|0); + $108 = HEAP8[$107>>0]|0; + $109 = $108 ^ $106; + $110 = $104 | $109; + $111 = (($x) + 19|0); + $112 = HEAP8[$111>>0]|0; + $113 = (($y) + 19|0); + $114 = HEAP8[$113>>0]|0; + $115 = $114 ^ $112; + $116 = $110 | $115; + $117 = (($x) + 20|0); + $118 = HEAP8[$117>>0]|0; + $119 = (($y) + 20|0); + $120 = HEAP8[$119>>0]|0; + $121 = $120 ^ $118; + $122 = $116 | $121; + $123 = (($x) + 21|0); + $124 = HEAP8[$123>>0]|0; + $125 = (($y) + 21|0); + $126 = HEAP8[$125>>0]|0; + $127 = $126 ^ $124; + $128 = $122 | $127; + $129 = (($x) + 22|0); + $130 = HEAP8[$129>>0]|0; + $131 = (($y) + 22|0); + $132 = HEAP8[$131>>0]|0; + $133 = $132 ^ $130; + $134 = $128 | $133; + $135 = (($x) + 23|0); + $136 = HEAP8[$135>>0]|0; + $137 = (($y) + 23|0); + $138 = HEAP8[$137>>0]|0; + $139 = $138 ^ $136; + $140 = $134 | $139; + $141 = (($x) + 24|0); + $142 = HEAP8[$141>>0]|0; + $143 = (($y) + 24|0); + $144 = HEAP8[$143>>0]|0; + $145 = $144 ^ $142; + $146 = $140 | $145; + $147 = (($x) + 25|0); + $148 = HEAP8[$147>>0]|0; + $149 = (($y) + 25|0); + $150 = HEAP8[$149>>0]|0; + $151 = $150 ^ $148; + $152 = $146 | $151; + $153 = (($x) + 26|0); + $154 = HEAP8[$153>>0]|0; + $155 = (($y) + 26|0); + $156 = HEAP8[$155>>0]|0; + $157 = $156 ^ $154; + $158 = $152 | $157; + $159 = (($x) + 27|0); + $160 = HEAP8[$159>>0]|0; + $161 = (($y) + 27|0); + $162 = HEAP8[$161>>0]|0; + $163 = $162 ^ $160; + $164 = $158 | $163; + $165 = (($x) + 28|0); + $166 = HEAP8[$165>>0]|0; + $167 = (($y) + 28|0); + $168 = HEAP8[$167>>0]|0; + $169 = $168 ^ $166; + $170 = $164 | $169; + $171 = (($x) + 29|0); + $172 = HEAP8[$171>>0]|0; + $173 = (($y) + 29|0); + $174 = HEAP8[$173>>0]|0; + $175 = $174 ^ $172; + $176 = $170 | $175; + $177 = (($x) + 30|0); + $178 = HEAP8[$177>>0]|0; + $179 = (($y) + 30|0); + $180 = HEAP8[$179>>0]|0; + $181 = $180 ^ $178; + $182 = $176 | $181; + $183 = (($x) + 31|0); + $184 = HEAP8[$183>>0]|0; + $185 = (($y) + 31|0); + $186 = HEAP8[$185>>0]|0; + $187 = $186 ^ $184; + $188 = $182 | $187; + $189 = $188&255; + $190 = (($189) + 511)|0; + $191 = $190 >>> 8; + $192 = $191 & 1; + $193 = (($192) + -1)|0; + STACKTOP = sp;return ($193|0); +} +function _curve25519_sign($signature_out,$curve25519_privkey,$msg,$msg_len) { + $signature_out = $signature_out|0; + $curve25519_privkey = $curve25519_privkey|0; + $msg = $msg|0; + $msg_len = $msg_len|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $ed_keypair = 0, $ed_pubkey_point = 0, $sigbuf_out_len = 0, dest = 0; + var label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 240|0; + $ed_pubkey_point = sp + 8|0; + $ed_keypair = sp + 168|0; + $sigbuf_out_len = sp; + $0 = (($msg_len) + 64)|0; + $1 = STACKTOP; STACKTOP = STACKTOP + ((((1*$0)|0)+15)&-16)|0;; + $2 = $sigbuf_out_len; + $3 = $2; + HEAP32[$3>>2] = 0; + $4 = (($2) + 4)|0; + $5 = $4; + HEAP32[$5>>2] = 0; + dest=$ed_keypair+0|0; src=$curve25519_privkey+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _crypto_sign_ed25519_ref10_ge_scalarmult_base($ed_pubkey_point,$curve25519_privkey); + $6 = (($ed_keypair) + 32|0); + _crypto_sign_ed25519_ref10_ge_p3_tobytes($6,$ed_pubkey_point); + $7 = (($ed_keypair) + 63|0); + $8 = HEAP8[$7>>0]|0; + $9 = $8&255; + $10 = $9 & 128; + (_crypto_sign_modified($1,$sigbuf_out_len,$msg,$msg_len,0,$ed_keypair)|0); + dest=$signature_out+0|0; src=$1+0|0; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $11 = (($signature_out) + 63|0); + $12 = HEAP8[$11>>0]|0; + $13 = $12&255; + $14 = $13 | $10; + $15 = $14&255; + HEAP8[$11>>0] = $15; + STACKTOP = sp;return; +} +function _curve25519_verify($signature,$curve25519_pubkey,$msg,$msg_len) { + $signature = $signature|0; + $curve25519_pubkey = $curve25519_pubkey|0; + $msg = $msg|0; + $msg_len = $msg_len|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $ed_pubkey = 0, $ed_y = 0; + var $inv_mont_x_plus_one = 0, $mont_x = 0, $mont_x_minus_one = 0, $mont_x_plus_one = 0, $one = 0, $some_retval = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 288|0; + $mont_x = sp + 208|0; + $mont_x_minus_one = sp + 168|0; + $mont_x_plus_one = sp + 128|0; + $inv_mont_x_plus_one = sp + 88|0; + $one = sp + 48|0; + $ed_y = sp + 8|0; + $ed_pubkey = sp + 248|0; + $some_retval = sp; + $0 = (($msg_len) + 64)|0; + $1 = STACKTOP; STACKTOP = STACKTOP + ((((1*$0)|0)+15)&-16)|0;; + $2 = STACKTOP; STACKTOP = STACKTOP + ((((1*$0)|0)+15)&-16)|0;; + _crypto_sign_ed25519_ref10_fe_frombytes($mont_x,$curve25519_pubkey); + _crypto_sign_ed25519_ref10_fe_1($one); + _crypto_sign_ed25519_ref10_fe_sub($mont_x_minus_one,$mont_x,$one); + _crypto_sign_ed25519_ref10_fe_add($mont_x_plus_one,$mont_x,$one); + _crypto_sign_ed25519_ref10_fe_invert($inv_mont_x_plus_one,$mont_x_plus_one); + _crypto_sign_ed25519_ref10_fe_mul($ed_y,$mont_x_minus_one,$inv_mont_x_plus_one); + _crypto_sign_ed25519_ref10_fe_tobytes($ed_pubkey,$ed_y); + $3 = (($signature) + 63|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = $5 & 128; + $7 = (($ed_pubkey) + 31|0); + $8 = HEAP8[$7>>0]|0; + $9 = $8&255; + $10 = $9 | $6; + $11 = $10&255; + HEAP8[$7>>0] = $11; + $12 = HEAP8[$3>>0]|0; + $13 = $12&255; + $14 = $13 & 127; + $15 = $14&255; + HEAP8[$3>>0] = $15; + dest=$1+0|0; src=$signature+0|0; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $16 = (($1) + 64|0); + _memcpy(($16|0),($msg|0),($msg_len|0))|0; + $17 = (_crypto_sign_edwards25519sha512batch_ref10_open($2,$some_retval,$1,$0,0,$ed_pubkey)|0); + STACKTOP = sp;return ($17|0); +} +function _crypto_hash_sha512_ref($output,$input,$0,$1) { + $output = $output|0; + $input = $input|0; + $0 = $0|0; + $1 = $1|0; + var $ctx = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 208|0; + $ctx = sp; + _sph_sha512_init($ctx); + _sph_sha384($ctx,$input,$0); + _sph_sha512_close($ctx,$output); + STACKTOP = sp;return 0; +} +function _crypto_sign_modified($sm,$smlen,$m,$0,$1,$sk) { + $sm = $sm|0; + $smlen = $smlen|0; + $m = $m|0; + $0 = $0|0; + $1 = $1|0; + $sk = $sk|0; + var $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $R = 0, $hram = 0, $nonce = 0, $pk1 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 320|0; + $pk1 = sp + 288|0; + $nonce = sp + 224|0; + $hram = sp + 160|0; + $R = sp; + $2 = (($sk) + 32|0); + dest=$pk1+0|0; src=$2+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $3 = (_i64Add(($0|0),($1|0),64,0)|0); + $4 = tempRet0; + $5 = $smlen; + $6 = $5; + HEAP32[$6>>2] = $3; + $7 = (($5) + 4)|0; + $8 = $7; + HEAP32[$8>>2] = $4; + $9 = (($sm) + 64|0); + _memmove(($9|0),($m|0),($0|0))|0; + $10 = (($sm) + 32|0); + _memmove(($10|0),($sk|0),32)|0; + $11 = (_i64Add(($0|0),($1|0),32,0)|0); + $12 = tempRet0; + (_crypto_hash_sha512_ref($nonce,$10,$11,$12)|0); + dest=$10+0|0; src=$pk1+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _crypto_sign_ed25519_ref10_sc_reduce($nonce); + _crypto_sign_ed25519_ref10_ge_scalarmult_base($R,$nonce); + _crypto_sign_ed25519_ref10_ge_p3_tobytes($sm,$R); + (_crypto_hash_sha512_ref($hram,$sm,$3,$4)|0); + _crypto_sign_ed25519_ref10_sc_reduce($hram); + _crypto_sign_ed25519_ref10_sc_muladd($10,$hram,$sk,$nonce); + STACKTOP = sp;return 0; +} +function _curve25519_donna($mypublic,$secret,$basepoint) { + $mypublic = $mypublic|0; + $secret = $secret|0; + $basepoint = $basepoint|0; + var $bp = 0, $e = 0, $x = 0, $z = 0, $zmone = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 368|0; + $bp = sp + 248|0; + $x = sp + 168|0; + $z = sp + 80|0; + $zmone = sp; + $e = sp + 328|0; + dest=$e+0|0; src=$secret+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _fexpand($bp,$basepoint); + _cmult($x,$z,$e,$bp); + _crecip($zmone,$z); + _fmul($z,$x,$zmone); + _fcontract($mypublic,$z); + STACKTOP = sp;return 0; +} +function _fexpand($output,$input) { + $output = $output|0; + $input = $input|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $3 = 0, $30 = 0, $31 = 0; + var $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; + var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; + var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; + var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$input>>0]|0; + $1 = $0&255; + $2 = (($input) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($input) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + $15 = (($input) + 3|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16&255; + $18 = (_bitshift64Shl(($17|0),0,24)|0); + $19 = tempRet0; + $20 = $18 & 50331648; + $21 = $13 | $20; + $22 = $output; + $23 = $22; + HEAP32[$23>>2] = $21; + $24 = (($22) + 4)|0; + $25 = $24; + HEAP32[$25>>2] = $14; + $26 = HEAP8[$15>>0]|0; + $27 = $26&255; + $28 = (($input) + 4|0); + $29 = HEAP8[$28>>0]|0; + $30 = $29&255; + $31 = (_bitshift64Shl(($30|0),0,8)|0); + $32 = tempRet0; + $33 = $31 | $27; + $34 = (($input) + 5|0); + $35 = HEAP8[$34>>0]|0; + $36 = $35&255; + $37 = (_bitshift64Shl(($36|0),0,16)|0); + $38 = tempRet0; + $39 = $33 | $37; + $40 = $32 | $38; + $41 = (($input) + 6|0); + $42 = HEAP8[$41>>0]|0; + $43 = $42&255; + $44 = (_bitshift64Shl(($43|0),0,24)|0); + $45 = tempRet0; + $46 = $39 | $44; + $47 = $40 | $45; + $48 = (_bitshift64Lshr(($46|0),($47|0),2)|0); + $49 = tempRet0; + $50 = $48 & 33554431; + $51 = (($output) + 8|0); + $52 = $51; + $53 = $52; + HEAP32[$53>>2] = $50; + $54 = (($52) + 4)|0; + $55 = $54; + HEAP32[$55>>2] = 0; + $56 = HEAP8[$41>>0]|0; + $57 = $56&255; + $58 = (($input) + 7|0); + $59 = HEAP8[$58>>0]|0; + $60 = $59&255; + $61 = (_bitshift64Shl(($60|0),0,8)|0); + $62 = tempRet0; + $63 = $61 | $57; + $64 = (($input) + 8|0); + $65 = HEAP8[$64>>0]|0; + $66 = $65&255; + $67 = (_bitshift64Shl(($66|0),0,16)|0); + $68 = tempRet0; + $69 = $63 | $67; + $70 = $62 | $68; + $71 = (($input) + 9|0); + $72 = HEAP8[$71>>0]|0; + $73 = $72&255; + $74 = (_bitshift64Shl(($73|0),0,24)|0); + $75 = tempRet0; + $76 = $69 | $74; + $77 = $70 | $75; + $78 = (_bitshift64Lshr(($76|0),($77|0),3)|0); + $79 = tempRet0; + $80 = $78 & 67108863; + $81 = (($output) + 16|0); + $82 = $81; + $83 = $82; + HEAP32[$83>>2] = $80; + $84 = (($82) + 4)|0; + $85 = $84; + HEAP32[$85>>2] = 0; + $86 = HEAP8[$71>>0]|0; + $87 = $86&255; + $88 = (($input) + 10|0); + $89 = HEAP8[$88>>0]|0; + $90 = $89&255; + $91 = (_bitshift64Shl(($90|0),0,8)|0); + $92 = tempRet0; + $93 = $91 | $87; + $94 = (($input) + 11|0); + $95 = HEAP8[$94>>0]|0; + $96 = $95&255; + $97 = (_bitshift64Shl(($96|0),0,16)|0); + $98 = tempRet0; + $99 = $93 | $97; + $100 = $92 | $98; + $101 = (($input) + 12|0); + $102 = HEAP8[$101>>0]|0; + $103 = $102&255; + $104 = (_bitshift64Shl(($103|0),0,24)|0); + $105 = tempRet0; + $106 = $99 | $104; + $107 = $100 | $105; + $108 = (_bitshift64Lshr(($106|0),($107|0),5)|0); + $109 = tempRet0; + $110 = $108 & 33554431; + $111 = (($output) + 24|0); + $112 = $111; + $113 = $112; + HEAP32[$113>>2] = $110; + $114 = (($112) + 4)|0; + $115 = $114; + HEAP32[$115>>2] = 0; + $116 = HEAP8[$101>>0]|0; + $117 = $116&255; + $118 = (($input) + 13|0); + $119 = HEAP8[$118>>0]|0; + $120 = $119&255; + $121 = (_bitshift64Shl(($120|0),0,8)|0); + $122 = tempRet0; + $123 = $121 | $117; + $124 = (($input) + 14|0); + $125 = HEAP8[$124>>0]|0; + $126 = $125&255; + $127 = (_bitshift64Shl(($126|0),0,16)|0); + $128 = tempRet0; + $129 = $123 | $127; + $130 = $122 | $128; + $131 = (($input) + 15|0); + $132 = HEAP8[$131>>0]|0; + $133 = $132&255; + $134 = (_bitshift64Shl(($133|0),0,24)|0); + $135 = tempRet0; + $136 = $129 | $134; + $137 = $130 | $135; + $138 = (_bitshift64Lshr(($136|0),($137|0),6)|0); + $139 = tempRet0; + $140 = $138 & 67108863; + $141 = (($output) + 32|0); + $142 = $141; + $143 = $142; + HEAP32[$143>>2] = $140; + $144 = (($142) + 4)|0; + $145 = $144; + HEAP32[$145>>2] = 0; + $146 = (($input) + 16|0); + $147 = HEAP8[$146>>0]|0; + $148 = $147&255; + $149 = (($input) + 17|0); + $150 = HEAP8[$149>>0]|0; + $151 = $150&255; + $152 = (_bitshift64Shl(($151|0),0,8)|0); + $153 = tempRet0; + $154 = $152 | $148; + $155 = (($input) + 18|0); + $156 = HEAP8[$155>>0]|0; + $157 = $156&255; + $158 = (_bitshift64Shl(($157|0),0,16)|0); + $159 = tempRet0; + $160 = $154 | $158; + $161 = $153 | $159; + $162 = (($input) + 19|0); + $163 = HEAP8[$162>>0]|0; + $164 = $163&255; + $165 = (_bitshift64Shl(($164|0),0,24)|0); + $166 = tempRet0; + $167 = $165 & 16777216; + $168 = $160 | $167; + $169 = (($output) + 40|0); + $170 = $169; + $171 = $170; + HEAP32[$171>>2] = $168; + $172 = (($170) + 4)|0; + $173 = $172; + HEAP32[$173>>2] = $161; + $174 = HEAP8[$162>>0]|0; + $175 = $174&255; + $176 = (($input) + 20|0); + $177 = HEAP8[$176>>0]|0; + $178 = $177&255; + $179 = (_bitshift64Shl(($178|0),0,8)|0); + $180 = tempRet0; + $181 = $179 | $175; + $182 = (($input) + 21|0); + $183 = HEAP8[$182>>0]|0; + $184 = $183&255; + $185 = (_bitshift64Shl(($184|0),0,16)|0); + $186 = tempRet0; + $187 = $181 | $185; + $188 = $180 | $186; + $189 = (($input) + 22|0); + $190 = HEAP8[$189>>0]|0; + $191 = $190&255; + $192 = (_bitshift64Shl(($191|0),0,24)|0); + $193 = tempRet0; + $194 = $187 | $192; + $195 = $188 | $193; + $196 = (_bitshift64Lshr(($194|0),($195|0),1)|0); + $197 = tempRet0; + $198 = $196 & 67108863; + $199 = (($output) + 48|0); + $200 = $199; + $201 = $200; + HEAP32[$201>>2] = $198; + $202 = (($200) + 4)|0; + $203 = $202; + HEAP32[$203>>2] = 0; + $204 = HEAP8[$189>>0]|0; + $205 = $204&255; + $206 = (($input) + 23|0); + $207 = HEAP8[$206>>0]|0; + $208 = $207&255; + $209 = (_bitshift64Shl(($208|0),0,8)|0); + $210 = tempRet0; + $211 = $209 | $205; + $212 = (($input) + 24|0); + $213 = HEAP8[$212>>0]|0; + $214 = $213&255; + $215 = (_bitshift64Shl(($214|0),0,16)|0); + $216 = tempRet0; + $217 = $211 | $215; + $218 = $210 | $216; + $219 = (($input) + 25|0); + $220 = HEAP8[$219>>0]|0; + $221 = $220&255; + $222 = (_bitshift64Shl(($221|0),0,24)|0); + $223 = tempRet0; + $224 = $217 | $222; + $225 = $218 | $223; + $226 = (_bitshift64Lshr(($224|0),($225|0),3)|0); + $227 = tempRet0; + $228 = $226 & 33554431; + $229 = (($output) + 56|0); + $230 = $229; + $231 = $230; + HEAP32[$231>>2] = $228; + $232 = (($230) + 4)|0; + $233 = $232; + HEAP32[$233>>2] = 0; + $234 = HEAP8[$219>>0]|0; + $235 = $234&255; + $236 = (($input) + 26|0); + $237 = HEAP8[$236>>0]|0; + $238 = $237&255; + $239 = (_bitshift64Shl(($238|0),0,8)|0); + $240 = tempRet0; + $241 = $239 | $235; + $242 = (($input) + 27|0); + $243 = HEAP8[$242>>0]|0; + $244 = $243&255; + $245 = (_bitshift64Shl(($244|0),0,16)|0); + $246 = tempRet0; + $247 = $241 | $245; + $248 = $240 | $246; + $249 = (($input) + 28|0); + $250 = HEAP8[$249>>0]|0; + $251 = $250&255; + $252 = (_bitshift64Shl(($251|0),0,24)|0); + $253 = tempRet0; + $254 = $247 | $252; + $255 = $248 | $253; + $256 = (_bitshift64Lshr(($254|0),($255|0),4)|0); + $257 = tempRet0; + $258 = $256 & 67108863; + $259 = (($output) + 64|0); + $260 = $259; + $261 = $260; + HEAP32[$261>>2] = $258; + $262 = (($260) + 4)|0; + $263 = $262; + HEAP32[$263>>2] = 0; + $264 = HEAP8[$249>>0]|0; + $265 = $264&255; + $266 = (($input) + 29|0); + $267 = HEAP8[$266>>0]|0; + $268 = $267&255; + $269 = (_bitshift64Shl(($268|0),0,8)|0); + $270 = tempRet0; + $271 = $269 | $265; + $272 = (($input) + 30|0); + $273 = HEAP8[$272>>0]|0; + $274 = $273&255; + $275 = (_bitshift64Shl(($274|0),0,16)|0); + $276 = tempRet0; + $277 = $271 | $275; + $278 = $270 | $276; + $279 = (($input) + 31|0); + $280 = HEAP8[$279>>0]|0; + $281 = $280&255; + $282 = (_bitshift64Shl(($281|0),0,24)|0); + $283 = tempRet0; + $284 = $277 | $282; + $285 = $278 | $283; + $286 = (_bitshift64Lshr(($284|0),($285|0),6)|0); + $287 = tempRet0; + $288 = $286 & 33554431; + $289 = (($output) + 72|0); + $290 = $289; + $291 = $290; + HEAP32[$291>>2] = $288; + $292 = (($290) + 4)|0; + $293 = $292; + HEAP32[$293>>2] = 0; + STACKTOP = sp;return; +} +function _cmult($resultx,$resultz,$n,$q) { + $resultx = $resultx|0; + $resultz = $resultz|0; + $n = $n|0; + $q = $q|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $3 = 0, $4 = 0; + var $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $a = 0, $b = 0, $byte$09 = 0, $c = 0, $d = 0, $e = 0, $exitcond = 0, $exitcond20 = 0, $f = 0, $g = 0, $h = 0, $i$018 = 0, $j$08 = 0, $nqpqx$019 = 0, $nqpqx$110 = 0; + var $nqpqx$110$phi = 0, $nqpqx2$014 = 0, $nqpqx2$14 = 0, $nqpqx2$14$phi = 0, $nqpqz$013 = 0, $nqpqz$13 = 0, $nqpqz$13$phi = 0, $nqpqz2$015 = 0, $nqpqz2$15 = 0, $nqpqz2$15$phi = 0, $nqx$011 = 0, $nqx$11 = 0, $nqx$11$phi = 0, $nqx2$016 = 0, $nqx2$16 = 0, $nqx2$16$phi = 0, $nqz$012 = 0, $nqz$12 = 0, $nqz$12$phi = 0, $nqz2$017 = 0; + var $nqz2$17 = 0, $nqz2$17$phi = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 1216|0; + $a = sp + 1064|0; + $b = sp + 912|0; + $c = sp + 760|0; + $d = sp + 608|0; + $e = sp + 456|0; + $f = sp + 304|0; + $g = sp + 152|0; + $h = sp; + _memset(($a|0),0,152)|0; + _memset(($b|0),0,152)|0; + $0 = $b; + $1 = $0; + HEAP32[$1>>2] = 1; + $2 = (($0) + 4)|0; + $3 = $2; + HEAP32[$3>>2] = 0; + _memset(($c|0),0,152)|0; + $4 = $c; + $5 = $4; + HEAP32[$5>>2] = 1; + $6 = (($4) + 4)|0; + $7 = $6; + HEAP32[$7>>2] = 0; + _memset(($d|0),0,152)|0; + _memset(($e|0),0,152)|0; + _memset(($f|0),0,152)|0; + $8 = $f; + $9 = $8; + HEAP32[$9>>2] = 1; + $10 = (($8) + 4)|0; + $11 = $10; + HEAP32[$11>>2] = 0; + _memset(($g|0),0,152)|0; + _memset(($h|0),0,152)|0; + $12 = $h; + $13 = $12; + HEAP32[$13>>2] = 1; + $14 = (($12) + 4)|0; + $15 = $14; + HEAP32[$15>>2] = 0; + dest=$a+0|0; src=$q+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + $i$018 = 0;$nqpqx$019 = $a;$nqpqx2$014 = $e;$nqpqz$013 = $b;$nqpqz2$015 = $f;$nqx$011 = $c;$nqx2$016 = $g;$nqz$012 = $d;$nqz2$017 = $h; + while(1) { + $16 = (31 - ($i$018))|0; + $17 = (($n) + ($16)|0); + $18 = HEAP8[$17>>0]|0; + $byte$09 = $18;$j$08 = 0;$nqpqx$110 = $nqpqx$019;$nqpqx2$14 = $nqpqx2$014;$nqpqz$13 = $nqpqz$013;$nqpqz2$15 = $nqpqz2$015;$nqx$11 = $nqx$011;$nqx2$16 = $nqx2$016;$nqz$12 = $nqz$012;$nqz2$17 = $nqz2$017; + while(1) { + $19 = $byte$09&255; + $20 = $19 >>> 7; + _swap_conditional($nqx$11,$nqpqx$110,$20,0); + _swap_conditional($nqz$12,$nqpqz$13,$20,0); + _fmonty($nqx2$16,$nqz2$17,$nqpqx2$14,$nqpqz2$15,$nqx$11,$nqz$12,$nqpqx$110,$nqpqz$13,$q); + _swap_conditional($nqx2$16,$nqpqx2$14,$20,0); + _swap_conditional($nqz2$17,$nqpqz2$15,$20,0); + $21 = $19 << 1; + $22 = $21&255; + $23 = (($j$08) + 1)|0; + $exitcond = ($23|0)==(8); + if ($exitcond) { + break; + } else { + $nqz2$17$phi = $nqz$12;$nqz$12$phi = $nqz2$17;$nqx2$16$phi = $nqx$11;$nqx$11$phi = $nqx2$16;$nqpqz2$15$phi = $nqpqz$13;$nqpqz$13$phi = $nqpqz2$15;$nqpqx2$14$phi = $nqpqx$110;$nqpqx$110$phi = $nqpqx2$14;$byte$09 = $22;$j$08 = $23;$nqz2$17 = $nqz2$17$phi;$nqz$12 = $nqz$12$phi;$nqx2$16 = $nqx2$16$phi;$nqx$11 = $nqx$11$phi;$nqpqz2$15 = $nqpqz2$15$phi;$nqpqz$13 = $nqpqz$13$phi;$nqpqx2$14 = $nqpqx2$14$phi;$nqpqx$110 = $nqpqx$110$phi; + } + } + $24 = (($i$018) + 1)|0; + $exitcond20 = ($24|0)==(32); + if ($exitcond20) { + break; + } else { + $i$018 = $24;$nqpqx$019 = $nqpqx2$14;$nqpqx2$014 = $nqpqx$110;$nqpqz$013 = $nqpqz2$15;$nqpqz2$015 = $nqpqz$13;$nqx$011 = $nqx2$16;$nqx2$016 = $nqx$11;$nqz$012 = $nqz2$17;$nqz2$017 = $nqz$12; + } + } + dest=$resultx+0|0; src=$nqx2$16+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + dest=$resultz+0|0; src=$nqz2$17+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _crecip($out,$z) { + $out = $out|0; + $z = $z|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $i$33 = 0, $i$42 = 0, $i$51 = 0, $t0 = 0, $t1 = 0, $z11 = 0, $z2 = 0, $z2_100_0 = 0, $z2_10_0 = 0, $z2_20_0 = 0, $z2_50_0 = 0, $z2_5_0 = 0, $z9 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 800|0; + $z2 = sp + 720|0; + $z9 = sp + 640|0; + $z11 = sp + 560|0; + $z2_5_0 = sp + 480|0; + $z2_10_0 = sp + 400|0; + $z2_20_0 = sp + 320|0; + $z2_50_0 = sp + 240|0; + $z2_100_0 = sp + 160|0; + $t0 = sp + 80|0; + $t1 = sp; + _fsquare($z2,$z); + _fsquare($t1,$z2); + _fsquare($t0,$t1); + _fmul($z9,$t0,$z); + _fmul($z11,$z9,$z2); + _fsquare($t0,$z11); + _fmul($z2_5_0,$t0,$z9); + _fsquare($t0,$z2_5_0); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fmul($z2_10_0,$t0,$z2_5_0); + _fsquare($t0,$z2_10_0); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fmul($z2_20_0,$t1,$z2_10_0); + _fsquare($t0,$z2_20_0); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fmul($t0,$t1,$z2_20_0); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fmul($z2_50_0,$t0,$z2_10_0); + _fsquare($t0,$z2_50_0); + _fsquare($t1,$t0); + $i$33 = 2; + while(1) { + _fsquare($t0,$t1); + _fsquare($t1,$t0); + $0 = (($i$33) + 2)|0; + $1 = ($0|0)<(50); + if ($1) { + $i$33 = $0; + } else { + break; + } + } + _fmul($z2_100_0,$t1,$z2_50_0); + _fsquare($t1,$z2_100_0); + _fsquare($t0,$t1); + $i$42 = 2; + while(1) { + _fsquare($t1,$t0); + _fsquare($t0,$t1); + $2 = (($i$42) + 2)|0; + $3 = ($2|0)<(100); + if ($3) { + $i$42 = $2; + } else { + break; + } + } + _fmul($t1,$t0,$z2_100_0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + $i$51 = 2; + while(1) { + _fsquare($t0,$t1); + _fsquare($t1,$t0); + $4 = (($i$51) + 2)|0; + $5 = ($4|0)<(50); + if ($5) { + $i$51 = $4; + } else { + break; + } + } + _fmul($t0,$t1,$z2_50_0); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fmul($out,$t1,$z11); + STACKTOP = sp;return; +} +function _fmul($output,$in,$in2) { + $output = $output|0; + $in = $in|0; + $in2 = $in2|0; + var $t = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 160|0; + $t = sp; + _fproduct($t,$in,$in2); + _freduce_degree($t); + _freduce_coefficients($t); + dest=$output+0|0; src=$t+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _fcontract($output,$input_limbs) { + $output = $output|0; + $input_limbs = $input_limbs|0; + var $$pn = 0, $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0; + var $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0; + var $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0; + var $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0; + var $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0; + var $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0; + var $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0; + var $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0; + var $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0; + var $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0; + var $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0; + var $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0; + var $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0; + var $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0; + var $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0; + var $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0; + var $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0; + var $403 = 0, $404 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0; + var $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0; + var $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0; + var $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $exitcond = 0, $exitcond11 = 0, $exitcond11$1 = 0, $exitcond14 = 0, $exitcond14$1 = 0, $i$17 = 0, $i$17$1 = 0, $i$24 = 0, $i$24$1 = 0, $i$33 = 0, $input = 0, $mask$02 = 0, $mask$1 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $input = sp; + $0 = $input_limbs; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + HEAP32[$input>>2] = $2; + $6 = (($input_limbs) + 8|0); + $7 = $6; + $8 = $7; + $9 = HEAP32[$8>>2]|0; + $10 = (($7) + 4)|0; + $11 = $10; + $12 = HEAP32[$11>>2]|0; + $13 = (($input) + 4|0); + HEAP32[$13>>2] = $9; + $14 = (($input_limbs) + 16|0); + $15 = $14; + $16 = $15; + $17 = HEAP32[$16>>2]|0; + $18 = (($15) + 4)|0; + $19 = $18; + $20 = HEAP32[$19>>2]|0; + $21 = (($input) + 8|0); + HEAP32[$21>>2] = $17; + $22 = (($input_limbs) + 24|0); + $23 = $22; + $24 = $23; + $25 = HEAP32[$24>>2]|0; + $26 = (($23) + 4)|0; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (($input) + 12|0); + HEAP32[$29>>2] = $25; + $30 = (($input_limbs) + 32|0); + $31 = $30; + $32 = $31; + $33 = HEAP32[$32>>2]|0; + $34 = (($31) + 4)|0; + $35 = $34; + $36 = HEAP32[$35>>2]|0; + $37 = (($input) + 16|0); + HEAP32[$37>>2] = $33; + $38 = (($input_limbs) + 40|0); + $39 = $38; + $40 = $39; + $41 = HEAP32[$40>>2]|0; + $42 = (($39) + 4)|0; + $43 = $42; + $44 = HEAP32[$43>>2]|0; + $45 = (($input) + 20|0); + HEAP32[$45>>2] = $41; + $46 = (($input_limbs) + 48|0); + $47 = $46; + $48 = $47; + $49 = HEAP32[$48>>2]|0; + $50 = (($47) + 4)|0; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($input) + 24|0); + HEAP32[$53>>2] = $49; + $54 = (($input_limbs) + 56|0); + $55 = $54; + $56 = $55; + $57 = HEAP32[$56>>2]|0; + $58 = (($55) + 4)|0; + $59 = $58; + $60 = HEAP32[$59>>2]|0; + $61 = (($input) + 28|0); + HEAP32[$61>>2] = $57; + $62 = (($input_limbs) + 64|0); + $63 = $62; + $64 = $63; + $65 = HEAP32[$64>>2]|0; + $66 = (($63) + 4)|0; + $67 = $66; + $68 = HEAP32[$67>>2]|0; + $69 = (($input) + 32|0); + HEAP32[$69>>2] = $65; + $70 = (($input_limbs) + 72|0); + $71 = $70; + $72 = $71; + $73 = HEAP32[$72>>2]|0; + $74 = (($71) + 4)|0; + $75 = $74; + $76 = HEAP32[$75>>2]|0; + $77 = (($input) + 36|0); + HEAP32[$77>>2] = $73; + $78 = (($input) + 36|0); + $i$17 = 0; + while(1) { + $79 = $i$17 & 1; + $80 = ($79|0)==(0); + $81 = (($input) + ($i$17<<2)|0); + $82 = HEAP32[$81>>2]|0; + $83 = $82 >> 31; + $84 = $83 & $82; + if ($80) { + $92 = $84 >> 26; + $93 = Math_imul($92, -67108864)|0; + $94 = (($93) + ($82))|0; + HEAP32[$81>>2] = $94; + $95 = (($i$17) + 1)|0; + $96 = (($input) + ($95<<2)|0); + $97 = HEAP32[$96>>2]|0; + $98 = (($97) + ($92))|0; + HEAP32[$96>>2] = $98; + } else { + $85 = $84 >> 25; + $86 = Math_imul($85, -33554432)|0; + $87 = (($86) + ($82))|0; + HEAP32[$81>>2] = $87; + $88 = (($i$17) + 1)|0; + $89 = (($input) + ($88<<2)|0); + $90 = HEAP32[$89>>2]|0; + $91 = (($90) + ($85))|0; + HEAP32[$89>>2] = $91; + } + $99 = (($i$17) + 1)|0; + $exitcond14 = ($99|0)==(9); + if ($exitcond14) { + break; + } else { + $i$17 = $99; + } + } + $100 = HEAP32[$78>>2]|0; + $101 = $100 >> 31; + $102 = $101 & $100; + $103 = $102 >> 25; + $104 = Math_imul($103, -33554432)|0; + $105 = (($104) + ($100))|0; + HEAP32[$78>>2] = $105; + $106 = HEAP32[$input>>2]|0; + $107 = ($103*19)|0; + $108 = (($107) + ($106))|0; + HEAP32[$input>>2] = $108; + $i$17$1 = 0; + while(1) { + $384 = $i$17$1 & 1; + $385 = ($384|0)==(0); + $386 = (($input) + ($i$17$1<<2)|0); + $387 = HEAP32[$386>>2]|0; + $388 = $387 >> 31; + $389 = $388 & $387; + if ($385) { + $397 = $389 >> 26; + $398 = Math_imul($397, -67108864)|0; + $399 = (($398) + ($387))|0; + HEAP32[$386>>2] = $399; + $400 = (($i$17$1) + 1)|0; + $401 = (($input) + ($400<<2)|0); + $402 = HEAP32[$401>>2]|0; + $403 = (($402) + ($397))|0; + HEAP32[$401>>2] = $403; + } else { + $390 = $389 >> 25; + $391 = Math_imul($390, -33554432)|0; + $392 = (($391) + ($387))|0; + HEAP32[$386>>2] = $392; + $393 = (($i$17$1) + 1)|0; + $394 = (($input) + ($393<<2)|0); + $395 = HEAP32[$394>>2]|0; + $396 = (($395) + ($390))|0; + HEAP32[$394>>2] = $396; + } + $404 = (($i$17$1) + 1)|0; + $exitcond14$1 = ($404|0)==(9); + if ($exitcond14$1) { + break; + } else { + $i$17$1 = $404; + } + } + $109 = HEAP32[$78>>2]|0; + $110 = $109 >> 31; + $111 = $110 & $109; + $112 = $111 >> 25; + $113 = Math_imul($112, -33554432)|0; + $114 = (($113) + ($109))|0; + HEAP32[$78>>2] = $114; + $115 = HEAP32[$input>>2]|0; + $116 = ($112*19)|0; + $117 = (($116) + ($115))|0; + $118 = $117 >> 31; + $119 = $118 & $117; + $120 = $119 >> 26; + $121 = Math_imul($120, -67108864)|0; + $122 = (($121) + ($117))|0; + HEAP32[$input>>2] = $122; + $123 = (($input) + 4|0); + $124 = HEAP32[$123>>2]|0; + $125 = (($120) + ($124))|0; + HEAP32[$123>>2] = $125; + $126 = (($input) + 36|0); + $i$24 = 0; + while(1) { + $127 = $i$24 & 1; + $128 = ($127|0)==(0); + $129 = (($input) + ($i$24<<2)|0); + $130 = HEAP32[$129>>2]|0; + if ($128) { + $137 = $130 >> 26; + $138 = $130 & 67108863; + HEAP32[$129>>2] = $138; + $139 = (($i$24) + 1)|0; + $140 = (($input) + ($139<<2)|0); + $141 = HEAP32[$140>>2]|0; + $142 = (($141) + ($137))|0; + HEAP32[$140>>2] = $142; + } else { + $131 = $130 >> 25; + $132 = $130 & 33554431; + HEAP32[$129>>2] = $132; + $133 = (($i$24) + 1)|0; + $134 = (($input) + ($133<<2)|0); + $135 = HEAP32[$134>>2]|0; + $136 = (($135) + ($131))|0; + HEAP32[$134>>2] = $136; + } + $143 = (($i$24) + 1)|0; + $exitcond11 = ($143|0)==(9); + if ($exitcond11) { + break; + } else { + $i$24 = $143; + } + } + $144 = HEAP32[$126>>2]|0; + $145 = $144 >> 25; + $146 = $144 & 33554431; + HEAP32[$126>>2] = $146; + $147 = ($145*19)|0; + $148 = HEAP32[$input>>2]|0; + $149 = (($147) + ($148))|0; + HEAP32[$input>>2] = $149; + $i$24$1 = 0; + while(1) { + $360 = $i$24$1 & 1; + $361 = ($360|0)==(0); + $362 = (($input) + ($i$24$1<<2)|0); + $363 = HEAP32[$362>>2]|0; + if ($361) { + $370 = $363 >> 26; + $371 = $363 & 67108863; + HEAP32[$362>>2] = $371; + $372 = (($i$24$1) + 1)|0; + $373 = (($input) + ($372<<2)|0); + $374 = HEAP32[$373>>2]|0; + $375 = (($374) + ($370))|0; + HEAP32[$373>>2] = $375; + } else { + $364 = $363 >> 25; + $365 = $363 & 33554431; + HEAP32[$362>>2] = $365; + $366 = (($i$24$1) + 1)|0; + $367 = (($input) + ($366<<2)|0); + $368 = HEAP32[$367>>2]|0; + $369 = (($368) + ($364))|0; + HEAP32[$367>>2] = $369; + } + $376 = (($i$24$1) + 1)|0; + $exitcond11$1 = ($376|0)==(9); + if ($exitcond11$1) { + break; + } else { + $i$24$1 = $376; + } + } + $377 = HEAP32[$126>>2]|0; + $378 = $377 >> 25; + $379 = $377 & 33554431; + HEAP32[$126>>2] = $379; + $380 = ($378*19)|0; + $381 = HEAP32[$input>>2]|0; + $382 = (($380) + ($381))|0; + HEAP32[$input>>2] = $382; + $383 = (_s32_gte($382)|0); + $i$33 = 1;$mask$02 = $383; + while(1) { + $150 = $i$33 & 1; + $151 = ($150|0)==(0); + $152 = (($input) + ($i$33<<2)|0); + $153 = HEAP32[$152>>2]|0; + if ($151) { + $155 = (_s32_eq($153,67108863)|0); + $$pn = $155; + } else { + $154 = (_s32_eq($153,33554431)|0); + $$pn = $154; + } + $mask$1 = $$pn & $mask$02; + $156 = (($i$33) + 1)|0; + $exitcond = ($156|0)==(10); + if ($exitcond) { + break; + } else { + $i$33 = $156;$mask$02 = $mask$1; + } + } + $157 = $mask$1 & 67108845; + $158 = HEAP32[$input>>2]|0; + $159 = (($158) - ($157))|0; + HEAP32[$input>>2] = $159; + $160 = $mask$1 & 67108863; + $161 = $mask$1 & 33554431; + $162 = (($input) + 4|0); + $163 = HEAP32[$162>>2]|0; + $164 = (($163) - ($161))|0; + HEAP32[$162>>2] = $164; + $165 = (($input) + 8|0); + $166 = HEAP32[$165>>2]|0; + $167 = (($166) - ($160))|0; + HEAP32[$165>>2] = $167; + $168 = (($input) + 12|0); + $169 = HEAP32[$168>>2]|0; + $170 = (($169) - ($161))|0; + HEAP32[$168>>2] = $170; + $171 = (($input) + 16|0); + $172 = HEAP32[$171>>2]|0; + $173 = (($172) - ($160))|0; + HEAP32[$171>>2] = $173; + $174 = (($input) + 20|0); + $175 = HEAP32[$174>>2]|0; + $176 = (($175) - ($161))|0; + HEAP32[$174>>2] = $176; + $177 = (($input) + 24|0); + $178 = HEAP32[$177>>2]|0; + $179 = (($178) - ($160))|0; + HEAP32[$177>>2] = $179; + $180 = (($input) + 28|0); + $181 = HEAP32[$180>>2]|0; + $182 = (($181) - ($161))|0; + HEAP32[$180>>2] = $182; + $183 = (($input) + 32|0); + $184 = HEAP32[$183>>2]|0; + $185 = (($184) - ($160))|0; + HEAP32[$183>>2] = $185; + $186 = (($input) + 36|0); + $187 = HEAP32[$186>>2]|0; + $188 = (($187) - ($161))|0; + HEAP32[$186>>2] = $188; + $189 = HEAP32[$123>>2]|0; + $190 = $189 << 2; + HEAP32[$123>>2] = $190; + $191 = (($input) + 8|0); + $192 = HEAP32[$191>>2]|0; + $193 = $192 << 3; + HEAP32[$191>>2] = $193; + $194 = (($input) + 12|0); + $195 = HEAP32[$194>>2]|0; + $196 = $195 << 5; + HEAP32[$194>>2] = $196; + $197 = (($input) + 16|0); + $198 = HEAP32[$197>>2]|0; + $199 = $198 << 6; + HEAP32[$197>>2] = $199; + $200 = (($input) + 24|0); + $201 = HEAP32[$200>>2]|0; + $202 = $201 << 1; + HEAP32[$200>>2] = $202; + $203 = (($input) + 28|0); + $204 = HEAP32[$203>>2]|0; + $205 = $204 << 3; + HEAP32[$203>>2] = $205; + $206 = (($input) + 32|0); + $207 = HEAP32[$206>>2]|0; + $208 = $207 << 4; + HEAP32[$206>>2] = $208; + $209 = (($input) + 36|0); + $210 = HEAP32[$209>>2]|0; + $211 = $210 << 6; + HEAP32[$209>>2] = $211; + HEAP8[$output>>0] = 0; + $212 = (($output) + 16|0); + HEAP8[$212>>0] = 0; + $213 = HEAP32[$input>>2]|0; + $214 = HEAP8[$output>>0]|0; + $215 = $214&255; + $216 = $215 | $213; + $217 = $216&255; + HEAP8[$output>>0] = $217; + $218 = HEAP32[$input>>2]|0; + $219 = $218 >>> 8; + $220 = $219&255; + $221 = (($output) + 1|0); + HEAP8[$221>>0] = $220; + $222 = HEAP32[$input>>2]|0; + $223 = $222 >>> 16; + $224 = $223&255; + $225 = (($output) + 2|0); + HEAP8[$225>>0] = $224; + $226 = HEAP32[$input>>2]|0; + $227 = $226 >>> 24; + $228 = (($output) + 3|0); + $229 = HEAP32[$123>>2]|0; + $230 = $227 | $229; + $231 = $230&255; + HEAP8[$228>>0] = $231; + $232 = HEAP32[$123>>2]|0; + $233 = $232 >>> 8; + $234 = $233&255; + $235 = (($output) + 4|0); + HEAP8[$235>>0] = $234; + $236 = HEAP32[$123>>2]|0; + $237 = $236 >>> 16; + $238 = $237&255; + $239 = (($output) + 5|0); + HEAP8[$239>>0] = $238; + $240 = HEAP32[$123>>2]|0; + $241 = $240 >>> 24; + $242 = (($output) + 6|0); + $243 = HEAP32[$191>>2]|0; + $244 = $241 | $243; + $245 = $244&255; + HEAP8[$242>>0] = $245; + $246 = HEAP32[$191>>2]|0; + $247 = $246 >>> 8; + $248 = $247&255; + $249 = (($output) + 7|0); + HEAP8[$249>>0] = $248; + $250 = HEAP32[$191>>2]|0; + $251 = $250 >>> 16; + $252 = $251&255; + $253 = (($output) + 8|0); + HEAP8[$253>>0] = $252; + $254 = HEAP32[$191>>2]|0; + $255 = $254 >>> 24; + $256 = (($output) + 9|0); + $257 = HEAP32[$194>>2]|0; + $258 = $255 | $257; + $259 = $258&255; + HEAP8[$256>>0] = $259; + $260 = HEAP32[$194>>2]|0; + $261 = $260 >>> 8; + $262 = $261&255; + $263 = (($output) + 10|0); + HEAP8[$263>>0] = $262; + $264 = HEAP32[$194>>2]|0; + $265 = $264 >>> 16; + $266 = $265&255; + $267 = (($output) + 11|0); + HEAP8[$267>>0] = $266; + $268 = HEAP32[$194>>2]|0; + $269 = $268 >>> 24; + $270 = (($output) + 12|0); + $271 = HEAP32[$197>>2]|0; + $272 = $269 | $271; + $273 = $272&255; + HEAP8[$270>>0] = $273; + $274 = HEAP32[$197>>2]|0; + $275 = $274 >>> 8; + $276 = $275&255; + $277 = (($output) + 13|0); + HEAP8[$277>>0] = $276; + $278 = HEAP32[$197>>2]|0; + $279 = $278 >>> 16; + $280 = $279&255; + $281 = (($output) + 14|0); + HEAP8[$281>>0] = $280; + $282 = HEAP32[$197>>2]|0; + $283 = $282 >>> 24; + $284 = $283&255; + $285 = (($output) + 15|0); + HEAP8[$285>>0] = $284; + $286 = (($input) + 20|0); + $287 = HEAP32[$286>>2]|0; + $288 = HEAP8[$212>>0]|0; + $289 = $288&255; + $290 = $289 | $287; + $291 = $290&255; + HEAP8[$212>>0] = $291; + $292 = HEAP32[$286>>2]|0; + $293 = $292 >>> 8; + $294 = $293&255; + $295 = (($output) + 17|0); + HEAP8[$295>>0] = $294; + $296 = HEAP32[$286>>2]|0; + $297 = $296 >>> 16; + $298 = $297&255; + $299 = (($output) + 18|0); + HEAP8[$299>>0] = $298; + $300 = HEAP32[$286>>2]|0; + $301 = $300 >>> 24; + $302 = (($output) + 19|0); + $303 = HEAP32[$200>>2]|0; + $304 = $301 | $303; + $305 = $304&255; + HEAP8[$302>>0] = $305; + $306 = HEAP32[$200>>2]|0; + $307 = $306 >>> 8; + $308 = $307&255; + $309 = (($output) + 20|0); + HEAP8[$309>>0] = $308; + $310 = HEAP32[$200>>2]|0; + $311 = $310 >>> 16; + $312 = $311&255; + $313 = (($output) + 21|0); + HEAP8[$313>>0] = $312; + $314 = HEAP32[$200>>2]|0; + $315 = $314 >>> 24; + $316 = (($output) + 22|0); + $317 = HEAP32[$203>>2]|0; + $318 = $315 | $317; + $319 = $318&255; + HEAP8[$316>>0] = $319; + $320 = HEAP32[$203>>2]|0; + $321 = $320 >>> 8; + $322 = $321&255; + $323 = (($output) + 23|0); + HEAP8[$323>>0] = $322; + $324 = HEAP32[$203>>2]|0; + $325 = $324 >>> 16; + $326 = $325&255; + $327 = (($output) + 24|0); + HEAP8[$327>>0] = $326; + $328 = HEAP32[$203>>2]|0; + $329 = $328 >>> 24; + $330 = (($output) + 25|0); + $331 = HEAP32[$206>>2]|0; + $332 = $329 | $331; + $333 = $332&255; + HEAP8[$330>>0] = $333; + $334 = HEAP32[$206>>2]|0; + $335 = $334 >>> 8; + $336 = $335&255; + $337 = (($output) + 26|0); + HEAP8[$337>>0] = $336; + $338 = HEAP32[$206>>2]|0; + $339 = $338 >>> 16; + $340 = $339&255; + $341 = (($output) + 27|0); + HEAP8[$341>>0] = $340; + $342 = HEAP32[$206>>2]|0; + $343 = $342 >>> 24; + $344 = (($output) + 28|0); + $345 = HEAP32[$209>>2]|0; + $346 = $343 | $345; + $347 = $346&255; + HEAP8[$344>>0] = $347; + $348 = HEAP32[$209>>2]|0; + $349 = $348 >>> 8; + $350 = $349&255; + $351 = (($output) + 29|0); + HEAP8[$351>>0] = $350; + $352 = HEAP32[$209>>2]|0; + $353 = $352 >>> 16; + $354 = $353&255; + $355 = (($output) + 30|0); + HEAP8[$355>>0] = $354; + $356 = HEAP32[$209>>2]|0; + $357 = $356 >>> 24; + $358 = $357&255; + $359 = (($output) + 31|0); + HEAP8[$359>>0] = $358; + STACKTOP = sp;return; +} +function _swap_conditional($a,$b,$0,$1) { + $a = $a|0; + $b = $b|0; + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0; + var $9 = 0, $exitcond = 0, $i$02 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = (_i64Subtract(0,0,($0|0),($1|0))|0); + $3 = tempRet0; + $i$02 = 0; + while(1) { + $4 = (($a) + ($i$02<<3)|0); + $5 = $4; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = (($5) + 4)|0; + $9 = $8; + $10 = HEAP32[$9>>2]|0; + $11 = (($b) + ($i$02<<3)|0); + $12 = $11; + $13 = $12; + $14 = HEAP32[$13>>2]|0; + $15 = (($12) + 4)|0; + $16 = $15; + $17 = HEAP32[$16>>2]|0; + $18 = $14 ^ $7; + $19 = $17 ^ $10; + $20 = $18 & $2; + $21 = $19 & $3; + $22 = $20 ^ $7; + $21 ^ $10; + $23 = (_bitshift64Ashr(0,($22|0),32)|0); + $24 = tempRet0; + $25 = $4; + $26 = $25; + HEAP32[$26>>2] = $23; + $27 = (($25) + 4)|0; + $28 = $27; + HEAP32[$28>>2] = $24; + $29 = $11; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = (($29) + 4)|0; + $33 = $32; + $34 = HEAP32[$33>>2]|0; + $35 = $20 ^ $31; + $21 ^ $34; + $36 = (_bitshift64Ashr(0,($35|0),32)|0); + $37 = tempRet0; + $38 = $11; + $39 = $38; + HEAP32[$39>>2] = $36; + $40 = (($38) + 4)|0; + $41 = $40; + HEAP32[$41>>2] = $37; + $42 = (($i$02) + 1)|0; + $exitcond = ($42|0)==(10); + if ($exitcond) { + break; + } else { + $i$02 = $42; + } + } + STACKTOP = sp;return; +} +function _fmonty($x2,$z2,$x3,$z3,$x,$z,$xprime,$zprime,$qmqp) { + $x2 = $x2|0; + $z2 = $z2|0; + $x3 = $x3|0; + $z3 = $z3|0; + $x = $x|0; + $z = $z|0; + $xprime = $xprime|0; + $zprime = $zprime|0; + $qmqp = $qmqp|0; + var $0 = 0, $origx = 0, $origxprime = 0, $xx = 0, $xxprime = 0, $xxxprime = 0, $zz = 0, $zzprime = 0, $zzz = 0, $zzzprime = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 1232|0; + $origx = sp + 1144|0; + $origxprime = sp + 1064|0; + $zzz = sp + 912|0; + $xx = sp + 760|0; + $zz = sp + 608|0; + $xxprime = sp + 456|0; + $zzprime = sp + 304|0; + $zzzprime = sp + 152|0; + $xxxprime = sp; + dest=$origx+0|0; src=$x+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($x,$z); + _fdifference($z,$origx); + dest=$origxprime+0|0; src=$xprime+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($xprime,$zprime); + _fdifference($zprime,$origxprime); + _fproduct($xxprime,$xprime,$z); + _fproduct($zzprime,$x,$zprime); + _freduce_degree($xxprime); + _freduce_coefficients($xxprime); + _freduce_degree($zzprime); + _freduce_coefficients($zzprime); + dest=$origxprime+0|0; src=$xxprime+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($xxprime,$zzprime); + _fdifference($zzprime,$origxprime); + _fsquare($xxxprime,$xxprime); + _fsquare($zzzprime,$zzprime); + _fproduct($zzprime,$zzzprime,$qmqp); + _freduce_degree($zzprime); + _freduce_coefficients($zzprime); + dest=$x3+0|0; src=$xxxprime+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + dest=$z3+0|0; src=$zzprime+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsquare($xx,$x); + _fsquare($zz,$z); + _fproduct($x2,$xx,$zz); + _freduce_degree($x2); + _freduce_coefficients($x2); + _fdifference($zz,$xx); + $0 = (($zzz) + 80|0); + dest=$0+0|0; stop=dest+72|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + _fscalar_product($zzz,$zz); + _freduce_coefficients($zzz); + _fsum($zzz,$xx); + _fproduct($z2,$zz,$zzz); + _freduce_degree($z2); + _freduce_coefficients($z2); + STACKTOP = sp;return; +} +function _fsquare($output,$in) { + $output = $output|0; + $in = $in|0; + var $t = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 160|0; + $t = sp; + _fsquare_inner($t,$in); + _freduce_degree($t); + _freduce_coefficients($t); + dest=$output+0|0; src=$t+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _fproduct($output,$in2,$in) { + $output = $output|0; + $in2 = $in2|0; + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; + var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; + var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; + var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; + var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; + var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; + var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0; + var $1123 = 0, $1124 = 0, $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0; + var $1141 = 0, $1142 = 0, $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0; + var $116 = 0, $1160 = 0, $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0; + var $1178 = 0, $1179 = 0, $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0; + var $1196 = 0, $1197 = 0, $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0; + var $1213 = 0, $1214 = 0, $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0; + var $1231 = 0, $1232 = 0, $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0; + var $125 = 0, $1250 = 0, $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0; + var $1268 = 0, $1269 = 0, $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0; + var $1286 = 0, $1287 = 0, $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0; + var $1303 = 0, $1304 = 0, $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0; + var $1321 = 0, $1322 = 0, $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0; + var $134 = 0, $1340 = 0, $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0; + var $1358 = 0, $1359 = 0, $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0; + var $1376 = 0, $1377 = 0, $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0; + var $1394 = 0, $1395 = 0, $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0; + var $1411 = 0, $1412 = 0, $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0; + var $143 = 0, $1430 = 0, $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0; + var $1448 = 0, $1449 = 0, $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0; + var $1466 = 0, $1467 = 0, $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0; + var $1484 = 0, $1485 = 0, $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0; + var $1501 = 0, $1502 = 0, $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0; + var $152 = 0, $1520 = 0, $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0; + var $1538 = 0, $1539 = 0, $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0; + var $1556 = 0, $1557 = 0, $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0; + var $1574 = 0, $1575 = 0, $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0; + var $1592 = 0, $1593 = 0, $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0; + var $161 = 0, $1610 = 0, $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0; + var $1628 = 0, $1629 = 0, $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0; + var $1646 = 0, $1647 = 0, $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0; + var $1664 = 0, $1665 = 0, $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0; + var $1682 = 0, $1683 = 0, $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0; + var $170 = 0, $1700 = 0, $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0; + var $1718 = 0, $1719 = 0, $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0; + var $1736 = 0, $1737 = 0, $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0; + var $1754 = 0, $1755 = 0, $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0; + var $1772 = 0, $1773 = 0, $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0; + var $1790 = 0, $1791 = 0, $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0; + var $1808 = 0, $1809 = 0, $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0; + var $1826 = 0, $1827 = 0, $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0; + var $1844 = 0, $1845 = 0, $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0; + var $1862 = 0, $1863 = 0, $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $1879 = 0, $188 = 0; + var $1880 = 0, $1881 = 0, $1882 = 0, $1883 = 0, $1884 = 0, $1885 = 0, $1886 = 0, $1887 = 0, $1888 = 0, $1889 = 0, $189 = 0, $1890 = 0, $1891 = 0, $1892 = 0, $1893 = 0, $1894 = 0, $1895 = 0, $1896 = 0, $1897 = 0, $1898 = 0; + var $1899 = 0, $19 = 0, $190 = 0, $1900 = 0, $1901 = 0, $1902 = 0, $1903 = 0, $1904 = 0, $1905 = 0, $1906 = 0, $1907 = 0, $1908 = 0, $1909 = 0, $191 = 0, $1910 = 0, $1911 = 0, $1912 = 0, $1913 = 0, $1914 = 0, $1915 = 0; + var $1916 = 0, $1917 = 0, $1918 = 0, $1919 = 0, $192 = 0, $1920 = 0, $1921 = 0, $1922 = 0, $1923 = 0, $1924 = 0, $1925 = 0, $1926 = 0, $1927 = 0, $1928 = 0, $1929 = 0, $193 = 0, $1930 = 0, $1931 = 0, $1932 = 0, $1933 = 0; + var $1934 = 0, $1935 = 0, $1936 = 0, $1937 = 0, $1938 = 0, $1939 = 0, $194 = 0, $1940 = 0, $1941 = 0, $1942 = 0, $1943 = 0, $1944 = 0, $1945 = 0, $1946 = 0, $1947 = 0, $1948 = 0, $1949 = 0, $195 = 0, $1950 = 0, $1951 = 0; + var $1952 = 0, $1953 = 0, $1954 = 0, $1955 = 0, $1956 = 0, $1957 = 0, $1958 = 0, $1959 = 0, $196 = 0, $1960 = 0, $1961 = 0, $1962 = 0, $1963 = 0, $1964 = 0, $1965 = 0, $1966 = 0, $1967 = 0, $1968 = 0, $1969 = 0, $197 = 0; + var $1970 = 0, $1971 = 0, $1972 = 0, $1973 = 0, $1974 = 0, $1975 = 0, $1976 = 0, $1977 = 0, $1978 = 0, $1979 = 0, $198 = 0, $1980 = 0, $1981 = 0, $1982 = 0, $1983 = 0, $1984 = 0, $1985 = 0, $1986 = 0, $1987 = 0, $1988 = 0; + var $1989 = 0, $199 = 0, $1990 = 0, $1991 = 0, $1992 = 0, $1993 = 0, $1994 = 0, $1995 = 0, $1996 = 0, $1997 = 0, $1998 = 0, $1999 = 0, $2 = 0, $20 = 0, $200 = 0, $2000 = 0, $2001 = 0, $2002 = 0, $2003 = 0, $2004 = 0; + var $2005 = 0, $2006 = 0, $2007 = 0, $2008 = 0, $2009 = 0, $201 = 0, $2010 = 0, $2011 = 0, $2012 = 0, $2013 = 0, $2014 = 0, $2015 = 0, $2016 = 0, $2017 = 0, $2018 = 0, $2019 = 0, $202 = 0, $2020 = 0, $2021 = 0, $2022 = 0; + var $2023 = 0, $2024 = 0, $2025 = 0, $2026 = 0, $2027 = 0, $2028 = 0, $2029 = 0, $203 = 0, $2030 = 0, $2031 = 0, $2032 = 0, $2033 = 0, $2034 = 0, $2035 = 0, $2036 = 0, $2037 = 0, $2038 = 0, $2039 = 0, $204 = 0, $2040 = 0; + var $2041 = 0, $2042 = 0, $2043 = 0, $2044 = 0, $2045 = 0, $2046 = 0, $2047 = 0, $2048 = 0, $2049 = 0, $205 = 0, $2050 = 0, $2051 = 0, $2052 = 0, $2053 = 0, $2054 = 0, $2055 = 0, $2056 = 0, $2057 = 0, $2058 = 0, $2059 = 0; + var $206 = 0, $2060 = 0, $2061 = 0, $2062 = 0, $2063 = 0, $2064 = 0, $2065 = 0, $2066 = 0, $2067 = 0, $2068 = 0, $2069 = 0, $207 = 0, $2070 = 0, $2071 = 0, $2072 = 0, $2073 = 0, $2074 = 0, $2075 = 0, $2076 = 0, $2077 = 0; + var $2078 = 0, $2079 = 0, $208 = 0, $2080 = 0, $2081 = 0, $2082 = 0, $2083 = 0, $2084 = 0, $2085 = 0, $2086 = 0, $2087 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0; + var $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0; + var $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0; + var $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0; + var $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0; + var $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0; + var $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0; + var $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0; + var $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0; + var $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0; + var $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0; + var $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0; + var $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0; + var $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0; + var $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0; + var $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0; + var $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0; + var $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0; + var $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0; + var $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0; + var $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0; + var $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0; + var $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0; + var $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0; + var $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0; + var $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0; + var $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0; + var $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0; + var $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0; + var $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0; + var $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0; + var $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0; + var $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0; + var $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0; + var $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0; + var $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0; + var $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0; + var $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0; + var $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0; + var $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0; + var $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0; + var $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0; + var $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0; + var $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0; + var $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $in2; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = (_bitshift64Ashr(0,($2|0),32)|0); + $7 = tempRet0; + $8 = $in; + $9 = $8; + $10 = HEAP32[$9>>2]|0; + $11 = (($8) + 4)|0; + $12 = $11; + $13 = HEAP32[$12>>2]|0; + $14 = (_bitshift64Ashr(0,($10|0),32)|0); + $15 = tempRet0; + $16 = (___muldi3(($14|0),($15|0),($6|0),($7|0))|0); + $17 = tempRet0; + $18 = $output; + $19 = $18; + HEAP32[$19>>2] = $16; + $20 = (($18) + 4)|0; + $21 = $20; + HEAP32[$21>>2] = $17; + $22 = $in2; + $23 = $22; + $24 = HEAP32[$23>>2]|0; + $25 = (($22) + 4)|0; + $26 = $25; + $27 = HEAP32[$26>>2]|0; + $28 = (_bitshift64Ashr(0,($24|0),32)|0); + $29 = tempRet0; + $30 = (($in) + 8|0); + $31 = $30; + $32 = $31; + $33 = HEAP32[$32>>2]|0; + $34 = (($31) + 4)|0; + $35 = $34; + $36 = HEAP32[$35>>2]|0; + $37 = (_bitshift64Ashr(0,($33|0),32)|0); + $38 = tempRet0; + $39 = (___muldi3(($37|0),($38|0),($28|0),($29|0))|0); + $40 = tempRet0; + $41 = (($in2) + 8|0); + $42 = $41; + $43 = $42; + $44 = HEAP32[$43>>2]|0; + $45 = (($42) + 4)|0; + $46 = $45; + $47 = HEAP32[$46>>2]|0; + $48 = (_bitshift64Ashr(0,($44|0),32)|0); + $49 = tempRet0; + $50 = $in; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + $56 = (_bitshift64Ashr(0,($52|0),32)|0); + $57 = tempRet0; + $58 = (___muldi3(($56|0),($57|0),($48|0),($49|0))|0); + $59 = tempRet0; + $60 = (_i64Add(($58|0),($59|0),($39|0),($40|0))|0); + $61 = tempRet0; + $62 = (($output) + 8|0); + $63 = $62; + $64 = $63; + HEAP32[$64>>2] = $60; + $65 = (($63) + 4)|0; + $66 = $65; + HEAP32[$66>>2] = $61; + $67 = $41; + $68 = $67; + $69 = HEAP32[$68>>2]|0; + $70 = (($67) + 4)|0; + $71 = $70; + $72 = HEAP32[$71>>2]|0; + $73 = (_bitshift64Ashr(0,($69|0),31)|0); + $74 = tempRet0; + $75 = $30; + $76 = $75; + $77 = HEAP32[$76>>2]|0; + $78 = (($75) + 4)|0; + $79 = $78; + $80 = HEAP32[$79>>2]|0; + $81 = (_bitshift64Ashr(0,($77|0),32)|0); + $82 = tempRet0; + $83 = (___muldi3(($81|0),($82|0),($73|0),($74|0))|0); + $84 = tempRet0; + $85 = $in2; + $86 = $85; + $87 = HEAP32[$86>>2]|0; + $88 = (($85) + 4)|0; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (_bitshift64Ashr(0,($87|0),32)|0); + $92 = tempRet0; + $93 = (($in) + 16|0); + $94 = $93; + $95 = $94; + $96 = HEAP32[$95>>2]|0; + $97 = (($94) + 4)|0; + $98 = $97; + $99 = HEAP32[$98>>2]|0; + $100 = (_bitshift64Ashr(0,($96|0),32)|0); + $101 = tempRet0; + $102 = (___muldi3(($100|0),($101|0),($91|0),($92|0))|0); + $103 = tempRet0; + $104 = (_i64Add(($102|0),($103|0),($83|0),($84|0))|0); + $105 = tempRet0; + $106 = (($in2) + 16|0); + $107 = $106; + $108 = $107; + $109 = HEAP32[$108>>2]|0; + $110 = (($107) + 4)|0; + $111 = $110; + $112 = HEAP32[$111>>2]|0; + $113 = (_bitshift64Ashr(0,($109|0),32)|0); + $114 = tempRet0; + $115 = $in; + $116 = $115; + $117 = HEAP32[$116>>2]|0; + $118 = (($115) + 4)|0; + $119 = $118; + $120 = HEAP32[$119>>2]|0; + $121 = (_bitshift64Ashr(0,($117|0),32)|0); + $122 = tempRet0; + $123 = (___muldi3(($121|0),($122|0),($113|0),($114|0))|0); + $124 = tempRet0; + $125 = (_i64Add(($104|0),($105|0),($123|0),($124|0))|0); + $126 = tempRet0; + $127 = (($output) + 16|0); + $128 = $127; + $129 = $128; + HEAP32[$129>>2] = $125; + $130 = (($128) + 4)|0; + $131 = $130; + HEAP32[$131>>2] = $126; + $132 = $41; + $133 = $132; + $134 = HEAP32[$133>>2]|0; + $135 = (($132) + 4)|0; + $136 = $135; + $137 = HEAP32[$136>>2]|0; + $138 = (_bitshift64Ashr(0,($134|0),32)|0); + $139 = tempRet0; + $140 = $93; + $141 = $140; + $142 = HEAP32[$141>>2]|0; + $143 = (($140) + 4)|0; + $144 = $143; + $145 = HEAP32[$144>>2]|0; + $146 = (_bitshift64Ashr(0,($142|0),32)|0); + $147 = tempRet0; + $148 = (___muldi3(($146|0),($147|0),($138|0),($139|0))|0); + $149 = tempRet0; + $150 = $106; + $151 = $150; + $152 = HEAP32[$151>>2]|0; + $153 = (($150) + 4)|0; + $154 = $153; + $155 = HEAP32[$154>>2]|0; + $156 = (_bitshift64Ashr(0,($152|0),32)|0); + $157 = tempRet0; + $158 = $30; + $159 = $158; + $160 = HEAP32[$159>>2]|0; + $161 = (($158) + 4)|0; + $162 = $161; + $163 = HEAP32[$162>>2]|0; + $164 = (_bitshift64Ashr(0,($160|0),32)|0); + $165 = tempRet0; + $166 = (___muldi3(($164|0),($165|0),($156|0),($157|0))|0); + $167 = tempRet0; + $168 = (_i64Add(($166|0),($167|0),($148|0),($149|0))|0); + $169 = tempRet0; + $170 = $in2; + $171 = $170; + $172 = HEAP32[$171>>2]|0; + $173 = (($170) + 4)|0; + $174 = $173; + $175 = HEAP32[$174>>2]|0; + $176 = (_bitshift64Ashr(0,($172|0),32)|0); + $177 = tempRet0; + $178 = (($in) + 24|0); + $179 = $178; + $180 = $179; + $181 = HEAP32[$180>>2]|0; + $182 = (($179) + 4)|0; + $183 = $182; + $184 = HEAP32[$183>>2]|0; + $185 = (_bitshift64Ashr(0,($181|0),32)|0); + $186 = tempRet0; + $187 = (___muldi3(($185|0),($186|0),($176|0),($177|0))|0); + $188 = tempRet0; + $189 = (_i64Add(($168|0),($169|0),($187|0),($188|0))|0); + $190 = tempRet0; + $191 = (($in2) + 24|0); + $192 = $191; + $193 = $192; + $194 = HEAP32[$193>>2]|0; + $195 = (($192) + 4)|0; + $196 = $195; + $197 = HEAP32[$196>>2]|0; + $198 = (_bitshift64Ashr(0,($194|0),32)|0); + $199 = tempRet0; + $200 = $in; + $201 = $200; + $202 = HEAP32[$201>>2]|0; + $203 = (($200) + 4)|0; + $204 = $203; + $205 = HEAP32[$204>>2]|0; + $206 = (_bitshift64Ashr(0,($202|0),32)|0); + $207 = tempRet0; + $208 = (___muldi3(($206|0),($207|0),($198|0),($199|0))|0); + $209 = tempRet0; + $210 = (_i64Add(($189|0),($190|0),($208|0),($209|0))|0); + $211 = tempRet0; + $212 = (($output) + 24|0); + $213 = $212; + $214 = $213; + HEAP32[$214>>2] = $210; + $215 = (($213) + 4)|0; + $216 = $215; + HEAP32[$216>>2] = $211; + $217 = $106; + $218 = $217; + $219 = HEAP32[$218>>2]|0; + $220 = (($217) + 4)|0; + $221 = $220; + $222 = HEAP32[$221>>2]|0; + $223 = (_bitshift64Ashr(0,($219|0),32)|0); + $224 = tempRet0; + $225 = $93; + $226 = $225; + $227 = HEAP32[$226>>2]|0; + $228 = (($225) + 4)|0; + $229 = $228; + $230 = HEAP32[$229>>2]|0; + $231 = (_bitshift64Ashr(0,($227|0),32)|0); + $232 = tempRet0; + $233 = (___muldi3(($231|0),($232|0),($223|0),($224|0))|0); + $234 = tempRet0; + $235 = $41; + $236 = $235; + $237 = HEAP32[$236>>2]|0; + $238 = (($235) + 4)|0; + $239 = $238; + $240 = HEAP32[$239>>2]|0; + $241 = (_bitshift64Ashr(0,($237|0),32)|0); + $242 = tempRet0; + $243 = $178; + $244 = $243; + $245 = HEAP32[$244>>2]|0; + $246 = (($243) + 4)|0; + $247 = $246; + $248 = HEAP32[$247>>2]|0; + $249 = (_bitshift64Ashr(0,($245|0),32)|0); + $250 = tempRet0; + $251 = (___muldi3(($249|0),($250|0),($241|0),($242|0))|0); + $252 = tempRet0; + $253 = $191; + $254 = $253; + $255 = HEAP32[$254>>2]|0; + $256 = (($253) + 4)|0; + $257 = $256; + $258 = HEAP32[$257>>2]|0; + $259 = (_bitshift64Ashr(0,($255|0),32)|0); + $260 = tempRet0; + $261 = $30; + $262 = $261; + $263 = HEAP32[$262>>2]|0; + $264 = (($261) + 4)|0; + $265 = $264; + $266 = HEAP32[$265>>2]|0; + $267 = (_bitshift64Ashr(0,($263|0),32)|0); + $268 = tempRet0; + $269 = (___muldi3(($267|0),($268|0),($259|0),($260|0))|0); + $270 = tempRet0; + $271 = (_i64Add(($269|0),($270|0),($251|0),($252|0))|0); + $272 = tempRet0; + $273 = (_bitshift64Shl(($271|0),($272|0),1)|0); + $274 = tempRet0; + $275 = (_i64Add(($273|0),($274|0),($233|0),($234|0))|0); + $276 = tempRet0; + $277 = $in2; + $278 = $277; + $279 = HEAP32[$278>>2]|0; + $280 = (($277) + 4)|0; + $281 = $280; + $282 = HEAP32[$281>>2]|0; + $283 = (_bitshift64Ashr(0,($279|0),32)|0); + $284 = tempRet0; + $285 = (($in) + 32|0); + $286 = $285; + $287 = $286; + $288 = HEAP32[$287>>2]|0; + $289 = (($286) + 4)|0; + $290 = $289; + $291 = HEAP32[$290>>2]|0; + $292 = (_bitshift64Ashr(0,($288|0),32)|0); + $293 = tempRet0; + $294 = (___muldi3(($292|0),($293|0),($283|0),($284|0))|0); + $295 = tempRet0; + $296 = (_i64Add(($275|0),($276|0),($294|0),($295|0))|0); + $297 = tempRet0; + $298 = (($in2) + 32|0); + $299 = $298; + $300 = $299; + $301 = HEAP32[$300>>2]|0; + $302 = (($299) + 4)|0; + $303 = $302; + $304 = HEAP32[$303>>2]|0; + $305 = (_bitshift64Ashr(0,($301|0),32)|0); + $306 = tempRet0; + $307 = $in; + $308 = $307; + $309 = HEAP32[$308>>2]|0; + $310 = (($307) + 4)|0; + $311 = $310; + $312 = HEAP32[$311>>2]|0; + $313 = (_bitshift64Ashr(0,($309|0),32)|0); + $314 = tempRet0; + $315 = (___muldi3(($313|0),($314|0),($305|0),($306|0))|0); + $316 = tempRet0; + $317 = (_i64Add(($296|0),($297|0),($315|0),($316|0))|0); + $318 = tempRet0; + $319 = (($output) + 32|0); + $320 = $319; + $321 = $320; + HEAP32[$321>>2] = $317; + $322 = (($320) + 4)|0; + $323 = $322; + HEAP32[$323>>2] = $318; + $324 = $106; + $325 = $324; + $326 = HEAP32[$325>>2]|0; + $327 = (($324) + 4)|0; + $328 = $327; + $329 = HEAP32[$328>>2]|0; + $330 = (_bitshift64Ashr(0,($326|0),32)|0); + $331 = tempRet0; + $332 = $178; + $333 = $332; + $334 = HEAP32[$333>>2]|0; + $335 = (($332) + 4)|0; + $336 = $335; + $337 = HEAP32[$336>>2]|0; + $338 = (_bitshift64Ashr(0,($334|0),32)|0); + $339 = tempRet0; + $340 = (___muldi3(($338|0),($339|0),($330|0),($331|0))|0); + $341 = tempRet0; + $342 = $191; + $343 = $342; + $344 = HEAP32[$343>>2]|0; + $345 = (($342) + 4)|0; + $346 = $345; + $347 = HEAP32[$346>>2]|0; + $348 = (_bitshift64Ashr(0,($344|0),32)|0); + $349 = tempRet0; + $350 = $93; + $351 = $350; + $352 = HEAP32[$351>>2]|0; + $353 = (($350) + 4)|0; + $354 = $353; + $355 = HEAP32[$354>>2]|0; + $356 = (_bitshift64Ashr(0,($352|0),32)|0); + $357 = tempRet0; + $358 = (___muldi3(($356|0),($357|0),($348|0),($349|0))|0); + $359 = tempRet0; + $360 = (_i64Add(($358|0),($359|0),($340|0),($341|0))|0); + $361 = tempRet0; + $362 = $41; + $363 = $362; + $364 = HEAP32[$363>>2]|0; + $365 = (($362) + 4)|0; + $366 = $365; + $367 = HEAP32[$366>>2]|0; + $368 = (_bitshift64Ashr(0,($364|0),32)|0); + $369 = tempRet0; + $370 = $285; + $371 = $370; + $372 = HEAP32[$371>>2]|0; + $373 = (($370) + 4)|0; + $374 = $373; + $375 = HEAP32[$374>>2]|0; + $376 = (_bitshift64Ashr(0,($372|0),32)|0); + $377 = tempRet0; + $378 = (___muldi3(($376|0),($377|0),($368|0),($369|0))|0); + $379 = tempRet0; + $380 = (_i64Add(($360|0),($361|0),($378|0),($379|0))|0); + $381 = tempRet0; + $382 = $298; + $383 = $382; + $384 = HEAP32[$383>>2]|0; + $385 = (($382) + 4)|0; + $386 = $385; + $387 = HEAP32[$386>>2]|0; + $388 = (_bitshift64Ashr(0,($384|0),32)|0); + $389 = tempRet0; + $390 = $30; + $391 = $390; + $392 = HEAP32[$391>>2]|0; + $393 = (($390) + 4)|0; + $394 = $393; + $395 = HEAP32[$394>>2]|0; + $396 = (_bitshift64Ashr(0,($392|0),32)|0); + $397 = tempRet0; + $398 = (___muldi3(($396|0),($397|0),($388|0),($389|0))|0); + $399 = tempRet0; + $400 = (_i64Add(($380|0),($381|0),($398|0),($399|0))|0); + $401 = tempRet0; + $402 = $in2; + $403 = $402; + $404 = HEAP32[$403>>2]|0; + $405 = (($402) + 4)|0; + $406 = $405; + $407 = HEAP32[$406>>2]|0; + $408 = (_bitshift64Ashr(0,($404|0),32)|0); + $409 = tempRet0; + $410 = (($in) + 40|0); + $411 = $410; + $412 = $411; + $413 = HEAP32[$412>>2]|0; + $414 = (($411) + 4)|0; + $415 = $414; + $416 = HEAP32[$415>>2]|0; + $417 = (_bitshift64Ashr(0,($413|0),32)|0); + $418 = tempRet0; + $419 = (___muldi3(($417|0),($418|0),($408|0),($409|0))|0); + $420 = tempRet0; + $421 = (_i64Add(($400|0),($401|0),($419|0),($420|0))|0); + $422 = tempRet0; + $423 = (($in2) + 40|0); + $424 = $423; + $425 = $424; + $426 = HEAP32[$425>>2]|0; + $427 = (($424) + 4)|0; + $428 = $427; + $429 = HEAP32[$428>>2]|0; + $430 = (_bitshift64Ashr(0,($426|0),32)|0); + $431 = tempRet0; + $432 = $in; + $433 = $432; + $434 = HEAP32[$433>>2]|0; + $435 = (($432) + 4)|0; + $436 = $435; + $437 = HEAP32[$436>>2]|0; + $438 = (_bitshift64Ashr(0,($434|0),32)|0); + $439 = tempRet0; + $440 = (___muldi3(($438|0),($439|0),($430|0),($431|0))|0); + $441 = tempRet0; + $442 = (_i64Add(($421|0),($422|0),($440|0),($441|0))|0); + $443 = tempRet0; + $444 = (($output) + 40|0); + $445 = $444; + $446 = $445; + HEAP32[$446>>2] = $442; + $447 = (($445) + 4)|0; + $448 = $447; + HEAP32[$448>>2] = $443; + $449 = $191; + $450 = $449; + $451 = HEAP32[$450>>2]|0; + $452 = (($449) + 4)|0; + $453 = $452; + $454 = HEAP32[$453>>2]|0; + $455 = (_bitshift64Ashr(0,($451|0),32)|0); + $456 = tempRet0; + $457 = $178; + $458 = $457; + $459 = HEAP32[$458>>2]|0; + $460 = (($457) + 4)|0; + $461 = $460; + $462 = HEAP32[$461>>2]|0; + $463 = (_bitshift64Ashr(0,($459|0),32)|0); + $464 = tempRet0; + $465 = (___muldi3(($463|0),($464|0),($455|0),($456|0))|0); + $466 = tempRet0; + $467 = $41; + $468 = $467; + $469 = HEAP32[$468>>2]|0; + $470 = (($467) + 4)|0; + $471 = $470; + $472 = HEAP32[$471>>2]|0; + $473 = (_bitshift64Ashr(0,($469|0),32)|0); + $474 = tempRet0; + $475 = $410; + $476 = $475; + $477 = HEAP32[$476>>2]|0; + $478 = (($475) + 4)|0; + $479 = $478; + $480 = HEAP32[$479>>2]|0; + $481 = (_bitshift64Ashr(0,($477|0),32)|0); + $482 = tempRet0; + $483 = (___muldi3(($481|0),($482|0),($473|0),($474|0))|0); + $484 = tempRet0; + $485 = (_i64Add(($483|0),($484|0),($465|0),($466|0))|0); + $486 = tempRet0; + $487 = $423; + $488 = $487; + $489 = HEAP32[$488>>2]|0; + $490 = (($487) + 4)|0; + $491 = $490; + $492 = HEAP32[$491>>2]|0; + $493 = (_bitshift64Ashr(0,($489|0),32)|0); + $494 = tempRet0; + $495 = $30; + $496 = $495; + $497 = HEAP32[$496>>2]|0; + $498 = (($495) + 4)|0; + $499 = $498; + $500 = HEAP32[$499>>2]|0; + $501 = (_bitshift64Ashr(0,($497|0),32)|0); + $502 = tempRet0; + $503 = (___muldi3(($501|0),($502|0),($493|0),($494|0))|0); + $504 = tempRet0; + $505 = (_i64Add(($485|0),($486|0),($503|0),($504|0))|0); + $506 = tempRet0; + $507 = (_bitshift64Shl(($505|0),($506|0),1)|0); + $508 = tempRet0; + $509 = $106; + $510 = $509; + $511 = HEAP32[$510>>2]|0; + $512 = (($509) + 4)|0; + $513 = $512; + $514 = HEAP32[$513>>2]|0; + $515 = (_bitshift64Ashr(0,($511|0),32)|0); + $516 = tempRet0; + $517 = $285; + $518 = $517; + $519 = HEAP32[$518>>2]|0; + $520 = (($517) + 4)|0; + $521 = $520; + $522 = HEAP32[$521>>2]|0; + $523 = (_bitshift64Ashr(0,($519|0),32)|0); + $524 = tempRet0; + $525 = (___muldi3(($523|0),($524|0),($515|0),($516|0))|0); + $526 = tempRet0; + $527 = (_i64Add(($507|0),($508|0),($525|0),($526|0))|0); + $528 = tempRet0; + $529 = $298; + $530 = $529; + $531 = HEAP32[$530>>2]|0; + $532 = (($529) + 4)|0; + $533 = $532; + $534 = HEAP32[$533>>2]|0; + $535 = (_bitshift64Ashr(0,($531|0),32)|0); + $536 = tempRet0; + $537 = $93; + $538 = $537; + $539 = HEAP32[$538>>2]|0; + $540 = (($537) + 4)|0; + $541 = $540; + $542 = HEAP32[$541>>2]|0; + $543 = (_bitshift64Ashr(0,($539|0),32)|0); + $544 = tempRet0; + $545 = (___muldi3(($543|0),($544|0),($535|0),($536|0))|0); + $546 = tempRet0; + $547 = (_i64Add(($527|0),($528|0),($545|0),($546|0))|0); + $548 = tempRet0; + $549 = $in2; + $550 = $549; + $551 = HEAP32[$550>>2]|0; + $552 = (($549) + 4)|0; + $553 = $552; + $554 = HEAP32[$553>>2]|0; + $555 = (_bitshift64Ashr(0,($551|0),32)|0); + $556 = tempRet0; + $557 = (($in) + 48|0); + $558 = $557; + $559 = $558; + $560 = HEAP32[$559>>2]|0; + $561 = (($558) + 4)|0; + $562 = $561; + $563 = HEAP32[$562>>2]|0; + $564 = (_bitshift64Ashr(0,($560|0),32)|0); + $565 = tempRet0; + $566 = (___muldi3(($564|0),($565|0),($555|0),($556|0))|0); + $567 = tempRet0; + $568 = (_i64Add(($547|0),($548|0),($566|0),($567|0))|0); + $569 = tempRet0; + $570 = (($in2) + 48|0); + $571 = $570; + $572 = $571; + $573 = HEAP32[$572>>2]|0; + $574 = (($571) + 4)|0; + $575 = $574; + $576 = HEAP32[$575>>2]|0; + $577 = (_bitshift64Ashr(0,($573|0),32)|0); + $578 = tempRet0; + $579 = $in; + $580 = $579; + $581 = HEAP32[$580>>2]|0; + $582 = (($579) + 4)|0; + $583 = $582; + $584 = HEAP32[$583>>2]|0; + $585 = (_bitshift64Ashr(0,($581|0),32)|0); + $586 = tempRet0; + $587 = (___muldi3(($585|0),($586|0),($577|0),($578|0))|0); + $588 = tempRet0; + $589 = (_i64Add(($568|0),($569|0),($587|0),($588|0))|0); + $590 = tempRet0; + $591 = (($output) + 48|0); + $592 = $591; + $593 = $592; + HEAP32[$593>>2] = $589; + $594 = (($592) + 4)|0; + $595 = $594; + HEAP32[$595>>2] = $590; + $596 = $191; + $597 = $596; + $598 = HEAP32[$597>>2]|0; + $599 = (($596) + 4)|0; + $600 = $599; + $601 = HEAP32[$600>>2]|0; + $602 = (_bitshift64Ashr(0,($598|0),32)|0); + $603 = tempRet0; + $604 = $285; + $605 = $604; + $606 = HEAP32[$605>>2]|0; + $607 = (($604) + 4)|0; + $608 = $607; + $609 = HEAP32[$608>>2]|0; + $610 = (_bitshift64Ashr(0,($606|0),32)|0); + $611 = tempRet0; + $612 = (___muldi3(($610|0),($611|0),($602|0),($603|0))|0); + $613 = tempRet0; + $614 = $298; + $615 = $614; + $616 = HEAP32[$615>>2]|0; + $617 = (($614) + 4)|0; + $618 = $617; + $619 = HEAP32[$618>>2]|0; + $620 = (_bitshift64Ashr(0,($616|0),32)|0); + $621 = tempRet0; + $622 = $178; + $623 = $622; + $624 = HEAP32[$623>>2]|0; + $625 = (($622) + 4)|0; + $626 = $625; + $627 = HEAP32[$626>>2]|0; + $628 = (_bitshift64Ashr(0,($624|0),32)|0); + $629 = tempRet0; + $630 = (___muldi3(($628|0),($629|0),($620|0),($621|0))|0); + $631 = tempRet0; + $632 = (_i64Add(($630|0),($631|0),($612|0),($613|0))|0); + $633 = tempRet0; + $634 = $106; + $635 = $634; + $636 = HEAP32[$635>>2]|0; + $637 = (($634) + 4)|0; + $638 = $637; + $639 = HEAP32[$638>>2]|0; + $640 = (_bitshift64Ashr(0,($636|0),32)|0); + $641 = tempRet0; + $642 = $410; + $643 = $642; + $644 = HEAP32[$643>>2]|0; + $645 = (($642) + 4)|0; + $646 = $645; + $647 = HEAP32[$646>>2]|0; + $648 = (_bitshift64Ashr(0,($644|0),32)|0); + $649 = tempRet0; + $650 = (___muldi3(($648|0),($649|0),($640|0),($641|0))|0); + $651 = tempRet0; + $652 = (_i64Add(($632|0),($633|0),($650|0),($651|0))|0); + $653 = tempRet0; + $654 = $423; + $655 = $654; + $656 = HEAP32[$655>>2]|0; + $657 = (($654) + 4)|0; + $658 = $657; + $659 = HEAP32[$658>>2]|0; + $660 = (_bitshift64Ashr(0,($656|0),32)|0); + $661 = tempRet0; + $662 = $93; + $663 = $662; + $664 = HEAP32[$663>>2]|0; + $665 = (($662) + 4)|0; + $666 = $665; + $667 = HEAP32[$666>>2]|0; + $668 = (_bitshift64Ashr(0,($664|0),32)|0); + $669 = tempRet0; + $670 = (___muldi3(($668|0),($669|0),($660|0),($661|0))|0); + $671 = tempRet0; + $672 = (_i64Add(($652|0),($653|0),($670|0),($671|0))|0); + $673 = tempRet0; + $674 = $41; + $675 = $674; + $676 = HEAP32[$675>>2]|0; + $677 = (($674) + 4)|0; + $678 = $677; + $679 = HEAP32[$678>>2]|0; + $680 = (_bitshift64Ashr(0,($676|0),32)|0); + $681 = tempRet0; + $682 = $557; + $683 = $682; + $684 = HEAP32[$683>>2]|0; + $685 = (($682) + 4)|0; + $686 = $685; + $687 = HEAP32[$686>>2]|0; + $688 = (_bitshift64Ashr(0,($684|0),32)|0); + $689 = tempRet0; + $690 = (___muldi3(($688|0),($689|0),($680|0),($681|0))|0); + $691 = tempRet0; + $692 = (_i64Add(($672|0),($673|0),($690|0),($691|0))|0); + $693 = tempRet0; + $694 = $570; + $695 = $694; + $696 = HEAP32[$695>>2]|0; + $697 = (($694) + 4)|0; + $698 = $697; + $699 = HEAP32[$698>>2]|0; + $700 = (_bitshift64Ashr(0,($696|0),32)|0); + $701 = tempRet0; + $702 = $30; + $703 = $702; + $704 = HEAP32[$703>>2]|0; + $705 = (($702) + 4)|0; + $706 = $705; + $707 = HEAP32[$706>>2]|0; + $708 = (_bitshift64Ashr(0,($704|0),32)|0); + $709 = tempRet0; + $710 = (___muldi3(($708|0),($709|0),($700|0),($701|0))|0); + $711 = tempRet0; + $712 = (_i64Add(($692|0),($693|0),($710|0),($711|0))|0); + $713 = tempRet0; + $714 = $in2; + $715 = $714; + $716 = HEAP32[$715>>2]|0; + $717 = (($714) + 4)|0; + $718 = $717; + $719 = HEAP32[$718>>2]|0; + $720 = (_bitshift64Ashr(0,($716|0),32)|0); + $721 = tempRet0; + $722 = (($in) + 56|0); + $723 = $722; + $724 = $723; + $725 = HEAP32[$724>>2]|0; + $726 = (($723) + 4)|0; + $727 = $726; + $728 = HEAP32[$727>>2]|0; + $729 = (_bitshift64Ashr(0,($725|0),32)|0); + $730 = tempRet0; + $731 = (___muldi3(($729|0),($730|0),($720|0),($721|0))|0); + $732 = tempRet0; + $733 = (_i64Add(($712|0),($713|0),($731|0),($732|0))|0); + $734 = tempRet0; + $735 = (($in2) + 56|0); + $736 = $735; + $737 = $736; + $738 = HEAP32[$737>>2]|0; + $739 = (($736) + 4)|0; + $740 = $739; + $741 = HEAP32[$740>>2]|0; + $742 = (_bitshift64Ashr(0,($738|0),32)|0); + $743 = tempRet0; + $744 = $in; + $745 = $744; + $746 = HEAP32[$745>>2]|0; + $747 = (($744) + 4)|0; + $748 = $747; + $749 = HEAP32[$748>>2]|0; + $750 = (_bitshift64Ashr(0,($746|0),32)|0); + $751 = tempRet0; + $752 = (___muldi3(($750|0),($751|0),($742|0),($743|0))|0); + $753 = tempRet0; + $754 = (_i64Add(($733|0),($734|0),($752|0),($753|0))|0); + $755 = tempRet0; + $756 = (($output) + 56|0); + $757 = $756; + $758 = $757; + HEAP32[$758>>2] = $754; + $759 = (($757) + 4)|0; + $760 = $759; + HEAP32[$760>>2] = $755; + $761 = $298; + $762 = $761; + $763 = HEAP32[$762>>2]|0; + $764 = (($761) + 4)|0; + $765 = $764; + $766 = HEAP32[$765>>2]|0; + $767 = (_bitshift64Ashr(0,($763|0),32)|0); + $768 = tempRet0; + $769 = $285; + $770 = $769; + $771 = HEAP32[$770>>2]|0; + $772 = (($769) + 4)|0; + $773 = $772; + $774 = HEAP32[$773>>2]|0; + $775 = (_bitshift64Ashr(0,($771|0),32)|0); + $776 = tempRet0; + $777 = (___muldi3(($775|0),($776|0),($767|0),($768|0))|0); + $778 = tempRet0; + $779 = $191; + $780 = $779; + $781 = HEAP32[$780>>2]|0; + $782 = (($779) + 4)|0; + $783 = $782; + $784 = HEAP32[$783>>2]|0; + $785 = (_bitshift64Ashr(0,($781|0),32)|0); + $786 = tempRet0; + $787 = $410; + $788 = $787; + $789 = HEAP32[$788>>2]|0; + $790 = (($787) + 4)|0; + $791 = $790; + $792 = HEAP32[$791>>2]|0; + $793 = (_bitshift64Ashr(0,($789|0),32)|0); + $794 = tempRet0; + $795 = (___muldi3(($793|0),($794|0),($785|0),($786|0))|0); + $796 = tempRet0; + $797 = $423; + $798 = $797; + $799 = HEAP32[$798>>2]|0; + $800 = (($797) + 4)|0; + $801 = $800; + $802 = HEAP32[$801>>2]|0; + $803 = (_bitshift64Ashr(0,($799|0),32)|0); + $804 = tempRet0; + $805 = $178; + $806 = $805; + $807 = HEAP32[$806>>2]|0; + $808 = (($805) + 4)|0; + $809 = $808; + $810 = HEAP32[$809>>2]|0; + $811 = (_bitshift64Ashr(0,($807|0),32)|0); + $812 = tempRet0; + $813 = (___muldi3(($811|0),($812|0),($803|0),($804|0))|0); + $814 = tempRet0; + $815 = (_i64Add(($813|0),($814|0),($795|0),($796|0))|0); + $816 = tempRet0; + $817 = $41; + $818 = $817; + $819 = HEAP32[$818>>2]|0; + $820 = (($817) + 4)|0; + $821 = $820; + $822 = HEAP32[$821>>2]|0; + $823 = (_bitshift64Ashr(0,($819|0),32)|0); + $824 = tempRet0; + $825 = $722; + $826 = $825; + $827 = HEAP32[$826>>2]|0; + $828 = (($825) + 4)|0; + $829 = $828; + $830 = HEAP32[$829>>2]|0; + $831 = (_bitshift64Ashr(0,($827|0),32)|0); + $832 = tempRet0; + $833 = (___muldi3(($831|0),($832|0),($823|0),($824|0))|0); + $834 = tempRet0; + $835 = (_i64Add(($815|0),($816|0),($833|0),($834|0))|0); + $836 = tempRet0; + $837 = $735; + $838 = $837; + $839 = HEAP32[$838>>2]|0; + $840 = (($837) + 4)|0; + $841 = $840; + $842 = HEAP32[$841>>2]|0; + $843 = (_bitshift64Ashr(0,($839|0),32)|0); + $844 = tempRet0; + $845 = $30; + $846 = $845; + $847 = HEAP32[$846>>2]|0; + $848 = (($845) + 4)|0; + $849 = $848; + $850 = HEAP32[$849>>2]|0; + $851 = (_bitshift64Ashr(0,($847|0),32)|0); + $852 = tempRet0; + $853 = (___muldi3(($851|0),($852|0),($843|0),($844|0))|0); + $854 = tempRet0; + $855 = (_i64Add(($835|0),($836|0),($853|0),($854|0))|0); + $856 = tempRet0; + $857 = (_bitshift64Shl(($855|0),($856|0),1)|0); + $858 = tempRet0; + $859 = (_i64Add(($857|0),($858|0),($777|0),($778|0))|0); + $860 = tempRet0; + $861 = $106; + $862 = $861; + $863 = HEAP32[$862>>2]|0; + $864 = (($861) + 4)|0; + $865 = $864; + $866 = HEAP32[$865>>2]|0; + $867 = (_bitshift64Ashr(0,($863|0),32)|0); + $868 = tempRet0; + $869 = $557; + $870 = $869; + $871 = HEAP32[$870>>2]|0; + $872 = (($869) + 4)|0; + $873 = $872; + $874 = HEAP32[$873>>2]|0; + $875 = (_bitshift64Ashr(0,($871|0),32)|0); + $876 = tempRet0; + $877 = (___muldi3(($875|0),($876|0),($867|0),($868|0))|0); + $878 = tempRet0; + $879 = (_i64Add(($859|0),($860|0),($877|0),($878|0))|0); + $880 = tempRet0; + $881 = $570; + $882 = $881; + $883 = HEAP32[$882>>2]|0; + $884 = (($881) + 4)|0; + $885 = $884; + $886 = HEAP32[$885>>2]|0; + $887 = (_bitshift64Ashr(0,($883|0),32)|0); + $888 = tempRet0; + $889 = $93; + $890 = $889; + $891 = HEAP32[$890>>2]|0; + $892 = (($889) + 4)|0; + $893 = $892; + $894 = HEAP32[$893>>2]|0; + $895 = (_bitshift64Ashr(0,($891|0),32)|0); + $896 = tempRet0; + $897 = (___muldi3(($895|0),($896|0),($887|0),($888|0))|0); + $898 = tempRet0; + $899 = (_i64Add(($879|0),($880|0),($897|0),($898|0))|0); + $900 = tempRet0; + $901 = $in2; + $902 = $901; + $903 = HEAP32[$902>>2]|0; + $904 = (($901) + 4)|0; + $905 = $904; + $906 = HEAP32[$905>>2]|0; + $907 = (_bitshift64Ashr(0,($903|0),32)|0); + $908 = tempRet0; + $909 = (($in) + 64|0); + $910 = $909; + $911 = $910; + $912 = HEAP32[$911>>2]|0; + $913 = (($910) + 4)|0; + $914 = $913; + $915 = HEAP32[$914>>2]|0; + $916 = (_bitshift64Ashr(0,($912|0),32)|0); + $917 = tempRet0; + $918 = (___muldi3(($916|0),($917|0),($907|0),($908|0))|0); + $919 = tempRet0; + $920 = (_i64Add(($899|0),($900|0),($918|0),($919|0))|0); + $921 = tempRet0; + $922 = (($in2) + 64|0); + $923 = $922; + $924 = $923; + $925 = HEAP32[$924>>2]|0; + $926 = (($923) + 4)|0; + $927 = $926; + $928 = HEAP32[$927>>2]|0; + $929 = (_bitshift64Ashr(0,($925|0),32)|0); + $930 = tempRet0; + $931 = $in; + $932 = $931; + $933 = HEAP32[$932>>2]|0; + $934 = (($931) + 4)|0; + $935 = $934; + $936 = HEAP32[$935>>2]|0; + $937 = (_bitshift64Ashr(0,($933|0),32)|0); + $938 = tempRet0; + $939 = (___muldi3(($937|0),($938|0),($929|0),($930|0))|0); + $940 = tempRet0; + $941 = (_i64Add(($920|0),($921|0),($939|0),($940|0))|0); + $942 = tempRet0; + $943 = (($output) + 64|0); + $944 = $943; + $945 = $944; + HEAP32[$945>>2] = $941; + $946 = (($944) + 4)|0; + $947 = $946; + HEAP32[$947>>2] = $942; + $948 = $298; + $949 = $948; + $950 = HEAP32[$949>>2]|0; + $951 = (($948) + 4)|0; + $952 = $951; + $953 = HEAP32[$952>>2]|0; + $954 = (_bitshift64Ashr(0,($950|0),32)|0); + $955 = tempRet0; + $956 = $410; + $957 = $956; + $958 = HEAP32[$957>>2]|0; + $959 = (($956) + 4)|0; + $960 = $959; + $961 = HEAP32[$960>>2]|0; + $962 = (_bitshift64Ashr(0,($958|0),32)|0); + $963 = tempRet0; + $964 = (___muldi3(($962|0),($963|0),($954|0),($955|0))|0); + $965 = tempRet0; + $966 = $423; + $967 = $966; + $968 = HEAP32[$967>>2]|0; + $969 = (($966) + 4)|0; + $970 = $969; + $971 = HEAP32[$970>>2]|0; + $972 = (_bitshift64Ashr(0,($968|0),32)|0); + $973 = tempRet0; + $974 = $285; + $975 = $974; + $976 = HEAP32[$975>>2]|0; + $977 = (($974) + 4)|0; + $978 = $977; + $979 = HEAP32[$978>>2]|0; + $980 = (_bitshift64Ashr(0,($976|0),32)|0); + $981 = tempRet0; + $982 = (___muldi3(($980|0),($981|0),($972|0),($973|0))|0); + $983 = tempRet0; + $984 = (_i64Add(($982|0),($983|0),($964|0),($965|0))|0); + $985 = tempRet0; + $986 = $191; + $987 = $986; + $988 = HEAP32[$987>>2]|0; + $989 = (($986) + 4)|0; + $990 = $989; + $991 = HEAP32[$990>>2]|0; + $992 = (_bitshift64Ashr(0,($988|0),32)|0); + $993 = tempRet0; + $994 = $557; + $995 = $994; + $996 = HEAP32[$995>>2]|0; + $997 = (($994) + 4)|0; + $998 = $997; + $999 = HEAP32[$998>>2]|0; + $1000 = (_bitshift64Ashr(0,($996|0),32)|0); + $1001 = tempRet0; + $1002 = (___muldi3(($1000|0),($1001|0),($992|0),($993|0))|0); + $1003 = tempRet0; + $1004 = (_i64Add(($984|0),($985|0),($1002|0),($1003|0))|0); + $1005 = tempRet0; + $1006 = $570; + $1007 = $1006; + $1008 = HEAP32[$1007>>2]|0; + $1009 = (($1006) + 4)|0; + $1010 = $1009; + $1011 = HEAP32[$1010>>2]|0; + $1012 = (_bitshift64Ashr(0,($1008|0),32)|0); + $1013 = tempRet0; + $1014 = $178; + $1015 = $1014; + $1016 = HEAP32[$1015>>2]|0; + $1017 = (($1014) + 4)|0; + $1018 = $1017; + $1019 = HEAP32[$1018>>2]|0; + $1020 = (_bitshift64Ashr(0,($1016|0),32)|0); + $1021 = tempRet0; + $1022 = (___muldi3(($1020|0),($1021|0),($1012|0),($1013|0))|0); + $1023 = tempRet0; + $1024 = (_i64Add(($1004|0),($1005|0),($1022|0),($1023|0))|0); + $1025 = tempRet0; + $1026 = $106; + $1027 = $1026; + $1028 = HEAP32[$1027>>2]|0; + $1029 = (($1026) + 4)|0; + $1030 = $1029; + $1031 = HEAP32[$1030>>2]|0; + $1032 = (_bitshift64Ashr(0,($1028|0),32)|0); + $1033 = tempRet0; + $1034 = $722; + $1035 = $1034; + $1036 = HEAP32[$1035>>2]|0; + $1037 = (($1034) + 4)|0; + $1038 = $1037; + $1039 = HEAP32[$1038>>2]|0; + $1040 = (_bitshift64Ashr(0,($1036|0),32)|0); + $1041 = tempRet0; + $1042 = (___muldi3(($1040|0),($1041|0),($1032|0),($1033|0))|0); + $1043 = tempRet0; + $1044 = (_i64Add(($1024|0),($1025|0),($1042|0),($1043|0))|0); + $1045 = tempRet0; + $1046 = $735; + $1047 = $1046; + $1048 = HEAP32[$1047>>2]|0; + $1049 = (($1046) + 4)|0; + $1050 = $1049; + $1051 = HEAP32[$1050>>2]|0; + $1052 = (_bitshift64Ashr(0,($1048|0),32)|0); + $1053 = tempRet0; + $1054 = $93; + $1055 = $1054; + $1056 = HEAP32[$1055>>2]|0; + $1057 = (($1054) + 4)|0; + $1058 = $1057; + $1059 = HEAP32[$1058>>2]|0; + $1060 = (_bitshift64Ashr(0,($1056|0),32)|0); + $1061 = tempRet0; + $1062 = (___muldi3(($1060|0),($1061|0),($1052|0),($1053|0))|0); + $1063 = tempRet0; + $1064 = (_i64Add(($1044|0),($1045|0),($1062|0),($1063|0))|0); + $1065 = tempRet0; + $1066 = $41; + $1067 = $1066; + $1068 = HEAP32[$1067>>2]|0; + $1069 = (($1066) + 4)|0; + $1070 = $1069; + $1071 = HEAP32[$1070>>2]|0; + $1072 = (_bitshift64Ashr(0,($1068|0),32)|0); + $1073 = tempRet0; + $1074 = $909; + $1075 = $1074; + $1076 = HEAP32[$1075>>2]|0; + $1077 = (($1074) + 4)|0; + $1078 = $1077; + $1079 = HEAP32[$1078>>2]|0; + $1080 = (_bitshift64Ashr(0,($1076|0),32)|0); + $1081 = tempRet0; + $1082 = (___muldi3(($1080|0),($1081|0),($1072|0),($1073|0))|0); + $1083 = tempRet0; + $1084 = (_i64Add(($1064|0),($1065|0),($1082|0),($1083|0))|0); + $1085 = tempRet0; + $1086 = $922; + $1087 = $1086; + $1088 = HEAP32[$1087>>2]|0; + $1089 = (($1086) + 4)|0; + $1090 = $1089; + $1091 = HEAP32[$1090>>2]|0; + $1092 = (_bitshift64Ashr(0,($1088|0),32)|0); + $1093 = tempRet0; + $1094 = $30; + $1095 = $1094; + $1096 = HEAP32[$1095>>2]|0; + $1097 = (($1094) + 4)|0; + $1098 = $1097; + $1099 = HEAP32[$1098>>2]|0; + $1100 = (_bitshift64Ashr(0,($1096|0),32)|0); + $1101 = tempRet0; + $1102 = (___muldi3(($1100|0),($1101|0),($1092|0),($1093|0))|0); + $1103 = tempRet0; + $1104 = (_i64Add(($1084|0),($1085|0),($1102|0),($1103|0))|0); + $1105 = tempRet0; + $1106 = $in2; + $1107 = $1106; + $1108 = HEAP32[$1107>>2]|0; + $1109 = (($1106) + 4)|0; + $1110 = $1109; + $1111 = HEAP32[$1110>>2]|0; + $1112 = (_bitshift64Ashr(0,($1108|0),32)|0); + $1113 = tempRet0; + $1114 = (($in) + 72|0); + $1115 = $1114; + $1116 = $1115; + $1117 = HEAP32[$1116>>2]|0; + $1118 = (($1115) + 4)|0; + $1119 = $1118; + $1120 = HEAP32[$1119>>2]|0; + $1121 = (_bitshift64Ashr(0,($1117|0),32)|0); + $1122 = tempRet0; + $1123 = (___muldi3(($1121|0),($1122|0),($1112|0),($1113|0))|0); + $1124 = tempRet0; + $1125 = (_i64Add(($1104|0),($1105|0),($1123|0),($1124|0))|0); + $1126 = tempRet0; + $1127 = (($in2) + 72|0); + $1128 = $1127; + $1129 = $1128; + $1130 = HEAP32[$1129>>2]|0; + $1131 = (($1128) + 4)|0; + $1132 = $1131; + $1133 = HEAP32[$1132>>2]|0; + $1134 = (_bitshift64Ashr(0,($1130|0),32)|0); + $1135 = tempRet0; + $1136 = $in; + $1137 = $1136; + $1138 = HEAP32[$1137>>2]|0; + $1139 = (($1136) + 4)|0; + $1140 = $1139; + $1141 = HEAP32[$1140>>2]|0; + $1142 = (_bitshift64Ashr(0,($1138|0),32)|0); + $1143 = tempRet0; + $1144 = (___muldi3(($1142|0),($1143|0),($1134|0),($1135|0))|0); + $1145 = tempRet0; + $1146 = (_i64Add(($1125|0),($1126|0),($1144|0),($1145|0))|0); + $1147 = tempRet0; + $1148 = (($output) + 72|0); + $1149 = $1148; + $1150 = $1149; + HEAP32[$1150>>2] = $1146; + $1151 = (($1149) + 4)|0; + $1152 = $1151; + HEAP32[$1152>>2] = $1147; + $1153 = $423; + $1154 = $1153; + $1155 = HEAP32[$1154>>2]|0; + $1156 = (($1153) + 4)|0; + $1157 = $1156; + $1158 = HEAP32[$1157>>2]|0; + $1159 = (_bitshift64Ashr(0,($1155|0),32)|0); + $1160 = tempRet0; + $1161 = $410; + $1162 = $1161; + $1163 = HEAP32[$1162>>2]|0; + $1164 = (($1161) + 4)|0; + $1165 = $1164; + $1166 = HEAP32[$1165>>2]|0; + $1167 = (_bitshift64Ashr(0,($1163|0),32)|0); + $1168 = tempRet0; + $1169 = (___muldi3(($1167|0),($1168|0),($1159|0),($1160|0))|0); + $1170 = tempRet0; + $1171 = $191; + $1172 = $1171; + $1173 = HEAP32[$1172>>2]|0; + $1174 = (($1171) + 4)|0; + $1175 = $1174; + $1176 = HEAP32[$1175>>2]|0; + $1177 = (_bitshift64Ashr(0,($1173|0),32)|0); + $1178 = tempRet0; + $1179 = $722; + $1180 = $1179; + $1181 = HEAP32[$1180>>2]|0; + $1182 = (($1179) + 4)|0; + $1183 = $1182; + $1184 = HEAP32[$1183>>2]|0; + $1185 = (_bitshift64Ashr(0,($1181|0),32)|0); + $1186 = tempRet0; + $1187 = (___muldi3(($1185|0),($1186|0),($1177|0),($1178|0))|0); + $1188 = tempRet0; + $1189 = (_i64Add(($1187|0),($1188|0),($1169|0),($1170|0))|0); + $1190 = tempRet0; + $1191 = $735; + $1192 = $1191; + $1193 = HEAP32[$1192>>2]|0; + $1194 = (($1191) + 4)|0; + $1195 = $1194; + $1196 = HEAP32[$1195>>2]|0; + $1197 = (_bitshift64Ashr(0,($1193|0),32)|0); + $1198 = tempRet0; + $1199 = $178; + $1200 = $1199; + $1201 = HEAP32[$1200>>2]|0; + $1202 = (($1199) + 4)|0; + $1203 = $1202; + $1204 = HEAP32[$1203>>2]|0; + $1205 = (_bitshift64Ashr(0,($1201|0),32)|0); + $1206 = tempRet0; + $1207 = (___muldi3(($1205|0),($1206|0),($1197|0),($1198|0))|0); + $1208 = tempRet0; + $1209 = (_i64Add(($1189|0),($1190|0),($1207|0),($1208|0))|0); + $1210 = tempRet0; + $1211 = $41; + $1212 = $1211; + $1213 = HEAP32[$1212>>2]|0; + $1214 = (($1211) + 4)|0; + $1215 = $1214; + $1216 = HEAP32[$1215>>2]|0; + $1217 = (_bitshift64Ashr(0,($1213|0),32)|0); + $1218 = tempRet0; + $1219 = $1114; + $1220 = $1219; + $1221 = HEAP32[$1220>>2]|0; + $1222 = (($1219) + 4)|0; + $1223 = $1222; + $1224 = HEAP32[$1223>>2]|0; + $1225 = (_bitshift64Ashr(0,($1221|0),32)|0); + $1226 = tempRet0; + $1227 = (___muldi3(($1225|0),($1226|0),($1217|0),($1218|0))|0); + $1228 = tempRet0; + $1229 = (_i64Add(($1209|0),($1210|0),($1227|0),($1228|0))|0); + $1230 = tempRet0; + $1231 = $1127; + $1232 = $1231; + $1233 = HEAP32[$1232>>2]|0; + $1234 = (($1231) + 4)|0; + $1235 = $1234; + $1236 = HEAP32[$1235>>2]|0; + $1237 = (_bitshift64Ashr(0,($1233|0),32)|0); + $1238 = tempRet0; + $1239 = $30; + $1240 = $1239; + $1241 = HEAP32[$1240>>2]|0; + $1242 = (($1239) + 4)|0; + $1243 = $1242; + $1244 = HEAP32[$1243>>2]|0; + $1245 = (_bitshift64Ashr(0,($1241|0),32)|0); + $1246 = tempRet0; + $1247 = (___muldi3(($1245|0),($1246|0),($1237|0),($1238|0))|0); + $1248 = tempRet0; + $1249 = (_i64Add(($1229|0),($1230|0),($1247|0),($1248|0))|0); + $1250 = tempRet0; + $1251 = (_bitshift64Shl(($1249|0),($1250|0),1)|0); + $1252 = tempRet0; + $1253 = $298; + $1254 = $1253; + $1255 = HEAP32[$1254>>2]|0; + $1256 = (($1253) + 4)|0; + $1257 = $1256; + $1258 = HEAP32[$1257>>2]|0; + $1259 = (_bitshift64Ashr(0,($1255|0),32)|0); + $1260 = tempRet0; + $1261 = $557; + $1262 = $1261; + $1263 = HEAP32[$1262>>2]|0; + $1264 = (($1261) + 4)|0; + $1265 = $1264; + $1266 = HEAP32[$1265>>2]|0; + $1267 = (_bitshift64Ashr(0,($1263|0),32)|0); + $1268 = tempRet0; + $1269 = (___muldi3(($1267|0),($1268|0),($1259|0),($1260|0))|0); + $1270 = tempRet0; + $1271 = (_i64Add(($1251|0),($1252|0),($1269|0),($1270|0))|0); + $1272 = tempRet0; + $1273 = $570; + $1274 = $1273; + $1275 = HEAP32[$1274>>2]|0; + $1276 = (($1273) + 4)|0; + $1277 = $1276; + $1278 = HEAP32[$1277>>2]|0; + $1279 = (_bitshift64Ashr(0,($1275|0),32)|0); + $1280 = tempRet0; + $1281 = $285; + $1282 = $1281; + $1283 = HEAP32[$1282>>2]|0; + $1284 = (($1281) + 4)|0; + $1285 = $1284; + $1286 = HEAP32[$1285>>2]|0; + $1287 = (_bitshift64Ashr(0,($1283|0),32)|0); + $1288 = tempRet0; + $1289 = (___muldi3(($1287|0),($1288|0),($1279|0),($1280|0))|0); + $1290 = tempRet0; + $1291 = (_i64Add(($1271|0),($1272|0),($1289|0),($1290|0))|0); + $1292 = tempRet0; + $1293 = $106; + $1294 = $1293; + $1295 = HEAP32[$1294>>2]|0; + $1296 = (($1293) + 4)|0; + $1297 = $1296; + $1298 = HEAP32[$1297>>2]|0; + $1299 = (_bitshift64Ashr(0,($1295|0),32)|0); + $1300 = tempRet0; + $1301 = $909; + $1302 = $1301; + $1303 = HEAP32[$1302>>2]|0; + $1304 = (($1301) + 4)|0; + $1305 = $1304; + $1306 = HEAP32[$1305>>2]|0; + $1307 = (_bitshift64Ashr(0,($1303|0),32)|0); + $1308 = tempRet0; + $1309 = (___muldi3(($1307|0),($1308|0),($1299|0),($1300|0))|0); + $1310 = tempRet0; + $1311 = (_i64Add(($1291|0),($1292|0),($1309|0),($1310|0))|0); + $1312 = tempRet0; + $1313 = $922; + $1314 = $1313; + $1315 = HEAP32[$1314>>2]|0; + $1316 = (($1313) + 4)|0; + $1317 = $1316; + $1318 = HEAP32[$1317>>2]|0; + $1319 = (_bitshift64Ashr(0,($1315|0),32)|0); + $1320 = tempRet0; + $1321 = $93; + $1322 = $1321; + $1323 = HEAP32[$1322>>2]|0; + $1324 = (($1321) + 4)|0; + $1325 = $1324; + $1326 = HEAP32[$1325>>2]|0; + $1327 = (_bitshift64Ashr(0,($1323|0),32)|0); + $1328 = tempRet0; + $1329 = (___muldi3(($1327|0),($1328|0),($1319|0),($1320|0))|0); + $1330 = tempRet0; + $1331 = (_i64Add(($1311|0),($1312|0),($1329|0),($1330|0))|0); + $1332 = tempRet0; + $1333 = (($output) + 80|0); + $1334 = $1333; + $1335 = $1334; + HEAP32[$1335>>2] = $1331; + $1336 = (($1334) + 4)|0; + $1337 = $1336; + HEAP32[$1337>>2] = $1332; + $1338 = $423; + $1339 = $1338; + $1340 = HEAP32[$1339>>2]|0; + $1341 = (($1338) + 4)|0; + $1342 = $1341; + $1343 = HEAP32[$1342>>2]|0; + $1344 = (_bitshift64Ashr(0,($1340|0),32)|0); + $1345 = tempRet0; + $1346 = $557; + $1347 = $1346; + $1348 = HEAP32[$1347>>2]|0; + $1349 = (($1346) + 4)|0; + $1350 = $1349; + $1351 = HEAP32[$1350>>2]|0; + $1352 = (_bitshift64Ashr(0,($1348|0),32)|0); + $1353 = tempRet0; + $1354 = (___muldi3(($1352|0),($1353|0),($1344|0),($1345|0))|0); + $1355 = tempRet0; + $1356 = $570; + $1357 = $1356; + $1358 = HEAP32[$1357>>2]|0; + $1359 = (($1356) + 4)|0; + $1360 = $1359; + $1361 = HEAP32[$1360>>2]|0; + $1362 = (_bitshift64Ashr(0,($1358|0),32)|0); + $1363 = tempRet0; + $1364 = $410; + $1365 = $1364; + $1366 = HEAP32[$1365>>2]|0; + $1367 = (($1364) + 4)|0; + $1368 = $1367; + $1369 = HEAP32[$1368>>2]|0; + $1370 = (_bitshift64Ashr(0,($1366|0),32)|0); + $1371 = tempRet0; + $1372 = (___muldi3(($1370|0),($1371|0),($1362|0),($1363|0))|0); + $1373 = tempRet0; + $1374 = (_i64Add(($1372|0),($1373|0),($1354|0),($1355|0))|0); + $1375 = tempRet0; + $1376 = $298; + $1377 = $1376; + $1378 = HEAP32[$1377>>2]|0; + $1379 = (($1376) + 4)|0; + $1380 = $1379; + $1381 = HEAP32[$1380>>2]|0; + $1382 = (_bitshift64Ashr(0,($1378|0),32)|0); + $1383 = tempRet0; + $1384 = $722; + $1385 = $1384; + $1386 = HEAP32[$1385>>2]|0; + $1387 = (($1384) + 4)|0; + $1388 = $1387; + $1389 = HEAP32[$1388>>2]|0; + $1390 = (_bitshift64Ashr(0,($1386|0),32)|0); + $1391 = tempRet0; + $1392 = (___muldi3(($1390|0),($1391|0),($1382|0),($1383|0))|0); + $1393 = tempRet0; + $1394 = (_i64Add(($1374|0),($1375|0),($1392|0),($1393|0))|0); + $1395 = tempRet0; + $1396 = $735; + $1397 = $1396; + $1398 = HEAP32[$1397>>2]|0; + $1399 = (($1396) + 4)|0; + $1400 = $1399; + $1401 = HEAP32[$1400>>2]|0; + $1402 = (_bitshift64Ashr(0,($1398|0),32)|0); + $1403 = tempRet0; + $1404 = $285; + $1405 = $1404; + $1406 = HEAP32[$1405>>2]|0; + $1407 = (($1404) + 4)|0; + $1408 = $1407; + $1409 = HEAP32[$1408>>2]|0; + $1410 = (_bitshift64Ashr(0,($1406|0),32)|0); + $1411 = tempRet0; + $1412 = (___muldi3(($1410|0),($1411|0),($1402|0),($1403|0))|0); + $1413 = tempRet0; + $1414 = (_i64Add(($1394|0),($1395|0),($1412|0),($1413|0))|0); + $1415 = tempRet0; + $1416 = $191; + $1417 = $1416; + $1418 = HEAP32[$1417>>2]|0; + $1419 = (($1416) + 4)|0; + $1420 = $1419; + $1421 = HEAP32[$1420>>2]|0; + $1422 = (_bitshift64Ashr(0,($1418|0),32)|0); + $1423 = tempRet0; + $1424 = $909; + $1425 = $1424; + $1426 = HEAP32[$1425>>2]|0; + $1427 = (($1424) + 4)|0; + $1428 = $1427; + $1429 = HEAP32[$1428>>2]|0; + $1430 = (_bitshift64Ashr(0,($1426|0),32)|0); + $1431 = tempRet0; + $1432 = (___muldi3(($1430|0),($1431|0),($1422|0),($1423|0))|0); + $1433 = tempRet0; + $1434 = (_i64Add(($1414|0),($1415|0),($1432|0),($1433|0))|0); + $1435 = tempRet0; + $1436 = $922; + $1437 = $1436; + $1438 = HEAP32[$1437>>2]|0; + $1439 = (($1436) + 4)|0; + $1440 = $1439; + $1441 = HEAP32[$1440>>2]|0; + $1442 = (_bitshift64Ashr(0,($1438|0),32)|0); + $1443 = tempRet0; + $1444 = $178; + $1445 = $1444; + $1446 = HEAP32[$1445>>2]|0; + $1447 = (($1444) + 4)|0; + $1448 = $1447; + $1449 = HEAP32[$1448>>2]|0; + $1450 = (_bitshift64Ashr(0,($1446|0),32)|0); + $1451 = tempRet0; + $1452 = (___muldi3(($1450|0),($1451|0),($1442|0),($1443|0))|0); + $1453 = tempRet0; + $1454 = (_i64Add(($1434|0),($1435|0),($1452|0),($1453|0))|0); + $1455 = tempRet0; + $1456 = $106; + $1457 = $1456; + $1458 = HEAP32[$1457>>2]|0; + $1459 = (($1456) + 4)|0; + $1460 = $1459; + $1461 = HEAP32[$1460>>2]|0; + $1462 = (_bitshift64Ashr(0,($1458|0),32)|0); + $1463 = tempRet0; + $1464 = $1114; + $1465 = $1464; + $1466 = HEAP32[$1465>>2]|0; + $1467 = (($1464) + 4)|0; + $1468 = $1467; + $1469 = HEAP32[$1468>>2]|0; + $1470 = (_bitshift64Ashr(0,($1466|0),32)|0); + $1471 = tempRet0; + $1472 = (___muldi3(($1470|0),($1471|0),($1462|0),($1463|0))|0); + $1473 = tempRet0; + $1474 = (_i64Add(($1454|0),($1455|0),($1472|0),($1473|0))|0); + $1475 = tempRet0; + $1476 = $1127; + $1477 = $1476; + $1478 = HEAP32[$1477>>2]|0; + $1479 = (($1476) + 4)|0; + $1480 = $1479; + $1481 = HEAP32[$1480>>2]|0; + $1482 = (_bitshift64Ashr(0,($1478|0),32)|0); + $1483 = tempRet0; + $1484 = $93; + $1485 = $1484; + $1486 = HEAP32[$1485>>2]|0; + $1487 = (($1484) + 4)|0; + $1488 = $1487; + $1489 = HEAP32[$1488>>2]|0; + $1490 = (_bitshift64Ashr(0,($1486|0),32)|0); + $1491 = tempRet0; + $1492 = (___muldi3(($1490|0),($1491|0),($1482|0),($1483|0))|0); + $1493 = tempRet0; + $1494 = (_i64Add(($1474|0),($1475|0),($1492|0),($1493|0))|0); + $1495 = tempRet0; + $1496 = (($output) + 88|0); + $1497 = $1496; + $1498 = $1497; + HEAP32[$1498>>2] = $1494; + $1499 = (($1497) + 4)|0; + $1500 = $1499; + HEAP32[$1500>>2] = $1495; + $1501 = $570; + $1502 = $1501; + $1503 = HEAP32[$1502>>2]|0; + $1504 = (($1501) + 4)|0; + $1505 = $1504; + $1506 = HEAP32[$1505>>2]|0; + $1507 = (_bitshift64Ashr(0,($1503|0),32)|0); + $1508 = tempRet0; + $1509 = $557; + $1510 = $1509; + $1511 = HEAP32[$1510>>2]|0; + $1512 = (($1509) + 4)|0; + $1513 = $1512; + $1514 = HEAP32[$1513>>2]|0; + $1515 = (_bitshift64Ashr(0,($1511|0),32)|0); + $1516 = tempRet0; + $1517 = (___muldi3(($1515|0),($1516|0),($1507|0),($1508|0))|0); + $1518 = tempRet0; + $1519 = $423; + $1520 = $1519; + $1521 = HEAP32[$1520>>2]|0; + $1522 = (($1519) + 4)|0; + $1523 = $1522; + $1524 = HEAP32[$1523>>2]|0; + $1525 = (_bitshift64Ashr(0,($1521|0),32)|0); + $1526 = tempRet0; + $1527 = $722; + $1528 = $1527; + $1529 = HEAP32[$1528>>2]|0; + $1530 = (($1527) + 4)|0; + $1531 = $1530; + $1532 = HEAP32[$1531>>2]|0; + $1533 = (_bitshift64Ashr(0,($1529|0),32)|0); + $1534 = tempRet0; + $1535 = (___muldi3(($1533|0),($1534|0),($1525|0),($1526|0))|0); + $1536 = tempRet0; + $1537 = $735; + $1538 = $1537; + $1539 = HEAP32[$1538>>2]|0; + $1540 = (($1537) + 4)|0; + $1541 = $1540; + $1542 = HEAP32[$1541>>2]|0; + $1543 = (_bitshift64Ashr(0,($1539|0),32)|0); + $1544 = tempRet0; + $1545 = $410; + $1546 = $1545; + $1547 = HEAP32[$1546>>2]|0; + $1548 = (($1545) + 4)|0; + $1549 = $1548; + $1550 = HEAP32[$1549>>2]|0; + $1551 = (_bitshift64Ashr(0,($1547|0),32)|0); + $1552 = tempRet0; + $1553 = (___muldi3(($1551|0),($1552|0),($1543|0),($1544|0))|0); + $1554 = tempRet0; + $1555 = (_i64Add(($1553|0),($1554|0),($1535|0),($1536|0))|0); + $1556 = tempRet0; + $1557 = $191; + $1558 = $1557; + $1559 = HEAP32[$1558>>2]|0; + $1560 = (($1557) + 4)|0; + $1561 = $1560; + $1562 = HEAP32[$1561>>2]|0; + $1563 = (_bitshift64Ashr(0,($1559|0),32)|0); + $1564 = tempRet0; + $1565 = $1114; + $1566 = $1565; + $1567 = HEAP32[$1566>>2]|0; + $1568 = (($1565) + 4)|0; + $1569 = $1568; + $1570 = HEAP32[$1569>>2]|0; + $1571 = (_bitshift64Ashr(0,($1567|0),32)|0); + $1572 = tempRet0; + $1573 = (___muldi3(($1571|0),($1572|0),($1563|0),($1564|0))|0); + $1574 = tempRet0; + $1575 = (_i64Add(($1555|0),($1556|0),($1573|0),($1574|0))|0); + $1576 = tempRet0; + $1577 = $1127; + $1578 = $1577; + $1579 = HEAP32[$1578>>2]|0; + $1580 = (($1577) + 4)|0; + $1581 = $1580; + $1582 = HEAP32[$1581>>2]|0; + $1583 = (_bitshift64Ashr(0,($1579|0),32)|0); + $1584 = tempRet0; + $1585 = $178; + $1586 = $1585; + $1587 = HEAP32[$1586>>2]|0; + $1588 = (($1585) + 4)|0; + $1589 = $1588; + $1590 = HEAP32[$1589>>2]|0; + $1591 = (_bitshift64Ashr(0,($1587|0),32)|0); + $1592 = tempRet0; + $1593 = (___muldi3(($1591|0),($1592|0),($1583|0),($1584|0))|0); + $1594 = tempRet0; + $1595 = (_i64Add(($1575|0),($1576|0),($1593|0),($1594|0))|0); + $1596 = tempRet0; + $1597 = (_bitshift64Shl(($1595|0),($1596|0),1)|0); + $1598 = tempRet0; + $1599 = (_i64Add(($1597|0),($1598|0),($1517|0),($1518|0))|0); + $1600 = tempRet0; + $1601 = $298; + $1602 = $1601; + $1603 = HEAP32[$1602>>2]|0; + $1604 = (($1601) + 4)|0; + $1605 = $1604; + $1606 = HEAP32[$1605>>2]|0; + $1607 = (_bitshift64Ashr(0,($1603|0),32)|0); + $1608 = tempRet0; + $1609 = $909; + $1610 = $1609; + $1611 = HEAP32[$1610>>2]|0; + $1612 = (($1609) + 4)|0; + $1613 = $1612; + $1614 = HEAP32[$1613>>2]|0; + $1615 = (_bitshift64Ashr(0,($1611|0),32)|0); + $1616 = tempRet0; + $1617 = (___muldi3(($1615|0),($1616|0),($1607|0),($1608|0))|0); + $1618 = tempRet0; + $1619 = (_i64Add(($1599|0),($1600|0),($1617|0),($1618|0))|0); + $1620 = tempRet0; + $1621 = $922; + $1622 = $1621; + $1623 = HEAP32[$1622>>2]|0; + $1624 = (($1621) + 4)|0; + $1625 = $1624; + $1626 = HEAP32[$1625>>2]|0; + $1627 = (_bitshift64Ashr(0,($1623|0),32)|0); + $1628 = tempRet0; + $1629 = $285; + $1630 = $1629; + $1631 = HEAP32[$1630>>2]|0; + $1632 = (($1629) + 4)|0; + $1633 = $1632; + $1634 = HEAP32[$1633>>2]|0; + $1635 = (_bitshift64Ashr(0,($1631|0),32)|0); + $1636 = tempRet0; + $1637 = (___muldi3(($1635|0),($1636|0),($1627|0),($1628|0))|0); + $1638 = tempRet0; + $1639 = (_i64Add(($1619|0),($1620|0),($1637|0),($1638|0))|0); + $1640 = tempRet0; + $1641 = (($output) + 96|0); + $1642 = $1641; + $1643 = $1642; + HEAP32[$1643>>2] = $1639; + $1644 = (($1642) + 4)|0; + $1645 = $1644; + HEAP32[$1645>>2] = $1640; + $1646 = $570; + $1647 = $1646; + $1648 = HEAP32[$1647>>2]|0; + $1649 = (($1646) + 4)|0; + $1650 = $1649; + $1651 = HEAP32[$1650>>2]|0; + $1652 = (_bitshift64Ashr(0,($1648|0),32)|0); + $1653 = tempRet0; + $1654 = $722; + $1655 = $1654; + $1656 = HEAP32[$1655>>2]|0; + $1657 = (($1654) + 4)|0; + $1658 = $1657; + $1659 = HEAP32[$1658>>2]|0; + $1660 = (_bitshift64Ashr(0,($1656|0),32)|0); + $1661 = tempRet0; + $1662 = (___muldi3(($1660|0),($1661|0),($1652|0),($1653|0))|0); + $1663 = tempRet0; + $1664 = $735; + $1665 = $1664; + $1666 = HEAP32[$1665>>2]|0; + $1667 = (($1664) + 4)|0; + $1668 = $1667; + $1669 = HEAP32[$1668>>2]|0; + $1670 = (_bitshift64Ashr(0,($1666|0),32)|0); + $1671 = tempRet0; + $1672 = $557; + $1673 = $1672; + $1674 = HEAP32[$1673>>2]|0; + $1675 = (($1672) + 4)|0; + $1676 = $1675; + $1677 = HEAP32[$1676>>2]|0; + $1678 = (_bitshift64Ashr(0,($1674|0),32)|0); + $1679 = tempRet0; + $1680 = (___muldi3(($1678|0),($1679|0),($1670|0),($1671|0))|0); + $1681 = tempRet0; + $1682 = (_i64Add(($1680|0),($1681|0),($1662|0),($1663|0))|0); + $1683 = tempRet0; + $1684 = $423; + $1685 = $1684; + $1686 = HEAP32[$1685>>2]|0; + $1687 = (($1684) + 4)|0; + $1688 = $1687; + $1689 = HEAP32[$1688>>2]|0; + $1690 = (_bitshift64Ashr(0,($1686|0),32)|0); + $1691 = tempRet0; + $1692 = $909; + $1693 = $1692; + $1694 = HEAP32[$1693>>2]|0; + $1695 = (($1692) + 4)|0; + $1696 = $1695; + $1697 = HEAP32[$1696>>2]|0; + $1698 = (_bitshift64Ashr(0,($1694|0),32)|0); + $1699 = tempRet0; + $1700 = (___muldi3(($1698|0),($1699|0),($1690|0),($1691|0))|0); + $1701 = tempRet0; + $1702 = (_i64Add(($1682|0),($1683|0),($1700|0),($1701|0))|0); + $1703 = tempRet0; + $1704 = $922; + $1705 = $1704; + $1706 = HEAP32[$1705>>2]|0; + $1707 = (($1704) + 4)|0; + $1708 = $1707; + $1709 = HEAP32[$1708>>2]|0; + $1710 = (_bitshift64Ashr(0,($1706|0),32)|0); + $1711 = tempRet0; + $1712 = $410; + $1713 = $1712; + $1714 = HEAP32[$1713>>2]|0; + $1715 = (($1712) + 4)|0; + $1716 = $1715; + $1717 = HEAP32[$1716>>2]|0; + $1718 = (_bitshift64Ashr(0,($1714|0),32)|0); + $1719 = tempRet0; + $1720 = (___muldi3(($1718|0),($1719|0),($1710|0),($1711|0))|0); + $1721 = tempRet0; + $1722 = (_i64Add(($1702|0),($1703|0),($1720|0),($1721|0))|0); + $1723 = tempRet0; + $1724 = $298; + $1725 = $1724; + $1726 = HEAP32[$1725>>2]|0; + $1727 = (($1724) + 4)|0; + $1728 = $1727; + $1729 = HEAP32[$1728>>2]|0; + $1730 = (_bitshift64Ashr(0,($1726|0),32)|0); + $1731 = tempRet0; + $1732 = $1114; + $1733 = $1732; + $1734 = HEAP32[$1733>>2]|0; + $1735 = (($1732) + 4)|0; + $1736 = $1735; + $1737 = HEAP32[$1736>>2]|0; + $1738 = (_bitshift64Ashr(0,($1734|0),32)|0); + $1739 = tempRet0; + $1740 = (___muldi3(($1738|0),($1739|0),($1730|0),($1731|0))|0); + $1741 = tempRet0; + $1742 = (_i64Add(($1722|0),($1723|0),($1740|0),($1741|0))|0); + $1743 = tempRet0; + $1744 = $1127; + $1745 = $1744; + $1746 = HEAP32[$1745>>2]|0; + $1747 = (($1744) + 4)|0; + $1748 = $1747; + $1749 = HEAP32[$1748>>2]|0; + $1750 = (_bitshift64Ashr(0,($1746|0),32)|0); + $1751 = tempRet0; + $1752 = $285; + $1753 = $1752; + $1754 = HEAP32[$1753>>2]|0; + $1755 = (($1752) + 4)|0; + $1756 = $1755; + $1757 = HEAP32[$1756>>2]|0; + $1758 = (_bitshift64Ashr(0,($1754|0),32)|0); + $1759 = tempRet0; + $1760 = (___muldi3(($1758|0),($1759|0),($1750|0),($1751|0))|0); + $1761 = tempRet0; + $1762 = (_i64Add(($1742|0),($1743|0),($1760|0),($1761|0))|0); + $1763 = tempRet0; + $1764 = (($output) + 104|0); + $1765 = $1764; + $1766 = $1765; + HEAP32[$1766>>2] = $1762; + $1767 = (($1765) + 4)|0; + $1768 = $1767; + HEAP32[$1768>>2] = $1763; + $1769 = $735; + $1770 = $1769; + $1771 = HEAP32[$1770>>2]|0; + $1772 = (($1769) + 4)|0; + $1773 = $1772; + $1774 = HEAP32[$1773>>2]|0; + $1775 = (_bitshift64Ashr(0,($1771|0),32)|0); + $1776 = tempRet0; + $1777 = $722; + $1778 = $1777; + $1779 = HEAP32[$1778>>2]|0; + $1780 = (($1777) + 4)|0; + $1781 = $1780; + $1782 = HEAP32[$1781>>2]|0; + $1783 = (_bitshift64Ashr(0,($1779|0),32)|0); + $1784 = tempRet0; + $1785 = (___muldi3(($1783|0),($1784|0),($1775|0),($1776|0))|0); + $1786 = tempRet0; + $1787 = $423; + $1788 = $1787; + $1789 = HEAP32[$1788>>2]|0; + $1790 = (($1787) + 4)|0; + $1791 = $1790; + $1792 = HEAP32[$1791>>2]|0; + $1793 = (_bitshift64Ashr(0,($1789|0),32)|0); + $1794 = tempRet0; + $1795 = $1114; + $1796 = $1795; + $1797 = HEAP32[$1796>>2]|0; + $1798 = (($1795) + 4)|0; + $1799 = $1798; + $1800 = HEAP32[$1799>>2]|0; + $1801 = (_bitshift64Ashr(0,($1797|0),32)|0); + $1802 = tempRet0; + $1803 = (___muldi3(($1801|0),($1802|0),($1793|0),($1794|0))|0); + $1804 = tempRet0; + $1805 = (_i64Add(($1803|0),($1804|0),($1785|0),($1786|0))|0); + $1806 = tempRet0; + $1807 = $1127; + $1808 = $1807; + $1809 = HEAP32[$1808>>2]|0; + $1810 = (($1807) + 4)|0; + $1811 = $1810; + $1812 = HEAP32[$1811>>2]|0; + $1813 = (_bitshift64Ashr(0,($1809|0),32)|0); + $1814 = tempRet0; + $1815 = $410; + $1816 = $1815; + $1817 = HEAP32[$1816>>2]|0; + $1818 = (($1815) + 4)|0; + $1819 = $1818; + $1820 = HEAP32[$1819>>2]|0; + $1821 = (_bitshift64Ashr(0,($1817|0),32)|0); + $1822 = tempRet0; + $1823 = (___muldi3(($1821|0),($1822|0),($1813|0),($1814|0))|0); + $1824 = tempRet0; + $1825 = (_i64Add(($1805|0),($1806|0),($1823|0),($1824|0))|0); + $1826 = tempRet0; + $1827 = (_bitshift64Shl(($1825|0),($1826|0),1)|0); + $1828 = tempRet0; + $1829 = $570; + $1830 = $1829; + $1831 = HEAP32[$1830>>2]|0; + $1832 = (($1829) + 4)|0; + $1833 = $1832; + $1834 = HEAP32[$1833>>2]|0; + $1835 = (_bitshift64Ashr(0,($1831|0),32)|0); + $1836 = tempRet0; + $1837 = $909; + $1838 = $1837; + $1839 = HEAP32[$1838>>2]|0; + $1840 = (($1837) + 4)|0; + $1841 = $1840; + $1842 = HEAP32[$1841>>2]|0; + $1843 = (_bitshift64Ashr(0,($1839|0),32)|0); + $1844 = tempRet0; + $1845 = (___muldi3(($1843|0),($1844|0),($1835|0),($1836|0))|0); + $1846 = tempRet0; + $1847 = (_i64Add(($1827|0),($1828|0),($1845|0),($1846|0))|0); + $1848 = tempRet0; + $1849 = $922; + $1850 = $1849; + $1851 = HEAP32[$1850>>2]|0; + $1852 = (($1849) + 4)|0; + $1853 = $1852; + $1854 = HEAP32[$1853>>2]|0; + $1855 = (_bitshift64Ashr(0,($1851|0),32)|0); + $1856 = tempRet0; + $1857 = $557; + $1858 = $1857; + $1859 = HEAP32[$1858>>2]|0; + $1860 = (($1857) + 4)|0; + $1861 = $1860; + $1862 = HEAP32[$1861>>2]|0; + $1863 = (_bitshift64Ashr(0,($1859|0),32)|0); + $1864 = tempRet0; + $1865 = (___muldi3(($1863|0),($1864|0),($1855|0),($1856|0))|0); + $1866 = tempRet0; + $1867 = (_i64Add(($1847|0),($1848|0),($1865|0),($1866|0))|0); + $1868 = tempRet0; + $1869 = (($output) + 112|0); + $1870 = $1869; + $1871 = $1870; + HEAP32[$1871>>2] = $1867; + $1872 = (($1870) + 4)|0; + $1873 = $1872; + HEAP32[$1873>>2] = $1868; + $1874 = $735; + $1875 = $1874; + $1876 = HEAP32[$1875>>2]|0; + $1877 = (($1874) + 4)|0; + $1878 = $1877; + $1879 = HEAP32[$1878>>2]|0; + $1880 = (_bitshift64Ashr(0,($1876|0),32)|0); + $1881 = tempRet0; + $1882 = $909; + $1883 = $1882; + $1884 = HEAP32[$1883>>2]|0; + $1885 = (($1882) + 4)|0; + $1886 = $1885; + $1887 = HEAP32[$1886>>2]|0; + $1888 = (_bitshift64Ashr(0,($1884|0),32)|0); + $1889 = tempRet0; + $1890 = (___muldi3(($1888|0),($1889|0),($1880|0),($1881|0))|0); + $1891 = tempRet0; + $1892 = $922; + $1893 = $1892; + $1894 = HEAP32[$1893>>2]|0; + $1895 = (($1892) + 4)|0; + $1896 = $1895; + $1897 = HEAP32[$1896>>2]|0; + $1898 = (_bitshift64Ashr(0,($1894|0),32)|0); + $1899 = tempRet0; + $1900 = $722; + $1901 = $1900; + $1902 = HEAP32[$1901>>2]|0; + $1903 = (($1900) + 4)|0; + $1904 = $1903; + $1905 = HEAP32[$1904>>2]|0; + $1906 = (_bitshift64Ashr(0,($1902|0),32)|0); + $1907 = tempRet0; + $1908 = (___muldi3(($1906|0),($1907|0),($1898|0),($1899|0))|0); + $1909 = tempRet0; + $1910 = (_i64Add(($1908|0),($1909|0),($1890|0),($1891|0))|0); + $1911 = tempRet0; + $1912 = $570; + $1913 = $1912; + $1914 = HEAP32[$1913>>2]|0; + $1915 = (($1912) + 4)|0; + $1916 = $1915; + $1917 = HEAP32[$1916>>2]|0; + $1918 = (_bitshift64Ashr(0,($1914|0),32)|0); + $1919 = tempRet0; + $1920 = $1114; + $1921 = $1920; + $1922 = HEAP32[$1921>>2]|0; + $1923 = (($1920) + 4)|0; + $1924 = $1923; + $1925 = HEAP32[$1924>>2]|0; + $1926 = (_bitshift64Ashr(0,($1922|0),32)|0); + $1927 = tempRet0; + $1928 = (___muldi3(($1926|0),($1927|0),($1918|0),($1919|0))|0); + $1929 = tempRet0; + $1930 = (_i64Add(($1910|0),($1911|0),($1928|0),($1929|0))|0); + $1931 = tempRet0; + $1932 = $1127; + $1933 = $1932; + $1934 = HEAP32[$1933>>2]|0; + $1935 = (($1932) + 4)|0; + $1936 = $1935; + $1937 = HEAP32[$1936>>2]|0; + $1938 = (_bitshift64Ashr(0,($1934|0),32)|0); + $1939 = tempRet0; + $1940 = $557; + $1941 = $1940; + $1942 = HEAP32[$1941>>2]|0; + $1943 = (($1940) + 4)|0; + $1944 = $1943; + $1945 = HEAP32[$1944>>2]|0; + $1946 = (_bitshift64Ashr(0,($1942|0),32)|0); + $1947 = tempRet0; + $1948 = (___muldi3(($1946|0),($1947|0),($1938|0),($1939|0))|0); + $1949 = tempRet0; + $1950 = (_i64Add(($1930|0),($1931|0),($1948|0),($1949|0))|0); + $1951 = tempRet0; + $1952 = (($output) + 120|0); + $1953 = $1952; + $1954 = $1953; + HEAP32[$1954>>2] = $1950; + $1955 = (($1953) + 4)|0; + $1956 = $1955; + HEAP32[$1956>>2] = $1951; + $1957 = $922; + $1958 = $1957; + $1959 = HEAP32[$1958>>2]|0; + $1960 = (($1957) + 4)|0; + $1961 = $1960; + $1962 = HEAP32[$1961>>2]|0; + $1963 = (_bitshift64Ashr(0,($1959|0),32)|0); + $1964 = tempRet0; + $1965 = $909; + $1966 = $1965; + $1967 = HEAP32[$1966>>2]|0; + $1968 = (($1965) + 4)|0; + $1969 = $1968; + $1970 = HEAP32[$1969>>2]|0; + $1971 = (_bitshift64Ashr(0,($1967|0),32)|0); + $1972 = tempRet0; + $1973 = (___muldi3(($1971|0),($1972|0),($1963|0),($1964|0))|0); + $1974 = tempRet0; + $1975 = $735; + $1976 = $1975; + $1977 = HEAP32[$1976>>2]|0; + $1978 = (($1975) + 4)|0; + $1979 = $1978; + $1980 = HEAP32[$1979>>2]|0; + $1981 = (_bitshift64Ashr(0,($1977|0),32)|0); + $1982 = tempRet0; + $1983 = $1114; + $1984 = $1983; + $1985 = HEAP32[$1984>>2]|0; + $1986 = (($1983) + 4)|0; + $1987 = $1986; + $1988 = HEAP32[$1987>>2]|0; + $1989 = (_bitshift64Ashr(0,($1985|0),32)|0); + $1990 = tempRet0; + $1991 = (___muldi3(($1989|0),($1990|0),($1981|0),($1982|0))|0); + $1992 = tempRet0; + $1993 = $1127; + $1994 = $1993; + $1995 = HEAP32[$1994>>2]|0; + $1996 = (($1993) + 4)|0; + $1997 = $1996; + $1998 = HEAP32[$1997>>2]|0; + $1999 = (_bitshift64Ashr(0,($1995|0),32)|0); + $2000 = tempRet0; + $2001 = $722; + $2002 = $2001; + $2003 = HEAP32[$2002>>2]|0; + $2004 = (($2001) + 4)|0; + $2005 = $2004; + $2006 = HEAP32[$2005>>2]|0; + $2007 = (_bitshift64Ashr(0,($2003|0),32)|0); + $2008 = tempRet0; + $2009 = (___muldi3(($2007|0),($2008|0),($1999|0),($2000|0))|0); + $2010 = tempRet0; + $2011 = (_i64Add(($2009|0),($2010|0),($1991|0),($1992|0))|0); + $2012 = tempRet0; + $2013 = (_bitshift64Shl(($2011|0),($2012|0),1)|0); + $2014 = tempRet0; + $2015 = (_i64Add(($2013|0),($2014|0),($1973|0),($1974|0))|0); + $2016 = tempRet0; + $2017 = (($output) + 128|0); + $2018 = $2017; + $2019 = $2018; + HEAP32[$2019>>2] = $2015; + $2020 = (($2018) + 4)|0; + $2021 = $2020; + HEAP32[$2021>>2] = $2016; + $2022 = $922; + $2023 = $2022; + $2024 = HEAP32[$2023>>2]|0; + $2025 = (($2022) + 4)|0; + $2026 = $2025; + $2027 = HEAP32[$2026>>2]|0; + $2028 = (_bitshift64Ashr(0,($2024|0),32)|0); + $2029 = tempRet0; + $2030 = $1114; + $2031 = $2030; + $2032 = HEAP32[$2031>>2]|0; + $2033 = (($2030) + 4)|0; + $2034 = $2033; + $2035 = HEAP32[$2034>>2]|0; + $2036 = (_bitshift64Ashr(0,($2032|0),32)|0); + $2037 = tempRet0; + $2038 = (___muldi3(($2036|0),($2037|0),($2028|0),($2029|0))|0); + $2039 = tempRet0; + $2040 = $1127; + $2041 = $2040; + $2042 = HEAP32[$2041>>2]|0; + $2043 = (($2040) + 4)|0; + $2044 = $2043; + $2045 = HEAP32[$2044>>2]|0; + $2046 = (_bitshift64Ashr(0,($2042|0),32)|0); + $2047 = tempRet0; + $2048 = $909; + $2049 = $2048; + $2050 = HEAP32[$2049>>2]|0; + $2051 = (($2048) + 4)|0; + $2052 = $2051; + $2053 = HEAP32[$2052>>2]|0; + $2054 = (_bitshift64Ashr(0,($2050|0),32)|0); + $2055 = tempRet0; + $2056 = (___muldi3(($2054|0),($2055|0),($2046|0),($2047|0))|0); + $2057 = tempRet0; + $2058 = (_i64Add(($2056|0),($2057|0),($2038|0),($2039|0))|0); + $2059 = tempRet0; + $2060 = (($output) + 136|0); + $2061 = $2060; + $2062 = $2061; + HEAP32[$2062>>2] = $2058; + $2063 = (($2061) + 4)|0; + $2064 = $2063; + HEAP32[$2064>>2] = $2059; + $2065 = $1127; + $2066 = $2065; + $2067 = HEAP32[$2066>>2]|0; + $2068 = (($2065) + 4)|0; + $2069 = $2068; + $2070 = HEAP32[$2069>>2]|0; + $2071 = (_bitshift64Ashr(0,($2067|0),31)|0); + $2072 = tempRet0; + $2073 = $1114; + $2074 = $2073; + $2075 = HEAP32[$2074>>2]|0; + $2076 = (($2073) + 4)|0; + $2077 = $2076; + $2078 = HEAP32[$2077>>2]|0; + $2079 = (_bitshift64Ashr(0,($2075|0),32)|0); + $2080 = tempRet0; + $2081 = (___muldi3(($2079|0),($2080|0),($2071|0),($2072|0))|0); + $2082 = tempRet0; + $2083 = (($output) + 144|0); + $2084 = $2083; + $2085 = $2084; + HEAP32[$2085>>2] = $2081; + $2086 = (($2084) + 4)|0; + $2087 = $2086; + HEAP32[$2087>>2] = $2082; + STACKTOP = sp;return; +} +function _freduce_degree($output) { + $output = $output|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0; + var $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0; + var $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0; + var $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + $0 = (($output) + 144|0); + $1 = $0; + $2 = $1; + $3 = HEAP32[$2>>2]|0; + $4 = (($1) + 4)|0; + $5 = $4; + $6 = HEAP32[$5>>2]|0; + $7 = (_bitshift64Shl(($3|0),($6|0),4)|0); + $8 = tempRet0; + $9 = (($output) + 64|0); + $10 = $9; + $11 = $10; + $12 = HEAP32[$11>>2]|0; + $13 = (($10) + 4)|0; + $14 = $13; + $15 = HEAP32[$14>>2]|0; + $16 = (_i64Add(($12|0),($15|0),($7|0),($8|0))|0); + $17 = tempRet0; + $18 = (_bitshift64Shl(($3|0),($6|0),1)|0); + $19 = tempRet0; + $20 = (_i64Add(($18|0),($19|0),($16|0),($17|0))|0); + $21 = tempRet0; + $22 = $0; + $23 = $22; + $24 = HEAP32[$23>>2]|0; + $25 = (($22) + 4)|0; + $26 = $25; + $27 = HEAP32[$26>>2]|0; + $28 = (_i64Add(($20|0),($21|0),($24|0),($27|0))|0); + $29 = tempRet0; + $30 = $9; + $31 = $30; + HEAP32[$31>>2] = $28; + $32 = (($30) + 4)|0; + $33 = $32; + HEAP32[$33>>2] = $29; + $34 = (($output) + 136|0); + $35 = $34; + $36 = $35; + $37 = HEAP32[$36>>2]|0; + $38 = (($35) + 4)|0; + $39 = $38; + $40 = HEAP32[$39>>2]|0; + $41 = (_bitshift64Shl(($37|0),($40|0),4)|0); + $42 = tempRet0; + $43 = (($output) + 56|0); + $44 = $43; + $45 = $44; + $46 = HEAP32[$45>>2]|0; + $47 = (($44) + 4)|0; + $48 = $47; + $49 = HEAP32[$48>>2]|0; + $50 = (_i64Add(($46|0),($49|0),($41|0),($42|0))|0); + $51 = tempRet0; + $52 = (_bitshift64Shl(($37|0),($40|0),1)|0); + $53 = tempRet0; + $54 = (_i64Add(($52|0),($53|0),($50|0),($51|0))|0); + $55 = tempRet0; + $56 = $34; + $57 = $56; + $58 = HEAP32[$57>>2]|0; + $59 = (($56) + 4)|0; + $60 = $59; + $61 = HEAP32[$60>>2]|0; + $62 = (_i64Add(($54|0),($55|0),($58|0),($61|0))|0); + $63 = tempRet0; + $64 = $43; + $65 = $64; + HEAP32[$65>>2] = $62; + $66 = (($64) + 4)|0; + $67 = $66; + HEAP32[$67>>2] = $63; + $68 = (($output) + 128|0); + $69 = $68; + $70 = $69; + $71 = HEAP32[$70>>2]|0; + $72 = (($69) + 4)|0; + $73 = $72; + $74 = HEAP32[$73>>2]|0; + $75 = (_bitshift64Shl(($71|0),($74|0),4)|0); + $76 = tempRet0; + $77 = (($output) + 48|0); + $78 = $77; + $79 = $78; + $80 = HEAP32[$79>>2]|0; + $81 = (($78) + 4)|0; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (_i64Add(($80|0),($83|0),($75|0),($76|0))|0); + $85 = tempRet0; + $86 = (_bitshift64Shl(($71|0),($74|0),1)|0); + $87 = tempRet0; + $88 = (_i64Add(($86|0),($87|0),($84|0),($85|0))|0); + $89 = tempRet0; + $90 = $68; + $91 = $90; + $92 = HEAP32[$91>>2]|0; + $93 = (($90) + 4)|0; + $94 = $93; + $95 = HEAP32[$94>>2]|0; + $96 = (_i64Add(($88|0),($89|0),($92|0),($95|0))|0); + $97 = tempRet0; + $98 = $77; + $99 = $98; + HEAP32[$99>>2] = $96; + $100 = (($98) + 4)|0; + $101 = $100; + HEAP32[$101>>2] = $97; + $102 = (($output) + 120|0); + $103 = $102; + $104 = $103; + $105 = HEAP32[$104>>2]|0; + $106 = (($103) + 4)|0; + $107 = $106; + $108 = HEAP32[$107>>2]|0; + $109 = (_bitshift64Shl(($105|0),($108|0),4)|0); + $110 = tempRet0; + $111 = (($output) + 40|0); + $112 = $111; + $113 = $112; + $114 = HEAP32[$113>>2]|0; + $115 = (($112) + 4)|0; + $116 = $115; + $117 = HEAP32[$116>>2]|0; + $118 = (_i64Add(($114|0),($117|0),($109|0),($110|0))|0); + $119 = tempRet0; + $120 = (_bitshift64Shl(($105|0),($108|0),1)|0); + $121 = tempRet0; + $122 = (_i64Add(($120|0),($121|0),($118|0),($119|0))|0); + $123 = tempRet0; + $124 = $102; + $125 = $124; + $126 = HEAP32[$125>>2]|0; + $127 = (($124) + 4)|0; + $128 = $127; + $129 = HEAP32[$128>>2]|0; + $130 = (_i64Add(($122|0),($123|0),($126|0),($129|0))|0); + $131 = tempRet0; + $132 = $111; + $133 = $132; + HEAP32[$133>>2] = $130; + $134 = (($132) + 4)|0; + $135 = $134; + HEAP32[$135>>2] = $131; + $136 = (($output) + 112|0); + $137 = $136; + $138 = $137; + $139 = HEAP32[$138>>2]|0; + $140 = (($137) + 4)|0; + $141 = $140; + $142 = HEAP32[$141>>2]|0; + $143 = (_bitshift64Shl(($139|0),($142|0),4)|0); + $144 = tempRet0; + $145 = (($output) + 32|0); + $146 = $145; + $147 = $146; + $148 = HEAP32[$147>>2]|0; + $149 = (($146) + 4)|0; + $150 = $149; + $151 = HEAP32[$150>>2]|0; + $152 = (_i64Add(($148|0),($151|0),($143|0),($144|0))|0); + $153 = tempRet0; + $154 = (_bitshift64Shl(($139|0),($142|0),1)|0); + $155 = tempRet0; + $156 = (_i64Add(($154|0),($155|0),($152|0),($153|0))|0); + $157 = tempRet0; + $158 = $136; + $159 = $158; + $160 = HEAP32[$159>>2]|0; + $161 = (($158) + 4)|0; + $162 = $161; + $163 = HEAP32[$162>>2]|0; + $164 = (_i64Add(($156|0),($157|0),($160|0),($163|0))|0); + $165 = tempRet0; + $166 = $145; + $167 = $166; + HEAP32[$167>>2] = $164; + $168 = (($166) + 4)|0; + $169 = $168; + HEAP32[$169>>2] = $165; + $170 = (($output) + 104|0); + $171 = $170; + $172 = $171; + $173 = HEAP32[$172>>2]|0; + $174 = (($171) + 4)|0; + $175 = $174; + $176 = HEAP32[$175>>2]|0; + $177 = (_bitshift64Shl(($173|0),($176|0),4)|0); + $178 = tempRet0; + $179 = (($output) + 24|0); + $180 = $179; + $181 = $180; + $182 = HEAP32[$181>>2]|0; + $183 = (($180) + 4)|0; + $184 = $183; + $185 = HEAP32[$184>>2]|0; + $186 = (_i64Add(($182|0),($185|0),($177|0),($178|0))|0); + $187 = tempRet0; + $188 = (_bitshift64Shl(($173|0),($176|0),1)|0); + $189 = tempRet0; + $190 = (_i64Add(($188|0),($189|0),($186|0),($187|0))|0); + $191 = tempRet0; + $192 = $170; + $193 = $192; + $194 = HEAP32[$193>>2]|0; + $195 = (($192) + 4)|0; + $196 = $195; + $197 = HEAP32[$196>>2]|0; + $198 = (_i64Add(($190|0),($191|0),($194|0),($197|0))|0); + $199 = tempRet0; + $200 = $179; + $201 = $200; + HEAP32[$201>>2] = $198; + $202 = (($200) + 4)|0; + $203 = $202; + HEAP32[$203>>2] = $199; + $204 = (($output) + 96|0); + $205 = $204; + $206 = $205; + $207 = HEAP32[$206>>2]|0; + $208 = (($205) + 4)|0; + $209 = $208; + $210 = HEAP32[$209>>2]|0; + $211 = (_bitshift64Shl(($207|0),($210|0),4)|0); + $212 = tempRet0; + $213 = (($output) + 16|0); + $214 = $213; + $215 = $214; + $216 = HEAP32[$215>>2]|0; + $217 = (($214) + 4)|0; + $218 = $217; + $219 = HEAP32[$218>>2]|0; + $220 = (_i64Add(($216|0),($219|0),($211|0),($212|0))|0); + $221 = tempRet0; + $222 = (_bitshift64Shl(($207|0),($210|0),1)|0); + $223 = tempRet0; + $224 = (_i64Add(($222|0),($223|0),($220|0),($221|0))|0); + $225 = tempRet0; + $226 = $204; + $227 = $226; + $228 = HEAP32[$227>>2]|0; + $229 = (($226) + 4)|0; + $230 = $229; + $231 = HEAP32[$230>>2]|0; + $232 = (_i64Add(($224|0),($225|0),($228|0),($231|0))|0); + $233 = tempRet0; + $234 = $213; + $235 = $234; + HEAP32[$235>>2] = $232; + $236 = (($234) + 4)|0; + $237 = $236; + HEAP32[$237>>2] = $233; + $238 = (($output) + 88|0); + $239 = $238; + $240 = $239; + $241 = HEAP32[$240>>2]|0; + $242 = (($239) + 4)|0; + $243 = $242; + $244 = HEAP32[$243>>2]|0; + $245 = (_bitshift64Shl(($241|0),($244|0),4)|0); + $246 = tempRet0; + $247 = (($output) + 8|0); + $248 = $247; + $249 = $248; + $250 = HEAP32[$249>>2]|0; + $251 = (($248) + 4)|0; + $252 = $251; + $253 = HEAP32[$252>>2]|0; + $254 = (_i64Add(($250|0),($253|0),($245|0),($246|0))|0); + $255 = tempRet0; + $256 = (_bitshift64Shl(($241|0),($244|0),1)|0); + $257 = tempRet0; + $258 = (_i64Add(($256|0),($257|0),($254|0),($255|0))|0); + $259 = tempRet0; + $260 = $238; + $261 = $260; + $262 = HEAP32[$261>>2]|0; + $263 = (($260) + 4)|0; + $264 = $263; + $265 = HEAP32[$264>>2]|0; + $266 = (_i64Add(($258|0),($259|0),($262|0),($265|0))|0); + $267 = tempRet0; + $268 = $247; + $269 = $268; + HEAP32[$269>>2] = $266; + $270 = (($268) + 4)|0; + $271 = $270; + HEAP32[$271>>2] = $267; + $272 = (($output) + 80|0); + $273 = $272; + $274 = $273; + $275 = HEAP32[$274>>2]|0; + $276 = (($273) + 4)|0; + $277 = $276; + $278 = HEAP32[$277>>2]|0; + $279 = (_bitshift64Shl(($275|0),($278|0),4)|0); + $280 = tempRet0; + $281 = $output; + $282 = $281; + $283 = HEAP32[$282>>2]|0; + $284 = (($281) + 4)|0; + $285 = $284; + $286 = HEAP32[$285>>2]|0; + $287 = (_i64Add(($283|0),($286|0),($279|0),($280|0))|0); + $288 = tempRet0; + $289 = (_bitshift64Shl(($275|0),($278|0),1)|0); + $290 = tempRet0; + $291 = (_i64Add(($289|0),($290|0),($287|0),($288|0))|0); + $292 = tempRet0; + $293 = (_i64Add(($291|0),($292|0),($275|0),($278|0))|0); + $294 = tempRet0; + $295 = $output; + $296 = $295; + HEAP32[$296>>2] = $293; + $297 = (($295) + 4)|0; + $298 = $297; + HEAP32[$298>>2] = $294; + STACKTOP = sp;return; +} +function _freduce_coefficients($output) { + $output = $output|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0; + var $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0; + var $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0; + var $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0; + var $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $i$01 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($output) + 80|0); + $1 = $0; + $2 = $1; + HEAP32[$2>>2] = 0; + $3 = (($1) + 4)|0; + $4 = $3; + HEAP32[$4>>2] = 0; + $i$01 = 0; + while(1) { + $5 = (($output) + ($i$01<<3)|0); + $6 = $5; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + $9 = (($6) + 4)|0; + $10 = $9; + $11 = HEAP32[$10>>2]|0; + $12 = (_div_by_2_26($8,$11)|0); + $13 = tempRet0; + $14 = (_bitshift64Shl(($12|0),($13|0),26)|0); + $15 = tempRet0; + $16 = (_i64Subtract(($8|0),($11|0),($14|0),($15|0))|0); + $17 = tempRet0; + $18 = $5; + $19 = $18; + HEAP32[$19>>2] = $16; + $20 = (($18) + 4)|0; + $21 = $20; + HEAP32[$21>>2] = $17; + $22 = $i$01 | 1; + $23 = (($output) + ($22<<3)|0); + $24 = $23; + $25 = $24; + $26 = HEAP32[$25>>2]|0; + $27 = (($24) + 4)|0; + $28 = $27; + $29 = HEAP32[$28>>2]|0; + $30 = (_i64Add(($26|0),($29|0),($12|0),($13|0))|0); + $31 = tempRet0; + $32 = (_div_by_2_25($30,$31)|0); + $33 = tempRet0; + $34 = (_bitshift64Shl(($32|0),($33|0),25)|0); + $35 = tempRet0; + $36 = (_i64Subtract(($30|0),($31|0),($34|0),($35|0))|0); + $37 = tempRet0; + $38 = $23; + $39 = $38; + HEAP32[$39>>2] = $36; + $40 = (($38) + 4)|0; + $41 = $40; + HEAP32[$41>>2] = $37; + $42 = (($i$01) + 2)|0; + $43 = (($output) + ($42<<3)|0); + $44 = $43; + $45 = $44; + $46 = HEAP32[$45>>2]|0; + $47 = (($44) + 4)|0; + $48 = $47; + $49 = HEAP32[$48>>2]|0; + $50 = (_i64Add(($46|0),($49|0),($32|0),($33|0))|0); + $51 = tempRet0; + $52 = $43; + $53 = $52; + HEAP32[$53>>2] = $50; + $54 = (($52) + 4)|0; + $55 = $54; + HEAP32[$55>>2] = $51; + $56 = ($42>>>0)<(10); + if ($56) { + $i$01 = $42; + } else { + break; + } + } + $57 = $0; + $58 = $57; + $59 = HEAP32[$58>>2]|0; + $60 = (($57) + 4)|0; + $61 = $60; + $62 = HEAP32[$61>>2]|0; + $63 = (_bitshift64Shl(($59|0),($62|0),4)|0); + $64 = tempRet0; + $65 = $output; + $66 = $65; + $67 = HEAP32[$66>>2]|0; + $68 = (($65) + 4)|0; + $69 = $68; + $70 = HEAP32[$69>>2]|0; + $71 = (_i64Add(($67|0),($70|0),($63|0),($64|0))|0); + $72 = tempRet0; + $73 = (_bitshift64Shl(($59|0),($62|0),1)|0); + $74 = tempRet0; + $75 = (_i64Add(($73|0),($74|0),($71|0),($72|0))|0); + $76 = tempRet0; + $77 = (_i64Add(($75|0),($76|0),($59|0),($62|0))|0); + $78 = tempRet0; + $79 = $output; + $80 = $79; + HEAP32[$80>>2] = $77; + $81 = (($79) + 4)|0; + $82 = $81; + HEAP32[$82>>2] = $78; + $83 = $0; + $84 = $83; + HEAP32[$84>>2] = 0; + $85 = (($83) + 4)|0; + $86 = $85; + HEAP32[$86>>2] = 0; + $87 = $output; + $88 = $87; + $89 = HEAP32[$88>>2]|0; + $90 = (($87) + 4)|0; + $91 = $90; + $92 = HEAP32[$91>>2]|0; + $93 = (_div_by_2_26($89,$92)|0); + $94 = tempRet0; + $95 = (_bitshift64Shl(($93|0),($94|0),26)|0); + $96 = tempRet0; + $97 = (_i64Subtract(($89|0),($92|0),($95|0),($96|0))|0); + $98 = tempRet0; + $99 = $output; + $100 = $99; + HEAP32[$100>>2] = $97; + $101 = (($99) + 4)|0; + $102 = $101; + HEAP32[$102>>2] = $98; + $103 = (($output) + 8|0); + $104 = $103; + $105 = $104; + $106 = HEAP32[$105>>2]|0; + $107 = (($104) + 4)|0; + $108 = $107; + $109 = HEAP32[$108>>2]|0; + $110 = (_i64Add(($106|0),($109|0),($93|0),($94|0))|0); + $111 = tempRet0; + $112 = $103; + $113 = $112; + HEAP32[$113>>2] = $110; + $114 = (($112) + 4)|0; + $115 = $114; + HEAP32[$115>>2] = $111; + STACKTOP = sp;return; +} +function _s32_eq($a,$b) { + $a = $a|0; + $b = $b|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $a ^ -1; + $1 = $0 ^ $b; + $2 = $1 << 16; + $3 = $2 & $1; + $4 = $3 << 8; + $5 = $4 & $3; + $6 = $5 << 4; + $7 = $6 & $5; + $8 = $7 << 2; + $9 = $8 & $7; + $10 = $9 << 1; + $11 = $10 & $9; + $12 = $11 >> 31; + STACKTOP = sp;return ($12|0); +} +function _s32_gte($a) { + $a = $a|0; + var $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($a) + -67108845)|0; + $1 = $0 >> 31; + $2 = $1 ^ -1; + STACKTOP = sp;return ($2|0); +} +function _fsum($output,$in) { + $output = $output|0; + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; + var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $output; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = $in; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + $9 = (($6) + 4)|0; + $10 = $9; + $11 = HEAP32[$10>>2]|0; + $12 = (_i64Add(($8|0),($11|0),($2|0),($5|0))|0); + $13 = tempRet0; + $14 = $output; + $15 = $14; + HEAP32[$15>>2] = $12; + $16 = (($14) + 4)|0; + $17 = $16; + HEAP32[$17>>2] = $13; + $18 = (($output) + 8|0); + $19 = $18; + $20 = $19; + $21 = HEAP32[$20>>2]|0; + $22 = (($19) + 4)|0; + $23 = $22; + $24 = HEAP32[$23>>2]|0; + $25 = (($in) + 8|0); + $26 = $25; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (($26) + 4)|0; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = (_i64Add(($28|0),($31|0),($21|0),($24|0))|0); + $33 = tempRet0; + $34 = $18; + $35 = $34; + HEAP32[$35>>2] = $32; + $36 = (($34) + 4)|0; + $37 = $36; + HEAP32[$37>>2] = $33; + $38 = (($output) + 16|0); + $39 = $38; + $40 = $39; + $41 = HEAP32[$40>>2]|0; + $42 = (($39) + 4)|0; + $43 = $42; + $44 = HEAP32[$43>>2]|0; + $45 = (($in) + 16|0); + $46 = $45; + $47 = $46; + $48 = HEAP32[$47>>2]|0; + $49 = (($46) + 4)|0; + $50 = $49; + $51 = HEAP32[$50>>2]|0; + $52 = (_i64Add(($48|0),($51|0),($41|0),($44|0))|0); + $53 = tempRet0; + $54 = $38; + $55 = $54; + HEAP32[$55>>2] = $52; + $56 = (($54) + 4)|0; + $57 = $56; + HEAP32[$57>>2] = $53; + $58 = (($output) + 24|0); + $59 = $58; + $60 = $59; + $61 = HEAP32[$60>>2]|0; + $62 = (($59) + 4)|0; + $63 = $62; + $64 = HEAP32[$63>>2]|0; + $65 = (($in) + 24|0); + $66 = $65; + $67 = $66; + $68 = HEAP32[$67>>2]|0; + $69 = (($66) + 4)|0; + $70 = $69; + $71 = HEAP32[$70>>2]|0; + $72 = (_i64Add(($68|0),($71|0),($61|0),($64|0))|0); + $73 = tempRet0; + $74 = $58; + $75 = $74; + HEAP32[$75>>2] = $72; + $76 = (($74) + 4)|0; + $77 = $76; + HEAP32[$77>>2] = $73; + $78 = (($output) + 32|0); + $79 = $78; + $80 = $79; + $81 = HEAP32[$80>>2]|0; + $82 = (($79) + 4)|0; + $83 = $82; + $84 = HEAP32[$83>>2]|0; + $85 = (($in) + 32|0); + $86 = $85; + $87 = $86; + $88 = HEAP32[$87>>2]|0; + $89 = (($86) + 4)|0; + $90 = $89; + $91 = HEAP32[$90>>2]|0; + $92 = (_i64Add(($88|0),($91|0),($81|0),($84|0))|0); + $93 = tempRet0; + $94 = $78; + $95 = $94; + HEAP32[$95>>2] = $92; + $96 = (($94) + 4)|0; + $97 = $96; + HEAP32[$97>>2] = $93; + $98 = (($output) + 40|0); + $99 = $98; + $100 = $99; + $101 = HEAP32[$100>>2]|0; + $102 = (($99) + 4)|0; + $103 = $102; + $104 = HEAP32[$103>>2]|0; + $105 = (($in) + 40|0); + $106 = $105; + $107 = $106; + $108 = HEAP32[$107>>2]|0; + $109 = (($106) + 4)|0; + $110 = $109; + $111 = HEAP32[$110>>2]|0; + $112 = (_i64Add(($108|0),($111|0),($101|0),($104|0))|0); + $113 = tempRet0; + $114 = $98; + $115 = $114; + HEAP32[$115>>2] = $112; + $116 = (($114) + 4)|0; + $117 = $116; + HEAP32[$117>>2] = $113; + $118 = (($output) + 48|0); + $119 = $118; + $120 = $119; + $121 = HEAP32[$120>>2]|0; + $122 = (($119) + 4)|0; + $123 = $122; + $124 = HEAP32[$123>>2]|0; + $125 = (($in) + 48|0); + $126 = $125; + $127 = $126; + $128 = HEAP32[$127>>2]|0; + $129 = (($126) + 4)|0; + $130 = $129; + $131 = HEAP32[$130>>2]|0; + $132 = (_i64Add(($128|0),($131|0),($121|0),($124|0))|0); + $133 = tempRet0; + $134 = $118; + $135 = $134; + HEAP32[$135>>2] = $132; + $136 = (($134) + 4)|0; + $137 = $136; + HEAP32[$137>>2] = $133; + $138 = (($output) + 56|0); + $139 = $138; + $140 = $139; + $141 = HEAP32[$140>>2]|0; + $142 = (($139) + 4)|0; + $143 = $142; + $144 = HEAP32[$143>>2]|0; + $145 = (($in) + 56|0); + $146 = $145; + $147 = $146; + $148 = HEAP32[$147>>2]|0; + $149 = (($146) + 4)|0; + $150 = $149; + $151 = HEAP32[$150>>2]|0; + $152 = (_i64Add(($148|0),($151|0),($141|0),($144|0))|0); + $153 = tempRet0; + $154 = $138; + $155 = $154; + HEAP32[$155>>2] = $152; + $156 = (($154) + 4)|0; + $157 = $156; + HEAP32[$157>>2] = $153; + $158 = (($output) + 64|0); + $159 = $158; + $160 = $159; + $161 = HEAP32[$160>>2]|0; + $162 = (($159) + 4)|0; + $163 = $162; + $164 = HEAP32[$163>>2]|0; + $165 = (($in) + 64|0); + $166 = $165; + $167 = $166; + $168 = HEAP32[$167>>2]|0; + $169 = (($166) + 4)|0; + $170 = $169; + $171 = HEAP32[$170>>2]|0; + $172 = (_i64Add(($168|0),($171|0),($161|0),($164|0))|0); + $173 = tempRet0; + $174 = $158; + $175 = $174; + HEAP32[$175>>2] = $172; + $176 = (($174) + 4)|0; + $177 = $176; + HEAP32[$177>>2] = $173; + $178 = (($output) + 72|0); + $179 = $178; + $180 = $179; + $181 = HEAP32[$180>>2]|0; + $182 = (($179) + 4)|0; + $183 = $182; + $184 = HEAP32[$183>>2]|0; + $185 = (($in) + 72|0); + $186 = $185; + $187 = $186; + $188 = HEAP32[$187>>2]|0; + $189 = (($186) + 4)|0; + $190 = $189; + $191 = HEAP32[$190>>2]|0; + $192 = (_i64Add(($188|0),($191|0),($181|0),($184|0))|0); + $193 = tempRet0; + $194 = $178; + $195 = $194; + HEAP32[$195>>2] = $192; + $196 = (($194) + 4)|0; + $197 = $196; + HEAP32[$197>>2] = $193; + STACKTOP = sp;return; +} +function _fdifference($output,$in) { + $output = $output|0; + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; + var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $in; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = $output; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + $9 = (($6) + 4)|0; + $10 = $9; + $11 = HEAP32[$10>>2]|0; + $12 = (_i64Subtract(($2|0),($5|0),($8|0),($11|0))|0); + $13 = tempRet0; + $14 = $output; + $15 = $14; + HEAP32[$15>>2] = $12; + $16 = (($14) + 4)|0; + $17 = $16; + HEAP32[$17>>2] = $13; + $18 = (($in) + 8|0); + $19 = $18; + $20 = $19; + $21 = HEAP32[$20>>2]|0; + $22 = (($19) + 4)|0; + $23 = $22; + $24 = HEAP32[$23>>2]|0; + $25 = (($output) + 8|0); + $26 = $25; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (($26) + 4)|0; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = (_i64Subtract(($21|0),($24|0),($28|0),($31|0))|0); + $33 = tempRet0; + $34 = $25; + $35 = $34; + HEAP32[$35>>2] = $32; + $36 = (($34) + 4)|0; + $37 = $36; + HEAP32[$37>>2] = $33; + $38 = (($in) + 16|0); + $39 = $38; + $40 = $39; + $41 = HEAP32[$40>>2]|0; + $42 = (($39) + 4)|0; + $43 = $42; + $44 = HEAP32[$43>>2]|0; + $45 = (($output) + 16|0); + $46 = $45; + $47 = $46; + $48 = HEAP32[$47>>2]|0; + $49 = (($46) + 4)|0; + $50 = $49; + $51 = HEAP32[$50>>2]|0; + $52 = (_i64Subtract(($41|0),($44|0),($48|0),($51|0))|0); + $53 = tempRet0; + $54 = $45; + $55 = $54; + HEAP32[$55>>2] = $52; + $56 = (($54) + 4)|0; + $57 = $56; + HEAP32[$57>>2] = $53; + $58 = (($in) + 24|0); + $59 = $58; + $60 = $59; + $61 = HEAP32[$60>>2]|0; + $62 = (($59) + 4)|0; + $63 = $62; + $64 = HEAP32[$63>>2]|0; + $65 = (($output) + 24|0); + $66 = $65; + $67 = $66; + $68 = HEAP32[$67>>2]|0; + $69 = (($66) + 4)|0; + $70 = $69; + $71 = HEAP32[$70>>2]|0; + $72 = (_i64Subtract(($61|0),($64|0),($68|0),($71|0))|0); + $73 = tempRet0; + $74 = $65; + $75 = $74; + HEAP32[$75>>2] = $72; + $76 = (($74) + 4)|0; + $77 = $76; + HEAP32[$77>>2] = $73; + $78 = (($in) + 32|0); + $79 = $78; + $80 = $79; + $81 = HEAP32[$80>>2]|0; + $82 = (($79) + 4)|0; + $83 = $82; + $84 = HEAP32[$83>>2]|0; + $85 = (($output) + 32|0); + $86 = $85; + $87 = $86; + $88 = HEAP32[$87>>2]|0; + $89 = (($86) + 4)|0; + $90 = $89; + $91 = HEAP32[$90>>2]|0; + $92 = (_i64Subtract(($81|0),($84|0),($88|0),($91|0))|0); + $93 = tempRet0; + $94 = $85; + $95 = $94; + HEAP32[$95>>2] = $92; + $96 = (($94) + 4)|0; + $97 = $96; + HEAP32[$97>>2] = $93; + $98 = (($in) + 40|0); + $99 = $98; + $100 = $99; + $101 = HEAP32[$100>>2]|0; + $102 = (($99) + 4)|0; + $103 = $102; + $104 = HEAP32[$103>>2]|0; + $105 = (($output) + 40|0); + $106 = $105; + $107 = $106; + $108 = HEAP32[$107>>2]|0; + $109 = (($106) + 4)|0; + $110 = $109; + $111 = HEAP32[$110>>2]|0; + $112 = (_i64Subtract(($101|0),($104|0),($108|0),($111|0))|0); + $113 = tempRet0; + $114 = $105; + $115 = $114; + HEAP32[$115>>2] = $112; + $116 = (($114) + 4)|0; + $117 = $116; + HEAP32[$117>>2] = $113; + $118 = (($in) + 48|0); + $119 = $118; + $120 = $119; + $121 = HEAP32[$120>>2]|0; + $122 = (($119) + 4)|0; + $123 = $122; + $124 = HEAP32[$123>>2]|0; + $125 = (($output) + 48|0); + $126 = $125; + $127 = $126; + $128 = HEAP32[$127>>2]|0; + $129 = (($126) + 4)|0; + $130 = $129; + $131 = HEAP32[$130>>2]|0; + $132 = (_i64Subtract(($121|0),($124|0),($128|0),($131|0))|0); + $133 = tempRet0; + $134 = $125; + $135 = $134; + HEAP32[$135>>2] = $132; + $136 = (($134) + 4)|0; + $137 = $136; + HEAP32[$137>>2] = $133; + $138 = (($in) + 56|0); + $139 = $138; + $140 = $139; + $141 = HEAP32[$140>>2]|0; + $142 = (($139) + 4)|0; + $143 = $142; + $144 = HEAP32[$143>>2]|0; + $145 = (($output) + 56|0); + $146 = $145; + $147 = $146; + $148 = HEAP32[$147>>2]|0; + $149 = (($146) + 4)|0; + $150 = $149; + $151 = HEAP32[$150>>2]|0; + $152 = (_i64Subtract(($141|0),($144|0),($148|0),($151|0))|0); + $153 = tempRet0; + $154 = $145; + $155 = $154; + HEAP32[$155>>2] = $152; + $156 = (($154) + 4)|0; + $157 = $156; + HEAP32[$157>>2] = $153; + $158 = (($in) + 64|0); + $159 = $158; + $160 = $159; + $161 = HEAP32[$160>>2]|0; + $162 = (($159) + 4)|0; + $163 = $162; + $164 = HEAP32[$163>>2]|0; + $165 = (($output) + 64|0); + $166 = $165; + $167 = $166; + $168 = HEAP32[$167>>2]|0; + $169 = (($166) + 4)|0; + $170 = $169; + $171 = HEAP32[$170>>2]|0; + $172 = (_i64Subtract(($161|0),($164|0),($168|0),($171|0))|0); + $173 = tempRet0; + $174 = $165; + $175 = $174; + HEAP32[$175>>2] = $172; + $176 = (($174) + 4)|0; + $177 = $176; + HEAP32[$177>>2] = $173; + $178 = (($in) + 72|0); + $179 = $178; + $180 = $179; + $181 = HEAP32[$180>>2]|0; + $182 = (($179) + 4)|0; + $183 = $182; + $184 = HEAP32[$183>>2]|0; + $185 = (($output) + 72|0); + $186 = $185; + $187 = $186; + $188 = HEAP32[$187>>2]|0; + $189 = (($186) + 4)|0; + $190 = $189; + $191 = HEAP32[$190>>2]|0; + $192 = (_i64Subtract(($181|0),($184|0),($188|0),($191|0))|0); + $193 = tempRet0; + $194 = $185; + $195 = $194; + HEAP32[$195>>2] = $192; + $196 = (($194) + 4)|0; + $197 = $196; + HEAP32[$197>>2] = $193; + STACKTOP = sp;return; +} +function _fscalar_product($output,$in) { + $output = $output|0; + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; + var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $in; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = (___muldi3(($2|0),($5|0),121665,0)|0); + $7 = tempRet0; + $8 = $output; + $9 = $8; + HEAP32[$9>>2] = $6; + $10 = (($8) + 4)|0; + $11 = $10; + HEAP32[$11>>2] = $7; + $12 = (($in) + 8|0); + $13 = $12; + $14 = $13; + $15 = HEAP32[$14>>2]|0; + $16 = (($13) + 4)|0; + $17 = $16; + $18 = HEAP32[$17>>2]|0; + $19 = (___muldi3(($15|0),($18|0),121665,0)|0); + $20 = tempRet0; + $21 = (($output) + 8|0); + $22 = $21; + $23 = $22; + HEAP32[$23>>2] = $19; + $24 = (($22) + 4)|0; + $25 = $24; + HEAP32[$25>>2] = $20; + $26 = (($in) + 16|0); + $27 = $26; + $28 = $27; + $29 = HEAP32[$28>>2]|0; + $30 = (($27) + 4)|0; + $31 = $30; + $32 = HEAP32[$31>>2]|0; + $33 = (___muldi3(($29|0),($32|0),121665,0)|0); + $34 = tempRet0; + $35 = (($output) + 16|0); + $36 = $35; + $37 = $36; + HEAP32[$37>>2] = $33; + $38 = (($36) + 4)|0; + $39 = $38; + HEAP32[$39>>2] = $34; + $40 = (($in) + 24|0); + $41 = $40; + $42 = $41; + $43 = HEAP32[$42>>2]|0; + $44 = (($41) + 4)|0; + $45 = $44; + $46 = HEAP32[$45>>2]|0; + $47 = (___muldi3(($43|0),($46|0),121665,0)|0); + $48 = tempRet0; + $49 = (($output) + 24|0); + $50 = $49; + $51 = $50; + HEAP32[$51>>2] = $47; + $52 = (($50) + 4)|0; + $53 = $52; + HEAP32[$53>>2] = $48; + $54 = (($in) + 32|0); + $55 = $54; + $56 = $55; + $57 = HEAP32[$56>>2]|0; + $58 = (($55) + 4)|0; + $59 = $58; + $60 = HEAP32[$59>>2]|0; + $61 = (___muldi3(($57|0),($60|0),121665,0)|0); + $62 = tempRet0; + $63 = (($output) + 32|0); + $64 = $63; + $65 = $64; + HEAP32[$65>>2] = $61; + $66 = (($64) + 4)|0; + $67 = $66; + HEAP32[$67>>2] = $62; + $68 = (($in) + 40|0); + $69 = $68; + $70 = $69; + $71 = HEAP32[$70>>2]|0; + $72 = (($69) + 4)|0; + $73 = $72; + $74 = HEAP32[$73>>2]|0; + $75 = (___muldi3(($71|0),($74|0),121665,0)|0); + $76 = tempRet0; + $77 = (($output) + 40|0); + $78 = $77; + $79 = $78; + HEAP32[$79>>2] = $75; + $80 = (($78) + 4)|0; + $81 = $80; + HEAP32[$81>>2] = $76; + $82 = (($in) + 48|0); + $83 = $82; + $84 = $83; + $85 = HEAP32[$84>>2]|0; + $86 = (($83) + 4)|0; + $87 = $86; + $88 = HEAP32[$87>>2]|0; + $89 = (___muldi3(($85|0),($88|0),121665,0)|0); + $90 = tempRet0; + $91 = (($output) + 48|0); + $92 = $91; + $93 = $92; + HEAP32[$93>>2] = $89; + $94 = (($92) + 4)|0; + $95 = $94; + HEAP32[$95>>2] = $90; + $96 = (($in) + 56|0); + $97 = $96; + $98 = $97; + $99 = HEAP32[$98>>2]|0; + $100 = (($97) + 4)|0; + $101 = $100; + $102 = HEAP32[$101>>2]|0; + $103 = (___muldi3(($99|0),($102|0),121665,0)|0); + $104 = tempRet0; + $105 = (($output) + 56|0); + $106 = $105; + $107 = $106; + HEAP32[$107>>2] = $103; + $108 = (($106) + 4)|0; + $109 = $108; + HEAP32[$109>>2] = $104; + $110 = (($in) + 64|0); + $111 = $110; + $112 = $111; + $113 = HEAP32[$112>>2]|0; + $114 = (($111) + 4)|0; + $115 = $114; + $116 = HEAP32[$115>>2]|0; + $117 = (___muldi3(($113|0),($116|0),121665,0)|0); + $118 = tempRet0; + $119 = (($output) + 64|0); + $120 = $119; + $121 = $120; + HEAP32[$121>>2] = $117; + $122 = (($120) + 4)|0; + $123 = $122; + HEAP32[$123>>2] = $118; + $124 = (($in) + 72|0); + $125 = $124; + $126 = $125; + $127 = HEAP32[$126>>2]|0; + $128 = (($125) + 4)|0; + $129 = $128; + $130 = HEAP32[$129>>2]|0; + $131 = (___muldi3(($127|0),($130|0),121665,0)|0); + $132 = tempRet0; + $133 = (($output) + 72|0); + $134 = $133; + $135 = $134; + HEAP32[$135>>2] = $131; + $136 = (($134) + 4)|0; + $137 = $136; + HEAP32[$137>>2] = $132; + STACKTOP = sp;return; +} +function _fsquare_inner($output,$in) { + $output = $output|0; + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; + var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; + var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; + var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; + var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; + var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; + var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0; + var $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0; + var $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0; + var $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0; + var $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0; + var $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0; + var $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0; + var $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0; + var $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0; + var $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0; + var $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0; + var $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0; + var $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0; + var $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0; + var $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0; + var $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0; + var $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0; + var $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0; + var $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0; + var $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0; + var $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0; + var $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0; + var $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0; + var $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0; + var $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0; + var $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0; + var $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0; + var $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0; + var $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0; + var $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0; + var $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0; + var $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0; + var $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0; + var $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0; + var $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0; + var $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0; + var $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0; + var $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0; + var $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0; + var $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0; + var $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0; + var $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0; + var $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0; + var $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0; + var $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0; + var $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0; + var $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0; + var $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0; + var $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0; + var $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + $0 = $in; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = (_bitshift64Ashr(0,($2|0),32)|0); + $7 = tempRet0; + $8 = (___muldi3(($6|0),($7|0),($6|0),($7|0))|0); + $9 = tempRet0; + $10 = $output; + $11 = $10; + HEAP32[$11>>2] = $8; + $12 = (($10) + 4)|0; + $13 = $12; + HEAP32[$13>>2] = $9; + $14 = $in; + $15 = $14; + $16 = HEAP32[$15>>2]|0; + $17 = (($14) + 4)|0; + $18 = $17; + $19 = HEAP32[$18>>2]|0; + $20 = (_bitshift64Ashr(0,($16|0),31)|0); + $21 = tempRet0; + $22 = (($in) + 8|0); + $23 = $22; + $24 = $23; + $25 = HEAP32[$24>>2]|0; + $26 = (($23) + 4)|0; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (_bitshift64Ashr(0,($25|0),32)|0); + $30 = tempRet0; + $31 = (___muldi3(($29|0),($30|0),($20|0),($21|0))|0); + $32 = tempRet0; + $33 = (($output) + 8|0); + $34 = $33; + $35 = $34; + HEAP32[$35>>2] = $31; + $36 = (($34) + 4)|0; + $37 = $36; + HEAP32[$37>>2] = $32; + $38 = $22; + $39 = $38; + $40 = HEAP32[$39>>2]|0; + $41 = (($38) + 4)|0; + $42 = $41; + $43 = HEAP32[$42>>2]|0; + $44 = (_bitshift64Ashr(0,($40|0),32)|0); + $45 = tempRet0; + $46 = (___muldi3(($44|0),($45|0),($44|0),($45|0))|0); + $47 = tempRet0; + $48 = $in; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + $51 = (($48) + 4)|0; + $52 = $51; + $53 = HEAP32[$52>>2]|0; + $54 = (_bitshift64Ashr(0,($50|0),32)|0); + $55 = tempRet0; + $56 = (($in) + 16|0); + $57 = $56; + $58 = $57; + $59 = HEAP32[$58>>2]|0; + $60 = (($57) + 4)|0; + $61 = $60; + $62 = HEAP32[$61>>2]|0; + $63 = (_bitshift64Ashr(0,($59|0),32)|0); + $64 = tempRet0; + $65 = (___muldi3(($63|0),($64|0),($54|0),($55|0))|0); + $66 = tempRet0; + $67 = (_i64Add(($65|0),($66|0),($46|0),($47|0))|0); + $68 = tempRet0; + $69 = (_bitshift64Shl(($67|0),($68|0),1)|0); + $70 = tempRet0; + $71 = (($output) + 16|0); + $72 = $71; + $73 = $72; + HEAP32[$73>>2] = $69; + $74 = (($72) + 4)|0; + $75 = $74; + HEAP32[$75>>2] = $70; + $76 = $22; + $77 = $76; + $78 = HEAP32[$77>>2]|0; + $79 = (($76) + 4)|0; + $80 = $79; + $81 = HEAP32[$80>>2]|0; + $82 = (_bitshift64Ashr(0,($78|0),32)|0); + $83 = tempRet0; + $84 = $56; + $85 = $84; + $86 = HEAP32[$85>>2]|0; + $87 = (($84) + 4)|0; + $88 = $87; + $89 = HEAP32[$88>>2]|0; + $90 = (_bitshift64Ashr(0,($86|0),32)|0); + $91 = tempRet0; + $92 = (___muldi3(($90|0),($91|0),($82|0),($83|0))|0); + $93 = tempRet0; + $94 = $in; + $95 = $94; + $96 = HEAP32[$95>>2]|0; + $97 = (($94) + 4)|0; + $98 = $97; + $99 = HEAP32[$98>>2]|0; + $100 = (_bitshift64Ashr(0,($96|0),32)|0); + $101 = tempRet0; + $102 = (($in) + 24|0); + $103 = $102; + $104 = $103; + $105 = HEAP32[$104>>2]|0; + $106 = (($103) + 4)|0; + $107 = $106; + $108 = HEAP32[$107>>2]|0; + $109 = (_bitshift64Ashr(0,($105|0),32)|0); + $110 = tempRet0; + $111 = (___muldi3(($109|0),($110|0),($100|0),($101|0))|0); + $112 = tempRet0; + $113 = (_i64Add(($111|0),($112|0),($92|0),($93|0))|0); + $114 = tempRet0; + $115 = (_bitshift64Shl(($113|0),($114|0),1)|0); + $116 = tempRet0; + $117 = (($output) + 24|0); + $118 = $117; + $119 = $118; + HEAP32[$119>>2] = $115; + $120 = (($118) + 4)|0; + $121 = $120; + HEAP32[$121>>2] = $116; + $122 = $56; + $123 = $122; + $124 = HEAP32[$123>>2]|0; + $125 = (($122) + 4)|0; + $126 = $125; + $127 = HEAP32[$126>>2]|0; + $128 = (_bitshift64Ashr(0,($124|0),32)|0); + $129 = tempRet0; + $130 = (___muldi3(($128|0),($129|0),($128|0),($129|0))|0); + $131 = tempRet0; + $132 = $22; + $133 = $132; + $134 = HEAP32[$133>>2]|0; + $135 = (($132) + 4)|0; + $136 = $135; + $137 = HEAP32[$136>>2]|0; + $138 = (_bitshift64Ashr(0,($134|0),30)|0); + $139 = tempRet0; + $140 = $102; + $141 = $140; + $142 = HEAP32[$141>>2]|0; + $143 = (($140) + 4)|0; + $144 = $143; + $145 = HEAP32[$144>>2]|0; + $146 = (_bitshift64Ashr(0,($142|0),32)|0); + $147 = tempRet0; + $148 = (___muldi3(($146|0),($147|0),($138|0),($139|0))|0); + $149 = tempRet0; + $150 = (_i64Add(($148|0),($149|0),($130|0),($131|0))|0); + $151 = tempRet0; + $152 = $in; + $153 = $152; + $154 = HEAP32[$153>>2]|0; + $155 = (($152) + 4)|0; + $156 = $155; + $157 = HEAP32[$156>>2]|0; + $158 = (_bitshift64Ashr(0,($154|0),31)|0); + $159 = tempRet0; + $160 = (($in) + 32|0); + $161 = $160; + $162 = $161; + $163 = HEAP32[$162>>2]|0; + $164 = (($161) + 4)|0; + $165 = $164; + $166 = HEAP32[$165>>2]|0; + $167 = (_bitshift64Ashr(0,($163|0),32)|0); + $168 = tempRet0; + $169 = (___muldi3(($167|0),($168|0),($158|0),($159|0))|0); + $170 = tempRet0; + $171 = (_i64Add(($150|0),($151|0),($169|0),($170|0))|0); + $172 = tempRet0; + $173 = (($output) + 32|0); + $174 = $173; + $175 = $174; + HEAP32[$175>>2] = $171; + $176 = (($174) + 4)|0; + $177 = $176; + HEAP32[$177>>2] = $172; + $178 = $56; + $179 = $178; + $180 = HEAP32[$179>>2]|0; + $181 = (($178) + 4)|0; + $182 = $181; + $183 = HEAP32[$182>>2]|0; + $184 = (_bitshift64Ashr(0,($180|0),32)|0); + $185 = tempRet0; + $186 = $102; + $187 = $186; + $188 = HEAP32[$187>>2]|0; + $189 = (($186) + 4)|0; + $190 = $189; + $191 = HEAP32[$190>>2]|0; + $192 = (_bitshift64Ashr(0,($188|0),32)|0); + $193 = tempRet0; + $194 = (___muldi3(($192|0),($193|0),($184|0),($185|0))|0); + $195 = tempRet0; + $196 = $22; + $197 = $196; + $198 = HEAP32[$197>>2]|0; + $199 = (($196) + 4)|0; + $200 = $199; + $201 = HEAP32[$200>>2]|0; + $202 = (_bitshift64Ashr(0,($198|0),32)|0); + $203 = tempRet0; + $204 = $160; + $205 = $204; + $206 = HEAP32[$205>>2]|0; + $207 = (($204) + 4)|0; + $208 = $207; + $209 = HEAP32[$208>>2]|0; + $210 = (_bitshift64Ashr(0,($206|0),32)|0); + $211 = tempRet0; + $212 = (___muldi3(($210|0),($211|0),($202|0),($203|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($212|0),($213|0),($194|0),($195|0))|0); + $215 = tempRet0; + $216 = $in; + $217 = $216; + $218 = HEAP32[$217>>2]|0; + $219 = (($216) + 4)|0; + $220 = $219; + $221 = HEAP32[$220>>2]|0; + $222 = (_bitshift64Ashr(0,($218|0),32)|0); + $223 = tempRet0; + $224 = (($in) + 40|0); + $225 = $224; + $226 = $225; + $227 = HEAP32[$226>>2]|0; + $228 = (($225) + 4)|0; + $229 = $228; + $230 = HEAP32[$229>>2]|0; + $231 = (_bitshift64Ashr(0,($227|0),32)|0); + $232 = tempRet0; + $233 = (___muldi3(($231|0),($232|0),($222|0),($223|0))|0); + $234 = tempRet0; + $235 = (_i64Add(($214|0),($215|0),($233|0),($234|0))|0); + $236 = tempRet0; + $237 = (_bitshift64Shl(($235|0),($236|0),1)|0); + $238 = tempRet0; + $239 = (($output) + 40|0); + $240 = $239; + $241 = $240; + HEAP32[$241>>2] = $237; + $242 = (($240) + 4)|0; + $243 = $242; + HEAP32[$243>>2] = $238; + $244 = $102; + $245 = $244; + $246 = HEAP32[$245>>2]|0; + $247 = (($244) + 4)|0; + $248 = $247; + $249 = HEAP32[$248>>2]|0; + $250 = (_bitshift64Ashr(0,($246|0),32)|0); + $251 = tempRet0; + $252 = (___muldi3(($250|0),($251|0),($250|0),($251|0))|0); + $253 = tempRet0; + $254 = $56; + $255 = $254; + $256 = HEAP32[$255>>2]|0; + $257 = (($254) + 4)|0; + $258 = $257; + $259 = HEAP32[$258>>2]|0; + $260 = (_bitshift64Ashr(0,($256|0),32)|0); + $261 = tempRet0; + $262 = $160; + $263 = $262; + $264 = HEAP32[$263>>2]|0; + $265 = (($262) + 4)|0; + $266 = $265; + $267 = HEAP32[$266>>2]|0; + $268 = (_bitshift64Ashr(0,($264|0),32)|0); + $269 = tempRet0; + $270 = (___muldi3(($268|0),($269|0),($260|0),($261|0))|0); + $271 = tempRet0; + $272 = (_i64Add(($270|0),($271|0),($252|0),($253|0))|0); + $273 = tempRet0; + $274 = $in; + $275 = $274; + $276 = HEAP32[$275>>2]|0; + $277 = (($274) + 4)|0; + $278 = $277; + $279 = HEAP32[$278>>2]|0; + $280 = (_bitshift64Ashr(0,($276|0),32)|0); + $281 = tempRet0; + $282 = (($in) + 48|0); + $283 = $282; + $284 = $283; + $285 = HEAP32[$284>>2]|0; + $286 = (($283) + 4)|0; + $287 = $286; + $288 = HEAP32[$287>>2]|0; + $289 = (_bitshift64Ashr(0,($285|0),32)|0); + $290 = tempRet0; + $291 = (___muldi3(($289|0),($290|0),($280|0),($281|0))|0); + $292 = tempRet0; + $293 = (_i64Add(($272|0),($273|0),($291|0),($292|0))|0); + $294 = tempRet0; + $295 = $22; + $296 = $295; + $297 = HEAP32[$296>>2]|0; + $298 = (($295) + 4)|0; + $299 = $298; + $300 = HEAP32[$299>>2]|0; + $301 = (_bitshift64Ashr(0,($297|0),31)|0); + $302 = tempRet0; + $303 = $224; + $304 = $303; + $305 = HEAP32[$304>>2]|0; + $306 = (($303) + 4)|0; + $307 = $306; + $308 = HEAP32[$307>>2]|0; + $309 = (_bitshift64Ashr(0,($305|0),32)|0); + $310 = tempRet0; + $311 = (___muldi3(($309|0),($310|0),($301|0),($302|0))|0); + $312 = tempRet0; + $313 = (_i64Add(($293|0),($294|0),($311|0),($312|0))|0); + $314 = tempRet0; + $315 = (_bitshift64Shl(($313|0),($314|0),1)|0); + $316 = tempRet0; + $317 = (($output) + 48|0); + $318 = $317; + $319 = $318; + HEAP32[$319>>2] = $315; + $320 = (($318) + 4)|0; + $321 = $320; + HEAP32[$321>>2] = $316; + $322 = $102; + $323 = $322; + $324 = HEAP32[$323>>2]|0; + $325 = (($322) + 4)|0; + $326 = $325; + $327 = HEAP32[$326>>2]|0; + $328 = (_bitshift64Ashr(0,($324|0),32)|0); + $329 = tempRet0; + $330 = $160; + $331 = $330; + $332 = HEAP32[$331>>2]|0; + $333 = (($330) + 4)|0; + $334 = $333; + $335 = HEAP32[$334>>2]|0; + $336 = (_bitshift64Ashr(0,($332|0),32)|0); + $337 = tempRet0; + $338 = (___muldi3(($336|0),($337|0),($328|0),($329|0))|0); + $339 = tempRet0; + $340 = $56; + $341 = $340; + $342 = HEAP32[$341>>2]|0; + $343 = (($340) + 4)|0; + $344 = $343; + $345 = HEAP32[$344>>2]|0; + $346 = (_bitshift64Ashr(0,($342|0),32)|0); + $347 = tempRet0; + $348 = $224; + $349 = $348; + $350 = HEAP32[$349>>2]|0; + $351 = (($348) + 4)|0; + $352 = $351; + $353 = HEAP32[$352>>2]|0; + $354 = (_bitshift64Ashr(0,($350|0),32)|0); + $355 = tempRet0; + $356 = (___muldi3(($354|0),($355|0),($346|0),($347|0))|0); + $357 = tempRet0; + $358 = (_i64Add(($356|0),($357|0),($338|0),($339|0))|0); + $359 = tempRet0; + $360 = $22; + $361 = $360; + $362 = HEAP32[$361>>2]|0; + $363 = (($360) + 4)|0; + $364 = $363; + $365 = HEAP32[$364>>2]|0; + $366 = (_bitshift64Ashr(0,($362|0),32)|0); + $367 = tempRet0; + $368 = $282; + $369 = $368; + $370 = HEAP32[$369>>2]|0; + $371 = (($368) + 4)|0; + $372 = $371; + $373 = HEAP32[$372>>2]|0; + $374 = (_bitshift64Ashr(0,($370|0),32)|0); + $375 = tempRet0; + $376 = (___muldi3(($374|0),($375|0),($366|0),($367|0))|0); + $377 = tempRet0; + $378 = (_i64Add(($358|0),($359|0),($376|0),($377|0))|0); + $379 = tempRet0; + $380 = $in; + $381 = $380; + $382 = HEAP32[$381>>2]|0; + $383 = (($380) + 4)|0; + $384 = $383; + $385 = HEAP32[$384>>2]|0; + $386 = (_bitshift64Ashr(0,($382|0),32)|0); + $387 = tempRet0; + $388 = (($in) + 56|0); + $389 = $388; + $390 = $389; + $391 = HEAP32[$390>>2]|0; + $392 = (($389) + 4)|0; + $393 = $392; + $394 = HEAP32[$393>>2]|0; + $395 = (_bitshift64Ashr(0,($391|0),32)|0); + $396 = tempRet0; + $397 = (___muldi3(($395|0),($396|0),($386|0),($387|0))|0); + $398 = tempRet0; + $399 = (_i64Add(($378|0),($379|0),($397|0),($398|0))|0); + $400 = tempRet0; + $401 = (_bitshift64Shl(($399|0),($400|0),1)|0); + $402 = tempRet0; + $403 = (($output) + 56|0); + $404 = $403; + $405 = $404; + HEAP32[$405>>2] = $401; + $406 = (($404) + 4)|0; + $407 = $406; + HEAP32[$407>>2] = $402; + $408 = $160; + $409 = $408; + $410 = HEAP32[$409>>2]|0; + $411 = (($408) + 4)|0; + $412 = $411; + $413 = HEAP32[$412>>2]|0; + $414 = (_bitshift64Ashr(0,($410|0),32)|0); + $415 = tempRet0; + $416 = (___muldi3(($414|0),($415|0),($414|0),($415|0))|0); + $417 = tempRet0; + $418 = $56; + $419 = $418; + $420 = HEAP32[$419>>2]|0; + $421 = (($418) + 4)|0; + $422 = $421; + $423 = HEAP32[$422>>2]|0; + $424 = (_bitshift64Ashr(0,($420|0),32)|0); + $425 = tempRet0; + $426 = $282; + $427 = $426; + $428 = HEAP32[$427>>2]|0; + $429 = (($426) + 4)|0; + $430 = $429; + $431 = HEAP32[$430>>2]|0; + $432 = (_bitshift64Ashr(0,($428|0),32)|0); + $433 = tempRet0; + $434 = (___muldi3(($432|0),($433|0),($424|0),($425|0))|0); + $435 = tempRet0; + $436 = $in; + $437 = $436; + $438 = HEAP32[$437>>2]|0; + $439 = (($436) + 4)|0; + $440 = $439; + $441 = HEAP32[$440>>2]|0; + $442 = (_bitshift64Ashr(0,($438|0),32)|0); + $443 = tempRet0; + $444 = (($in) + 64|0); + $445 = $444; + $446 = $445; + $447 = HEAP32[$446>>2]|0; + $448 = (($445) + 4)|0; + $449 = $448; + $450 = HEAP32[$449>>2]|0; + $451 = (_bitshift64Ashr(0,($447|0),32)|0); + $452 = tempRet0; + $453 = (___muldi3(($451|0),($452|0),($442|0),($443|0))|0); + $454 = tempRet0; + $455 = (_i64Add(($453|0),($454|0),($434|0),($435|0))|0); + $456 = tempRet0; + $457 = $22; + $458 = $457; + $459 = HEAP32[$458>>2]|0; + $460 = (($457) + 4)|0; + $461 = $460; + $462 = HEAP32[$461>>2]|0; + $463 = (_bitshift64Ashr(0,($459|0),32)|0); + $464 = tempRet0; + $465 = $388; + $466 = $465; + $467 = HEAP32[$466>>2]|0; + $468 = (($465) + 4)|0; + $469 = $468; + $470 = HEAP32[$469>>2]|0; + $471 = (_bitshift64Ashr(0,($467|0),32)|0); + $472 = tempRet0; + $473 = (___muldi3(($471|0),($472|0),($463|0),($464|0))|0); + $474 = tempRet0; + $475 = $102; + $476 = $475; + $477 = HEAP32[$476>>2]|0; + $478 = (($475) + 4)|0; + $479 = $478; + $480 = HEAP32[$479>>2]|0; + $481 = (_bitshift64Ashr(0,($477|0),32)|0); + $482 = tempRet0; + $483 = $224; + $484 = $483; + $485 = HEAP32[$484>>2]|0; + $486 = (($483) + 4)|0; + $487 = $486; + $488 = HEAP32[$487>>2]|0; + $489 = (_bitshift64Ashr(0,($485|0),32)|0); + $490 = tempRet0; + $491 = (___muldi3(($489|0),($490|0),($481|0),($482|0))|0); + $492 = tempRet0; + $493 = (_i64Add(($491|0),($492|0),($473|0),($474|0))|0); + $494 = tempRet0; + $495 = (_bitshift64Shl(($493|0),($494|0),1)|0); + $496 = tempRet0; + $497 = (_i64Add(($455|0),($456|0),($495|0),($496|0))|0); + $498 = tempRet0; + $499 = (_bitshift64Shl(($497|0),($498|0),1)|0); + $500 = tempRet0; + $501 = (_i64Add(($499|0),($500|0),($416|0),($417|0))|0); + $502 = tempRet0; + $503 = (($output) + 64|0); + $504 = $503; + $505 = $504; + HEAP32[$505>>2] = $501; + $506 = (($504) + 4)|0; + $507 = $506; + HEAP32[$507>>2] = $502; + $508 = $160; + $509 = $508; + $510 = HEAP32[$509>>2]|0; + $511 = (($508) + 4)|0; + $512 = $511; + $513 = HEAP32[$512>>2]|0; + $514 = (_bitshift64Ashr(0,($510|0),32)|0); + $515 = tempRet0; + $516 = $224; + $517 = $516; + $518 = HEAP32[$517>>2]|0; + $519 = (($516) + 4)|0; + $520 = $519; + $521 = HEAP32[$520>>2]|0; + $522 = (_bitshift64Ashr(0,($518|0),32)|0); + $523 = tempRet0; + $524 = (___muldi3(($522|0),($523|0),($514|0),($515|0))|0); + $525 = tempRet0; + $526 = $102; + $527 = $526; + $528 = HEAP32[$527>>2]|0; + $529 = (($526) + 4)|0; + $530 = $529; + $531 = HEAP32[$530>>2]|0; + $532 = (_bitshift64Ashr(0,($528|0),32)|0); + $533 = tempRet0; + $534 = $282; + $535 = $534; + $536 = HEAP32[$535>>2]|0; + $537 = (($534) + 4)|0; + $538 = $537; + $539 = HEAP32[$538>>2]|0; + $540 = (_bitshift64Ashr(0,($536|0),32)|0); + $541 = tempRet0; + $542 = (___muldi3(($540|0),($541|0),($532|0),($533|0))|0); + $543 = tempRet0; + $544 = (_i64Add(($542|0),($543|0),($524|0),($525|0))|0); + $545 = tempRet0; + $546 = $56; + $547 = $546; + $548 = HEAP32[$547>>2]|0; + $549 = (($546) + 4)|0; + $550 = $549; + $551 = HEAP32[$550>>2]|0; + $552 = (_bitshift64Ashr(0,($548|0),32)|0); + $553 = tempRet0; + $554 = $388; + $555 = $554; + $556 = HEAP32[$555>>2]|0; + $557 = (($554) + 4)|0; + $558 = $557; + $559 = HEAP32[$558>>2]|0; + $560 = (_bitshift64Ashr(0,($556|0),32)|0); + $561 = tempRet0; + $562 = (___muldi3(($560|0),($561|0),($552|0),($553|0))|0); + $563 = tempRet0; + $564 = (_i64Add(($544|0),($545|0),($562|0),($563|0))|0); + $565 = tempRet0; + $566 = $22; + $567 = $566; + $568 = HEAP32[$567>>2]|0; + $569 = (($566) + 4)|0; + $570 = $569; + $571 = HEAP32[$570>>2]|0; + $572 = (_bitshift64Ashr(0,($568|0),32)|0); + $573 = tempRet0; + $574 = $444; + $575 = $574; + $576 = HEAP32[$575>>2]|0; + $577 = (($574) + 4)|0; + $578 = $577; + $579 = HEAP32[$578>>2]|0; + $580 = (_bitshift64Ashr(0,($576|0),32)|0); + $581 = tempRet0; + $582 = (___muldi3(($580|0),($581|0),($572|0),($573|0))|0); + $583 = tempRet0; + $584 = (_i64Add(($564|0),($565|0),($582|0),($583|0))|0); + $585 = tempRet0; + $586 = $in; + $587 = $586; + $588 = HEAP32[$587>>2]|0; + $589 = (($586) + 4)|0; + $590 = $589; + $591 = HEAP32[$590>>2]|0; + $592 = (_bitshift64Ashr(0,($588|0),32)|0); + $593 = tempRet0; + $594 = (($in) + 72|0); + $595 = $594; + $596 = $595; + $597 = HEAP32[$596>>2]|0; + $598 = (($595) + 4)|0; + $599 = $598; + $600 = HEAP32[$599>>2]|0; + $601 = (_bitshift64Ashr(0,($597|0),32)|0); + $602 = tempRet0; + $603 = (___muldi3(($601|0),($602|0),($592|0),($593|0))|0); + $604 = tempRet0; + $605 = (_i64Add(($584|0),($585|0),($603|0),($604|0))|0); + $606 = tempRet0; + $607 = (_bitshift64Shl(($605|0),($606|0),1)|0); + $608 = tempRet0; + $609 = (($output) + 72|0); + $610 = $609; + $611 = $610; + HEAP32[$611>>2] = $607; + $612 = (($610) + 4)|0; + $613 = $612; + HEAP32[$613>>2] = $608; + $614 = $224; + $615 = $614; + $616 = HEAP32[$615>>2]|0; + $617 = (($614) + 4)|0; + $618 = $617; + $619 = HEAP32[$618>>2]|0; + $620 = (_bitshift64Ashr(0,($616|0),32)|0); + $621 = tempRet0; + $622 = (___muldi3(($620|0),($621|0),($620|0),($621|0))|0); + $623 = tempRet0; + $624 = $160; + $625 = $624; + $626 = HEAP32[$625>>2]|0; + $627 = (($624) + 4)|0; + $628 = $627; + $629 = HEAP32[$628>>2]|0; + $630 = (_bitshift64Ashr(0,($626|0),32)|0); + $631 = tempRet0; + $632 = $282; + $633 = $632; + $634 = HEAP32[$633>>2]|0; + $635 = (($632) + 4)|0; + $636 = $635; + $637 = HEAP32[$636>>2]|0; + $638 = (_bitshift64Ashr(0,($634|0),32)|0); + $639 = tempRet0; + $640 = (___muldi3(($638|0),($639|0),($630|0),($631|0))|0); + $641 = tempRet0; + $642 = (_i64Add(($640|0),($641|0),($622|0),($623|0))|0); + $643 = tempRet0; + $644 = $56; + $645 = $644; + $646 = HEAP32[$645>>2]|0; + $647 = (($644) + 4)|0; + $648 = $647; + $649 = HEAP32[$648>>2]|0; + $650 = (_bitshift64Ashr(0,($646|0),32)|0); + $651 = tempRet0; + $652 = $444; + $653 = $652; + $654 = HEAP32[$653>>2]|0; + $655 = (($652) + 4)|0; + $656 = $655; + $657 = HEAP32[$656>>2]|0; + $658 = (_bitshift64Ashr(0,($654|0),32)|0); + $659 = tempRet0; + $660 = (___muldi3(($658|0),($659|0),($650|0),($651|0))|0); + $661 = tempRet0; + $662 = (_i64Add(($642|0),($643|0),($660|0),($661|0))|0); + $663 = tempRet0; + $664 = $102; + $665 = $664; + $666 = HEAP32[$665>>2]|0; + $667 = (($664) + 4)|0; + $668 = $667; + $669 = HEAP32[$668>>2]|0; + $670 = (_bitshift64Ashr(0,($666|0),32)|0); + $671 = tempRet0; + $672 = $388; + $673 = $672; + $674 = HEAP32[$673>>2]|0; + $675 = (($672) + 4)|0; + $676 = $675; + $677 = HEAP32[$676>>2]|0; + $678 = (_bitshift64Ashr(0,($674|0),32)|0); + $679 = tempRet0; + $680 = (___muldi3(($678|0),($679|0),($670|0),($671|0))|0); + $681 = tempRet0; + $682 = $22; + $683 = $682; + $684 = HEAP32[$683>>2]|0; + $685 = (($682) + 4)|0; + $686 = $685; + $687 = HEAP32[$686>>2]|0; + $688 = (_bitshift64Ashr(0,($684|0),32)|0); + $689 = tempRet0; + $690 = $594; + $691 = $690; + $692 = HEAP32[$691>>2]|0; + $693 = (($690) + 4)|0; + $694 = $693; + $695 = HEAP32[$694>>2]|0; + $696 = (_bitshift64Ashr(0,($692|0),32)|0); + $697 = tempRet0; + $698 = (___muldi3(($696|0),($697|0),($688|0),($689|0))|0); + $699 = tempRet0; + $700 = (_i64Add(($698|0),($699|0),($680|0),($681|0))|0); + $701 = tempRet0; + $702 = (_bitshift64Shl(($700|0),($701|0),1)|0); + $703 = tempRet0; + $704 = (_i64Add(($662|0),($663|0),($702|0),($703|0))|0); + $705 = tempRet0; + $706 = (_bitshift64Shl(($704|0),($705|0),1)|0); + $707 = tempRet0; + $708 = (($output) + 80|0); + $709 = $708; + $710 = $709; + HEAP32[$710>>2] = $706; + $711 = (($709) + 4)|0; + $712 = $711; + HEAP32[$712>>2] = $707; + $713 = $224; + $714 = $713; + $715 = HEAP32[$714>>2]|0; + $716 = (($713) + 4)|0; + $717 = $716; + $718 = HEAP32[$717>>2]|0; + $719 = (_bitshift64Ashr(0,($715|0),32)|0); + $720 = tempRet0; + $721 = $282; + $722 = $721; + $723 = HEAP32[$722>>2]|0; + $724 = (($721) + 4)|0; + $725 = $724; + $726 = HEAP32[$725>>2]|0; + $727 = (_bitshift64Ashr(0,($723|0),32)|0); + $728 = tempRet0; + $729 = (___muldi3(($727|0),($728|0),($719|0),($720|0))|0); + $730 = tempRet0; + $731 = $160; + $732 = $731; + $733 = HEAP32[$732>>2]|0; + $734 = (($731) + 4)|0; + $735 = $734; + $736 = HEAP32[$735>>2]|0; + $737 = (_bitshift64Ashr(0,($733|0),32)|0); + $738 = tempRet0; + $739 = $388; + $740 = $739; + $741 = HEAP32[$740>>2]|0; + $742 = (($739) + 4)|0; + $743 = $742; + $744 = HEAP32[$743>>2]|0; + $745 = (_bitshift64Ashr(0,($741|0),32)|0); + $746 = tempRet0; + $747 = (___muldi3(($745|0),($746|0),($737|0),($738|0))|0); + $748 = tempRet0; + $749 = (_i64Add(($747|0),($748|0),($729|0),($730|0))|0); + $750 = tempRet0; + $751 = $102; + $752 = $751; + $753 = HEAP32[$752>>2]|0; + $754 = (($751) + 4)|0; + $755 = $754; + $756 = HEAP32[$755>>2]|0; + $757 = (_bitshift64Ashr(0,($753|0),32)|0); + $758 = tempRet0; + $759 = $444; + $760 = $759; + $761 = HEAP32[$760>>2]|0; + $762 = (($759) + 4)|0; + $763 = $762; + $764 = HEAP32[$763>>2]|0; + $765 = (_bitshift64Ashr(0,($761|0),32)|0); + $766 = tempRet0; + $767 = (___muldi3(($765|0),($766|0),($757|0),($758|0))|0); + $768 = tempRet0; + $769 = (_i64Add(($749|0),($750|0),($767|0),($768|0))|0); + $770 = tempRet0; + $771 = $56; + $772 = $771; + $773 = HEAP32[$772>>2]|0; + $774 = (($771) + 4)|0; + $775 = $774; + $776 = HEAP32[$775>>2]|0; + $777 = (_bitshift64Ashr(0,($773|0),32)|0); + $778 = tempRet0; + $779 = $594; + $780 = $779; + $781 = HEAP32[$780>>2]|0; + $782 = (($779) + 4)|0; + $783 = $782; + $784 = HEAP32[$783>>2]|0; + $785 = (_bitshift64Ashr(0,($781|0),32)|0); + $786 = tempRet0; + $787 = (___muldi3(($785|0),($786|0),($777|0),($778|0))|0); + $788 = tempRet0; + $789 = (_i64Add(($769|0),($770|0),($787|0),($788|0))|0); + $790 = tempRet0; + $791 = (_bitshift64Shl(($789|0),($790|0),1)|0); + $792 = tempRet0; + $793 = (($output) + 88|0); + $794 = $793; + $795 = $794; + HEAP32[$795>>2] = $791; + $796 = (($794) + 4)|0; + $797 = $796; + HEAP32[$797>>2] = $792; + $798 = $282; + $799 = $798; + $800 = HEAP32[$799>>2]|0; + $801 = (($798) + 4)|0; + $802 = $801; + $803 = HEAP32[$802>>2]|0; + $804 = (_bitshift64Ashr(0,($800|0),32)|0); + $805 = tempRet0; + $806 = (___muldi3(($804|0),($805|0),($804|0),($805|0))|0); + $807 = tempRet0; + $808 = $160; + $809 = $808; + $810 = HEAP32[$809>>2]|0; + $811 = (($808) + 4)|0; + $812 = $811; + $813 = HEAP32[$812>>2]|0; + $814 = (_bitshift64Ashr(0,($810|0),32)|0); + $815 = tempRet0; + $816 = $444; + $817 = $816; + $818 = HEAP32[$817>>2]|0; + $819 = (($816) + 4)|0; + $820 = $819; + $821 = HEAP32[$820>>2]|0; + $822 = (_bitshift64Ashr(0,($818|0),32)|0); + $823 = tempRet0; + $824 = (___muldi3(($822|0),($823|0),($814|0),($815|0))|0); + $825 = tempRet0; + $826 = $224; + $827 = $826; + $828 = HEAP32[$827>>2]|0; + $829 = (($826) + 4)|0; + $830 = $829; + $831 = HEAP32[$830>>2]|0; + $832 = (_bitshift64Ashr(0,($828|0),32)|0); + $833 = tempRet0; + $834 = $388; + $835 = $834; + $836 = HEAP32[$835>>2]|0; + $837 = (($834) + 4)|0; + $838 = $837; + $839 = HEAP32[$838>>2]|0; + $840 = (_bitshift64Ashr(0,($836|0),32)|0); + $841 = tempRet0; + $842 = (___muldi3(($840|0),($841|0),($832|0),($833|0))|0); + $843 = tempRet0; + $844 = $102; + $845 = $844; + $846 = HEAP32[$845>>2]|0; + $847 = (($844) + 4)|0; + $848 = $847; + $849 = HEAP32[$848>>2]|0; + $850 = (_bitshift64Ashr(0,($846|0),32)|0); + $851 = tempRet0; + $852 = $594; + $853 = $852; + $854 = HEAP32[$853>>2]|0; + $855 = (($852) + 4)|0; + $856 = $855; + $857 = HEAP32[$856>>2]|0; + $858 = (_bitshift64Ashr(0,($854|0),32)|0); + $859 = tempRet0; + $860 = (___muldi3(($858|0),($859|0),($850|0),($851|0))|0); + $861 = tempRet0; + $862 = (_i64Add(($860|0),($861|0),($842|0),($843|0))|0); + $863 = tempRet0; + $864 = (_bitshift64Shl(($862|0),($863|0),1)|0); + $865 = tempRet0; + $866 = (_i64Add(($864|0),($865|0),($824|0),($825|0))|0); + $867 = tempRet0; + $868 = (_bitshift64Shl(($866|0),($867|0),1)|0); + $869 = tempRet0; + $870 = (_i64Add(($868|0),($869|0),($806|0),($807|0))|0); + $871 = tempRet0; + $872 = (($output) + 96|0); + $873 = $872; + $874 = $873; + HEAP32[$874>>2] = $870; + $875 = (($873) + 4)|0; + $876 = $875; + HEAP32[$876>>2] = $871; + $877 = $282; + $878 = $877; + $879 = HEAP32[$878>>2]|0; + $880 = (($877) + 4)|0; + $881 = $880; + $882 = HEAP32[$881>>2]|0; + $883 = (_bitshift64Ashr(0,($879|0),32)|0); + $884 = tempRet0; + $885 = $388; + $886 = $885; + $887 = HEAP32[$886>>2]|0; + $888 = (($885) + 4)|0; + $889 = $888; + $890 = HEAP32[$889>>2]|0; + $891 = (_bitshift64Ashr(0,($887|0),32)|0); + $892 = tempRet0; + $893 = (___muldi3(($891|0),($892|0),($883|0),($884|0))|0); + $894 = tempRet0; + $895 = $224; + $896 = $895; + $897 = HEAP32[$896>>2]|0; + $898 = (($895) + 4)|0; + $899 = $898; + $900 = HEAP32[$899>>2]|0; + $901 = (_bitshift64Ashr(0,($897|0),32)|0); + $902 = tempRet0; + $903 = $444; + $904 = $903; + $905 = HEAP32[$904>>2]|0; + $906 = (($903) + 4)|0; + $907 = $906; + $908 = HEAP32[$907>>2]|0; + $909 = (_bitshift64Ashr(0,($905|0),32)|0); + $910 = tempRet0; + $911 = (___muldi3(($909|0),($910|0),($901|0),($902|0))|0); + $912 = tempRet0; + $913 = (_i64Add(($911|0),($912|0),($893|0),($894|0))|0); + $914 = tempRet0; + $915 = $160; + $916 = $915; + $917 = HEAP32[$916>>2]|0; + $918 = (($915) + 4)|0; + $919 = $918; + $920 = HEAP32[$919>>2]|0; + $921 = (_bitshift64Ashr(0,($917|0),32)|0); + $922 = tempRet0; + $923 = $594; + $924 = $923; + $925 = HEAP32[$924>>2]|0; + $926 = (($923) + 4)|0; + $927 = $926; + $928 = HEAP32[$927>>2]|0; + $929 = (_bitshift64Ashr(0,($925|0),32)|0); + $930 = tempRet0; + $931 = (___muldi3(($929|0),($930|0),($921|0),($922|0))|0); + $932 = tempRet0; + $933 = (_i64Add(($913|0),($914|0),($931|0),($932|0))|0); + $934 = tempRet0; + $935 = (_bitshift64Shl(($933|0),($934|0),1)|0); + $936 = tempRet0; + $937 = (($output) + 104|0); + $938 = $937; + $939 = $938; + HEAP32[$939>>2] = $935; + $940 = (($938) + 4)|0; + $941 = $940; + HEAP32[$941>>2] = $936; + $942 = $388; + $943 = $942; + $944 = HEAP32[$943>>2]|0; + $945 = (($942) + 4)|0; + $946 = $945; + $947 = HEAP32[$946>>2]|0; + $948 = (_bitshift64Ashr(0,($944|0),32)|0); + $949 = tempRet0; + $950 = (___muldi3(($948|0),($949|0),($948|0),($949|0))|0); + $951 = tempRet0; + $952 = $282; + $953 = $952; + $954 = HEAP32[$953>>2]|0; + $955 = (($952) + 4)|0; + $956 = $955; + $957 = HEAP32[$956>>2]|0; + $958 = (_bitshift64Ashr(0,($954|0),32)|0); + $959 = tempRet0; + $960 = $444; + $961 = $960; + $962 = HEAP32[$961>>2]|0; + $963 = (($960) + 4)|0; + $964 = $963; + $965 = HEAP32[$964>>2]|0; + $966 = (_bitshift64Ashr(0,($962|0),32)|0); + $967 = tempRet0; + $968 = (___muldi3(($966|0),($967|0),($958|0),($959|0))|0); + $969 = tempRet0; + $970 = (_i64Add(($968|0),($969|0),($950|0),($951|0))|0); + $971 = tempRet0; + $972 = $224; + $973 = $972; + $974 = HEAP32[$973>>2]|0; + $975 = (($972) + 4)|0; + $976 = $975; + $977 = HEAP32[$976>>2]|0; + $978 = (_bitshift64Ashr(0,($974|0),31)|0); + $979 = tempRet0; + $980 = $594; + $981 = $980; + $982 = HEAP32[$981>>2]|0; + $983 = (($980) + 4)|0; + $984 = $983; + $985 = HEAP32[$984>>2]|0; + $986 = (_bitshift64Ashr(0,($982|0),32)|0); + $987 = tempRet0; + $988 = (___muldi3(($986|0),($987|0),($978|0),($979|0))|0); + $989 = tempRet0; + $990 = (_i64Add(($970|0),($971|0),($988|0),($989|0))|0); + $991 = tempRet0; + $992 = (_bitshift64Shl(($990|0),($991|0),1)|0); + $993 = tempRet0; + $994 = (($output) + 112|0); + $995 = $994; + $996 = $995; + HEAP32[$996>>2] = $992; + $997 = (($995) + 4)|0; + $998 = $997; + HEAP32[$998>>2] = $993; + $999 = $388; + $1000 = $999; + $1001 = HEAP32[$1000>>2]|0; + $1002 = (($999) + 4)|0; + $1003 = $1002; + $1004 = HEAP32[$1003>>2]|0; + $1005 = (_bitshift64Ashr(0,($1001|0),32)|0); + $1006 = tempRet0; + $1007 = $444; + $1008 = $1007; + $1009 = HEAP32[$1008>>2]|0; + $1010 = (($1007) + 4)|0; + $1011 = $1010; + $1012 = HEAP32[$1011>>2]|0; + $1013 = (_bitshift64Ashr(0,($1009|0),32)|0); + $1014 = tempRet0; + $1015 = (___muldi3(($1013|0),($1014|0),($1005|0),($1006|0))|0); + $1016 = tempRet0; + $1017 = $282; + $1018 = $1017; + $1019 = HEAP32[$1018>>2]|0; + $1020 = (($1017) + 4)|0; + $1021 = $1020; + $1022 = HEAP32[$1021>>2]|0; + $1023 = (_bitshift64Ashr(0,($1019|0),32)|0); + $1024 = tempRet0; + $1025 = $594; + $1026 = $1025; + $1027 = HEAP32[$1026>>2]|0; + $1028 = (($1025) + 4)|0; + $1029 = $1028; + $1030 = HEAP32[$1029>>2]|0; + $1031 = (_bitshift64Ashr(0,($1027|0),32)|0); + $1032 = tempRet0; + $1033 = (___muldi3(($1031|0),($1032|0),($1023|0),($1024|0))|0); + $1034 = tempRet0; + $1035 = (_i64Add(($1033|0),($1034|0),($1015|0),($1016|0))|0); + $1036 = tempRet0; + $1037 = (_bitshift64Shl(($1035|0),($1036|0),1)|0); + $1038 = tempRet0; + $1039 = (($output) + 120|0); + $1040 = $1039; + $1041 = $1040; + HEAP32[$1041>>2] = $1037; + $1042 = (($1040) + 4)|0; + $1043 = $1042; + HEAP32[$1043>>2] = $1038; + $1044 = $444; + $1045 = $1044; + $1046 = HEAP32[$1045>>2]|0; + $1047 = (($1044) + 4)|0; + $1048 = $1047; + $1049 = HEAP32[$1048>>2]|0; + $1050 = (_bitshift64Ashr(0,($1046|0),32)|0); + $1051 = tempRet0; + $1052 = (___muldi3(($1050|0),($1051|0),($1050|0),($1051|0))|0); + $1053 = tempRet0; + $1054 = $388; + $1055 = $1054; + $1056 = HEAP32[$1055>>2]|0; + $1057 = (($1054) + 4)|0; + $1058 = $1057; + $1059 = HEAP32[$1058>>2]|0; + $1060 = (_bitshift64Ashr(0,($1056|0),30)|0); + $1061 = tempRet0; + $1062 = $594; + $1063 = $1062; + $1064 = HEAP32[$1063>>2]|0; + $1065 = (($1062) + 4)|0; + $1066 = $1065; + $1067 = HEAP32[$1066>>2]|0; + $1068 = (_bitshift64Ashr(0,($1064|0),32)|0); + $1069 = tempRet0; + $1070 = (___muldi3(($1068|0),($1069|0),($1060|0),($1061|0))|0); + $1071 = tempRet0; + $1072 = (_i64Add(($1070|0),($1071|0),($1052|0),($1053|0))|0); + $1073 = tempRet0; + $1074 = (($output) + 128|0); + $1075 = $1074; + $1076 = $1075; + HEAP32[$1076>>2] = $1072; + $1077 = (($1075) + 4)|0; + $1078 = $1077; + HEAP32[$1078>>2] = $1073; + $1079 = $444; + $1080 = $1079; + $1081 = HEAP32[$1080>>2]|0; + $1082 = (($1079) + 4)|0; + $1083 = $1082; + $1084 = HEAP32[$1083>>2]|0; + $1085 = (_bitshift64Ashr(0,($1081|0),31)|0); + $1086 = tempRet0; + $1087 = $594; + $1088 = $1087; + $1089 = HEAP32[$1088>>2]|0; + $1090 = (($1087) + 4)|0; + $1091 = $1090; + $1092 = HEAP32[$1091>>2]|0; + $1093 = (_bitshift64Ashr(0,($1089|0),32)|0); + $1094 = tempRet0; + $1095 = (___muldi3(($1093|0),($1094|0),($1085|0),($1086|0))|0); + $1096 = tempRet0; + $1097 = (($output) + 136|0); + $1098 = $1097; + $1099 = $1098; + HEAP32[$1099>>2] = $1095; + $1100 = (($1098) + 4)|0; + $1101 = $1100; + HEAP32[$1101>>2] = $1096; + $1102 = $594; + $1103 = $1102; + $1104 = HEAP32[$1103>>2]|0; + $1105 = (($1102) + 4)|0; + $1106 = $1105; + $1107 = HEAP32[$1106>>2]|0; + $1108 = (_bitshift64Ashr(0,($1104|0),32)|0); + $1109 = tempRet0; + $1110 = (_bitshift64Ashr(0,($1104|0),31)|0); + $1111 = tempRet0; + $1112 = (___muldi3(($1110|0),($1111|0),($1108|0),($1109|0))|0); + $1113 = tempRet0; + $1114 = (($output) + 144|0); + $1115 = $1114; + $1116 = $1115; + HEAP32[$1116>>2] = $1112; + $1117 = (($1115) + 4)|0; + $1118 = $1117; + HEAP32[$1118>>2] = $1113; + STACKTOP = sp;return; +} +function _div_by_2_26($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = $1 >> 31; + $3 = $2 >>> 6; + $4 = (_i64Add(($3|0),0,($0|0),($1|0))|0); + $5 = tempRet0; + $6 = (_bitshift64Ashr(($4|0),($5|0),26)|0); + $7 = tempRet0; + tempRet0 = $7; + STACKTOP = sp;return ($6|0); +} +function _div_by_2_25($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = $1 >> 31; + $3 = $2 >>> 7; + $4 = (_i64Add(($3|0),0,($0|0),($1|0))|0); + $5 = tempRet0; + $6 = (_bitshift64Ashr(($4|0),($5|0),25)|0); + $7 = tempRet0; + tempRet0 = $7; + STACKTOP = sp;return ($6|0); +} +function _crypto_sign_ed25519_ref10_fe_0($h) { + $h = $h|0; + var dest = 0, label = 0, sp = 0, stop = 0; + sp = STACKTOP; + dest=$h+0|0; stop=dest+40|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_1($h) { + $h = $h|0; + var $0 = 0, dest = 0, label = 0, sp = 0, stop = 0; + sp = STACKTOP; + HEAP32[$h>>2] = 1; + $0 = (($h) + 4|0); + dest=$0+0|0; stop=dest+36|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_add($h,$f,$g) { + $h = $h|0; + $f = $f|0; + $g = $g|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = HEAP32[$g>>2]|0; + $20 = (($g) + 4|0); + $21 = HEAP32[$20>>2]|0; + $22 = (($g) + 8|0); + $23 = HEAP32[$22>>2]|0; + $24 = (($g) + 12|0); + $25 = HEAP32[$24>>2]|0; + $26 = (($g) + 16|0); + $27 = HEAP32[$26>>2]|0; + $28 = (($g) + 20|0); + $29 = HEAP32[$28>>2]|0; + $30 = (($g) + 24|0); + $31 = HEAP32[$30>>2]|0; + $32 = (($g) + 28|0); + $33 = HEAP32[$32>>2]|0; + $34 = (($g) + 32|0); + $35 = HEAP32[$34>>2]|0; + $36 = (($g) + 36|0); + $37 = HEAP32[$36>>2]|0; + $38 = (($19) + ($0))|0; + $39 = (($21) + ($2))|0; + $40 = (($23) + ($4))|0; + $41 = (($25) + ($6))|0; + $42 = (($27) + ($8))|0; + $43 = (($29) + ($10))|0; + $44 = (($31) + ($12))|0; + $45 = (($33) + ($14))|0; + $46 = (($35) + ($16))|0; + $47 = (($37) + ($18))|0; + HEAP32[$h>>2] = $38; + $48 = (($h) + 4|0); + HEAP32[$48>>2] = $39; + $49 = (($h) + 8|0); + HEAP32[$49>>2] = $40; + $50 = (($h) + 12|0); + HEAP32[$50>>2] = $41; + $51 = (($h) + 16|0); + HEAP32[$51>>2] = $42; + $52 = (($h) + 20|0); + HEAP32[$52>>2] = $43; + $53 = (($h) + 24|0); + HEAP32[$53>>2] = $44; + $54 = (($h) + 28|0); + HEAP32[$54>>2] = $45; + $55 = (($h) + 32|0); + HEAP32[$55>>2] = $46; + $56 = (($h) + 36|0); + HEAP32[$56>>2] = $47; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_cmov($f,$g,$b) { + $f = $f|0; + $g = $g|0; + $b = $b|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0; + var $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = HEAP32[$g>>2]|0; + $20 = (($g) + 4|0); + $21 = HEAP32[$20>>2]|0; + $22 = (($g) + 8|0); + $23 = HEAP32[$22>>2]|0; + $24 = (($g) + 12|0); + $25 = HEAP32[$24>>2]|0; + $26 = (($g) + 16|0); + $27 = HEAP32[$26>>2]|0; + $28 = (($g) + 20|0); + $29 = HEAP32[$28>>2]|0; + $30 = (($g) + 24|0); + $31 = HEAP32[$30>>2]|0; + $32 = (($g) + 28|0); + $33 = HEAP32[$32>>2]|0; + $34 = (($g) + 32|0); + $35 = HEAP32[$34>>2]|0; + $36 = (($g) + 36|0); + $37 = HEAP32[$36>>2]|0; + $38 = $19 ^ $0; + $39 = $21 ^ $2; + $40 = $23 ^ $4; + $41 = $25 ^ $6; + $42 = $27 ^ $8; + $43 = $29 ^ $10; + $44 = $31 ^ $12; + $45 = $33 ^ $14; + $46 = $35 ^ $16; + $47 = $37 ^ $18; + $48 = (0 - ($b))|0; + $49 = $38 & $48; + $50 = $39 & $48; + $51 = $40 & $48; + $52 = $41 & $48; + $53 = $42 & $48; + $54 = $43 & $48; + $55 = $44 & $48; + $56 = $45 & $48; + $57 = $46 & $48; + $58 = $47 & $48; + $59 = $49 ^ $0; + HEAP32[$f>>2] = $59; + $60 = $50 ^ $2; + HEAP32[$1>>2] = $60; + $61 = $51 ^ $4; + HEAP32[$3>>2] = $61; + $62 = $52 ^ $6; + HEAP32[$5>>2] = $62; + $63 = $53 ^ $8; + HEAP32[$7>>2] = $63; + $64 = $54 ^ $10; + HEAP32[$9>>2] = $64; + $65 = $55 ^ $12; + HEAP32[$11>>2] = $65; + $66 = $56 ^ $14; + HEAP32[$13>>2] = $66; + $67 = $57 ^ $16; + HEAP32[$15>>2] = $67; + $68 = $58 ^ $18; + HEAP32[$17>>2] = $68; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_copy($h,$f) { + $h = $h|0; + $f = $f|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + HEAP32[$h>>2] = $0; + $19 = (($h) + 4|0); + HEAP32[$19>>2] = $2; + $20 = (($h) + 8|0); + HEAP32[$20>>2] = $4; + $21 = (($h) + 12|0); + HEAP32[$21>>2] = $6; + $22 = (($h) + 16|0); + HEAP32[$22>>2] = $8; + $23 = (($h) + 20|0); + HEAP32[$23>>2] = $10; + $24 = (($h) + 24|0); + HEAP32[$24>>2] = $12; + $25 = (($h) + 28|0); + HEAP32[$25>>2] = $14; + $26 = (($h) + 32|0); + HEAP32[$26>>2] = $16; + $27 = (($h) + 36|0); + HEAP32[$27>>2] = $18; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_frombytes($h,$s) { + $h = $h|0; + $s = $s|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; + var $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0; + var $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0; + var $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0; + var $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (_load_4($s)|0); + $1 = tempRet0; + $2 = (($s) + 4|0); + $3 = (_load_3($2)|0); + $4 = tempRet0; + $5 = (_bitshift64Shl(($3|0),($4|0),6)|0); + $6 = tempRet0; + $7 = (($s) + 7|0); + $8 = (_load_3($7)|0); + $9 = tempRet0; + $10 = (_bitshift64Shl(($8|0),($9|0),5)|0); + $11 = tempRet0; + $12 = (($s) + 10|0); + $13 = (_load_3($12)|0); + $14 = tempRet0; + $15 = (_bitshift64Shl(($13|0),($14|0),3)|0); + $16 = tempRet0; + $17 = (($s) + 13|0); + $18 = (_load_3($17)|0); + $19 = tempRet0; + $20 = (_bitshift64Shl(($18|0),($19|0),2)|0); + $21 = tempRet0; + $22 = (($s) + 16|0); + $23 = (_load_4($22)|0); + $24 = tempRet0; + $25 = (($s) + 20|0); + $26 = (_load_3($25)|0); + $27 = tempRet0; + $28 = (_bitshift64Shl(($26|0),($27|0),7)|0); + $29 = tempRet0; + $30 = (($s) + 23|0); + $31 = (_load_3($30)|0); + $32 = tempRet0; + $33 = (_bitshift64Shl(($31|0),($32|0),5)|0); + $34 = tempRet0; + $35 = (($s) + 26|0); + $36 = (_load_3($35)|0); + $37 = tempRet0; + $38 = (_bitshift64Shl(($36|0),($37|0),4)|0); + $39 = tempRet0; + $40 = (($s) + 29|0); + $41 = (_load_3($40)|0); + $42 = tempRet0; + $43 = (_bitshift64Shl(($41|0),($42|0),2)|0); + $44 = tempRet0; + $45 = $43 & 33554428; + $46 = (_i64Add(($45|0),0,16777216,0)|0); + $47 = tempRet0; + $48 = (_bitshift64Lshr(($46|0),($47|0),25)|0); + $49 = tempRet0; + $50 = (___muldi3(($48|0),($49|0),19,0)|0); + $51 = tempRet0; + $52 = (_i64Add(($50|0),($51|0),($0|0),($1|0))|0); + $53 = tempRet0; + $54 = (_bitshift64Shl(($48|0),($49|0),25)|0); + $55 = tempRet0; + $56 = (_i64Add(($5|0),($6|0),16777216,0)|0); + $57 = tempRet0; + $58 = (_bitshift64Ashr(($56|0),($57|0),25)|0); + $59 = tempRet0; + $60 = (_i64Add(($58|0),($59|0),($10|0),($11|0))|0); + $61 = tempRet0; + $62 = (_bitshift64Shl(($58|0),($59|0),25)|0); + $63 = tempRet0; + $64 = (_i64Subtract(($5|0),($6|0),($62|0),($63|0))|0); + $65 = tempRet0; + $66 = (_i64Add(($15|0),($16|0),16777216,0)|0); + $67 = tempRet0; + $68 = (_bitshift64Ashr(($66|0),($67|0),25)|0); + $69 = tempRet0; + $70 = (_i64Add(($68|0),($69|0),($20|0),($21|0))|0); + $71 = tempRet0; + $72 = (_bitshift64Shl(($68|0),($69|0),25)|0); + $73 = tempRet0; + $74 = (_i64Subtract(($15|0),($16|0),($72|0),($73|0))|0); + $75 = tempRet0; + $76 = (_i64Add(($23|0),($24|0),16777216,0)|0); + $77 = tempRet0; + $78 = (_bitshift64Ashr(($76|0),($77|0),25)|0); + $79 = tempRet0; + $80 = (_i64Add(($28|0),($29|0),($78|0),($79|0))|0); + $81 = tempRet0; + $82 = (_bitshift64Shl(($78|0),($79|0),25)|0); + $83 = tempRet0; + $84 = (_i64Subtract(($23|0),($24|0),($82|0),($83|0))|0); + $85 = tempRet0; + $86 = (_i64Add(($33|0),($34|0),16777216,0)|0); + $87 = tempRet0; + $88 = (_bitshift64Ashr(($86|0),($87|0),25)|0); + $89 = tempRet0; + $90 = (_i64Add(($88|0),($89|0),($38|0),($39|0))|0); + $91 = tempRet0; + $92 = (_bitshift64Shl(($88|0),($89|0),25)|0); + $93 = tempRet0; + $94 = (_i64Add(($52|0),($53|0),33554432,0)|0); + $95 = tempRet0; + $96 = (_bitshift64Ashr(($94|0),($95|0),26)|0); + $97 = tempRet0; + $98 = (_i64Add(($64|0),($65|0),($96|0),($97|0))|0); + $99 = tempRet0; + $100 = (_bitshift64Shl(($96|0),($97|0),26)|0); + $101 = tempRet0; + $102 = (_i64Subtract(($52|0),($53|0),($100|0),($101|0))|0); + $103 = tempRet0; + $104 = (_i64Add(($60|0),($61|0),33554432,0)|0); + $105 = tempRet0; + $106 = (_bitshift64Ashr(($104|0),($105|0),26)|0); + $107 = tempRet0; + $108 = (_i64Add(($74|0),($75|0),($106|0),($107|0))|0); + $109 = tempRet0; + $110 = (_bitshift64Shl(($106|0),($107|0),26)|0); + $111 = tempRet0; + $112 = (_i64Subtract(($60|0),($61|0),($110|0),($111|0))|0); + $113 = tempRet0; + $114 = (_i64Add(($70|0),($71|0),33554432,0)|0); + $115 = tempRet0; + $116 = (_bitshift64Ashr(($114|0),($115|0),26)|0); + $117 = tempRet0; + $118 = (_i64Add(($84|0),($85|0),($116|0),($117|0))|0); + $119 = tempRet0; + $120 = (_bitshift64Shl(($116|0),($117|0),26)|0); + $121 = tempRet0; + $122 = (_i64Subtract(($70|0),($71|0),($120|0),($121|0))|0); + $123 = tempRet0; + $124 = (_i64Add(($80|0),($81|0),33554432,0)|0); + $125 = tempRet0; + $126 = (_bitshift64Ashr(($124|0),($125|0),26)|0); + $127 = tempRet0; + $128 = (_i64Add(($126|0),($127|0),($33|0),($34|0))|0); + $129 = tempRet0; + $130 = (_i64Subtract(($128|0),($129|0),($92|0),($93|0))|0); + $131 = tempRet0; + $132 = (_bitshift64Shl(($126|0),($127|0),26)|0); + $133 = tempRet0; + $134 = (_i64Subtract(($80|0),($81|0),($132|0),($133|0))|0); + $135 = tempRet0; + $136 = (_i64Add(($90|0),($91|0),33554432,0)|0); + $137 = tempRet0; + $138 = (_bitshift64Ashr(($136|0),($137|0),26)|0); + $139 = tempRet0; + $140 = (_i64Add(($138|0),($139|0),($45|0),0)|0); + $141 = tempRet0; + $142 = (_i64Subtract(($140|0),($141|0),($54|0),($55|0))|0); + $143 = tempRet0; + $144 = (_bitshift64Shl(($138|0),($139|0),26)|0); + $145 = tempRet0; + $146 = (_i64Subtract(($90|0),($91|0),($144|0),($145|0))|0); + $147 = tempRet0; + HEAP32[$h>>2] = $102; + $148 = (($h) + 4|0); + HEAP32[$148>>2] = $98; + $149 = (($h) + 8|0); + HEAP32[$149>>2] = $112; + $150 = (($h) + 12|0); + HEAP32[$150>>2] = $108; + $151 = (($h) + 16|0); + HEAP32[$151>>2] = $122; + $152 = (($h) + 20|0); + HEAP32[$152>>2] = $118; + $153 = (($h) + 24|0); + HEAP32[$153>>2] = $134; + $154 = (($h) + 28|0); + HEAP32[$154>>2] = $130; + $155 = (($h) + 32|0); + HEAP32[$155>>2] = $146; + $156 = (($h) + 36|0); + HEAP32[$156>>2] = $142; + STACKTOP = sp;return; +} +function _load_4($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + $15 = (($in) + 3|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16&255; + $18 = (_bitshift64Shl(($17|0),0,24)|0); + $19 = tempRet0; + $20 = $13 | $18; + $21 = $14 | $19; + tempRet0 = $21; + STACKTOP = sp;return ($20|0); +} +function _load_3($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + tempRet0 = $14; + STACKTOP = sp;return ($13|0); +} +function _crypto_sign_ed25519_ref10_fe_invert($out,$z) { + $out = $out|0; + $z = $z|0; + var $0 = 0, $1 = 0, $2 = 0, $exitcond = 0, $exitcond10 = 0, $exitcond11 = 0, $i$74 = 0, $i$83 = 0, $i$92 = 0, $t0 = 0, $t1 = 0, $t2 = 0, $t3 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 160|0; + $t0 = sp + 120|0; + $t1 = sp + 80|0; + $t2 = sp + 40|0; + $t3 = sp; + _crypto_sign_ed25519_ref10_fe_sq($t0,$z); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t1,$z,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t0,$t0,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t0); + _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_mul($t2,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_mul($t2,$t3,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); + $i$74 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + $0 = (($i$74) + 1)|0; + $exitcond11 = ($0|0)==(50); + if ($exitcond11) { + break; + } else { + $i$74 = $0; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t2,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t2); + $i$83 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + $1 = (($i$83) + 1)|0; + $exitcond10 = ($1|0)==(100); + if ($exitcond10) { + break; + } else { + $i$83 = $1; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t2,$t3,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + $i$92 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + $2 = (($i$92) + 1)|0; + $exitcond = ($2|0)==(50); + if ($exitcond) { + break; + } else { + $i$92 = $2; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($out,$t1,$t0); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_isnegative($f) { + $f = $f|0; + var $0 = 0, $1 = 0, $2 = 0, $s = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 32|0; + $s = sp; + _crypto_sign_ed25519_ref10_fe_tobytes($s,$f); + $0 = HEAP8[$s>>0]|0; + $1 = $0&255; + $2 = $1 & 1; + STACKTOP = sp;return ($2|0); +} +function _crypto_sign_ed25519_ref10_fe_isnonzero($f) { + $f = $f|0; + var $0 = 0, $s = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 32|0; + $s = sp; + _crypto_sign_ed25519_ref10_fe_tobytes($s,$f); + $0 = (_crypto_verify_32_ref($s,8)|0); + STACKTOP = sp;return ($0|0); +} +function _crypto_sign_ed25519_ref10_fe_mul($h,$f,$g) { + $h = $h|0; + $f = $f|0; + $g = $g|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; + var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; + var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; + var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; + var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; + var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; + var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; + var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0; + var $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0; + var $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0; + var $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0; + var $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0; + var $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0; + var $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0; + var $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0; + var $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0; + var $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0; + var $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0; + var $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0; + var $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0; + var $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = HEAP32[$g>>2]|0; + $20 = (($g) + 4|0); + $21 = HEAP32[$20>>2]|0; + $22 = (($g) + 8|0); + $23 = HEAP32[$22>>2]|0; + $24 = (($g) + 12|0); + $25 = HEAP32[$24>>2]|0; + $26 = (($g) + 16|0); + $27 = HEAP32[$26>>2]|0; + $28 = (($g) + 20|0); + $29 = HEAP32[$28>>2]|0; + $30 = (($g) + 24|0); + $31 = HEAP32[$30>>2]|0; + $32 = (($g) + 28|0); + $33 = HEAP32[$32>>2]|0; + $34 = (($g) + 32|0); + $35 = HEAP32[$34>>2]|0; + $36 = (($g) + 36|0); + $37 = HEAP32[$36>>2]|0; + $38 = ($21*19)|0; + $39 = ($23*19)|0; + $40 = ($25*19)|0; + $41 = ($27*19)|0; + $42 = ($29*19)|0; + $43 = ($31*19)|0; + $44 = ($33*19)|0; + $45 = ($35*19)|0; + $46 = ($37*19)|0; + $47 = $2 << 1; + $48 = $6 << 1; + $49 = $10 << 1; + $50 = $14 << 1; + $51 = $18 << 1; + $52 = ($0|0)<(0); + $53 = $52 << 31 >> 31; + $54 = ($19|0)<(0); + $55 = $54 << 31 >> 31; + $56 = (___muldi3(($19|0),($55|0),($0|0),($53|0))|0); + $57 = tempRet0; + $58 = ($21|0)<(0); + $59 = $58 << 31 >> 31; + $60 = (___muldi3(($21|0),($59|0),($0|0),($53|0))|0); + $61 = tempRet0; + $62 = ($23|0)<(0); + $63 = $62 << 31 >> 31; + $64 = (___muldi3(($23|0),($63|0),($0|0),($53|0))|0); + $65 = tempRet0; + $66 = ($25|0)<(0); + $67 = $66 << 31 >> 31; + $68 = (___muldi3(($25|0),($67|0),($0|0),($53|0))|0); + $69 = tempRet0; + $70 = ($27|0)<(0); + $71 = $70 << 31 >> 31; + $72 = (___muldi3(($27|0),($71|0),($0|0),($53|0))|0); + $73 = tempRet0; + $74 = ($29|0)<(0); + $75 = $74 << 31 >> 31; + $76 = (___muldi3(($29|0),($75|0),($0|0),($53|0))|0); + $77 = tempRet0; + $78 = ($31|0)<(0); + $79 = $78 << 31 >> 31; + $80 = (___muldi3(($31|0),($79|0),($0|0),($53|0))|0); + $81 = tempRet0; + $82 = ($33|0)<(0); + $83 = $82 << 31 >> 31; + $84 = (___muldi3(($33|0),($83|0),($0|0),($53|0))|0); + $85 = tempRet0; + $86 = ($35|0)<(0); + $87 = $86 << 31 >> 31; + $88 = (___muldi3(($35|0),($87|0),($0|0),($53|0))|0); + $89 = tempRet0; + $90 = ($37|0)<(0); + $91 = $90 << 31 >> 31; + $92 = (___muldi3(($37|0),($91|0),($0|0),($53|0))|0); + $93 = tempRet0; + $94 = ($2|0)<(0); + $95 = $94 << 31 >> 31; + $96 = (___muldi3(($19|0),($55|0),($2|0),($95|0))|0); + $97 = tempRet0; + $98 = ($47|0)<(0); + $99 = $98 << 31 >> 31; + $100 = (___muldi3(($21|0),($59|0),($47|0),($99|0))|0); + $101 = tempRet0; + $102 = (___muldi3(($23|0),($63|0),($2|0),($95|0))|0); + $103 = tempRet0; + $104 = (___muldi3(($25|0),($67|0),($47|0),($99|0))|0); + $105 = tempRet0; + $106 = (___muldi3(($27|0),($71|0),($2|0),($95|0))|0); + $107 = tempRet0; + $108 = (___muldi3(($29|0),($75|0),($47|0),($99|0))|0); + $109 = tempRet0; + $110 = (___muldi3(($31|0),($79|0),($2|0),($95|0))|0); + $111 = tempRet0; + $112 = (___muldi3(($33|0),($83|0),($47|0),($99|0))|0); + $113 = tempRet0; + $114 = (___muldi3(($35|0),($87|0),($2|0),($95|0))|0); + $115 = tempRet0; + $116 = ($46|0)<(0); + $117 = $116 << 31 >> 31; + $118 = (___muldi3(($46|0),($117|0),($47|0),($99|0))|0); + $119 = tempRet0; + $120 = ($4|0)<(0); + $121 = $120 << 31 >> 31; + $122 = (___muldi3(($19|0),($55|0),($4|0),($121|0))|0); + $123 = tempRet0; + $124 = (___muldi3(($21|0),($59|0),($4|0),($121|0))|0); + $125 = tempRet0; + $126 = (___muldi3(($23|0),($63|0),($4|0),($121|0))|0); + $127 = tempRet0; + $128 = (___muldi3(($25|0),($67|0),($4|0),($121|0))|0); + $129 = tempRet0; + $130 = (___muldi3(($27|0),($71|0),($4|0),($121|0))|0); + $131 = tempRet0; + $132 = (___muldi3(($29|0),($75|0),($4|0),($121|0))|0); + $133 = tempRet0; + $134 = (___muldi3(($31|0),($79|0),($4|0),($121|0))|0); + $135 = tempRet0; + $136 = (___muldi3(($33|0),($83|0),($4|0),($121|0))|0); + $137 = tempRet0; + $138 = ($45|0)<(0); + $139 = $138 << 31 >> 31; + $140 = (___muldi3(($45|0),($139|0),($4|0),($121|0))|0); + $141 = tempRet0; + $142 = (___muldi3(($46|0),($117|0),($4|0),($121|0))|0); + $143 = tempRet0; + $144 = ($6|0)<(0); + $145 = $144 << 31 >> 31; + $146 = (___muldi3(($19|0),($55|0),($6|0),($145|0))|0); + $147 = tempRet0; + $148 = ($48|0)<(0); + $149 = $148 << 31 >> 31; + $150 = (___muldi3(($21|0),($59|0),($48|0),($149|0))|0); + $151 = tempRet0; + $152 = (___muldi3(($23|0),($63|0),($6|0),($145|0))|0); + $153 = tempRet0; + $154 = (___muldi3(($25|0),($67|0),($48|0),($149|0))|0); + $155 = tempRet0; + $156 = (___muldi3(($27|0),($71|0),($6|0),($145|0))|0); + $157 = tempRet0; + $158 = (___muldi3(($29|0),($75|0),($48|0),($149|0))|0); + $159 = tempRet0; + $160 = (___muldi3(($31|0),($79|0),($6|0),($145|0))|0); + $161 = tempRet0; + $162 = ($44|0)<(0); + $163 = $162 << 31 >> 31; + $164 = (___muldi3(($44|0),($163|0),($48|0),($149|0))|0); + $165 = tempRet0; + $166 = (___muldi3(($45|0),($139|0),($6|0),($145|0))|0); + $167 = tempRet0; + $168 = (___muldi3(($46|0),($117|0),($48|0),($149|0))|0); + $169 = tempRet0; + $170 = ($8|0)<(0); + $171 = $170 << 31 >> 31; + $172 = (___muldi3(($19|0),($55|0),($8|0),($171|0))|0); + $173 = tempRet0; + $174 = (___muldi3(($21|0),($59|0),($8|0),($171|0))|0); + $175 = tempRet0; + $176 = (___muldi3(($23|0),($63|0),($8|0),($171|0))|0); + $177 = tempRet0; + $178 = (___muldi3(($25|0),($67|0),($8|0),($171|0))|0); + $179 = tempRet0; + $180 = (___muldi3(($27|0),($71|0),($8|0),($171|0))|0); + $181 = tempRet0; + $182 = (___muldi3(($29|0),($75|0),($8|0),($171|0))|0); + $183 = tempRet0; + $184 = ($43|0)<(0); + $185 = $184 << 31 >> 31; + $186 = (___muldi3(($43|0),($185|0),($8|0),($171|0))|0); + $187 = tempRet0; + $188 = (___muldi3(($44|0),($163|0),($8|0),($171|0))|0); + $189 = tempRet0; + $190 = (___muldi3(($45|0),($139|0),($8|0),($171|0))|0); + $191 = tempRet0; + $192 = (___muldi3(($46|0),($117|0),($8|0),($171|0))|0); + $193 = tempRet0; + $194 = ($10|0)<(0); + $195 = $194 << 31 >> 31; + $196 = (___muldi3(($19|0),($55|0),($10|0),($195|0))|0); + $197 = tempRet0; + $198 = ($49|0)<(0); + $199 = $198 << 31 >> 31; + $200 = (___muldi3(($21|0),($59|0),($49|0),($199|0))|0); + $201 = tempRet0; + $202 = (___muldi3(($23|0),($63|0),($10|0),($195|0))|0); + $203 = tempRet0; + $204 = (___muldi3(($25|0),($67|0),($49|0),($199|0))|0); + $205 = tempRet0; + $206 = (___muldi3(($27|0),($71|0),($10|0),($195|0))|0); + $207 = tempRet0; + $208 = ($42|0)<(0); + $209 = $208 << 31 >> 31; + $210 = (___muldi3(($42|0),($209|0),($49|0),($199|0))|0); + $211 = tempRet0; + $212 = (___muldi3(($43|0),($185|0),($10|0),($195|0))|0); + $213 = tempRet0; + $214 = (___muldi3(($44|0),($163|0),($49|0),($199|0))|0); + $215 = tempRet0; + $216 = (___muldi3(($45|0),($139|0),($10|0),($195|0))|0); + $217 = tempRet0; + $218 = (___muldi3(($46|0),($117|0),($49|0),($199|0))|0); + $219 = tempRet0; + $220 = ($12|0)<(0); + $221 = $220 << 31 >> 31; + $222 = (___muldi3(($19|0),($55|0),($12|0),($221|0))|0); + $223 = tempRet0; + $224 = (___muldi3(($21|0),($59|0),($12|0),($221|0))|0); + $225 = tempRet0; + $226 = (___muldi3(($23|0),($63|0),($12|0),($221|0))|0); + $227 = tempRet0; + $228 = (___muldi3(($25|0),($67|0),($12|0),($221|0))|0); + $229 = tempRet0; + $230 = ($41|0)<(0); + $231 = $230 << 31 >> 31; + $232 = (___muldi3(($41|0),($231|0),($12|0),($221|0))|0); + $233 = tempRet0; + $234 = (___muldi3(($42|0),($209|0),($12|0),($221|0))|0); + $235 = tempRet0; + $236 = (___muldi3(($43|0),($185|0),($12|0),($221|0))|0); + $237 = tempRet0; + $238 = (___muldi3(($44|0),($163|0),($12|0),($221|0))|0); + $239 = tempRet0; + $240 = (___muldi3(($45|0),($139|0),($12|0),($221|0))|0); + $241 = tempRet0; + $242 = (___muldi3(($46|0),($117|0),($12|0),($221|0))|0); + $243 = tempRet0; + $244 = ($14|0)<(0); + $245 = $244 << 31 >> 31; + $246 = (___muldi3(($19|0),($55|0),($14|0),($245|0))|0); + $247 = tempRet0; + $248 = ($50|0)<(0); + $249 = $248 << 31 >> 31; + $250 = (___muldi3(($21|0),($59|0),($50|0),($249|0))|0); + $251 = tempRet0; + $252 = (___muldi3(($23|0),($63|0),($14|0),($245|0))|0); + $253 = tempRet0; + $254 = ($40|0)<(0); + $255 = $254 << 31 >> 31; + $256 = (___muldi3(($40|0),($255|0),($50|0),($249|0))|0); + $257 = tempRet0; + $258 = (___muldi3(($41|0),($231|0),($14|0),($245|0))|0); + $259 = tempRet0; + $260 = (___muldi3(($42|0),($209|0),($50|0),($249|0))|0); + $261 = tempRet0; + $262 = (___muldi3(($43|0),($185|0),($14|0),($245|0))|0); + $263 = tempRet0; + $264 = (___muldi3(($44|0),($163|0),($50|0),($249|0))|0); + $265 = tempRet0; + $266 = (___muldi3(($45|0),($139|0),($14|0),($245|0))|0); + $267 = tempRet0; + $268 = (___muldi3(($46|0),($117|0),($50|0),($249|0))|0); + $269 = tempRet0; + $270 = ($16|0)<(0); + $271 = $270 << 31 >> 31; + $272 = (___muldi3(($19|0),($55|0),($16|0),($271|0))|0); + $273 = tempRet0; + $274 = (___muldi3(($21|0),($59|0),($16|0),($271|0))|0); + $275 = tempRet0; + $276 = ($39|0)<(0); + $277 = $276 << 31 >> 31; + $278 = (___muldi3(($39|0),($277|0),($16|0),($271|0))|0); + $279 = tempRet0; + $280 = (___muldi3(($40|0),($255|0),($16|0),($271|0))|0); + $281 = tempRet0; + $282 = (___muldi3(($41|0),($231|0),($16|0),($271|0))|0); + $283 = tempRet0; + $284 = (___muldi3(($42|0),($209|0),($16|0),($271|0))|0); + $285 = tempRet0; + $286 = (___muldi3(($43|0),($185|0),($16|0),($271|0))|0); + $287 = tempRet0; + $288 = (___muldi3(($44|0),($163|0),($16|0),($271|0))|0); + $289 = tempRet0; + $290 = (___muldi3(($45|0),($139|0),($16|0),($271|0))|0); + $291 = tempRet0; + $292 = (___muldi3(($46|0),($117|0),($16|0),($271|0))|0); + $293 = tempRet0; + $294 = ($18|0)<(0); + $295 = $294 << 31 >> 31; + $296 = (___muldi3(($19|0),($55|0),($18|0),($295|0))|0); + $297 = tempRet0; + $298 = ($51|0)<(0); + $299 = $298 << 31 >> 31; + $300 = ($38|0)<(0); + $301 = $300 << 31 >> 31; + $302 = (___muldi3(($38|0),($301|0),($51|0),($299|0))|0); + $303 = tempRet0; + $304 = (___muldi3(($39|0),($277|0),($18|0),($295|0))|0); + $305 = tempRet0; + $306 = (___muldi3(($40|0),($255|0),($51|0),($299|0))|0); + $307 = tempRet0; + $308 = (___muldi3(($41|0),($231|0),($18|0),($295|0))|0); + $309 = tempRet0; + $310 = (___muldi3(($42|0),($209|0),($51|0),($299|0))|0); + $311 = tempRet0; + $312 = (___muldi3(($43|0),($185|0),($18|0),($295|0))|0); + $313 = tempRet0; + $314 = (___muldi3(($44|0),($163|0),($51|0),($299|0))|0); + $315 = tempRet0; + $316 = (___muldi3(($45|0),($139|0),($18|0),($295|0))|0); + $317 = tempRet0; + $318 = (___muldi3(($46|0),($117|0),($51|0),($299|0))|0); + $319 = tempRet0; + $320 = (_i64Add(($302|0),($303|0),($56|0),($57|0))|0); + $321 = tempRet0; + $322 = (_i64Add(($320|0),($321|0),($278|0),($279|0))|0); + $323 = tempRet0; + $324 = (_i64Add(($322|0),($323|0),($256|0),($257|0))|0); + $325 = tempRet0; + $326 = (_i64Add(($324|0),($325|0),($232|0),($233|0))|0); + $327 = tempRet0; + $328 = (_i64Add(($326|0),($327|0),($210|0),($211|0))|0); + $329 = tempRet0; + $330 = (_i64Add(($328|0),($329|0),($186|0),($187|0))|0); + $331 = tempRet0; + $332 = (_i64Add(($330|0),($331|0),($164|0),($165|0))|0); + $333 = tempRet0; + $334 = (_i64Add(($332|0),($333|0),($140|0),($141|0))|0); + $335 = tempRet0; + $336 = (_i64Add(($334|0),($335|0),($118|0),($119|0))|0); + $337 = tempRet0; + $338 = (_i64Add(($60|0),($61|0),($96|0),($97|0))|0); + $339 = tempRet0; + $340 = (_i64Add(($150|0),($151|0),($172|0),($173|0))|0); + $341 = tempRet0; + $342 = (_i64Add(($340|0),($341|0),($126|0),($127|0))|0); + $343 = tempRet0; + $344 = (_i64Add(($342|0),($343|0),($104|0),($105|0))|0); + $345 = tempRet0; + $346 = (_i64Add(($344|0),($345|0),($72|0),($73|0))|0); + $347 = tempRet0; + $348 = (_i64Add(($346|0),($347|0),($310|0),($311|0))|0); + $349 = tempRet0; + $350 = (_i64Add(($348|0),($349|0),($286|0),($287|0))|0); + $351 = tempRet0; + $352 = (_i64Add(($350|0),($351|0),($264|0),($265|0))|0); + $353 = tempRet0; + $354 = (_i64Add(($352|0),($353|0),($240|0),($241|0))|0); + $355 = tempRet0; + $356 = (_i64Add(($354|0),($355|0),($218|0),($219|0))|0); + $357 = tempRet0; + $358 = (_i64Add(($336|0),($337|0),33554432,0)|0); + $359 = tempRet0; + $360 = (_bitshift64Ashr(($358|0),($359|0),26)|0); + $361 = tempRet0; + $362 = (_i64Add(($338|0),($339|0),($304|0),($305|0))|0); + $363 = tempRet0; + $364 = (_i64Add(($362|0),($363|0),($280|0),($281|0))|0); + $365 = tempRet0; + $366 = (_i64Add(($364|0),($365|0),($258|0),($259|0))|0); + $367 = tempRet0; + $368 = (_i64Add(($366|0),($367|0),($234|0),($235|0))|0); + $369 = tempRet0; + $370 = (_i64Add(($368|0),($369|0),($212|0),($213|0))|0); + $371 = tempRet0; + $372 = (_i64Add(($370|0),($371|0),($188|0),($189|0))|0); + $373 = tempRet0; + $374 = (_i64Add(($372|0),($373|0),($166|0),($167|0))|0); + $375 = tempRet0; + $376 = (_i64Add(($374|0),($375|0),($142|0),($143|0))|0); + $377 = tempRet0; + $378 = (_i64Add(($376|0),($377|0),($360|0),($361|0))|0); + $379 = tempRet0; + $380 = (_bitshift64Shl(($360|0),($361|0),26)|0); + $381 = tempRet0; + $382 = (_i64Subtract(($336|0),($337|0),($380|0),($381|0))|0); + $383 = tempRet0; + $384 = (_i64Add(($356|0),($357|0),33554432,0)|0); + $385 = tempRet0; + $386 = (_bitshift64Ashr(($384|0),($385|0),26)|0); + $387 = tempRet0; + $388 = (_i64Add(($174|0),($175|0),($196|0),($197|0))|0); + $389 = tempRet0; + $390 = (_i64Add(($388|0),($389|0),($152|0),($153|0))|0); + $391 = tempRet0; + $392 = (_i64Add(($390|0),($391|0),($128|0),($129|0))|0); + $393 = tempRet0; + $394 = (_i64Add(($392|0),($393|0),($106|0),($107|0))|0); + $395 = tempRet0; + $396 = (_i64Add(($394|0),($395|0),($76|0),($77|0))|0); + $397 = tempRet0; + $398 = (_i64Add(($396|0),($397|0),($312|0),($313|0))|0); + $399 = tempRet0; + $400 = (_i64Add(($398|0),($399|0),($288|0),($289|0))|0); + $401 = tempRet0; + $402 = (_i64Add(($400|0),($401|0),($266|0),($267|0))|0); + $403 = tempRet0; + $404 = (_i64Add(($402|0),($403|0),($242|0),($243|0))|0); + $405 = tempRet0; + $406 = (_i64Add(($404|0),($405|0),($386|0),($387|0))|0); + $407 = tempRet0; + $408 = (_bitshift64Shl(($386|0),($387|0),26)|0); + $409 = tempRet0; + $410 = (_i64Subtract(($356|0),($357|0),($408|0),($409|0))|0); + $411 = tempRet0; + $412 = (_i64Add(($378|0),($379|0),16777216,0)|0); + $413 = tempRet0; + $414 = (_bitshift64Ashr(($412|0),($413|0),25)|0); + $415 = tempRet0; + $416 = (_i64Add(($100|0),($101|0),($122|0),($123|0))|0); + $417 = tempRet0; + $418 = (_i64Add(($416|0),($417|0),($64|0),($65|0))|0); + $419 = tempRet0; + $420 = (_i64Add(($418|0),($419|0),($306|0),($307|0))|0); + $421 = tempRet0; + $422 = (_i64Add(($420|0),($421|0),($282|0),($283|0))|0); + $423 = tempRet0; + $424 = (_i64Add(($422|0),($423|0),($260|0),($261|0))|0); + $425 = tempRet0; + $426 = (_i64Add(($424|0),($425|0),($236|0),($237|0))|0); + $427 = tempRet0; + $428 = (_i64Add(($426|0),($427|0),($214|0),($215|0))|0); + $429 = tempRet0; + $430 = (_i64Add(($428|0),($429|0),($190|0),($191|0))|0); + $431 = tempRet0; + $432 = (_i64Add(($430|0),($431|0),($168|0),($169|0))|0); + $433 = tempRet0; + $434 = (_i64Add(($432|0),($433|0),($414|0),($415|0))|0); + $435 = tempRet0; + $436 = (_bitshift64Shl(($414|0),($415|0),25)|0); + $437 = tempRet0; + $438 = (_i64Subtract(($378|0),($379|0),($436|0),($437|0))|0); + $439 = tempRet0; + $440 = (_i64Add(($406|0),($407|0),16777216,0)|0); + $441 = tempRet0; + $442 = (_bitshift64Ashr(($440|0),($441|0),25)|0); + $443 = tempRet0; + $444 = (_i64Add(($200|0),($201|0),($222|0),($223|0))|0); + $445 = tempRet0; + $446 = (_i64Add(($444|0),($445|0),($176|0),($177|0))|0); + $447 = tempRet0; + $448 = (_i64Add(($446|0),($447|0),($154|0),($155|0))|0); + $449 = tempRet0; + $450 = (_i64Add(($448|0),($449|0),($130|0),($131|0))|0); + $451 = tempRet0; + $452 = (_i64Add(($450|0),($451|0),($108|0),($109|0))|0); + $453 = tempRet0; + $454 = (_i64Add(($452|0),($453|0),($80|0),($81|0))|0); + $455 = tempRet0; + $456 = (_i64Add(($454|0),($455|0),($314|0),($315|0))|0); + $457 = tempRet0; + $458 = (_i64Add(($456|0),($457|0),($290|0),($291|0))|0); + $459 = tempRet0; + $460 = (_i64Add(($458|0),($459|0),($268|0),($269|0))|0); + $461 = tempRet0; + $462 = (_i64Add(($460|0),($461|0),($442|0),($443|0))|0); + $463 = tempRet0; + $464 = (_bitshift64Shl(($442|0),($443|0),25)|0); + $465 = tempRet0; + $466 = (_i64Subtract(($406|0),($407|0),($464|0),($465|0))|0); + $467 = tempRet0; + $468 = (_i64Add(($434|0),($435|0),33554432,0)|0); + $469 = tempRet0; + $470 = (_bitshift64Ashr(($468|0),($469|0),26)|0); + $471 = tempRet0; + $472 = (_i64Add(($124|0),($125|0),($146|0),($147|0))|0); + $473 = tempRet0; + $474 = (_i64Add(($472|0),($473|0),($102|0),($103|0))|0); + $475 = tempRet0; + $476 = (_i64Add(($474|0),($475|0),($68|0),($69|0))|0); + $477 = tempRet0; + $478 = (_i64Add(($476|0),($477|0),($308|0),($309|0))|0); + $479 = tempRet0; + $480 = (_i64Add(($478|0),($479|0),($284|0),($285|0))|0); + $481 = tempRet0; + $482 = (_i64Add(($480|0),($481|0),($262|0),($263|0))|0); + $483 = tempRet0; + $484 = (_i64Add(($482|0),($483|0),($238|0),($239|0))|0); + $485 = tempRet0; + $486 = (_i64Add(($484|0),($485|0),($216|0),($217|0))|0); + $487 = tempRet0; + $488 = (_i64Add(($486|0),($487|0),($192|0),($193|0))|0); + $489 = tempRet0; + $490 = (_i64Add(($488|0),($489|0),($470|0),($471|0))|0); + $491 = tempRet0; + $492 = (_bitshift64Shl(($470|0),($471|0),26)|0); + $493 = tempRet0; + $494 = (_i64Subtract(($434|0),($435|0),($492|0),($493|0))|0); + $495 = tempRet0; + $496 = (_i64Add(($462|0),($463|0),33554432,0)|0); + $497 = tempRet0; + $498 = (_bitshift64Ashr(($496|0),($497|0),26)|0); + $499 = tempRet0; + $500 = (_i64Add(($224|0),($225|0),($246|0),($247|0))|0); + $501 = tempRet0; + $502 = (_i64Add(($500|0),($501|0),($202|0),($203|0))|0); + $503 = tempRet0; + $504 = (_i64Add(($502|0),($503|0),($178|0),($179|0))|0); + $505 = tempRet0; + $506 = (_i64Add(($504|0),($505|0),($156|0),($157|0))|0); + $507 = tempRet0; + $508 = (_i64Add(($506|0),($507|0),($132|0),($133|0))|0); + $509 = tempRet0; + $510 = (_i64Add(($508|0),($509|0),($110|0),($111|0))|0); + $511 = tempRet0; + $512 = (_i64Add(($510|0),($511|0),($84|0),($85|0))|0); + $513 = tempRet0; + $514 = (_i64Add(($512|0),($513|0),($316|0),($317|0))|0); + $515 = tempRet0; + $516 = (_i64Add(($514|0),($515|0),($292|0),($293|0))|0); + $517 = tempRet0; + $518 = (_i64Add(($516|0),($517|0),($498|0),($499|0))|0); + $519 = tempRet0; + $520 = (_bitshift64Shl(($498|0),($499|0),26)|0); + $521 = tempRet0; + $522 = (_i64Subtract(($462|0),($463|0),($520|0),($521|0))|0); + $523 = tempRet0; + $524 = (_i64Add(($490|0),($491|0),16777216,0)|0); + $525 = tempRet0; + $526 = (_bitshift64Ashr(($524|0),($525|0),25)|0); + $527 = tempRet0; + $528 = (_i64Add(($526|0),($527|0),($410|0),($411|0))|0); + $529 = tempRet0; + $530 = (_bitshift64Shl(($526|0),($527|0),25)|0); + $531 = tempRet0; + $532 = (_i64Subtract(($490|0),($491|0),($530|0),($531|0))|0); + $533 = tempRet0; + $534 = (_i64Add(($518|0),($519|0),16777216,0)|0); + $535 = tempRet0; + $536 = (_bitshift64Ashr(($534|0),($535|0),25)|0); + $537 = tempRet0; + $538 = (_i64Add(($250|0),($251|0),($272|0),($273|0))|0); + $539 = tempRet0; + $540 = (_i64Add(($538|0),($539|0),($226|0),($227|0))|0); + $541 = tempRet0; + $542 = (_i64Add(($540|0),($541|0),($204|0),($205|0))|0); + $543 = tempRet0; + $544 = (_i64Add(($542|0),($543|0),($180|0),($181|0))|0); + $545 = tempRet0; + $546 = (_i64Add(($544|0),($545|0),($158|0),($159|0))|0); + $547 = tempRet0; + $548 = (_i64Add(($546|0),($547|0),($134|0),($135|0))|0); + $549 = tempRet0; + $550 = (_i64Add(($548|0),($549|0),($112|0),($113|0))|0); + $551 = tempRet0; + $552 = (_i64Add(($550|0),($551|0),($88|0),($89|0))|0); + $553 = tempRet0; + $554 = (_i64Add(($552|0),($553|0),($318|0),($319|0))|0); + $555 = tempRet0; + $556 = (_i64Add(($554|0),($555|0),($536|0),($537|0))|0); + $557 = tempRet0; + $558 = (_bitshift64Shl(($536|0),($537|0),25)|0); + $559 = tempRet0; + $560 = (_i64Subtract(($518|0),($519|0),($558|0),($559|0))|0); + $561 = tempRet0; + $562 = (_i64Add(($528|0),($529|0),33554432,0)|0); + $563 = tempRet0; + $564 = (_bitshift64Ashr(($562|0),($563|0),26)|0); + $565 = tempRet0; + $566 = (_i64Add(($466|0),($467|0),($564|0),($565|0))|0); + $567 = tempRet0; + $568 = (_bitshift64Shl(($564|0),($565|0),26)|0); + $569 = tempRet0; + $570 = (_i64Subtract(($528|0),($529|0),($568|0),($569|0))|0); + $571 = tempRet0; + $572 = (_i64Add(($556|0),($557|0),33554432,0)|0); + $573 = tempRet0; + $574 = (_bitshift64Ashr(($572|0),($573|0),26)|0); + $575 = tempRet0; + $576 = (_i64Add(($274|0),($275|0),($296|0),($297|0))|0); + $577 = tempRet0; + $578 = (_i64Add(($576|0),($577|0),($252|0),($253|0))|0); + $579 = tempRet0; + $580 = (_i64Add(($578|0),($579|0),($228|0),($229|0))|0); + $581 = tempRet0; + $582 = (_i64Add(($580|0),($581|0),($206|0),($207|0))|0); + $583 = tempRet0; + $584 = (_i64Add(($582|0),($583|0),($182|0),($183|0))|0); + $585 = tempRet0; + $586 = (_i64Add(($584|0),($585|0),($160|0),($161|0))|0); + $587 = tempRet0; + $588 = (_i64Add(($586|0),($587|0),($136|0),($137|0))|0); + $589 = tempRet0; + $590 = (_i64Add(($588|0),($589|0),($114|0),($115|0))|0); + $591 = tempRet0; + $592 = (_i64Add(($590|0),($591|0),($92|0),($93|0))|0); + $593 = tempRet0; + $594 = (_i64Add(($592|0),($593|0),($574|0),($575|0))|0); + $595 = tempRet0; + $596 = (_bitshift64Shl(($574|0),($575|0),26)|0); + $597 = tempRet0; + $598 = (_i64Subtract(($556|0),($557|0),($596|0),($597|0))|0); + $599 = tempRet0; + $600 = (_i64Add(($594|0),($595|0),16777216,0)|0); + $601 = tempRet0; + $602 = (_bitshift64Ashr(($600|0),($601|0),25)|0); + $603 = tempRet0; + $604 = (___muldi3(($602|0),($603|0),19,0)|0); + $605 = tempRet0; + $606 = (_i64Add(($604|0),($605|0),($382|0),($383|0))|0); + $607 = tempRet0; + $608 = (_bitshift64Shl(($602|0),($603|0),25)|0); + $609 = tempRet0; + $610 = (_i64Subtract(($594|0),($595|0),($608|0),($609|0))|0); + $611 = tempRet0; + $612 = (_i64Add(($606|0),($607|0),33554432,0)|0); + $613 = tempRet0; + $614 = (_bitshift64Ashr(($612|0),($613|0),26)|0); + $615 = tempRet0; + $616 = (_i64Add(($438|0),($439|0),($614|0),($615|0))|0); + $617 = tempRet0; + $618 = (_bitshift64Shl(($614|0),($615|0),26)|0); + $619 = tempRet0; + $620 = (_i64Subtract(($606|0),($607|0),($618|0),($619|0))|0); + $621 = tempRet0; + HEAP32[$h>>2] = $620; + $622 = (($h) + 4|0); + HEAP32[$622>>2] = $616; + $623 = (($h) + 8|0); + HEAP32[$623>>2] = $494; + $624 = (($h) + 12|0); + HEAP32[$624>>2] = $532; + $625 = (($h) + 16|0); + HEAP32[$625>>2] = $570; + $626 = (($h) + 20|0); + HEAP32[$626>>2] = $566; + $627 = (($h) + 24|0); + HEAP32[$627>>2] = $522; + $628 = (($h) + 28|0); + HEAP32[$628>>2] = $560; + $629 = (($h) + 32|0); + HEAP32[$629>>2] = $598; + $630 = (($h) + 36|0); + HEAP32[$630>>2] = $610; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_neg($h,$f) { + $h = $h|0; + $f = $f|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = (0 - ($0))|0; + $20 = (0 - ($2))|0; + $21 = (0 - ($4))|0; + $22 = (0 - ($6))|0; + $23 = (0 - ($8))|0; + $24 = (0 - ($10))|0; + $25 = (0 - ($12))|0; + $26 = (0 - ($14))|0; + $27 = (0 - ($16))|0; + $28 = (0 - ($18))|0; + HEAP32[$h>>2] = $19; + $29 = (($h) + 4|0); + HEAP32[$29>>2] = $20; + $30 = (($h) + 8|0); + HEAP32[$30>>2] = $21; + $31 = (($h) + 12|0); + HEAP32[$31>>2] = $22; + $32 = (($h) + 16|0); + HEAP32[$32>>2] = $23; + $33 = (($h) + 20|0); + HEAP32[$33>>2] = $24; + $34 = (($h) + 24|0); + HEAP32[$34>>2] = $25; + $35 = (($h) + 28|0); + HEAP32[$35>>2] = $26; + $36 = (($h) + 32|0); + HEAP32[$36>>2] = $27; + $37 = (($h) + 36|0); + HEAP32[$37>>2] = $28; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_pow22523($out,$z) { + $out = $out|0; + $z = $z|0; + var $0 = 0, $1 = 0, $2 = 0, $exitcond = 0, $exitcond10 = 0, $exitcond11 = 0, $i$74 = 0, $i$83 = 0, $i$92 = 0, $t0 = 0, $t1 = 0, $t2 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $t0 = sp + 80|0; + $t1 = sp + 40|0; + $t2 = sp; + _crypto_sign_ed25519_ref10_fe_sq($t0,$z); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t1,$z,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t0,$t0,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); + _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); + $i$74 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + $0 = (($i$74) + 1)|0; + $exitcond11 = ($0|0)==(50); + if ($exitcond11) { + break; + } else { + $i$74 = $0; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); + $i$83 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + $1 = (($i$83) + 1)|0; + $exitcond10 = ($1|0)==(100); + if ($exitcond10) { + break; + } else { + $i$83 = $1; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + $i$92 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + $2 = (($i$92) + 1)|0; + $exitcond = ($2|0)==(50); + if ($exitcond) { + break; + } else { + $i$92 = $2; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); + _crypto_sign_ed25519_ref10_fe_mul($out,$t0,$z); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_sq($h,$f) { + $h = $h|0; + $f = $f|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; + var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; + var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; + var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; + var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; + var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; + var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; + var $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0; + var $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0; + var $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = $0 << 1; + $20 = $2 << 1; + $21 = $4 << 1; + $22 = $6 << 1; + $23 = $8 << 1; + $24 = $10 << 1; + $25 = $12 << 1; + $26 = $14 << 1; + $27 = ($10*38)|0; + $28 = ($12*19)|0; + $29 = ($14*38)|0; + $30 = ($16*19)|0; + $31 = ($18*38)|0; + $32 = ($0|0)<(0); + $33 = $32 << 31 >> 31; + $34 = (___muldi3(($0|0),($33|0),($0|0),($33|0))|0); + $35 = tempRet0; + $36 = ($19|0)<(0); + $37 = $36 << 31 >> 31; + $38 = ($2|0)<(0); + $39 = $38 << 31 >> 31; + $40 = (___muldi3(($19|0),($37|0),($2|0),($39|0))|0); + $41 = tempRet0; + $42 = ($4|0)<(0); + $43 = $42 << 31 >> 31; + $44 = (___muldi3(($4|0),($43|0),($19|0),($37|0))|0); + $45 = tempRet0; + $46 = ($6|0)<(0); + $47 = $46 << 31 >> 31; + $48 = (___muldi3(($6|0),($47|0),($19|0),($37|0))|0); + $49 = tempRet0; + $50 = ($8|0)<(0); + $51 = $50 << 31 >> 31; + $52 = (___muldi3(($8|0),($51|0),($19|0),($37|0))|0); + $53 = tempRet0; + $54 = ($10|0)<(0); + $55 = $54 << 31 >> 31; + $56 = (___muldi3(($10|0),($55|0),($19|0),($37|0))|0); + $57 = tempRet0; + $58 = ($12|0)<(0); + $59 = $58 << 31 >> 31; + $60 = (___muldi3(($12|0),($59|0),($19|0),($37|0))|0); + $61 = tempRet0; + $62 = ($14|0)<(0); + $63 = $62 << 31 >> 31; + $64 = (___muldi3(($14|0),($63|0),($19|0),($37|0))|0); + $65 = tempRet0; + $66 = ($16|0)<(0); + $67 = $66 << 31 >> 31; + $68 = (___muldi3(($16|0),($67|0),($19|0),($37|0))|0); + $69 = tempRet0; + $70 = ($18|0)<(0); + $71 = $70 << 31 >> 31; + $72 = (___muldi3(($18|0),($71|0),($19|0),($37|0))|0); + $73 = tempRet0; + $74 = ($20|0)<(0); + $75 = $74 << 31 >> 31; + $76 = (___muldi3(($20|0),($75|0),($2|0),($39|0))|0); + $77 = tempRet0; + $78 = (___muldi3(($20|0),($75|0),($4|0),($43|0))|0); + $79 = tempRet0; + $80 = ($22|0)<(0); + $81 = $80 << 31 >> 31; + $82 = (___muldi3(($22|0),($81|0),($20|0),($75|0))|0); + $83 = tempRet0; + $84 = (___muldi3(($8|0),($51|0),($20|0),($75|0))|0); + $85 = tempRet0; + $86 = ($24|0)<(0); + $87 = $86 << 31 >> 31; + $88 = (___muldi3(($24|0),($87|0),($20|0),($75|0))|0); + $89 = tempRet0; + $90 = (___muldi3(($12|0),($59|0),($20|0),($75|0))|0); + $91 = tempRet0; + $92 = ($26|0)<(0); + $93 = $92 << 31 >> 31; + $94 = (___muldi3(($26|0),($93|0),($20|0),($75|0))|0); + $95 = tempRet0; + $96 = (___muldi3(($16|0),($67|0),($20|0),($75|0))|0); + $97 = tempRet0; + $98 = ($31|0)<(0); + $99 = $98 << 31 >> 31; + $100 = (___muldi3(($31|0),($99|0),($20|0),($75|0))|0); + $101 = tempRet0; + $102 = (___muldi3(($4|0),($43|0),($4|0),($43|0))|0); + $103 = tempRet0; + $104 = ($21|0)<(0); + $105 = $104 << 31 >> 31; + $106 = (___muldi3(($21|0),($105|0),($6|0),($47|0))|0); + $107 = tempRet0; + $108 = (___muldi3(($8|0),($51|0),($21|0),($105|0))|0); + $109 = tempRet0; + $110 = (___muldi3(($10|0),($55|0),($21|0),($105|0))|0); + $111 = tempRet0; + $112 = (___muldi3(($12|0),($59|0),($21|0),($105|0))|0); + $113 = tempRet0; + $114 = (___muldi3(($14|0),($63|0),($21|0),($105|0))|0); + $115 = tempRet0; + $116 = ($30|0)<(0); + $117 = $116 << 31 >> 31; + $118 = (___muldi3(($30|0),($117|0),($21|0),($105|0))|0); + $119 = tempRet0; + $120 = (___muldi3(($31|0),($99|0),($4|0),($43|0))|0); + $121 = tempRet0; + $122 = (___muldi3(($22|0),($81|0),($6|0),($47|0))|0); + $123 = tempRet0; + $124 = (___muldi3(($22|0),($81|0),($8|0),($51|0))|0); + $125 = tempRet0; + $126 = (___muldi3(($24|0),($87|0),($22|0),($81|0))|0); + $127 = tempRet0; + $128 = (___muldi3(($12|0),($59|0),($22|0),($81|0))|0); + $129 = tempRet0; + $130 = ($29|0)<(0); + $131 = $130 << 31 >> 31; + $132 = (___muldi3(($29|0),($131|0),($22|0),($81|0))|0); + $133 = tempRet0; + $134 = (___muldi3(($30|0),($117|0),($22|0),($81|0))|0); + $135 = tempRet0; + $136 = (___muldi3(($31|0),($99|0),($22|0),($81|0))|0); + $137 = tempRet0; + $138 = (___muldi3(($8|0),($51|0),($8|0),($51|0))|0); + $139 = tempRet0; + $140 = ($23|0)<(0); + $141 = $140 << 31 >> 31; + $142 = (___muldi3(($23|0),($141|0),($10|0),($55|0))|0); + $143 = tempRet0; + $144 = ($28|0)<(0); + $145 = $144 << 31 >> 31; + $146 = (___muldi3(($28|0),($145|0),($23|0),($141|0))|0); + $147 = tempRet0; + $148 = (___muldi3(($29|0),($131|0),($8|0),($51|0))|0); + $149 = tempRet0; + $150 = (___muldi3(($30|0),($117|0),($23|0),($141|0))|0); + $151 = tempRet0; + $152 = (___muldi3(($31|0),($99|0),($8|0),($51|0))|0); + $153 = tempRet0; + $154 = ($27|0)<(0); + $155 = $154 << 31 >> 31; + $156 = (___muldi3(($27|0),($155|0),($10|0),($55|0))|0); + $157 = tempRet0; + $158 = (___muldi3(($28|0),($145|0),($24|0),($87|0))|0); + $159 = tempRet0; + $160 = (___muldi3(($29|0),($131|0),($24|0),($87|0))|0); + $161 = tempRet0; + $162 = (___muldi3(($30|0),($117|0),($24|0),($87|0))|0); + $163 = tempRet0; + $164 = (___muldi3(($31|0),($99|0),($24|0),($87|0))|0); + $165 = tempRet0; + $166 = (___muldi3(($28|0),($145|0),($12|0),($59|0))|0); + $167 = tempRet0; + $168 = (___muldi3(($29|0),($131|0),($12|0),($59|0))|0); + $169 = tempRet0; + $170 = ($25|0)<(0); + $171 = $170 << 31 >> 31; + $172 = (___muldi3(($30|0),($117|0),($25|0),($171|0))|0); + $173 = tempRet0; + $174 = (___muldi3(($31|0),($99|0),($12|0),($59|0))|0); + $175 = tempRet0; + $176 = (___muldi3(($29|0),($131|0),($14|0),($63|0))|0); + $177 = tempRet0; + $178 = (___muldi3(($30|0),($117|0),($26|0),($93|0))|0); + $179 = tempRet0; + $180 = (___muldi3(($31|0),($99|0),($26|0),($93|0))|0); + $181 = tempRet0; + $182 = (___muldi3(($30|0),($117|0),($16|0),($67|0))|0); + $183 = tempRet0; + $184 = (___muldi3(($31|0),($99|0),($16|0),($67|0))|0); + $185 = tempRet0; + $186 = (___muldi3(($31|0),($99|0),($18|0),($71|0))|0); + $187 = tempRet0; + $188 = (_i64Add(($156|0),($157|0),($34|0),($35|0))|0); + $189 = tempRet0; + $190 = (_i64Add(($188|0),($189|0),($146|0),($147|0))|0); + $191 = tempRet0; + $192 = (_i64Add(($190|0),($191|0),($132|0),($133|0))|0); + $193 = tempRet0; + $194 = (_i64Add(($192|0),($193|0),($118|0),($119|0))|0); + $195 = tempRet0; + $196 = (_i64Add(($194|0),($195|0),($100|0),($101|0))|0); + $197 = tempRet0; + $198 = (_i64Add(($44|0),($45|0),($76|0),($77|0))|0); + $199 = tempRet0; + $200 = (_i64Add(($48|0),($49|0),($78|0),($79|0))|0); + $201 = tempRet0; + $202 = (_i64Add(($82|0),($83|0),($102|0),($103|0))|0); + $203 = tempRet0; + $204 = (_i64Add(($202|0),($203|0),($52|0),($53|0))|0); + $205 = tempRet0; + $206 = (_i64Add(($204|0),($205|0),($176|0),($177|0))|0); + $207 = tempRet0; + $208 = (_i64Add(($206|0),($207|0),($172|0),($173|0))|0); + $209 = tempRet0; + $210 = (_i64Add(($208|0),($209|0),($164|0),($165|0))|0); + $211 = tempRet0; + $212 = (_i64Add(($196|0),($197|0),33554432,0)|0); + $213 = tempRet0; + $214 = (_bitshift64Ashr(($212|0),($213|0),26)|0); + $215 = tempRet0; + $216 = (_i64Add(($158|0),($159|0),($40|0),($41|0))|0); + $217 = tempRet0; + $218 = (_i64Add(($216|0),($217|0),($148|0),($149|0))|0); + $219 = tempRet0; + $220 = (_i64Add(($218|0),($219|0),($134|0),($135|0))|0); + $221 = tempRet0; + $222 = (_i64Add(($220|0),($221|0),($120|0),($121|0))|0); + $223 = tempRet0; + $224 = (_i64Add(($222|0),($223|0),($214|0),($215|0))|0); + $225 = tempRet0; + $226 = (_bitshift64Shl(($214|0),($215|0),26)|0); + $227 = tempRet0; + $228 = (_i64Subtract(($196|0),($197|0),($226|0),($227|0))|0); + $229 = tempRet0; + $230 = (_i64Add(($210|0),($211|0),33554432,0)|0); + $231 = tempRet0; + $232 = (_bitshift64Ashr(($230|0),($231|0),26)|0); + $233 = tempRet0; + $234 = (_i64Add(($84|0),($85|0),($106|0),($107|0))|0); + $235 = tempRet0; + $236 = (_i64Add(($234|0),($235|0),($56|0),($57|0))|0); + $237 = tempRet0; + $238 = (_i64Add(($236|0),($237|0),($178|0),($179|0))|0); + $239 = tempRet0; + $240 = (_i64Add(($238|0),($239|0),($174|0),($175|0))|0); + $241 = tempRet0; + $242 = (_i64Add(($240|0),($241|0),($232|0),($233|0))|0); + $243 = tempRet0; + $244 = (_bitshift64Shl(($232|0),($233|0),26)|0); + $245 = tempRet0; + $246 = (_i64Subtract(($210|0),($211|0),($244|0),($245|0))|0); + $247 = tempRet0; + $248 = (_i64Add(($224|0),($225|0),16777216,0)|0); + $249 = tempRet0; + $250 = (_bitshift64Ashr(($248|0),($249|0),25)|0); + $251 = tempRet0; + $252 = (_i64Add(($198|0),($199|0),($166|0),($167|0))|0); + $253 = tempRet0; + $254 = (_i64Add(($252|0),($253|0),($160|0),($161|0))|0); + $255 = tempRet0; + $256 = (_i64Add(($254|0),($255|0),($150|0),($151|0))|0); + $257 = tempRet0; + $258 = (_i64Add(($256|0),($257|0),($136|0),($137|0))|0); + $259 = tempRet0; + $260 = (_i64Add(($258|0),($259|0),($250|0),($251|0))|0); + $261 = tempRet0; + $262 = (_bitshift64Shl(($250|0),($251|0),25)|0); + $263 = tempRet0; + $264 = (_i64Subtract(($224|0),($225|0),($262|0),($263|0))|0); + $265 = tempRet0; + $266 = (_i64Add(($242|0),($243|0),16777216,0)|0); + $267 = tempRet0; + $268 = (_bitshift64Ashr(($266|0),($267|0),25)|0); + $269 = tempRet0; + $270 = (_i64Add(($122|0),($123|0),($108|0),($109|0))|0); + $271 = tempRet0; + $272 = (_i64Add(($270|0),($271|0),($88|0),($89|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($60|0),($61|0))|0); + $275 = tempRet0; + $276 = (_i64Add(($274|0),($275|0),($182|0),($183|0))|0); + $277 = tempRet0; + $278 = (_i64Add(($276|0),($277|0),($180|0),($181|0))|0); + $279 = tempRet0; + $280 = (_i64Add(($278|0),($279|0),($268|0),($269|0))|0); + $281 = tempRet0; + $282 = (_bitshift64Shl(($268|0),($269|0),25)|0); + $283 = tempRet0; + $284 = (_i64Subtract(($242|0),($243|0),($282|0),($283|0))|0); + $285 = tempRet0; + $286 = (_i64Add(($260|0),($261|0),33554432,0)|0); + $287 = tempRet0; + $288 = (_bitshift64Ashr(($286|0),($287|0),26)|0); + $289 = tempRet0; + $290 = (_i64Add(($200|0),($201|0),($168|0),($169|0))|0); + $291 = tempRet0; + $292 = (_i64Add(($290|0),($291|0),($162|0),($163|0))|0); + $293 = tempRet0; + $294 = (_i64Add(($292|0),($293|0),($152|0),($153|0))|0); + $295 = tempRet0; + $296 = (_i64Add(($294|0),($295|0),($288|0),($289|0))|0); + $297 = tempRet0; + $298 = (_bitshift64Shl(($288|0),($289|0),26)|0); + $299 = tempRet0; + $300 = (_i64Subtract(($260|0),($261|0),($298|0),($299|0))|0); + $301 = tempRet0; + $302 = (_i64Add(($280|0),($281|0),33554432,0)|0); + $303 = tempRet0; + $304 = (_bitshift64Ashr(($302|0),($303|0),26)|0); + $305 = tempRet0; + $306 = (_i64Add(($110|0),($111|0),($124|0),($125|0))|0); + $307 = tempRet0; + $308 = (_i64Add(($306|0),($307|0),($90|0),($91|0))|0); + $309 = tempRet0; + $310 = (_i64Add(($308|0),($309|0),($64|0),($65|0))|0); + $311 = tempRet0; + $312 = (_i64Add(($310|0),($311|0),($184|0),($185|0))|0); + $313 = tempRet0; + $314 = (_i64Add(($312|0),($313|0),($304|0),($305|0))|0); + $315 = tempRet0; + $316 = (_bitshift64Shl(($304|0),($305|0),26)|0); + $317 = tempRet0; + $318 = (_i64Subtract(($280|0),($281|0),($316|0),($317|0))|0); + $319 = tempRet0; + $320 = (_i64Add(($296|0),($297|0),16777216,0)|0); + $321 = tempRet0; + $322 = (_bitshift64Ashr(($320|0),($321|0),25)|0); + $323 = tempRet0; + $324 = (_i64Add(($322|0),($323|0),($246|0),($247|0))|0); + $325 = tempRet0; + $326 = (_bitshift64Shl(($322|0),($323|0),25)|0); + $327 = tempRet0; + $328 = (_i64Subtract(($296|0),($297|0),($326|0),($327|0))|0); + $329 = tempRet0; + $330 = (_i64Add(($314|0),($315|0),16777216,0)|0); + $331 = tempRet0; + $332 = (_bitshift64Ashr(($330|0),($331|0),25)|0); + $333 = tempRet0; + $334 = (_i64Add(($112|0),($113|0),($138|0),($139|0))|0); + $335 = tempRet0; + $336 = (_i64Add(($334|0),($335|0),($126|0),($127|0))|0); + $337 = tempRet0; + $338 = (_i64Add(($336|0),($337|0),($94|0),($95|0))|0); + $339 = tempRet0; + $340 = (_i64Add(($338|0),($339|0),($68|0),($69|0))|0); + $341 = tempRet0; + $342 = (_i64Add(($340|0),($341|0),($186|0),($187|0))|0); + $343 = tempRet0; + $344 = (_i64Add(($342|0),($343|0),($332|0),($333|0))|0); + $345 = tempRet0; + $346 = (_bitshift64Shl(($332|0),($333|0),25)|0); + $347 = tempRet0; + $348 = (_i64Subtract(($314|0),($315|0),($346|0),($347|0))|0); + $349 = tempRet0; + $350 = (_i64Add(($324|0),($325|0),33554432,0)|0); + $351 = tempRet0; + $352 = (_bitshift64Ashr(($350|0),($351|0),26)|0); + $353 = tempRet0; + $354 = (_i64Add(($284|0),($285|0),($352|0),($353|0))|0); + $355 = tempRet0; + $356 = (_bitshift64Shl(($352|0),($353|0),26)|0); + $357 = tempRet0; + $358 = (_i64Subtract(($324|0),($325|0),($356|0),($357|0))|0); + $359 = tempRet0; + $360 = (_i64Add(($344|0),($345|0),33554432,0)|0); + $361 = tempRet0; + $362 = (_bitshift64Ashr(($360|0),($361|0),26)|0); + $363 = tempRet0; + $364 = (_i64Add(($128|0),($129|0),($142|0),($143|0))|0); + $365 = tempRet0; + $366 = (_i64Add(($364|0),($365|0),($114|0),($115|0))|0); + $367 = tempRet0; + $368 = (_i64Add(($366|0),($367|0),($96|0),($97|0))|0); + $369 = tempRet0; + $370 = (_i64Add(($368|0),($369|0),($72|0),($73|0))|0); + $371 = tempRet0; + $372 = (_i64Add(($370|0),($371|0),($362|0),($363|0))|0); + $373 = tempRet0; + $374 = (_bitshift64Shl(($362|0),($363|0),26)|0); + $375 = tempRet0; + $376 = (_i64Subtract(($344|0),($345|0),($374|0),($375|0))|0); + $377 = tempRet0; + $378 = (_i64Add(($372|0),($373|0),16777216,0)|0); + $379 = tempRet0; + $380 = (_bitshift64Ashr(($378|0),($379|0),25)|0); + $381 = tempRet0; + $382 = (___muldi3(($380|0),($381|0),19,0)|0); + $383 = tempRet0; + $384 = (_i64Add(($382|0),($383|0),($228|0),($229|0))|0); + $385 = tempRet0; + $386 = (_bitshift64Shl(($380|0),($381|0),25)|0); + $387 = tempRet0; + $388 = (_i64Subtract(($372|0),($373|0),($386|0),($387|0))|0); + $389 = tempRet0; + $390 = (_i64Add(($384|0),($385|0),33554432,0)|0); + $391 = tempRet0; + $392 = (_bitshift64Ashr(($390|0),($391|0),26)|0); + $393 = tempRet0; + $394 = (_i64Add(($264|0),($265|0),($392|0),($393|0))|0); + $395 = tempRet0; + $396 = (_bitshift64Shl(($392|0),($393|0),26)|0); + $397 = tempRet0; + $398 = (_i64Subtract(($384|0),($385|0),($396|0),($397|0))|0); + $399 = tempRet0; + HEAP32[$h>>2] = $398; + $400 = (($h) + 4|0); + HEAP32[$400>>2] = $394; + $401 = (($h) + 8|0); + HEAP32[$401>>2] = $300; + $402 = (($h) + 12|0); + HEAP32[$402>>2] = $328; + $403 = (($h) + 16|0); + HEAP32[$403>>2] = $358; + $404 = (($h) + 20|0); + HEAP32[$404>>2] = $354; + $405 = (($h) + 24|0); + HEAP32[$405>>2] = $318; + $406 = (($h) + 28|0); + HEAP32[$406>>2] = $348; + $407 = (($h) + 32|0); + HEAP32[$407>>2] = $376; + $408 = (($h) + 36|0); + HEAP32[$408>>2] = $388; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_sq2($h,$f) { + $h = $h|0; + $f = $f|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; + var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; + var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; + var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; + var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; + var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; + var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; + var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; + var $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0; + var $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0; + var $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = $0 << 1; + $20 = $2 << 1; + $21 = $4 << 1; + $22 = $6 << 1; + $23 = $8 << 1; + $24 = $10 << 1; + $25 = $12 << 1; + $26 = $14 << 1; + $27 = ($10*38)|0; + $28 = ($12*19)|0; + $29 = ($14*38)|0; + $30 = ($16*19)|0; + $31 = ($18*38)|0; + $32 = ($0|0)<(0); + $33 = $32 << 31 >> 31; + $34 = (___muldi3(($0|0),($33|0),($0|0),($33|0))|0); + $35 = tempRet0; + $36 = ($19|0)<(0); + $37 = $36 << 31 >> 31; + $38 = ($2|0)<(0); + $39 = $38 << 31 >> 31; + $40 = (___muldi3(($19|0),($37|0),($2|0),($39|0))|0); + $41 = tempRet0; + $42 = ($4|0)<(0); + $43 = $42 << 31 >> 31; + $44 = (___muldi3(($4|0),($43|0),($19|0),($37|0))|0); + $45 = tempRet0; + $46 = ($6|0)<(0); + $47 = $46 << 31 >> 31; + $48 = (___muldi3(($6|0),($47|0),($19|0),($37|0))|0); + $49 = tempRet0; + $50 = ($8|0)<(0); + $51 = $50 << 31 >> 31; + $52 = (___muldi3(($8|0),($51|0),($19|0),($37|0))|0); + $53 = tempRet0; + $54 = ($10|0)<(0); + $55 = $54 << 31 >> 31; + $56 = (___muldi3(($10|0),($55|0),($19|0),($37|0))|0); + $57 = tempRet0; + $58 = ($12|0)<(0); + $59 = $58 << 31 >> 31; + $60 = (___muldi3(($12|0),($59|0),($19|0),($37|0))|0); + $61 = tempRet0; + $62 = ($14|0)<(0); + $63 = $62 << 31 >> 31; + $64 = (___muldi3(($14|0),($63|0),($19|0),($37|0))|0); + $65 = tempRet0; + $66 = ($16|0)<(0); + $67 = $66 << 31 >> 31; + $68 = (___muldi3(($16|0),($67|0),($19|0),($37|0))|0); + $69 = tempRet0; + $70 = ($18|0)<(0); + $71 = $70 << 31 >> 31; + $72 = (___muldi3(($18|0),($71|0),($19|0),($37|0))|0); + $73 = tempRet0; + $74 = ($20|0)<(0); + $75 = $74 << 31 >> 31; + $76 = (___muldi3(($20|0),($75|0),($2|0),($39|0))|0); + $77 = tempRet0; + $78 = (___muldi3(($20|0),($75|0),($4|0),($43|0))|0); + $79 = tempRet0; + $80 = ($22|0)<(0); + $81 = $80 << 31 >> 31; + $82 = (___muldi3(($22|0),($81|0),($20|0),($75|0))|0); + $83 = tempRet0; + $84 = (___muldi3(($8|0),($51|0),($20|0),($75|0))|0); + $85 = tempRet0; + $86 = ($24|0)<(0); + $87 = $86 << 31 >> 31; + $88 = (___muldi3(($24|0),($87|0),($20|0),($75|0))|0); + $89 = tempRet0; + $90 = (___muldi3(($12|0),($59|0),($20|0),($75|0))|0); + $91 = tempRet0; + $92 = ($26|0)<(0); + $93 = $92 << 31 >> 31; + $94 = (___muldi3(($26|0),($93|0),($20|0),($75|0))|0); + $95 = tempRet0; + $96 = (___muldi3(($16|0),($67|0),($20|0),($75|0))|0); + $97 = tempRet0; + $98 = ($31|0)<(0); + $99 = $98 << 31 >> 31; + $100 = (___muldi3(($31|0),($99|0),($20|0),($75|0))|0); + $101 = tempRet0; + $102 = (___muldi3(($4|0),($43|0),($4|0),($43|0))|0); + $103 = tempRet0; + $104 = ($21|0)<(0); + $105 = $104 << 31 >> 31; + $106 = (___muldi3(($21|0),($105|0),($6|0),($47|0))|0); + $107 = tempRet0; + $108 = (___muldi3(($8|0),($51|0),($21|0),($105|0))|0); + $109 = tempRet0; + $110 = (___muldi3(($10|0),($55|0),($21|0),($105|0))|0); + $111 = tempRet0; + $112 = (___muldi3(($12|0),($59|0),($21|0),($105|0))|0); + $113 = tempRet0; + $114 = (___muldi3(($14|0),($63|0),($21|0),($105|0))|0); + $115 = tempRet0; + $116 = ($30|0)<(0); + $117 = $116 << 31 >> 31; + $118 = (___muldi3(($30|0),($117|0),($21|0),($105|0))|0); + $119 = tempRet0; + $120 = (___muldi3(($31|0),($99|0),($4|0),($43|0))|0); + $121 = tempRet0; + $122 = (___muldi3(($22|0),($81|0),($6|0),($47|0))|0); + $123 = tempRet0; + $124 = (___muldi3(($22|0),($81|0),($8|0),($51|0))|0); + $125 = tempRet0; + $126 = (___muldi3(($24|0),($87|0),($22|0),($81|0))|0); + $127 = tempRet0; + $128 = (___muldi3(($12|0),($59|0),($22|0),($81|0))|0); + $129 = tempRet0; + $130 = ($29|0)<(0); + $131 = $130 << 31 >> 31; + $132 = (___muldi3(($29|0),($131|0),($22|0),($81|0))|0); + $133 = tempRet0; + $134 = (___muldi3(($30|0),($117|0),($22|0),($81|0))|0); + $135 = tempRet0; + $136 = (___muldi3(($31|0),($99|0),($22|0),($81|0))|0); + $137 = tempRet0; + $138 = (___muldi3(($8|0),($51|0),($8|0),($51|0))|0); + $139 = tempRet0; + $140 = ($23|0)<(0); + $141 = $140 << 31 >> 31; + $142 = (___muldi3(($23|0),($141|0),($10|0),($55|0))|0); + $143 = tempRet0; + $144 = ($28|0)<(0); + $145 = $144 << 31 >> 31; + $146 = (___muldi3(($28|0),($145|0),($23|0),($141|0))|0); + $147 = tempRet0; + $148 = (___muldi3(($29|0),($131|0),($8|0),($51|0))|0); + $149 = tempRet0; + $150 = (___muldi3(($30|0),($117|0),($23|0),($141|0))|0); + $151 = tempRet0; + $152 = (___muldi3(($31|0),($99|0),($8|0),($51|0))|0); + $153 = tempRet0; + $154 = ($27|0)<(0); + $155 = $154 << 31 >> 31; + $156 = (___muldi3(($27|0),($155|0),($10|0),($55|0))|0); + $157 = tempRet0; + $158 = (___muldi3(($28|0),($145|0),($24|0),($87|0))|0); + $159 = tempRet0; + $160 = (___muldi3(($29|0),($131|0),($24|0),($87|0))|0); + $161 = tempRet0; + $162 = (___muldi3(($30|0),($117|0),($24|0),($87|0))|0); + $163 = tempRet0; + $164 = (___muldi3(($31|0),($99|0),($24|0),($87|0))|0); + $165 = tempRet0; + $166 = (___muldi3(($28|0),($145|0),($12|0),($59|0))|0); + $167 = tempRet0; + $168 = (___muldi3(($29|0),($131|0),($12|0),($59|0))|0); + $169 = tempRet0; + $170 = ($25|0)<(0); + $171 = $170 << 31 >> 31; + $172 = (___muldi3(($30|0),($117|0),($25|0),($171|0))|0); + $173 = tempRet0; + $174 = (___muldi3(($31|0),($99|0),($12|0),($59|0))|0); + $175 = tempRet0; + $176 = (___muldi3(($29|0),($131|0),($14|0),($63|0))|0); + $177 = tempRet0; + $178 = (___muldi3(($30|0),($117|0),($26|0),($93|0))|0); + $179 = tempRet0; + $180 = (___muldi3(($31|0),($99|0),($26|0),($93|0))|0); + $181 = tempRet0; + $182 = (___muldi3(($30|0),($117|0),($16|0),($67|0))|0); + $183 = tempRet0; + $184 = (___muldi3(($31|0),($99|0),($16|0),($67|0))|0); + $185 = tempRet0; + $186 = (___muldi3(($31|0),($99|0),($18|0),($71|0))|0); + $187 = tempRet0; + $188 = (_i64Add(($156|0),($157|0),($34|0),($35|0))|0); + $189 = tempRet0; + $190 = (_i64Add(($188|0),($189|0),($146|0),($147|0))|0); + $191 = tempRet0; + $192 = (_i64Add(($190|0),($191|0),($132|0),($133|0))|0); + $193 = tempRet0; + $194 = (_i64Add(($192|0),($193|0),($118|0),($119|0))|0); + $195 = tempRet0; + $196 = (_i64Add(($194|0),($195|0),($100|0),($101|0))|0); + $197 = tempRet0; + $198 = (_i64Add(($158|0),($159|0),($40|0),($41|0))|0); + $199 = tempRet0; + $200 = (_i64Add(($198|0),($199|0),($148|0),($149|0))|0); + $201 = tempRet0; + $202 = (_i64Add(($200|0),($201|0),($134|0),($135|0))|0); + $203 = tempRet0; + $204 = (_i64Add(($202|0),($203|0),($120|0),($121|0))|0); + $205 = tempRet0; + $206 = (_i64Add(($44|0),($45|0),($76|0),($77|0))|0); + $207 = tempRet0; + $208 = (_i64Add(($206|0),($207|0),($166|0),($167|0))|0); + $209 = tempRet0; + $210 = (_i64Add(($208|0),($209|0),($160|0),($161|0))|0); + $211 = tempRet0; + $212 = (_i64Add(($210|0),($211|0),($150|0),($151|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($212|0),($213|0),($136|0),($137|0))|0); + $215 = tempRet0; + $216 = (_i64Add(($48|0),($49|0),($78|0),($79|0))|0); + $217 = tempRet0; + $218 = (_i64Add(($216|0),($217|0),($168|0),($169|0))|0); + $219 = tempRet0; + $220 = (_i64Add(($218|0),($219|0),($162|0),($163|0))|0); + $221 = tempRet0; + $222 = (_i64Add(($220|0),($221|0),($152|0),($153|0))|0); + $223 = tempRet0; + $224 = (_i64Add(($82|0),($83|0),($102|0),($103|0))|0); + $225 = tempRet0; + $226 = (_i64Add(($224|0),($225|0),($52|0),($53|0))|0); + $227 = tempRet0; + $228 = (_i64Add(($226|0),($227|0),($176|0),($177|0))|0); + $229 = tempRet0; + $230 = (_i64Add(($228|0),($229|0),($172|0),($173|0))|0); + $231 = tempRet0; + $232 = (_i64Add(($230|0),($231|0),($164|0),($165|0))|0); + $233 = tempRet0; + $234 = (_i64Add(($84|0),($85|0),($106|0),($107|0))|0); + $235 = tempRet0; + $236 = (_i64Add(($234|0),($235|0),($56|0),($57|0))|0); + $237 = tempRet0; + $238 = (_i64Add(($236|0),($237|0),($178|0),($179|0))|0); + $239 = tempRet0; + $240 = (_i64Add(($238|0),($239|0),($174|0),($175|0))|0); + $241 = tempRet0; + $242 = (_i64Add(($122|0),($123|0),($108|0),($109|0))|0); + $243 = tempRet0; + $244 = (_i64Add(($242|0),($243|0),($88|0),($89|0))|0); + $245 = tempRet0; + $246 = (_i64Add(($244|0),($245|0),($60|0),($61|0))|0); + $247 = tempRet0; + $248 = (_i64Add(($246|0),($247|0),($182|0),($183|0))|0); + $249 = tempRet0; + $250 = (_i64Add(($248|0),($249|0),($180|0),($181|0))|0); + $251 = tempRet0; + $252 = (_i64Add(($110|0),($111|0),($124|0),($125|0))|0); + $253 = tempRet0; + $254 = (_i64Add(($252|0),($253|0),($90|0),($91|0))|0); + $255 = tempRet0; + $256 = (_i64Add(($254|0),($255|0),($64|0),($65|0))|0); + $257 = tempRet0; + $258 = (_i64Add(($256|0),($257|0),($184|0),($185|0))|0); + $259 = tempRet0; + $260 = (_i64Add(($112|0),($113|0),($138|0),($139|0))|0); + $261 = tempRet0; + $262 = (_i64Add(($260|0),($261|0),($126|0),($127|0))|0); + $263 = tempRet0; + $264 = (_i64Add(($262|0),($263|0),($94|0),($95|0))|0); + $265 = tempRet0; + $266 = (_i64Add(($264|0),($265|0),($68|0),($69|0))|0); + $267 = tempRet0; + $268 = (_i64Add(($266|0),($267|0),($186|0),($187|0))|0); + $269 = tempRet0; + $270 = (_i64Add(($128|0),($129|0),($142|0),($143|0))|0); + $271 = tempRet0; + $272 = (_i64Add(($270|0),($271|0),($114|0),($115|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($96|0),($97|0))|0); + $275 = tempRet0; + $276 = (_i64Add(($274|0),($275|0),($72|0),($73|0))|0); + $277 = tempRet0; + $278 = (_bitshift64Shl(($196|0),($197|0),1)|0); + $279 = tempRet0; + $280 = (_bitshift64Shl(($204|0),($205|0),1)|0); + $281 = tempRet0; + $282 = (_bitshift64Shl(($214|0),($215|0),1)|0); + $283 = tempRet0; + $284 = (_bitshift64Shl(($222|0),($223|0),1)|0); + $285 = tempRet0; + $286 = (_bitshift64Shl(($232|0),($233|0),1)|0); + $287 = tempRet0; + $288 = (_bitshift64Shl(($240|0),($241|0),1)|0); + $289 = tempRet0; + $290 = (_bitshift64Shl(($250|0),($251|0),1)|0); + $291 = tempRet0; + $292 = (_bitshift64Shl(($258|0),($259|0),1)|0); + $293 = tempRet0; + $294 = (_bitshift64Shl(($268|0),($269|0),1)|0); + $295 = tempRet0; + $296 = (_bitshift64Shl(($276|0),($277|0),1)|0); + $297 = tempRet0; + $298 = (_i64Add(($278|0),($279|0),33554432,0)|0); + $299 = tempRet0; + $300 = (_bitshift64Ashr(($298|0),($299|0),26)|0); + $301 = tempRet0; + $302 = (_i64Add(($300|0),($301|0),($280|0),($281|0))|0); + $303 = tempRet0; + $304 = (_bitshift64Shl(($300|0),($301|0),26)|0); + $305 = tempRet0; + $306 = (_i64Subtract(($278|0),($279|0),($304|0),($305|0))|0); + $307 = tempRet0; + $308 = (_i64Add(($286|0),($287|0),33554432,0)|0); + $309 = tempRet0; + $310 = (_bitshift64Ashr(($308|0),($309|0),26)|0); + $311 = tempRet0; + $312 = (_i64Add(($310|0),($311|0),($288|0),($289|0))|0); + $313 = tempRet0; + $314 = (_bitshift64Shl(($310|0),($311|0),26)|0); + $315 = tempRet0; + $316 = (_i64Subtract(($286|0),($287|0),($314|0),($315|0))|0); + $317 = tempRet0; + $318 = (_i64Add(($302|0),($303|0),16777216,0)|0); + $319 = tempRet0; + $320 = (_bitshift64Ashr(($318|0),($319|0),25)|0); + $321 = tempRet0; + $322 = (_i64Add(($320|0),($321|0),($282|0),($283|0))|0); + $323 = tempRet0; + $324 = (_bitshift64Shl(($320|0),($321|0),25)|0); + $325 = tempRet0; + $326 = (_i64Subtract(($302|0),($303|0),($324|0),($325|0))|0); + $327 = tempRet0; + $328 = (_i64Add(($312|0),($313|0),16777216,0)|0); + $329 = tempRet0; + $330 = (_bitshift64Ashr(($328|0),($329|0),25)|0); + $331 = tempRet0; + $332 = (_i64Add(($330|0),($331|0),($290|0),($291|0))|0); + $333 = tempRet0; + $334 = (_bitshift64Shl(($330|0),($331|0),25)|0); + $335 = tempRet0; + $336 = (_i64Subtract(($312|0),($313|0),($334|0),($335|0))|0); + $337 = tempRet0; + $338 = (_i64Add(($322|0),($323|0),33554432,0)|0); + $339 = tempRet0; + $340 = (_bitshift64Ashr(($338|0),($339|0),26)|0); + $341 = tempRet0; + $342 = (_i64Add(($340|0),($341|0),($284|0),($285|0))|0); + $343 = tempRet0; + $344 = (_bitshift64Shl(($340|0),($341|0),26)|0); + $345 = tempRet0; + $346 = (_i64Subtract(($322|0),($323|0),($344|0),($345|0))|0); + $347 = tempRet0; + $348 = (_i64Add(($332|0),($333|0),33554432,0)|0); + $349 = tempRet0; + $350 = (_bitshift64Ashr(($348|0),($349|0),26)|0); + $351 = tempRet0; + $352 = (_i64Add(($350|0),($351|0),($292|0),($293|0))|0); + $353 = tempRet0; + $354 = (_bitshift64Shl(($350|0),($351|0),26)|0); + $355 = tempRet0; + $356 = (_i64Subtract(($332|0),($333|0),($354|0),($355|0))|0); + $357 = tempRet0; + $358 = (_i64Add(($342|0),($343|0),16777216,0)|0); + $359 = tempRet0; + $360 = (_bitshift64Ashr(($358|0),($359|0),25)|0); + $361 = tempRet0; + $362 = (_i64Add(($360|0),($361|0),($316|0),($317|0))|0); + $363 = tempRet0; + $364 = (_bitshift64Shl(($360|0),($361|0),25)|0); + $365 = tempRet0; + $366 = (_i64Subtract(($342|0),($343|0),($364|0),($365|0))|0); + $367 = tempRet0; + $368 = (_i64Add(($352|0),($353|0),16777216,0)|0); + $369 = tempRet0; + $370 = (_bitshift64Ashr(($368|0),($369|0),25)|0); + $371 = tempRet0; + $372 = (_i64Add(($370|0),($371|0),($294|0),($295|0))|0); + $373 = tempRet0; + $374 = (_bitshift64Shl(($370|0),($371|0),25)|0); + $375 = tempRet0; + $376 = (_i64Subtract(($352|0),($353|0),($374|0),($375|0))|0); + $377 = tempRet0; + $378 = (_i64Add(($362|0),($363|0),33554432,0)|0); + $379 = tempRet0; + $380 = (_bitshift64Ashr(($378|0),($379|0),26)|0); + $381 = tempRet0; + $382 = (_i64Add(($336|0),($337|0),($380|0),($381|0))|0); + $383 = tempRet0; + $384 = (_bitshift64Shl(($380|0),($381|0),26)|0); + $385 = tempRet0; + $386 = (_i64Subtract(($362|0),($363|0),($384|0),($385|0))|0); + $387 = tempRet0; + $388 = (_i64Add(($372|0),($373|0),33554432,0)|0); + $389 = tempRet0; + $390 = (_bitshift64Ashr(($388|0),($389|0),26)|0); + $391 = tempRet0; + $392 = (_i64Add(($390|0),($391|0),($296|0),($297|0))|0); + $393 = tempRet0; + $394 = (_bitshift64Shl(($390|0),($391|0),26)|0); + $395 = tempRet0; + $396 = (_i64Subtract(($372|0),($373|0),($394|0),($395|0))|0); + $397 = tempRet0; + $398 = (_i64Add(($392|0),($393|0),16777216,0)|0); + $399 = tempRet0; + $400 = (_bitshift64Ashr(($398|0),($399|0),25)|0); + $401 = tempRet0; + $402 = (___muldi3(($400|0),($401|0),19,0)|0); + $403 = tempRet0; + $404 = (_i64Add(($402|0),($403|0),($306|0),($307|0))|0); + $405 = tempRet0; + $406 = (_bitshift64Shl(($400|0),($401|0),25)|0); + $407 = tempRet0; + $408 = (_i64Subtract(($392|0),($393|0),($406|0),($407|0))|0); + $409 = tempRet0; + $410 = (_i64Add(($404|0),($405|0),33554432,0)|0); + $411 = tempRet0; + $412 = (_bitshift64Ashr(($410|0),($411|0),26)|0); + $413 = tempRet0; + $414 = (_i64Add(($326|0),($327|0),($412|0),($413|0))|0); + $415 = tempRet0; + $416 = (_bitshift64Shl(($412|0),($413|0),26)|0); + $417 = tempRet0; + $418 = (_i64Subtract(($404|0),($405|0),($416|0),($417|0))|0); + $419 = tempRet0; + HEAP32[$h>>2] = $418; + $420 = (($h) + 4|0); + HEAP32[$420>>2] = $414; + $421 = (($h) + 8|0); + HEAP32[$421>>2] = $346; + $422 = (($h) + 12|0); + HEAP32[$422>>2] = $366; + $423 = (($h) + 16|0); + HEAP32[$423>>2] = $386; + $424 = (($h) + 20|0); + HEAP32[$424>>2] = $382; + $425 = (($h) + 24|0); + HEAP32[$425>>2] = $356; + $426 = (($h) + 28|0); + HEAP32[$426>>2] = $376; + $427 = (($h) + 32|0); + HEAP32[$427>>2] = $396; + $428 = (($h) + 36|0); + HEAP32[$428>>2] = $408; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_sub($h,$f,$g) { + $h = $h|0; + $f = $f|0; + $g = $g|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = HEAP32[$g>>2]|0; + $20 = (($g) + 4|0); + $21 = HEAP32[$20>>2]|0; + $22 = (($g) + 8|0); + $23 = HEAP32[$22>>2]|0; + $24 = (($g) + 12|0); + $25 = HEAP32[$24>>2]|0; + $26 = (($g) + 16|0); + $27 = HEAP32[$26>>2]|0; + $28 = (($g) + 20|0); + $29 = HEAP32[$28>>2]|0; + $30 = (($g) + 24|0); + $31 = HEAP32[$30>>2]|0; + $32 = (($g) + 28|0); + $33 = HEAP32[$32>>2]|0; + $34 = (($g) + 32|0); + $35 = HEAP32[$34>>2]|0; + $36 = (($g) + 36|0); + $37 = HEAP32[$36>>2]|0; + $38 = (($0) - ($19))|0; + $39 = (($2) - ($21))|0; + $40 = (($4) - ($23))|0; + $41 = (($6) - ($25))|0; + $42 = (($8) - ($27))|0; + $43 = (($10) - ($29))|0; + $44 = (($12) - ($31))|0; + $45 = (($14) - ($33))|0; + $46 = (($16) - ($35))|0; + $47 = (($18) - ($37))|0; + HEAP32[$h>>2] = $38; + $48 = (($h) + 4|0); + HEAP32[$48>>2] = $39; + $49 = (($h) + 8|0); + HEAP32[$49>>2] = $40; + $50 = (($h) + 12|0); + HEAP32[$50>>2] = $41; + $51 = (($h) + 16|0); + HEAP32[$51>>2] = $42; + $52 = (($h) + 20|0); + HEAP32[$52>>2] = $43; + $53 = (($h) + 24|0); + HEAP32[$53>>2] = $44; + $54 = (($h) + 28|0); + HEAP32[$54>>2] = $45; + $55 = (($h) + 32|0); + HEAP32[$55>>2] = $46; + $56 = (($h) + 36|0); + HEAP32[$56>>2] = $47; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_tobytes($s,$h) { + $s = $s|0; + $h = $h|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0; + var $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0; + var $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0; + var $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0; + var $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$h>>2]|0; + $1 = (($h) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($h) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($h) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($h) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($h) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($h) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($h) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($h) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($h) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = ($18*19)|0; + $20 = (($19) + 16777216)|0; + $21 = $20 >> 25; + $22 = (($21) + ($0))|0; + $23 = $22 >> 26; + $24 = (($23) + ($2))|0; + $25 = $24 >> 25; + $26 = (($25) + ($4))|0; + $27 = $26 >> 26; + $28 = (($27) + ($6))|0; + $29 = $28 >> 25; + $30 = (($29) + ($8))|0; + $31 = $30 >> 26; + $32 = (($31) + ($10))|0; + $33 = $32 >> 25; + $34 = (($33) + ($12))|0; + $35 = $34 >> 26; + $36 = (($35) + ($14))|0; + $37 = $36 >> 25; + $38 = (($37) + ($16))|0; + $39 = $38 >> 26; + $40 = (($39) + ($18))|0; + $41 = $40 >> 25; + $42 = ($41*19)|0; + $43 = (($42) + ($0))|0; + $44 = $43 >> 26; + $45 = (($44) + ($2))|0; + $46 = $44 << 26; + $47 = (($43) - ($46))|0; + $48 = $45 >> 25; + $49 = (($48) + ($4))|0; + $50 = $48 << 25; + $51 = (($45) - ($50))|0; + $52 = $49 >> 26; + $53 = (($52) + ($6))|0; + $54 = $52 << 26; + $55 = (($49) - ($54))|0; + $56 = $53 >> 25; + $57 = (($56) + ($8))|0; + $58 = $56 << 25; + $59 = (($53) - ($58))|0; + $60 = $57 >> 26; + $61 = (($60) + ($10))|0; + $62 = $60 << 26; + $63 = (($57) - ($62))|0; + $64 = $61 >> 25; + $65 = (($64) + ($12))|0; + $66 = $64 << 25; + $67 = (($61) - ($66))|0; + $68 = $65 >> 26; + $69 = (($68) + ($14))|0; + $70 = $68 << 26; + $71 = (($65) - ($70))|0; + $72 = $69 >> 25; + $73 = (($72) + ($16))|0; + $74 = $72 << 25; + $75 = (($69) - ($74))|0; + $76 = $73 >> 26; + $77 = (($76) + ($18))|0; + $78 = $76 << 26; + $79 = (($73) - ($78))|0; + $80 = $77 & 33554431; + $81 = $47&255; + HEAP8[$s>>0] = $81; + $82 = $47 >>> 8; + $83 = $82&255; + $84 = (($s) + 1|0); + HEAP8[$84>>0] = $83; + $85 = $47 >>> 16; + $86 = $85&255; + $87 = (($s) + 2|0); + HEAP8[$87>>0] = $86; + $88 = $47 >>> 24; + $89 = $51 << 2; + $90 = $89 | $88; + $91 = $90&255; + $92 = (($s) + 3|0); + HEAP8[$92>>0] = $91; + $93 = $51 >>> 6; + $94 = $93&255; + $95 = (($s) + 4|0); + HEAP8[$95>>0] = $94; + $96 = $51 >>> 14; + $97 = $96&255; + $98 = (($s) + 5|0); + HEAP8[$98>>0] = $97; + $99 = $51 >>> 22; + $100 = $55 << 3; + $101 = $100 | $99; + $102 = $101&255; + $103 = (($s) + 6|0); + HEAP8[$103>>0] = $102; + $104 = $55 >>> 5; + $105 = $104&255; + $106 = (($s) + 7|0); + HEAP8[$106>>0] = $105; + $107 = $55 >>> 13; + $108 = $107&255; + $109 = (($s) + 8|0); + HEAP8[$109>>0] = $108; + $110 = $55 >>> 21; + $111 = $59 << 5; + $112 = $111 | $110; + $113 = $112&255; + $114 = (($s) + 9|0); + HEAP8[$114>>0] = $113; + $115 = $59 >>> 3; + $116 = $115&255; + $117 = (($s) + 10|0); + HEAP8[$117>>0] = $116; + $118 = $59 >>> 11; + $119 = $118&255; + $120 = (($s) + 11|0); + HEAP8[$120>>0] = $119; + $121 = $59 >>> 19; + $122 = $63 << 6; + $123 = $122 | $121; + $124 = $123&255; + $125 = (($s) + 12|0); + HEAP8[$125>>0] = $124; + $126 = $63 >>> 2; + $127 = $126&255; + $128 = (($s) + 13|0); + HEAP8[$128>>0] = $127; + $129 = $63 >>> 10; + $130 = $129&255; + $131 = (($s) + 14|0); + HEAP8[$131>>0] = $130; + $132 = $63 >>> 18; + $133 = $132&255; + $134 = (($s) + 15|0); + HEAP8[$134>>0] = $133; + $135 = $67&255; + $136 = (($s) + 16|0); + HEAP8[$136>>0] = $135; + $137 = $67 >>> 8; + $138 = $137&255; + $139 = (($s) + 17|0); + HEAP8[$139>>0] = $138; + $140 = $67 >>> 16; + $141 = $140&255; + $142 = (($s) + 18|0); + HEAP8[$142>>0] = $141; + $143 = $67 >>> 24; + $144 = $71 << 1; + $145 = $144 | $143; + $146 = $145&255; + $147 = (($s) + 19|0); + HEAP8[$147>>0] = $146; + $148 = $71 >>> 7; + $149 = $148&255; + $150 = (($s) + 20|0); + HEAP8[$150>>0] = $149; + $151 = $71 >>> 15; + $152 = $151&255; + $153 = (($s) + 21|0); + HEAP8[$153>>0] = $152; + $154 = $71 >>> 23; + $155 = $75 << 3; + $156 = $155 | $154; + $157 = $156&255; + $158 = (($s) + 22|0); + HEAP8[$158>>0] = $157; + $159 = $75 >>> 5; + $160 = $159&255; + $161 = (($s) + 23|0); + HEAP8[$161>>0] = $160; + $162 = $75 >>> 13; + $163 = $162&255; + $164 = (($s) + 24|0); + HEAP8[$164>>0] = $163; + $165 = $75 >>> 21; + $166 = $79 << 4; + $167 = $166 | $165; + $168 = $167&255; + $169 = (($s) + 25|0); + HEAP8[$169>>0] = $168; + $170 = $79 >>> 4; + $171 = $170&255; + $172 = (($s) + 26|0); + HEAP8[$172>>0] = $171; + $173 = $79 >>> 12; + $174 = $173&255; + $175 = (($s) + 27|0); + HEAP8[$175>>0] = $174; + $176 = $79 >>> 20; + $177 = $80 << 6; + $178 = $176 | $177; + $179 = $178&255; + $180 = (($s) + 28|0); + HEAP8[$180>>0] = $179; + $181 = $77 >>> 2; + $182 = $181&255; + $183 = (($s) + 29|0); + HEAP8[$183>>0] = $182; + $184 = $77 >>> 10; + $185 = $184&255; + $186 = (($s) + 30|0); + HEAP8[$186>>0] = $185; + $187 = $80 >>> 18; + $188 = $187&255; + $189 = (($s) + 31|0); + HEAP8[$189>>0] = $188; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_add($r,$p,$q) { + $r = $r|0; + $p = $p|0; + $q = $q|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $t0 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $t0 = sp; + $0 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); + $1 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); + $2 = (($r) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($2,$r,$q); + $3 = (($q) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($1,$1,$3); + $4 = (($r) + 120|0); + $5 = (($q) + 120|0); + $6 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); + $7 = (($p) + 80|0); + $8 = (($q) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($r,$7,$8); + _crypto_sign_ed25519_ref10_fe_add($t0,$r,$r); + _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($2,$t0,$4); + _crypto_sign_ed25519_ref10_fe_sub($4,$t0,$4); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($r,$a,$A,$b) { + $r = $r|0; + $a = $a|0; + $A = $A|0; + $b = $b|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, $A2 = 0, $Ai = 0, $aslide = 0, $bslide = 0, $i$0$lcssa = 0, $i$02 = 0, $i$11 = 0, $t = 0, $u = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 2272|0; + $aslide = sp + 2016|0; + $bslide = sp + 1760|0; + $Ai = sp + 480|0; + $t = sp + 320|0; + $u = sp + 160|0; + $A2 = sp; + _slide($aslide,$a); + _slide($bslide,$b); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($Ai,$A); + _crypto_sign_ed25519_ref10_ge_p3_dbl($t,$A); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($A2,$t); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$Ai); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $0 = (($Ai) + 160|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($0,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$0); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $1 = (($Ai) + 320|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($1,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$1); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $2 = (($Ai) + 480|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($2,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$2); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $3 = (($Ai) + 640|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($3,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$3); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $4 = (($Ai) + 800|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($4,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$4); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $5 = (($Ai) + 960|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($5,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$5); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $6 = (($Ai) + 1120|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($6,$u); + _crypto_sign_ed25519_ref10_ge_p2_0($r); + $i$02 = 255; + while(1) { + $8 = (($aslide) + ($i$02)|0); + $9 = HEAP8[$8>>0]|0; + $10 = ($9<<24>>24)==(0); + if (!($10)) { + $i$0$lcssa = $i$02; + break; + } + $11 = (($bslide) + ($i$02)|0); + $12 = HEAP8[$11>>0]|0; + $13 = ($12<<24>>24)==(0); + $14 = (($i$02) + -1)|0; + if (!($13)) { + $i$0$lcssa = $i$02; + break; + } + $7 = ($i$02|0)>(0); + if ($7) { + $i$02 = $14; + } else { + $i$0$lcssa = $14; + break; + } + } + $15 = ($i$0$lcssa|0)>(-1); + if ($15) { + $i$11 = $i$0$lcssa; + } else { + STACKTOP = sp;return; + } + while(1) { + _crypto_sign_ed25519_ref10_ge_p2_dbl($t,$r); + $16 = (($aslide) + ($i$11)|0); + $17 = HEAP8[$16>>0]|0; + $18 = ($17<<24>>24)>(0); + if ($18) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $19 = HEAP8[$16>>0]|0; + $20 = $19 << 24 >> 24; + $21 = (($20|0) / 2)&-1; + $22 = (($Ai) + (($21*160)|0)|0); + _crypto_sign_ed25519_ref10_ge_add($t,$u,$22); + } else { + $23 = ($17<<24>>24)<(0); + if ($23) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $24 = HEAP8[$16>>0]|0; + $25 = $24 << 24 >> 24; + $26 = (($25|0) / -2)&-1; + $27 = (($Ai) + (($26*160)|0)|0); + _crypto_sign_ed25519_ref10_ge_sub($t,$u,$27); + } + } + $28 = (($bslide) + ($i$11)|0); + $29 = HEAP8[$28>>0]|0; + $30 = ($29<<24>>24)>(0); + if ($30) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $31 = HEAP8[$28>>0]|0; + $32 = $31 << 24 >> 24; + $33 = (($32|0) / 2)&-1; + $34 = (40 + (($33*120)|0)|0); + _crypto_sign_ed25519_ref10_ge_madd($t,$u,$34); + } else { + $35 = ($29<<24>>24)<(0); + if ($35) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $36 = HEAP8[$28>>0]|0; + $37 = $36 << 24 >> 24; + $38 = (($37|0) / -2)&-1; + $39 = (40 + (($38*120)|0)|0); + _crypto_sign_ed25519_ref10_ge_msub($t,$u,$39); + } + } + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($r,$t); + $40 = (($i$11) + -1)|0; + $41 = ($i$11|0)>(0); + if ($41) { + $i$11 = $40; + } else { + break; + } + } + STACKTOP = sp;return; +} +function _slide($r,$a) { + $r = $r|0; + $a = $a|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $b$03 = 0, $exitcond = 0, $exitcond10 = 0; + var $i$08 = 0, $i$15 = 0, $k$01 = 0, label = 0, sp = 0; + sp = STACKTOP; + $i$08 = 0; + while(1) { + $0 = $i$08 >> 3; + $1 = (($a) + ($0)|0); + $2 = HEAP8[$1>>0]|0; + $3 = $2&255; + $4 = $i$08 & 7; + $5 = $3 >>> $4; + $6 = $5 & 1; + $7 = $6&255; + $8 = (($r) + ($i$08)|0); + HEAP8[$8>>0] = $7; + $9 = (($i$08) + 1)|0; + $exitcond10 = ($9|0)==(256); + if ($exitcond10) { + $i$15 = 0; + break; + } else { + $i$08 = $9; + } + } + while(1) { + $10 = (($r) + ($i$15)|0); + $11 = HEAP8[$10>>0]|0; + $12 = ($11<<24>>24)==(0); + L5: do { + if (!($12)) { + $b$03 = 1; + while(1) { + $13 = (($b$03) + ($i$15))|0; + $14 = ($13|0)<(256); + if (!($14)) { + break L5; + } + $15 = (($r) + ($13)|0); + $16 = HEAP8[$15>>0]|0; + $17 = ($16<<24>>24)==(0); + L9: do { + if (!($17)) { + $18 = HEAP8[$10>>0]|0; + $19 = $18 << 24 >> 24; + $20 = $16 << 24 >> 24; + $21 = $20 << $b$03; + $22 = (($19) + ($21))|0; + $23 = ($22|0)<(16); + if ($23) { + $24 = $22&255; + HEAP8[$10>>0] = $24; + HEAP8[$15>>0] = 0; + break; + } + $25 = (($19) - ($21))|0; + $26 = ($25|0)>(-16); + if (!($26)) { + break L5; + } + $27 = $25&255; + HEAP8[$10>>0] = $27; + $28 = ($13|0)<(256); + if ($28) { + $k$01 = $13; + while(1) { + $29 = (($r) + ($k$01)|0); + $30 = HEAP8[$29>>0]|0; + $31 = ($30<<24>>24)==(0); + if ($31) { + break; + } + HEAP8[$29>>0] = 0; + $32 = (($k$01) + 1)|0; + $33 = ($32|0)<(256); + if ($33) { + $k$01 = $32; + } else { + break L9; + } + } + HEAP8[$29>>0] = 1; + } + } + } while(0); + $34 = (($b$03) + 1)|0; + $35 = ($34|0)<(7); + if ($35) { + $b$03 = $34; + } else { + break; + } + } + } + } while(0); + $36 = (($i$15) + 1)|0; + $exitcond = ($36|0)==(256); + if ($exitcond) { + break; + } else { + $i$15 = $36; + } + } + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($h,$s) { + $h = $h|0; + $s = $s|0; + var $$0 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $check = 0, $u = 0, $v = 0, $v3 = 0, $vxx = 0, label = 0; + var sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 208|0; + $u = sp + 160|0; + $v = sp + 120|0; + $v3 = sp + 80|0; + $vxx = sp + 40|0; + $check = sp; + $0 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_frombytes($0,$s); + $1 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($1); + _crypto_sign_ed25519_ref10_fe_sq($u,$0); + _crypto_sign_ed25519_ref10_fe_mul($v,$u,1000); + _crypto_sign_ed25519_ref10_fe_sub($u,$u,$1); + _crypto_sign_ed25519_ref10_fe_add($v,$v,$1); + _crypto_sign_ed25519_ref10_fe_sq($v3,$v); + _crypto_sign_ed25519_ref10_fe_mul($v3,$v3,$v); + _crypto_sign_ed25519_ref10_fe_sq($h,$v3); + _crypto_sign_ed25519_ref10_fe_mul($h,$h,$v); + _crypto_sign_ed25519_ref10_fe_mul($h,$h,$u); + _crypto_sign_ed25519_ref10_fe_pow22523($h,$h); + _crypto_sign_ed25519_ref10_fe_mul($h,$h,$v3); + _crypto_sign_ed25519_ref10_fe_mul($h,$h,$u); + _crypto_sign_ed25519_ref10_fe_sq($vxx,$h); + _crypto_sign_ed25519_ref10_fe_mul($vxx,$vxx,$v); + _crypto_sign_ed25519_ref10_fe_sub($check,$vxx,$u); + $2 = (_crypto_sign_ed25519_ref10_fe_isnonzero($check)|0); + $3 = ($2|0)==(0); + do { + if (!($3)) { + _crypto_sign_ed25519_ref10_fe_add($check,$vxx,$u); + $4 = (_crypto_sign_ed25519_ref10_fe_isnonzero($check)|0); + $5 = ($4|0)==(0); + if ($5) { + _crypto_sign_ed25519_ref10_fe_mul($h,$h,1040); + break; + } else { + $$0 = -1; + STACKTOP = sp;return ($$0|0); + } + } + } while(0); + $6 = (_crypto_sign_ed25519_ref10_fe_isnegative($h)|0); + $7 = (($s) + 31|0); + $8 = HEAP8[$7>>0]|0; + $9 = $8&255; + $10 = $9 >>> 7; + $11 = ($6|0)==($10|0); + if ($11) { + _crypto_sign_ed25519_ref10_fe_neg($h,$h); + } + $12 = (($h) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($12,$h,$0); + $$0 = 0; + STACKTOP = sp;return ($$0|0); +} +function _crypto_sign_ed25519_ref10_ge_madd($r,$p,$q) { + $r = $r|0; + $p = $p|0; + $q = $q|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $t0 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $t0 = sp; + $0 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); + $1 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); + $2 = (($r) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($2,$r,$q); + $3 = (($q) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($1,$1,$3); + $4 = (($r) + 120|0); + $5 = (($q) + 80|0); + $6 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); + $7 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_add($t0,$7,$7); + _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($2,$t0,$4); + _crypto_sign_ed25519_ref10_fe_sub($4,$t0,$4); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_msub($r,$p,$q) { + $r = $r|0; + $p = $p|0; + $q = $q|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $t0 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $t0 = sp; + $0 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); + $1 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); + $2 = (($r) + 80|0); + $3 = (($q) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($2,$r,$3); + _crypto_sign_ed25519_ref10_fe_mul($1,$1,$q); + $4 = (($r) + 120|0); + $5 = (($q) + 80|0); + $6 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); + $7 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_add($t0,$7,$7); + _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); + _crypto_sign_ed25519_ref10_fe_sub($2,$t0,$4); + _crypto_sign_ed25519_ref10_fe_add($4,$t0,$4); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($r,$p) { + $r = $r|0; + $p = $p|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($r,$p,$0); + $1 = (($r) + 40|0); + $2 = (($p) + 40|0); + $3 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($1,$2,$3); + $4 = (($r) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$3,$0); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($r,$p) { + $r = $r|0; + $p = $p|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($r,$p,$0); + $1 = (($r) + 40|0); + $2 = (($p) + 40|0); + $3 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($1,$2,$3); + $4 = (($r) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$3,$0); + $5 = (($r) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($5,$p,$2); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p2_0($h) { + $h = $h|0; + var $0 = 0, $1 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_0($h); + $0 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_1($0); + $1 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($1); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$p) { + $r = $r|0; + $p = $p|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $t0 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $t0 = sp; + _crypto_sign_ed25519_ref10_fe_sq($r,$p); + $0 = (($r) + 80|0); + $1 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_sq($0,$1); + $2 = (($r) + 120|0); + $3 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_sq2($2,$3); + $4 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($4,$p,$1); + _crypto_sign_ed25519_ref10_fe_sq($t0,$4); + _crypto_sign_ed25519_ref10_fe_add($4,$0,$r); + _crypto_sign_ed25519_ref10_fe_sub($0,$0,$r); + _crypto_sign_ed25519_ref10_fe_sub($r,$t0,$4); + _crypto_sign_ed25519_ref10_fe_sub($2,$2,$0); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_0($h) { + $h = $h|0; + var $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_0($h); + $0 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_1($0); + $1 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($1); + $2 = (($h) + 120|0); + _crypto_sign_ed25519_ref10_fe_0($2); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_dbl($r,$p) { + $r = $r|0; + $p = $p|0; + var $q = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $q = sp; + _crypto_sign_ed25519_ref10_ge_p3_to_p2($q,$p); + _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$q); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_to_cached($r,$p) { + $r = $r|0; + $p = $p|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); + $1 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); + $2 = (($r) + 80|0); + $3 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_copy($2,$3); + $4 = (($r) + 120|0); + $5 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,1080); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_to_p2($r,$p) { + $r = $r|0; + $p = $p|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_copy($r,$p); + $0 = (($r) + 40|0); + $1 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_copy($0,$1); + $2 = (($r) + 80|0); + $3 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_copy($2,$3); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_tobytes($s,$h) { + $s = $s|0; + $h = $h|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $recip = 0, $x = 0, $y = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $recip = sp + 80|0; + $x = sp + 40|0; + $y = sp; + $0 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_invert($recip,$0); + _crypto_sign_ed25519_ref10_fe_mul($x,$h,$recip); + $1 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($y,$1,$recip); + _crypto_sign_ed25519_ref10_fe_tobytes($s,$y); + $2 = (_crypto_sign_ed25519_ref10_fe_isnegative($x)|0); + $3 = $2 << 7; + $4 = (($s) + 31|0); + $5 = HEAP8[$4>>0]|0; + $6 = $5&255; + $7 = $6 ^ $3; + $8 = $7&255; + HEAP8[$4>>0] = $8; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_precomp_0($h) { + $h = $h|0; + var $0 = 0, $1 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_1($h); + $0 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_1($0); + $1 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_0($1); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_scalarmult_base($h,$a) { + $h = $h|0; + $a = $a|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $carry$04 = 0, $e = 0, $exitcond = 0, $exitcond7 = 0; + var $i$06 = 0, $i$15 = 0, $i$23 = 0, $i$32 = 0, $r = 0, $s = 0, $sext = 0, $sext1 = 0, $t = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 464|0; + $e = sp + 400|0; + $r = sp + 240|0; + $s = sp + 120|0; + $t = sp; + $i$06 = 0; + while(1) { + $0 = (($a) + ($i$06)|0); + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = $2 & 15; + $4 = $3&255; + $5 = $i$06 << 1; + $6 = (($e) + ($5)|0); + HEAP8[$6>>0] = $4; + $7 = HEAP8[$0>>0]|0; + $8 = ($7&255) >>> 4; + $9 = $5 | 1; + $10 = (($e) + ($9)|0); + HEAP8[$10>>0] = $8; + $11 = (($i$06) + 1)|0; + $exitcond7 = ($11|0)==(32); + if ($exitcond7) { + $carry$04 = 0;$i$15 = 0; + break; + } else { + $i$06 = $11; + } + } + while(1) { + $12 = (($e) + ($i$15)|0); + $13 = HEAP8[$12>>0]|0; + $14 = $13&255; + $15 = (($14) + ($carry$04))|0; + $sext = $15 << 24; + $sext1 = (($sext) + 134217728)|0; + $16 = $sext1 >> 28; + $17 = $16 << 4; + $18 = (($15) - ($17))|0; + $19 = $18&255; + HEAP8[$12>>0] = $19; + $20 = (($i$15) + 1)|0; + $exitcond = ($20|0)==(63); + if ($exitcond) { + break; + } else { + $carry$04 = $16;$i$15 = $20; + } + } + $21 = (($e) + 63|0); + $22 = HEAP8[$21>>0]|0; + $23 = $22&255; + $24 = (($23) + ($16))|0; + $25 = $24&255; + HEAP8[$21>>0] = $25; + _crypto_sign_ed25519_ref10_ge_p3_0($h); + $i$23 = 1; + while(1) { + $26 = (($i$23|0) / 2)&-1; + $27 = (($e) + ($i$23)|0); + $28 = HEAP8[$27>>0]|0; + _select($t,$26,$28); + _crypto_sign_ed25519_ref10_ge_madd($r,$h,$t); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); + $29 = (($i$23) + 2)|0; + $30 = ($29|0)<(64); + if ($30) { + $i$23 = $29; + } else { + break; + } + } + _crypto_sign_ed25519_ref10_ge_p3_dbl($r,$h); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); + _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); + _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); + _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); + $i$32 = 0; + while(1) { + $31 = (($i$32|0) / 2)&-1; + $32 = (($e) + ($i$32)|0); + $33 = HEAP8[$32>>0]|0; + _select($t,$31,$33); + _crypto_sign_ed25519_ref10_ge_madd($r,$h,$t); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); + $34 = (($i$32) + 2)|0; + $35 = ($34|0)<(64); + if ($35) { + $i$32 = $34; + } else { + break; + } + } + STACKTOP = sp;return; +} +function _select($t,$pos,$b) { + $t = $t|0; + $pos = $pos|0; + $b = $b|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $minust = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $minust = sp; + $0 = (_negative($b)|0); + $1 = $b << 24 >> 24; + $2 = $0&255; + $3 = (0 - ($2))|0; + $4 = $1 & $3; + $5 = $4 << 1; + $6 = (($1) - ($5))|0; + $7 = $6&255; + _crypto_sign_ed25519_ref10_ge_precomp_0($t); + $8 = (1120 + (($pos*960)|0)|0); + $9 = (_equal($7,1)|0); + _cmov($t,$8,$9); + $10 = ((1120 + (($pos*960)|0)|0) + 120|0); + $11 = (_equal($7,2)|0); + _cmov($t,$10,$11); + $12 = ((1120 + (($pos*960)|0)|0) + 240|0); + $13 = (_equal($7,3)|0); + _cmov($t,$12,$13); + $14 = ((1120 + (($pos*960)|0)|0) + 360|0); + $15 = (_equal($7,4)|0); + _cmov($t,$14,$15); + $16 = ((1120 + (($pos*960)|0)|0) + 480|0); + $17 = (_equal($7,5)|0); + _cmov($t,$16,$17); + $18 = ((1120 + (($pos*960)|0)|0) + 600|0); + $19 = (_equal($7,6)|0); + _cmov($t,$18,$19); + $20 = ((1120 + (($pos*960)|0)|0) + 720|0); + $21 = (_equal($7,7)|0); + _cmov($t,$20,$21); + $22 = ((1120 + (($pos*960)|0)|0) + 840|0); + $23 = (_equal($7,8)|0); + _cmov($t,$22,$23); + $24 = (($t) + 40|0); + _crypto_sign_ed25519_ref10_fe_copy($minust,$24); + $25 = (($minust) + 40|0); + _crypto_sign_ed25519_ref10_fe_copy($25,$t); + $26 = (($minust) + 80|0); + $27 = (($t) + 80|0); + _crypto_sign_ed25519_ref10_fe_neg($26,$27); + _cmov($t,$minust,$0); + STACKTOP = sp;return; +} +function _negative($b) { + $b = $b|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $b << 24 >> 24; + $1 = ($0|0)<(0); + $2 = $1 << 31 >> 31; + $3 = (_bitshift64Lshr(($0|0),($2|0),63)|0); + $4 = tempRet0; + $5 = $3&255; + STACKTOP = sp;return ($5|0); +} +function _equal($b,$c) { + $b = $b|0; + $c = $c|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $c ^ $b; + $1 = $0&255; + $2 = (($1) + -1)|0; + $3 = $2 >>> 31; + $4 = $3&255; + STACKTOP = sp;return ($4|0); +} +function _cmov($t,$u,$b) { + $t = $t|0; + $u = $u|0; + $b = $b|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $b&255; + _crypto_sign_ed25519_ref10_fe_cmov($t,$u,$0); + $1 = (($t) + 40|0); + $2 = (($u) + 40|0); + _crypto_sign_ed25519_ref10_fe_cmov($1,$2,$0); + $3 = (($t) + 80|0); + $4 = (($u) + 80|0); + _crypto_sign_ed25519_ref10_fe_cmov($3,$4,$0); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_sub($r,$p,$q) { + $r = $r|0; + $p = $p|0; + $q = $q|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $t0 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $t0 = sp; + $0 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); + $1 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); + $2 = (($r) + 80|0); + $3 = (($q) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($2,$r,$3); + _crypto_sign_ed25519_ref10_fe_mul($1,$1,$q); + $4 = (($r) + 120|0); + $5 = (($q) + 120|0); + $6 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); + $7 = (($p) + 80|0); + $8 = (($q) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($r,$7,$8); + _crypto_sign_ed25519_ref10_fe_add($t0,$r,$r); + _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); + _crypto_sign_ed25519_ref10_fe_sub($2,$t0,$4); + _crypto_sign_ed25519_ref10_fe_add($4,$t0,$4); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_tobytes($s,$h) { + $s = $s|0; + $h = $h|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $recip = 0, $x = 0, $y = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $recip = sp + 80|0; + $x = sp + 40|0; + $y = sp; + $0 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_invert($recip,$0); + _crypto_sign_ed25519_ref10_fe_mul($x,$h,$recip); + $1 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($y,$1,$recip); + _crypto_sign_ed25519_ref10_fe_tobytes($s,$y); + $2 = (_crypto_sign_ed25519_ref10_fe_isnegative($x)|0); + $3 = $2 << 7; + $4 = (($s) + 31|0); + $5 = HEAP8[$4>>0]|0; + $6 = $5&255; + $7 = $6 ^ $3; + $8 = $7&255; + HEAP8[$4>>0] = $8; + STACKTOP = sp;return; +} +function _crypto_sign_edwards25519sha512batch_ref10_open($m,$mlen,$sm,$0,$1,$pk) { + $m = $m|0; + $mlen = $mlen|0; + $sm = $sm|0; + $0 = $0|0; + $1 = $1|0; + $pk = $pk|0; + var $$0 = 0, $$sum = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $A = 0, $R = 0, $h = 0, $pkcopy1 = 0, $rcheck = 0, $rcopy = 0, $scopy = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 480|0; + $pkcopy1 = sp + 440|0; + $rcopy = sp + 408|0; + $scopy = sp + 376|0; + $h = sp + 312|0; + $rcheck = sp + 280|0; + $A = sp + 120|0; + $R = sp; + $2 = ($1>>>0)<(0); + $3 = ($0>>>0)<(64); + $4 = ($1|0)==(0); + $5 = $4 & $3; + $6 = $2 | $5; + if (!($6)) { + $7 = (($sm) + 63|0); + $8 = HEAP8[$7>>0]|0; + $9 = ($8&255)>(31); + if (!($9)) { + $10 = (_crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($A,$pk)|0); + $11 = ($10|0)==(0); + if ($11) { + dest=$pkcopy1+0|0; src=$pk+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + dest=$rcopy+0|0; src=$sm+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $12 = (($sm) + 32|0); + dest=$scopy+0|0; src=$12+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _memmove(($m|0),($sm|0),($0|0))|0; + $13 = (($m) + 32|0); + dest=$13+0|0; src=$pkcopy1+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + (_crypto_hash_sha512_ref($h,$m,$0,$1)|0); + _crypto_sign_ed25519_ref10_sc_reduce($h); + _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($R,$h,$A,$scopy); + _crypto_sign_ed25519_ref10_ge_tobytes($rcheck,$R); + $14 = (_crypto_verify_32_ref($rcheck,$rcopy)|0); + $15 = ($14|0)==(0); + if ($15) { + $16 = (($m) + 64|0); + $17 = (_i64Add(($0|0),($1|0),-64,-1)|0); + $18 = tempRet0; + _memmove(($m|0),($16|0),($17|0))|0; + $$sum = (($0) + -64)|0; + $19 = (($m) + ($$sum)|0); + dest=$19+0|0; stop=dest+64|0; do { HEAP8[dest>>0]=0|0; dest=dest+1|0; } while ((dest|0) < (stop|0)); + $20 = $mlen; + $21 = $20; + HEAP32[$21>>2] = $17; + $22 = (($20) + 4)|0; + $23 = $22; + HEAP32[$23>>2] = $18; + $$0 = 0; + STACKTOP = sp;return ($$0|0); + } + } + } + } + $24 = $mlen; + $25 = $24; + HEAP32[$25>>2] = -1; + $26 = (($24) + 4)|0; + $27 = $26; + HEAP32[$27>>2] = -1; + _memset(($m|0),0,($0|0))|0; + $$0 = -1; + STACKTOP = sp;return ($$0|0); +} +function _crypto_sign_ed25519_ref10_sc_muladd($s,$a,$b,$c) { + $s = $s|0; + $a = $a|0; + $b = $b|0; + $c = $c|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; + var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; + var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; + var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; + var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; + var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; + var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0; + var $1123 = 0, $1124 = 0, $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0; + var $1141 = 0, $1142 = 0, $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0; + var $116 = 0, $1160 = 0, $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0; + var $1178 = 0, $1179 = 0, $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0; + var $1196 = 0, $1197 = 0, $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0; + var $1213 = 0, $1214 = 0, $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0; + var $1231 = 0, $1232 = 0, $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0; + var $125 = 0, $1250 = 0, $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0; + var $1268 = 0, $1269 = 0, $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0; + var $1286 = 0, $1287 = 0, $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0; + var $1303 = 0, $1304 = 0, $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0; + var $1321 = 0, $1322 = 0, $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0; + var $134 = 0, $1340 = 0, $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0; + var $1358 = 0, $1359 = 0, $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0; + var $1376 = 0, $1377 = 0, $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0; + var $1394 = 0, $1395 = 0, $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0; + var $1411 = 0, $1412 = 0, $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0; + var $143 = 0, $1430 = 0, $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0; + var $1448 = 0, $1449 = 0, $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0; + var $1466 = 0, $1467 = 0, $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0; + var $1484 = 0, $1485 = 0, $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0; + var $1501 = 0, $1502 = 0, $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0; + var $152 = 0, $1520 = 0, $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0; + var $1538 = 0, $1539 = 0, $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0; + var $1556 = 0, $1557 = 0, $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0; + var $1574 = 0, $1575 = 0, $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0; + var $1592 = 0, $1593 = 0, $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0; + var $161 = 0, $1610 = 0, $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0; + var $1628 = 0, $1629 = 0, $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0; + var $1646 = 0, $1647 = 0, $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0; + var $1664 = 0, $1665 = 0, $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0; + var $1682 = 0, $1683 = 0, $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0; + var $170 = 0, $1700 = 0, $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0; + var $1718 = 0, $1719 = 0, $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0; + var $1736 = 0, $1737 = 0, $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0; + var $1754 = 0, $1755 = 0, $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0; + var $1772 = 0, $1773 = 0, $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0; + var $1790 = 0, $1791 = 0, $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0; + var $1808 = 0, $1809 = 0, $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0; + var $1826 = 0, $1827 = 0, $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0; + var $1844 = 0, $1845 = 0, $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0; + var $1862 = 0, $1863 = 0, $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $188 = 0, $189 = 0; + var $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0; + var $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0; + var $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0; + var $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0; + var $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0; + var $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0; + var $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0; + var $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0; + var $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0; + var $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0; + var $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0; + var $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0; + var $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0; + var $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0; + var $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0; + var $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0; + var $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0; + var $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0; + var $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0; + var $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0; + var $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0; + var $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0; + var $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0; + var $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0; + var $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0; + var $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0; + var $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0; + var $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0; + var $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0; + var $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0; + var $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0; + var $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0; + var $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0; + var $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0; + var $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0; + var $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0; + var $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0; + var $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0; + var $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0; + var $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0; + var $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0; + var $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0; + var $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0; + var $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0; + var $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + $0 = (_load_347($a)|0); + $1 = tempRet0; + $2 = $0 & 2097151; + $3 = (($a) + 2|0); + $4 = (_load_448($3)|0); + $5 = tempRet0; + $6 = (_bitshift64Lshr(($4|0),($5|0),5)|0); + $7 = tempRet0; + $8 = $6 & 2097151; + $9 = (($a) + 5|0); + $10 = (_load_347($9)|0); + $11 = tempRet0; + $12 = (_bitshift64Lshr(($10|0),($11|0),2)|0); + $13 = tempRet0; + $14 = $12 & 2097151; + $15 = (($a) + 7|0); + $16 = (_load_448($15)|0); + $17 = tempRet0; + $18 = (_bitshift64Lshr(($16|0),($17|0),7)|0); + $19 = tempRet0; + $20 = $18 & 2097151; + $21 = (($a) + 10|0); + $22 = (_load_448($21)|0); + $23 = tempRet0; + $24 = (_bitshift64Lshr(($22|0),($23|0),4)|0); + $25 = tempRet0; + $26 = $24 & 2097151; + $27 = (($a) + 13|0); + $28 = (_load_347($27)|0); + $29 = tempRet0; + $30 = (_bitshift64Lshr(($28|0),($29|0),1)|0); + $31 = tempRet0; + $32 = $30 & 2097151; + $33 = (($a) + 15|0); + $34 = (_load_448($33)|0); + $35 = tempRet0; + $36 = (_bitshift64Lshr(($34|0),($35|0),6)|0); + $37 = tempRet0; + $38 = $36 & 2097151; + $39 = (($a) + 18|0); + $40 = (_load_347($39)|0); + $41 = tempRet0; + $42 = (_bitshift64Lshr(($40|0),($41|0),3)|0); + $43 = tempRet0; + $44 = $42 & 2097151; + $45 = (($a) + 21|0); + $46 = (_load_347($45)|0); + $47 = tempRet0; + $48 = $46 & 2097151; + $49 = (($a) + 23|0); + $50 = (_load_448($49)|0); + $51 = tempRet0; + $52 = (_bitshift64Lshr(($50|0),($51|0),5)|0); + $53 = tempRet0; + $54 = $52 & 2097151; + $55 = (($a) + 26|0); + $56 = (_load_347($55)|0); + $57 = tempRet0; + $58 = (_bitshift64Lshr(($56|0),($57|0),2)|0); + $59 = tempRet0; + $60 = $58 & 2097151; + $61 = (($a) + 28|0); + $62 = (_load_448($61)|0); + $63 = tempRet0; + $64 = (_bitshift64Lshr(($62|0),($63|0),7)|0); + $65 = tempRet0; + $66 = (_load_347($b)|0); + $67 = tempRet0; + $68 = $66 & 2097151; + $69 = (($b) + 2|0); + $70 = (_load_448($69)|0); + $71 = tempRet0; + $72 = (_bitshift64Lshr(($70|0),($71|0),5)|0); + $73 = tempRet0; + $74 = $72 & 2097151; + $75 = (($b) + 5|0); + $76 = (_load_347($75)|0); + $77 = tempRet0; + $78 = (_bitshift64Lshr(($76|0),($77|0),2)|0); + $79 = tempRet0; + $80 = $78 & 2097151; + $81 = (($b) + 7|0); + $82 = (_load_448($81)|0); + $83 = tempRet0; + $84 = (_bitshift64Lshr(($82|0),($83|0),7)|0); + $85 = tempRet0; + $86 = $84 & 2097151; + $87 = (($b) + 10|0); + $88 = (_load_448($87)|0); + $89 = tempRet0; + $90 = (_bitshift64Lshr(($88|0),($89|0),4)|0); + $91 = tempRet0; + $92 = $90 & 2097151; + $93 = (($b) + 13|0); + $94 = (_load_347($93)|0); + $95 = tempRet0; + $96 = (_bitshift64Lshr(($94|0),($95|0),1)|0); + $97 = tempRet0; + $98 = $96 & 2097151; + $99 = (($b) + 15|0); + $100 = (_load_448($99)|0); + $101 = tempRet0; + $102 = (_bitshift64Lshr(($100|0),($101|0),6)|0); + $103 = tempRet0; + $104 = $102 & 2097151; + $105 = (($b) + 18|0); + $106 = (_load_347($105)|0); + $107 = tempRet0; + $108 = (_bitshift64Lshr(($106|0),($107|0),3)|0); + $109 = tempRet0; + $110 = $108 & 2097151; + $111 = (($b) + 21|0); + $112 = (_load_347($111)|0); + $113 = tempRet0; + $114 = $112 & 2097151; + $115 = (($b) + 23|0); + $116 = (_load_448($115)|0); + $117 = tempRet0; + $118 = (_bitshift64Lshr(($116|0),($117|0),5)|0); + $119 = tempRet0; + $120 = $118 & 2097151; + $121 = (($b) + 26|0); + $122 = (_load_347($121)|0); + $123 = tempRet0; + $124 = (_bitshift64Lshr(($122|0),($123|0),2)|0); + $125 = tempRet0; + $126 = $124 & 2097151; + $127 = (($b) + 28|0); + $128 = (_load_448($127)|0); + $129 = tempRet0; + $130 = (_bitshift64Lshr(($128|0),($129|0),7)|0); + $131 = tempRet0; + $132 = (_load_347($c)|0); + $133 = tempRet0; + $134 = $132 & 2097151; + $135 = (($c) + 2|0); + $136 = (_load_448($135)|0); + $137 = tempRet0; + $138 = (_bitshift64Lshr(($136|0),($137|0),5)|0); + $139 = tempRet0; + $140 = $138 & 2097151; + $141 = (($c) + 5|0); + $142 = (_load_347($141)|0); + $143 = tempRet0; + $144 = (_bitshift64Lshr(($142|0),($143|0),2)|0); + $145 = tempRet0; + $146 = $144 & 2097151; + $147 = (($c) + 7|0); + $148 = (_load_448($147)|0); + $149 = tempRet0; + $150 = (_bitshift64Lshr(($148|0),($149|0),7)|0); + $151 = tempRet0; + $152 = $150 & 2097151; + $153 = (($c) + 10|0); + $154 = (_load_448($153)|0); + $155 = tempRet0; + $156 = (_bitshift64Lshr(($154|0),($155|0),4)|0); + $157 = tempRet0; + $158 = $156 & 2097151; + $159 = (($c) + 13|0); + $160 = (_load_347($159)|0); + $161 = tempRet0; + $162 = (_bitshift64Lshr(($160|0),($161|0),1)|0); + $163 = tempRet0; + $164 = $162 & 2097151; + $165 = (($c) + 15|0); + $166 = (_load_448($165)|0); + $167 = tempRet0; + $168 = (_bitshift64Lshr(($166|0),($167|0),6)|0); + $169 = tempRet0; + $170 = $168 & 2097151; + $171 = (($c) + 18|0); + $172 = (_load_347($171)|0); + $173 = tempRet0; + $174 = (_bitshift64Lshr(($172|0),($173|0),3)|0); + $175 = tempRet0; + $176 = $174 & 2097151; + $177 = (($c) + 21|0); + $178 = (_load_347($177)|0); + $179 = tempRet0; + $180 = $178 & 2097151; + $181 = (($c) + 23|0); + $182 = (_load_448($181)|0); + $183 = tempRet0; + $184 = (_bitshift64Lshr(($182|0),($183|0),5)|0); + $185 = tempRet0; + $186 = $184 & 2097151; + $187 = (($c) + 26|0); + $188 = (_load_347($187)|0); + $189 = tempRet0; + $190 = (_bitshift64Lshr(($188|0),($189|0),2)|0); + $191 = tempRet0; + $192 = $190 & 2097151; + $193 = (($c) + 28|0); + $194 = (_load_448($193)|0); + $195 = tempRet0; + $196 = (_bitshift64Lshr(($194|0),($195|0),7)|0); + $197 = tempRet0; + $198 = (___muldi3(($68|0),0,($2|0),0)|0); + $199 = tempRet0; + $200 = (_i64Add(($134|0),0,($198|0),($199|0))|0); + $201 = tempRet0; + $202 = (___muldi3(($74|0),0,($2|0),0)|0); + $203 = tempRet0; + $204 = (___muldi3(($68|0),0,($8|0),0)|0); + $205 = tempRet0; + $206 = (___muldi3(($80|0),0,($2|0),0)|0); + $207 = tempRet0; + $208 = (___muldi3(($74|0),0,($8|0),0)|0); + $209 = tempRet0; + $210 = (___muldi3(($68|0),0,($14|0),0)|0); + $211 = tempRet0; + $212 = (_i64Add(($208|0),($209|0),($210|0),($211|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($212|0),($213|0),($206|0),($207|0))|0); + $215 = tempRet0; + $216 = (_i64Add(($214|0),($215|0),($146|0),0)|0); + $217 = tempRet0; + $218 = (___muldi3(($86|0),0,($2|0),0)|0); + $219 = tempRet0; + $220 = (___muldi3(($80|0),0,($8|0),0)|0); + $221 = tempRet0; + $222 = (___muldi3(($74|0),0,($14|0),0)|0); + $223 = tempRet0; + $224 = (___muldi3(($68|0),0,($20|0),0)|0); + $225 = tempRet0; + $226 = (___muldi3(($92|0),0,($2|0),0)|0); + $227 = tempRet0; + $228 = (___muldi3(($86|0),0,($8|0),0)|0); + $229 = tempRet0; + $230 = (___muldi3(($80|0),0,($14|0),0)|0); + $231 = tempRet0; + $232 = (___muldi3(($74|0),0,($20|0),0)|0); + $233 = tempRet0; + $234 = (___muldi3(($68|0),0,($26|0),0)|0); + $235 = tempRet0; + $236 = (_i64Add(($232|0),($233|0),($234|0),($235|0))|0); + $237 = tempRet0; + $238 = (_i64Add(($236|0),($237|0),($230|0),($231|0))|0); + $239 = tempRet0; + $240 = (_i64Add(($238|0),($239|0),($228|0),($229|0))|0); + $241 = tempRet0; + $242 = (_i64Add(($240|0),($241|0),($226|0),($227|0))|0); + $243 = tempRet0; + $244 = (_i64Add(($242|0),($243|0),($158|0),0)|0); + $245 = tempRet0; + $246 = (___muldi3(($98|0),0,($2|0),0)|0); + $247 = tempRet0; + $248 = (___muldi3(($92|0),0,($8|0),0)|0); + $249 = tempRet0; + $250 = (___muldi3(($86|0),0,($14|0),0)|0); + $251 = tempRet0; + $252 = (___muldi3(($80|0),0,($20|0),0)|0); + $253 = tempRet0; + $254 = (___muldi3(($74|0),0,($26|0),0)|0); + $255 = tempRet0; + $256 = (___muldi3(($68|0),0,($32|0),0)|0); + $257 = tempRet0; + $258 = (___muldi3(($104|0),0,($2|0),0)|0); + $259 = tempRet0; + $260 = (___muldi3(($98|0),0,($8|0),0)|0); + $261 = tempRet0; + $262 = (___muldi3(($92|0),0,($14|0),0)|0); + $263 = tempRet0; + $264 = (___muldi3(($86|0),0,($20|0),0)|0); + $265 = tempRet0; + $266 = (___muldi3(($80|0),0,($26|0),0)|0); + $267 = tempRet0; + $268 = (___muldi3(($74|0),0,($32|0),0)|0); + $269 = tempRet0; + $270 = (___muldi3(($68|0),0,($38|0),0)|0); + $271 = tempRet0; + $272 = (_i64Add(($268|0),($269|0),($270|0),($271|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($266|0),($267|0))|0); + $275 = tempRet0; + $276 = (_i64Add(($274|0),($275|0),($264|0),($265|0))|0); + $277 = tempRet0; + $278 = (_i64Add(($276|0),($277|0),($262|0),($263|0))|0); + $279 = tempRet0; + $280 = (_i64Add(($278|0),($279|0),($260|0),($261|0))|0); + $281 = tempRet0; + $282 = (_i64Add(($280|0),($281|0),($258|0),($259|0))|0); + $283 = tempRet0; + $284 = (_i64Add(($282|0),($283|0),($170|0),0)|0); + $285 = tempRet0; + $286 = (___muldi3(($110|0),0,($2|0),0)|0); + $287 = tempRet0; + $288 = (___muldi3(($104|0),0,($8|0),0)|0); + $289 = tempRet0; + $290 = (___muldi3(($98|0),0,($14|0),0)|0); + $291 = tempRet0; + $292 = (___muldi3(($92|0),0,($20|0),0)|0); + $293 = tempRet0; + $294 = (___muldi3(($86|0),0,($26|0),0)|0); + $295 = tempRet0; + $296 = (___muldi3(($80|0),0,($32|0),0)|0); + $297 = tempRet0; + $298 = (___muldi3(($74|0),0,($38|0),0)|0); + $299 = tempRet0; + $300 = (___muldi3(($68|0),0,($44|0),0)|0); + $301 = tempRet0; + $302 = (___muldi3(($114|0),0,($2|0),0)|0); + $303 = tempRet0; + $304 = (___muldi3(($110|0),0,($8|0),0)|0); + $305 = tempRet0; + $306 = (___muldi3(($104|0),0,($14|0),0)|0); + $307 = tempRet0; + $308 = (___muldi3(($98|0),0,($20|0),0)|0); + $309 = tempRet0; + $310 = (___muldi3(($92|0),0,($26|0),0)|0); + $311 = tempRet0; + $312 = (___muldi3(($86|0),0,($32|0),0)|0); + $313 = tempRet0; + $314 = (___muldi3(($80|0),0,($38|0),0)|0); + $315 = tempRet0; + $316 = (___muldi3(($74|0),0,($44|0),0)|0); + $317 = tempRet0; + $318 = (___muldi3(($68|0),0,($48|0),0)|0); + $319 = tempRet0; + $320 = (_i64Add(($316|0),($317|0),($318|0),($319|0))|0); + $321 = tempRet0; + $322 = (_i64Add(($320|0),($321|0),($314|0),($315|0))|0); + $323 = tempRet0; + $324 = (_i64Add(($322|0),($323|0),($312|0),($313|0))|0); + $325 = tempRet0; + $326 = (_i64Add(($324|0),($325|0),($310|0),($311|0))|0); + $327 = tempRet0; + $328 = (_i64Add(($326|0),($327|0),($308|0),($309|0))|0); + $329 = tempRet0; + $330 = (_i64Add(($328|0),($329|0),($306|0),($307|0))|0); + $331 = tempRet0; + $332 = (_i64Add(($330|0),($331|0),($302|0),($303|0))|0); + $333 = tempRet0; + $334 = (_i64Add(($332|0),($333|0),($304|0),($305|0))|0); + $335 = tempRet0; + $336 = (_i64Add(($334|0),($335|0),($180|0),0)|0); + $337 = tempRet0; + $338 = (___muldi3(($120|0),0,($2|0),0)|0); + $339 = tempRet0; + $340 = (___muldi3(($114|0),0,($8|0),0)|0); + $341 = tempRet0; + $342 = (___muldi3(($110|0),0,($14|0),0)|0); + $343 = tempRet0; + $344 = (___muldi3(($104|0),0,($20|0),0)|0); + $345 = tempRet0; + $346 = (___muldi3(($98|0),0,($26|0),0)|0); + $347 = tempRet0; + $348 = (___muldi3(($92|0),0,($32|0),0)|0); + $349 = tempRet0; + $350 = (___muldi3(($86|0),0,($38|0),0)|0); + $351 = tempRet0; + $352 = (___muldi3(($80|0),0,($44|0),0)|0); + $353 = tempRet0; + $354 = (___muldi3(($74|0),0,($48|0),0)|0); + $355 = tempRet0; + $356 = (___muldi3(($68|0),0,($54|0),0)|0); + $357 = tempRet0; + $358 = (___muldi3(($126|0),0,($2|0),0)|0); + $359 = tempRet0; + $360 = (___muldi3(($120|0),0,($8|0),0)|0); + $361 = tempRet0; + $362 = (___muldi3(($114|0),0,($14|0),0)|0); + $363 = tempRet0; + $364 = (___muldi3(($110|0),0,($20|0),0)|0); + $365 = tempRet0; + $366 = (___muldi3(($104|0),0,($26|0),0)|0); + $367 = tempRet0; + $368 = (___muldi3(($98|0),0,($32|0),0)|0); + $369 = tempRet0; + $370 = (___muldi3(($92|0),0,($38|0),0)|0); + $371 = tempRet0; + $372 = (___muldi3(($86|0),0,($44|0),0)|0); + $373 = tempRet0; + $374 = (___muldi3(($80|0),0,($48|0),0)|0); + $375 = tempRet0; + $376 = (___muldi3(($74|0),0,($54|0),0)|0); + $377 = tempRet0; + $378 = (___muldi3(($68|0),0,($60|0),0)|0); + $379 = tempRet0; + $380 = (_i64Add(($376|0),($377|0),($378|0),($379|0))|0); + $381 = tempRet0; + $382 = (_i64Add(($380|0),($381|0),($374|0),($375|0))|0); + $383 = tempRet0; + $384 = (_i64Add(($382|0),($383|0),($372|0),($373|0))|0); + $385 = tempRet0; + $386 = (_i64Add(($384|0),($385|0),($370|0),($371|0))|0); + $387 = tempRet0; + $388 = (_i64Add(($386|0),($387|0),($368|0),($369|0))|0); + $389 = tempRet0; + $390 = (_i64Add(($388|0),($389|0),($366|0),($367|0))|0); + $391 = tempRet0; + $392 = (_i64Add(($390|0),($391|0),($362|0),($363|0))|0); + $393 = tempRet0; + $394 = (_i64Add(($392|0),($393|0),($364|0),($365|0))|0); + $395 = tempRet0; + $396 = (_i64Add(($394|0),($395|0),($360|0),($361|0))|0); + $397 = tempRet0; + $398 = (_i64Add(($396|0),($397|0),($358|0),($359|0))|0); + $399 = tempRet0; + $400 = (_i64Add(($398|0),($399|0),($192|0),0)|0); + $401 = tempRet0; + $402 = (___muldi3(($130|0),($131|0),($2|0),0)|0); + $403 = tempRet0; + $404 = (___muldi3(($126|0),0,($8|0),0)|0); + $405 = tempRet0; + $406 = (___muldi3(($120|0),0,($14|0),0)|0); + $407 = tempRet0; + $408 = (___muldi3(($114|0),0,($20|0),0)|0); + $409 = tempRet0; + $410 = (___muldi3(($110|0),0,($26|0),0)|0); + $411 = tempRet0; + $412 = (___muldi3(($104|0),0,($32|0),0)|0); + $413 = tempRet0; + $414 = (___muldi3(($98|0),0,($38|0),0)|0); + $415 = tempRet0; + $416 = (___muldi3(($92|0),0,($44|0),0)|0); + $417 = tempRet0; + $418 = (___muldi3(($86|0),0,($48|0),0)|0); + $419 = tempRet0; + $420 = (___muldi3(($80|0),0,($54|0),0)|0); + $421 = tempRet0; + $422 = (___muldi3(($74|0),0,($60|0),0)|0); + $423 = tempRet0; + $424 = (___muldi3(($68|0),0,($64|0),($65|0))|0); + $425 = tempRet0; + $426 = (___muldi3(($130|0),($131|0),($8|0),0)|0); + $427 = tempRet0; + $428 = (___muldi3(($126|0),0,($14|0),0)|0); + $429 = tempRet0; + $430 = (___muldi3(($120|0),0,($20|0),0)|0); + $431 = tempRet0; + $432 = (___muldi3(($114|0),0,($26|0),0)|0); + $433 = tempRet0; + $434 = (___muldi3(($110|0),0,($32|0),0)|0); + $435 = tempRet0; + $436 = (___muldi3(($104|0),0,($38|0),0)|0); + $437 = tempRet0; + $438 = (___muldi3(($98|0),0,($44|0),0)|0); + $439 = tempRet0; + $440 = (___muldi3(($92|0),0,($48|0),0)|0); + $441 = tempRet0; + $442 = (___muldi3(($86|0),0,($54|0),0)|0); + $443 = tempRet0; + $444 = (___muldi3(($80|0),0,($60|0),0)|0); + $445 = tempRet0; + $446 = (___muldi3(($74|0),0,($64|0),($65|0))|0); + $447 = tempRet0; + $448 = (_i64Add(($444|0),($445|0),($446|0),($447|0))|0); + $449 = tempRet0; + $450 = (_i64Add(($448|0),($449|0),($442|0),($443|0))|0); + $451 = tempRet0; + $452 = (_i64Add(($450|0),($451|0),($440|0),($441|0))|0); + $453 = tempRet0; + $454 = (_i64Add(($452|0),($453|0),($438|0),($439|0))|0); + $455 = tempRet0; + $456 = (_i64Add(($454|0),($455|0),($436|0),($437|0))|0); + $457 = tempRet0; + $458 = (_i64Add(($456|0),($457|0),($432|0),($433|0))|0); + $459 = tempRet0; + $460 = (_i64Add(($458|0),($459|0),($434|0),($435|0))|0); + $461 = tempRet0; + $462 = (_i64Add(($460|0),($461|0),($430|0),($431|0))|0); + $463 = tempRet0; + $464 = (_i64Add(($462|0),($463|0),($428|0),($429|0))|0); + $465 = tempRet0; + $466 = (_i64Add(($464|0),($465|0),($426|0),($427|0))|0); + $467 = tempRet0; + $468 = (___muldi3(($130|0),($131|0),($14|0),0)|0); + $469 = tempRet0; + $470 = (___muldi3(($126|0),0,($20|0),0)|0); + $471 = tempRet0; + $472 = (___muldi3(($120|0),0,($26|0),0)|0); + $473 = tempRet0; + $474 = (___muldi3(($114|0),0,($32|0),0)|0); + $475 = tempRet0; + $476 = (___muldi3(($110|0),0,($38|0),0)|0); + $477 = tempRet0; + $478 = (___muldi3(($104|0),0,($44|0),0)|0); + $479 = tempRet0; + $480 = (___muldi3(($98|0),0,($48|0),0)|0); + $481 = tempRet0; + $482 = (___muldi3(($92|0),0,($54|0),0)|0); + $483 = tempRet0; + $484 = (___muldi3(($86|0),0,($60|0),0)|0); + $485 = tempRet0; + $486 = (___muldi3(($80|0),0,($64|0),($65|0))|0); + $487 = tempRet0; + $488 = (___muldi3(($130|0),($131|0),($20|0),0)|0); + $489 = tempRet0; + $490 = (___muldi3(($126|0),0,($26|0),0)|0); + $491 = tempRet0; + $492 = (___muldi3(($120|0),0,($32|0),0)|0); + $493 = tempRet0; + $494 = (___muldi3(($114|0),0,($38|0),0)|0); + $495 = tempRet0; + $496 = (___muldi3(($110|0),0,($44|0),0)|0); + $497 = tempRet0; + $498 = (___muldi3(($104|0),0,($48|0),0)|0); + $499 = tempRet0; + $500 = (___muldi3(($98|0),0,($54|0),0)|0); + $501 = tempRet0; + $502 = (___muldi3(($92|0),0,($60|0),0)|0); + $503 = tempRet0; + $504 = (___muldi3(($86|0),0,($64|0),($65|0))|0); + $505 = tempRet0; + $506 = (_i64Add(($502|0),($503|0),($504|0),($505|0))|0); + $507 = tempRet0; + $508 = (_i64Add(($506|0),($507|0),($500|0),($501|0))|0); + $509 = tempRet0; + $510 = (_i64Add(($508|0),($509|0),($498|0),($499|0))|0); + $511 = tempRet0; + $512 = (_i64Add(($510|0),($511|0),($494|0),($495|0))|0); + $513 = tempRet0; + $514 = (_i64Add(($512|0),($513|0),($496|0),($497|0))|0); + $515 = tempRet0; + $516 = (_i64Add(($514|0),($515|0),($492|0),($493|0))|0); + $517 = tempRet0; + $518 = (_i64Add(($516|0),($517|0),($490|0),($491|0))|0); + $519 = tempRet0; + $520 = (_i64Add(($518|0),($519|0),($488|0),($489|0))|0); + $521 = tempRet0; + $522 = (___muldi3(($130|0),($131|0),($26|0),0)|0); + $523 = tempRet0; + $524 = (___muldi3(($126|0),0,($32|0),0)|0); + $525 = tempRet0; + $526 = (___muldi3(($120|0),0,($38|0),0)|0); + $527 = tempRet0; + $528 = (___muldi3(($114|0),0,($44|0),0)|0); + $529 = tempRet0; + $530 = (___muldi3(($110|0),0,($48|0),0)|0); + $531 = tempRet0; + $532 = (___muldi3(($104|0),0,($54|0),0)|0); + $533 = tempRet0; + $534 = (___muldi3(($98|0),0,($60|0),0)|0); + $535 = tempRet0; + $536 = (___muldi3(($92|0),0,($64|0),($65|0))|0); + $537 = tempRet0; + $538 = (___muldi3(($130|0),($131|0),($32|0),0)|0); + $539 = tempRet0; + $540 = (___muldi3(($126|0),0,($38|0),0)|0); + $541 = tempRet0; + $542 = (___muldi3(($120|0),0,($44|0),0)|0); + $543 = tempRet0; + $544 = (___muldi3(($114|0),0,($48|0),0)|0); + $545 = tempRet0; + $546 = (___muldi3(($110|0),0,($54|0),0)|0); + $547 = tempRet0; + $548 = (___muldi3(($104|0),0,($60|0),0)|0); + $549 = tempRet0; + $550 = (___muldi3(($98|0),0,($64|0),($65|0))|0); + $551 = tempRet0; + $552 = (_i64Add(($548|0),($549|0),($550|0),($551|0))|0); + $553 = tempRet0; + $554 = (_i64Add(($552|0),($553|0),($544|0),($545|0))|0); + $555 = tempRet0; + $556 = (_i64Add(($554|0),($555|0),($546|0),($547|0))|0); + $557 = tempRet0; + $558 = (_i64Add(($556|0),($557|0),($542|0),($543|0))|0); + $559 = tempRet0; + $560 = (_i64Add(($558|0),($559|0),($540|0),($541|0))|0); + $561 = tempRet0; + $562 = (_i64Add(($560|0),($561|0),($538|0),($539|0))|0); + $563 = tempRet0; + $564 = (___muldi3(($130|0),($131|0),($38|0),0)|0); + $565 = tempRet0; + $566 = (___muldi3(($126|0),0,($44|0),0)|0); + $567 = tempRet0; + $568 = (___muldi3(($120|0),0,($48|0),0)|0); + $569 = tempRet0; + $570 = (___muldi3(($114|0),0,($54|0),0)|0); + $571 = tempRet0; + $572 = (___muldi3(($110|0),0,($60|0),0)|0); + $573 = tempRet0; + $574 = (___muldi3(($104|0),0,($64|0),($65|0))|0); + $575 = tempRet0; + $576 = (___muldi3(($130|0),($131|0),($44|0),0)|0); + $577 = tempRet0; + $578 = (___muldi3(($126|0),0,($48|0),0)|0); + $579 = tempRet0; + $580 = (___muldi3(($120|0),0,($54|0),0)|0); + $581 = tempRet0; + $582 = (___muldi3(($114|0),0,($60|0),0)|0); + $583 = tempRet0; + $584 = (___muldi3(($110|0),0,($64|0),($65|0))|0); + $585 = tempRet0; + $586 = (_i64Add(($584|0),($585|0),($582|0),($583|0))|0); + $587 = tempRet0; + $588 = (_i64Add(($586|0),($587|0),($580|0),($581|0))|0); + $589 = tempRet0; + $590 = (_i64Add(($588|0),($589|0),($578|0),($579|0))|0); + $591 = tempRet0; + $592 = (_i64Add(($590|0),($591|0),($576|0),($577|0))|0); + $593 = tempRet0; + $594 = (___muldi3(($130|0),($131|0),($48|0),0)|0); + $595 = tempRet0; + $596 = (___muldi3(($126|0),0,($54|0),0)|0); + $597 = tempRet0; + $598 = (___muldi3(($120|0),0,($60|0),0)|0); + $599 = tempRet0; + $600 = (___muldi3(($114|0),0,($64|0),($65|0))|0); + $601 = tempRet0; + $602 = (___muldi3(($130|0),($131|0),($54|0),0)|0); + $603 = tempRet0; + $604 = (___muldi3(($126|0),0,($60|0),0)|0); + $605 = tempRet0; + $606 = (___muldi3(($120|0),0,($64|0),($65|0))|0); + $607 = tempRet0; + $608 = (_i64Add(($604|0),($605|0),($606|0),($607|0))|0); + $609 = tempRet0; + $610 = (_i64Add(($608|0),($609|0),($602|0),($603|0))|0); + $611 = tempRet0; + $612 = (___muldi3(($130|0),($131|0),($60|0),0)|0); + $613 = tempRet0; + $614 = (___muldi3(($126|0),0,($64|0),($65|0))|0); + $615 = tempRet0; + $616 = (_i64Add(($612|0),($613|0),($614|0),($615|0))|0); + $617 = tempRet0; + $618 = (___muldi3(($130|0),($131|0),($64|0),($65|0))|0); + $619 = tempRet0; + $620 = (_i64Add(($200|0),($201|0),1048576,0)|0); + $621 = tempRet0; + $622 = (_bitshift64Lshr(($620|0),($621|0),21)|0); + $623 = tempRet0; + $624 = (_i64Add(($202|0),($203|0),($204|0),($205|0))|0); + $625 = tempRet0; + $626 = (_i64Add(($624|0),($625|0),($140|0),0)|0); + $627 = tempRet0; + $628 = (_i64Add(($626|0),($627|0),($622|0),($623|0))|0); + $629 = tempRet0; + $630 = (_bitshift64Shl(($622|0),($623|0),21)|0); + $631 = tempRet0; + $632 = (_i64Subtract(($200|0),($201|0),($630|0),($631|0))|0); + $633 = tempRet0; + $634 = (_i64Add(($216|0),($217|0),1048576,0)|0); + $635 = tempRet0; + $636 = (_bitshift64Lshr(($634|0),($635|0),21)|0); + $637 = tempRet0; + $638 = (_i64Add(($222|0),($223|0),($224|0),($225|0))|0); + $639 = tempRet0; + $640 = (_i64Add(($638|0),($639|0),($220|0),($221|0))|0); + $641 = tempRet0; + $642 = (_i64Add(($640|0),($641|0),($218|0),($219|0))|0); + $643 = tempRet0; + $644 = (_i64Add(($642|0),($643|0),($152|0),0)|0); + $645 = tempRet0; + $646 = (_i64Add(($644|0),($645|0),($636|0),($637|0))|0); + $647 = tempRet0; + $648 = (_bitshift64Shl(($636|0),($637|0),21)|0); + $649 = tempRet0; + $650 = (_i64Add(($244|0),($245|0),1048576,0)|0); + $651 = tempRet0; + $652 = (_bitshift64Ashr(($650|0),($651|0),21)|0); + $653 = tempRet0; + $654 = (_i64Add(($254|0),($255|0),($256|0),($257|0))|0); + $655 = tempRet0; + $656 = (_i64Add(($654|0),($655|0),($252|0),($253|0))|0); + $657 = tempRet0; + $658 = (_i64Add(($656|0),($657|0),($250|0),($251|0))|0); + $659 = tempRet0; + $660 = (_i64Add(($658|0),($659|0),($248|0),($249|0))|0); + $661 = tempRet0; + $662 = (_i64Add(($660|0),($661|0),($246|0),($247|0))|0); + $663 = tempRet0; + $664 = (_i64Add(($662|0),($663|0),($164|0),0)|0); + $665 = tempRet0; + $666 = (_i64Add(($664|0),($665|0),($652|0),($653|0))|0); + $667 = tempRet0; + $668 = (_bitshift64Shl(($652|0),($653|0),21)|0); + $669 = tempRet0; + $670 = (_i64Subtract(($244|0),($245|0),($668|0),($669|0))|0); + $671 = tempRet0; + $672 = (_i64Add(($284|0),($285|0),1048576,0)|0); + $673 = tempRet0; + $674 = (_bitshift64Ashr(($672|0),($673|0),21)|0); + $675 = tempRet0; + $676 = (_i64Add(($298|0),($299|0),($300|0),($301|0))|0); + $677 = tempRet0; + $678 = (_i64Add(($676|0),($677|0),($296|0),($297|0))|0); + $679 = tempRet0; + $680 = (_i64Add(($678|0),($679|0),($294|0),($295|0))|0); + $681 = tempRet0; + $682 = (_i64Add(($680|0),($681|0),($292|0),($293|0))|0); + $683 = tempRet0; + $684 = (_i64Add(($682|0),($683|0),($290|0),($291|0))|0); + $685 = tempRet0; + $686 = (_i64Add(($684|0),($685|0),($288|0),($289|0))|0); + $687 = tempRet0; + $688 = (_i64Add(($686|0),($687|0),($286|0),($287|0))|0); + $689 = tempRet0; + $690 = (_i64Add(($688|0),($689|0),($176|0),0)|0); + $691 = tempRet0; + $692 = (_i64Add(($690|0),($691|0),($674|0),($675|0))|0); + $693 = tempRet0; + $694 = (_bitshift64Shl(($674|0),($675|0),21)|0); + $695 = tempRet0; + $696 = (_i64Add(($336|0),($337|0),1048576,0)|0); + $697 = tempRet0; + $698 = (_bitshift64Ashr(($696|0),($697|0),21)|0); + $699 = tempRet0; + $700 = (_i64Add(($354|0),($355|0),($356|0),($357|0))|0); + $701 = tempRet0; + $702 = (_i64Add(($700|0),($701|0),($352|0),($353|0))|0); + $703 = tempRet0; + $704 = (_i64Add(($702|0),($703|0),($350|0),($351|0))|0); + $705 = tempRet0; + $706 = (_i64Add(($704|0),($705|0),($348|0),($349|0))|0); + $707 = tempRet0; + $708 = (_i64Add(($706|0),($707|0),($346|0),($347|0))|0); + $709 = tempRet0; + $710 = (_i64Add(($708|0),($709|0),($344|0),($345|0))|0); + $711 = tempRet0; + $712 = (_i64Add(($710|0),($711|0),($340|0),($341|0))|0); + $713 = tempRet0; + $714 = (_i64Add(($712|0),($713|0),($342|0),($343|0))|0); + $715 = tempRet0; + $716 = (_i64Add(($714|0),($715|0),($338|0),($339|0))|0); + $717 = tempRet0; + $718 = (_i64Add(($716|0),($717|0),($186|0),0)|0); + $719 = tempRet0; + $720 = (_i64Add(($718|0),($719|0),($698|0),($699|0))|0); + $721 = tempRet0; + $722 = (_bitshift64Shl(($698|0),($699|0),21)|0); + $723 = tempRet0; + $724 = (_i64Add(($400|0),($401|0),1048576,0)|0); + $725 = tempRet0; + $726 = (_bitshift64Ashr(($724|0),($725|0),21)|0); + $727 = tempRet0; + $728 = (_i64Add(($422|0),($423|0),($424|0),($425|0))|0); + $729 = tempRet0; + $730 = (_i64Add(($728|0),($729|0),($420|0),($421|0))|0); + $731 = tempRet0; + $732 = (_i64Add(($730|0),($731|0),($418|0),($419|0))|0); + $733 = tempRet0; + $734 = (_i64Add(($732|0),($733|0),($416|0),($417|0))|0); + $735 = tempRet0; + $736 = (_i64Add(($734|0),($735|0),($414|0),($415|0))|0); + $737 = tempRet0; + $738 = (_i64Add(($736|0),($737|0),($412|0),($413|0))|0); + $739 = tempRet0; + $740 = (_i64Add(($738|0),($739|0),($408|0),($409|0))|0); + $741 = tempRet0; + $742 = (_i64Add(($740|0),($741|0),($410|0),($411|0))|0); + $743 = tempRet0; + $744 = (_i64Add(($742|0),($743|0),($406|0),($407|0))|0); + $745 = tempRet0; + $746 = (_i64Add(($744|0),($745|0),($402|0),($403|0))|0); + $747 = tempRet0; + $748 = (_i64Add(($746|0),($747|0),($404|0),($405|0))|0); + $749 = tempRet0; + $750 = (_i64Add(($748|0),($749|0),($196|0),($197|0))|0); + $751 = tempRet0; + $752 = (_i64Add(($750|0),($751|0),($726|0),($727|0))|0); + $753 = tempRet0; + $754 = (_bitshift64Shl(($726|0),($727|0),21)|0); + $755 = tempRet0; + $756 = (_i64Add(($466|0),($467|0),1048576,0)|0); + $757 = tempRet0; + $758 = (_bitshift64Ashr(($756|0),($757|0),21)|0); + $759 = tempRet0; + $760 = (_i64Add(($484|0),($485|0),($486|0),($487|0))|0); + $761 = tempRet0; + $762 = (_i64Add(($760|0),($761|0),($482|0),($483|0))|0); + $763 = tempRet0; + $764 = (_i64Add(($762|0),($763|0),($480|0),($481|0))|0); + $765 = tempRet0; + $766 = (_i64Add(($764|0),($765|0),($478|0),($479|0))|0); + $767 = tempRet0; + $768 = (_i64Add(($766|0),($767|0),($474|0),($475|0))|0); + $769 = tempRet0; + $770 = (_i64Add(($768|0),($769|0),($476|0),($477|0))|0); + $771 = tempRet0; + $772 = (_i64Add(($770|0),($771|0),($472|0),($473|0))|0); + $773 = tempRet0; + $774 = (_i64Add(($772|0),($773|0),($470|0),($471|0))|0); + $775 = tempRet0; + $776 = (_i64Add(($774|0),($775|0),($468|0),($469|0))|0); + $777 = tempRet0; + $778 = (_i64Add(($776|0),($777|0),($758|0),($759|0))|0); + $779 = tempRet0; + $780 = (_bitshift64Shl(($758|0),($759|0),21)|0); + $781 = tempRet0; + $782 = (_i64Add(($520|0),($521|0),1048576,0)|0); + $783 = tempRet0; + $784 = (_bitshift64Ashr(($782|0),($783|0),21)|0); + $785 = tempRet0; + $786 = (_i64Add(($534|0),($535|0),($536|0),($537|0))|0); + $787 = tempRet0; + $788 = (_i64Add(($786|0),($787|0),($532|0),($533|0))|0); + $789 = tempRet0; + $790 = (_i64Add(($788|0),($789|0),($528|0),($529|0))|0); + $791 = tempRet0; + $792 = (_i64Add(($790|0),($791|0),($530|0),($531|0))|0); + $793 = tempRet0; + $794 = (_i64Add(($792|0),($793|0),($526|0),($527|0))|0); + $795 = tempRet0; + $796 = (_i64Add(($794|0),($795|0),($524|0),($525|0))|0); + $797 = tempRet0; + $798 = (_i64Add(($796|0),($797|0),($522|0),($523|0))|0); + $799 = tempRet0; + $800 = (_i64Add(($798|0),($799|0),($784|0),($785|0))|0); + $801 = tempRet0; + $802 = (_bitshift64Shl(($784|0),($785|0),21)|0); + $803 = tempRet0; + $804 = (_i64Add(($562|0),($563|0),1048576,0)|0); + $805 = tempRet0; + $806 = (_bitshift64Ashr(($804|0),($805|0),21)|0); + $807 = tempRet0; + $808 = (_i64Add(($570|0),($571|0),($574|0),($575|0))|0); + $809 = tempRet0; + $810 = (_i64Add(($808|0),($809|0),($572|0),($573|0))|0); + $811 = tempRet0; + $812 = (_i64Add(($810|0),($811|0),($568|0),($569|0))|0); + $813 = tempRet0; + $814 = (_i64Add(($812|0),($813|0),($566|0),($567|0))|0); + $815 = tempRet0; + $816 = (_i64Add(($814|0),($815|0),($564|0),($565|0))|0); + $817 = tempRet0; + $818 = (_i64Add(($816|0),($817|0),($806|0),($807|0))|0); + $819 = tempRet0; + $820 = (_bitshift64Shl(($806|0),($807|0),21)|0); + $821 = tempRet0; + $822 = (_i64Add(($592|0),($593|0),1048576,0)|0); + $823 = tempRet0; + $824 = (_bitshift64Ashr(($822|0),($823|0),21)|0); + $825 = tempRet0; + $826 = (_i64Add(($598|0),($599|0),($600|0),($601|0))|0); + $827 = tempRet0; + $828 = (_i64Add(($826|0),($827|0),($596|0),($597|0))|0); + $829 = tempRet0; + $830 = (_i64Add(($828|0),($829|0),($594|0),($595|0))|0); + $831 = tempRet0; + $832 = (_i64Add(($830|0),($831|0),($824|0),($825|0))|0); + $833 = tempRet0; + $834 = (_bitshift64Shl(($824|0),($825|0),21)|0); + $835 = tempRet0; + $836 = (_i64Subtract(($592|0),($593|0),($834|0),($835|0))|0); + $837 = tempRet0; + $838 = (_i64Add(($610|0),($611|0),1048576,0)|0); + $839 = tempRet0; + $840 = (_bitshift64Lshr(($838|0),($839|0),21)|0); + $841 = tempRet0; + $842 = (_i64Add(($616|0),($617|0),($840|0),($841|0))|0); + $843 = tempRet0; + $844 = (_bitshift64Shl(($840|0),($841|0),21)|0); + $845 = tempRet0; + $846 = (_i64Subtract(($610|0),($611|0),($844|0),($845|0))|0); + $847 = tempRet0; + $848 = (_i64Add(($618|0),($619|0),1048576,0)|0); + $849 = tempRet0; + $850 = (_bitshift64Lshr(($848|0),($849|0),21)|0); + $851 = tempRet0; + $852 = (_bitshift64Shl(($850|0),($851|0),21)|0); + $853 = tempRet0; + $854 = (_i64Subtract(($618|0),($619|0),($852|0),($853|0))|0); + $855 = tempRet0; + $856 = (_i64Add(($628|0),($629|0),1048576,0)|0); + $857 = tempRet0; + $858 = (_bitshift64Lshr(($856|0),($857|0),21)|0); + $859 = tempRet0; + $860 = (_bitshift64Shl(($858|0),($859|0),21)|0); + $861 = tempRet0; + $862 = (_i64Subtract(($628|0),($629|0),($860|0),($861|0))|0); + $863 = tempRet0; + $864 = (_i64Add(($646|0),($647|0),1048576,0)|0); + $865 = tempRet0; + $866 = (_bitshift64Ashr(($864|0),($865|0),21)|0); + $867 = tempRet0; + $868 = (_i64Add(($670|0),($671|0),($866|0),($867|0))|0); + $869 = tempRet0; + $870 = (_bitshift64Shl(($866|0),($867|0),21)|0); + $871 = tempRet0; + $872 = (_i64Subtract(($646|0),($647|0),($870|0),($871|0))|0); + $873 = tempRet0; + $874 = (_i64Add(($666|0),($667|0),1048576,0)|0); + $875 = tempRet0; + $876 = (_bitshift64Ashr(($874|0),($875|0),21)|0); + $877 = tempRet0; + $878 = (_bitshift64Shl(($876|0),($877|0),21)|0); + $879 = tempRet0; + $880 = (_i64Subtract(($666|0),($667|0),($878|0),($879|0))|0); + $881 = tempRet0; + $882 = (_i64Add(($692|0),($693|0),1048576,0)|0); + $883 = tempRet0; + $884 = (_bitshift64Ashr(($882|0),($883|0),21)|0); + $885 = tempRet0; + $886 = (_bitshift64Shl(($884|0),($885|0),21)|0); + $887 = tempRet0; + $888 = (_i64Add(($720|0),($721|0),1048576,0)|0); + $889 = tempRet0; + $890 = (_bitshift64Ashr(($888|0),($889|0),21)|0); + $891 = tempRet0; + $892 = (_bitshift64Shl(($890|0),($891|0),21)|0); + $893 = tempRet0; + $894 = (_i64Add(($752|0),($753|0),1048576,0)|0); + $895 = tempRet0; + $896 = (_bitshift64Ashr(($894|0),($895|0),21)|0); + $897 = tempRet0; + $898 = (_bitshift64Shl(($896|0),($897|0),21)|0); + $899 = tempRet0; + $900 = (_i64Add(($778|0),($779|0),1048576,0)|0); + $901 = tempRet0; + $902 = (_bitshift64Ashr(($900|0),($901|0),21)|0); + $903 = tempRet0; + $904 = (_bitshift64Shl(($902|0),($903|0),21)|0); + $905 = tempRet0; + $906 = (_i64Add(($800|0),($801|0),1048576,0)|0); + $907 = tempRet0; + $908 = (_bitshift64Ashr(($906|0),($907|0),21)|0); + $909 = tempRet0; + $910 = (_bitshift64Shl(($908|0),($909|0),21)|0); + $911 = tempRet0; + $912 = (_i64Add(($818|0),($819|0),1048576,0)|0); + $913 = tempRet0; + $914 = (_bitshift64Ashr(($912|0),($913|0),21)|0); + $915 = tempRet0; + $916 = (_i64Add(($914|0),($915|0),($836|0),($837|0))|0); + $917 = tempRet0; + $918 = (_bitshift64Shl(($914|0),($915|0),21)|0); + $919 = tempRet0; + $920 = (_i64Subtract(($818|0),($819|0),($918|0),($919|0))|0); + $921 = tempRet0; + $922 = (_i64Add(($832|0),($833|0),1048576,0)|0); + $923 = tempRet0; + $924 = (_bitshift64Ashr(($922|0),($923|0),21)|0); + $925 = tempRet0; + $926 = (_i64Add(($924|0),($925|0),($846|0),($847|0))|0); + $927 = tempRet0; + $928 = (_bitshift64Shl(($924|0),($925|0),21)|0); + $929 = tempRet0; + $930 = (_i64Subtract(($832|0),($833|0),($928|0),($929|0))|0); + $931 = tempRet0; + $932 = (_i64Add(($842|0),($843|0),1048576,0)|0); + $933 = tempRet0; + $934 = (_bitshift64Lshr(($932|0),($933|0),21)|0); + $935 = tempRet0; + $936 = (_i64Add(($934|0),($935|0),($854|0),($855|0))|0); + $937 = tempRet0; + $938 = (_bitshift64Shl(($934|0),($935|0),21)|0); + $939 = tempRet0; + $940 = (_i64Subtract(($842|0),($843|0),($938|0),($939|0))|0); + $941 = tempRet0; + $942 = (___muldi3(($850|0),($851|0),666643,0)|0); + $943 = tempRet0; + $944 = (___muldi3(($850|0),($851|0),470296,0)|0); + $945 = tempRet0; + $946 = (___muldi3(($850|0),($851|0),654183,0)|0); + $947 = tempRet0; + $948 = (___muldi3(($850|0),($851|0),-997805,-1)|0); + $949 = tempRet0; + $950 = (___muldi3(($850|0),($851|0),136657,0)|0); + $951 = tempRet0; + $952 = (___muldi3(($850|0),($851|0),-683901,-1)|0); + $953 = tempRet0; + $954 = (_i64Add(($952|0),($953|0),($562|0),($563|0))|0); + $955 = tempRet0; + $956 = (_i64Subtract(($954|0),($955|0),($820|0),($821|0))|0); + $957 = tempRet0; + $958 = (_i64Add(($956|0),($957|0),($908|0),($909|0))|0); + $959 = tempRet0; + $960 = (___muldi3(($936|0),($937|0),666643,0)|0); + $961 = tempRet0; + $962 = (___muldi3(($936|0),($937|0),470296,0)|0); + $963 = tempRet0; + $964 = (___muldi3(($936|0),($937|0),654183,0)|0); + $965 = tempRet0; + $966 = (___muldi3(($936|0),($937|0),-997805,-1)|0); + $967 = tempRet0; + $968 = (___muldi3(($936|0),($937|0),136657,0)|0); + $969 = tempRet0; + $970 = (___muldi3(($936|0),($937|0),-683901,-1)|0); + $971 = tempRet0; + $972 = (___muldi3(($940|0),($941|0),666643,0)|0); + $973 = tempRet0; + $974 = (___muldi3(($940|0),($941|0),470296,0)|0); + $975 = tempRet0; + $976 = (___muldi3(($940|0),($941|0),654183,0)|0); + $977 = tempRet0; + $978 = (___muldi3(($940|0),($941|0),-997805,-1)|0); + $979 = tempRet0; + $980 = (___muldi3(($940|0),($941|0),136657,0)|0); + $981 = tempRet0; + $982 = (___muldi3(($940|0),($941|0),-683901,-1)|0); + $983 = tempRet0; + $984 = (_i64Add(($948|0),($949|0),($520|0),($521|0))|0); + $985 = tempRet0; + $986 = (_i64Subtract(($984|0),($985|0),($802|0),($803|0))|0); + $987 = tempRet0; + $988 = (_i64Add(($986|0),($987|0),($902|0),($903|0))|0); + $989 = tempRet0; + $990 = (_i64Add(($988|0),($989|0),($968|0),($969|0))|0); + $991 = tempRet0; + $992 = (_i64Add(($990|0),($991|0),($982|0),($983|0))|0); + $993 = tempRet0; + $994 = (___muldi3(($926|0),($927|0),666643,0)|0); + $995 = tempRet0; + $996 = (___muldi3(($926|0),($927|0),470296,0)|0); + $997 = tempRet0; + $998 = (___muldi3(($926|0),($927|0),654183,0)|0); + $999 = tempRet0; + $1000 = (___muldi3(($926|0),($927|0),-997805,-1)|0); + $1001 = tempRet0; + $1002 = (___muldi3(($926|0),($927|0),136657,0)|0); + $1003 = tempRet0; + $1004 = (___muldi3(($926|0),($927|0),-683901,-1)|0); + $1005 = tempRet0; + $1006 = (___muldi3(($930|0),($931|0),666643,0)|0); + $1007 = tempRet0; + $1008 = (___muldi3(($930|0),($931|0),470296,0)|0); + $1009 = tempRet0; + $1010 = (___muldi3(($930|0),($931|0),654183,0)|0); + $1011 = tempRet0; + $1012 = (___muldi3(($930|0),($931|0),-997805,-1)|0); + $1013 = tempRet0; + $1014 = (___muldi3(($930|0),($931|0),136657,0)|0); + $1015 = tempRet0; + $1016 = (___muldi3(($930|0),($931|0),-683901,-1)|0); + $1017 = tempRet0; + $1018 = (_i64Add(($944|0),($945|0),($466|0),($467|0))|0); + $1019 = tempRet0; + $1020 = (_i64Subtract(($1018|0),($1019|0),($780|0),($781|0))|0); + $1021 = tempRet0; + $1022 = (_i64Add(($1020|0),($1021|0),($964|0),($965|0))|0); + $1023 = tempRet0; + $1024 = (_i64Add(($1022|0),($1023|0),($1002|0),($1003|0))|0); + $1025 = tempRet0; + $1026 = (_i64Add(($1024|0),($1025|0),($978|0),($979|0))|0); + $1027 = tempRet0; + $1028 = (_i64Add(($1026|0),($1027|0),($1016|0),($1017|0))|0); + $1029 = tempRet0; + $1030 = (_i64Add(($1028|0),($1029|0),($896|0),($897|0))|0); + $1031 = tempRet0; + $1032 = (___muldi3(($916|0),($917|0),666643,0)|0); + $1033 = tempRet0; + $1034 = (_i64Add(($1032|0),($1033|0),($284|0),($285|0))|0); + $1035 = tempRet0; + $1036 = (_i64Subtract(($1034|0),($1035|0),($694|0),($695|0))|0); + $1037 = tempRet0; + $1038 = (_i64Add(($1036|0),($1037|0),($876|0),($877|0))|0); + $1039 = tempRet0; + $1040 = (___muldi3(($916|0),($917|0),470296,0)|0); + $1041 = tempRet0; + $1042 = (___muldi3(($916|0),($917|0),654183,0)|0); + $1043 = tempRet0; + $1044 = (_i64Add(($994|0),($995|0),($336|0),($337|0))|0); + $1045 = tempRet0; + $1046 = (_i64Add(($1044|0),($1045|0),($1042|0),($1043|0))|0); + $1047 = tempRet0; + $1048 = (_i64Add(($1046|0),($1047|0),($1008|0),($1009|0))|0); + $1049 = tempRet0; + $1050 = (_i64Subtract(($1048|0),($1049|0),($722|0),($723|0))|0); + $1051 = tempRet0; + $1052 = (_i64Add(($1050|0),($1051|0),($884|0),($885|0))|0); + $1053 = tempRet0; + $1054 = (___muldi3(($916|0),($917|0),-997805,-1)|0); + $1055 = tempRet0; + $1056 = (___muldi3(($916|0),($917|0),136657,0)|0); + $1057 = tempRet0; + $1058 = (_i64Add(($998|0),($999|0),($960|0),($961|0))|0); + $1059 = tempRet0; + $1060 = (_i64Add(($1058|0),($1059|0),($1056|0),($1057|0))|0); + $1061 = tempRet0; + $1062 = (_i64Add(($1060|0),($1061|0),($974|0),($975|0))|0); + $1063 = tempRet0; + $1064 = (_i64Add(($1062|0),($1063|0),($1012|0),($1013|0))|0); + $1065 = tempRet0; + $1066 = (_i64Add(($1064|0),($1065|0),($400|0),($401|0))|0); + $1067 = tempRet0; + $1068 = (_i64Add(($1066|0),($1067|0),($890|0),($891|0))|0); + $1069 = tempRet0; + $1070 = (_i64Subtract(($1068|0),($1069|0),($754|0),($755|0))|0); + $1071 = tempRet0; + $1072 = (___muldi3(($916|0),($917|0),-683901,-1)|0); + $1073 = tempRet0; + $1074 = (_i64Add(($1038|0),($1039|0),1048576,0)|0); + $1075 = tempRet0; + $1076 = (_bitshift64Ashr(($1074|0),($1075|0),21)|0); + $1077 = tempRet0; + $1078 = (_i64Add(($1006|0),($1007|0),($1040|0),($1041|0))|0); + $1079 = tempRet0; + $1080 = (_i64Add(($1078|0),($1079|0),($692|0),($693|0))|0); + $1081 = tempRet0; + $1082 = (_i64Subtract(($1080|0),($1081|0),($886|0),($887|0))|0); + $1083 = tempRet0; + $1084 = (_i64Add(($1082|0),($1083|0),($1076|0),($1077|0))|0); + $1085 = tempRet0; + $1086 = (_bitshift64Shl(($1076|0),($1077|0),21)|0); + $1087 = tempRet0; + $1088 = (_i64Add(($1052|0),($1053|0),1048576,0)|0); + $1089 = tempRet0; + $1090 = (_bitshift64Ashr(($1088|0),($1089|0),21)|0); + $1091 = tempRet0; + $1092 = (_i64Add(($1054|0),($1055|0),($996|0),($997|0))|0); + $1093 = tempRet0; + $1094 = (_i64Add(($1092|0),($1093|0),($972|0),($973|0))|0); + $1095 = tempRet0; + $1096 = (_i64Add(($1094|0),($1095|0),($1010|0),($1011|0))|0); + $1097 = tempRet0; + $1098 = (_i64Add(($1096|0),($1097|0),($720|0),($721|0))|0); + $1099 = tempRet0; + $1100 = (_i64Subtract(($1098|0),($1099|0),($892|0),($893|0))|0); + $1101 = tempRet0; + $1102 = (_i64Add(($1100|0),($1101|0),($1090|0),($1091|0))|0); + $1103 = tempRet0; + $1104 = (_bitshift64Shl(($1090|0),($1091|0),21)|0); + $1105 = tempRet0; + $1106 = (_i64Add(($1070|0),($1071|0),1048576,0)|0); + $1107 = tempRet0; + $1108 = (_bitshift64Ashr(($1106|0),($1107|0),21)|0); + $1109 = tempRet0; + $1110 = (_i64Add(($962|0),($963|0),($942|0),($943|0))|0); + $1111 = tempRet0; + $1112 = (_i64Add(($1110|0),($1111|0),($1000|0),($1001|0))|0); + $1113 = tempRet0; + $1114 = (_i64Add(($1112|0),($1113|0),($1072|0),($1073|0))|0); + $1115 = tempRet0; + $1116 = (_i64Add(($1114|0),($1115|0),($976|0),($977|0))|0); + $1117 = tempRet0; + $1118 = (_i64Add(($1116|0),($1117|0),($1014|0),($1015|0))|0); + $1119 = tempRet0; + $1120 = (_i64Add(($1118|0),($1119|0),($752|0),($753|0))|0); + $1121 = tempRet0; + $1122 = (_i64Subtract(($1120|0),($1121|0),($898|0),($899|0))|0); + $1123 = tempRet0; + $1124 = (_i64Add(($1122|0),($1123|0),($1108|0),($1109|0))|0); + $1125 = tempRet0; + $1126 = (_bitshift64Shl(($1108|0),($1109|0),21)|0); + $1127 = tempRet0; + $1128 = (_i64Add(($1030|0),($1031|0),1048576,0)|0); + $1129 = tempRet0; + $1130 = (_bitshift64Ashr(($1128|0),($1129|0),21)|0); + $1131 = tempRet0; + $1132 = (_i64Add(($778|0),($779|0),($946|0),($947|0))|0); + $1133 = tempRet0; + $1134 = (_i64Subtract(($1132|0),($1133|0),($904|0),($905|0))|0); + $1135 = tempRet0; + $1136 = (_i64Add(($1134|0),($1135|0),($966|0),($967|0))|0); + $1137 = tempRet0; + $1138 = (_i64Add(($1136|0),($1137|0),($1004|0),($1005|0))|0); + $1139 = tempRet0; + $1140 = (_i64Add(($1138|0),($1139|0),($980|0),($981|0))|0); + $1141 = tempRet0; + $1142 = (_i64Add(($1140|0),($1141|0),($1130|0),($1131|0))|0); + $1143 = tempRet0; + $1144 = (_bitshift64Shl(($1130|0),($1131|0),21)|0); + $1145 = tempRet0; + $1146 = (_i64Subtract(($1030|0),($1031|0),($1144|0),($1145|0))|0); + $1147 = tempRet0; + $1148 = (_i64Add(($992|0),($993|0),1048576,0)|0); + $1149 = tempRet0; + $1150 = (_bitshift64Ashr(($1148|0),($1149|0),21)|0); + $1151 = tempRet0; + $1152 = (_i64Add(($800|0),($801|0),($950|0),($951|0))|0); + $1153 = tempRet0; + $1154 = (_i64Subtract(($1152|0),($1153|0),($910|0),($911|0))|0); + $1155 = tempRet0; + $1156 = (_i64Add(($1154|0),($1155|0),($970|0),($971|0))|0); + $1157 = tempRet0; + $1158 = (_i64Add(($1156|0),($1157|0),($1150|0),($1151|0))|0); + $1159 = tempRet0; + $1160 = (_bitshift64Shl(($1150|0),($1151|0),21)|0); + $1161 = tempRet0; + $1162 = (_i64Subtract(($992|0),($993|0),($1160|0),($1161|0))|0); + $1163 = tempRet0; + $1164 = (_i64Add(($958|0),($959|0),1048576,0)|0); + $1165 = tempRet0; + $1166 = (_bitshift64Ashr(($1164|0),($1165|0),21)|0); + $1167 = tempRet0; + $1168 = (_i64Add(($1166|0),($1167|0),($920|0),($921|0))|0); + $1169 = tempRet0; + $1170 = (_bitshift64Shl(($1166|0),($1167|0),21)|0); + $1171 = tempRet0; + $1172 = (_i64Subtract(($958|0),($959|0),($1170|0),($1171|0))|0); + $1173 = tempRet0; + $1174 = (_i64Add(($1084|0),($1085|0),1048576,0)|0); + $1175 = tempRet0; + $1176 = (_bitshift64Ashr(($1174|0),($1175|0),21)|0); + $1177 = tempRet0; + $1178 = (_bitshift64Shl(($1176|0),($1177|0),21)|0); + $1179 = tempRet0; + $1180 = (_i64Add(($1102|0),($1103|0),1048576,0)|0); + $1181 = tempRet0; + $1182 = (_bitshift64Ashr(($1180|0),($1181|0),21)|0); + $1183 = tempRet0; + $1184 = (_bitshift64Shl(($1182|0),($1183|0),21)|0); + $1185 = tempRet0; + $1186 = (_i64Add(($1124|0),($1125|0),1048576,0)|0); + $1187 = tempRet0; + $1188 = (_bitshift64Ashr(($1186|0),($1187|0),21)|0); + $1189 = tempRet0; + $1190 = (_i64Add(($1146|0),($1147|0),($1188|0),($1189|0))|0); + $1191 = tempRet0; + $1192 = (_bitshift64Shl(($1188|0),($1189|0),21)|0); + $1193 = tempRet0; + $1194 = (_i64Subtract(($1124|0),($1125|0),($1192|0),($1193|0))|0); + $1195 = tempRet0; + $1196 = (_i64Add(($1142|0),($1143|0),1048576,0)|0); + $1197 = tempRet0; + $1198 = (_bitshift64Ashr(($1196|0),($1197|0),21)|0); + $1199 = tempRet0; + $1200 = (_i64Add(($1198|0),($1199|0),($1162|0),($1163|0))|0); + $1201 = tempRet0; + $1202 = (_bitshift64Shl(($1198|0),($1199|0),21)|0); + $1203 = tempRet0; + $1204 = (_i64Subtract(($1142|0),($1143|0),($1202|0),($1203|0))|0); + $1205 = tempRet0; + $1206 = (_i64Add(($1158|0),($1159|0),1048576,0)|0); + $1207 = tempRet0; + $1208 = (_bitshift64Ashr(($1206|0),($1207|0),21)|0); + $1209 = tempRet0; + $1210 = (_i64Add(($1208|0),($1209|0),($1172|0),($1173|0))|0); + $1211 = tempRet0; + $1212 = (_bitshift64Shl(($1208|0),($1209|0),21)|0); + $1213 = tempRet0; + $1214 = (_i64Subtract(($1158|0),($1159|0),($1212|0),($1213|0))|0); + $1215 = tempRet0; + $1216 = (___muldi3(($1168|0),($1169|0),666643,0)|0); + $1217 = tempRet0; + $1218 = (_i64Add(($880|0),($881|0),($1216|0),($1217|0))|0); + $1219 = tempRet0; + $1220 = (___muldi3(($1168|0),($1169|0),470296,0)|0); + $1221 = tempRet0; + $1222 = (___muldi3(($1168|0),($1169|0),654183,0)|0); + $1223 = tempRet0; + $1224 = (___muldi3(($1168|0),($1169|0),-997805,-1)|0); + $1225 = tempRet0; + $1226 = (___muldi3(($1168|0),($1169|0),136657,0)|0); + $1227 = tempRet0; + $1228 = (___muldi3(($1168|0),($1169|0),-683901,-1)|0); + $1229 = tempRet0; + $1230 = (_i64Add(($1070|0),($1071|0),($1228|0),($1229|0))|0); + $1231 = tempRet0; + $1232 = (_i64Subtract(($1230|0),($1231|0),($1126|0),($1127|0))|0); + $1233 = tempRet0; + $1234 = (_i64Add(($1232|0),($1233|0),($1182|0),($1183|0))|0); + $1235 = tempRet0; + $1236 = (___muldi3(($1210|0),($1211|0),666643,0)|0); + $1237 = tempRet0; + $1238 = (_i64Add(($868|0),($869|0),($1236|0),($1237|0))|0); + $1239 = tempRet0; + $1240 = (___muldi3(($1210|0),($1211|0),470296,0)|0); + $1241 = tempRet0; + $1242 = (_i64Add(($1218|0),($1219|0),($1240|0),($1241|0))|0); + $1243 = tempRet0; + $1244 = (___muldi3(($1210|0),($1211|0),654183,0)|0); + $1245 = tempRet0; + $1246 = (___muldi3(($1210|0),($1211|0),-997805,-1)|0); + $1247 = tempRet0; + $1248 = (___muldi3(($1210|0),($1211|0),136657,0)|0); + $1249 = tempRet0; + $1250 = (___muldi3(($1210|0),($1211|0),-683901,-1)|0); + $1251 = tempRet0; + $1252 = (___muldi3(($1214|0),($1215|0),666643,0)|0); + $1253 = tempRet0; + $1254 = (_i64Add(($872|0),($873|0),($1252|0),($1253|0))|0); + $1255 = tempRet0; + $1256 = (___muldi3(($1214|0),($1215|0),470296,0)|0); + $1257 = tempRet0; + $1258 = (_i64Add(($1238|0),($1239|0),($1256|0),($1257|0))|0); + $1259 = tempRet0; + $1260 = (___muldi3(($1214|0),($1215|0),654183,0)|0); + $1261 = tempRet0; + $1262 = (_i64Add(($1242|0),($1243|0),($1260|0),($1261|0))|0); + $1263 = tempRet0; + $1264 = (___muldi3(($1214|0),($1215|0),-997805,-1)|0); + $1265 = tempRet0; + $1266 = (___muldi3(($1214|0),($1215|0),136657,0)|0); + $1267 = tempRet0; + $1268 = (___muldi3(($1214|0),($1215|0),-683901,-1)|0); + $1269 = tempRet0; + $1270 = (_i64Add(($1052|0),($1053|0),($1224|0),($1225|0))|0); + $1271 = tempRet0; + $1272 = (_i64Subtract(($1270|0),($1271|0),($1104|0),($1105|0))|0); + $1273 = tempRet0; + $1274 = (_i64Add(($1272|0),($1273|0),($1176|0),($1177|0))|0); + $1275 = tempRet0; + $1276 = (_i64Add(($1274|0),($1275|0),($1248|0),($1249|0))|0); + $1277 = tempRet0; + $1278 = (_i64Add(($1276|0),($1277|0),($1268|0),($1269|0))|0); + $1279 = tempRet0; + $1280 = (___muldi3(($1200|0),($1201|0),666643,0)|0); + $1281 = tempRet0; + $1282 = (___muldi3(($1200|0),($1201|0),470296,0)|0); + $1283 = tempRet0; + $1284 = (___muldi3(($1200|0),($1201|0),654183,0)|0); + $1285 = tempRet0; + $1286 = (___muldi3(($1200|0),($1201|0),-997805,-1)|0); + $1287 = tempRet0; + $1288 = (___muldi3(($1200|0),($1201|0),136657,0)|0); + $1289 = tempRet0; + $1290 = (___muldi3(($1200|0),($1201|0),-683901,-1)|0); + $1291 = tempRet0; + $1292 = (___muldi3(($1204|0),($1205|0),666643,0)|0); + $1293 = tempRet0; + $1294 = (___muldi3(($1204|0),($1205|0),470296,0)|0); + $1295 = tempRet0; + $1296 = (___muldi3(($1204|0),($1205|0),654183,0)|0); + $1297 = tempRet0; + $1298 = (___muldi3(($1204|0),($1205|0),-997805,-1)|0); + $1299 = tempRet0; + $1300 = (___muldi3(($1204|0),($1205|0),136657,0)|0); + $1301 = tempRet0; + $1302 = (___muldi3(($1204|0),($1205|0),-683901,-1)|0); + $1303 = tempRet0; + $1304 = (_i64Add(($1038|0),($1039|0),($1220|0),($1221|0))|0); + $1305 = tempRet0; + $1306 = (_i64Subtract(($1304|0),($1305|0),($1086|0),($1087|0))|0); + $1307 = tempRet0; + $1308 = (_i64Add(($1306|0),($1307|0),($1244|0),($1245|0))|0); + $1309 = tempRet0; + $1310 = (_i64Add(($1308|0),($1309|0),($1264|0),($1265|0))|0); + $1311 = tempRet0; + $1312 = (_i64Add(($1310|0),($1311|0),($1288|0),($1289|0))|0); + $1313 = tempRet0; + $1314 = (_i64Add(($1312|0),($1313|0),($1302|0),($1303|0))|0); + $1315 = tempRet0; + $1316 = (___muldi3(($1190|0),($1191|0),666643,0)|0); + $1317 = tempRet0; + $1318 = (_i64Add(($1316|0),($1317|0),($632|0),($633|0))|0); + $1319 = tempRet0; + $1320 = (___muldi3(($1190|0),($1191|0),470296,0)|0); + $1321 = tempRet0; + $1322 = (___muldi3(($1190|0),($1191|0),654183,0)|0); + $1323 = tempRet0; + $1324 = (_i64Add(($858|0),($859|0),($216|0),($217|0))|0); + $1325 = tempRet0; + $1326 = (_i64Subtract(($1324|0),($1325|0),($648|0),($649|0))|0); + $1327 = tempRet0; + $1328 = (_i64Add(($1326|0),($1327|0),($1322|0),($1323|0))|0); + $1329 = tempRet0; + $1330 = (_i64Add(($1328|0),($1329|0),($1280|0),($1281|0))|0); + $1331 = tempRet0; + $1332 = (_i64Add(($1330|0),($1331|0),($1294|0),($1295|0))|0); + $1333 = tempRet0; + $1334 = (___muldi3(($1190|0),($1191|0),-997805,-1)|0); + $1335 = tempRet0; + $1336 = (___muldi3(($1190|0),($1191|0),136657,0)|0); + $1337 = tempRet0; + $1338 = (_i64Add(($1258|0),($1259|0),($1336|0),($1337|0))|0); + $1339 = tempRet0; + $1340 = (_i64Add(($1338|0),($1339|0),($1284|0),($1285|0))|0); + $1341 = tempRet0; + $1342 = (_i64Add(($1340|0),($1341|0),($1298|0),($1299|0))|0); + $1343 = tempRet0; + $1344 = (___muldi3(($1190|0),($1191|0),-683901,-1)|0); + $1345 = tempRet0; + $1346 = (_i64Add(($1318|0),($1319|0),1048576,0)|0); + $1347 = tempRet0; + $1348 = (_bitshift64Ashr(($1346|0),($1347|0),21)|0); + $1349 = tempRet0; + $1350 = (_i64Add(($862|0),($863|0),($1320|0),($1321|0))|0); + $1351 = tempRet0; + $1352 = (_i64Add(($1350|0),($1351|0),($1292|0),($1293|0))|0); + $1353 = tempRet0; + $1354 = (_i64Add(($1352|0),($1353|0),($1348|0),($1349|0))|0); + $1355 = tempRet0; + $1356 = (_bitshift64Shl(($1348|0),($1349|0),21)|0); + $1357 = tempRet0; + $1358 = (_i64Subtract(($1318|0),($1319|0),($1356|0),($1357|0))|0); + $1359 = tempRet0; + $1360 = (_i64Add(($1332|0),($1333|0),1048576,0)|0); + $1361 = tempRet0; + $1362 = (_bitshift64Ashr(($1360|0),($1361|0),21)|0); + $1363 = tempRet0; + $1364 = (_i64Add(($1254|0),($1255|0),($1334|0),($1335|0))|0); + $1365 = tempRet0; + $1366 = (_i64Add(($1364|0),($1365|0),($1282|0),($1283|0))|0); + $1367 = tempRet0; + $1368 = (_i64Add(($1366|0),($1367|0),($1296|0),($1297|0))|0); + $1369 = tempRet0; + $1370 = (_i64Add(($1368|0),($1369|0),($1362|0),($1363|0))|0); + $1371 = tempRet0; + $1372 = (_bitshift64Shl(($1362|0),($1363|0),21)|0); + $1373 = tempRet0; + $1374 = (_i64Add(($1342|0),($1343|0),1048576,0)|0); + $1375 = tempRet0; + $1376 = (_bitshift64Ashr(($1374|0),($1375|0),21)|0); + $1377 = tempRet0; + $1378 = (_i64Add(($1262|0),($1263|0),($1344|0),($1345|0))|0); + $1379 = tempRet0; + $1380 = (_i64Add(($1378|0),($1379|0),($1286|0),($1287|0))|0); + $1381 = tempRet0; + $1382 = (_i64Add(($1380|0),($1381|0),($1300|0),($1301|0))|0); + $1383 = tempRet0; + $1384 = (_i64Add(($1382|0),($1383|0),($1376|0),($1377|0))|0); + $1385 = tempRet0; + $1386 = (_bitshift64Shl(($1376|0),($1377|0),21)|0); + $1387 = tempRet0; + $1388 = (_i64Add(($1314|0),($1315|0),1048576,0)|0); + $1389 = tempRet0; + $1390 = (_bitshift64Ashr(($1388|0),($1389|0),21)|0); + $1391 = tempRet0; + $1392 = (_i64Add(($1084|0),($1085|0),($1222|0),($1223|0))|0); + $1393 = tempRet0; + $1394 = (_i64Add(($1392|0),($1393|0),($1246|0),($1247|0))|0); + $1395 = tempRet0; + $1396 = (_i64Subtract(($1394|0),($1395|0),($1178|0),($1179|0))|0); + $1397 = tempRet0; + $1398 = (_i64Add(($1396|0),($1397|0),($1266|0),($1267|0))|0); + $1399 = tempRet0; + $1400 = (_i64Add(($1398|0),($1399|0),($1290|0),($1291|0))|0); + $1401 = tempRet0; + $1402 = (_i64Add(($1400|0),($1401|0),($1390|0),($1391|0))|0); + $1403 = tempRet0; + $1404 = (_bitshift64Shl(($1390|0),($1391|0),21)|0); + $1405 = tempRet0; + $1406 = (_i64Subtract(($1314|0),($1315|0),($1404|0),($1405|0))|0); + $1407 = tempRet0; + $1408 = (_i64Add(($1278|0),($1279|0),1048576,0)|0); + $1409 = tempRet0; + $1410 = (_bitshift64Ashr(($1408|0),($1409|0),21)|0); + $1411 = tempRet0; + $1412 = (_i64Add(($1102|0),($1103|0),($1226|0),($1227|0))|0); + $1413 = tempRet0; + $1414 = (_i64Add(($1412|0),($1413|0),($1250|0),($1251|0))|0); + $1415 = tempRet0; + $1416 = (_i64Subtract(($1414|0),($1415|0),($1184|0),($1185|0))|0); + $1417 = tempRet0; + $1418 = (_i64Add(($1416|0),($1417|0),($1410|0),($1411|0))|0); + $1419 = tempRet0; + $1420 = (_bitshift64Shl(($1410|0),($1411|0),21)|0); + $1421 = tempRet0; + $1422 = (_i64Subtract(($1278|0),($1279|0),($1420|0),($1421|0))|0); + $1423 = tempRet0; + $1424 = (_i64Add(($1234|0),($1235|0),1048576,0)|0); + $1425 = tempRet0; + $1426 = (_bitshift64Ashr(($1424|0),($1425|0),21)|0); + $1427 = tempRet0; + $1428 = (_i64Add(($1194|0),($1195|0),($1426|0),($1427|0))|0); + $1429 = tempRet0; + $1430 = (_bitshift64Shl(($1426|0),($1427|0),21)|0); + $1431 = tempRet0; + $1432 = (_i64Subtract(($1234|0),($1235|0),($1430|0),($1431|0))|0); + $1433 = tempRet0; + $1434 = (_i64Add(($1354|0),($1355|0),1048576,0)|0); + $1435 = tempRet0; + $1436 = (_bitshift64Ashr(($1434|0),($1435|0),21)|0); + $1437 = tempRet0; + $1438 = (_bitshift64Shl(($1436|0),($1437|0),21)|0); + $1439 = tempRet0; + $1440 = (_i64Add(($1370|0),($1371|0),1048576,0)|0); + $1441 = tempRet0; + $1442 = (_bitshift64Ashr(($1440|0),($1441|0),21)|0); + $1443 = tempRet0; + $1444 = (_bitshift64Shl(($1442|0),($1443|0),21)|0); + $1445 = tempRet0; + $1446 = (_i64Add(($1384|0),($1385|0),1048576,0)|0); + $1447 = tempRet0; + $1448 = (_bitshift64Ashr(($1446|0),($1447|0),21)|0); + $1449 = tempRet0; + $1450 = (_i64Add(($1406|0),($1407|0),($1448|0),($1449|0))|0); + $1451 = tempRet0; + $1452 = (_bitshift64Shl(($1448|0),($1449|0),21)|0); + $1453 = tempRet0; + $1454 = (_i64Add(($1402|0),($1403|0),1048576,0)|0); + $1455 = tempRet0; + $1456 = (_bitshift64Ashr(($1454|0),($1455|0),21)|0); + $1457 = tempRet0; + $1458 = (_i64Add(($1422|0),($1423|0),($1456|0),($1457|0))|0); + $1459 = tempRet0; + $1460 = (_bitshift64Shl(($1456|0),($1457|0),21)|0); + $1461 = tempRet0; + $1462 = (_i64Subtract(($1402|0),($1403|0),($1460|0),($1461|0))|0); + $1463 = tempRet0; + $1464 = (_i64Add(($1418|0),($1419|0),1048576,0)|0); + $1465 = tempRet0; + $1466 = (_bitshift64Ashr(($1464|0),($1465|0),21)|0); + $1467 = tempRet0; + $1468 = (_i64Add(($1432|0),($1433|0),($1466|0),($1467|0))|0); + $1469 = tempRet0; + $1470 = (_bitshift64Shl(($1466|0),($1467|0),21)|0); + $1471 = tempRet0; + $1472 = (_i64Subtract(($1418|0),($1419|0),($1470|0),($1471|0))|0); + $1473 = tempRet0; + $1474 = (_i64Add(($1428|0),($1429|0),1048576,0)|0); + $1475 = tempRet0; + $1476 = (_bitshift64Ashr(($1474|0),($1475|0),21)|0); + $1477 = tempRet0; + $1478 = (_bitshift64Shl(($1476|0),($1477|0),21)|0); + $1479 = tempRet0; + $1480 = (_i64Subtract(($1428|0),($1429|0),($1478|0),($1479|0))|0); + $1481 = tempRet0; + $1482 = (___muldi3(($1476|0),($1477|0),666643,0)|0); + $1483 = tempRet0; + $1484 = (_i64Add(($1358|0),($1359|0),($1482|0),($1483|0))|0); + $1485 = tempRet0; + $1486 = (___muldi3(($1476|0),($1477|0),470296,0)|0); + $1487 = tempRet0; + $1488 = (___muldi3(($1476|0),($1477|0),654183,0)|0); + $1489 = tempRet0; + $1490 = (___muldi3(($1476|0),($1477|0),-997805,-1)|0); + $1491 = tempRet0; + $1492 = (___muldi3(($1476|0),($1477|0),136657,0)|0); + $1493 = tempRet0; + $1494 = (___muldi3(($1476|0),($1477|0),-683901,-1)|0); + $1495 = tempRet0; + $1496 = (_bitshift64Ashr(($1484|0),($1485|0),21)|0); + $1497 = tempRet0; + $1498 = (_i64Add(($1486|0),($1487|0),($1354|0),($1355|0))|0); + $1499 = tempRet0; + $1500 = (_i64Subtract(($1498|0),($1499|0),($1438|0),($1439|0))|0); + $1501 = tempRet0; + $1502 = (_i64Add(($1500|0),($1501|0),($1496|0),($1497|0))|0); + $1503 = tempRet0; + $1504 = (_bitshift64Shl(($1496|0),($1497|0),21)|0); + $1505 = tempRet0; + $1506 = (_i64Subtract(($1484|0),($1485|0),($1504|0),($1505|0))|0); + $1507 = tempRet0; + $1508 = (_bitshift64Ashr(($1502|0),($1503|0),21)|0); + $1509 = tempRet0; + $1510 = (_i64Add(($1488|0),($1489|0),($1332|0),($1333|0))|0); + $1511 = tempRet0; + $1512 = (_i64Subtract(($1510|0),($1511|0),($1372|0),($1373|0))|0); + $1513 = tempRet0; + $1514 = (_i64Add(($1512|0),($1513|0),($1436|0),($1437|0))|0); + $1515 = tempRet0; + $1516 = (_i64Add(($1514|0),($1515|0),($1508|0),($1509|0))|0); + $1517 = tempRet0; + $1518 = (_bitshift64Shl(($1508|0),($1509|0),21)|0); + $1519 = tempRet0; + $1520 = (_i64Subtract(($1502|0),($1503|0),($1518|0),($1519|0))|0); + $1521 = tempRet0; + $1522 = (_bitshift64Ashr(($1516|0),($1517|0),21)|0); + $1523 = tempRet0; + $1524 = (_i64Add(($1370|0),($1371|0),($1490|0),($1491|0))|0); + $1525 = tempRet0; + $1526 = (_i64Subtract(($1524|0),($1525|0),($1444|0),($1445|0))|0); + $1527 = tempRet0; + $1528 = (_i64Add(($1526|0),($1527|0),($1522|0),($1523|0))|0); + $1529 = tempRet0; + $1530 = (_bitshift64Shl(($1522|0),($1523|0),21)|0); + $1531 = tempRet0; + $1532 = (_i64Subtract(($1516|0),($1517|0),($1530|0),($1531|0))|0); + $1533 = tempRet0; + $1534 = (_bitshift64Ashr(($1528|0),($1529|0),21)|0); + $1535 = tempRet0; + $1536 = (_i64Add(($1492|0),($1493|0),($1342|0),($1343|0))|0); + $1537 = tempRet0; + $1538 = (_i64Subtract(($1536|0),($1537|0),($1386|0),($1387|0))|0); + $1539 = tempRet0; + $1540 = (_i64Add(($1538|0),($1539|0),($1442|0),($1443|0))|0); + $1541 = tempRet0; + $1542 = (_i64Add(($1540|0),($1541|0),($1534|0),($1535|0))|0); + $1543 = tempRet0; + $1544 = (_bitshift64Shl(($1534|0),($1535|0),21)|0); + $1545 = tempRet0; + $1546 = (_i64Subtract(($1528|0),($1529|0),($1544|0),($1545|0))|0); + $1547 = tempRet0; + $1548 = (_bitshift64Ashr(($1542|0),($1543|0),21)|0); + $1549 = tempRet0; + $1550 = (_i64Add(($1384|0),($1385|0),($1494|0),($1495|0))|0); + $1551 = tempRet0; + $1552 = (_i64Subtract(($1550|0),($1551|0),($1452|0),($1453|0))|0); + $1553 = tempRet0; + $1554 = (_i64Add(($1552|0),($1553|0),($1548|0),($1549|0))|0); + $1555 = tempRet0; + $1556 = (_bitshift64Shl(($1548|0),($1549|0),21)|0); + $1557 = tempRet0; + $1558 = (_i64Subtract(($1542|0),($1543|0),($1556|0),($1557|0))|0); + $1559 = tempRet0; + $1560 = (_bitshift64Ashr(($1554|0),($1555|0),21)|0); + $1561 = tempRet0; + $1562 = (_i64Add(($1450|0),($1451|0),($1560|0),($1561|0))|0); + $1563 = tempRet0; + $1564 = (_bitshift64Shl(($1560|0),($1561|0),21)|0); + $1565 = tempRet0; + $1566 = (_i64Subtract(($1554|0),($1555|0),($1564|0),($1565|0))|0); + $1567 = tempRet0; + $1568 = (_bitshift64Ashr(($1562|0),($1563|0),21)|0); + $1569 = tempRet0; + $1570 = (_i64Add(($1568|0),($1569|0),($1462|0),($1463|0))|0); + $1571 = tempRet0; + $1572 = (_bitshift64Shl(($1568|0),($1569|0),21)|0); + $1573 = tempRet0; + $1574 = (_i64Subtract(($1562|0),($1563|0),($1572|0),($1573|0))|0); + $1575 = tempRet0; + $1576 = (_bitshift64Ashr(($1570|0),($1571|0),21)|0); + $1577 = tempRet0; + $1578 = (_i64Add(($1458|0),($1459|0),($1576|0),($1577|0))|0); + $1579 = tempRet0; + $1580 = (_bitshift64Shl(($1576|0),($1577|0),21)|0); + $1581 = tempRet0; + $1582 = (_i64Subtract(($1570|0),($1571|0),($1580|0),($1581|0))|0); + $1583 = tempRet0; + $1584 = (_bitshift64Ashr(($1578|0),($1579|0),21)|0); + $1585 = tempRet0; + $1586 = (_i64Add(($1584|0),($1585|0),($1472|0),($1473|0))|0); + $1587 = tempRet0; + $1588 = (_bitshift64Shl(($1584|0),($1585|0),21)|0); + $1589 = tempRet0; + $1590 = (_i64Subtract(($1578|0),($1579|0),($1588|0),($1589|0))|0); + $1591 = tempRet0; + $1592 = (_bitshift64Ashr(($1586|0),($1587|0),21)|0); + $1593 = tempRet0; + $1594 = (_i64Add(($1468|0),($1469|0),($1592|0),($1593|0))|0); + $1595 = tempRet0; + $1596 = (_bitshift64Shl(($1592|0),($1593|0),21)|0); + $1597 = tempRet0; + $1598 = (_i64Subtract(($1586|0),($1587|0),($1596|0),($1597|0))|0); + $1599 = tempRet0; + $1600 = (_bitshift64Ashr(($1594|0),($1595|0),21)|0); + $1601 = tempRet0; + $1602 = (_i64Add(($1600|0),($1601|0),($1480|0),($1481|0))|0); + $1603 = tempRet0; + $1604 = (_bitshift64Shl(($1600|0),($1601|0),21)|0); + $1605 = tempRet0; + $1606 = (_i64Subtract(($1594|0),($1595|0),($1604|0),($1605|0))|0); + $1607 = tempRet0; + $1608 = (_bitshift64Ashr(($1602|0),($1603|0),21)|0); + $1609 = tempRet0; + $1610 = (_bitshift64Shl(($1608|0),($1609|0),21)|0); + $1611 = tempRet0; + $1612 = (_i64Subtract(($1602|0),($1603|0),($1610|0),($1611|0))|0); + $1613 = tempRet0; + $1614 = (___muldi3(($1608|0),($1609|0),666643,0)|0); + $1615 = tempRet0; + $1616 = (_i64Add(($1614|0),($1615|0),($1506|0),($1507|0))|0); + $1617 = tempRet0; + $1618 = (___muldi3(($1608|0),($1609|0),470296,0)|0); + $1619 = tempRet0; + $1620 = (_i64Add(($1520|0),($1521|0),($1618|0),($1619|0))|0); + $1621 = tempRet0; + $1622 = (___muldi3(($1608|0),($1609|0),654183,0)|0); + $1623 = tempRet0; + $1624 = (_i64Add(($1532|0),($1533|0),($1622|0),($1623|0))|0); + $1625 = tempRet0; + $1626 = (___muldi3(($1608|0),($1609|0),-997805,-1)|0); + $1627 = tempRet0; + $1628 = (_i64Add(($1546|0),($1547|0),($1626|0),($1627|0))|0); + $1629 = tempRet0; + $1630 = (___muldi3(($1608|0),($1609|0),136657,0)|0); + $1631 = tempRet0; + $1632 = (_i64Add(($1558|0),($1559|0),($1630|0),($1631|0))|0); + $1633 = tempRet0; + $1634 = (___muldi3(($1608|0),($1609|0),-683901,-1)|0); + $1635 = tempRet0; + $1636 = (_i64Add(($1566|0),($1567|0),($1634|0),($1635|0))|0); + $1637 = tempRet0; + $1638 = (_bitshift64Ashr(($1616|0),($1617|0),21)|0); + $1639 = tempRet0; + $1640 = (_i64Add(($1620|0),($1621|0),($1638|0),($1639|0))|0); + $1641 = tempRet0; + $1642 = (_bitshift64Shl(($1638|0),($1639|0),21)|0); + $1643 = tempRet0; + $1644 = (_i64Subtract(($1616|0),($1617|0),($1642|0),($1643|0))|0); + $1645 = tempRet0; + $1646 = (_bitshift64Ashr(($1640|0),($1641|0),21)|0); + $1647 = tempRet0; + $1648 = (_i64Add(($1624|0),($1625|0),($1646|0),($1647|0))|0); + $1649 = tempRet0; + $1650 = (_bitshift64Shl(($1646|0),($1647|0),21)|0); + $1651 = tempRet0; + $1652 = (_i64Subtract(($1640|0),($1641|0),($1650|0),($1651|0))|0); + $1653 = tempRet0; + $1654 = (_bitshift64Ashr(($1648|0),($1649|0),21)|0); + $1655 = tempRet0; + $1656 = (_i64Add(($1628|0),($1629|0),($1654|0),($1655|0))|0); + $1657 = tempRet0; + $1658 = (_bitshift64Shl(($1654|0),($1655|0),21)|0); + $1659 = tempRet0; + $1660 = (_i64Subtract(($1648|0),($1649|0),($1658|0),($1659|0))|0); + $1661 = tempRet0; + $1662 = (_bitshift64Ashr(($1656|0),($1657|0),21)|0); + $1663 = tempRet0; + $1664 = (_i64Add(($1632|0),($1633|0),($1662|0),($1663|0))|0); + $1665 = tempRet0; + $1666 = (_bitshift64Shl(($1662|0),($1663|0),21)|0); + $1667 = tempRet0; + $1668 = (_i64Subtract(($1656|0),($1657|0),($1666|0),($1667|0))|0); + $1669 = tempRet0; + $1670 = (_bitshift64Ashr(($1664|0),($1665|0),21)|0); + $1671 = tempRet0; + $1672 = (_i64Add(($1636|0),($1637|0),($1670|0),($1671|0))|0); + $1673 = tempRet0; + $1674 = (_bitshift64Shl(($1670|0),($1671|0),21)|0); + $1675 = tempRet0; + $1676 = (_i64Subtract(($1664|0),($1665|0),($1674|0),($1675|0))|0); + $1677 = tempRet0; + $1678 = (_bitshift64Ashr(($1672|0),($1673|0),21)|0); + $1679 = tempRet0; + $1680 = (_i64Add(($1678|0),($1679|0),($1574|0),($1575|0))|0); + $1681 = tempRet0; + $1682 = (_bitshift64Shl(($1678|0),($1679|0),21)|0); + $1683 = tempRet0; + $1684 = (_i64Subtract(($1672|0),($1673|0),($1682|0),($1683|0))|0); + $1685 = tempRet0; + $1686 = (_bitshift64Ashr(($1680|0),($1681|0),21)|0); + $1687 = tempRet0; + $1688 = (_i64Add(($1686|0),($1687|0),($1582|0),($1583|0))|0); + $1689 = tempRet0; + $1690 = (_bitshift64Shl(($1686|0),($1687|0),21)|0); + $1691 = tempRet0; + $1692 = (_i64Subtract(($1680|0),($1681|0),($1690|0),($1691|0))|0); + $1693 = tempRet0; + $1694 = (_bitshift64Ashr(($1688|0),($1689|0),21)|0); + $1695 = tempRet0; + $1696 = (_i64Add(($1694|0),($1695|0),($1590|0),($1591|0))|0); + $1697 = tempRet0; + $1698 = (_bitshift64Shl(($1694|0),($1695|0),21)|0); + $1699 = tempRet0; + $1700 = (_i64Subtract(($1688|0),($1689|0),($1698|0),($1699|0))|0); + $1701 = tempRet0; + $1702 = (_bitshift64Ashr(($1696|0),($1697|0),21)|0); + $1703 = tempRet0; + $1704 = (_i64Add(($1702|0),($1703|0),($1598|0),($1599|0))|0); + $1705 = tempRet0; + $1706 = (_bitshift64Shl(($1702|0),($1703|0),21)|0); + $1707 = tempRet0; + $1708 = (_i64Subtract(($1696|0),($1697|0),($1706|0),($1707|0))|0); + $1709 = tempRet0; + $1710 = (_bitshift64Ashr(($1704|0),($1705|0),21)|0); + $1711 = tempRet0; + $1712 = (_i64Add(($1710|0),($1711|0),($1606|0),($1607|0))|0); + $1713 = tempRet0; + $1714 = (_bitshift64Shl(($1710|0),($1711|0),21)|0); + $1715 = tempRet0; + $1716 = (_i64Subtract(($1704|0),($1705|0),($1714|0),($1715|0))|0); + $1717 = tempRet0; + $1718 = (_bitshift64Ashr(($1712|0),($1713|0),21)|0); + $1719 = tempRet0; + $1720 = (_i64Add(($1718|0),($1719|0),($1612|0),($1613|0))|0); + $1721 = tempRet0; + $1722 = (_bitshift64Shl(($1718|0),($1719|0),21)|0); + $1723 = tempRet0; + $1724 = (_i64Subtract(($1712|0),($1713|0),($1722|0),($1723|0))|0); + $1725 = tempRet0; + $1726 = $1644&255; + HEAP8[$s>>0] = $1726; + $1727 = (_bitshift64Lshr(($1644|0),($1645|0),8)|0); + $1728 = tempRet0; + $1729 = $1727&255; + $1730 = (($s) + 1|0); + HEAP8[$1730>>0] = $1729; + $1731 = (_bitshift64Lshr(($1644|0),($1645|0),16)|0); + $1732 = tempRet0; + $1733 = (_bitshift64Shl(($1652|0),($1653|0),5)|0); + $1734 = tempRet0; + $1735 = $1733 | $1731; + $1734 | $1732; + $1736 = $1735&255; + $1737 = (($s) + 2|0); + HEAP8[$1737>>0] = $1736; + $1738 = (_bitshift64Lshr(($1652|0),($1653|0),3)|0); + $1739 = tempRet0; + $1740 = $1738&255; + $1741 = (($s) + 3|0); + HEAP8[$1741>>0] = $1740; + $1742 = (_bitshift64Lshr(($1652|0),($1653|0),11)|0); + $1743 = tempRet0; + $1744 = $1742&255; + $1745 = (($s) + 4|0); + HEAP8[$1745>>0] = $1744; + $1746 = (_bitshift64Lshr(($1652|0),($1653|0),19)|0); + $1747 = tempRet0; + $1748 = (_bitshift64Shl(($1660|0),($1661|0),2)|0); + $1749 = tempRet0; + $1750 = $1748 | $1746; + $1749 | $1747; + $1751 = $1750&255; + $1752 = (($s) + 5|0); + HEAP8[$1752>>0] = $1751; + $1753 = (_bitshift64Lshr(($1660|0),($1661|0),6)|0); + $1754 = tempRet0; + $1755 = $1753&255; + $1756 = (($s) + 6|0); + HEAP8[$1756>>0] = $1755; + $1757 = (_bitshift64Lshr(($1660|0),($1661|0),14)|0); + $1758 = tempRet0; + $1759 = (_bitshift64Shl(($1668|0),($1669|0),7)|0); + $1760 = tempRet0; + $1761 = $1759 | $1757; + $1760 | $1758; + $1762 = $1761&255; + $1763 = (($s) + 7|0); + HEAP8[$1763>>0] = $1762; + $1764 = (_bitshift64Lshr(($1668|0),($1669|0),1)|0); + $1765 = tempRet0; + $1766 = $1764&255; + $1767 = (($s) + 8|0); + HEAP8[$1767>>0] = $1766; + $1768 = (_bitshift64Lshr(($1668|0),($1669|0),9)|0); + $1769 = tempRet0; + $1770 = $1768&255; + $1771 = (($s) + 9|0); + HEAP8[$1771>>0] = $1770; + $1772 = (_bitshift64Lshr(($1668|0),($1669|0),17)|0); + $1773 = tempRet0; + $1774 = (_bitshift64Shl(($1676|0),($1677|0),4)|0); + $1775 = tempRet0; + $1776 = $1774 | $1772; + $1775 | $1773; + $1777 = $1776&255; + $1778 = (($s) + 10|0); + HEAP8[$1778>>0] = $1777; + $1779 = (_bitshift64Lshr(($1676|0),($1677|0),4)|0); + $1780 = tempRet0; + $1781 = $1779&255; + $1782 = (($s) + 11|0); + HEAP8[$1782>>0] = $1781; + $1783 = (_bitshift64Lshr(($1676|0),($1677|0),12)|0); + $1784 = tempRet0; + $1785 = $1783&255; + $1786 = (($s) + 12|0); + HEAP8[$1786>>0] = $1785; + $1787 = (_bitshift64Lshr(($1676|0),($1677|0),20)|0); + $1788 = tempRet0; + $1789 = (_bitshift64Shl(($1684|0),($1685|0),1)|0); + $1790 = tempRet0; + $1791 = $1789 | $1787; + $1790 | $1788; + $1792 = $1791&255; + $1793 = (($s) + 13|0); + HEAP8[$1793>>0] = $1792; + $1794 = (_bitshift64Lshr(($1684|0),($1685|0),7)|0); + $1795 = tempRet0; + $1796 = $1794&255; + $1797 = (($s) + 14|0); + HEAP8[$1797>>0] = $1796; + $1798 = (_bitshift64Lshr(($1684|0),($1685|0),15)|0); + $1799 = tempRet0; + $1800 = (_bitshift64Shl(($1692|0),($1693|0),6)|0); + $1801 = tempRet0; + $1802 = $1800 | $1798; + $1801 | $1799; + $1803 = $1802&255; + $1804 = (($s) + 15|0); + HEAP8[$1804>>0] = $1803; + $1805 = (_bitshift64Lshr(($1692|0),($1693|0),2)|0); + $1806 = tempRet0; + $1807 = $1805&255; + $1808 = (($s) + 16|0); + HEAP8[$1808>>0] = $1807; + $1809 = (_bitshift64Lshr(($1692|0),($1693|0),10)|0); + $1810 = tempRet0; + $1811 = $1809&255; + $1812 = (($s) + 17|0); + HEAP8[$1812>>0] = $1811; + $1813 = (_bitshift64Lshr(($1692|0),($1693|0),18)|0); + $1814 = tempRet0; + $1815 = (_bitshift64Shl(($1700|0),($1701|0),3)|0); + $1816 = tempRet0; + $1817 = $1815 | $1813; + $1816 | $1814; + $1818 = $1817&255; + $1819 = (($s) + 18|0); + HEAP8[$1819>>0] = $1818; + $1820 = (_bitshift64Lshr(($1700|0),($1701|0),5)|0); + $1821 = tempRet0; + $1822 = $1820&255; + $1823 = (($s) + 19|0); + HEAP8[$1823>>0] = $1822; + $1824 = (_bitshift64Lshr(($1700|0),($1701|0),13)|0); + $1825 = tempRet0; + $1826 = $1824&255; + $1827 = (($s) + 20|0); + HEAP8[$1827>>0] = $1826; + $1828 = $1708&255; + $1829 = (($s) + 21|0); + HEAP8[$1829>>0] = $1828; + $1830 = (_bitshift64Lshr(($1708|0),($1709|0),8)|0); + $1831 = tempRet0; + $1832 = $1830&255; + $1833 = (($s) + 22|0); + HEAP8[$1833>>0] = $1832; + $1834 = (_bitshift64Lshr(($1708|0),($1709|0),16)|0); + $1835 = tempRet0; + $1836 = (_bitshift64Shl(($1716|0),($1717|0),5)|0); + $1837 = tempRet0; + $1838 = $1836 | $1834; + $1837 | $1835; + $1839 = $1838&255; + $1840 = (($s) + 23|0); + HEAP8[$1840>>0] = $1839; + $1841 = (_bitshift64Lshr(($1716|0),($1717|0),3)|0); + $1842 = tempRet0; + $1843 = $1841&255; + $1844 = (($s) + 24|0); + HEAP8[$1844>>0] = $1843; + $1845 = (_bitshift64Lshr(($1716|0),($1717|0),11)|0); + $1846 = tempRet0; + $1847 = $1845&255; + $1848 = (($s) + 25|0); + HEAP8[$1848>>0] = $1847; + $1849 = (_bitshift64Lshr(($1716|0),($1717|0),19)|0); + $1850 = tempRet0; + $1851 = (_bitshift64Shl(($1724|0),($1725|0),2)|0); + $1852 = tempRet0; + $1853 = $1851 | $1849; + $1852 | $1850; + $1854 = $1853&255; + $1855 = (($s) + 26|0); + HEAP8[$1855>>0] = $1854; + $1856 = (_bitshift64Lshr(($1724|0),($1725|0),6)|0); + $1857 = tempRet0; + $1858 = $1856&255; + $1859 = (($s) + 27|0); + HEAP8[$1859>>0] = $1858; + $1860 = (_bitshift64Lshr(($1724|0),($1725|0),14)|0); + $1861 = tempRet0; + $1862 = (_bitshift64Shl(($1720|0),($1721|0),7)|0); + $1863 = tempRet0; + $1864 = $1860 | $1862; + $1861 | $1863; + $1865 = $1864&255; + $1866 = (($s) + 28|0); + HEAP8[$1866>>0] = $1865; + $1867 = (_bitshift64Lshr(($1720|0),($1721|0),1)|0); + $1868 = tempRet0; + $1869 = $1867&255; + $1870 = (($s) + 29|0); + HEAP8[$1870>>0] = $1869; + $1871 = (_bitshift64Lshr(($1720|0),($1721|0),9)|0); + $1872 = tempRet0; + $1873 = $1871&255; + $1874 = (($s) + 30|0); + HEAP8[$1874>>0] = $1873; + $1875 = (_bitshift64Lshr(($1720|0),($1721|0),17)|0); + $1876 = tempRet0; + $1877 = $1875&255; + $1878 = (($s) + 31|0); + HEAP8[$1878>>0] = $1877; + STACKTOP = sp;return; +} +function _load_347($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + tempRet0 = $14; + STACKTOP = sp;return ($13|0); +} +function _load_448($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + $15 = (($in) + 3|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16&255; + $18 = (_bitshift64Shl(($17|0),0,24)|0); + $19 = tempRet0; + $20 = $13 | $18; + $21 = $14 | $19; + tempRet0 = $21; + STACKTOP = sp;return ($20|0); +} +function _crypto_sign_ed25519_ref10_sc_reduce($s) { + $s = $s|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; + var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0; + var $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0; + var $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0; + var $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0; + var $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0; + var $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0; + var $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0; + var $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0; + var $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0; + var $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0; + var $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0; + var $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0; + var $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0; + var $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0; + var $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0; + var $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0; + var $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0; + var $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0; + var $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0; + var $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0; + var $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0; + var $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0; + var $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0; + var $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0; + var $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0; + var $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0; + var $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0; + var $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0; + var $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0; + var $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0; + var $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0; + var $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0; + var $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0; + var $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0; + var $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0; + var $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0; + var $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0; + var $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0; + var $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0; + var $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0; + var $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0; + var $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0; + var $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0; + var $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0; + var $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0; + var $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0; + var $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0; + var $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0; + var $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0; + var $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0; + var $997 = 0, $998 = 0, $999 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (_load_351($s)|0); + $1 = tempRet0; + $2 = $0 & 2097151; + $3 = (($s) + 2|0); + $4 = (_load_452($3)|0); + $5 = tempRet0; + $6 = (_bitshift64Lshr(($4|0),($5|0),5)|0); + $7 = tempRet0; + $8 = $6 & 2097151; + $9 = (($s) + 5|0); + $10 = (_load_351($9)|0); + $11 = tempRet0; + $12 = (_bitshift64Lshr(($10|0),($11|0),2)|0); + $13 = tempRet0; + $14 = $12 & 2097151; + $15 = (($s) + 7|0); + $16 = (_load_452($15)|0); + $17 = tempRet0; + $18 = (_bitshift64Lshr(($16|0),($17|0),7)|0); + $19 = tempRet0; + $20 = $18 & 2097151; + $21 = (($s) + 10|0); + $22 = (_load_452($21)|0); + $23 = tempRet0; + $24 = (_bitshift64Lshr(($22|0),($23|0),4)|0); + $25 = tempRet0; + $26 = $24 & 2097151; + $27 = (($s) + 13|0); + $28 = (_load_351($27)|0); + $29 = tempRet0; + $30 = (_bitshift64Lshr(($28|0),($29|0),1)|0); + $31 = tempRet0; + $32 = $30 & 2097151; + $33 = (($s) + 15|0); + $34 = (_load_452($33)|0); + $35 = tempRet0; + $36 = (_bitshift64Lshr(($34|0),($35|0),6)|0); + $37 = tempRet0; + $38 = $36 & 2097151; + $39 = (($s) + 18|0); + $40 = (_load_351($39)|0); + $41 = tempRet0; + $42 = (_bitshift64Lshr(($40|0),($41|0),3)|0); + $43 = tempRet0; + $44 = $42 & 2097151; + $45 = (($s) + 21|0); + $46 = (_load_351($45)|0); + $47 = tempRet0; + $48 = $46 & 2097151; + $49 = (($s) + 23|0); + $50 = (_load_452($49)|0); + $51 = tempRet0; + $52 = (_bitshift64Lshr(($50|0),($51|0),5)|0); + $53 = tempRet0; + $54 = $52 & 2097151; + $55 = (($s) + 26|0); + $56 = (_load_351($55)|0); + $57 = tempRet0; + $58 = (_bitshift64Lshr(($56|0),($57|0),2)|0); + $59 = tempRet0; + $60 = $58 & 2097151; + $61 = (($s) + 28|0); + $62 = (_load_452($61)|0); + $63 = tempRet0; + $64 = (_bitshift64Lshr(($62|0),($63|0),7)|0); + $65 = tempRet0; + $66 = $64 & 2097151; + $67 = (($s) + 31|0); + $68 = (_load_452($67)|0); + $69 = tempRet0; + $70 = (_bitshift64Lshr(($68|0),($69|0),4)|0); + $71 = tempRet0; + $72 = $70 & 2097151; + $73 = (($s) + 34|0); + $74 = (_load_351($73)|0); + $75 = tempRet0; + $76 = (_bitshift64Lshr(($74|0),($75|0),1)|0); + $77 = tempRet0; + $78 = $76 & 2097151; + $79 = (($s) + 36|0); + $80 = (_load_452($79)|0); + $81 = tempRet0; + $82 = (_bitshift64Lshr(($80|0),($81|0),6)|0); + $83 = tempRet0; + $84 = $82 & 2097151; + $85 = (($s) + 39|0); + $86 = (_load_351($85)|0); + $87 = tempRet0; + $88 = (_bitshift64Lshr(($86|0),($87|0),3)|0); + $89 = tempRet0; + $90 = $88 & 2097151; + $91 = (($s) + 42|0); + $92 = (_load_351($91)|0); + $93 = tempRet0; + $94 = $92 & 2097151; + $95 = (($s) + 44|0); + $96 = (_load_452($95)|0); + $97 = tempRet0; + $98 = (_bitshift64Lshr(($96|0),($97|0),5)|0); + $99 = tempRet0; + $100 = $98 & 2097151; + $101 = (($s) + 47|0); + $102 = (_load_351($101)|0); + $103 = tempRet0; + $104 = (_bitshift64Lshr(($102|0),($103|0),2)|0); + $105 = tempRet0; + $106 = $104 & 2097151; + $107 = (($s) + 49|0); + $108 = (_load_452($107)|0); + $109 = tempRet0; + $110 = (_bitshift64Lshr(($108|0),($109|0),7)|0); + $111 = tempRet0; + $112 = $110 & 2097151; + $113 = (($s) + 52|0); + $114 = (_load_452($113)|0); + $115 = tempRet0; + $116 = (_bitshift64Lshr(($114|0),($115|0),4)|0); + $117 = tempRet0; + $118 = $116 & 2097151; + $119 = (($s) + 55|0); + $120 = (_load_351($119)|0); + $121 = tempRet0; + $122 = (_bitshift64Lshr(($120|0),($121|0),1)|0); + $123 = tempRet0; + $124 = $122 & 2097151; + $125 = (($s) + 57|0); + $126 = (_load_452($125)|0); + $127 = tempRet0; + $128 = (_bitshift64Lshr(($126|0),($127|0),6)|0); + $129 = tempRet0; + $130 = $128 & 2097151; + $131 = (($s) + 60|0); + $132 = (_load_452($131)|0); + $133 = tempRet0; + $134 = (_bitshift64Lshr(($132|0),($133|0),3)|0); + $135 = tempRet0; + $136 = (___muldi3(($134|0),($135|0),666643,0)|0); + $137 = tempRet0; + $138 = (___muldi3(($134|0),($135|0),470296,0)|0); + $139 = tempRet0; + $140 = (___muldi3(($134|0),($135|0),654183,0)|0); + $141 = tempRet0; + $142 = (___muldi3(($134|0),($135|0),-997805,-1)|0); + $143 = tempRet0; + $144 = (___muldi3(($134|0),($135|0),136657,0)|0); + $145 = tempRet0; + $146 = (_i64Add(($144|0),($145|0),($90|0),0)|0); + $147 = tempRet0; + $148 = (___muldi3(($134|0),($135|0),-683901,-1)|0); + $149 = tempRet0; + $150 = (_i64Add(($148|0),($149|0),($94|0),0)|0); + $151 = tempRet0; + $152 = (___muldi3(($130|0),0,666643,0)|0); + $153 = tempRet0; + $154 = (___muldi3(($130|0),0,470296,0)|0); + $155 = tempRet0; + $156 = (___muldi3(($130|0),0,654183,0)|0); + $157 = tempRet0; + $158 = (___muldi3(($130|0),0,-997805,-1)|0); + $159 = tempRet0; + $160 = (___muldi3(($130|0),0,136657,0)|0); + $161 = tempRet0; + $162 = (___muldi3(($130|0),0,-683901,-1)|0); + $163 = tempRet0; + $164 = (_i64Add(($146|0),($147|0),($162|0),($163|0))|0); + $165 = tempRet0; + $166 = (___muldi3(($124|0),0,666643,0)|0); + $167 = tempRet0; + $168 = (___muldi3(($124|0),0,470296,0)|0); + $169 = tempRet0; + $170 = (___muldi3(($124|0),0,654183,0)|0); + $171 = tempRet0; + $172 = (___muldi3(($124|0),0,-997805,-1)|0); + $173 = tempRet0; + $174 = (___muldi3(($124|0),0,136657,0)|0); + $175 = tempRet0; + $176 = (___muldi3(($124|0),0,-683901,-1)|0); + $177 = tempRet0; + $178 = (_i64Add(($176|0),($177|0),($84|0),0)|0); + $179 = tempRet0; + $180 = (_i64Add(($178|0),($179|0),($142|0),($143|0))|0); + $181 = tempRet0; + $182 = (_i64Add(($180|0),($181|0),($160|0),($161|0))|0); + $183 = tempRet0; + $184 = (___muldi3(($118|0),0,666643,0)|0); + $185 = tempRet0; + $186 = (___muldi3(($118|0),0,470296,0)|0); + $187 = tempRet0; + $188 = (___muldi3(($118|0),0,654183,0)|0); + $189 = tempRet0; + $190 = (___muldi3(($118|0),0,-997805,-1)|0); + $191 = tempRet0; + $192 = (___muldi3(($118|0),0,136657,0)|0); + $193 = tempRet0; + $194 = (___muldi3(($118|0),0,-683901,-1)|0); + $195 = tempRet0; + $196 = (___muldi3(($112|0),0,666643,0)|0); + $197 = tempRet0; + $198 = (___muldi3(($112|0),0,470296,0)|0); + $199 = tempRet0; + $200 = (___muldi3(($112|0),0,654183,0)|0); + $201 = tempRet0; + $202 = (___muldi3(($112|0),0,-997805,-1)|0); + $203 = tempRet0; + $204 = (___muldi3(($112|0),0,136657,0)|0); + $205 = tempRet0; + $206 = (___muldi3(($112|0),0,-683901,-1)|0); + $207 = tempRet0; + $208 = (_i64Add(($206|0),($207|0),($72|0),0)|0); + $209 = tempRet0; + $210 = (_i64Add(($208|0),($209|0),($192|0),($193|0))|0); + $211 = tempRet0; + $212 = (_i64Add(($210|0),($211|0),($172|0),($173|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($212|0),($213|0),($138|0),($139|0))|0); + $215 = tempRet0; + $216 = (_i64Add(($214|0),($215|0),($156|0),($157|0))|0); + $217 = tempRet0; + $218 = (___muldi3(($106|0),0,666643,0)|0); + $219 = tempRet0; + $220 = (_i64Add(($218|0),($219|0),($38|0),0)|0); + $221 = tempRet0; + $222 = (___muldi3(($106|0),0,470296,0)|0); + $223 = tempRet0; + $224 = (___muldi3(($106|0),0,654183,0)|0); + $225 = tempRet0; + $226 = (_i64Add(($224|0),($225|0),($48|0),0)|0); + $227 = tempRet0; + $228 = (_i64Add(($226|0),($227|0),($198|0),($199|0))|0); + $229 = tempRet0; + $230 = (_i64Add(($228|0),($229|0),($184|0),($185|0))|0); + $231 = tempRet0; + $232 = (___muldi3(($106|0),0,-997805,-1)|0); + $233 = tempRet0; + $234 = (___muldi3(($106|0),0,136657,0)|0); + $235 = tempRet0; + $236 = (_i64Add(($234|0),($235|0),($60|0),0)|0); + $237 = tempRet0; + $238 = (_i64Add(($236|0),($237|0),($202|0),($203|0))|0); + $239 = tempRet0; + $240 = (_i64Add(($238|0),($239|0),($188|0),($189|0))|0); + $241 = tempRet0; + $242 = (_i64Add(($240|0),($241|0),($168|0),($169|0))|0); + $243 = tempRet0; + $244 = (_i64Add(($242|0),($243|0),($152|0),($153|0))|0); + $245 = tempRet0; + $246 = (___muldi3(($106|0),0,-683901,-1)|0); + $247 = tempRet0; + $248 = (_i64Add(($220|0),($221|0),1048576,0)|0); + $249 = tempRet0; + $250 = (_bitshift64Lshr(($248|0),($249|0),21)|0); + $251 = tempRet0; + $252 = (_i64Add(($222|0),($223|0),($44|0),0)|0); + $253 = tempRet0; + $254 = (_i64Add(($252|0),($253|0),($196|0),($197|0))|0); + $255 = tempRet0; + $256 = (_i64Add(($254|0),($255|0),($250|0),($251|0))|0); + $257 = tempRet0; + $258 = (_bitshift64Shl(($250|0),($251|0),21)|0); + $259 = tempRet0; + $260 = (_i64Subtract(($220|0),($221|0),($258|0),($259|0))|0); + $261 = tempRet0; + $262 = (_i64Add(($230|0),($231|0),1048576,0)|0); + $263 = tempRet0; + $264 = (_bitshift64Lshr(($262|0),($263|0),21)|0); + $265 = tempRet0; + $266 = (_i64Add(($232|0),($233|0),($54|0),0)|0); + $267 = tempRet0; + $268 = (_i64Add(($266|0),($267|0),($200|0),($201|0))|0); + $269 = tempRet0; + $270 = (_i64Add(($268|0),($269|0),($186|0),($187|0))|0); + $271 = tempRet0; + $272 = (_i64Add(($270|0),($271|0),($166|0),($167|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($264|0),($265|0))|0); + $275 = tempRet0; + $276 = (_bitshift64Shl(($264|0),($265|0),21)|0); + $277 = tempRet0; + $278 = (_i64Subtract(($230|0),($231|0),($276|0),($277|0))|0); + $279 = tempRet0; + $280 = (_i64Add(($244|0),($245|0),1048576,0)|0); + $281 = tempRet0; + $282 = (_bitshift64Ashr(($280|0),($281|0),21)|0); + $283 = tempRet0; + $284 = (_i64Add(($246|0),($247|0),($66|0),0)|0); + $285 = tempRet0; + $286 = (_i64Add(($284|0),($285|0),($204|0),($205|0))|0); + $287 = tempRet0; + $288 = (_i64Add(($286|0),($287|0),($190|0),($191|0))|0); + $289 = tempRet0; + $290 = (_i64Add(($288|0),($289|0),($170|0),($171|0))|0); + $291 = tempRet0; + $292 = (_i64Add(($290|0),($291|0),($136|0),($137|0))|0); + $293 = tempRet0; + $294 = (_i64Add(($292|0),($293|0),($154|0),($155|0))|0); + $295 = tempRet0; + $296 = (_i64Add(($294|0),($295|0),($282|0),($283|0))|0); + $297 = tempRet0; + $298 = (_bitshift64Shl(($282|0),($283|0),21)|0); + $299 = tempRet0; + $300 = (_i64Subtract(($244|0),($245|0),($298|0),($299|0))|0); + $301 = tempRet0; + $302 = (_i64Add(($216|0),($217|0),1048576,0)|0); + $303 = tempRet0; + $304 = (_bitshift64Ashr(($302|0),($303|0),21)|0); + $305 = tempRet0; + $306 = (_i64Add(($194|0),($195|0),($78|0),0)|0); + $307 = tempRet0; + $308 = (_i64Add(($306|0),($307|0),($174|0),($175|0))|0); + $309 = tempRet0; + $310 = (_i64Add(($308|0),($309|0),($140|0),($141|0))|0); + $311 = tempRet0; + $312 = (_i64Add(($310|0),($311|0),($158|0),($159|0))|0); + $313 = tempRet0; + $314 = (_i64Add(($312|0),($313|0),($304|0),($305|0))|0); + $315 = tempRet0; + $316 = (_bitshift64Shl(($304|0),($305|0),21)|0); + $317 = tempRet0; + $318 = (_i64Subtract(($216|0),($217|0),($316|0),($317|0))|0); + $319 = tempRet0; + $320 = (_i64Add(($182|0),($183|0),1048576,0)|0); + $321 = tempRet0; + $322 = (_bitshift64Ashr(($320|0),($321|0),21)|0); + $323 = tempRet0; + $324 = (_i64Add(($164|0),($165|0),($322|0),($323|0))|0); + $325 = tempRet0; + $326 = (_bitshift64Shl(($322|0),($323|0),21)|0); + $327 = tempRet0; + $328 = (_i64Subtract(($182|0),($183|0),($326|0),($327|0))|0); + $329 = tempRet0; + $330 = (_i64Add(($150|0),($151|0),1048576,0)|0); + $331 = tempRet0; + $332 = (_bitshift64Ashr(($330|0),($331|0),21)|0); + $333 = tempRet0; + $334 = (_i64Add(($332|0),($333|0),($100|0),0)|0); + $335 = tempRet0; + $336 = (_bitshift64Shl(($332|0),($333|0),21)|0); + $337 = tempRet0; + $338 = (_i64Subtract(($150|0),($151|0),($336|0),($337|0))|0); + $339 = tempRet0; + $340 = (_i64Add(($256|0),($257|0),1048576,0)|0); + $341 = tempRet0; + $342 = (_bitshift64Lshr(($340|0),($341|0),21)|0); + $343 = tempRet0; + $344 = (_i64Add(($278|0),($279|0),($342|0),($343|0))|0); + $345 = tempRet0; + $346 = (_bitshift64Shl(($342|0),($343|0),21)|0); + $347 = tempRet0; + $348 = (_i64Subtract(($256|0),($257|0),($346|0),($347|0))|0); + $349 = tempRet0; + $350 = (_i64Add(($274|0),($275|0),1048576,0)|0); + $351 = tempRet0; + $352 = (_bitshift64Ashr(($350|0),($351|0),21)|0); + $353 = tempRet0; + $354 = (_i64Add(($300|0),($301|0),($352|0),($353|0))|0); + $355 = tempRet0; + $356 = (_bitshift64Shl(($352|0),($353|0),21)|0); + $357 = tempRet0; + $358 = (_i64Subtract(($274|0),($275|0),($356|0),($357|0))|0); + $359 = tempRet0; + $360 = (_i64Add(($296|0),($297|0),1048576,0)|0); + $361 = tempRet0; + $362 = (_bitshift64Ashr(($360|0),($361|0),21)|0); + $363 = tempRet0; + $364 = (_i64Add(($318|0),($319|0),($362|0),($363|0))|0); + $365 = tempRet0; + $366 = (_bitshift64Shl(($362|0),($363|0),21)|0); + $367 = tempRet0; + $368 = (_i64Subtract(($296|0),($297|0),($366|0),($367|0))|0); + $369 = tempRet0; + $370 = (_i64Add(($314|0),($315|0),1048576,0)|0); + $371 = tempRet0; + $372 = (_bitshift64Ashr(($370|0),($371|0),21)|0); + $373 = tempRet0; + $374 = (_i64Add(($372|0),($373|0),($328|0),($329|0))|0); + $375 = tempRet0; + $376 = (_bitshift64Shl(($372|0),($373|0),21)|0); + $377 = tempRet0; + $378 = (_i64Subtract(($314|0),($315|0),($376|0),($377|0))|0); + $379 = tempRet0; + $380 = (_i64Add(($324|0),($325|0),1048576,0)|0); + $381 = tempRet0; + $382 = (_bitshift64Ashr(($380|0),($381|0),21)|0); + $383 = tempRet0; + $384 = (_i64Add(($382|0),($383|0),($338|0),($339|0))|0); + $385 = tempRet0; + $386 = (_bitshift64Shl(($382|0),($383|0),21)|0); + $387 = tempRet0; + $388 = (_i64Subtract(($324|0),($325|0),($386|0),($387|0))|0); + $389 = tempRet0; + $390 = (___muldi3(($334|0),($335|0),666643,0)|0); + $391 = tempRet0; + $392 = (_i64Add(($390|0),($391|0),($32|0),0)|0); + $393 = tempRet0; + $394 = (___muldi3(($334|0),($335|0),470296,0)|0); + $395 = tempRet0; + $396 = (_i64Add(($260|0),($261|0),($394|0),($395|0))|0); + $397 = tempRet0; + $398 = (___muldi3(($334|0),($335|0),654183,0)|0); + $399 = tempRet0; + $400 = (_i64Add(($348|0),($349|0),($398|0),($399|0))|0); + $401 = tempRet0; + $402 = (___muldi3(($334|0),($335|0),-997805,-1)|0); + $403 = tempRet0; + $404 = (_i64Add(($344|0),($345|0),($402|0),($403|0))|0); + $405 = tempRet0; + $406 = (___muldi3(($334|0),($335|0),136657,0)|0); + $407 = tempRet0; + $408 = (_i64Add(($358|0),($359|0),($406|0),($407|0))|0); + $409 = tempRet0; + $410 = (___muldi3(($334|0),($335|0),-683901,-1)|0); + $411 = tempRet0; + $412 = (_i64Add(($354|0),($355|0),($410|0),($411|0))|0); + $413 = tempRet0; + $414 = (___muldi3(($384|0),($385|0),666643,0)|0); + $415 = tempRet0; + $416 = (___muldi3(($384|0),($385|0),470296,0)|0); + $417 = tempRet0; + $418 = (___muldi3(($384|0),($385|0),654183,0)|0); + $419 = tempRet0; + $420 = (_i64Add(($396|0),($397|0),($418|0),($419|0))|0); + $421 = tempRet0; + $422 = (___muldi3(($384|0),($385|0),-997805,-1)|0); + $423 = tempRet0; + $424 = (_i64Add(($400|0),($401|0),($422|0),($423|0))|0); + $425 = tempRet0; + $426 = (___muldi3(($384|0),($385|0),136657,0)|0); + $427 = tempRet0; + $428 = (_i64Add(($404|0),($405|0),($426|0),($427|0))|0); + $429 = tempRet0; + $430 = (___muldi3(($384|0),($385|0),-683901,-1)|0); + $431 = tempRet0; + $432 = (_i64Add(($408|0),($409|0),($430|0),($431|0))|0); + $433 = tempRet0; + $434 = (___muldi3(($388|0),($389|0),666643,0)|0); + $435 = tempRet0; + $436 = (___muldi3(($388|0),($389|0),470296,0)|0); + $437 = tempRet0; + $438 = (___muldi3(($388|0),($389|0),654183,0)|0); + $439 = tempRet0; + $440 = (___muldi3(($388|0),($389|0),-997805,-1)|0); + $441 = tempRet0; + $442 = (___muldi3(($388|0),($389|0),136657,0)|0); + $443 = tempRet0; + $444 = (___muldi3(($388|0),($389|0),-683901,-1)|0); + $445 = tempRet0; + $446 = (_i64Add(($428|0),($429|0),($444|0),($445|0))|0); + $447 = tempRet0; + $448 = (___muldi3(($374|0),($375|0),666643,0)|0); + $449 = tempRet0; + $450 = (___muldi3(($374|0),($375|0),470296,0)|0); + $451 = tempRet0; + $452 = (___muldi3(($374|0),($375|0),654183,0)|0); + $453 = tempRet0; + $454 = (___muldi3(($374|0),($375|0),-997805,-1)|0); + $455 = tempRet0; + $456 = (___muldi3(($374|0),($375|0),136657,0)|0); + $457 = tempRet0; + $458 = (___muldi3(($374|0),($375|0),-683901,-1)|0); + $459 = tempRet0; + $460 = (___muldi3(($378|0),($379|0),666643,0)|0); + $461 = tempRet0; + $462 = (___muldi3(($378|0),($379|0),470296,0)|0); + $463 = tempRet0; + $464 = (___muldi3(($378|0),($379|0),654183,0)|0); + $465 = tempRet0; + $466 = (___muldi3(($378|0),($379|0),-997805,-1)|0); + $467 = tempRet0; + $468 = (___muldi3(($378|0),($379|0),136657,0)|0); + $469 = tempRet0; + $470 = (___muldi3(($378|0),($379|0),-683901,-1)|0); + $471 = tempRet0; + $472 = (_i64Add(($420|0),($421|0),($456|0),($457|0))|0); + $473 = tempRet0; + $474 = (_i64Add(($472|0),($473|0),($440|0),($441|0))|0); + $475 = tempRet0; + $476 = (_i64Add(($474|0),($475|0),($470|0),($471|0))|0); + $477 = tempRet0; + $478 = (___muldi3(($364|0),($365|0),666643,0)|0); + $479 = tempRet0; + $480 = (_i64Add(($478|0),($479|0),($2|0),0)|0); + $481 = tempRet0; + $482 = (___muldi3(($364|0),($365|0),470296,0)|0); + $483 = tempRet0; + $484 = (___muldi3(($364|0),($365|0),654183,0)|0); + $485 = tempRet0; + $486 = (_i64Add(($484|0),($485|0),($14|0),0)|0); + $487 = tempRet0; + $488 = (_i64Add(($486|0),($487|0),($448|0),($449|0))|0); + $489 = tempRet0; + $490 = (_i64Add(($488|0),($489|0),($462|0),($463|0))|0); + $491 = tempRet0; + $492 = (___muldi3(($364|0),($365|0),-997805,-1)|0); + $493 = tempRet0; + $494 = (___muldi3(($364|0),($365|0),136657,0)|0); + $495 = tempRet0; + $496 = (_i64Add(($494|0),($495|0),($26|0),0)|0); + $497 = tempRet0; + $498 = (_i64Add(($496|0),($497|0),($414|0),($415|0))|0); + $499 = tempRet0; + $500 = (_i64Add(($498|0),($499|0),($452|0),($453|0))|0); + $501 = tempRet0; + $502 = (_i64Add(($500|0),($501|0),($436|0),($437|0))|0); + $503 = tempRet0; + $504 = (_i64Add(($502|0),($503|0),($466|0),($467|0))|0); + $505 = tempRet0; + $506 = (___muldi3(($364|0),($365|0),-683901,-1)|0); + $507 = tempRet0; + $508 = (_i64Add(($480|0),($481|0),1048576,0)|0); + $509 = tempRet0; + $510 = (_bitshift64Ashr(($508|0),($509|0),21)|0); + $511 = tempRet0; + $512 = (_i64Add(($482|0),($483|0),($8|0),0)|0); + $513 = tempRet0; + $514 = (_i64Add(($512|0),($513|0),($460|0),($461|0))|0); + $515 = tempRet0; + $516 = (_i64Add(($514|0),($515|0),($510|0),($511|0))|0); + $517 = tempRet0; + $518 = (_bitshift64Shl(($510|0),($511|0),21)|0); + $519 = tempRet0; + $520 = (_i64Subtract(($480|0),($481|0),($518|0),($519|0))|0); + $521 = tempRet0; + $522 = (_i64Add(($490|0),($491|0),1048576,0)|0); + $523 = tempRet0; + $524 = (_bitshift64Ashr(($522|0),($523|0),21)|0); + $525 = tempRet0; + $526 = (_i64Add(($492|0),($493|0),($20|0),0)|0); + $527 = tempRet0; + $528 = (_i64Add(($526|0),($527|0),($450|0),($451|0))|0); + $529 = tempRet0; + $530 = (_i64Add(($528|0),($529|0),($434|0),($435|0))|0); + $531 = tempRet0; + $532 = (_i64Add(($530|0),($531|0),($464|0),($465|0))|0); + $533 = tempRet0; + $534 = (_i64Add(($532|0),($533|0),($524|0),($525|0))|0); + $535 = tempRet0; + $536 = (_bitshift64Shl(($524|0),($525|0),21)|0); + $537 = tempRet0; + $538 = (_i64Add(($504|0),($505|0),1048576,0)|0); + $539 = tempRet0; + $540 = (_bitshift64Ashr(($538|0),($539|0),21)|0); + $541 = tempRet0; + $542 = (_i64Add(($392|0),($393|0),($506|0),($507|0))|0); + $543 = tempRet0; + $544 = (_i64Add(($542|0),($543|0),($416|0),($417|0))|0); + $545 = tempRet0; + $546 = (_i64Add(($544|0),($545|0),($454|0),($455|0))|0); + $547 = tempRet0; + $548 = (_i64Add(($546|0),($547|0),($438|0),($439|0))|0); + $549 = tempRet0; + $550 = (_i64Add(($548|0),($549|0),($468|0),($469|0))|0); + $551 = tempRet0; + $552 = (_i64Add(($550|0),($551|0),($540|0),($541|0))|0); + $553 = tempRet0; + $554 = (_bitshift64Shl(($540|0),($541|0),21)|0); + $555 = tempRet0; + $556 = (_i64Add(($476|0),($477|0),1048576,0)|0); + $557 = tempRet0; + $558 = (_bitshift64Ashr(($556|0),($557|0),21)|0); + $559 = tempRet0; + $560 = (_i64Add(($424|0),($425|0),($458|0),($459|0))|0); + $561 = tempRet0; + $562 = (_i64Add(($560|0),($561|0),($442|0),($443|0))|0); + $563 = tempRet0; + $564 = (_i64Add(($562|0),($563|0),($558|0),($559|0))|0); + $565 = tempRet0; + $566 = (_bitshift64Shl(($558|0),($559|0),21)|0); + $567 = tempRet0; + $568 = (_i64Subtract(($476|0),($477|0),($566|0),($567|0))|0); + $569 = tempRet0; + $570 = (_i64Add(($446|0),($447|0),1048576,0)|0); + $571 = tempRet0; + $572 = (_bitshift64Ashr(($570|0),($571|0),21)|0); + $573 = tempRet0; + $574 = (_i64Add(($432|0),($433|0),($572|0),($573|0))|0); + $575 = tempRet0; + $576 = (_bitshift64Shl(($572|0),($573|0),21)|0); + $577 = tempRet0; + $578 = (_i64Subtract(($446|0),($447|0),($576|0),($577|0))|0); + $579 = tempRet0; + $580 = (_i64Add(($412|0),($413|0),1048576,0)|0); + $581 = tempRet0; + $582 = (_bitshift64Ashr(($580|0),($581|0),21)|0); + $583 = tempRet0; + $584 = (_i64Add(($582|0),($583|0),($368|0),($369|0))|0); + $585 = tempRet0; + $586 = (_bitshift64Shl(($582|0),($583|0),21)|0); + $587 = tempRet0; + $588 = (_i64Subtract(($412|0),($413|0),($586|0),($587|0))|0); + $589 = tempRet0; + $590 = (_i64Add(($516|0),($517|0),1048576,0)|0); + $591 = tempRet0; + $592 = (_bitshift64Ashr(($590|0),($591|0),21)|0); + $593 = tempRet0; + $594 = (_bitshift64Shl(($592|0),($593|0),21)|0); + $595 = tempRet0; + $596 = (_i64Add(($534|0),($535|0),1048576,0)|0); + $597 = tempRet0; + $598 = (_bitshift64Ashr(($596|0),($597|0),21)|0); + $599 = tempRet0; + $600 = (_bitshift64Shl(($598|0),($599|0),21)|0); + $601 = tempRet0; + $602 = (_i64Add(($552|0),($553|0),1048576,0)|0); + $603 = tempRet0; + $604 = (_bitshift64Ashr(($602|0),($603|0),21)|0); + $605 = tempRet0; + $606 = (_i64Add(($568|0),($569|0),($604|0),($605|0))|0); + $607 = tempRet0; + $608 = (_bitshift64Shl(($604|0),($605|0),21)|0); + $609 = tempRet0; + $610 = (_i64Add(($564|0),($565|0),1048576,0)|0); + $611 = tempRet0; + $612 = (_bitshift64Ashr(($610|0),($611|0),21)|0); + $613 = tempRet0; + $614 = (_i64Add(($578|0),($579|0),($612|0),($613|0))|0); + $615 = tempRet0; + $616 = (_bitshift64Shl(($612|0),($613|0),21)|0); + $617 = tempRet0; + $618 = (_i64Subtract(($564|0),($565|0),($616|0),($617|0))|0); + $619 = tempRet0; + $620 = (_i64Add(($574|0),($575|0),1048576,0)|0); + $621 = tempRet0; + $622 = (_bitshift64Ashr(($620|0),($621|0),21)|0); + $623 = tempRet0; + $624 = (_i64Add(($588|0),($589|0),($622|0),($623|0))|0); + $625 = tempRet0; + $626 = (_bitshift64Shl(($622|0),($623|0),21)|0); + $627 = tempRet0; + $628 = (_i64Subtract(($574|0),($575|0),($626|0),($627|0))|0); + $629 = tempRet0; + $630 = (_i64Add(($584|0),($585|0),1048576,0)|0); + $631 = tempRet0; + $632 = (_bitshift64Ashr(($630|0),($631|0),21)|0); + $633 = tempRet0; + $634 = (_bitshift64Shl(($632|0),($633|0),21)|0); + $635 = tempRet0; + $636 = (_i64Subtract(($584|0),($585|0),($634|0),($635|0))|0); + $637 = tempRet0; + $638 = (___muldi3(($632|0),($633|0),666643,0)|0); + $639 = tempRet0; + $640 = (_i64Add(($520|0),($521|0),($638|0),($639|0))|0); + $641 = tempRet0; + $642 = (___muldi3(($632|0),($633|0),470296,0)|0); + $643 = tempRet0; + $644 = (___muldi3(($632|0),($633|0),654183,0)|0); + $645 = tempRet0; + $646 = (___muldi3(($632|0),($633|0),-997805,-1)|0); + $647 = tempRet0; + $648 = (___muldi3(($632|0),($633|0),136657,0)|0); + $649 = tempRet0; + $650 = (___muldi3(($632|0),($633|0),-683901,-1)|0); + $651 = tempRet0; + $652 = (_bitshift64Ashr(($640|0),($641|0),21)|0); + $653 = tempRet0; + $654 = (_i64Add(($642|0),($643|0),($516|0),($517|0))|0); + $655 = tempRet0; + $656 = (_i64Subtract(($654|0),($655|0),($594|0),($595|0))|0); + $657 = tempRet0; + $658 = (_i64Add(($656|0),($657|0),($652|0),($653|0))|0); + $659 = tempRet0; + $660 = (_bitshift64Shl(($652|0),($653|0),21)|0); + $661 = tempRet0; + $662 = (_i64Subtract(($640|0),($641|0),($660|0),($661|0))|0); + $663 = tempRet0; + $664 = (_bitshift64Ashr(($658|0),($659|0),21)|0); + $665 = tempRet0; + $666 = (_i64Add(($644|0),($645|0),($490|0),($491|0))|0); + $667 = tempRet0; + $668 = (_i64Subtract(($666|0),($667|0),($536|0),($537|0))|0); + $669 = tempRet0; + $670 = (_i64Add(($668|0),($669|0),($592|0),($593|0))|0); + $671 = tempRet0; + $672 = (_i64Add(($670|0),($671|0),($664|0),($665|0))|0); + $673 = tempRet0; + $674 = (_bitshift64Shl(($664|0),($665|0),21)|0); + $675 = tempRet0; + $676 = (_i64Subtract(($658|0),($659|0),($674|0),($675|0))|0); + $677 = tempRet0; + $678 = (_bitshift64Ashr(($672|0),($673|0),21)|0); + $679 = tempRet0; + $680 = (_i64Add(($534|0),($535|0),($646|0),($647|0))|0); + $681 = tempRet0; + $682 = (_i64Subtract(($680|0),($681|0),($600|0),($601|0))|0); + $683 = tempRet0; + $684 = (_i64Add(($682|0),($683|0),($678|0),($679|0))|0); + $685 = tempRet0; + $686 = (_bitshift64Shl(($678|0),($679|0),21)|0); + $687 = tempRet0; + $688 = (_i64Subtract(($672|0),($673|0),($686|0),($687|0))|0); + $689 = tempRet0; + $690 = (_bitshift64Ashr(($684|0),($685|0),21)|0); + $691 = tempRet0; + $692 = (_i64Add(($648|0),($649|0),($504|0),($505|0))|0); + $693 = tempRet0; + $694 = (_i64Subtract(($692|0),($693|0),($554|0),($555|0))|0); + $695 = tempRet0; + $696 = (_i64Add(($694|0),($695|0),($598|0),($599|0))|0); + $697 = tempRet0; + $698 = (_i64Add(($696|0),($697|0),($690|0),($691|0))|0); + $699 = tempRet0; + $700 = (_bitshift64Shl(($690|0),($691|0),21)|0); + $701 = tempRet0; + $702 = (_i64Subtract(($684|0),($685|0),($700|0),($701|0))|0); + $703 = tempRet0; + $704 = (_bitshift64Ashr(($698|0),($699|0),21)|0); + $705 = tempRet0; + $706 = (_i64Add(($552|0),($553|0),($650|0),($651|0))|0); + $707 = tempRet0; + $708 = (_i64Subtract(($706|0),($707|0),($608|0),($609|0))|0); + $709 = tempRet0; + $710 = (_i64Add(($708|0),($709|0),($704|0),($705|0))|0); + $711 = tempRet0; + $712 = (_bitshift64Shl(($704|0),($705|0),21)|0); + $713 = tempRet0; + $714 = (_i64Subtract(($698|0),($699|0),($712|0),($713|0))|0); + $715 = tempRet0; + $716 = (_bitshift64Ashr(($710|0),($711|0),21)|0); + $717 = tempRet0; + $718 = (_i64Add(($606|0),($607|0),($716|0),($717|0))|0); + $719 = tempRet0; + $720 = (_bitshift64Shl(($716|0),($717|0),21)|0); + $721 = tempRet0; + $722 = (_i64Subtract(($710|0),($711|0),($720|0),($721|0))|0); + $723 = tempRet0; + $724 = (_bitshift64Ashr(($718|0),($719|0),21)|0); + $725 = tempRet0; + $726 = (_i64Add(($724|0),($725|0),($618|0),($619|0))|0); + $727 = tempRet0; + $728 = (_bitshift64Shl(($724|0),($725|0),21)|0); + $729 = tempRet0; + $730 = (_i64Subtract(($718|0),($719|0),($728|0),($729|0))|0); + $731 = tempRet0; + $732 = (_bitshift64Ashr(($726|0),($727|0),21)|0); + $733 = tempRet0; + $734 = (_i64Add(($614|0),($615|0),($732|0),($733|0))|0); + $735 = tempRet0; + $736 = (_bitshift64Shl(($732|0),($733|0),21)|0); + $737 = tempRet0; + $738 = (_i64Subtract(($726|0),($727|0),($736|0),($737|0))|0); + $739 = tempRet0; + $740 = (_bitshift64Ashr(($734|0),($735|0),21)|0); + $741 = tempRet0; + $742 = (_i64Add(($740|0),($741|0),($628|0),($629|0))|0); + $743 = tempRet0; + $744 = (_bitshift64Shl(($740|0),($741|0),21)|0); + $745 = tempRet0; + $746 = (_i64Subtract(($734|0),($735|0),($744|0),($745|0))|0); + $747 = tempRet0; + $748 = (_bitshift64Ashr(($742|0),($743|0),21)|0); + $749 = tempRet0; + $750 = (_i64Add(($624|0),($625|0),($748|0),($749|0))|0); + $751 = tempRet0; + $752 = (_bitshift64Shl(($748|0),($749|0),21)|0); + $753 = tempRet0; + $754 = (_i64Subtract(($742|0),($743|0),($752|0),($753|0))|0); + $755 = tempRet0; + $756 = (_bitshift64Ashr(($750|0),($751|0),21)|0); + $757 = tempRet0; + $758 = (_i64Add(($756|0),($757|0),($636|0),($637|0))|0); + $759 = tempRet0; + $760 = (_bitshift64Shl(($756|0),($757|0),21)|0); + $761 = tempRet0; + $762 = (_i64Subtract(($750|0),($751|0),($760|0),($761|0))|0); + $763 = tempRet0; + $764 = (_bitshift64Ashr(($758|0),($759|0),21)|0); + $765 = tempRet0; + $766 = (_bitshift64Shl(($764|0),($765|0),21)|0); + $767 = tempRet0; + $768 = (_i64Subtract(($758|0),($759|0),($766|0),($767|0))|0); + $769 = tempRet0; + $770 = (___muldi3(($764|0),($765|0),666643,0)|0); + $771 = tempRet0; + $772 = (_i64Add(($770|0),($771|0),($662|0),($663|0))|0); + $773 = tempRet0; + $774 = (___muldi3(($764|0),($765|0),470296,0)|0); + $775 = tempRet0; + $776 = (_i64Add(($676|0),($677|0),($774|0),($775|0))|0); + $777 = tempRet0; + $778 = (___muldi3(($764|0),($765|0),654183,0)|0); + $779 = tempRet0; + $780 = (_i64Add(($688|0),($689|0),($778|0),($779|0))|0); + $781 = tempRet0; + $782 = (___muldi3(($764|0),($765|0),-997805,-1)|0); + $783 = tempRet0; + $784 = (_i64Add(($702|0),($703|0),($782|0),($783|0))|0); + $785 = tempRet0; + $786 = (___muldi3(($764|0),($765|0),136657,0)|0); + $787 = tempRet0; + $788 = (_i64Add(($714|0),($715|0),($786|0),($787|0))|0); + $789 = tempRet0; + $790 = (___muldi3(($764|0),($765|0),-683901,-1)|0); + $791 = tempRet0; + $792 = (_i64Add(($722|0),($723|0),($790|0),($791|0))|0); + $793 = tempRet0; + $794 = (_bitshift64Ashr(($772|0),($773|0),21)|0); + $795 = tempRet0; + $796 = (_i64Add(($776|0),($777|0),($794|0),($795|0))|0); + $797 = tempRet0; + $798 = (_bitshift64Shl(($794|0),($795|0),21)|0); + $799 = tempRet0; + $800 = (_i64Subtract(($772|0),($773|0),($798|0),($799|0))|0); + $801 = tempRet0; + $802 = (_bitshift64Ashr(($796|0),($797|0),21)|0); + $803 = tempRet0; + $804 = (_i64Add(($780|0),($781|0),($802|0),($803|0))|0); + $805 = tempRet0; + $806 = (_bitshift64Shl(($802|0),($803|0),21)|0); + $807 = tempRet0; + $808 = (_i64Subtract(($796|0),($797|0),($806|0),($807|0))|0); + $809 = tempRet0; + $810 = (_bitshift64Ashr(($804|0),($805|0),21)|0); + $811 = tempRet0; + $812 = (_i64Add(($784|0),($785|0),($810|0),($811|0))|0); + $813 = tempRet0; + $814 = (_bitshift64Shl(($810|0),($811|0),21)|0); + $815 = tempRet0; + $816 = (_i64Subtract(($804|0),($805|0),($814|0),($815|0))|0); + $817 = tempRet0; + $818 = (_bitshift64Ashr(($812|0),($813|0),21)|0); + $819 = tempRet0; + $820 = (_i64Add(($788|0),($789|0),($818|0),($819|0))|0); + $821 = tempRet0; + $822 = (_bitshift64Shl(($818|0),($819|0),21)|0); + $823 = tempRet0; + $824 = (_i64Subtract(($812|0),($813|0),($822|0),($823|0))|0); + $825 = tempRet0; + $826 = (_bitshift64Ashr(($820|0),($821|0),21)|0); + $827 = tempRet0; + $828 = (_i64Add(($792|0),($793|0),($826|0),($827|0))|0); + $829 = tempRet0; + $830 = (_bitshift64Shl(($826|0),($827|0),21)|0); + $831 = tempRet0; + $832 = (_i64Subtract(($820|0),($821|0),($830|0),($831|0))|0); + $833 = tempRet0; + $834 = (_bitshift64Ashr(($828|0),($829|0),21)|0); + $835 = tempRet0; + $836 = (_i64Add(($834|0),($835|0),($730|0),($731|0))|0); + $837 = tempRet0; + $838 = (_bitshift64Shl(($834|0),($835|0),21)|0); + $839 = tempRet0; + $840 = (_i64Subtract(($828|0),($829|0),($838|0),($839|0))|0); + $841 = tempRet0; + $842 = (_bitshift64Ashr(($836|0),($837|0),21)|0); + $843 = tempRet0; + $844 = (_i64Add(($842|0),($843|0),($738|0),($739|0))|0); + $845 = tempRet0; + $846 = (_bitshift64Shl(($842|0),($843|0),21)|0); + $847 = tempRet0; + $848 = (_i64Subtract(($836|0),($837|0),($846|0),($847|0))|0); + $849 = tempRet0; + $850 = (_bitshift64Ashr(($844|0),($845|0),21)|0); + $851 = tempRet0; + $852 = (_i64Add(($850|0),($851|0),($746|0),($747|0))|0); + $853 = tempRet0; + $854 = (_bitshift64Shl(($850|0),($851|0),21)|0); + $855 = tempRet0; + $856 = (_i64Subtract(($844|0),($845|0),($854|0),($855|0))|0); + $857 = tempRet0; + $858 = (_bitshift64Ashr(($852|0),($853|0),21)|0); + $859 = tempRet0; + $860 = (_i64Add(($858|0),($859|0),($754|0),($755|0))|0); + $861 = tempRet0; + $862 = (_bitshift64Shl(($858|0),($859|0),21)|0); + $863 = tempRet0; + $864 = (_i64Subtract(($852|0),($853|0),($862|0),($863|0))|0); + $865 = tempRet0; + $866 = (_bitshift64Ashr(($860|0),($861|0),21)|0); + $867 = tempRet0; + $868 = (_i64Add(($866|0),($867|0),($762|0),($763|0))|0); + $869 = tempRet0; + $870 = (_bitshift64Shl(($866|0),($867|0),21)|0); + $871 = tempRet0; + $872 = (_i64Subtract(($860|0),($861|0),($870|0),($871|0))|0); + $873 = tempRet0; + $874 = (_bitshift64Ashr(($868|0),($869|0),21)|0); + $875 = tempRet0; + $876 = (_i64Add(($874|0),($875|0),($768|0),($769|0))|0); + $877 = tempRet0; + $878 = (_bitshift64Shl(($874|0),($875|0),21)|0); + $879 = tempRet0; + $880 = (_i64Subtract(($868|0),($869|0),($878|0),($879|0))|0); + $881 = tempRet0; + $882 = $800&255; + HEAP8[$s>>0] = $882; + $883 = (_bitshift64Lshr(($800|0),($801|0),8)|0); + $884 = tempRet0; + $885 = $883&255; + $886 = (($s) + 1|0); + HEAP8[$886>>0] = $885; + $887 = (_bitshift64Lshr(($800|0),($801|0),16)|0); + $888 = tempRet0; + $889 = (_bitshift64Shl(($808|0),($809|0),5)|0); + $890 = tempRet0; + $891 = $889 | $887; + $890 | $888; + $892 = $891&255; + HEAP8[$3>>0] = $892; + $893 = (_bitshift64Lshr(($808|0),($809|0),3)|0); + $894 = tempRet0; + $895 = $893&255; + $896 = (($s) + 3|0); + HEAP8[$896>>0] = $895; + $897 = (_bitshift64Lshr(($808|0),($809|0),11)|0); + $898 = tempRet0; + $899 = $897&255; + $900 = (($s) + 4|0); + HEAP8[$900>>0] = $899; + $901 = (_bitshift64Lshr(($808|0),($809|0),19)|0); + $902 = tempRet0; + $903 = (_bitshift64Shl(($816|0),($817|0),2)|0); + $904 = tempRet0; + $905 = $903 | $901; + $904 | $902; + $906 = $905&255; + HEAP8[$9>>0] = $906; + $907 = (_bitshift64Lshr(($816|0),($817|0),6)|0); + $908 = tempRet0; + $909 = $907&255; + $910 = (($s) + 6|0); + HEAP8[$910>>0] = $909; + $911 = (_bitshift64Lshr(($816|0),($817|0),14)|0); + $912 = tempRet0; + $913 = (_bitshift64Shl(($824|0),($825|0),7)|0); + $914 = tempRet0; + $915 = $913 | $911; + $914 | $912; + $916 = $915&255; + HEAP8[$15>>0] = $916; + $917 = (_bitshift64Lshr(($824|0),($825|0),1)|0); + $918 = tempRet0; + $919 = $917&255; + $920 = (($s) + 8|0); + HEAP8[$920>>0] = $919; + $921 = (_bitshift64Lshr(($824|0),($825|0),9)|0); + $922 = tempRet0; + $923 = $921&255; + $924 = (($s) + 9|0); + HEAP8[$924>>0] = $923; + $925 = (_bitshift64Lshr(($824|0),($825|0),17)|0); + $926 = tempRet0; + $927 = (_bitshift64Shl(($832|0),($833|0),4)|0); + $928 = tempRet0; + $929 = $927 | $925; + $928 | $926; + $930 = $929&255; + HEAP8[$21>>0] = $930; + $931 = (_bitshift64Lshr(($832|0),($833|0),4)|0); + $932 = tempRet0; + $933 = $931&255; + $934 = (($s) + 11|0); + HEAP8[$934>>0] = $933; + $935 = (_bitshift64Lshr(($832|0),($833|0),12)|0); + $936 = tempRet0; + $937 = $935&255; + $938 = (($s) + 12|0); + HEAP8[$938>>0] = $937; + $939 = (_bitshift64Lshr(($832|0),($833|0),20)|0); + $940 = tempRet0; + $941 = (_bitshift64Shl(($840|0),($841|0),1)|0); + $942 = tempRet0; + $943 = $941 | $939; + $942 | $940; + $944 = $943&255; + HEAP8[$27>>0] = $944; + $945 = (_bitshift64Lshr(($840|0),($841|0),7)|0); + $946 = tempRet0; + $947 = $945&255; + $948 = (($s) + 14|0); + HEAP8[$948>>0] = $947; + $949 = (_bitshift64Lshr(($840|0),($841|0),15)|0); + $950 = tempRet0; + $951 = (_bitshift64Shl(($848|0),($849|0),6)|0); + $952 = tempRet0; + $953 = $951 | $949; + $952 | $950; + $954 = $953&255; + HEAP8[$33>>0] = $954; + $955 = (_bitshift64Lshr(($848|0),($849|0),2)|0); + $956 = tempRet0; + $957 = $955&255; + $958 = (($s) + 16|0); + HEAP8[$958>>0] = $957; + $959 = (_bitshift64Lshr(($848|0),($849|0),10)|0); + $960 = tempRet0; + $961 = $959&255; + $962 = (($s) + 17|0); + HEAP8[$962>>0] = $961; + $963 = (_bitshift64Lshr(($848|0),($849|0),18)|0); + $964 = tempRet0; + $965 = (_bitshift64Shl(($856|0),($857|0),3)|0); + $966 = tempRet0; + $967 = $965 | $963; + $966 | $964; + $968 = $967&255; + HEAP8[$39>>0] = $968; + $969 = (_bitshift64Lshr(($856|0),($857|0),5)|0); + $970 = tempRet0; + $971 = $969&255; + $972 = (($s) + 19|0); + HEAP8[$972>>0] = $971; + $973 = (_bitshift64Lshr(($856|0),($857|0),13)|0); + $974 = tempRet0; + $975 = $973&255; + $976 = (($s) + 20|0); + HEAP8[$976>>0] = $975; + $977 = $864&255; + HEAP8[$45>>0] = $977; + $978 = (_bitshift64Lshr(($864|0),($865|0),8)|0); + $979 = tempRet0; + $980 = $978&255; + $981 = (($s) + 22|0); + HEAP8[$981>>0] = $980; + $982 = (_bitshift64Lshr(($864|0),($865|0),16)|0); + $983 = tempRet0; + $984 = (_bitshift64Shl(($872|0),($873|0),5)|0); + $985 = tempRet0; + $986 = $984 | $982; + $985 | $983; + $987 = $986&255; + HEAP8[$49>>0] = $987; + $988 = (_bitshift64Lshr(($872|0),($873|0),3)|0); + $989 = tempRet0; + $990 = $988&255; + $991 = (($s) + 24|0); + HEAP8[$991>>0] = $990; + $992 = (_bitshift64Lshr(($872|0),($873|0),11)|0); + $993 = tempRet0; + $994 = $992&255; + $995 = (($s) + 25|0); + HEAP8[$995>>0] = $994; + $996 = (_bitshift64Lshr(($872|0),($873|0),19)|0); + $997 = tempRet0; + $998 = (_bitshift64Shl(($880|0),($881|0),2)|0); + $999 = tempRet0; + $1000 = $998 | $996; + $999 | $997; + $1001 = $1000&255; + HEAP8[$55>>0] = $1001; + $1002 = (_bitshift64Lshr(($880|0),($881|0),6)|0); + $1003 = tempRet0; + $1004 = $1002&255; + $1005 = (($s) + 27|0); + HEAP8[$1005>>0] = $1004; + $1006 = (_bitshift64Lshr(($880|0),($881|0),14)|0); + $1007 = tempRet0; + $1008 = (_bitshift64Shl(($876|0),($877|0),7)|0); + $1009 = tempRet0; + $1010 = $1006 | $1008; + $1007 | $1009; + $1011 = $1010&255; + HEAP8[$61>>0] = $1011; + $1012 = (_bitshift64Lshr(($876|0),($877|0),1)|0); + $1013 = tempRet0; + $1014 = $1012&255; + $1015 = (($s) + 29|0); + HEAP8[$1015>>0] = $1014; + $1016 = (_bitshift64Lshr(($876|0),($877|0),9)|0); + $1017 = tempRet0; + $1018 = $1016&255; + $1019 = (($s) + 30|0); + HEAP8[$1019>>0] = $1018; + $1020 = (_bitshift64Lshr(($876|0),($877|0),17)|0); + $1021 = tempRet0; + $1022 = $1020&255; + HEAP8[$67>>0] = $1022; + STACKTOP = sp;return; +} +function _load_351($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + tempRet0 = $14; + STACKTOP = sp;return ($13|0); +} +function _load_452($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + $15 = (($in) + 3|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16&255; + $18 = (_bitshift64Shl(($17|0),0,24)|0); + $19 = tempRet0; + $20 = $13 | $18; + $21 = $14 | $19; + tempRet0 = $21; + STACKTOP = sp;return ($20|0); +} +function _sph_sha512_init($cc) { + $cc = $cc|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + $0 = (($cc) + 128|0); + dest=$0+0|0; src=31840+0|0; stop=dest+64|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + $1 = (($cc) + 192|0); + $2 = $1; + $3 = $2; + HEAP32[$3>>2] = 0; + $4 = (($2) + 4)|0; + $5 = $4; + HEAP32[$5>>2] = 0; + STACKTOP = sp;return; +} +function _sph_sha384($cc,$data,$len) { + $cc = $cc|0; + $data = $data|0; + $len = $len|0; + var $$01$ = 0, $$012 = 0, $$03 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0; + var $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $current$04 = 0, $current$1 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($cc) + 192|0); + $1 = ($len|0)==(0); + if ($1) { + STACKTOP = sp;return; + } + $2 = $0; + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = $4 & 127; + $9 = (($cc) + 128|0); + $$012 = $len;$$03 = $data;$current$04 = $8; + while(1) { + $10 = (128 - ($current$04))|0; + $11 = ($10>>>0)>($$012>>>0); + $$01$ = $11 ? $$012 : $10; + $12 = (($cc) + ($current$04)|0); + _memcpy(($12|0),($$03|0),($$01$|0))|0; + $13 = (($$03) + ($$01$)|0); + $14 = (($$01$) + ($current$04))|0; + $15 = (($$012) - ($$01$))|0; + $16 = ($14|0)==(128); + if ($16) { + _sha3_round($cc,$9); + $current$1 = 0; + } else { + $current$1 = $14; + } + $17 = $0; + $18 = $17; + $19 = HEAP32[$18>>2]|0; + $20 = (($17) + 4)|0; + $21 = $20; + $22 = HEAP32[$21>>2]|0; + $23 = (_i64Add(($19|0),($22|0),($$01$|0),0)|0); + $24 = tempRet0; + $25 = $0; + $26 = $25; + HEAP32[$26>>2] = $23; + $27 = (($25) + 4)|0; + $28 = $27; + HEAP32[$28>>2] = $24; + $29 = ($$012|0)==($$01$|0); + if ($29) { + break; + } else { + $$012 = $15;$$03 = $13;$current$04 = $current$1; + } + } + STACKTOP = sp;return; +} +function _sph_sha512_close($cc,$dst) { + $cc = $cc|0; + $dst = $dst|0; + var label = 0, sp = 0; + sp = STACKTOP; + _sha384_close($cc,$dst,8); + _sph_sha512_init($cc); + STACKTOP = sp;return; +} +function _sha3_round($data,$r) { + $data = $data|0; + $r = $r|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; + var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; + var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; + var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; + var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; + var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; + var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; + var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0; + var $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0; + var $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0; + var $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0; + var $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0; + var $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0; + var $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0; + var $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0; + var $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0; + var $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0; + var $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0; + var $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0; + var $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0; + var $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0; + var $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0; + var $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0; + var $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0; + var $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0; + var $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0; + var $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0; + var $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0; + var $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0; + var $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0; + var $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0; + var $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0; + var $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0; + var $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0; + var $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0; + var $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0; + var $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $W = 0, $exitcond = 0, $exitcond19 = 0, $i$011 = 0, $i$110 = 0, $i$29 = 0; + var label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 640|0; + $W = sp; + $i$011 = 0; + while(1) { + $0 = $i$011 << 3; + $1 = (($data) + ($0)|0); + $2 = (_sph_dec64be_aligned($1)|0); + $3 = tempRet0; + $4 = (($W) + ($i$011<<3)|0); + $5 = $4; + $6 = $5; + HEAP32[$6>>2] = $2; + $7 = (($5) + 4)|0; + $8 = $7; + HEAP32[$8>>2] = $3; + $9 = (($i$011) + 1)|0; + $exitcond19 = ($9|0)==(16); + if ($exitcond19) { + $i$110 = 16; + break; + } else { + $i$011 = $9; + } + } + while(1) { + $10 = (($i$110) + -2)|0; + $11 = (($W) + ($10<<3)|0); + $12 = $11; + $13 = $12; + $14 = HEAP32[$13>>2]|0; + $15 = (($12) + 4)|0; + $16 = $15; + $17 = HEAP32[$16>>2]|0; + $18 = (_bitshift64Shl(($14|0),($17|0),45)|0); + $19 = tempRet0; + $20 = (_bitshift64Lshr(($14|0),($17|0),19)|0); + $21 = tempRet0; + $22 = $18 | $20; + $23 = $19 | $21; + $24 = (_bitshift64Shl(($14|0),($17|0),3)|0); + $25 = tempRet0; + $26 = (_bitshift64Lshr(($14|0),($17|0),61)|0); + $27 = tempRet0; + $28 = $24 | $26; + $29 = $25 | $27; + $30 = (_bitshift64Lshr(($14|0),($17|0),6)|0); + $31 = tempRet0; + $32 = $28 ^ $30; + $33 = $29 ^ $31; + $34 = $32 ^ $22; + $35 = $33 ^ $23; + $36 = (($i$110) + -7)|0; + $37 = (($W) + ($36<<3)|0); + $38 = $37; + $39 = $38; + $40 = HEAP32[$39>>2]|0; + $41 = (($38) + 4)|0; + $42 = $41; + $43 = HEAP32[$42>>2]|0; + $44 = (($i$110) + -15)|0; + $45 = (($W) + ($44<<3)|0); + $46 = $45; + $47 = $46; + $48 = HEAP32[$47>>2]|0; + $49 = (($46) + 4)|0; + $50 = $49; + $51 = HEAP32[$50>>2]|0; + $52 = (_bitshift64Shl(($48|0),($51|0),63)|0); + $53 = tempRet0; + $54 = (_bitshift64Lshr(($48|0),($51|0),1)|0); + $55 = tempRet0; + $56 = $52 | $54; + $57 = $53 | $55; + $58 = (_bitshift64Shl(($48|0),($51|0),56)|0); + $59 = tempRet0; + $60 = (_bitshift64Lshr(($48|0),($51|0),8)|0); + $61 = tempRet0; + $62 = $58 | $60; + $63 = $59 | $61; + $64 = (_bitshift64Lshr(($48|0),($51|0),7)|0); + $65 = tempRet0; + $66 = $62 ^ $64; + $67 = $63 ^ $65; + $68 = $66 ^ $56; + $69 = $67 ^ $57; + $70 = (($i$110) + -16)|0; + $71 = (($W) + ($70<<3)|0); + $72 = $71; + $73 = $72; + $74 = HEAP32[$73>>2]|0; + $75 = (($72) + 4)|0; + $76 = $75; + $77 = HEAP32[$76>>2]|0; + $78 = (_i64Add(($74|0),($77|0),($40|0),($43|0))|0); + $79 = tempRet0; + $80 = (_i64Add(($78|0),($79|0),($34|0),($35|0))|0); + $81 = tempRet0; + $82 = (_i64Add(($80|0),($81|0),($68|0),($69|0))|0); + $83 = tempRet0; + $84 = (($W) + ($i$110<<3)|0); + $85 = $84; + $86 = $85; + HEAP32[$86>>2] = $82; + $87 = (($85) + 4)|0; + $88 = $87; + HEAP32[$88>>2] = $83; + $89 = (($i$110) + 1)|0; + $exitcond = ($89|0)==(80); + if ($exitcond) { + break; + } else { + $i$110 = $89; + } + } + $90 = $r; + $91 = $90; + $92 = HEAP32[$91>>2]|0; + $93 = (($90) + 4)|0; + $94 = $93; + $95 = HEAP32[$94>>2]|0; + $96 = (($r) + 8|0); + $97 = $96; + $98 = $97; + $99 = HEAP32[$98>>2]|0; + $100 = (($97) + 4)|0; + $101 = $100; + $102 = HEAP32[$101>>2]|0; + $103 = (($r) + 16|0); + $104 = $103; + $105 = $104; + $106 = HEAP32[$105>>2]|0; + $107 = (($104) + 4)|0; + $108 = $107; + $109 = HEAP32[$108>>2]|0; + $110 = (($r) + 24|0); + $111 = $110; + $112 = $111; + $113 = HEAP32[$112>>2]|0; + $114 = (($111) + 4)|0; + $115 = $114; + $116 = HEAP32[$115>>2]|0; + $117 = (($r) + 32|0); + $118 = $117; + $119 = $118; + $120 = HEAP32[$119>>2]|0; + $121 = (($118) + 4)|0; + $122 = $121; + $123 = HEAP32[$122>>2]|0; + $124 = (($r) + 40|0); + $125 = $124; + $126 = $125; + $127 = HEAP32[$126>>2]|0; + $128 = (($125) + 4)|0; + $129 = $128; + $130 = HEAP32[$129>>2]|0; + $131 = (($r) + 48|0); + $132 = $131; + $133 = $132; + $134 = HEAP32[$133>>2]|0; + $135 = (($132) + 4)|0; + $136 = $135; + $137 = HEAP32[$136>>2]|0; + $138 = (($r) + 56|0); + $139 = $138; + $140 = $139; + $141 = HEAP32[$140>>2]|0; + $142 = (($139) + 4)|0; + $143 = $142; + $144 = HEAP32[$143>>2]|0; + $145 = $120;$146 = $123;$170 = $134;$171 = $127;$173 = $137;$174 = $130;$193 = $141;$194 = $144;$203 = $92;$204 = $95;$228 = $99;$230 = $102;$234 = $106;$236 = $109;$241 = $113;$242 = $116;$i$29 = 0; + while(1) { + $147 = (_bitshift64Shl(($145|0),($146|0),50)|0); + $148 = tempRet0; + $149 = (_bitshift64Lshr(($145|0),($146|0),14)|0); + $150 = tempRet0; + $151 = $147 | $149; + $152 = $148 | $150; + $153 = (_bitshift64Shl(($145|0),($146|0),46)|0); + $154 = tempRet0; + $155 = (_bitshift64Lshr(($145|0),($146|0),18)|0); + $156 = tempRet0; + $157 = $153 | $155; + $158 = $154 | $156; + $159 = $151 ^ $157; + $160 = $152 ^ $158; + $161 = (_bitshift64Shl(($145|0),($146|0),23)|0); + $162 = tempRet0; + $163 = (_bitshift64Lshr(($145|0),($146|0),41)|0); + $164 = tempRet0; + $165 = $161 | $163; + $166 = $162 | $164; + $167 = $159 ^ $165; + $168 = $160 ^ $166; + $169 = $171 ^ $170; + $172 = $174 ^ $173; + $175 = $169 & $145; + $176 = $172 & $146; + $177 = $175 ^ $170; + $178 = $176 ^ $173; + $179 = (31904 + ($i$29<<3)|0); + $180 = $179; + $181 = $180; + $182 = HEAP32[$181>>2]|0; + $183 = (($180) + 4)|0; + $184 = $183; + $185 = HEAP32[$184>>2]|0; + $186 = (($W) + ($i$29<<3)|0); + $187 = $186; + $188 = $187; + $189 = HEAP32[$188>>2]|0; + $190 = (($187) + 4)|0; + $191 = $190; + $192 = HEAP32[$191>>2]|0; + $195 = (_i64Add(($177|0),($178|0),($193|0),($194|0))|0); + $196 = tempRet0; + $197 = (_i64Add(($195|0),($196|0),($167|0),($168|0))|0); + $198 = tempRet0; + $199 = (_i64Add(($197|0),($198|0),($182|0),($185|0))|0); + $200 = tempRet0; + $201 = (_i64Add(($199|0),($200|0),($189|0),($192|0))|0); + $202 = tempRet0; + $205 = (_bitshift64Shl(($203|0),($204|0),36)|0); + $206 = tempRet0; + $207 = (_bitshift64Lshr(($203|0),($204|0),28)|0); + $208 = tempRet0; + $209 = $205 | $207; + $210 = $206 | $208; + $211 = (_bitshift64Shl(($203|0),($204|0),30)|0); + $212 = tempRet0; + $213 = (_bitshift64Lshr(($203|0),($204|0),34)|0); + $214 = tempRet0; + $215 = $211 | $213; + $216 = $212 | $214; + $217 = $209 ^ $215; + $218 = $210 ^ $216; + $219 = (_bitshift64Shl(($203|0),($204|0),25)|0); + $220 = tempRet0; + $221 = (_bitshift64Lshr(($203|0),($204|0),39)|0); + $222 = tempRet0; + $223 = $219 | $221; + $224 = $220 | $222; + $225 = $217 ^ $223; + $226 = $218 ^ $224; + $227 = $203 & $228; + $229 = $204 & $230; + $231 = $203 | $228; + $232 = $204 | $230; + $233 = $231 & $234; + $235 = $232 & $236; + $237 = $233 | $227; + $238 = $235 | $229; + $239 = (_i64Add(($225|0),($226|0),($237|0),($238|0))|0); + $240 = tempRet0; + $243 = (_i64Add(($201|0),($202|0),($241|0),($242|0))|0); + $244 = tempRet0; + $245 = (_i64Add(($239|0),($240|0),($201|0),($202|0))|0); + $246 = tempRet0; + $247 = (_bitshift64Shl(($243|0),($244|0),50)|0); + $248 = tempRet0; + $249 = (_bitshift64Lshr(($243|0),($244|0),14)|0); + $250 = tempRet0; + $251 = $247 | $249; + $252 = $248 | $250; + $253 = (_bitshift64Shl(($243|0),($244|0),46)|0); + $254 = tempRet0; + $255 = (_bitshift64Lshr(($243|0),($244|0),18)|0); + $256 = tempRet0; + $257 = $253 | $255; + $258 = $254 | $256; + $259 = $251 ^ $257; + $260 = $252 ^ $258; + $261 = (_bitshift64Shl(($243|0),($244|0),23)|0); + $262 = tempRet0; + $263 = (_bitshift64Lshr(($243|0),($244|0),41)|0); + $264 = tempRet0; + $265 = $261 | $263; + $266 = $262 | $264; + $267 = $259 ^ $265; + $268 = $260 ^ $266; + $269 = $145 ^ $171; + $270 = $146 ^ $174; + $271 = $243 & $269; + $272 = $244 & $270; + $273 = $271 ^ $171; + $274 = $272 ^ $174; + $275 = $i$29 | 1; + $276 = (31904 + ($275<<3)|0); + $277 = $276; + $278 = $277; + $279 = HEAP32[$278>>2]|0; + $280 = (($277) + 4)|0; + $281 = $280; + $282 = HEAP32[$281>>2]|0; + $283 = (($W) + ($275<<3)|0); + $284 = $283; + $285 = $284; + $286 = HEAP32[$285>>2]|0; + $287 = (($284) + 4)|0; + $288 = $287; + $289 = HEAP32[$288>>2]|0; + $290 = (_i64Add(($279|0),($282|0),($170|0),($173|0))|0); + $291 = tempRet0; + $292 = (_i64Add(($290|0),($291|0),($286|0),($289|0))|0); + $293 = tempRet0; + $294 = (_i64Add(($292|0),($293|0),($273|0),($274|0))|0); + $295 = tempRet0; + $296 = (_i64Add(($294|0),($295|0),($267|0),($268|0))|0); + $297 = tempRet0; + $298 = (_bitshift64Shl(($245|0),($246|0),36)|0); + $299 = tempRet0; + $300 = (_bitshift64Lshr(($245|0),($246|0),28)|0); + $301 = tempRet0; + $302 = $298 | $300; + $303 = $299 | $301; + $304 = (_bitshift64Shl(($245|0),($246|0),30)|0); + $305 = tempRet0; + $306 = (_bitshift64Lshr(($245|0),($246|0),34)|0); + $307 = tempRet0; + $308 = $304 | $306; + $309 = $305 | $307; + $310 = $302 ^ $308; + $311 = $303 ^ $309; + $312 = (_bitshift64Shl(($245|0),($246|0),25)|0); + $313 = tempRet0; + $314 = (_bitshift64Lshr(($245|0),($246|0),39)|0); + $315 = tempRet0; + $316 = $312 | $314; + $317 = $313 | $315; + $318 = $310 ^ $316; + $319 = $311 ^ $317; + $320 = $245 & $203; + $321 = $246 & $204; + $322 = $245 | $203; + $323 = $246 | $204; + $324 = $322 & $228; + $325 = $323 & $230; + $326 = $324 | $320; + $327 = $325 | $321; + $328 = (_i64Add(($318|0),($319|0),($326|0),($327|0))|0); + $329 = tempRet0; + $330 = (_i64Add(($296|0),($297|0),($234|0),($236|0))|0); + $331 = tempRet0; + $332 = (_i64Add(($328|0),($329|0),($296|0),($297|0))|0); + $333 = tempRet0; + $334 = (_bitshift64Shl(($330|0),($331|0),50)|0); + $335 = tempRet0; + $336 = (_bitshift64Lshr(($330|0),($331|0),14)|0); + $337 = tempRet0; + $338 = $334 | $336; + $339 = $335 | $337; + $340 = (_bitshift64Shl(($330|0),($331|0),46)|0); + $341 = tempRet0; + $342 = (_bitshift64Lshr(($330|0),($331|0),18)|0); + $343 = tempRet0; + $344 = $340 | $342; + $345 = $341 | $343; + $346 = $338 ^ $344; + $347 = $339 ^ $345; + $348 = (_bitshift64Shl(($330|0),($331|0),23)|0); + $349 = tempRet0; + $350 = (_bitshift64Lshr(($330|0),($331|0),41)|0); + $351 = tempRet0; + $352 = $348 | $350; + $353 = $349 | $351; + $354 = $346 ^ $352; + $355 = $347 ^ $353; + $356 = $243 ^ $145; + $357 = $244 ^ $146; + $358 = $330 & $356; + $359 = $331 & $357; + $360 = $358 ^ $145; + $361 = $359 ^ $146; + $362 = $i$29 | 2; + $363 = (31904 + ($362<<3)|0); + $364 = $363; + $365 = $364; + $366 = HEAP32[$365>>2]|0; + $367 = (($364) + 4)|0; + $368 = $367; + $369 = HEAP32[$368>>2]|0; + $370 = (($W) + ($362<<3)|0); + $371 = $370; + $372 = $371; + $373 = HEAP32[$372>>2]|0; + $374 = (($371) + 4)|0; + $375 = $374; + $376 = HEAP32[$375>>2]|0; + $377 = (_i64Add(($366|0),($369|0),($171|0),($174|0))|0); + $378 = tempRet0; + $379 = (_i64Add(($377|0),($378|0),($373|0),($376|0))|0); + $380 = tempRet0; + $381 = (_i64Add(($379|0),($380|0),($360|0),($361|0))|0); + $382 = tempRet0; + $383 = (_i64Add(($381|0),($382|0),($354|0),($355|0))|0); + $384 = tempRet0; + $385 = (_bitshift64Shl(($332|0),($333|0),36)|0); + $386 = tempRet0; + $387 = (_bitshift64Lshr(($332|0),($333|0),28)|0); + $388 = tempRet0; + $389 = $385 | $387; + $390 = $386 | $388; + $391 = (_bitshift64Shl(($332|0),($333|0),30)|0); + $392 = tempRet0; + $393 = (_bitshift64Lshr(($332|0),($333|0),34)|0); + $394 = tempRet0; + $395 = $391 | $393; + $396 = $392 | $394; + $397 = $389 ^ $395; + $398 = $390 ^ $396; + $399 = (_bitshift64Shl(($332|0),($333|0),25)|0); + $400 = tempRet0; + $401 = (_bitshift64Lshr(($332|0),($333|0),39)|0); + $402 = tempRet0; + $403 = $399 | $401; + $404 = $400 | $402; + $405 = $397 ^ $403; + $406 = $398 ^ $404; + $407 = $332 & $245; + $408 = $333 & $246; + $409 = $332 | $245; + $410 = $333 | $246; + $411 = $409 & $203; + $412 = $410 & $204; + $413 = $411 | $407; + $414 = $412 | $408; + $415 = (_i64Add(($405|0),($406|0),($413|0),($414|0))|0); + $416 = tempRet0; + $417 = (_i64Add(($383|0),($384|0),($228|0),($230|0))|0); + $418 = tempRet0; + $419 = (_i64Add(($415|0),($416|0),($383|0),($384|0))|0); + $420 = tempRet0; + $421 = (_bitshift64Shl(($417|0),($418|0),50)|0); + $422 = tempRet0; + $423 = (_bitshift64Lshr(($417|0),($418|0),14)|0); + $424 = tempRet0; + $425 = $421 | $423; + $426 = $422 | $424; + $427 = (_bitshift64Shl(($417|0),($418|0),46)|0); + $428 = tempRet0; + $429 = (_bitshift64Lshr(($417|0),($418|0),18)|0); + $430 = tempRet0; + $431 = $427 | $429; + $432 = $428 | $430; + $433 = $425 ^ $431; + $434 = $426 ^ $432; + $435 = (_bitshift64Shl(($417|0),($418|0),23)|0); + $436 = tempRet0; + $437 = (_bitshift64Lshr(($417|0),($418|0),41)|0); + $438 = tempRet0; + $439 = $435 | $437; + $440 = $436 | $438; + $441 = $433 ^ $439; + $442 = $434 ^ $440; + $443 = $330 ^ $243; + $444 = $331 ^ $244; + $445 = $417 & $443; + $446 = $418 & $444; + $447 = $445 ^ $243; + $448 = $446 ^ $244; + $449 = $i$29 | 3; + $450 = (31904 + ($449<<3)|0); + $451 = $450; + $452 = $451; + $453 = HEAP32[$452>>2]|0; + $454 = (($451) + 4)|0; + $455 = $454; + $456 = HEAP32[$455>>2]|0; + $457 = (($W) + ($449<<3)|0); + $458 = $457; + $459 = $458; + $460 = HEAP32[$459>>2]|0; + $461 = (($458) + 4)|0; + $462 = $461; + $463 = HEAP32[$462>>2]|0; + $464 = (_i64Add(($453|0),($456|0),($145|0),($146|0))|0); + $465 = tempRet0; + $466 = (_i64Add(($464|0),($465|0),($460|0),($463|0))|0); + $467 = tempRet0; + $468 = (_i64Add(($466|0),($467|0),($447|0),($448|0))|0); + $469 = tempRet0; + $470 = (_i64Add(($468|0),($469|0),($441|0),($442|0))|0); + $471 = tempRet0; + $472 = (_bitshift64Shl(($419|0),($420|0),36)|0); + $473 = tempRet0; + $474 = (_bitshift64Lshr(($419|0),($420|0),28)|0); + $475 = tempRet0; + $476 = $472 | $474; + $477 = $473 | $475; + $478 = (_bitshift64Shl(($419|0),($420|0),30)|0); + $479 = tempRet0; + $480 = (_bitshift64Lshr(($419|0),($420|0),34)|0); + $481 = tempRet0; + $482 = $478 | $480; + $483 = $479 | $481; + $484 = $476 ^ $482; + $485 = $477 ^ $483; + $486 = (_bitshift64Shl(($419|0),($420|0),25)|0); + $487 = tempRet0; + $488 = (_bitshift64Lshr(($419|0),($420|0),39)|0); + $489 = tempRet0; + $490 = $486 | $488; + $491 = $487 | $489; + $492 = $484 ^ $490; + $493 = $485 ^ $491; + $494 = $419 & $332; + $495 = $420 & $333; + $496 = $419 | $332; + $497 = $420 | $333; + $498 = $496 & $245; + $499 = $497 & $246; + $500 = $498 | $494; + $501 = $499 | $495; + $502 = (_i64Add(($492|0),($493|0),($500|0),($501|0))|0); + $503 = tempRet0; + $504 = (_i64Add(($470|0),($471|0),($203|0),($204|0))|0); + $505 = tempRet0; + $506 = (_i64Add(($502|0),($503|0),($470|0),($471|0))|0); + $507 = tempRet0; + $508 = (_bitshift64Shl(($504|0),($505|0),50)|0); + $509 = tempRet0; + $510 = (_bitshift64Lshr(($504|0),($505|0),14)|0); + $511 = tempRet0; + $512 = $508 | $510; + $513 = $509 | $511; + $514 = (_bitshift64Shl(($504|0),($505|0),46)|0); + $515 = tempRet0; + $516 = (_bitshift64Lshr(($504|0),($505|0),18)|0); + $517 = tempRet0; + $518 = $514 | $516; + $519 = $515 | $517; + $520 = $512 ^ $518; + $521 = $513 ^ $519; + $522 = (_bitshift64Shl(($504|0),($505|0),23)|0); + $523 = tempRet0; + $524 = (_bitshift64Lshr(($504|0),($505|0),41)|0); + $525 = tempRet0; + $526 = $522 | $524; + $527 = $523 | $525; + $528 = $520 ^ $526; + $529 = $521 ^ $527; + $530 = $417 ^ $330; + $531 = $418 ^ $331; + $532 = $504 & $530; + $533 = $505 & $531; + $534 = $532 ^ $330; + $535 = $533 ^ $331; + $536 = $i$29 | 4; + $537 = (31904 + ($536<<3)|0); + $538 = $537; + $539 = $538; + $540 = HEAP32[$539>>2]|0; + $541 = (($538) + 4)|0; + $542 = $541; + $543 = HEAP32[$542>>2]|0; + $544 = (($W) + ($536<<3)|0); + $545 = $544; + $546 = $545; + $547 = HEAP32[$546>>2]|0; + $548 = (($545) + 4)|0; + $549 = $548; + $550 = HEAP32[$549>>2]|0; + $551 = (_i64Add(($540|0),($543|0),($243|0),($244|0))|0); + $552 = tempRet0; + $553 = (_i64Add(($551|0),($552|0),($547|0),($550|0))|0); + $554 = tempRet0; + $555 = (_i64Add(($553|0),($554|0),($534|0),($535|0))|0); + $556 = tempRet0; + $557 = (_i64Add(($555|0),($556|0),($528|0),($529|0))|0); + $558 = tempRet0; + $559 = (_bitshift64Shl(($506|0),($507|0),36)|0); + $560 = tempRet0; + $561 = (_bitshift64Lshr(($506|0),($507|0),28)|0); + $562 = tempRet0; + $563 = $559 | $561; + $564 = $560 | $562; + $565 = (_bitshift64Shl(($506|0),($507|0),30)|0); + $566 = tempRet0; + $567 = (_bitshift64Lshr(($506|0),($507|0),34)|0); + $568 = tempRet0; + $569 = $565 | $567; + $570 = $566 | $568; + $571 = $563 ^ $569; + $572 = $564 ^ $570; + $573 = (_bitshift64Shl(($506|0),($507|0),25)|0); + $574 = tempRet0; + $575 = (_bitshift64Lshr(($506|0),($507|0),39)|0); + $576 = tempRet0; + $577 = $573 | $575; + $578 = $574 | $576; + $579 = $571 ^ $577; + $580 = $572 ^ $578; + $581 = $506 & $419; + $582 = $507 & $420; + $583 = $506 | $419; + $584 = $507 | $420; + $585 = $583 & $332; + $586 = $584 & $333; + $587 = $585 | $581; + $588 = $586 | $582; + $589 = (_i64Add(($579|0),($580|0),($587|0),($588|0))|0); + $590 = tempRet0; + $591 = (_i64Add(($557|0),($558|0),($245|0),($246|0))|0); + $592 = tempRet0; + $593 = (_i64Add(($589|0),($590|0),($557|0),($558|0))|0); + $594 = tempRet0; + $595 = (_bitshift64Shl(($591|0),($592|0),50)|0); + $596 = tempRet0; + $597 = (_bitshift64Lshr(($591|0),($592|0),14)|0); + $598 = tempRet0; + $599 = $595 | $597; + $600 = $596 | $598; + $601 = (_bitshift64Shl(($591|0),($592|0),46)|0); + $602 = tempRet0; + $603 = (_bitshift64Lshr(($591|0),($592|0),18)|0); + $604 = tempRet0; + $605 = $601 | $603; + $606 = $602 | $604; + $607 = $599 ^ $605; + $608 = $600 ^ $606; + $609 = (_bitshift64Shl(($591|0),($592|0),23)|0); + $610 = tempRet0; + $611 = (_bitshift64Lshr(($591|0),($592|0),41)|0); + $612 = tempRet0; + $613 = $609 | $611; + $614 = $610 | $612; + $615 = $607 ^ $613; + $616 = $608 ^ $614; + $617 = $504 ^ $417; + $618 = $505 ^ $418; + $619 = $591 & $617; + $620 = $592 & $618; + $621 = $619 ^ $417; + $622 = $620 ^ $418; + $623 = $i$29 | 5; + $624 = (31904 + ($623<<3)|0); + $625 = $624; + $626 = $625; + $627 = HEAP32[$626>>2]|0; + $628 = (($625) + 4)|0; + $629 = $628; + $630 = HEAP32[$629>>2]|0; + $631 = (($W) + ($623<<3)|0); + $632 = $631; + $633 = $632; + $634 = HEAP32[$633>>2]|0; + $635 = (($632) + 4)|0; + $636 = $635; + $637 = HEAP32[$636>>2]|0; + $638 = (_i64Add(($627|0),($630|0),($330|0),($331|0))|0); + $639 = tempRet0; + $640 = (_i64Add(($638|0),($639|0),($634|0),($637|0))|0); + $641 = tempRet0; + $642 = (_i64Add(($640|0),($641|0),($621|0),($622|0))|0); + $643 = tempRet0; + $644 = (_i64Add(($642|0),($643|0),($615|0),($616|0))|0); + $645 = tempRet0; + $646 = (_bitshift64Shl(($593|0),($594|0),36)|0); + $647 = tempRet0; + $648 = (_bitshift64Lshr(($593|0),($594|0),28)|0); + $649 = tempRet0; + $650 = $646 | $648; + $651 = $647 | $649; + $652 = (_bitshift64Shl(($593|0),($594|0),30)|0); + $653 = tempRet0; + $654 = (_bitshift64Lshr(($593|0),($594|0),34)|0); + $655 = tempRet0; + $656 = $652 | $654; + $657 = $653 | $655; + $658 = $650 ^ $656; + $659 = $651 ^ $657; + $660 = (_bitshift64Shl(($593|0),($594|0),25)|0); + $661 = tempRet0; + $662 = (_bitshift64Lshr(($593|0),($594|0),39)|0); + $663 = tempRet0; + $664 = $660 | $662; + $665 = $661 | $663; + $666 = $658 ^ $664; + $667 = $659 ^ $665; + $668 = $593 & $506; + $669 = $594 & $507; + $670 = $593 | $506; + $671 = $594 | $507; + $672 = $670 & $419; + $673 = $671 & $420; + $674 = $672 | $668; + $675 = $673 | $669; + $676 = (_i64Add(($666|0),($667|0),($674|0),($675|0))|0); + $677 = tempRet0; + $678 = (_i64Add(($644|0),($645|0),($332|0),($333|0))|0); + $679 = tempRet0; + $680 = (_i64Add(($676|0),($677|0),($644|0),($645|0))|0); + $681 = tempRet0; + $682 = (_bitshift64Shl(($678|0),($679|0),50)|0); + $683 = tempRet0; + $684 = (_bitshift64Lshr(($678|0),($679|0),14)|0); + $685 = tempRet0; + $686 = $682 | $684; + $687 = $683 | $685; + $688 = (_bitshift64Shl(($678|0),($679|0),46)|0); + $689 = tempRet0; + $690 = (_bitshift64Lshr(($678|0),($679|0),18)|0); + $691 = tempRet0; + $692 = $688 | $690; + $693 = $689 | $691; + $694 = $686 ^ $692; + $695 = $687 ^ $693; + $696 = (_bitshift64Shl(($678|0),($679|0),23)|0); + $697 = tempRet0; + $698 = (_bitshift64Lshr(($678|0),($679|0),41)|0); + $699 = tempRet0; + $700 = $696 | $698; + $701 = $697 | $699; + $702 = $694 ^ $700; + $703 = $695 ^ $701; + $704 = $591 ^ $504; + $705 = $592 ^ $505; + $706 = $678 & $704; + $707 = $679 & $705; + $708 = $706 ^ $504; + $709 = $707 ^ $505; + $710 = $i$29 | 6; + $711 = (31904 + ($710<<3)|0); + $712 = $711; + $713 = $712; + $714 = HEAP32[$713>>2]|0; + $715 = (($712) + 4)|0; + $716 = $715; + $717 = HEAP32[$716>>2]|0; + $718 = (($W) + ($710<<3)|0); + $719 = $718; + $720 = $719; + $721 = HEAP32[$720>>2]|0; + $722 = (($719) + 4)|0; + $723 = $722; + $724 = HEAP32[$723>>2]|0; + $725 = (_i64Add(($721|0),($724|0),($714|0),($717|0))|0); + $726 = tempRet0; + $727 = (_i64Add(($725|0),($726|0),($417|0),($418|0))|0); + $728 = tempRet0; + $729 = (_i64Add(($727|0),($728|0),($708|0),($709|0))|0); + $730 = tempRet0; + $731 = (_i64Add(($729|0),($730|0),($702|0),($703|0))|0); + $732 = tempRet0; + $733 = (_bitshift64Shl(($680|0),($681|0),36)|0); + $734 = tempRet0; + $735 = (_bitshift64Lshr(($680|0),($681|0),28)|0); + $736 = tempRet0; + $737 = $733 | $735; + $738 = $734 | $736; + $739 = (_bitshift64Shl(($680|0),($681|0),30)|0); + $740 = tempRet0; + $741 = (_bitshift64Lshr(($680|0),($681|0),34)|0); + $742 = tempRet0; + $743 = $739 | $741; + $744 = $740 | $742; + $745 = $737 ^ $743; + $746 = $738 ^ $744; + $747 = (_bitshift64Shl(($680|0),($681|0),25)|0); + $748 = tempRet0; + $749 = (_bitshift64Lshr(($680|0),($681|0),39)|0); + $750 = tempRet0; + $751 = $747 | $749; + $752 = $748 | $750; + $753 = $745 ^ $751; + $754 = $746 ^ $752; + $755 = $680 & $593; + $756 = $681 & $594; + $757 = $680 | $593; + $758 = $681 | $594; + $759 = $757 & $506; + $760 = $758 & $507; + $761 = $759 | $755; + $762 = $760 | $756; + $763 = (_i64Add(($753|0),($754|0),($761|0),($762|0))|0); + $764 = tempRet0; + $765 = (_i64Add(($731|0),($732|0),($419|0),($420|0))|0); + $766 = tempRet0; + $767 = (_i64Add(($763|0),($764|0),($731|0),($732|0))|0); + $768 = tempRet0; + $769 = (_bitshift64Shl(($765|0),($766|0),50)|0); + $770 = tempRet0; + $771 = (_bitshift64Lshr(($765|0),($766|0),14)|0); + $772 = tempRet0; + $773 = $769 | $771; + $774 = $770 | $772; + $775 = (_bitshift64Shl(($765|0),($766|0),46)|0); + $776 = tempRet0; + $777 = (_bitshift64Lshr(($765|0),($766|0),18)|0); + $778 = tempRet0; + $779 = $775 | $777; + $780 = $776 | $778; + $781 = $773 ^ $779; + $782 = $774 ^ $780; + $783 = (_bitshift64Shl(($765|0),($766|0),23)|0); + $784 = tempRet0; + $785 = (_bitshift64Lshr(($765|0),($766|0),41)|0); + $786 = tempRet0; + $787 = $783 | $785; + $788 = $784 | $786; + $789 = $781 ^ $787; + $790 = $782 ^ $788; + $791 = $678 ^ $591; + $792 = $679 ^ $592; + $793 = $765 & $791; + $794 = $766 & $792; + $795 = $793 ^ $591; + $796 = $794 ^ $592; + $797 = $i$29 | 7; + $798 = (31904 + ($797<<3)|0); + $799 = $798; + $800 = $799; + $801 = HEAP32[$800>>2]|0; + $802 = (($799) + 4)|0; + $803 = $802; + $804 = HEAP32[$803>>2]|0; + $805 = (($W) + ($797<<3)|0); + $806 = $805; + $807 = $806; + $808 = HEAP32[$807>>2]|0; + $809 = (($806) + 4)|0; + $810 = $809; + $811 = HEAP32[$810>>2]|0; + $812 = (_i64Add(($808|0),($811|0),($801|0),($804|0))|0); + $813 = tempRet0; + $814 = (_i64Add(($812|0),($813|0),($504|0),($505|0))|0); + $815 = tempRet0; + $816 = (_i64Add(($814|0),($815|0),($795|0),($796|0))|0); + $817 = tempRet0; + $818 = (_i64Add(($816|0),($817|0),($789|0),($790|0))|0); + $819 = tempRet0; + $820 = (_bitshift64Shl(($767|0),($768|0),36)|0); + $821 = tempRet0; + $822 = (_bitshift64Lshr(($767|0),($768|0),28)|0); + $823 = tempRet0; + $824 = $820 | $822; + $825 = $821 | $823; + $826 = (_bitshift64Shl(($767|0),($768|0),30)|0); + $827 = tempRet0; + $828 = (_bitshift64Lshr(($767|0),($768|0),34)|0); + $829 = tempRet0; + $830 = $826 | $828; + $831 = $827 | $829; + $832 = $824 ^ $830; + $833 = $825 ^ $831; + $834 = (_bitshift64Shl(($767|0),($768|0),25)|0); + $835 = tempRet0; + $836 = (_bitshift64Lshr(($767|0),($768|0),39)|0); + $837 = tempRet0; + $838 = $834 | $836; + $839 = $835 | $837; + $840 = $832 ^ $838; + $841 = $833 ^ $839; + $842 = $767 & $680; + $843 = $768 & $681; + $844 = $767 | $680; + $845 = $768 | $681; + $846 = $844 & $593; + $847 = $845 & $594; + $848 = $846 | $842; + $849 = $847 | $843; + $850 = (_i64Add(($840|0),($841|0),($848|0),($849|0))|0); + $851 = tempRet0; + $852 = (_i64Add(($818|0),($819|0),($506|0),($507|0))|0); + $853 = tempRet0; + $854 = (_i64Add(($850|0),($851|0),($818|0),($819|0))|0); + $855 = tempRet0; + $856 = (($i$29) + 8)|0; + $857 = ($856|0)<(80); + if ($857) { + $145 = $852;$146 = $853;$170 = $678;$171 = $765;$173 = $679;$174 = $766;$193 = $591;$194 = $592;$203 = $854;$204 = $855;$228 = $767;$230 = $768;$234 = $680;$236 = $681;$241 = $593;$242 = $594;$i$29 = $856; + } else { + break; + } + } + $858 = $r; + $859 = $858; + $860 = HEAP32[$859>>2]|0; + $861 = (($858) + 4)|0; + $862 = $861; + $863 = HEAP32[$862>>2]|0; + $864 = (_i64Add(($860|0),($863|0),($854|0),($855|0))|0); + $865 = tempRet0; + $866 = $r; + $867 = $866; + HEAP32[$867>>2] = $864; + $868 = (($866) + 4)|0; + $869 = $868; + HEAP32[$869>>2] = $865; + $870 = $96; + $871 = $870; + $872 = HEAP32[$871>>2]|0; + $873 = (($870) + 4)|0; + $874 = $873; + $875 = HEAP32[$874>>2]|0; + $876 = (_i64Add(($872|0),($875|0),($767|0),($768|0))|0); + $877 = tempRet0; + $878 = $96; + $879 = $878; + HEAP32[$879>>2] = $876; + $880 = (($878) + 4)|0; + $881 = $880; + HEAP32[$881>>2] = $877; + $882 = $103; + $883 = $882; + $884 = HEAP32[$883>>2]|0; + $885 = (($882) + 4)|0; + $886 = $885; + $887 = HEAP32[$886>>2]|0; + $888 = (_i64Add(($884|0),($887|0),($680|0),($681|0))|0); + $889 = tempRet0; + $890 = $103; + $891 = $890; + HEAP32[$891>>2] = $888; + $892 = (($890) + 4)|0; + $893 = $892; + HEAP32[$893>>2] = $889; + $894 = $110; + $895 = $894; + $896 = HEAP32[$895>>2]|0; + $897 = (($894) + 4)|0; + $898 = $897; + $899 = HEAP32[$898>>2]|0; + $900 = (_i64Add(($896|0),($899|0),($593|0),($594|0))|0); + $901 = tempRet0; + $902 = $110; + $903 = $902; + HEAP32[$903>>2] = $900; + $904 = (($902) + 4)|0; + $905 = $904; + HEAP32[$905>>2] = $901; + $906 = $117; + $907 = $906; + $908 = HEAP32[$907>>2]|0; + $909 = (($906) + 4)|0; + $910 = $909; + $911 = HEAP32[$910>>2]|0; + $912 = (_i64Add(($908|0),($911|0),($852|0),($853|0))|0); + $913 = tempRet0; + $914 = $117; + $915 = $914; + HEAP32[$915>>2] = $912; + $916 = (($914) + 4)|0; + $917 = $916; + HEAP32[$917>>2] = $913; + $918 = $124; + $919 = $918; + $920 = HEAP32[$919>>2]|0; + $921 = (($918) + 4)|0; + $922 = $921; + $923 = HEAP32[$922>>2]|0; + $924 = (_i64Add(($920|0),($923|0),($765|0),($766|0))|0); + $925 = tempRet0; + $926 = $124; + $927 = $926; + HEAP32[$927>>2] = $924; + $928 = (($926) + 4)|0; + $929 = $928; + HEAP32[$929>>2] = $925; + $930 = $131; + $931 = $930; + $932 = HEAP32[$931>>2]|0; + $933 = (($930) + 4)|0; + $934 = $933; + $935 = HEAP32[$934>>2]|0; + $936 = (_i64Add(($932|0),($935|0),($678|0),($679|0))|0); + $937 = tempRet0; + $938 = $131; + $939 = $938; + HEAP32[$939>>2] = $936; + $940 = (($938) + 4)|0; + $941 = $940; + HEAP32[$941>>2] = $937; + $942 = $138; + $943 = $942; + $944 = HEAP32[$943>>2]|0; + $945 = (($942) + 4)|0; + $946 = $945; + $947 = HEAP32[$946>>2]|0; + $948 = (_i64Add(($944|0),($947|0),($591|0),($592|0))|0); + $949 = tempRet0; + $950 = $138; + $951 = $950; + HEAP32[$951>>2] = $948; + $952 = (($950) + 4)|0; + $953 = $952; + HEAP32[$953>>2] = $949; + STACKTOP = sp;return; +} +function _sha384_close($cc,$dst,$rnum) { + $cc = $cc|0; + $dst = $dst|0; + $rnum = $rnum|0; + var label = 0, sp = 0; + sp = STACKTOP; + _sha384_addbits_and_close($cc,0,0,$dst,$rnum); + STACKTOP = sp;return; +} +function _sha384_addbits_and_close($cc,$ub,$n,$dst,$rnum) { + $cc = $cc|0; + $ub = $ub|0; + $n = $n|0; + $dst = $dst|0; + $rnum = $rnum|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $exitcond = 0, $u$01 = 0, dest = 0, label = 0, sp = 0, stop = 0; + sp = STACKTOP; + $0 = (($cc) + 192|0); + $1 = $0; + $2 = $1; + $3 = HEAP32[$2>>2]|0; + $4 = (($1) + 4)|0; + $5 = $4; + $6 = HEAP32[$5>>2]|0; + $7 = $3 & 127; + $8 = 128 >>> $n; + $9 = (0 - ($8))|0; + $10 = $9 & $ub; + $11 = $10 | $8; + $12 = $11&255; + $13 = (($7) + 1)|0; + $14 = (($cc) + ($7)|0); + HEAP8[$14>>0] = $12; + $15 = ($13>>>0)>(112); + $16 = (($cc) + ($13)|0); + if ($15) { + $17 = $7 ^ 127; + _memset(($16|0),0,($17|0))|0; + $18 = (($cc) + 128|0); + _sha3_round($cc,$18); + dest=$cc+0|0; stop=dest+112|0; do { HEAP8[dest>>0]=0|0; dest=dest+1|0; } while ((dest|0) < (stop|0)); + } else { + $19 = (111 - ($7))|0; + _memset(($16|0),0,($19|0))|0; + } + $20 = (($cc) + 112|0); + $21 = $0; + $22 = $21; + $23 = HEAP32[$22>>2]|0; + $24 = (($21) + 4)|0; + $25 = $24; + $26 = HEAP32[$25>>2]|0; + $27 = (_bitshift64Lshr(($23|0),($26|0),61)|0); + $28 = tempRet0; + _sph_enc64be_aligned($20,$27,$28); + $29 = (($cc) + 120|0); + $30 = $0; + $31 = $30; + $32 = HEAP32[$31>>2]|0; + $33 = (($30) + 4)|0; + $34 = $33; + $35 = HEAP32[$34>>2]|0; + $36 = (_bitshift64Shl(($32|0),($35|0),3)|0); + $37 = tempRet0; + $38 = (_i64Add(($36|0),($37|0),($n|0),0)|0); + $39 = tempRet0; + _sph_enc64be_aligned($29,$38,$39); + $40 = (($cc) + 128|0); + _sha3_round($cc,$40); + $41 = ($rnum|0)==(0); + if ($41) { + STACKTOP = sp;return; + } else { + $u$01 = 0; + } + while(1) { + $42 = $u$01 << 3; + $43 = (($dst) + ($42)|0); + $44 = (($40) + ($u$01<<3)|0); + $45 = $44; + $46 = $45; + $47 = HEAP32[$46>>2]|0; + $48 = (($45) + 4)|0; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + _sph_enc64be($43,$47,$50); + $51 = (($u$01) + 1)|0; + $exitcond = ($51|0)==($rnum|0); + if ($exitcond) { + break; + } else { + $u$01 = $51; + } + } + STACKTOP = sp;return; +} +function _sph_dec64be_aligned($src) { + $src = $src|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$src>>0]|0; + $1 = $0&255; + $2 = (_bitshift64Shl(($1|0),0,56)|0); + $3 = tempRet0; + $4 = (($src) + 1|0); + $5 = HEAP8[$4>>0]|0; + $6 = $5&255; + $7 = (_bitshift64Shl(($6|0),0,48)|0); + $8 = tempRet0; + $9 = $7 | $2; + $10 = $8 | $3; + $11 = (($src) + 2|0); + $12 = HEAP8[$11>>0]|0; + $13 = $12&255; + $14 = (_bitshift64Shl(($13|0),0,40)|0); + $15 = tempRet0; + $16 = $9 | $14; + $17 = $10 | $15; + $18 = (($src) + 3|0); + $19 = HEAP8[$18>>0]|0; + $20 = $19&255; + $21 = $17 | $20; + $22 = (($src) + 4|0); + $23 = HEAP8[$22>>0]|0; + $24 = $23&255; + $25 = (_bitshift64Shl(($24|0),0,24)|0); + $26 = tempRet0; + $27 = $16 | $25; + $28 = $21 | $26; + $29 = (($src) + 5|0); + $30 = HEAP8[$29>>0]|0; + $31 = $30&255; + $32 = (_bitshift64Shl(($31|0),0,16)|0); + $33 = tempRet0; + $34 = $27 | $32; + $35 = $28 | $33; + $36 = (($src) + 6|0); + $37 = HEAP8[$36>>0]|0; + $38 = $37&255; + $39 = (_bitshift64Shl(($38|0),0,8)|0); + $40 = tempRet0; + $41 = $34 | $39; + $42 = $35 | $40; + $43 = (($src) + 7|0); + $44 = HEAP8[$43>>0]|0; + $45 = $44&255; + $46 = $41 | $45; + tempRet0 = $42; + STACKTOP = sp;return ($46|0); +} +function _sph_enc64be_aligned($dst,$0,$1) { + $dst = $dst|0; + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = (_bitshift64Lshr(($0|0),($1|0),56)|0); + $3 = tempRet0; + $4 = $2&255; + HEAP8[$dst>>0] = $4; + $5 = (_bitshift64Lshr(($0|0),($1|0),48)|0); + $6 = tempRet0; + $7 = $5&255; + $8 = (($dst) + 1|0); + HEAP8[$8>>0] = $7; + $9 = (_bitshift64Lshr(($0|0),($1|0),40)|0); + $10 = tempRet0; + $11 = $9&255; + $12 = (($dst) + 2|0); + HEAP8[$12>>0] = $11; + $13 = $1&255; + $14 = (($dst) + 3|0); + HEAP8[$14>>0] = $13; + $15 = (_bitshift64Lshr(($0|0),($1|0),24)|0); + $16 = tempRet0; + $17 = $15&255; + $18 = (($dst) + 4|0); + HEAP8[$18>>0] = $17; + $19 = (_bitshift64Lshr(($0|0),($1|0),16)|0); + $20 = tempRet0; + $21 = $19&255; + $22 = (($dst) + 5|0); + HEAP8[$22>>0] = $21; + $23 = (_bitshift64Lshr(($0|0),($1|0),8)|0); + $24 = tempRet0; + $25 = $23&255; + $26 = (($dst) + 6|0); + HEAP8[$26>>0] = $25; + $27 = $0&255; + $28 = (($dst) + 7|0); + HEAP8[$28>>0] = $27; + STACKTOP = sp;return; +} +function _sph_enc64be($dst,$0,$1) { + $dst = $dst|0; + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = (_bitshift64Lshr(($0|0),($1|0),56)|0); + $3 = tempRet0; + $4 = $2&255; + HEAP8[$dst>>0] = $4; + $5 = (_bitshift64Lshr(($0|0),($1|0),48)|0); + $6 = tempRet0; + $7 = $5&255; + $8 = (($dst) + 1|0); + HEAP8[$8>>0] = $7; + $9 = (_bitshift64Lshr(($0|0),($1|0),40)|0); + $10 = tempRet0; + $11 = $9&255; + $12 = (($dst) + 2|0); + HEAP8[$12>>0] = $11; + $13 = $1&255; + $14 = (($dst) + 3|0); + HEAP8[$14>>0] = $13; + $15 = (_bitshift64Lshr(($0|0),($1|0),24)|0); + $16 = tempRet0; + $17 = $15&255; + $18 = (($dst) + 4|0); + HEAP8[$18>>0] = $17; + $19 = (_bitshift64Lshr(($0|0),($1|0),16)|0); + $20 = tempRet0; + $21 = $19&255; + $22 = (($dst) + 5|0); + HEAP8[$22>>0] = $21; + $23 = (_bitshift64Lshr(($0|0),($1|0),8)|0); + $24 = tempRet0; + $25 = $23&255; + $26 = (($dst) + 6|0); + HEAP8[$26>>0] = $25; + $27 = $0&255; + $28 = (($dst) + 7|0); + HEAP8[$28>>0] = $27; + STACKTOP = sp;return; +} +function _malloc($bytes) { + $bytes = $bytes|0; + var $$pre = 0, $$pre$i = 0, $$pre$i$i = 0, $$pre$i23$i = 0, $$pre$i25 = 0, $$pre$phi$i$iZ2D = 0, $$pre$phi$i24$iZ2D = 0, $$pre$phi$i26Z2D = 0, $$pre$phi$iZ2D = 0, $$pre$phi59$i$iZ2D = 0, $$pre$phiZ2D = 0, $$pre105 = 0, $$pre58$i$i = 0, $$rsize$0$i = 0, $$rsize$3$i = 0, $$sum = 0, $$sum$i$i = 0, $$sum$i$i$i = 0, $$sum$i12$i = 0, $$sum$i13$i = 0; + var $$sum$i16$i = 0, $$sum$i19$i = 0, $$sum$i2338 = 0, $$sum$i32 = 0, $$sum$i39 = 0, $$sum1 = 0, $$sum1$i = 0, $$sum1$i$i = 0, $$sum1$i14$i = 0, $$sum1$i20$i = 0, $$sum1$i24 = 0, $$sum10 = 0, $$sum10$i = 0, $$sum10$i$i = 0, $$sum10$pre$i$i = 0, $$sum102$i = 0, $$sum103$i = 0, $$sum104$i = 0, $$sum105$i = 0, $$sum106$i = 0; + var $$sum107$i = 0, $$sum108$i = 0, $$sum109$i = 0, $$sum11$i = 0, $$sum11$i$i = 0, $$sum11$i22$i = 0, $$sum110$i = 0, $$sum111$i = 0, $$sum1112 = 0, $$sum112$i = 0, $$sum113$i = 0, $$sum114$i = 0, $$sum115$i = 0, $$sum12$i = 0, $$sum12$i$i = 0, $$sum13$i = 0, $$sum13$i$i = 0, $$sum14$i$i = 0, $$sum14$pre$i = 0, $$sum15$i = 0; + var $$sum15$i$i = 0, $$sum16$i = 0, $$sum16$i$i = 0, $$sum17$i = 0, $$sum17$i$i = 0, $$sum18$i = 0, $$sum1819$i$i = 0, $$sum2 = 0, $$sum2$i = 0, $$sum2$i$i = 0, $$sum2$i$i$i = 0, $$sum2$i15$i = 0, $$sum2$i17$i = 0, $$sum2$i21$i = 0, $$sum2$pre$i = 0, $$sum20$i$i = 0, $$sum21$i$i = 0, $$sum22$i$i = 0, $$sum23$i$i = 0, $$sum24$i$i = 0; + var $$sum25$i$i = 0, $$sum26$pre$i$i = 0, $$sum27$i$i = 0, $$sum28$i$i = 0, $$sum29$i$i = 0, $$sum3$i = 0, $$sum3$i$i = 0, $$sum3$i27 = 0, $$sum30$i$i = 0, $$sum3132$i$i = 0, $$sum34$i$i = 0, $$sum3536$i$i = 0, $$sum3738$i$i = 0, $$sum39$i$i = 0, $$sum4 = 0, $$sum4$i = 0, $$sum4$i28 = 0, $$sum40$i$i = 0, $$sum41$i$i = 0, $$sum42$i$i = 0; + var $$sum5$i = 0, $$sum5$i$i = 0, $$sum56 = 0, $$sum6$i = 0, $$sum67$i$i = 0, $$sum7$i = 0, $$sum8$i = 0, $$sum8$pre = 0, $$sum9 = 0, $$sum9$i = 0, $$sum9$i$i = 0, $$tsize$1$i = 0, $$v$0$i = 0, $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0; + var $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0; + var $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0; + var $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0; + var $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0, $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $108 = 0; + var $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0; + var $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0; + var $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0; + var $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0; + var $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0; + var $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0; + var $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0; + var $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0; + var $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0; + var $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0; + var $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0; + var $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0; + var $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0; + var $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0; + var $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0; + var $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0; + var $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0; + var $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0; + var $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0; + var $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0; + var $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0; + var $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0; + var $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0; + var $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0; + var $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0; + var $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0; + var $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0; + var $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0; + var $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0; + var $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0; + var $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0; + var $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0; + var $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0; + var $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0; + var $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0; + var $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0; + var $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0; + var $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0; + var $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0; + var $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0; + var $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0; + var $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0; + var $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0; + var $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0; + var $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0; + var $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0; + var $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0; + var $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0; + var $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0; + var $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, $F$0$i$i = 0, $F1$0$i = 0, $F4$0 = 0, $F4$0$i$i = 0, $F5$0$i = 0, $I1$0$c$i$i = 0, $I1$0$i$i = 0, $I7$0$i = 0, $I7$0$i$i = 0, $K12$027$i = 0, $K2$015$i$i = 0, $K8$053$i$i = 0; + var $R$0$i = 0, $R$0$i$i = 0, $R$0$i18 = 0, $R$1$i = 0, $R$1$i$i = 0, $R$1$i20 = 0, $RP$0$i = 0, $RP$0$i$i = 0, $RP$0$i17 = 0, $T$0$lcssa$i = 0, $T$0$lcssa$i$i = 0, $T$0$lcssa$i26$i = 0, $T$014$i$i = 0, $T$026$i = 0, $T$052$i$i = 0, $br$0$i = 0, $br$030$i = 0, $cond$i = 0, $cond$i$i = 0, $cond$i21 = 0; + var $exitcond$i$i = 0, $i$02$i$i = 0, $idx$0$i = 0, $mem$0 = 0, $nb$0 = 0, $oldfirst$0$i$i = 0, $or$cond$i = 0, $or$cond$i$i = 0, $or$cond$i27$i = 0, $or$cond$i29 = 0, $or$cond1$i = 0, $or$cond19$i = 0, $or$cond2$i = 0, $or$cond24$i = 0, $or$cond3$i = 0, $or$cond4$i = 0, $or$cond47$i = 0, $or$cond5$i = 0, $or$cond6$i = 0, $or$cond8$i = 0; + var $qsize$0$i$i = 0, $rsize$0$i = 0, $rsize$0$i15 = 0, $rsize$1$i = 0, $rsize$2$i = 0, $rsize$3$lcssa$i = 0, $rsize$331$i = 0, $rst$0$i = 0, $rst$1$i = 0, $sizebits$0$i = 0, $sp$0$i$i = 0, $sp$0$i$i$i = 0, $sp$073$i = 0, $sp$166$i = 0, $ssize$0$i = 0, $ssize$1$i = 0, $ssize$129$i = 0, $ssize$2$i = 0, $t$0$i = 0, $t$0$i14 = 0; + var $t$1$i = 0, $t$2$ph$i = 0, $t$2$v$3$i = 0, $t$230$i = 0, $tbase$245$i = 0, $tsize$03141$i = 0, $tsize$1$i = 0, $tsize$244$i = 0, $v$0$i = 0, $v$0$i16 = 0, $v$1$i = 0, $v$2$i = 0, $v$3$lcssa$i = 0, $v$332$i = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = ($bytes>>>0)<(245); + do { + if ($0) { + $1 = ($bytes>>>0)<(11); + if ($1) { + $5 = 16; + } else { + $2 = (($bytes) + 11)|0; + $3 = $2 & -8; + $5 = $3; + } + $4 = $5 >>> 3; + $6 = HEAP32[32544>>2]|0; + $7 = $6 >>> $4; + $8 = $7 & 3; + $9 = ($8|0)==(0); + if (!($9)) { + $10 = $7 & 1; + $11 = $10 ^ 1; + $12 = (($11) + ($4))|0; + $13 = $12 << 1; + $14 = ((32544 + ($13<<2)|0) + 40|0); + $$sum10 = (($13) + 2)|0; + $15 = ((32544 + ($$sum10<<2)|0) + 40|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($16) + 8|0); + $18 = HEAP32[$17>>2]|0; + $19 = ($14|0)==($18|0); + do { + if ($19) { + $20 = 1 << $12; + $21 = $20 ^ -1; + $22 = $6 & $21; + HEAP32[32544>>2] = $22; + } else { + $23 = HEAP32[((32544 + 16|0))>>2]|0; + $24 = ($18>>>0)<($23>>>0); + if ($24) { + _abort(); + // unreachable; + } + $25 = (($18) + 12|0); + $26 = HEAP32[$25>>2]|0; + $27 = ($26|0)==($16|0); + if ($27) { + HEAP32[$25>>2] = $14; + HEAP32[$15>>2] = $18; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $28 = $12 << 3; + $29 = $28 | 3; + $30 = (($16) + 4|0); + HEAP32[$30>>2] = $29; + $$sum1112 = $28 | 4; + $31 = (($16) + ($$sum1112)|0); + $32 = HEAP32[$31>>2]|0; + $33 = $32 | 1; + HEAP32[$31>>2] = $33; + $mem$0 = $17; + STACKTOP = sp;return ($mem$0|0); + } + $34 = HEAP32[((32544 + 8|0))>>2]|0; + $35 = ($5>>>0)>($34>>>0); + if ($35) { + $36 = ($7|0)==(0); + if (!($36)) { + $37 = $7 << $4; + $38 = 2 << $4; + $39 = (0 - ($38))|0; + $40 = $38 | $39; + $41 = $37 & $40; + $42 = (0 - ($41))|0; + $43 = $41 & $42; + $44 = (($43) + -1)|0; + $45 = $44 >>> 12; + $46 = $45 & 16; + $47 = $44 >>> $46; + $48 = $47 >>> 5; + $49 = $48 & 8; + $50 = $49 | $46; + $51 = $47 >>> $49; + $52 = $51 >>> 2; + $53 = $52 & 4; + $54 = $50 | $53; + $55 = $51 >>> $53; + $56 = $55 >>> 1; + $57 = $56 & 2; + $58 = $54 | $57; + $59 = $55 >>> $57; + $60 = $59 >>> 1; + $61 = $60 & 1; + $62 = $58 | $61; + $63 = $59 >>> $61; + $64 = (($62) + ($63))|0; + $65 = $64 << 1; + $66 = ((32544 + ($65<<2)|0) + 40|0); + $$sum4 = (($65) + 2)|0; + $67 = ((32544 + ($$sum4<<2)|0) + 40|0); + $68 = HEAP32[$67>>2]|0; + $69 = (($68) + 8|0); + $70 = HEAP32[$69>>2]|0; + $71 = ($66|0)==($70|0); + do { + if ($71) { + $72 = 1 << $64; + $73 = $72 ^ -1; + $74 = $6 & $73; + HEAP32[32544>>2] = $74; + $88 = $34; + } else { + $75 = HEAP32[((32544 + 16|0))>>2]|0; + $76 = ($70>>>0)<($75>>>0); + if ($76) { + _abort(); + // unreachable; + } + $77 = (($70) + 12|0); + $78 = HEAP32[$77>>2]|0; + $79 = ($78|0)==($68|0); + if ($79) { + HEAP32[$77>>2] = $66; + HEAP32[$67>>2] = $70; + $$pre = HEAP32[((32544 + 8|0))>>2]|0; + $88 = $$pre; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $80 = $64 << 3; + $81 = (($80) - ($5))|0; + $82 = $5 | 3; + $83 = (($68) + 4|0); + HEAP32[$83>>2] = $82; + $84 = (($68) + ($5)|0); + $85 = $81 | 1; + $$sum56 = $5 | 4; + $86 = (($68) + ($$sum56)|0); + HEAP32[$86>>2] = $85; + $87 = (($68) + ($80)|0); + HEAP32[$87>>2] = $81; + $89 = ($88|0)==(0); + if (!($89)) { + $90 = HEAP32[((32544 + 20|0))>>2]|0; + $91 = $88 >>> 3; + $92 = $91 << 1; + $93 = ((32544 + ($92<<2)|0) + 40|0); + $94 = HEAP32[32544>>2]|0; + $95 = 1 << $91; + $96 = $94 & $95; + $97 = ($96|0)==(0); + if ($97) { + $98 = $94 | $95; + HEAP32[32544>>2] = $98; + $$sum8$pre = (($92) + 2)|0; + $$pre105 = ((32544 + ($$sum8$pre<<2)|0) + 40|0); + $$pre$phiZ2D = $$pre105;$F4$0 = $93; + } else { + $$sum9 = (($92) + 2)|0; + $99 = ((32544 + ($$sum9<<2)|0) + 40|0); + $100 = HEAP32[$99>>2]|0; + $101 = HEAP32[((32544 + 16|0))>>2]|0; + $102 = ($100>>>0)<($101>>>0); + if ($102) { + _abort(); + // unreachable; + } else { + $$pre$phiZ2D = $99;$F4$0 = $100; + } + } + HEAP32[$$pre$phiZ2D>>2] = $90; + $103 = (($F4$0) + 12|0); + HEAP32[$103>>2] = $90; + $104 = (($90) + 8|0); + HEAP32[$104>>2] = $F4$0; + $105 = (($90) + 12|0); + HEAP32[$105>>2] = $93; + } + HEAP32[((32544 + 8|0))>>2] = $81; + HEAP32[((32544 + 20|0))>>2] = $84; + $mem$0 = $69; + STACKTOP = sp;return ($mem$0|0); + } + $106 = HEAP32[((32544 + 4|0))>>2]|0; + $107 = ($106|0)==(0); + if ($107) { + $nb$0 = $5; + } else { + $108 = (0 - ($106))|0; + $109 = $106 & $108; + $110 = (($109) + -1)|0; + $111 = $110 >>> 12; + $112 = $111 & 16; + $113 = $110 >>> $112; + $114 = $113 >>> 5; + $115 = $114 & 8; + $116 = $115 | $112; + $117 = $113 >>> $115; + $118 = $117 >>> 2; + $119 = $118 & 4; + $120 = $116 | $119; + $121 = $117 >>> $119; + $122 = $121 >>> 1; + $123 = $122 & 2; + $124 = $120 | $123; + $125 = $121 >>> $123; + $126 = $125 >>> 1; + $127 = $126 & 1; + $128 = $124 | $127; + $129 = $125 >>> $127; + $130 = (($128) + ($129))|0; + $131 = ((32544 + ($130<<2)|0) + 304|0); + $132 = HEAP32[$131>>2]|0; + $133 = (($132) + 4|0); + $134 = HEAP32[$133>>2]|0; + $135 = $134 & -8; + $136 = (($135) - ($5))|0; + $rsize$0$i = $136;$t$0$i = $132;$v$0$i = $132; + while(1) { + $137 = (($t$0$i) + 16|0); + $138 = HEAP32[$137>>2]|0; + $139 = ($138|0)==(0|0); + if ($139) { + $140 = (($t$0$i) + 20|0); + $141 = HEAP32[$140>>2]|0; + $142 = ($141|0)==(0|0); + if ($142) { + break; + } else { + $144 = $141; + } + } else { + $144 = $138; + } + $143 = (($144) + 4|0); + $145 = HEAP32[$143>>2]|0; + $146 = $145 & -8; + $147 = (($146) - ($5))|0; + $148 = ($147>>>0)<($rsize$0$i>>>0); + $$rsize$0$i = $148 ? $147 : $rsize$0$i; + $$v$0$i = $148 ? $144 : $v$0$i; + $rsize$0$i = $$rsize$0$i;$t$0$i = $144;$v$0$i = $$v$0$i; + } + $149 = HEAP32[((32544 + 16|0))>>2]|0; + $150 = ($v$0$i>>>0)<($149>>>0); + if ($150) { + _abort(); + // unreachable; + } + $151 = (($v$0$i) + ($5)|0); + $152 = ($v$0$i>>>0)<($151>>>0); + if (!($152)) { + _abort(); + // unreachable; + } + $153 = (($v$0$i) + 24|0); + $154 = HEAP32[$153>>2]|0; + $155 = (($v$0$i) + 12|0); + $156 = HEAP32[$155>>2]|0; + $157 = ($156|0)==($v$0$i|0); + do { + if ($157) { + $167 = (($v$0$i) + 20|0); + $168 = HEAP32[$167>>2]|0; + $169 = ($168|0)==(0|0); + if ($169) { + $170 = (($v$0$i) + 16|0); + $171 = HEAP32[$170>>2]|0; + $172 = ($171|0)==(0|0); + if ($172) { + $R$1$i = 0; + break; + } else { + $R$0$i = $171;$RP$0$i = $170; + } + } else { + $R$0$i = $168;$RP$0$i = $167; + } + while(1) { + $173 = (($R$0$i) + 20|0); + $174 = HEAP32[$173>>2]|0; + $175 = ($174|0)==(0|0); + if (!($175)) { + $R$0$i = $174;$RP$0$i = $173; + continue; + } + $176 = (($R$0$i) + 16|0); + $177 = HEAP32[$176>>2]|0; + $178 = ($177|0)==(0|0); + if ($178) { + break; + } else { + $R$0$i = $177;$RP$0$i = $176; + } + } + $179 = ($RP$0$i>>>0)<($149>>>0); + if ($179) { + _abort(); + // unreachable; + } else { + HEAP32[$RP$0$i>>2] = 0; + $R$1$i = $R$0$i; + break; + } + } else { + $158 = (($v$0$i) + 8|0); + $159 = HEAP32[$158>>2]|0; + $160 = ($159>>>0)<($149>>>0); + if ($160) { + _abort(); + // unreachable; + } + $161 = (($159) + 12|0); + $162 = HEAP32[$161>>2]|0; + $163 = ($162|0)==($v$0$i|0); + if (!($163)) { + _abort(); + // unreachable; + } + $164 = (($156) + 8|0); + $165 = HEAP32[$164>>2]|0; + $166 = ($165|0)==($v$0$i|0); + if ($166) { + HEAP32[$161>>2] = $156; + HEAP32[$164>>2] = $159; + $R$1$i = $156; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $180 = ($154|0)==(0|0); + do { + if (!($180)) { + $181 = (($v$0$i) + 28|0); + $182 = HEAP32[$181>>2]|0; + $183 = ((32544 + ($182<<2)|0) + 304|0); + $184 = HEAP32[$183>>2]|0; + $185 = ($v$0$i|0)==($184|0); + if ($185) { + HEAP32[$183>>2] = $R$1$i; + $cond$i = ($R$1$i|0)==(0|0); + if ($cond$i) { + $186 = 1 << $182; + $187 = $186 ^ -1; + $188 = HEAP32[((32544 + 4|0))>>2]|0; + $189 = $188 & $187; + HEAP32[((32544 + 4|0))>>2] = $189; + break; + } + } else { + $190 = HEAP32[((32544 + 16|0))>>2]|0; + $191 = ($154>>>0)<($190>>>0); + if ($191) { + _abort(); + // unreachable; + } + $192 = (($154) + 16|0); + $193 = HEAP32[$192>>2]|0; + $194 = ($193|0)==($v$0$i|0); + if ($194) { + HEAP32[$192>>2] = $R$1$i; + } else { + $195 = (($154) + 20|0); + HEAP32[$195>>2] = $R$1$i; + } + $196 = ($R$1$i|0)==(0|0); + if ($196) { + break; + } + } + $197 = HEAP32[((32544 + 16|0))>>2]|0; + $198 = ($R$1$i>>>0)<($197>>>0); + if ($198) { + _abort(); + // unreachable; + } + $199 = (($R$1$i) + 24|0); + HEAP32[$199>>2] = $154; + $200 = (($v$0$i) + 16|0); + $201 = HEAP32[$200>>2]|0; + $202 = ($201|0)==(0|0); + do { + if (!($202)) { + $203 = ($201>>>0)<($197>>>0); + if ($203) { + _abort(); + // unreachable; + } else { + $204 = (($R$1$i) + 16|0); + HEAP32[$204>>2] = $201; + $205 = (($201) + 24|0); + HEAP32[$205>>2] = $R$1$i; + break; + } + } + } while(0); + $206 = (($v$0$i) + 20|0); + $207 = HEAP32[$206>>2]|0; + $208 = ($207|0)==(0|0); + if (!($208)) { + $209 = HEAP32[((32544 + 16|0))>>2]|0; + $210 = ($207>>>0)<($209>>>0); + if ($210) { + _abort(); + // unreachable; + } else { + $211 = (($R$1$i) + 20|0); + HEAP32[$211>>2] = $207; + $212 = (($207) + 24|0); + HEAP32[$212>>2] = $R$1$i; + break; + } + } + } + } while(0); + $213 = ($rsize$0$i>>>0)<(16); + if ($213) { + $214 = (($rsize$0$i) + ($5))|0; + $215 = $214 | 3; + $216 = (($v$0$i) + 4|0); + HEAP32[$216>>2] = $215; + $$sum4$i = (($214) + 4)|0; + $217 = (($v$0$i) + ($$sum4$i)|0); + $218 = HEAP32[$217>>2]|0; + $219 = $218 | 1; + HEAP32[$217>>2] = $219; + } else { + $220 = $5 | 3; + $221 = (($v$0$i) + 4|0); + HEAP32[$221>>2] = $220; + $222 = $rsize$0$i | 1; + $$sum$i39 = $5 | 4; + $223 = (($v$0$i) + ($$sum$i39)|0); + HEAP32[$223>>2] = $222; + $$sum1$i = (($rsize$0$i) + ($5))|0; + $224 = (($v$0$i) + ($$sum1$i)|0); + HEAP32[$224>>2] = $rsize$0$i; + $225 = HEAP32[((32544 + 8|0))>>2]|0; + $226 = ($225|0)==(0); + if (!($226)) { + $227 = HEAP32[((32544 + 20|0))>>2]|0; + $228 = $225 >>> 3; + $229 = $228 << 1; + $230 = ((32544 + ($229<<2)|0) + 40|0); + $231 = HEAP32[32544>>2]|0; + $232 = 1 << $228; + $233 = $231 & $232; + $234 = ($233|0)==(0); + if ($234) { + $235 = $231 | $232; + HEAP32[32544>>2] = $235; + $$sum2$pre$i = (($229) + 2)|0; + $$pre$i = ((32544 + ($$sum2$pre$i<<2)|0) + 40|0); + $$pre$phi$iZ2D = $$pre$i;$F1$0$i = $230; + } else { + $$sum3$i = (($229) + 2)|0; + $236 = ((32544 + ($$sum3$i<<2)|0) + 40|0); + $237 = HEAP32[$236>>2]|0; + $238 = HEAP32[((32544 + 16|0))>>2]|0; + $239 = ($237>>>0)<($238>>>0); + if ($239) { + _abort(); + // unreachable; + } else { + $$pre$phi$iZ2D = $236;$F1$0$i = $237; + } + } + HEAP32[$$pre$phi$iZ2D>>2] = $227; + $240 = (($F1$0$i) + 12|0); + HEAP32[$240>>2] = $227; + $241 = (($227) + 8|0); + HEAP32[$241>>2] = $F1$0$i; + $242 = (($227) + 12|0); + HEAP32[$242>>2] = $230; + } + HEAP32[((32544 + 8|0))>>2] = $rsize$0$i; + HEAP32[((32544 + 20|0))>>2] = $151; + } + $243 = (($v$0$i) + 8|0); + $mem$0 = $243; + STACKTOP = sp;return ($mem$0|0); + } + } else { + $nb$0 = $5; + } + } else { + $244 = ($bytes>>>0)>(4294967231); + if ($244) { + $nb$0 = -1; + } else { + $245 = (($bytes) + 11)|0; + $246 = $245 & -8; + $247 = HEAP32[((32544 + 4|0))>>2]|0; + $248 = ($247|0)==(0); + if ($248) { + $nb$0 = $246; + } else { + $249 = (0 - ($246))|0; + $250 = $245 >>> 8; + $251 = ($250|0)==(0); + if ($251) { + $idx$0$i = 0; + } else { + $252 = ($246>>>0)>(16777215); + if ($252) { + $idx$0$i = 31; + } else { + $253 = (($250) + 1048320)|0; + $254 = $253 >>> 16; + $255 = $254 & 8; + $256 = $250 << $255; + $257 = (($256) + 520192)|0; + $258 = $257 >>> 16; + $259 = $258 & 4; + $260 = $259 | $255; + $261 = $256 << $259; + $262 = (($261) + 245760)|0; + $263 = $262 >>> 16; + $264 = $263 & 2; + $265 = $260 | $264; + $266 = (14 - ($265))|0; + $267 = $261 << $264; + $268 = $267 >>> 15; + $269 = (($266) + ($268))|0; + $270 = $269 << 1; + $271 = (($269) + 7)|0; + $272 = $246 >>> $271; + $273 = $272 & 1; + $274 = $273 | $270; + $idx$0$i = $274; + } + } + $275 = ((32544 + ($idx$0$i<<2)|0) + 304|0); + $276 = HEAP32[$275>>2]|0; + $277 = ($276|0)==(0|0); + L126: do { + if ($277) { + $rsize$2$i = $249;$t$1$i = 0;$v$2$i = 0; + } else { + $278 = ($idx$0$i|0)==(31); + if ($278) { + $282 = 0; + } else { + $279 = $idx$0$i >>> 1; + $280 = (25 - ($279))|0; + $282 = $280; + } + $281 = $246 << $282; + $rsize$0$i15 = $249;$rst$0$i = 0;$sizebits$0$i = $281;$t$0$i14 = $276;$v$0$i16 = 0; + while(1) { + $283 = (($t$0$i14) + 4|0); + $284 = HEAP32[$283>>2]|0; + $285 = $284 & -8; + $286 = (($285) - ($246))|0; + $287 = ($286>>>0)<($rsize$0$i15>>>0); + if ($287) { + $288 = ($285|0)==($246|0); + if ($288) { + $rsize$2$i = $286;$t$1$i = $t$0$i14;$v$2$i = $t$0$i14; + break L126; + } else { + $rsize$1$i = $286;$v$1$i = $t$0$i14; + } + } else { + $rsize$1$i = $rsize$0$i15;$v$1$i = $v$0$i16; + } + $289 = (($t$0$i14) + 20|0); + $290 = HEAP32[$289>>2]|0; + $291 = $sizebits$0$i >>> 31; + $292 = ((($t$0$i14) + ($291<<2)|0) + 16|0); + $293 = HEAP32[$292>>2]|0; + $294 = ($290|0)==(0|0); + $295 = ($290|0)==($293|0); + $or$cond19$i = $294 | $295; + $rst$1$i = $or$cond19$i ? $rst$0$i : $290; + $296 = ($293|0)==(0|0); + $297 = $sizebits$0$i << 1; + if ($296) { + $rsize$2$i = $rsize$1$i;$t$1$i = $rst$1$i;$v$2$i = $v$1$i; + break; + } else { + $rsize$0$i15 = $rsize$1$i;$rst$0$i = $rst$1$i;$sizebits$0$i = $297;$t$0$i14 = $293;$v$0$i16 = $v$1$i; + } + } + } + } while(0); + $298 = ($t$1$i|0)==(0|0); + $299 = ($v$2$i|0)==(0|0); + $or$cond$i = $298 & $299; + if ($or$cond$i) { + $300 = 2 << $idx$0$i; + $301 = (0 - ($300))|0; + $302 = $300 | $301; + $303 = $247 & $302; + $304 = ($303|0)==(0); + if ($304) { + $nb$0 = $246; + break; + } + $305 = (0 - ($303))|0; + $306 = $303 & $305; + $307 = (($306) + -1)|0; + $308 = $307 >>> 12; + $309 = $308 & 16; + $310 = $307 >>> $309; + $311 = $310 >>> 5; + $312 = $311 & 8; + $313 = $312 | $309; + $314 = $310 >>> $312; + $315 = $314 >>> 2; + $316 = $315 & 4; + $317 = $313 | $316; + $318 = $314 >>> $316; + $319 = $318 >>> 1; + $320 = $319 & 2; + $321 = $317 | $320; + $322 = $318 >>> $320; + $323 = $322 >>> 1; + $324 = $323 & 1; + $325 = $321 | $324; + $326 = $322 >>> $324; + $327 = (($325) + ($326))|0; + $328 = ((32544 + ($327<<2)|0) + 304|0); + $329 = HEAP32[$328>>2]|0; + $t$2$ph$i = $329; + } else { + $t$2$ph$i = $t$1$i; + } + $330 = ($t$2$ph$i|0)==(0|0); + if ($330) { + $rsize$3$lcssa$i = $rsize$2$i;$v$3$lcssa$i = $v$2$i; + } else { + $rsize$331$i = $rsize$2$i;$t$230$i = $t$2$ph$i;$v$332$i = $v$2$i; + while(1) { + $331 = (($t$230$i) + 4|0); + $332 = HEAP32[$331>>2]|0; + $333 = $332 & -8; + $334 = (($333) - ($246))|0; + $335 = ($334>>>0)<($rsize$331$i>>>0); + $$rsize$3$i = $335 ? $334 : $rsize$331$i; + $t$2$v$3$i = $335 ? $t$230$i : $v$332$i; + $336 = (($t$230$i) + 16|0); + $337 = HEAP32[$336>>2]|0; + $338 = ($337|0)==(0|0); + if (!($338)) { + $rsize$331$i = $$rsize$3$i;$t$230$i = $337;$v$332$i = $t$2$v$3$i; + continue; + } + $339 = (($t$230$i) + 20|0); + $340 = HEAP32[$339>>2]|0; + $341 = ($340|0)==(0|0); + if ($341) { + $rsize$3$lcssa$i = $$rsize$3$i;$v$3$lcssa$i = $t$2$v$3$i; + break; + } else { + $rsize$331$i = $$rsize$3$i;$t$230$i = $340;$v$332$i = $t$2$v$3$i; + } + } + } + $342 = ($v$3$lcssa$i|0)==(0|0); + if ($342) { + $nb$0 = $246; + } else { + $343 = HEAP32[((32544 + 8|0))>>2]|0; + $344 = (($343) - ($246))|0; + $345 = ($rsize$3$lcssa$i>>>0)<($344>>>0); + if ($345) { + $346 = HEAP32[((32544 + 16|0))>>2]|0; + $347 = ($v$3$lcssa$i>>>0)<($346>>>0); + if ($347) { + _abort(); + // unreachable; + } + $348 = (($v$3$lcssa$i) + ($246)|0); + $349 = ($v$3$lcssa$i>>>0)<($348>>>0); + if (!($349)) { + _abort(); + // unreachable; + } + $350 = (($v$3$lcssa$i) + 24|0); + $351 = HEAP32[$350>>2]|0; + $352 = (($v$3$lcssa$i) + 12|0); + $353 = HEAP32[$352>>2]|0; + $354 = ($353|0)==($v$3$lcssa$i|0); + do { + if ($354) { + $364 = (($v$3$lcssa$i) + 20|0); + $365 = HEAP32[$364>>2]|0; + $366 = ($365|0)==(0|0); + if ($366) { + $367 = (($v$3$lcssa$i) + 16|0); + $368 = HEAP32[$367>>2]|0; + $369 = ($368|0)==(0|0); + if ($369) { + $R$1$i20 = 0; + break; + } else { + $R$0$i18 = $368;$RP$0$i17 = $367; + } + } else { + $R$0$i18 = $365;$RP$0$i17 = $364; + } + while(1) { + $370 = (($R$0$i18) + 20|0); + $371 = HEAP32[$370>>2]|0; + $372 = ($371|0)==(0|0); + if (!($372)) { + $R$0$i18 = $371;$RP$0$i17 = $370; + continue; + } + $373 = (($R$0$i18) + 16|0); + $374 = HEAP32[$373>>2]|0; + $375 = ($374|0)==(0|0); + if ($375) { + break; + } else { + $R$0$i18 = $374;$RP$0$i17 = $373; + } + } + $376 = ($RP$0$i17>>>0)<($346>>>0); + if ($376) { + _abort(); + // unreachable; + } else { + HEAP32[$RP$0$i17>>2] = 0; + $R$1$i20 = $R$0$i18; + break; + } + } else { + $355 = (($v$3$lcssa$i) + 8|0); + $356 = HEAP32[$355>>2]|0; + $357 = ($356>>>0)<($346>>>0); + if ($357) { + _abort(); + // unreachable; + } + $358 = (($356) + 12|0); + $359 = HEAP32[$358>>2]|0; + $360 = ($359|0)==($v$3$lcssa$i|0); + if (!($360)) { + _abort(); + // unreachable; + } + $361 = (($353) + 8|0); + $362 = HEAP32[$361>>2]|0; + $363 = ($362|0)==($v$3$lcssa$i|0); + if ($363) { + HEAP32[$358>>2] = $353; + HEAP32[$361>>2] = $356; + $R$1$i20 = $353; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $377 = ($351|0)==(0|0); + do { + if (!($377)) { + $378 = (($v$3$lcssa$i) + 28|0); + $379 = HEAP32[$378>>2]|0; + $380 = ((32544 + ($379<<2)|0) + 304|0); + $381 = HEAP32[$380>>2]|0; + $382 = ($v$3$lcssa$i|0)==($381|0); + if ($382) { + HEAP32[$380>>2] = $R$1$i20; + $cond$i21 = ($R$1$i20|0)==(0|0); + if ($cond$i21) { + $383 = 1 << $379; + $384 = $383 ^ -1; + $385 = HEAP32[((32544 + 4|0))>>2]|0; + $386 = $385 & $384; + HEAP32[((32544 + 4|0))>>2] = $386; + break; + } + } else { + $387 = HEAP32[((32544 + 16|0))>>2]|0; + $388 = ($351>>>0)<($387>>>0); + if ($388) { + _abort(); + // unreachable; + } + $389 = (($351) + 16|0); + $390 = HEAP32[$389>>2]|0; + $391 = ($390|0)==($v$3$lcssa$i|0); + if ($391) { + HEAP32[$389>>2] = $R$1$i20; + } else { + $392 = (($351) + 20|0); + HEAP32[$392>>2] = $R$1$i20; + } + $393 = ($R$1$i20|0)==(0|0); + if ($393) { + break; + } + } + $394 = HEAP32[((32544 + 16|0))>>2]|0; + $395 = ($R$1$i20>>>0)<($394>>>0); + if ($395) { + _abort(); + // unreachable; + } + $396 = (($R$1$i20) + 24|0); + HEAP32[$396>>2] = $351; + $397 = (($v$3$lcssa$i) + 16|0); + $398 = HEAP32[$397>>2]|0; + $399 = ($398|0)==(0|0); + do { + if (!($399)) { + $400 = ($398>>>0)<($394>>>0); + if ($400) { + _abort(); + // unreachable; + } else { + $401 = (($R$1$i20) + 16|0); + HEAP32[$401>>2] = $398; + $402 = (($398) + 24|0); + HEAP32[$402>>2] = $R$1$i20; + break; + } + } + } while(0); + $403 = (($v$3$lcssa$i) + 20|0); + $404 = HEAP32[$403>>2]|0; + $405 = ($404|0)==(0|0); + if (!($405)) { + $406 = HEAP32[((32544 + 16|0))>>2]|0; + $407 = ($404>>>0)<($406>>>0); + if ($407) { + _abort(); + // unreachable; + } else { + $408 = (($R$1$i20) + 20|0); + HEAP32[$408>>2] = $404; + $409 = (($404) + 24|0); + HEAP32[$409>>2] = $R$1$i20; + break; + } + } + } + } while(0); + $410 = ($rsize$3$lcssa$i>>>0)<(16); + L204: do { + if ($410) { + $411 = (($rsize$3$lcssa$i) + ($246))|0; + $412 = $411 | 3; + $413 = (($v$3$lcssa$i) + 4|0); + HEAP32[$413>>2] = $412; + $$sum18$i = (($411) + 4)|0; + $414 = (($v$3$lcssa$i) + ($$sum18$i)|0); + $415 = HEAP32[$414>>2]|0; + $416 = $415 | 1; + HEAP32[$414>>2] = $416; + } else { + $417 = $246 | 3; + $418 = (($v$3$lcssa$i) + 4|0); + HEAP32[$418>>2] = $417; + $419 = $rsize$3$lcssa$i | 1; + $$sum$i2338 = $246 | 4; + $420 = (($v$3$lcssa$i) + ($$sum$i2338)|0); + HEAP32[$420>>2] = $419; + $$sum1$i24 = (($rsize$3$lcssa$i) + ($246))|0; + $421 = (($v$3$lcssa$i) + ($$sum1$i24)|0); + HEAP32[$421>>2] = $rsize$3$lcssa$i; + $422 = $rsize$3$lcssa$i >>> 3; + $423 = ($rsize$3$lcssa$i>>>0)<(256); + if ($423) { + $424 = $422 << 1; + $425 = ((32544 + ($424<<2)|0) + 40|0); + $426 = HEAP32[32544>>2]|0; + $427 = 1 << $422; + $428 = $426 & $427; + $429 = ($428|0)==(0); + do { + if ($429) { + $430 = $426 | $427; + HEAP32[32544>>2] = $430; + $$sum14$pre$i = (($424) + 2)|0; + $$pre$i25 = ((32544 + ($$sum14$pre$i<<2)|0) + 40|0); + $$pre$phi$i26Z2D = $$pre$i25;$F5$0$i = $425; + } else { + $$sum17$i = (($424) + 2)|0; + $431 = ((32544 + ($$sum17$i<<2)|0) + 40|0); + $432 = HEAP32[$431>>2]|0; + $433 = HEAP32[((32544 + 16|0))>>2]|0; + $434 = ($432>>>0)<($433>>>0); + if (!($434)) { + $$pre$phi$i26Z2D = $431;$F5$0$i = $432; + break; + } + _abort(); + // unreachable; + } + } while(0); + HEAP32[$$pre$phi$i26Z2D>>2] = $348; + $435 = (($F5$0$i) + 12|0); + HEAP32[$435>>2] = $348; + $$sum15$i = (($246) + 8)|0; + $436 = (($v$3$lcssa$i) + ($$sum15$i)|0); + HEAP32[$436>>2] = $F5$0$i; + $$sum16$i = (($246) + 12)|0; + $437 = (($v$3$lcssa$i) + ($$sum16$i)|0); + HEAP32[$437>>2] = $425; + break; + } + $438 = $rsize$3$lcssa$i >>> 8; + $439 = ($438|0)==(0); + if ($439) { + $I7$0$i = 0; + } else { + $440 = ($rsize$3$lcssa$i>>>0)>(16777215); + if ($440) { + $I7$0$i = 31; + } else { + $441 = (($438) + 1048320)|0; + $442 = $441 >>> 16; + $443 = $442 & 8; + $444 = $438 << $443; + $445 = (($444) + 520192)|0; + $446 = $445 >>> 16; + $447 = $446 & 4; + $448 = $447 | $443; + $449 = $444 << $447; + $450 = (($449) + 245760)|0; + $451 = $450 >>> 16; + $452 = $451 & 2; + $453 = $448 | $452; + $454 = (14 - ($453))|0; + $455 = $449 << $452; + $456 = $455 >>> 15; + $457 = (($454) + ($456))|0; + $458 = $457 << 1; + $459 = (($457) + 7)|0; + $460 = $rsize$3$lcssa$i >>> $459; + $461 = $460 & 1; + $462 = $461 | $458; + $I7$0$i = $462; + } + } + $463 = ((32544 + ($I7$0$i<<2)|0) + 304|0); + $$sum2$i = (($246) + 28)|0; + $464 = (($v$3$lcssa$i) + ($$sum2$i)|0); + HEAP32[$464>>2] = $I7$0$i; + $$sum3$i27 = (($246) + 16)|0; + $465 = (($v$3$lcssa$i) + ($$sum3$i27)|0); + $$sum4$i28 = (($246) + 20)|0; + $466 = (($v$3$lcssa$i) + ($$sum4$i28)|0); + HEAP32[$466>>2] = 0; + HEAP32[$465>>2] = 0; + $467 = HEAP32[((32544 + 4|0))>>2]|0; + $468 = 1 << $I7$0$i; + $469 = $467 & $468; + $470 = ($469|0)==(0); + if ($470) { + $471 = $467 | $468; + HEAP32[((32544 + 4|0))>>2] = $471; + HEAP32[$463>>2] = $348; + $$sum5$i = (($246) + 24)|0; + $472 = (($v$3$lcssa$i) + ($$sum5$i)|0); + HEAP32[$472>>2] = $463; + $$sum6$i = (($246) + 12)|0; + $473 = (($v$3$lcssa$i) + ($$sum6$i)|0); + HEAP32[$473>>2] = $348; + $$sum7$i = (($246) + 8)|0; + $474 = (($v$3$lcssa$i) + ($$sum7$i)|0); + HEAP32[$474>>2] = $348; + break; + } + $475 = HEAP32[$463>>2]|0; + $476 = ($I7$0$i|0)==(31); + if ($476) { + $484 = 0; + } else { + $477 = $I7$0$i >>> 1; + $478 = (25 - ($477))|0; + $484 = $478; + } + $479 = (($475) + 4|0); + $480 = HEAP32[$479>>2]|0; + $481 = $480 & -8; + $482 = ($481|0)==($rsize$3$lcssa$i|0); + L225: do { + if ($482) { + $T$0$lcssa$i = $475; + } else { + $483 = $rsize$3$lcssa$i << $484; + $K12$027$i = $483;$T$026$i = $475; + while(1) { + $491 = $K12$027$i >>> 31; + $492 = ((($T$026$i) + ($491<<2)|0) + 16|0); + $487 = HEAP32[$492>>2]|0; + $493 = ($487|0)==(0|0); + if ($493) { + break; + } + $485 = $K12$027$i << 1; + $486 = (($487) + 4|0); + $488 = HEAP32[$486>>2]|0; + $489 = $488 & -8; + $490 = ($489|0)==($rsize$3$lcssa$i|0); + if ($490) { + $T$0$lcssa$i = $487; + break L225; + } else { + $K12$027$i = $485;$T$026$i = $487; + } + } + $494 = HEAP32[((32544 + 16|0))>>2]|0; + $495 = ($492>>>0)<($494>>>0); + if ($495) { + _abort(); + // unreachable; + } else { + HEAP32[$492>>2] = $348; + $$sum11$i = (($246) + 24)|0; + $496 = (($v$3$lcssa$i) + ($$sum11$i)|0); + HEAP32[$496>>2] = $T$026$i; + $$sum12$i = (($246) + 12)|0; + $497 = (($v$3$lcssa$i) + ($$sum12$i)|0); + HEAP32[$497>>2] = $348; + $$sum13$i = (($246) + 8)|0; + $498 = (($v$3$lcssa$i) + ($$sum13$i)|0); + HEAP32[$498>>2] = $348; + break L204; + } + } + } while(0); + $499 = (($T$0$lcssa$i) + 8|0); + $500 = HEAP32[$499>>2]|0; + $501 = HEAP32[((32544 + 16|0))>>2]|0; + $502 = ($T$0$lcssa$i>>>0)>=($501>>>0); + $503 = ($500>>>0)>=($501>>>0); + $or$cond24$i = $502 & $503; + if ($or$cond24$i) { + $504 = (($500) + 12|0); + HEAP32[$504>>2] = $348; + HEAP32[$499>>2] = $348; + $$sum8$i = (($246) + 8)|0; + $505 = (($v$3$lcssa$i) + ($$sum8$i)|0); + HEAP32[$505>>2] = $500; + $$sum9$i = (($246) + 12)|0; + $506 = (($v$3$lcssa$i) + ($$sum9$i)|0); + HEAP32[$506>>2] = $T$0$lcssa$i; + $$sum10$i = (($246) + 24)|0; + $507 = (($v$3$lcssa$i) + ($$sum10$i)|0); + HEAP32[$507>>2] = 0; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $508 = (($v$3$lcssa$i) + 8|0); + $mem$0 = $508; + STACKTOP = sp;return ($mem$0|0); + } else { + $nb$0 = $246; + } + } + } + } + } + } while(0); + $509 = HEAP32[((32544 + 8|0))>>2]|0; + $510 = ($509>>>0)<($nb$0>>>0); + if (!($510)) { + $511 = (($509) - ($nb$0))|0; + $512 = HEAP32[((32544 + 20|0))>>2]|0; + $513 = ($511>>>0)>(15); + if ($513) { + $514 = (($512) + ($nb$0)|0); + HEAP32[((32544 + 20|0))>>2] = $514; + HEAP32[((32544 + 8|0))>>2] = $511; + $515 = $511 | 1; + $$sum2 = (($nb$0) + 4)|0; + $516 = (($512) + ($$sum2)|0); + HEAP32[$516>>2] = $515; + $517 = (($512) + ($509)|0); + HEAP32[$517>>2] = $511; + $518 = $nb$0 | 3; + $519 = (($512) + 4|0); + HEAP32[$519>>2] = $518; + } else { + HEAP32[((32544 + 8|0))>>2] = 0; + HEAP32[((32544 + 20|0))>>2] = 0; + $520 = $509 | 3; + $521 = (($512) + 4|0); + HEAP32[$521>>2] = $520; + $$sum1 = (($509) + 4)|0; + $522 = (($512) + ($$sum1)|0); + $523 = HEAP32[$522>>2]|0; + $524 = $523 | 1; + HEAP32[$522>>2] = $524; + } + $525 = (($512) + 8|0); + $mem$0 = $525; + STACKTOP = sp;return ($mem$0|0); + } + $526 = HEAP32[((32544 + 12|0))>>2]|0; + $527 = ($526>>>0)>($nb$0>>>0); + if ($527) { + $528 = (($526) - ($nb$0))|0; + HEAP32[((32544 + 12|0))>>2] = $528; + $529 = HEAP32[((32544 + 24|0))>>2]|0; + $530 = (($529) + ($nb$0)|0); + HEAP32[((32544 + 24|0))>>2] = $530; + $531 = $528 | 1; + $$sum = (($nb$0) + 4)|0; + $532 = (($529) + ($$sum)|0); + HEAP32[$532>>2] = $531; + $533 = $nb$0 | 3; + $534 = (($529) + 4|0); + HEAP32[$534>>2] = $533; + $535 = (($529) + 8|0); + $mem$0 = $535; + STACKTOP = sp;return ($mem$0|0); + } + $536 = HEAP32[33016>>2]|0; + $537 = ($536|0)==(0); + do { + if ($537) { + $538 = (_sysconf(30)|0); + $539 = (($538) + -1)|0; + $540 = $539 & $538; + $541 = ($540|0)==(0); + if ($541) { + HEAP32[((33016 + 8|0))>>2] = $538; + HEAP32[((33016 + 4|0))>>2] = $538; + HEAP32[((33016 + 12|0))>>2] = -1; + HEAP32[((33016 + 16|0))>>2] = -1; + HEAP32[((33016 + 20|0))>>2] = 0; + HEAP32[((32544 + 444|0))>>2] = 0; + $542 = (_time((0|0))|0); + $543 = $542 & -16; + $544 = $543 ^ 1431655768; + HEAP32[33016>>2] = $544; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $545 = (($nb$0) + 48)|0; + $546 = HEAP32[((33016 + 8|0))>>2]|0; + $547 = (($nb$0) + 47)|0; + $548 = (($546) + ($547))|0; + $549 = (0 - ($546))|0; + $550 = $548 & $549; + $551 = ($550>>>0)>($nb$0>>>0); + if (!($551)) { + $mem$0 = 0; + STACKTOP = sp;return ($mem$0|0); + } + $552 = HEAP32[((32544 + 440|0))>>2]|0; + $553 = ($552|0)==(0); + if (!($553)) { + $554 = HEAP32[((32544 + 432|0))>>2]|0; + $555 = (($554) + ($550))|0; + $556 = ($555>>>0)<=($554>>>0); + $557 = ($555>>>0)>($552>>>0); + $or$cond1$i = $556 | $557; + if ($or$cond1$i) { + $mem$0 = 0; + STACKTOP = sp;return ($mem$0|0); + } + } + $558 = HEAP32[((32544 + 444|0))>>2]|0; + $559 = $558 & 4; + $560 = ($559|0)==(0); + L266: do { + if ($560) { + $561 = HEAP32[((32544 + 24|0))>>2]|0; + $562 = ($561|0)==(0|0); + L268: do { + if ($562) { + label = 181; + } else { + $sp$0$i$i = ((32544 + 448|0)); + while(1) { + $563 = HEAP32[$sp$0$i$i>>2]|0; + $564 = ($563>>>0)>($561>>>0); + if (!($564)) { + $565 = (($sp$0$i$i) + 4|0); + $566 = HEAP32[$565>>2]|0; + $567 = (($563) + ($566)|0); + $568 = ($567>>>0)>($561>>>0); + if ($568) { + break; + } + } + $569 = (($sp$0$i$i) + 8|0); + $570 = HEAP32[$569>>2]|0; + $571 = ($570|0)==(0|0); + if ($571) { + label = 181; + break L268; + } else { + $sp$0$i$i = $570; + } + } + $572 = ($sp$0$i$i|0)==(0|0); + if ($572) { + label = 181; + } else { + $595 = HEAP32[((32544 + 12|0))>>2]|0; + $596 = (($548) - ($595))|0; + $597 = $596 & $549; + $598 = ($597>>>0)<(2147483647); + if ($598) { + $599 = (_sbrk(($597|0))|0); + $600 = HEAP32[$sp$0$i$i>>2]|0; + $601 = HEAP32[$565>>2]|0; + $602 = (($600) + ($601)|0); + $603 = ($599|0)==($602|0); + if ($603) { + $br$0$i = $599;$ssize$1$i = $597; + label = 190; + } else { + $br$030$i = $599;$ssize$129$i = $597; + label = 191; + } + } else { + $tsize$03141$i = 0; + } + } + } + } while(0); + do { + if ((label|0) == 181) { + $573 = (_sbrk(0)|0); + $574 = ($573|0)==((-1)|0); + if ($574) { + $tsize$03141$i = 0; + } else { + $575 = $573; + $576 = HEAP32[((33016 + 4|0))>>2]|0; + $577 = (($576) + -1)|0; + $578 = $577 & $575; + $579 = ($578|0)==(0); + if ($579) { + $ssize$0$i = $550; + } else { + $580 = (($577) + ($575))|0; + $581 = (0 - ($576))|0; + $582 = $580 & $581; + $583 = (($550) - ($575))|0; + $584 = (($583) + ($582))|0; + $ssize$0$i = $584; + } + $585 = HEAP32[((32544 + 432|0))>>2]|0; + $586 = (($585) + ($ssize$0$i))|0; + $587 = ($ssize$0$i>>>0)>($nb$0>>>0); + $588 = ($ssize$0$i>>>0)<(2147483647); + $or$cond$i29 = $587 & $588; + if ($or$cond$i29) { + $589 = HEAP32[((32544 + 440|0))>>2]|0; + $590 = ($589|0)==(0); + if (!($590)) { + $591 = ($586>>>0)<=($585>>>0); + $592 = ($586>>>0)>($589>>>0); + $or$cond2$i = $591 | $592; + if ($or$cond2$i) { + $tsize$03141$i = 0; + break; + } + } + $593 = (_sbrk(($ssize$0$i|0))|0); + $594 = ($593|0)==($573|0); + if ($594) { + $br$0$i = $573;$ssize$1$i = $ssize$0$i; + label = 190; + } else { + $br$030$i = $593;$ssize$129$i = $ssize$0$i; + label = 191; + } + } else { + $tsize$03141$i = 0; + } + } + } + } while(0); + L288: do { + if ((label|0) == 190) { + $604 = ($br$0$i|0)==((-1)|0); + if ($604) { + $tsize$03141$i = $ssize$1$i; + } else { + $tbase$245$i = $br$0$i;$tsize$244$i = $ssize$1$i; + label = 201; + break L266; + } + } + else if ((label|0) == 191) { + $605 = (0 - ($ssize$129$i))|0; + $606 = ($br$030$i|0)!=((-1)|0); + $607 = ($ssize$129$i>>>0)<(2147483647); + $or$cond5$i = $606 & $607; + $608 = ($545>>>0)>($ssize$129$i>>>0); + $or$cond4$i = $or$cond5$i & $608; + do { + if ($or$cond4$i) { + $609 = HEAP32[((33016 + 8|0))>>2]|0; + $610 = (($547) - ($ssize$129$i))|0; + $611 = (($610) + ($609))|0; + $612 = (0 - ($609))|0; + $613 = $611 & $612; + $614 = ($613>>>0)<(2147483647); + if ($614) { + $615 = (_sbrk(($613|0))|0); + $616 = ($615|0)==((-1)|0); + if ($616) { + (_sbrk(($605|0))|0); + $tsize$03141$i = 0; + break L288; + } else { + $617 = (($613) + ($ssize$129$i))|0; + $ssize$2$i = $617; + break; + } + } else { + $ssize$2$i = $ssize$129$i; + } + } else { + $ssize$2$i = $ssize$129$i; + } + } while(0); + $618 = ($br$030$i|0)==((-1)|0); + if ($618) { + $tsize$03141$i = 0; + } else { + $tbase$245$i = $br$030$i;$tsize$244$i = $ssize$2$i; + label = 201; + break L266; + } + } + } while(0); + $619 = HEAP32[((32544 + 444|0))>>2]|0; + $620 = $619 | 4; + HEAP32[((32544 + 444|0))>>2] = $620; + $tsize$1$i = $tsize$03141$i; + label = 198; + } else { + $tsize$1$i = 0; + label = 198; + } + } while(0); + if ((label|0) == 198) { + $621 = ($550>>>0)<(2147483647); + if ($621) { + $622 = (_sbrk(($550|0))|0); + $623 = (_sbrk(0)|0); + $624 = ($622|0)!=((-1)|0); + $625 = ($623|0)!=((-1)|0); + $or$cond3$i = $624 & $625; + $626 = ($622>>>0)<($623>>>0); + $or$cond6$i = $or$cond3$i & $626; + if ($or$cond6$i) { + $627 = $623; + $628 = $622; + $629 = (($627) - ($628))|0; + $630 = (($nb$0) + 40)|0; + $631 = ($629>>>0)>($630>>>0); + $$tsize$1$i = $631 ? $629 : $tsize$1$i; + if ($631) { + $tbase$245$i = $622;$tsize$244$i = $$tsize$1$i; + label = 201; + } + } + } + } + if ((label|0) == 201) { + $632 = HEAP32[((32544 + 432|0))>>2]|0; + $633 = (($632) + ($tsize$244$i))|0; + HEAP32[((32544 + 432|0))>>2] = $633; + $634 = HEAP32[((32544 + 436|0))>>2]|0; + $635 = ($633>>>0)>($634>>>0); + if ($635) { + HEAP32[((32544 + 436|0))>>2] = $633; + } + $636 = HEAP32[((32544 + 24|0))>>2]|0; + $637 = ($636|0)==(0|0); + L308: do { + if ($637) { + $638 = HEAP32[((32544 + 16|0))>>2]|0; + $639 = ($638|0)==(0|0); + $640 = ($tbase$245$i>>>0)<($638>>>0); + $or$cond8$i = $639 | $640; + if ($or$cond8$i) { + HEAP32[((32544 + 16|0))>>2] = $tbase$245$i; + } + HEAP32[((32544 + 448|0))>>2] = $tbase$245$i; + HEAP32[((32544 + 452|0))>>2] = $tsize$244$i; + HEAP32[((32544 + 460|0))>>2] = 0; + $641 = HEAP32[33016>>2]|0; + HEAP32[((32544 + 36|0))>>2] = $641; + HEAP32[((32544 + 32|0))>>2] = -1; + $i$02$i$i = 0; + while(1) { + $642 = $i$02$i$i << 1; + $643 = ((32544 + ($642<<2)|0) + 40|0); + $$sum$i$i = (($642) + 3)|0; + $644 = ((32544 + ($$sum$i$i<<2)|0) + 40|0); + HEAP32[$644>>2] = $643; + $$sum1$i$i = (($642) + 2)|0; + $645 = ((32544 + ($$sum1$i$i<<2)|0) + 40|0); + HEAP32[$645>>2] = $643; + $646 = (($i$02$i$i) + 1)|0; + $exitcond$i$i = ($646|0)==(32); + if ($exitcond$i$i) { + break; + } else { + $i$02$i$i = $646; + } + } + $647 = (($tsize$244$i) + -40)|0; + $648 = (($tbase$245$i) + 8|0); + $649 = $648; + $650 = $649 & 7; + $651 = ($650|0)==(0); + if ($651) { + $655 = 0; + } else { + $652 = (0 - ($649))|0; + $653 = $652 & 7; + $655 = $653; + } + $654 = (($tbase$245$i) + ($655)|0); + $656 = (($647) - ($655))|0; + HEAP32[((32544 + 24|0))>>2] = $654; + HEAP32[((32544 + 12|0))>>2] = $656; + $657 = $656 | 1; + $$sum$i12$i = (($655) + 4)|0; + $658 = (($tbase$245$i) + ($$sum$i12$i)|0); + HEAP32[$658>>2] = $657; + $$sum2$i$i = (($tsize$244$i) + -36)|0; + $659 = (($tbase$245$i) + ($$sum2$i$i)|0); + HEAP32[$659>>2] = 40; + $660 = HEAP32[((33016 + 16|0))>>2]|0; + HEAP32[((32544 + 28|0))>>2] = $660; + } else { + $sp$073$i = ((32544 + 448|0)); + while(1) { + $661 = HEAP32[$sp$073$i>>2]|0; + $662 = (($sp$073$i) + 4|0); + $663 = HEAP32[$662>>2]|0; + $664 = (($661) + ($663)|0); + $665 = ($tbase$245$i|0)==($664|0); + if ($665) { + label = 213; + break; + } + $666 = (($sp$073$i) + 8|0); + $667 = HEAP32[$666>>2]|0; + $668 = ($667|0)==(0|0); + if ($668) { + break; + } else { + $sp$073$i = $667; + } + } + if ((label|0) == 213) { + $669 = (($sp$073$i) + 12|0); + $670 = HEAP32[$669>>2]|0; + $671 = $670 & 8; + $672 = ($671|0)==(0); + if ($672) { + $673 = ($636>>>0)>=($661>>>0); + $674 = ($636>>>0)<($tbase$245$i>>>0); + $or$cond47$i = $673 & $674; + if ($or$cond47$i) { + $675 = (($663) + ($tsize$244$i))|0; + HEAP32[$662>>2] = $675; + $676 = HEAP32[((32544 + 12|0))>>2]|0; + $677 = (($676) + ($tsize$244$i))|0; + $678 = (($636) + 8|0); + $679 = $678; + $680 = $679 & 7; + $681 = ($680|0)==(0); + if ($681) { + $685 = 0; + } else { + $682 = (0 - ($679))|0; + $683 = $682 & 7; + $685 = $683; + } + $684 = (($636) + ($685)|0); + $686 = (($677) - ($685))|0; + HEAP32[((32544 + 24|0))>>2] = $684; + HEAP32[((32544 + 12|0))>>2] = $686; + $687 = $686 | 1; + $$sum$i16$i = (($685) + 4)|0; + $688 = (($636) + ($$sum$i16$i)|0); + HEAP32[$688>>2] = $687; + $$sum2$i17$i = (($677) + 4)|0; + $689 = (($636) + ($$sum2$i17$i)|0); + HEAP32[$689>>2] = 40; + $690 = HEAP32[((33016 + 16|0))>>2]|0; + HEAP32[((32544 + 28|0))>>2] = $690; + break; + } + } + } + $691 = HEAP32[((32544 + 16|0))>>2]|0; + $692 = ($tbase$245$i>>>0)<($691>>>0); + if ($692) { + HEAP32[((32544 + 16|0))>>2] = $tbase$245$i; + $756 = $tbase$245$i; + } else { + $756 = $691; + } + $693 = (($tbase$245$i) + ($tsize$244$i)|0); + $sp$166$i = ((32544 + 448|0)); + while(1) { + $694 = HEAP32[$sp$166$i>>2]|0; + $695 = ($694|0)==($693|0); + if ($695) { + label = 223; + break; + } + $696 = (($sp$166$i) + 8|0); + $697 = HEAP32[$696>>2]|0; + $698 = ($697|0)==(0|0); + if ($698) { + break; + } else { + $sp$166$i = $697; + } + } + if ((label|0) == 223) { + $699 = (($sp$166$i) + 12|0); + $700 = HEAP32[$699>>2]|0; + $701 = $700 & 8; + $702 = ($701|0)==(0); + if ($702) { + HEAP32[$sp$166$i>>2] = $tbase$245$i; + $703 = (($sp$166$i) + 4|0); + $704 = HEAP32[$703>>2]|0; + $705 = (($704) + ($tsize$244$i))|0; + HEAP32[$703>>2] = $705; + $706 = (($tbase$245$i) + 8|0); + $707 = $706; + $708 = $707 & 7; + $709 = ($708|0)==(0); + if ($709) { + $713 = 0; + } else { + $710 = (0 - ($707))|0; + $711 = $710 & 7; + $713 = $711; + } + $712 = (($tbase$245$i) + ($713)|0); + $$sum102$i = (($tsize$244$i) + 8)|0; + $714 = (($tbase$245$i) + ($$sum102$i)|0); + $715 = $714; + $716 = $715 & 7; + $717 = ($716|0)==(0); + if ($717) { + $720 = 0; + } else { + $718 = (0 - ($715))|0; + $719 = $718 & 7; + $720 = $719; + } + $$sum103$i = (($720) + ($tsize$244$i))|0; + $721 = (($tbase$245$i) + ($$sum103$i)|0); + $722 = $721; + $723 = $712; + $724 = (($722) - ($723))|0; + $$sum$i19$i = (($713) + ($nb$0))|0; + $725 = (($tbase$245$i) + ($$sum$i19$i)|0); + $726 = (($724) - ($nb$0))|0; + $727 = $nb$0 | 3; + $$sum1$i20$i = (($713) + 4)|0; + $728 = (($tbase$245$i) + ($$sum1$i20$i)|0); + HEAP32[$728>>2] = $727; + $729 = ($721|0)==($636|0); + L345: do { + if ($729) { + $730 = HEAP32[((32544 + 12|0))>>2]|0; + $731 = (($730) + ($726))|0; + HEAP32[((32544 + 12|0))>>2] = $731; + HEAP32[((32544 + 24|0))>>2] = $725; + $732 = $731 | 1; + $$sum42$i$i = (($$sum$i19$i) + 4)|0; + $733 = (($tbase$245$i) + ($$sum42$i$i)|0); + HEAP32[$733>>2] = $732; + } else { + $734 = HEAP32[((32544 + 20|0))>>2]|0; + $735 = ($721|0)==($734|0); + if ($735) { + $736 = HEAP32[((32544 + 8|0))>>2]|0; + $737 = (($736) + ($726))|0; + HEAP32[((32544 + 8|0))>>2] = $737; + HEAP32[((32544 + 20|0))>>2] = $725; + $738 = $737 | 1; + $$sum40$i$i = (($$sum$i19$i) + 4)|0; + $739 = (($tbase$245$i) + ($$sum40$i$i)|0); + HEAP32[$739>>2] = $738; + $$sum41$i$i = (($737) + ($$sum$i19$i))|0; + $740 = (($tbase$245$i) + ($$sum41$i$i)|0); + HEAP32[$740>>2] = $737; + break; + } + $$sum2$i21$i = (($tsize$244$i) + 4)|0; + $$sum104$i = (($$sum2$i21$i) + ($720))|0; + $741 = (($tbase$245$i) + ($$sum104$i)|0); + $742 = HEAP32[$741>>2]|0; + $743 = $742 & 3; + $744 = ($743|0)==(1); + if ($744) { + $745 = $742 & -8; + $746 = $742 >>> 3; + $747 = ($742>>>0)<(256); + L353: do { + if ($747) { + $$sum3738$i$i = $720 | 8; + $$sum114$i = (($$sum3738$i$i) + ($tsize$244$i))|0; + $748 = (($tbase$245$i) + ($$sum114$i)|0); + $749 = HEAP32[$748>>2]|0; + $$sum39$i$i = (($tsize$244$i) + 12)|0; + $$sum115$i = (($$sum39$i$i) + ($720))|0; + $750 = (($tbase$245$i) + ($$sum115$i)|0); + $751 = HEAP32[$750>>2]|0; + $752 = $746 << 1; + $753 = ((32544 + ($752<<2)|0) + 40|0); + $754 = ($749|0)==($753|0); + do { + if (!($754)) { + $755 = ($749>>>0)<($756>>>0); + if ($755) { + _abort(); + // unreachable; + } + $757 = (($749) + 12|0); + $758 = HEAP32[$757>>2]|0; + $759 = ($758|0)==($721|0); + if ($759) { + break; + } + _abort(); + // unreachable; + } + } while(0); + $760 = ($751|0)==($749|0); + if ($760) { + $761 = 1 << $746; + $762 = $761 ^ -1; + $763 = HEAP32[32544>>2]|0; + $764 = $763 & $762; + HEAP32[32544>>2] = $764; + break; + } + $765 = ($751|0)==($753|0); + do { + if ($765) { + $$pre58$i$i = (($751) + 8|0); + $$pre$phi59$i$iZ2D = $$pre58$i$i; + } else { + $766 = ($751>>>0)<($756>>>0); + if ($766) { + _abort(); + // unreachable; + } + $767 = (($751) + 8|0); + $768 = HEAP32[$767>>2]|0; + $769 = ($768|0)==($721|0); + if ($769) { + $$pre$phi59$i$iZ2D = $767; + break; + } + _abort(); + // unreachable; + } + } while(0); + $770 = (($749) + 12|0); + HEAP32[$770>>2] = $751; + HEAP32[$$pre$phi59$i$iZ2D>>2] = $749; + } else { + $$sum34$i$i = $720 | 24; + $$sum105$i = (($$sum34$i$i) + ($tsize$244$i))|0; + $771 = (($tbase$245$i) + ($$sum105$i)|0); + $772 = HEAP32[$771>>2]|0; + $$sum5$i$i = (($tsize$244$i) + 12)|0; + $$sum106$i = (($$sum5$i$i) + ($720))|0; + $773 = (($tbase$245$i) + ($$sum106$i)|0); + $774 = HEAP32[$773>>2]|0; + $775 = ($774|0)==($721|0); + do { + if ($775) { + $$sum67$i$i = $720 | 16; + $$sum112$i = (($$sum2$i21$i) + ($$sum67$i$i))|0; + $785 = (($tbase$245$i) + ($$sum112$i)|0); + $786 = HEAP32[$785>>2]|0; + $787 = ($786|0)==(0|0); + if ($787) { + $$sum113$i = (($$sum67$i$i) + ($tsize$244$i))|0; + $788 = (($tbase$245$i) + ($$sum113$i)|0); + $789 = HEAP32[$788>>2]|0; + $790 = ($789|0)==(0|0); + if ($790) { + $R$1$i$i = 0; + break; + } else { + $R$0$i$i = $789;$RP$0$i$i = $788; + } + } else { + $R$0$i$i = $786;$RP$0$i$i = $785; + } + while(1) { + $791 = (($R$0$i$i) + 20|0); + $792 = HEAP32[$791>>2]|0; + $793 = ($792|0)==(0|0); + if (!($793)) { + $R$0$i$i = $792;$RP$0$i$i = $791; + continue; + } + $794 = (($R$0$i$i) + 16|0); + $795 = HEAP32[$794>>2]|0; + $796 = ($795|0)==(0|0); + if ($796) { + break; + } else { + $R$0$i$i = $795;$RP$0$i$i = $794; + } + } + $797 = ($RP$0$i$i>>>0)<($756>>>0); + if ($797) { + _abort(); + // unreachable; + } else { + HEAP32[$RP$0$i$i>>2] = 0; + $R$1$i$i = $R$0$i$i; + break; + } + } else { + $$sum3536$i$i = $720 | 8; + $$sum107$i = (($$sum3536$i$i) + ($tsize$244$i))|0; + $776 = (($tbase$245$i) + ($$sum107$i)|0); + $777 = HEAP32[$776>>2]|0; + $778 = ($777>>>0)<($756>>>0); + if ($778) { + _abort(); + // unreachable; + } + $779 = (($777) + 12|0); + $780 = HEAP32[$779>>2]|0; + $781 = ($780|0)==($721|0); + if (!($781)) { + _abort(); + // unreachable; + } + $782 = (($774) + 8|0); + $783 = HEAP32[$782>>2]|0; + $784 = ($783|0)==($721|0); + if ($784) { + HEAP32[$779>>2] = $774; + HEAP32[$782>>2] = $777; + $R$1$i$i = $774; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $798 = ($772|0)==(0|0); + if ($798) { + break; + } + $$sum30$i$i = (($tsize$244$i) + 28)|0; + $$sum108$i = (($$sum30$i$i) + ($720))|0; + $799 = (($tbase$245$i) + ($$sum108$i)|0); + $800 = HEAP32[$799>>2]|0; + $801 = ((32544 + ($800<<2)|0) + 304|0); + $802 = HEAP32[$801>>2]|0; + $803 = ($721|0)==($802|0); + do { + if ($803) { + HEAP32[$801>>2] = $R$1$i$i; + $cond$i$i = ($R$1$i$i|0)==(0|0); + if (!($cond$i$i)) { + break; + } + $804 = 1 << $800; + $805 = $804 ^ -1; + $806 = HEAP32[((32544 + 4|0))>>2]|0; + $807 = $806 & $805; + HEAP32[((32544 + 4|0))>>2] = $807; + break L353; + } else { + $808 = HEAP32[((32544 + 16|0))>>2]|0; + $809 = ($772>>>0)<($808>>>0); + if ($809) { + _abort(); + // unreachable; + } + $810 = (($772) + 16|0); + $811 = HEAP32[$810>>2]|0; + $812 = ($811|0)==($721|0); + if ($812) { + HEAP32[$810>>2] = $R$1$i$i; + } else { + $813 = (($772) + 20|0); + HEAP32[$813>>2] = $R$1$i$i; + } + $814 = ($R$1$i$i|0)==(0|0); + if ($814) { + break L353; + } + } + } while(0); + $815 = HEAP32[((32544 + 16|0))>>2]|0; + $816 = ($R$1$i$i>>>0)<($815>>>0); + if ($816) { + _abort(); + // unreachable; + } + $817 = (($R$1$i$i) + 24|0); + HEAP32[$817>>2] = $772; + $$sum3132$i$i = $720 | 16; + $$sum109$i = (($$sum3132$i$i) + ($tsize$244$i))|0; + $818 = (($tbase$245$i) + ($$sum109$i)|0); + $819 = HEAP32[$818>>2]|0; + $820 = ($819|0)==(0|0); + do { + if (!($820)) { + $821 = ($819>>>0)<($815>>>0); + if ($821) { + _abort(); + // unreachable; + } else { + $822 = (($R$1$i$i) + 16|0); + HEAP32[$822>>2] = $819; + $823 = (($819) + 24|0); + HEAP32[$823>>2] = $R$1$i$i; + break; + } + } + } while(0); + $$sum110$i = (($$sum2$i21$i) + ($$sum3132$i$i))|0; + $824 = (($tbase$245$i) + ($$sum110$i)|0); + $825 = HEAP32[$824>>2]|0; + $826 = ($825|0)==(0|0); + if ($826) { + break; + } + $827 = HEAP32[((32544 + 16|0))>>2]|0; + $828 = ($825>>>0)<($827>>>0); + if ($828) { + _abort(); + // unreachable; + } else { + $829 = (($R$1$i$i) + 20|0); + HEAP32[$829>>2] = $825; + $830 = (($825) + 24|0); + HEAP32[$830>>2] = $R$1$i$i; + break; + } + } + } while(0); + $$sum9$i$i = $745 | $720; + $$sum111$i = (($$sum9$i$i) + ($tsize$244$i))|0; + $831 = (($tbase$245$i) + ($$sum111$i)|0); + $832 = (($745) + ($726))|0; + $oldfirst$0$i$i = $831;$qsize$0$i$i = $832; + } else { + $oldfirst$0$i$i = $721;$qsize$0$i$i = $726; + } + $833 = (($oldfirst$0$i$i) + 4|0); + $834 = HEAP32[$833>>2]|0; + $835 = $834 & -2; + HEAP32[$833>>2] = $835; + $836 = $qsize$0$i$i | 1; + $$sum10$i$i = (($$sum$i19$i) + 4)|0; + $837 = (($tbase$245$i) + ($$sum10$i$i)|0); + HEAP32[$837>>2] = $836; + $$sum11$i22$i = (($qsize$0$i$i) + ($$sum$i19$i))|0; + $838 = (($tbase$245$i) + ($$sum11$i22$i)|0); + HEAP32[$838>>2] = $qsize$0$i$i; + $839 = $qsize$0$i$i >>> 3; + $840 = ($qsize$0$i$i>>>0)<(256); + if ($840) { + $841 = $839 << 1; + $842 = ((32544 + ($841<<2)|0) + 40|0); + $843 = HEAP32[32544>>2]|0; + $844 = 1 << $839; + $845 = $843 & $844; + $846 = ($845|0)==(0); + do { + if ($846) { + $847 = $843 | $844; + HEAP32[32544>>2] = $847; + $$sum26$pre$i$i = (($841) + 2)|0; + $$pre$i23$i = ((32544 + ($$sum26$pre$i$i<<2)|0) + 40|0); + $$pre$phi$i24$iZ2D = $$pre$i23$i;$F4$0$i$i = $842; + } else { + $$sum29$i$i = (($841) + 2)|0; + $848 = ((32544 + ($$sum29$i$i<<2)|0) + 40|0); + $849 = HEAP32[$848>>2]|0; + $850 = HEAP32[((32544 + 16|0))>>2]|0; + $851 = ($849>>>0)<($850>>>0); + if (!($851)) { + $$pre$phi$i24$iZ2D = $848;$F4$0$i$i = $849; + break; + } + _abort(); + // unreachable; + } + } while(0); + HEAP32[$$pre$phi$i24$iZ2D>>2] = $725; + $852 = (($F4$0$i$i) + 12|0); + HEAP32[$852>>2] = $725; + $$sum27$i$i = (($$sum$i19$i) + 8)|0; + $853 = (($tbase$245$i) + ($$sum27$i$i)|0); + HEAP32[$853>>2] = $F4$0$i$i; + $$sum28$i$i = (($$sum$i19$i) + 12)|0; + $854 = (($tbase$245$i) + ($$sum28$i$i)|0); + HEAP32[$854>>2] = $842; + break; + } + $855 = $qsize$0$i$i >>> 8; + $856 = ($855|0)==(0); + do { + if ($856) { + $I7$0$i$i = 0; + } else { + $857 = ($qsize$0$i$i>>>0)>(16777215); + if ($857) { + $I7$0$i$i = 31; + break; + } + $858 = (($855) + 1048320)|0; + $859 = $858 >>> 16; + $860 = $859 & 8; + $861 = $855 << $860; + $862 = (($861) + 520192)|0; + $863 = $862 >>> 16; + $864 = $863 & 4; + $865 = $864 | $860; + $866 = $861 << $864; + $867 = (($866) + 245760)|0; + $868 = $867 >>> 16; + $869 = $868 & 2; + $870 = $865 | $869; + $871 = (14 - ($870))|0; + $872 = $866 << $869; + $873 = $872 >>> 15; + $874 = (($871) + ($873))|0; + $875 = $874 << 1; + $876 = (($874) + 7)|0; + $877 = $qsize$0$i$i >>> $876; + $878 = $877 & 1; + $879 = $878 | $875; + $I7$0$i$i = $879; + } + } while(0); + $880 = ((32544 + ($I7$0$i$i<<2)|0) + 304|0); + $$sum12$i$i = (($$sum$i19$i) + 28)|0; + $881 = (($tbase$245$i) + ($$sum12$i$i)|0); + HEAP32[$881>>2] = $I7$0$i$i; + $$sum13$i$i = (($$sum$i19$i) + 16)|0; + $882 = (($tbase$245$i) + ($$sum13$i$i)|0); + $$sum14$i$i = (($$sum$i19$i) + 20)|0; + $883 = (($tbase$245$i) + ($$sum14$i$i)|0); + HEAP32[$883>>2] = 0; + HEAP32[$882>>2] = 0; + $884 = HEAP32[((32544 + 4|0))>>2]|0; + $885 = 1 << $I7$0$i$i; + $886 = $884 & $885; + $887 = ($886|0)==(0); + if ($887) { + $888 = $884 | $885; + HEAP32[((32544 + 4|0))>>2] = $888; + HEAP32[$880>>2] = $725; + $$sum15$i$i = (($$sum$i19$i) + 24)|0; + $889 = (($tbase$245$i) + ($$sum15$i$i)|0); + HEAP32[$889>>2] = $880; + $$sum16$i$i = (($$sum$i19$i) + 12)|0; + $890 = (($tbase$245$i) + ($$sum16$i$i)|0); + HEAP32[$890>>2] = $725; + $$sum17$i$i = (($$sum$i19$i) + 8)|0; + $891 = (($tbase$245$i) + ($$sum17$i$i)|0); + HEAP32[$891>>2] = $725; + break; + } + $892 = HEAP32[$880>>2]|0; + $893 = ($I7$0$i$i|0)==(31); + if ($893) { + $901 = 0; + } else { + $894 = $I7$0$i$i >>> 1; + $895 = (25 - ($894))|0; + $901 = $895; + } + $896 = (($892) + 4|0); + $897 = HEAP32[$896>>2]|0; + $898 = $897 & -8; + $899 = ($898|0)==($qsize$0$i$i|0); + L442: do { + if ($899) { + $T$0$lcssa$i26$i = $892; + } else { + $900 = $qsize$0$i$i << $901; + $K8$053$i$i = $900;$T$052$i$i = $892; + while(1) { + $908 = $K8$053$i$i >>> 31; + $909 = ((($T$052$i$i) + ($908<<2)|0) + 16|0); + $904 = HEAP32[$909>>2]|0; + $910 = ($904|0)==(0|0); + if ($910) { + break; + } + $902 = $K8$053$i$i << 1; + $903 = (($904) + 4|0); + $905 = HEAP32[$903>>2]|0; + $906 = $905 & -8; + $907 = ($906|0)==($qsize$0$i$i|0); + if ($907) { + $T$0$lcssa$i26$i = $904; + break L442; + } else { + $K8$053$i$i = $902;$T$052$i$i = $904; + } + } + $911 = HEAP32[((32544 + 16|0))>>2]|0; + $912 = ($909>>>0)<($911>>>0); + if ($912) { + _abort(); + // unreachable; + } else { + HEAP32[$909>>2] = $725; + $$sum23$i$i = (($$sum$i19$i) + 24)|0; + $913 = (($tbase$245$i) + ($$sum23$i$i)|0); + HEAP32[$913>>2] = $T$052$i$i; + $$sum24$i$i = (($$sum$i19$i) + 12)|0; + $914 = (($tbase$245$i) + ($$sum24$i$i)|0); + HEAP32[$914>>2] = $725; + $$sum25$i$i = (($$sum$i19$i) + 8)|0; + $915 = (($tbase$245$i) + ($$sum25$i$i)|0); + HEAP32[$915>>2] = $725; + break L345; + } + } + } while(0); + $916 = (($T$0$lcssa$i26$i) + 8|0); + $917 = HEAP32[$916>>2]|0; + $918 = HEAP32[((32544 + 16|0))>>2]|0; + $919 = ($T$0$lcssa$i26$i>>>0)>=($918>>>0); + $920 = ($917>>>0)>=($918>>>0); + $or$cond$i27$i = $919 & $920; + if ($or$cond$i27$i) { + $921 = (($917) + 12|0); + HEAP32[$921>>2] = $725; + HEAP32[$916>>2] = $725; + $$sum20$i$i = (($$sum$i19$i) + 8)|0; + $922 = (($tbase$245$i) + ($$sum20$i$i)|0); + HEAP32[$922>>2] = $917; + $$sum21$i$i = (($$sum$i19$i) + 12)|0; + $923 = (($tbase$245$i) + ($$sum21$i$i)|0); + HEAP32[$923>>2] = $T$0$lcssa$i26$i; + $$sum22$i$i = (($$sum$i19$i) + 24)|0; + $924 = (($tbase$245$i) + ($$sum22$i$i)|0); + HEAP32[$924>>2] = 0; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $$sum1819$i$i = $713 | 8; + $925 = (($tbase$245$i) + ($$sum1819$i$i)|0); + $mem$0 = $925; + STACKTOP = sp;return ($mem$0|0); + } + } + $sp$0$i$i$i = ((32544 + 448|0)); + while(1) { + $926 = HEAP32[$sp$0$i$i$i>>2]|0; + $927 = ($926>>>0)>($636>>>0); + if (!($927)) { + $928 = (($sp$0$i$i$i) + 4|0); + $929 = HEAP32[$928>>2]|0; + $930 = (($926) + ($929)|0); + $931 = ($930>>>0)>($636>>>0); + if ($931) { + break; + } + } + $932 = (($sp$0$i$i$i) + 8|0); + $933 = HEAP32[$932>>2]|0; + $sp$0$i$i$i = $933; + } + $$sum$i13$i = (($929) + -47)|0; + $$sum1$i14$i = (($929) + -39)|0; + $934 = (($926) + ($$sum1$i14$i)|0); + $935 = $934; + $936 = $935 & 7; + $937 = ($936|0)==(0); + if ($937) { + $940 = 0; + } else { + $938 = (0 - ($935))|0; + $939 = $938 & 7; + $940 = $939; + } + $$sum2$i15$i = (($$sum$i13$i) + ($940))|0; + $941 = (($926) + ($$sum2$i15$i)|0); + $942 = (($636) + 16|0); + $943 = ($941>>>0)<($942>>>0); + $944 = $943 ? $636 : $941; + $945 = (($944) + 8|0); + $946 = (($tsize$244$i) + -40)|0; + $947 = (($tbase$245$i) + 8|0); + $948 = $947; + $949 = $948 & 7; + $950 = ($949|0)==(0); + if ($950) { + $954 = 0; + } else { + $951 = (0 - ($948))|0; + $952 = $951 & 7; + $954 = $952; + } + $953 = (($tbase$245$i) + ($954)|0); + $955 = (($946) - ($954))|0; + HEAP32[((32544 + 24|0))>>2] = $953; + HEAP32[((32544 + 12|0))>>2] = $955; + $956 = $955 | 1; + $$sum$i$i$i = (($954) + 4)|0; + $957 = (($tbase$245$i) + ($$sum$i$i$i)|0); + HEAP32[$957>>2] = $956; + $$sum2$i$i$i = (($tsize$244$i) + -36)|0; + $958 = (($tbase$245$i) + ($$sum2$i$i$i)|0); + HEAP32[$958>>2] = 40; + $959 = HEAP32[((33016 + 16|0))>>2]|0; + HEAP32[((32544 + 28|0))>>2] = $959; + $960 = (($944) + 4|0); + HEAP32[$960>>2] = 27; + ;HEAP32[$945+0>>2]=HEAP32[((32544 + 448|0))+0>>2]|0;HEAP32[$945+4>>2]=HEAP32[((32544 + 448|0))+4>>2]|0;HEAP32[$945+8>>2]=HEAP32[((32544 + 448|0))+8>>2]|0;HEAP32[$945+12>>2]=HEAP32[((32544 + 448|0))+12>>2]|0; + HEAP32[((32544 + 448|0))>>2] = $tbase$245$i; + HEAP32[((32544 + 452|0))>>2] = $tsize$244$i; + HEAP32[((32544 + 460|0))>>2] = 0; + HEAP32[((32544 + 456|0))>>2] = $945; + $961 = (($944) + 28|0); + HEAP32[$961>>2] = 7; + $962 = (($944) + 32|0); + $963 = ($962>>>0)<($930>>>0); + if ($963) { + $965 = $961; + while(1) { + $964 = (($965) + 4|0); + HEAP32[$964>>2] = 7; + $966 = (($965) + 8|0); + $967 = ($966>>>0)<($930>>>0); + if ($967) { + $965 = $964; + } else { + break; + } + } + } + $968 = ($944|0)==($636|0); + if (!($968)) { + $969 = $944; + $970 = $636; + $971 = (($969) - ($970))|0; + $972 = (($636) + ($971)|0); + $$sum3$i$i = (($971) + 4)|0; + $973 = (($636) + ($$sum3$i$i)|0); + $974 = HEAP32[$973>>2]|0; + $975 = $974 & -2; + HEAP32[$973>>2] = $975; + $976 = $971 | 1; + $977 = (($636) + 4|0); + HEAP32[$977>>2] = $976; + HEAP32[$972>>2] = $971; + $978 = $971 >>> 3; + $979 = ($971>>>0)<(256); + if ($979) { + $980 = $978 << 1; + $981 = ((32544 + ($980<<2)|0) + 40|0); + $982 = HEAP32[32544>>2]|0; + $983 = 1 << $978; + $984 = $982 & $983; + $985 = ($984|0)==(0); + do { + if ($985) { + $986 = $982 | $983; + HEAP32[32544>>2] = $986; + $$sum10$pre$i$i = (($980) + 2)|0; + $$pre$i$i = ((32544 + ($$sum10$pre$i$i<<2)|0) + 40|0); + $$pre$phi$i$iZ2D = $$pre$i$i;$F$0$i$i = $981; + } else { + $$sum11$i$i = (($980) + 2)|0; + $987 = ((32544 + ($$sum11$i$i<<2)|0) + 40|0); + $988 = HEAP32[$987>>2]|0; + $989 = HEAP32[((32544 + 16|0))>>2]|0; + $990 = ($988>>>0)<($989>>>0); + if (!($990)) { + $$pre$phi$i$iZ2D = $987;$F$0$i$i = $988; + break; + } + _abort(); + // unreachable; + } + } while(0); + HEAP32[$$pre$phi$i$iZ2D>>2] = $636; + $991 = (($F$0$i$i) + 12|0); + HEAP32[$991>>2] = $636; + $992 = (($636) + 8|0); + HEAP32[$992>>2] = $F$0$i$i; + $993 = (($636) + 12|0); + HEAP32[$993>>2] = $981; + break; + } + $994 = $971 >>> 8; + $995 = ($994|0)==(0); + if ($995) { + $I1$0$i$i = 0; + } else { + $996 = ($971>>>0)>(16777215); + if ($996) { + $I1$0$i$i = 31; + } else { + $997 = (($994) + 1048320)|0; + $998 = $997 >>> 16; + $999 = $998 & 8; + $1000 = $994 << $999; + $1001 = (($1000) + 520192)|0; + $1002 = $1001 >>> 16; + $1003 = $1002 & 4; + $1004 = $1003 | $999; + $1005 = $1000 << $1003; + $1006 = (($1005) + 245760)|0; + $1007 = $1006 >>> 16; + $1008 = $1007 & 2; + $1009 = $1004 | $1008; + $1010 = (14 - ($1009))|0; + $1011 = $1005 << $1008; + $1012 = $1011 >>> 15; + $1013 = (($1010) + ($1012))|0; + $1014 = $1013 << 1; + $1015 = (($1013) + 7)|0; + $1016 = $971 >>> $1015; + $1017 = $1016 & 1; + $1018 = $1017 | $1014; + $I1$0$i$i = $1018; + } + } + $1019 = ((32544 + ($I1$0$i$i<<2)|0) + 304|0); + $1020 = (($636) + 28|0); + $I1$0$c$i$i = $I1$0$i$i; + HEAP32[$1020>>2] = $I1$0$c$i$i; + $1021 = (($636) + 20|0); + HEAP32[$1021>>2] = 0; + $1022 = (($636) + 16|0); + HEAP32[$1022>>2] = 0; + $1023 = HEAP32[((32544 + 4|0))>>2]|0; + $1024 = 1 << $I1$0$i$i; + $1025 = $1023 & $1024; + $1026 = ($1025|0)==(0); + if ($1026) { + $1027 = $1023 | $1024; + HEAP32[((32544 + 4|0))>>2] = $1027; + HEAP32[$1019>>2] = $636; + $1028 = (($636) + 24|0); + HEAP32[$1028>>2] = $1019; + $1029 = (($636) + 12|0); + HEAP32[$1029>>2] = $636; + $1030 = (($636) + 8|0); + HEAP32[$1030>>2] = $636; + break; + } + $1031 = HEAP32[$1019>>2]|0; + $1032 = ($I1$0$i$i|0)==(31); + if ($1032) { + $1040 = 0; + } else { + $1033 = $I1$0$i$i >>> 1; + $1034 = (25 - ($1033))|0; + $1040 = $1034; + } + $1035 = (($1031) + 4|0); + $1036 = HEAP32[$1035>>2]|0; + $1037 = $1036 & -8; + $1038 = ($1037|0)==($971|0); + L493: do { + if ($1038) { + $T$0$lcssa$i$i = $1031; + } else { + $1039 = $971 << $1040; + $K2$015$i$i = $1039;$T$014$i$i = $1031; + while(1) { + $1047 = $K2$015$i$i >>> 31; + $1048 = ((($T$014$i$i) + ($1047<<2)|0) + 16|0); + $1043 = HEAP32[$1048>>2]|0; + $1049 = ($1043|0)==(0|0); + if ($1049) { + break; + } + $1041 = $K2$015$i$i << 1; + $1042 = (($1043) + 4|0); + $1044 = HEAP32[$1042>>2]|0; + $1045 = $1044 & -8; + $1046 = ($1045|0)==($971|0); + if ($1046) { + $T$0$lcssa$i$i = $1043; + break L493; + } else { + $K2$015$i$i = $1041;$T$014$i$i = $1043; + } + } + $1050 = HEAP32[((32544 + 16|0))>>2]|0; + $1051 = ($1048>>>0)<($1050>>>0); + if ($1051) { + _abort(); + // unreachable; + } else { + HEAP32[$1048>>2] = $636; + $1052 = (($636) + 24|0); + HEAP32[$1052>>2] = $T$014$i$i; + $1053 = (($636) + 12|0); + HEAP32[$1053>>2] = $636; + $1054 = (($636) + 8|0); + HEAP32[$1054>>2] = $636; + break L308; + } + } + } while(0); + $1055 = (($T$0$lcssa$i$i) + 8|0); + $1056 = HEAP32[$1055>>2]|0; + $1057 = HEAP32[((32544 + 16|0))>>2]|0; + $1058 = ($T$0$lcssa$i$i>>>0)>=($1057>>>0); + $1059 = ($1056>>>0)>=($1057>>>0); + $or$cond$i$i = $1058 & $1059; + if ($or$cond$i$i) { + $1060 = (($1056) + 12|0); + HEAP32[$1060>>2] = $636; + HEAP32[$1055>>2] = $636; + $1061 = (($636) + 8|0); + HEAP32[$1061>>2] = $1056; + $1062 = (($636) + 12|0); + HEAP32[$1062>>2] = $T$0$lcssa$i$i; + $1063 = (($636) + 24|0); + HEAP32[$1063>>2] = 0; + break; + } else { + _abort(); + // unreachable; + } + } + } + } while(0); + $1064 = HEAP32[((32544 + 12|0))>>2]|0; + $1065 = ($1064>>>0)>($nb$0>>>0); + if ($1065) { + $1066 = (($1064) - ($nb$0))|0; + HEAP32[((32544 + 12|0))>>2] = $1066; + $1067 = HEAP32[((32544 + 24|0))>>2]|0; + $1068 = (($1067) + ($nb$0)|0); + HEAP32[((32544 + 24|0))>>2] = $1068; + $1069 = $1066 | 1; + $$sum$i32 = (($nb$0) + 4)|0; + $1070 = (($1067) + ($$sum$i32)|0); + HEAP32[$1070>>2] = $1069; + $1071 = $nb$0 | 3; + $1072 = (($1067) + 4|0); + HEAP32[$1072>>2] = $1071; + $1073 = (($1067) + 8|0); + $mem$0 = $1073; + STACKTOP = sp;return ($mem$0|0); + } + } + $1074 = (___errno_location()|0); + HEAP32[$1074>>2] = 12; + $mem$0 = 0; + STACKTOP = sp;return ($mem$0|0); +} +function _free($mem) { + $mem = $mem|0; + var $$pre = 0, $$pre$phi66Z2D = 0, $$pre$phi68Z2D = 0, $$pre$phiZ2D = 0, $$pre65 = 0, $$pre67 = 0, $$sum = 0, $$sum16$pre = 0, $$sum17 = 0, $$sum18 = 0, $$sum19 = 0, $$sum2 = 0, $$sum20 = 0, $$sum2324 = 0, $$sum25 = 0, $$sum26 = 0, $$sum28 = 0, $$sum29 = 0, $$sum3 = 0, $$sum30 = 0; + var $$sum31 = 0, $$sum32 = 0, $$sum33 = 0, $$sum34 = 0, $$sum35 = 0, $$sum36 = 0, $$sum37 = 0, $$sum5 = 0, $$sum67 = 0, $$sum8 = 0, $$sum9 = 0, $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0; + var $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0; + var $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0; + var $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0; + var $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0; + var $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0; + var $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0; + var $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0; + var $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0; + var $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0; + var $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0; + var $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0; + var $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0; + var $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0; + var $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0; + var $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0; + var $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $F16$0 = 0, $I18$0 = 0, $I18$0$c = 0, $K19$058 = 0, $R$0 = 0, $R$1 = 0, $R7$0 = 0; + var $R7$1 = 0, $RP$0 = 0, $RP9$0 = 0, $T$0$lcssa = 0, $T$057 = 0, $cond = 0, $cond54 = 0, $or$cond = 0, $p$0 = 0, $psize$0 = 0, $psize$1 = 0, $sp$0$i = 0, $sp$0$in$i = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = ($mem|0)==(0|0); + if ($0) { + STACKTOP = sp;return; + } + $1 = (($mem) + -8|0); + $2 = HEAP32[((32544 + 16|0))>>2]|0; + $3 = ($1>>>0)<($2>>>0); + if ($3) { + _abort(); + // unreachable; + } + $4 = (($mem) + -4|0); + $5 = HEAP32[$4>>2]|0; + $6 = $5 & 3; + $7 = ($6|0)==(1); + if ($7) { + _abort(); + // unreachable; + } + $8 = $5 & -8; + $$sum = (($8) + -8)|0; + $9 = (($mem) + ($$sum)|0); + $10 = $5 & 1; + $11 = ($10|0)==(0); + do { + if ($11) { + $12 = HEAP32[$1>>2]|0; + $13 = ($6|0)==(0); + if ($13) { + STACKTOP = sp;return; + } + $$sum2 = (-8 - ($12))|0; + $14 = (($mem) + ($$sum2)|0); + $15 = (($12) + ($8))|0; + $16 = ($14>>>0)<($2>>>0); + if ($16) { + _abort(); + // unreachable; + } + $17 = HEAP32[((32544 + 20|0))>>2]|0; + $18 = ($14|0)==($17|0); + if ($18) { + $$sum3 = (($8) + -4)|0; + $103 = (($mem) + ($$sum3)|0); + $104 = HEAP32[$103>>2]|0; + $105 = $104 & 3; + $106 = ($105|0)==(3); + if (!($106)) { + $p$0 = $14;$psize$0 = $15; + break; + } + HEAP32[((32544 + 8|0))>>2] = $15; + $107 = $104 & -2; + HEAP32[$103>>2] = $107; + $108 = $15 | 1; + $$sum26 = (($$sum2) + 4)|0; + $109 = (($mem) + ($$sum26)|0); + HEAP32[$109>>2] = $108; + HEAP32[$9>>2] = $15; + STACKTOP = sp;return; + } + $19 = $12 >>> 3; + $20 = ($12>>>0)<(256); + if ($20) { + $$sum36 = (($$sum2) + 8)|0; + $21 = (($mem) + ($$sum36)|0); + $22 = HEAP32[$21>>2]|0; + $$sum37 = (($$sum2) + 12)|0; + $23 = (($mem) + ($$sum37)|0); + $24 = HEAP32[$23>>2]|0; + $25 = $19 << 1; + $26 = ((32544 + ($25<<2)|0) + 40|0); + $27 = ($22|0)==($26|0); + if (!($27)) { + $28 = ($22>>>0)<($2>>>0); + if ($28) { + _abort(); + // unreachable; + } + $29 = (($22) + 12|0); + $30 = HEAP32[$29>>2]|0; + $31 = ($30|0)==($14|0); + if (!($31)) { + _abort(); + // unreachable; + } + } + $32 = ($24|0)==($22|0); + if ($32) { + $33 = 1 << $19; + $34 = $33 ^ -1; + $35 = HEAP32[32544>>2]|0; + $36 = $35 & $34; + HEAP32[32544>>2] = $36; + $p$0 = $14;$psize$0 = $15; + break; + } + $37 = ($24|0)==($26|0); + if ($37) { + $$pre67 = (($24) + 8|0); + $$pre$phi68Z2D = $$pre67; + } else { + $38 = ($24>>>0)<($2>>>0); + if ($38) { + _abort(); + // unreachable; + } + $39 = (($24) + 8|0); + $40 = HEAP32[$39>>2]|0; + $41 = ($40|0)==($14|0); + if ($41) { + $$pre$phi68Z2D = $39; + } else { + _abort(); + // unreachable; + } + } + $42 = (($22) + 12|0); + HEAP32[$42>>2] = $24; + HEAP32[$$pre$phi68Z2D>>2] = $22; + $p$0 = $14;$psize$0 = $15; + break; + } + $$sum28 = (($$sum2) + 24)|0; + $43 = (($mem) + ($$sum28)|0); + $44 = HEAP32[$43>>2]|0; + $$sum29 = (($$sum2) + 12)|0; + $45 = (($mem) + ($$sum29)|0); + $46 = HEAP32[$45>>2]|0; + $47 = ($46|0)==($14|0); + do { + if ($47) { + $$sum31 = (($$sum2) + 20)|0; + $57 = (($mem) + ($$sum31)|0); + $58 = HEAP32[$57>>2]|0; + $59 = ($58|0)==(0|0); + if ($59) { + $$sum30 = (($$sum2) + 16)|0; + $60 = (($mem) + ($$sum30)|0); + $61 = HEAP32[$60>>2]|0; + $62 = ($61|0)==(0|0); + if ($62) { + $R$1 = 0; + break; + } else { + $R$0 = $61;$RP$0 = $60; + } + } else { + $R$0 = $58;$RP$0 = $57; + } + while(1) { + $63 = (($R$0) + 20|0); + $64 = HEAP32[$63>>2]|0; + $65 = ($64|0)==(0|0); + if (!($65)) { + $R$0 = $64;$RP$0 = $63; + continue; + } + $66 = (($R$0) + 16|0); + $67 = HEAP32[$66>>2]|0; + $68 = ($67|0)==(0|0); + if ($68) { + break; + } else { + $R$0 = $67;$RP$0 = $66; + } + } + $69 = ($RP$0>>>0)<($2>>>0); + if ($69) { + _abort(); + // unreachable; + } else { + HEAP32[$RP$0>>2] = 0; + $R$1 = $R$0; + break; + } + } else { + $$sum35 = (($$sum2) + 8)|0; + $48 = (($mem) + ($$sum35)|0); + $49 = HEAP32[$48>>2]|0; + $50 = ($49>>>0)<($2>>>0); + if ($50) { + _abort(); + // unreachable; + } + $51 = (($49) + 12|0); + $52 = HEAP32[$51>>2]|0; + $53 = ($52|0)==($14|0); + if (!($53)) { + _abort(); + // unreachable; + } + $54 = (($46) + 8|0); + $55 = HEAP32[$54>>2]|0; + $56 = ($55|0)==($14|0); + if ($56) { + HEAP32[$51>>2] = $46; + HEAP32[$54>>2] = $49; + $R$1 = $46; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $70 = ($44|0)==(0|0); + if ($70) { + $p$0 = $14;$psize$0 = $15; + } else { + $$sum32 = (($$sum2) + 28)|0; + $71 = (($mem) + ($$sum32)|0); + $72 = HEAP32[$71>>2]|0; + $73 = ((32544 + ($72<<2)|0) + 304|0); + $74 = HEAP32[$73>>2]|0; + $75 = ($14|0)==($74|0); + if ($75) { + HEAP32[$73>>2] = $R$1; + $cond = ($R$1|0)==(0|0); + if ($cond) { + $76 = 1 << $72; + $77 = $76 ^ -1; + $78 = HEAP32[((32544 + 4|0))>>2]|0; + $79 = $78 & $77; + HEAP32[((32544 + 4|0))>>2] = $79; + $p$0 = $14;$psize$0 = $15; + break; + } + } else { + $80 = HEAP32[((32544 + 16|0))>>2]|0; + $81 = ($44>>>0)<($80>>>0); + if ($81) { + _abort(); + // unreachable; + } + $82 = (($44) + 16|0); + $83 = HEAP32[$82>>2]|0; + $84 = ($83|0)==($14|0); + if ($84) { + HEAP32[$82>>2] = $R$1; + } else { + $85 = (($44) + 20|0); + HEAP32[$85>>2] = $R$1; + } + $86 = ($R$1|0)==(0|0); + if ($86) { + $p$0 = $14;$psize$0 = $15; + break; + } + } + $87 = HEAP32[((32544 + 16|0))>>2]|0; + $88 = ($R$1>>>0)<($87>>>0); + if ($88) { + _abort(); + // unreachable; + } + $89 = (($R$1) + 24|0); + HEAP32[$89>>2] = $44; + $$sum33 = (($$sum2) + 16)|0; + $90 = (($mem) + ($$sum33)|0); + $91 = HEAP32[$90>>2]|0; + $92 = ($91|0)==(0|0); + do { + if (!($92)) { + $93 = ($91>>>0)<($87>>>0); + if ($93) { + _abort(); + // unreachable; + } else { + $94 = (($R$1) + 16|0); + HEAP32[$94>>2] = $91; + $95 = (($91) + 24|0); + HEAP32[$95>>2] = $R$1; + break; + } + } + } while(0); + $$sum34 = (($$sum2) + 20)|0; + $96 = (($mem) + ($$sum34)|0); + $97 = HEAP32[$96>>2]|0; + $98 = ($97|0)==(0|0); + if ($98) { + $p$0 = $14;$psize$0 = $15; + } else { + $99 = HEAP32[((32544 + 16|0))>>2]|0; + $100 = ($97>>>0)<($99>>>0); + if ($100) { + _abort(); + // unreachable; + } else { + $101 = (($R$1) + 20|0); + HEAP32[$101>>2] = $97; + $102 = (($97) + 24|0); + HEAP32[$102>>2] = $R$1; + $p$0 = $14;$psize$0 = $15; + break; + } + } + } + } else { + $p$0 = $1;$psize$0 = $8; + } + } while(0); + $110 = ($p$0>>>0)<($9>>>0); + if (!($110)) { + _abort(); + // unreachable; + } + $$sum25 = (($8) + -4)|0; + $111 = (($mem) + ($$sum25)|0); + $112 = HEAP32[$111>>2]|0; + $113 = $112 & 1; + $114 = ($113|0)==(0); + if ($114) { + _abort(); + // unreachable; + } + $115 = $112 & 2; + $116 = ($115|0)==(0); + if ($116) { + $117 = HEAP32[((32544 + 24|0))>>2]|0; + $118 = ($9|0)==($117|0); + if ($118) { + $119 = HEAP32[((32544 + 12|0))>>2]|0; + $120 = (($119) + ($psize$0))|0; + HEAP32[((32544 + 12|0))>>2] = $120; + HEAP32[((32544 + 24|0))>>2] = $p$0; + $121 = $120 | 1; + $122 = (($p$0) + 4|0); + HEAP32[$122>>2] = $121; + $123 = HEAP32[((32544 + 20|0))>>2]|0; + $124 = ($p$0|0)==($123|0); + if (!($124)) { + STACKTOP = sp;return; + } + HEAP32[((32544 + 20|0))>>2] = 0; + HEAP32[((32544 + 8|0))>>2] = 0; + STACKTOP = sp;return; + } + $125 = HEAP32[((32544 + 20|0))>>2]|0; + $126 = ($9|0)==($125|0); + if ($126) { + $127 = HEAP32[((32544 + 8|0))>>2]|0; + $128 = (($127) + ($psize$0))|0; + HEAP32[((32544 + 8|0))>>2] = $128; + HEAP32[((32544 + 20|0))>>2] = $p$0; + $129 = $128 | 1; + $130 = (($p$0) + 4|0); + HEAP32[$130>>2] = $129; + $131 = (($p$0) + ($128)|0); + HEAP32[$131>>2] = $128; + STACKTOP = sp;return; + } + $132 = $112 & -8; + $133 = (($132) + ($psize$0))|0; + $134 = $112 >>> 3; + $135 = ($112>>>0)<(256); + do { + if ($135) { + $136 = (($mem) + ($8)|0); + $137 = HEAP32[$136>>2]|0; + $$sum2324 = $8 | 4; + $138 = (($mem) + ($$sum2324)|0); + $139 = HEAP32[$138>>2]|0; + $140 = $134 << 1; + $141 = ((32544 + ($140<<2)|0) + 40|0); + $142 = ($137|0)==($141|0); + if (!($142)) { + $143 = HEAP32[((32544 + 16|0))>>2]|0; + $144 = ($137>>>0)<($143>>>0); + if ($144) { + _abort(); + // unreachable; + } + $145 = (($137) + 12|0); + $146 = HEAP32[$145>>2]|0; + $147 = ($146|0)==($9|0); + if (!($147)) { + _abort(); + // unreachable; + } + } + $148 = ($139|0)==($137|0); + if ($148) { + $149 = 1 << $134; + $150 = $149 ^ -1; + $151 = HEAP32[32544>>2]|0; + $152 = $151 & $150; + HEAP32[32544>>2] = $152; + break; + } + $153 = ($139|0)==($141|0); + if ($153) { + $$pre65 = (($139) + 8|0); + $$pre$phi66Z2D = $$pre65; + } else { + $154 = HEAP32[((32544 + 16|0))>>2]|0; + $155 = ($139>>>0)<($154>>>0); + if ($155) { + _abort(); + // unreachable; + } + $156 = (($139) + 8|0); + $157 = HEAP32[$156>>2]|0; + $158 = ($157|0)==($9|0); + if ($158) { + $$pre$phi66Z2D = $156; + } else { + _abort(); + // unreachable; + } + } + $159 = (($137) + 12|0); + HEAP32[$159>>2] = $139; + HEAP32[$$pre$phi66Z2D>>2] = $137; + } else { + $$sum5 = (($8) + 16)|0; + $160 = (($mem) + ($$sum5)|0); + $161 = HEAP32[$160>>2]|0; + $$sum67 = $8 | 4; + $162 = (($mem) + ($$sum67)|0); + $163 = HEAP32[$162>>2]|0; + $164 = ($163|0)==($9|0); + do { + if ($164) { + $$sum9 = (($8) + 12)|0; + $175 = (($mem) + ($$sum9)|0); + $176 = HEAP32[$175>>2]|0; + $177 = ($176|0)==(0|0); + if ($177) { + $$sum8 = (($8) + 8)|0; + $178 = (($mem) + ($$sum8)|0); + $179 = HEAP32[$178>>2]|0; + $180 = ($179|0)==(0|0); + if ($180) { + $R7$1 = 0; + break; + } else { + $R7$0 = $179;$RP9$0 = $178; + } + } else { + $R7$0 = $176;$RP9$0 = $175; + } + while(1) { + $181 = (($R7$0) + 20|0); + $182 = HEAP32[$181>>2]|0; + $183 = ($182|0)==(0|0); + if (!($183)) { + $R7$0 = $182;$RP9$0 = $181; + continue; + } + $184 = (($R7$0) + 16|0); + $185 = HEAP32[$184>>2]|0; + $186 = ($185|0)==(0|0); + if ($186) { + break; + } else { + $R7$0 = $185;$RP9$0 = $184; + } + } + $187 = HEAP32[((32544 + 16|0))>>2]|0; + $188 = ($RP9$0>>>0)<($187>>>0); + if ($188) { + _abort(); + // unreachable; + } else { + HEAP32[$RP9$0>>2] = 0; + $R7$1 = $R7$0; + break; + } + } else { + $165 = (($mem) + ($8)|0); + $166 = HEAP32[$165>>2]|0; + $167 = HEAP32[((32544 + 16|0))>>2]|0; + $168 = ($166>>>0)<($167>>>0); + if ($168) { + _abort(); + // unreachable; + } + $169 = (($166) + 12|0); + $170 = HEAP32[$169>>2]|0; + $171 = ($170|0)==($9|0); + if (!($171)) { + _abort(); + // unreachable; + } + $172 = (($163) + 8|0); + $173 = HEAP32[$172>>2]|0; + $174 = ($173|0)==($9|0); + if ($174) { + HEAP32[$169>>2] = $163; + HEAP32[$172>>2] = $166; + $R7$1 = $163; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $189 = ($161|0)==(0|0); + if (!($189)) { + $$sum18 = (($8) + 20)|0; + $190 = (($mem) + ($$sum18)|0); + $191 = HEAP32[$190>>2]|0; + $192 = ((32544 + ($191<<2)|0) + 304|0); + $193 = HEAP32[$192>>2]|0; + $194 = ($9|0)==($193|0); + if ($194) { + HEAP32[$192>>2] = $R7$1; + $cond54 = ($R7$1|0)==(0|0); + if ($cond54) { + $195 = 1 << $191; + $196 = $195 ^ -1; + $197 = HEAP32[((32544 + 4|0))>>2]|0; + $198 = $197 & $196; + HEAP32[((32544 + 4|0))>>2] = $198; + break; + } + } else { + $199 = HEAP32[((32544 + 16|0))>>2]|0; + $200 = ($161>>>0)<($199>>>0); + if ($200) { + _abort(); + // unreachable; + } + $201 = (($161) + 16|0); + $202 = HEAP32[$201>>2]|0; + $203 = ($202|0)==($9|0); + if ($203) { + HEAP32[$201>>2] = $R7$1; + } else { + $204 = (($161) + 20|0); + HEAP32[$204>>2] = $R7$1; + } + $205 = ($R7$1|0)==(0|0); + if ($205) { + break; + } + } + $206 = HEAP32[((32544 + 16|0))>>2]|0; + $207 = ($R7$1>>>0)<($206>>>0); + if ($207) { + _abort(); + // unreachable; + } + $208 = (($R7$1) + 24|0); + HEAP32[$208>>2] = $161; + $$sum19 = (($8) + 8)|0; + $209 = (($mem) + ($$sum19)|0); + $210 = HEAP32[$209>>2]|0; + $211 = ($210|0)==(0|0); + do { + if (!($211)) { + $212 = ($210>>>0)<($206>>>0); + if ($212) { + _abort(); + // unreachable; + } else { + $213 = (($R7$1) + 16|0); + HEAP32[$213>>2] = $210; + $214 = (($210) + 24|0); + HEAP32[$214>>2] = $R7$1; + break; + } + } + } while(0); + $$sum20 = (($8) + 12)|0; + $215 = (($mem) + ($$sum20)|0); + $216 = HEAP32[$215>>2]|0; + $217 = ($216|0)==(0|0); + if (!($217)) { + $218 = HEAP32[((32544 + 16|0))>>2]|0; + $219 = ($216>>>0)<($218>>>0); + if ($219) { + _abort(); + // unreachable; + } else { + $220 = (($R7$1) + 20|0); + HEAP32[$220>>2] = $216; + $221 = (($216) + 24|0); + HEAP32[$221>>2] = $R7$1; + break; + } + } + } + } + } while(0); + $222 = $133 | 1; + $223 = (($p$0) + 4|0); + HEAP32[$223>>2] = $222; + $224 = (($p$0) + ($133)|0); + HEAP32[$224>>2] = $133; + $225 = HEAP32[((32544 + 20|0))>>2]|0; + $226 = ($p$0|0)==($225|0); + if ($226) { + HEAP32[((32544 + 8|0))>>2] = $133; + STACKTOP = sp;return; + } else { + $psize$1 = $133; + } + } else { + $227 = $112 & -2; + HEAP32[$111>>2] = $227; + $228 = $psize$0 | 1; + $229 = (($p$0) + 4|0); + HEAP32[$229>>2] = $228; + $230 = (($p$0) + ($psize$0)|0); + HEAP32[$230>>2] = $psize$0; + $psize$1 = $psize$0; + } + $231 = $psize$1 >>> 3; + $232 = ($psize$1>>>0)<(256); + if ($232) { + $233 = $231 << 1; + $234 = ((32544 + ($233<<2)|0) + 40|0); + $235 = HEAP32[32544>>2]|0; + $236 = 1 << $231; + $237 = $235 & $236; + $238 = ($237|0)==(0); + if ($238) { + $239 = $235 | $236; + HEAP32[32544>>2] = $239; + $$sum16$pre = (($233) + 2)|0; + $$pre = ((32544 + ($$sum16$pre<<2)|0) + 40|0); + $$pre$phiZ2D = $$pre;$F16$0 = $234; + } else { + $$sum17 = (($233) + 2)|0; + $240 = ((32544 + ($$sum17<<2)|0) + 40|0); + $241 = HEAP32[$240>>2]|0; + $242 = HEAP32[((32544 + 16|0))>>2]|0; + $243 = ($241>>>0)<($242>>>0); + if ($243) { + _abort(); + // unreachable; + } else { + $$pre$phiZ2D = $240;$F16$0 = $241; + } + } + HEAP32[$$pre$phiZ2D>>2] = $p$0; + $244 = (($F16$0) + 12|0); + HEAP32[$244>>2] = $p$0; + $245 = (($p$0) + 8|0); + HEAP32[$245>>2] = $F16$0; + $246 = (($p$0) + 12|0); + HEAP32[$246>>2] = $234; + STACKTOP = sp;return; + } + $247 = $psize$1 >>> 8; + $248 = ($247|0)==(0); + if ($248) { + $I18$0 = 0; + } else { + $249 = ($psize$1>>>0)>(16777215); + if ($249) { + $I18$0 = 31; + } else { + $250 = (($247) + 1048320)|0; + $251 = $250 >>> 16; + $252 = $251 & 8; + $253 = $247 << $252; + $254 = (($253) + 520192)|0; + $255 = $254 >>> 16; + $256 = $255 & 4; + $257 = $256 | $252; + $258 = $253 << $256; + $259 = (($258) + 245760)|0; + $260 = $259 >>> 16; + $261 = $260 & 2; + $262 = $257 | $261; + $263 = (14 - ($262))|0; + $264 = $258 << $261; + $265 = $264 >>> 15; + $266 = (($263) + ($265))|0; + $267 = $266 << 1; + $268 = (($266) + 7)|0; + $269 = $psize$1 >>> $268; + $270 = $269 & 1; + $271 = $270 | $267; + $I18$0 = $271; + } + } + $272 = ((32544 + ($I18$0<<2)|0) + 304|0); + $273 = (($p$0) + 28|0); + $I18$0$c = $I18$0; + HEAP32[$273>>2] = $I18$0$c; + $274 = (($p$0) + 20|0); + HEAP32[$274>>2] = 0; + $275 = (($p$0) + 16|0); + HEAP32[$275>>2] = 0; + $276 = HEAP32[((32544 + 4|0))>>2]|0; + $277 = 1 << $I18$0; + $278 = $276 & $277; + $279 = ($278|0)==(0); + L199: do { + if ($279) { + $280 = $276 | $277; + HEAP32[((32544 + 4|0))>>2] = $280; + HEAP32[$272>>2] = $p$0; + $281 = (($p$0) + 24|0); + HEAP32[$281>>2] = $272; + $282 = (($p$0) + 12|0); + HEAP32[$282>>2] = $p$0; + $283 = (($p$0) + 8|0); + HEAP32[$283>>2] = $p$0; + } else { + $284 = HEAP32[$272>>2]|0; + $285 = ($I18$0|0)==(31); + if ($285) { + $293 = 0; + } else { + $286 = $I18$0 >>> 1; + $287 = (25 - ($286))|0; + $293 = $287; + } + $288 = (($284) + 4|0); + $289 = HEAP32[$288>>2]|0; + $290 = $289 & -8; + $291 = ($290|0)==($psize$1|0); + L205: do { + if ($291) { + $T$0$lcssa = $284; + } else { + $292 = $psize$1 << $293; + $K19$058 = $292;$T$057 = $284; + while(1) { + $300 = $K19$058 >>> 31; + $301 = ((($T$057) + ($300<<2)|0) + 16|0); + $296 = HEAP32[$301>>2]|0; + $302 = ($296|0)==(0|0); + if ($302) { + break; + } + $294 = $K19$058 << 1; + $295 = (($296) + 4|0); + $297 = HEAP32[$295>>2]|0; + $298 = $297 & -8; + $299 = ($298|0)==($psize$1|0); + if ($299) { + $T$0$lcssa = $296; + break L205; + } else { + $K19$058 = $294;$T$057 = $296; + } + } + $303 = HEAP32[((32544 + 16|0))>>2]|0; + $304 = ($301>>>0)<($303>>>0); + if ($304) { + _abort(); + // unreachable; + } else { + HEAP32[$301>>2] = $p$0; + $305 = (($p$0) + 24|0); + HEAP32[$305>>2] = $T$057; + $306 = (($p$0) + 12|0); + HEAP32[$306>>2] = $p$0; + $307 = (($p$0) + 8|0); + HEAP32[$307>>2] = $p$0; + break L199; + } + } + } while(0); + $308 = (($T$0$lcssa) + 8|0); + $309 = HEAP32[$308>>2]|0; + $310 = HEAP32[((32544 + 16|0))>>2]|0; + $311 = ($T$0$lcssa>>>0)>=($310>>>0); + $312 = ($309>>>0)>=($310>>>0); + $or$cond = $311 & $312; + if ($or$cond) { + $313 = (($309) + 12|0); + HEAP32[$313>>2] = $p$0; + HEAP32[$308>>2] = $p$0; + $314 = (($p$0) + 8|0); + HEAP32[$314>>2] = $309; + $315 = (($p$0) + 12|0); + HEAP32[$315>>2] = $T$0$lcssa; + $316 = (($p$0) + 24|0); + HEAP32[$316>>2] = 0; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $317 = HEAP32[((32544 + 32|0))>>2]|0; + $318 = (($317) + -1)|0; + HEAP32[((32544 + 32|0))>>2] = $318; + $319 = ($318|0)==(0); + if ($319) { + $sp$0$in$i = ((32544 + 456|0)); + } else { + STACKTOP = sp;return; + } + while(1) { + $sp$0$i = HEAP32[$sp$0$in$i>>2]|0; + $320 = ($sp$0$i|0)==(0|0); + $321 = (($sp$0$i) + 8|0); + if ($320) { + break; + } else { + $sp$0$in$i = $321; + } + } + HEAP32[((32544 + 32|0))>>2] = -1; + STACKTOP = sp;return; +} +function runPostSets() { + +} +function _bitshift64Ashr(low, high, bits) { + low = low|0; high = high|0; bits = bits|0; + var ander = 0; + if ((bits|0) < 32) { + ander = ((1 << bits) - 1)|0; + tempRet0 = high >> bits; + return (low >>> bits) | ((high&ander) << (32 - bits)); + } + tempRet0 = (high|0) < 0 ? -1 : 0; + return (high >> (bits - 32))|0; +} +function _i64Subtract(a, b, c, d) { + a = a|0; b = b|0; c = c|0; d = d|0; + var l = 0, h = 0; + l = (a - c)>>>0; + h = (b - d)>>>0; + h = (b - d - (((c>>>0) > (a>>>0))|0))>>>0; // Borrow one from high word to low word on underflow. + return ((tempRet0 = h,l|0)|0); +} +function _i64Add(a, b, c, d) { + /* + x = a + b*2^32 + y = c + d*2^32 + result = l + h*2^32 + */ + a = a|0; b = b|0; c = c|0; d = d|0; + var l = 0, h = 0; + l = (a + c)>>>0; + h = (b + d + (((l>>>0) < (a>>>0))|0))>>>0; // Add carry from low word to high word on overflow. + return ((tempRet0 = h,l|0)|0); +} +function _memset(ptr, value, num) { + ptr = ptr|0; value = value|0; num = num|0; + var stop = 0, value4 = 0, stop4 = 0, unaligned = 0; + stop = (ptr + num)|0; + if ((num|0) >= 20) { + // This is unaligned, but quite large, so work hard to get to aligned settings + value = value & 0xff; + unaligned = ptr & 3; + value4 = value | (value << 8) | (value << 16) | (value << 24); + stop4 = stop & ~3; + if (unaligned) { + unaligned = (ptr + 4 - unaligned)|0; + while ((ptr|0) < (unaligned|0)) { // no need to check for stop, since we have large num + HEAP8[((ptr)>>0)]=value; + ptr = (ptr+1)|0; + } + } + while ((ptr|0) < (stop4|0)) { + HEAP32[((ptr)>>2)]=value4; + ptr = (ptr+4)|0; + } + } + while ((ptr|0) < (stop|0)) { + HEAP8[((ptr)>>0)]=value; + ptr = (ptr+1)|0; + } + return (ptr-num)|0; +} +function _bitshift64Lshr(low, high, bits) { + low = low|0; high = high|0; bits = bits|0; + var ander = 0; + if ((bits|0) < 32) { + ander = ((1 << bits) - 1)|0; + tempRet0 = high >>> bits; + return (low >>> bits) | ((high&ander) << (32 - bits)); + } + tempRet0 = 0; + return (high >>> (bits - 32))|0; +} +function _bitshift64Shl(low, high, bits) { + low = low|0; high = high|0; bits = bits|0; + var ander = 0; + if ((bits|0) < 32) { + ander = ((1 << bits) - 1)|0; + tempRet0 = (high << bits) | ((low&(ander << (32 - bits))) >>> (32 - bits)); + return low << bits; + } + tempRet0 = low << (bits - 32); + return 0; +} +function _strlen(ptr) { + ptr = ptr|0; + var curr = 0; + curr = ptr; + while (((HEAP8[((curr)>>0)])|0)) { + curr = (curr + 1)|0; + } + return (curr - ptr)|0; +} +function _memcpy(dest, src, num) { + + dest = dest|0; src = src|0; num = num|0; + var ret = 0; + if ((num|0) >= 4096) return _emscripten_memcpy_big(dest|0, src|0, num|0)|0; + ret = dest|0; + if ((dest&3) == (src&3)) { + while (dest & 3) { + if ((num|0) == 0) return ret|0; + HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); + dest = (dest+1)|0; + src = (src+1)|0; + num = (num-1)|0; + } + while ((num|0) >= 4) { + HEAP32[((dest)>>2)]=((HEAP32[((src)>>2)])|0); + dest = (dest+4)|0; + src = (src+4)|0; + num = (num-4)|0; + } + } + while ((num|0) > 0) { + HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); + dest = (dest+1)|0; + src = (src+1)|0; + num = (num-1)|0; + } + return ret|0; +} +function _memmove(dest, src, num) { + dest = dest|0; src = src|0; num = num|0; + var ret = 0; + if (((src|0) < (dest|0)) & ((dest|0) < ((src + num)|0))) { + // Unlikely case: Copy backwards in a safe manner + ret = dest; + src = (src + num)|0; + dest = (dest + num)|0; + while ((num|0) > 0) { + dest = (dest - 1)|0; + src = (src - 1)|0; + num = (num - 1)|0; + HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); + } + dest = ret; + } else { + _memcpy(dest, src, num) | 0; + } + return dest | 0; +} +function _llvm_ctlz_i32(x) { + x = x|0; + var ret = 0; + ret = ((HEAP8[(((ctlz_i8)+(x >>> 24))>>0)])|0); + if ((ret|0) < 8) return ret|0; + ret = ((HEAP8[(((ctlz_i8)+((x >> 16)&0xff))>>0)])|0); + if ((ret|0) < 8) return (ret + 8)|0; + ret = ((HEAP8[(((ctlz_i8)+((x >> 8)&0xff))>>0)])|0); + if ((ret|0) < 8) return (ret + 16)|0; + return (((HEAP8[(((ctlz_i8)+(x&0xff))>>0)])|0) + 24)|0; + } + +function _llvm_cttz_i32(x) { + x = x|0; + var ret = 0; + ret = ((HEAP8[(((cttz_i8)+(x & 0xff))>>0)])|0); + if ((ret|0) < 8) return ret|0; + ret = ((HEAP8[(((cttz_i8)+((x >> 8)&0xff))>>0)])|0); + if ((ret|0) < 8) return (ret + 8)|0; + ret = ((HEAP8[(((cttz_i8)+((x >> 16)&0xff))>>0)])|0); + if ((ret|0) < 8) return (ret + 16)|0; + return (((HEAP8[(((cttz_i8)+(x >>> 24))>>0)])|0) + 24)|0; + } + +// ======== compiled code from system/lib/compiler-rt , see readme therein +function ___muldsi3($a, $b) { + $a = $a | 0; + $b = $b | 0; + var $1 = 0, $2 = 0, $3 = 0, $6 = 0, $8 = 0, $11 = 0, $12 = 0; + $1 = $a & 65535; + $2 = $b & 65535; + $3 = Math_imul($2, $1) | 0; + $6 = $a >>> 16; + $8 = ($3 >>> 16) + (Math_imul($2, $6) | 0) | 0; + $11 = $b >>> 16; + $12 = Math_imul($11, $1) | 0; + return (tempRet0 = (($8 >>> 16) + (Math_imul($11, $6) | 0) | 0) + ((($8 & 65535) + $12 | 0) >>> 16) | 0, 0 | ($8 + $12 << 16 | $3 & 65535)) | 0; +} +function ___divdi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $1$0 = 0, $1$1 = 0, $2$0 = 0, $2$1 = 0, $4$0 = 0, $4$1 = 0, $6$0 = 0, $7$0 = 0, $7$1 = 0, $8$0 = 0, $10$0 = 0; + $1$0 = $a$1 >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; + $1$1 = (($a$1 | 0) < 0 ? -1 : 0) >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; + $2$0 = $b$1 >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; + $2$1 = (($b$1 | 0) < 0 ? -1 : 0) >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; + $4$0 = _i64Subtract($1$0 ^ $a$0, $1$1 ^ $a$1, $1$0, $1$1) | 0; + $4$1 = tempRet0; + $6$0 = _i64Subtract($2$0 ^ $b$0, $2$1 ^ $b$1, $2$0, $2$1) | 0; + $7$0 = $2$0 ^ $1$0; + $7$1 = $2$1 ^ $1$1; + $8$0 = ___udivmoddi4($4$0, $4$1, $6$0, tempRet0, 0) | 0; + $10$0 = _i64Subtract($8$0 ^ $7$0, tempRet0 ^ $7$1, $7$0, $7$1) | 0; + return (tempRet0 = tempRet0, $10$0) | 0; +} +function ___remdi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $rem = 0, $1$0 = 0, $1$1 = 0, $2$0 = 0, $2$1 = 0, $4$0 = 0, $4$1 = 0, $6$0 = 0, $10$0 = 0, $10$1 = 0, __stackBase__ = 0; + __stackBase__ = STACKTOP; + STACKTOP = STACKTOP + 8 | 0; + $rem = __stackBase__ | 0; + $1$0 = $a$1 >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; + $1$1 = (($a$1 | 0) < 0 ? -1 : 0) >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; + $2$0 = $b$1 >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; + $2$1 = (($b$1 | 0) < 0 ? -1 : 0) >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; + $4$0 = _i64Subtract($1$0 ^ $a$0, $1$1 ^ $a$1, $1$0, $1$1) | 0; + $4$1 = tempRet0; + $6$0 = _i64Subtract($2$0 ^ $b$0, $2$1 ^ $b$1, $2$0, $2$1) | 0; + ___udivmoddi4($4$0, $4$1, $6$0, tempRet0, $rem) | 0; + $10$0 = _i64Subtract(HEAP32[$rem >> 2] ^ $1$0, HEAP32[$rem + 4 >> 2] ^ $1$1, $1$0, $1$1) | 0; + $10$1 = tempRet0; + STACKTOP = __stackBase__; + return (tempRet0 = $10$1, $10$0) | 0; +} +function ___muldi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $x_sroa_0_0_extract_trunc = 0, $y_sroa_0_0_extract_trunc = 0, $1$0 = 0, $1$1 = 0, $2 = 0; + $x_sroa_0_0_extract_trunc = $a$0; + $y_sroa_0_0_extract_trunc = $b$0; + $1$0 = ___muldsi3($x_sroa_0_0_extract_trunc, $y_sroa_0_0_extract_trunc) | 0; + $1$1 = tempRet0; + $2 = Math_imul($a$1, $y_sroa_0_0_extract_trunc) | 0; + return (tempRet0 = ((Math_imul($b$1, $x_sroa_0_0_extract_trunc) | 0) + $2 | 0) + $1$1 | $1$1 & 0, 0 | $1$0 & -1) | 0; +} +function ___udivdi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $1$0 = 0; + $1$0 = ___udivmoddi4($a$0, $a$1, $b$0, $b$1, 0) | 0; + return (tempRet0 = tempRet0, $1$0) | 0; +} +function ___uremdi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $rem = 0, __stackBase__ = 0; + __stackBase__ = STACKTOP; + STACKTOP = STACKTOP + 8 | 0; + $rem = __stackBase__ | 0; + ___udivmoddi4($a$0, $a$1, $b$0, $b$1, $rem) | 0; + STACKTOP = __stackBase__; + return (tempRet0 = HEAP32[$rem + 4 >> 2] | 0, HEAP32[$rem >> 2] | 0) | 0; +} +function ___udivmoddi4($a$0, $a$1, $b$0, $b$1, $rem) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + $rem = $rem | 0; + var $n_sroa_0_0_extract_trunc = 0, $n_sroa_1_4_extract_shift$0 = 0, $n_sroa_1_4_extract_trunc = 0, $d_sroa_0_0_extract_trunc = 0, $d_sroa_1_4_extract_shift$0 = 0, $d_sroa_1_4_extract_trunc = 0, $4 = 0, $17 = 0, $37 = 0, $49 = 0, $51 = 0, $57 = 0, $58 = 0, $66 = 0, $78 = 0, $86 = 0, $88 = 0, $89 = 0, $91 = 0, $92 = 0, $95 = 0, $105 = 0, $117 = 0, $119 = 0, $125 = 0, $126 = 0, $130 = 0, $q_sroa_1_1_ph = 0, $q_sroa_0_1_ph = 0, $r_sroa_1_1_ph = 0, $r_sroa_0_1_ph = 0, $sr_1_ph = 0, $d_sroa_0_0_insert_insert99$0 = 0, $d_sroa_0_0_insert_insert99$1 = 0, $137$0 = 0, $137$1 = 0, $carry_0203 = 0, $sr_1202 = 0, $r_sroa_0_1201 = 0, $r_sroa_1_1200 = 0, $q_sroa_0_1199 = 0, $q_sroa_1_1198 = 0, $147 = 0, $149 = 0, $r_sroa_0_0_insert_insert42$0 = 0, $r_sroa_0_0_insert_insert42$1 = 0, $150$1 = 0, $151$0 = 0, $152 = 0, $154$0 = 0, $r_sroa_0_0_extract_trunc = 0, $r_sroa_1_4_extract_trunc = 0, $155 = 0, $carry_0_lcssa$0 = 0, $carry_0_lcssa$1 = 0, $r_sroa_0_1_lcssa = 0, $r_sroa_1_1_lcssa = 0, $q_sroa_0_1_lcssa = 0, $q_sroa_1_1_lcssa = 0, $q_sroa_0_0_insert_ext75$0 = 0, $q_sroa_0_0_insert_ext75$1 = 0, $q_sroa_0_0_insert_insert77$1 = 0, $_0$0 = 0, $_0$1 = 0; + $n_sroa_0_0_extract_trunc = $a$0; + $n_sroa_1_4_extract_shift$0 = $a$1; + $n_sroa_1_4_extract_trunc = $n_sroa_1_4_extract_shift$0; + $d_sroa_0_0_extract_trunc = $b$0; + $d_sroa_1_4_extract_shift$0 = $b$1; + $d_sroa_1_4_extract_trunc = $d_sroa_1_4_extract_shift$0; + if (($n_sroa_1_4_extract_trunc | 0) == 0) { + $4 = ($rem | 0) != 0; + if (($d_sroa_1_4_extract_trunc | 0) == 0) { + if ($4) { + HEAP32[$rem >> 2] = ($n_sroa_0_0_extract_trunc >>> 0) % ($d_sroa_0_0_extract_trunc >>> 0); + HEAP32[$rem + 4 >> 2] = 0; + } + $_0$1 = 0; + $_0$0 = ($n_sroa_0_0_extract_trunc >>> 0) / ($d_sroa_0_0_extract_trunc >>> 0) >>> 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } else { + if (!$4) { + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + HEAP32[$rem >> 2] = $a$0 & -1; + HEAP32[$rem + 4 >> 2] = $a$1 & 0; + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + } + $17 = ($d_sroa_1_4_extract_trunc | 0) == 0; + do { + if (($d_sroa_0_0_extract_trunc | 0) == 0) { + if ($17) { + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = ($n_sroa_1_4_extract_trunc >>> 0) % ($d_sroa_0_0_extract_trunc >>> 0); + HEAP32[$rem + 4 >> 2] = 0; + } + $_0$1 = 0; + $_0$0 = ($n_sroa_1_4_extract_trunc >>> 0) / ($d_sroa_0_0_extract_trunc >>> 0) >>> 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + if (($n_sroa_0_0_extract_trunc | 0) == 0) { + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = 0; + HEAP32[$rem + 4 >> 2] = ($n_sroa_1_4_extract_trunc >>> 0) % ($d_sroa_1_4_extract_trunc >>> 0); + } + $_0$1 = 0; + $_0$0 = ($n_sroa_1_4_extract_trunc >>> 0) / ($d_sroa_1_4_extract_trunc >>> 0) >>> 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + $37 = $d_sroa_1_4_extract_trunc - 1 | 0; + if (($37 & $d_sroa_1_4_extract_trunc | 0) == 0) { + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = 0 | $a$0 & -1; + HEAP32[$rem + 4 >> 2] = $37 & $n_sroa_1_4_extract_trunc | $a$1 & 0; + } + $_0$1 = 0; + $_0$0 = $n_sroa_1_4_extract_trunc >>> ((_llvm_cttz_i32($d_sroa_1_4_extract_trunc | 0) | 0) >>> 0); + return (tempRet0 = $_0$1, $_0$0) | 0; + } + $49 = _llvm_ctlz_i32($d_sroa_1_4_extract_trunc | 0) | 0; + $51 = $49 - (_llvm_ctlz_i32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; + if ($51 >>> 0 <= 30) { + $57 = $51 + 1 | 0; + $58 = 31 - $51 | 0; + $sr_1_ph = $57; + $r_sroa_0_1_ph = $n_sroa_1_4_extract_trunc << $58 | $n_sroa_0_0_extract_trunc >>> ($57 >>> 0); + $r_sroa_1_1_ph = $n_sroa_1_4_extract_trunc >>> ($57 >>> 0); + $q_sroa_0_1_ph = 0; + $q_sroa_1_1_ph = $n_sroa_0_0_extract_trunc << $58; + break; + } + if (($rem | 0) == 0) { + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + HEAP32[$rem >> 2] = 0 | $a$0 & -1; + HEAP32[$rem + 4 >> 2] = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } else { + if (!$17) { + $117 = _llvm_ctlz_i32($d_sroa_1_4_extract_trunc | 0) | 0; + $119 = $117 - (_llvm_ctlz_i32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; + if ($119 >>> 0 <= 31) { + $125 = $119 + 1 | 0; + $126 = 31 - $119 | 0; + $130 = $119 - 31 >> 31; + $sr_1_ph = $125; + $r_sroa_0_1_ph = $n_sroa_0_0_extract_trunc >>> ($125 >>> 0) & $130 | $n_sroa_1_4_extract_trunc << $126; + $r_sroa_1_1_ph = $n_sroa_1_4_extract_trunc >>> ($125 >>> 0) & $130; + $q_sroa_0_1_ph = 0; + $q_sroa_1_1_ph = $n_sroa_0_0_extract_trunc << $126; + break; + } + if (($rem | 0) == 0) { + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + HEAP32[$rem >> 2] = 0 | $a$0 & -1; + HEAP32[$rem + 4 >> 2] = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + $66 = $d_sroa_0_0_extract_trunc - 1 | 0; + if (($66 & $d_sroa_0_0_extract_trunc | 0) != 0) { + $86 = (_llvm_ctlz_i32($d_sroa_0_0_extract_trunc | 0) | 0) + 33 | 0; + $88 = $86 - (_llvm_ctlz_i32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; + $89 = 64 - $88 | 0; + $91 = 32 - $88 | 0; + $92 = $91 >> 31; + $95 = $88 - 32 | 0; + $105 = $95 >> 31; + $sr_1_ph = $88; + $r_sroa_0_1_ph = $91 - 1 >> 31 & $n_sroa_1_4_extract_trunc >>> ($95 >>> 0) | ($n_sroa_1_4_extract_trunc << $91 | $n_sroa_0_0_extract_trunc >>> ($88 >>> 0)) & $105; + $r_sroa_1_1_ph = $105 & $n_sroa_1_4_extract_trunc >>> ($88 >>> 0); + $q_sroa_0_1_ph = $n_sroa_0_0_extract_trunc << $89 & $92; + $q_sroa_1_1_ph = ($n_sroa_1_4_extract_trunc << $89 | $n_sroa_0_0_extract_trunc >>> ($95 >>> 0)) & $92 | $n_sroa_0_0_extract_trunc << $91 & $88 - 33 >> 31; + break; + } + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = $66 & $n_sroa_0_0_extract_trunc; + HEAP32[$rem + 4 >> 2] = 0; + } + if (($d_sroa_0_0_extract_trunc | 0) == 1) { + $_0$1 = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; + $_0$0 = 0 | $a$0 & -1; + return (tempRet0 = $_0$1, $_0$0) | 0; + } else { + $78 = _llvm_cttz_i32($d_sroa_0_0_extract_trunc | 0) | 0; + $_0$1 = 0 | $n_sroa_1_4_extract_trunc >>> ($78 >>> 0); + $_0$0 = $n_sroa_1_4_extract_trunc << 32 - $78 | $n_sroa_0_0_extract_trunc >>> ($78 >>> 0) | 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + } + } while (0); + if (($sr_1_ph | 0) == 0) { + $q_sroa_1_1_lcssa = $q_sroa_1_1_ph; + $q_sroa_0_1_lcssa = $q_sroa_0_1_ph; + $r_sroa_1_1_lcssa = $r_sroa_1_1_ph; + $r_sroa_0_1_lcssa = $r_sroa_0_1_ph; + $carry_0_lcssa$1 = 0; + $carry_0_lcssa$0 = 0; + } else { + $d_sroa_0_0_insert_insert99$0 = 0 | $b$0 & -1; + $d_sroa_0_0_insert_insert99$1 = $d_sroa_1_4_extract_shift$0 | $b$1 & 0; + $137$0 = _i64Add($d_sroa_0_0_insert_insert99$0, $d_sroa_0_0_insert_insert99$1, -1, -1) | 0; + $137$1 = tempRet0; + $q_sroa_1_1198 = $q_sroa_1_1_ph; + $q_sroa_0_1199 = $q_sroa_0_1_ph; + $r_sroa_1_1200 = $r_sroa_1_1_ph; + $r_sroa_0_1201 = $r_sroa_0_1_ph; + $sr_1202 = $sr_1_ph; + $carry_0203 = 0; + while (1) { + $147 = $q_sroa_0_1199 >>> 31 | $q_sroa_1_1198 << 1; + $149 = $carry_0203 | $q_sroa_0_1199 << 1; + $r_sroa_0_0_insert_insert42$0 = 0 | ($r_sroa_0_1201 << 1 | $q_sroa_1_1198 >>> 31); + $r_sroa_0_0_insert_insert42$1 = $r_sroa_0_1201 >>> 31 | $r_sroa_1_1200 << 1 | 0; + _i64Subtract($137$0, $137$1, $r_sroa_0_0_insert_insert42$0, $r_sroa_0_0_insert_insert42$1) | 0; + $150$1 = tempRet0; + $151$0 = $150$1 >> 31 | (($150$1 | 0) < 0 ? -1 : 0) << 1; + $152 = $151$0 & 1; + $154$0 = _i64Subtract($r_sroa_0_0_insert_insert42$0, $r_sroa_0_0_insert_insert42$1, $151$0 & $d_sroa_0_0_insert_insert99$0, ((($150$1 | 0) < 0 ? -1 : 0) >> 31 | (($150$1 | 0) < 0 ? -1 : 0) << 1) & $d_sroa_0_0_insert_insert99$1) | 0; + $r_sroa_0_0_extract_trunc = $154$0; + $r_sroa_1_4_extract_trunc = tempRet0; + $155 = $sr_1202 - 1 | 0; + if (($155 | 0) == 0) { + break; + } else { + $q_sroa_1_1198 = $147; + $q_sroa_0_1199 = $149; + $r_sroa_1_1200 = $r_sroa_1_4_extract_trunc; + $r_sroa_0_1201 = $r_sroa_0_0_extract_trunc; + $sr_1202 = $155; + $carry_0203 = $152; + } + } + $q_sroa_1_1_lcssa = $147; + $q_sroa_0_1_lcssa = $149; + $r_sroa_1_1_lcssa = $r_sroa_1_4_extract_trunc; + $r_sroa_0_1_lcssa = $r_sroa_0_0_extract_trunc; + $carry_0_lcssa$1 = 0; + $carry_0_lcssa$0 = $152; + } + $q_sroa_0_0_insert_ext75$0 = $q_sroa_0_1_lcssa; + $q_sroa_0_0_insert_ext75$1 = 0; + $q_sroa_0_0_insert_insert77$1 = $q_sroa_1_1_lcssa | $q_sroa_0_0_insert_ext75$1; + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = 0 | $r_sroa_0_1_lcssa; + HEAP32[$rem + 4 >> 2] = $r_sroa_1_1_lcssa | 0; + } + $_0$1 = (0 | $q_sroa_0_0_insert_ext75$0) >>> 31 | $q_sroa_0_0_insert_insert77$1 << 1 | ($q_sroa_0_0_insert_ext75$1 << 1 | $q_sroa_0_0_insert_ext75$0 >>> 31) & 0 | $carry_0_lcssa$1; + $_0$0 = ($q_sroa_0_0_insert_ext75$0 << 1 | 0 >>> 31) & -2 | $carry_0_lcssa$0; + return (tempRet0 = $_0$1, $_0$0) | 0; +} +// ======================================================================= + + + +// EMSCRIPTEN_END_FUNCS + + + + // EMSCRIPTEN_END_FUNCS + + + return { _curve25519_verify: _curve25519_verify, _crypto_sign_ed25519_ref10_ge_scalarmult_base: _crypto_sign_ed25519_ref10_ge_scalarmult_base, _curve25519_sign: _curve25519_sign, _free: _free, _i64Add: _i64Add, _memmove: _memmove, _bitshift64Ashr: _bitshift64Ashr, _sph_sha512_init: _sph_sha512_init, _curve25519_donna: _curve25519_donna, _memset: _memset, _malloc: _malloc, _memcpy: _memcpy, _strlen: _strlen, _bitshift64Lshr: _bitshift64Lshr, _i64Subtract: _i64Subtract, _bitshift64Shl: _bitshift64Shl, runPostSets: runPostSets, stackAlloc: stackAlloc, stackSave: stackSave, stackRestore: stackRestore, setThrew: setThrew, setTempRet0: setTempRet0, getTempRet0: getTempRet0 }; +}) +// EMSCRIPTEN_END_ASM +(Module.asmGlobalArg, Module.asmLibraryArg, buffer); +var _curve25519_verify = Module["_curve25519_verify"] = asm["_curve25519_verify"]; +var _crypto_sign_ed25519_ref10_ge_scalarmult_base = Module["_crypto_sign_ed25519_ref10_ge_scalarmult_base"] = asm["_crypto_sign_ed25519_ref10_ge_scalarmult_base"]; +var _curve25519_sign = Module["_curve25519_sign"] = asm["_curve25519_sign"]; +var _free = Module["_free"] = asm["_free"]; +var _i64Add = Module["_i64Add"] = asm["_i64Add"]; +var _memmove = Module["_memmove"] = asm["_memmove"]; +var _bitshift64Ashr = Module["_bitshift64Ashr"] = asm["_bitshift64Ashr"]; +var _sph_sha512_init = Module["_sph_sha512_init"] = asm["_sph_sha512_init"]; +var _curve25519_donna = Module["_curve25519_donna"] = asm["_curve25519_donna"]; +var _memset = Module["_memset"] = asm["_memset"]; +var _malloc = Module["_malloc"] = asm["_malloc"]; +var _memcpy = Module["_memcpy"] = asm["_memcpy"]; +var _strlen = Module["_strlen"] = asm["_strlen"]; +var _bitshift64Lshr = Module["_bitshift64Lshr"] = asm["_bitshift64Lshr"]; +var _i64Subtract = Module["_i64Subtract"] = asm["_i64Subtract"]; +var _bitshift64Shl = Module["_bitshift64Shl"] = asm["_bitshift64Shl"]; +var runPostSets = Module["runPostSets"] = asm["runPostSets"]; + +Runtime.stackAlloc = asm['stackAlloc']; +Runtime.stackSave = asm['stackSave']; +Runtime.stackRestore = asm['stackRestore']; +Runtime.setTempRet0 = asm['setTempRet0']; +Runtime.getTempRet0 = asm['getTempRet0']; + + +// TODO: strip out parts of this we do not need + +//======= begin closure i64 code ======= + +// Copyright 2009 The Closure Library Authors. All Rights Reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS-IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +/** + * @fileoverview Defines a Long class for representing a 64-bit two's-complement + * integer value, which faithfully simulates the behavior of a Java "long". This + * implementation is derived from LongLib in GWT. + * + */ + +var i64Math = (function() { // Emscripten wrapper + var goog = { math: {} }; + + + /** + * Constructs a 64-bit two's-complement integer, given its low and high 32-bit + * values as *signed* integers. See the from* functions below for more + * convenient ways of constructing Longs. + * + * The internal representation of a long is the two given signed, 32-bit values. + * We use 32-bit pieces because these are the size of integers on which + * Javascript performs bit-operations. For operations like addition and + * multiplication, we split each number into 16-bit pieces, which can easily be + * multiplied within Javascript's floating-point representation without overflow + * or change in sign. + * + * In the algorithms below, we frequently reduce the negative case to the + * positive case by negating the input(s) and then post-processing the result. + * Note that we must ALWAYS check specially whether those values are MIN_VALUE + * (-2^63) because -MIN_VALUE == MIN_VALUE (since 2^63 cannot be represented as + * a positive number, it overflows back into a negative). Not handling this + * case would often result in infinite recursion. + * + * @param {number} low The low (signed) 32 bits of the long. + * @param {number} high The high (signed) 32 bits of the long. + * @constructor + */ + goog.math.Long = function(low, high) { + /** + * @type {number} + * @private + */ + this.low_ = low | 0; // force into 32 signed bits. + + /** + * @type {number} + * @private + */ + this.high_ = high | 0; // force into 32 signed bits. + }; + + + // NOTE: Common constant values ZERO, ONE, NEG_ONE, etc. are defined below the + // from* methods on which they depend. + + + /** + * A cache of the Long representations of small integer values. + * @type {!Object} + * @private + */ + goog.math.Long.IntCache_ = {}; + + + /** + * Returns a Long representing the given (32-bit) integer value. + * @param {number} value The 32-bit integer in question. + * @return {!goog.math.Long} The corresponding Long value. + */ + goog.math.Long.fromInt = function(value) { + if (-128 <= value && value < 128) { + var cachedObj = goog.math.Long.IntCache_[value]; + if (cachedObj) { + return cachedObj; + } + } + + var obj = new goog.math.Long(value | 0, value < 0 ? -1 : 0); + if (-128 <= value && value < 128) { + goog.math.Long.IntCache_[value] = obj; + } + return obj; + }; + + + /** + * Returns a Long representing the given value, provided that it is a finite + * number. Otherwise, zero is returned. + * @param {number} value The number in question. + * @return {!goog.math.Long} The corresponding Long value. + */ + goog.math.Long.fromNumber = function(value) { + if (isNaN(value) || !isFinite(value)) { + return goog.math.Long.ZERO; + } else if (value <= -goog.math.Long.TWO_PWR_63_DBL_) { + return goog.math.Long.MIN_VALUE; + } else if (value + 1 >= goog.math.Long.TWO_PWR_63_DBL_) { + return goog.math.Long.MAX_VALUE; + } else if (value < 0) { + return goog.math.Long.fromNumber(-value).negate(); + } else { + return new goog.math.Long( + (value % goog.math.Long.TWO_PWR_32_DBL_) | 0, + (value / goog.math.Long.TWO_PWR_32_DBL_) | 0); + } + }; + + + /** + * Returns a Long representing the 64-bit integer that comes by concatenating + * the given high and low bits. Each is assumed to use 32 bits. + * @param {number} lowBits The low 32-bits. + * @param {number} highBits The high 32-bits. + * @return {!goog.math.Long} The corresponding Long value. + */ + goog.math.Long.fromBits = function(lowBits, highBits) { + return new goog.math.Long(lowBits, highBits); + }; + + + /** + * Returns a Long representation of the given string, written using the given + * radix. + * @param {string} str The textual representation of the Long. + * @param {number=} opt_radix The radix in which the text is written. + * @return {!goog.math.Long} The corresponding Long value. + */ + goog.math.Long.fromString = function(str, opt_radix) { + if (str.length == 0) { + throw Error('number format error: empty string'); + } + + var radix = opt_radix || 10; + if (radix < 2 || 36 < radix) { + throw Error('radix out of range: ' + radix); + } + + if (str.charAt(0) == '-') { + return goog.math.Long.fromString(str.substring(1), radix).negate(); + } else if (str.indexOf('-') >= 0) { + throw Error('number format error: interior "-" character: ' + str); + } + + // Do several (8) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + var radixToPower = goog.math.Long.fromNumber(Math.pow(radix, 8)); + + var result = goog.math.Long.ZERO; + for (var i = 0; i < str.length; i += 8) { + var size = Math.min(8, str.length - i); + var value = parseInt(str.substring(i, i + size), radix); + if (size < 8) { + var power = goog.math.Long.fromNumber(Math.pow(radix, size)); + result = result.multiply(power).add(goog.math.Long.fromNumber(value)); + } else { + result = result.multiply(radixToPower); + result = result.add(goog.math.Long.fromNumber(value)); + } + } + return result; + }; + + + // NOTE: the compiler should inline these constant values below and then remove + // these variables, so there should be no runtime penalty for these. + + + /** + * Number used repeated below in calculations. This must appear before the + * first call to any from* function below. + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_16_DBL_ = 1 << 16; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_24_DBL_ = 1 << 24; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_32_DBL_ = + goog.math.Long.TWO_PWR_16_DBL_ * goog.math.Long.TWO_PWR_16_DBL_; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_31_DBL_ = + goog.math.Long.TWO_PWR_32_DBL_ / 2; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_48_DBL_ = + goog.math.Long.TWO_PWR_32_DBL_ * goog.math.Long.TWO_PWR_16_DBL_; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_64_DBL_ = + goog.math.Long.TWO_PWR_32_DBL_ * goog.math.Long.TWO_PWR_32_DBL_; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_63_DBL_ = + goog.math.Long.TWO_PWR_64_DBL_ / 2; + + + /** @type {!goog.math.Long} */ + goog.math.Long.ZERO = goog.math.Long.fromInt(0); + + + /** @type {!goog.math.Long} */ + goog.math.Long.ONE = goog.math.Long.fromInt(1); + + + /** @type {!goog.math.Long} */ + goog.math.Long.NEG_ONE = goog.math.Long.fromInt(-1); + + + /** @type {!goog.math.Long} */ + goog.math.Long.MAX_VALUE = + goog.math.Long.fromBits(0xFFFFFFFF | 0, 0x7FFFFFFF | 0); + + + /** @type {!goog.math.Long} */ + goog.math.Long.MIN_VALUE = goog.math.Long.fromBits(0, 0x80000000 | 0); + + + /** + * @type {!goog.math.Long} + * @private + */ + goog.math.Long.TWO_PWR_24_ = goog.math.Long.fromInt(1 << 24); + + + /** @return {number} The value, assuming it is a 32-bit integer. */ + goog.math.Long.prototype.toInt = function() { + return this.low_; + }; + + + /** @return {number} The closest floating-point representation to this value. */ + goog.math.Long.prototype.toNumber = function() { + return this.high_ * goog.math.Long.TWO_PWR_32_DBL_ + + this.getLowBitsUnsigned(); + }; + + + /** + * @param {number=} opt_radix The radix in which the text should be written. + * @return {string} The textual representation of this value. + */ + goog.math.Long.prototype.toString = function(opt_radix) { + var radix = opt_radix || 10; + if (radix < 2 || 36 < radix) { + throw Error('radix out of range: ' + radix); + } + + if (this.isZero()) { + return '0'; + } + + if (this.isNegative()) { + if (this.equals(goog.math.Long.MIN_VALUE)) { + // We need to change the Long value before it can be negated, so we remove + // the bottom-most digit in this base and then recurse to do the rest. + var radixLong = goog.math.Long.fromNumber(radix); + var div = this.div(radixLong); + var rem = div.multiply(radixLong).subtract(this); + return div.toString(radix) + rem.toInt().toString(radix); + } else { + return '-' + this.negate().toString(radix); + } + } + + // Do several (6) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + var radixToPower = goog.math.Long.fromNumber(Math.pow(radix, 6)); + + var rem = this; + var result = ''; + while (true) { + var remDiv = rem.div(radixToPower); + var intval = rem.subtract(remDiv.multiply(radixToPower)).toInt(); + var digits = intval.toString(radix); + + rem = remDiv; + if (rem.isZero()) { + return digits + result; + } else { + while (digits.length < 6) { + digits = '0' + digits; + } + result = '' + digits + result; + } + } + }; + + + /** @return {number} The high 32-bits as a signed value. */ + goog.math.Long.prototype.getHighBits = function() { + return this.high_; + }; + + + /** @return {number} The low 32-bits as a signed value. */ + goog.math.Long.prototype.getLowBits = function() { + return this.low_; + }; + + + /** @return {number} The low 32-bits as an unsigned value. */ + goog.math.Long.prototype.getLowBitsUnsigned = function() { + return (this.low_ >= 0) ? + this.low_ : goog.math.Long.TWO_PWR_32_DBL_ + this.low_; + }; + + + /** + * @return {number} Returns the number of bits needed to represent the absolute + * value of this Long. + */ + goog.math.Long.prototype.getNumBitsAbs = function() { + if (this.isNegative()) { + if (this.equals(goog.math.Long.MIN_VALUE)) { + return 64; + } else { + return this.negate().getNumBitsAbs(); + } + } else { + var val = this.high_ != 0 ? this.high_ : this.low_; + for (var bit = 31; bit > 0; bit--) { + if ((val & (1 << bit)) != 0) { + break; + } + } + return this.high_ != 0 ? bit + 33 : bit + 1; + } + }; + + + /** @return {boolean} Whether this value is zero. */ + goog.math.Long.prototype.isZero = function() { + return this.high_ == 0 && this.low_ == 0; + }; + + + /** @return {boolean} Whether this value is negative. */ + goog.math.Long.prototype.isNegative = function() { + return this.high_ < 0; + }; + + + /** @return {boolean} Whether this value is odd. */ + goog.math.Long.prototype.isOdd = function() { + return (this.low_ & 1) == 1; + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long equals the other. + */ + goog.math.Long.prototype.equals = function(other) { + return (this.high_ == other.high_) && (this.low_ == other.low_); + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long does not equal the other. + */ + goog.math.Long.prototype.notEquals = function(other) { + return (this.high_ != other.high_) || (this.low_ != other.low_); + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long is less than the other. + */ + goog.math.Long.prototype.lessThan = function(other) { + return this.compare(other) < 0; + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long is less than or equal to the other. + */ + goog.math.Long.prototype.lessThanOrEqual = function(other) { + return this.compare(other) <= 0; + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long is greater than the other. + */ + goog.math.Long.prototype.greaterThan = function(other) { + return this.compare(other) > 0; + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long is greater than or equal to the other. + */ + goog.math.Long.prototype.greaterThanOrEqual = function(other) { + return this.compare(other) >= 0; + }; + + + /** + * Compares this Long with the given one. + * @param {goog.math.Long} other Long to compare against. + * @return {number} 0 if they are the same, 1 if the this is greater, and -1 + * if the given one is greater. + */ + goog.math.Long.prototype.compare = function(other) { + if (this.equals(other)) { + return 0; + } + + var thisNeg = this.isNegative(); + var otherNeg = other.isNegative(); + if (thisNeg && !otherNeg) { + return -1; + } + if (!thisNeg && otherNeg) { + return 1; + } + + // at this point, the signs are the same, so subtraction will not overflow + if (this.subtract(other).isNegative()) { + return -1; + } else { + return 1; + } + }; + + + /** @return {!goog.math.Long} The negation of this value. */ + goog.math.Long.prototype.negate = function() { + if (this.equals(goog.math.Long.MIN_VALUE)) { + return goog.math.Long.MIN_VALUE; + } else { + return this.not().add(goog.math.Long.ONE); + } + }; + + + /** + * Returns the sum of this and the given Long. + * @param {goog.math.Long} other Long to add to this one. + * @return {!goog.math.Long} The sum of this and the given Long. + */ + goog.math.Long.prototype.add = function(other) { + // Divide each number into 4 chunks of 16 bits, and then sum the chunks. + + var a48 = this.high_ >>> 16; + var a32 = this.high_ & 0xFFFF; + var a16 = this.low_ >>> 16; + var a00 = this.low_ & 0xFFFF; + + var b48 = other.high_ >>> 16; + var b32 = other.high_ & 0xFFFF; + var b16 = other.low_ >>> 16; + var b00 = other.low_ & 0xFFFF; + + var c48 = 0, c32 = 0, c16 = 0, c00 = 0; + c00 += a00 + b00; + c16 += c00 >>> 16; + c00 &= 0xFFFF; + c16 += a16 + b16; + c32 += c16 >>> 16; + c16 &= 0xFFFF; + c32 += a32 + b32; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c48 += a48 + b48; + c48 &= 0xFFFF; + return goog.math.Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32); + }; + + + /** + * Returns the difference of this and the given Long. + * @param {goog.math.Long} other Long to subtract from this. + * @return {!goog.math.Long} The difference of this and the given Long. + */ + goog.math.Long.prototype.subtract = function(other) { + return this.add(other.negate()); + }; + + + /** + * Returns the product of this and the given long. + * @param {goog.math.Long} other Long to multiply with this. + * @return {!goog.math.Long} The product of this and the other. + */ + goog.math.Long.prototype.multiply = function(other) { + if (this.isZero()) { + return goog.math.Long.ZERO; + } else if (other.isZero()) { + return goog.math.Long.ZERO; + } + + if (this.equals(goog.math.Long.MIN_VALUE)) { + return other.isOdd() ? goog.math.Long.MIN_VALUE : goog.math.Long.ZERO; + } else if (other.equals(goog.math.Long.MIN_VALUE)) { + return this.isOdd() ? goog.math.Long.MIN_VALUE : goog.math.Long.ZERO; + } + + if (this.isNegative()) { + if (other.isNegative()) { + return this.negate().multiply(other.negate()); + } else { + return this.negate().multiply(other).negate(); + } + } else if (other.isNegative()) { + return this.multiply(other.negate()).negate(); + } + + // If both longs are small, use float multiplication + if (this.lessThan(goog.math.Long.TWO_PWR_24_) && + other.lessThan(goog.math.Long.TWO_PWR_24_)) { + return goog.math.Long.fromNumber(this.toNumber() * other.toNumber()); + } + + // Divide each long into 4 chunks of 16 bits, and then add up 4x4 products. + // We can skip products that would overflow. + + var a48 = this.high_ >>> 16; + var a32 = this.high_ & 0xFFFF; + var a16 = this.low_ >>> 16; + var a00 = this.low_ & 0xFFFF; + + var b48 = other.high_ >>> 16; + var b32 = other.high_ & 0xFFFF; + var b16 = other.low_ >>> 16; + var b00 = other.low_ & 0xFFFF; + + var c48 = 0, c32 = 0, c16 = 0, c00 = 0; + c00 += a00 * b00; + c16 += c00 >>> 16; + c00 &= 0xFFFF; + c16 += a16 * b00; + c32 += c16 >>> 16; + c16 &= 0xFFFF; + c16 += a00 * b16; + c32 += c16 >>> 16; + c16 &= 0xFFFF; + c32 += a32 * b00; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c32 += a16 * b16; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c32 += a00 * b32; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c48 += a48 * b00 + a32 * b16 + a16 * b32 + a00 * b48; + c48 &= 0xFFFF; + return goog.math.Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32); + }; + + + /** + * Returns this Long divided by the given one. + * @param {goog.math.Long} other Long by which to divide. + * @return {!goog.math.Long} This Long divided by the given one. + */ + goog.math.Long.prototype.div = function(other) { + if (other.isZero()) { + throw Error('division by zero'); + } else if (this.isZero()) { + return goog.math.Long.ZERO; + } + + if (this.equals(goog.math.Long.MIN_VALUE)) { + if (other.equals(goog.math.Long.ONE) || + other.equals(goog.math.Long.NEG_ONE)) { + return goog.math.Long.MIN_VALUE; // recall that -MIN_VALUE == MIN_VALUE + } else if (other.equals(goog.math.Long.MIN_VALUE)) { + return goog.math.Long.ONE; + } else { + // At this point, we have |other| >= 2, so |this/other| < |MIN_VALUE|. + var halfThis = this.shiftRight(1); + var approx = halfThis.div(other).shiftLeft(1); + if (approx.equals(goog.math.Long.ZERO)) { + return other.isNegative() ? goog.math.Long.ONE : goog.math.Long.NEG_ONE; + } else { + var rem = this.subtract(other.multiply(approx)); + var result = approx.add(rem.div(other)); + return result; + } + } + } else if (other.equals(goog.math.Long.MIN_VALUE)) { + return goog.math.Long.ZERO; + } + + if (this.isNegative()) { + if (other.isNegative()) { + return this.negate().div(other.negate()); + } else { + return this.negate().div(other).negate(); + } + } else if (other.isNegative()) { + return this.div(other.negate()).negate(); + } + + // Repeat the following until the remainder is less than other: find a + // floating-point that approximates remainder / other *from below*, add this + // into the result, and subtract it from the remainder. It is critical that + // the approximate value is less than or equal to the real value so that the + // remainder never becomes negative. + var res = goog.math.Long.ZERO; + var rem = this; + while (rem.greaterThanOrEqual(other)) { + // Approximate the result of division. This may be a little greater or + // smaller than the actual value. + var approx = Math.max(1, Math.floor(rem.toNumber() / other.toNumber())); + + // We will tweak the approximate result by changing it in the 48-th digit or + // the smallest non-fractional digit, whichever is larger. + var log2 = Math.ceil(Math.log(approx) / Math.LN2); + var delta = (log2 <= 48) ? 1 : Math.pow(2, log2 - 48); + + // Decrease the approximation until it is smaller than the remainder. Note + // that if it is too large, the product overflows and is negative. + var approxRes = goog.math.Long.fromNumber(approx); + var approxRem = approxRes.multiply(other); + while (approxRem.isNegative() || approxRem.greaterThan(rem)) { + approx -= delta; + approxRes = goog.math.Long.fromNumber(approx); + approxRem = approxRes.multiply(other); + } + + // We know the answer can't be zero... and actually, zero would cause + // infinite recursion since we would make no progress. + if (approxRes.isZero()) { + approxRes = goog.math.Long.ONE; + } + + res = res.add(approxRes); + rem = rem.subtract(approxRem); + } + return res; + }; + + + /** + * Returns this Long modulo the given one. + * @param {goog.math.Long} other Long by which to mod. + * @return {!goog.math.Long} This Long modulo the given one. + */ + goog.math.Long.prototype.modulo = function(other) { + return this.subtract(this.div(other).multiply(other)); + }; + + + /** @return {!goog.math.Long} The bitwise-NOT of this value. */ + goog.math.Long.prototype.not = function() { + return goog.math.Long.fromBits(~this.low_, ~this.high_); + }; + + + /** + * Returns the bitwise-AND of this Long and the given one. + * @param {goog.math.Long} other The Long with which to AND. + * @return {!goog.math.Long} The bitwise-AND of this and the other. + */ + goog.math.Long.prototype.and = function(other) { + return goog.math.Long.fromBits(this.low_ & other.low_, + this.high_ & other.high_); + }; + + + /** + * Returns the bitwise-OR of this Long and the given one. + * @param {goog.math.Long} other The Long with which to OR. + * @return {!goog.math.Long} The bitwise-OR of this and the other. + */ + goog.math.Long.prototype.or = function(other) { + return goog.math.Long.fromBits(this.low_ | other.low_, + this.high_ | other.high_); + }; + + + /** + * Returns the bitwise-XOR of this Long and the given one. + * @param {goog.math.Long} other The Long with which to XOR. + * @return {!goog.math.Long} The bitwise-XOR of this and the other. + */ + goog.math.Long.prototype.xor = function(other) { + return goog.math.Long.fromBits(this.low_ ^ other.low_, + this.high_ ^ other.high_); + }; + + + /** + * Returns this Long with bits shifted to the left by the given amount. + * @param {number} numBits The number of bits by which to shift. + * @return {!goog.math.Long} This shifted to the left by the given amount. + */ + goog.math.Long.prototype.shiftLeft = function(numBits) { + numBits &= 63; + if (numBits == 0) { + return this; + } else { + var low = this.low_; + if (numBits < 32) { + var high = this.high_; + return goog.math.Long.fromBits( + low << numBits, + (high << numBits) | (low >>> (32 - numBits))); + } else { + return goog.math.Long.fromBits(0, low << (numBits - 32)); + } + } + }; + + + /** + * Returns this Long with bits shifted to the right by the given amount. + * @param {number} numBits The number of bits by which to shift. + * @return {!goog.math.Long} This shifted to the right by the given amount. + */ + goog.math.Long.prototype.shiftRight = function(numBits) { + numBits &= 63; + if (numBits == 0) { + return this; + } else { + var high = this.high_; + if (numBits < 32) { + var low = this.low_; + return goog.math.Long.fromBits( + (low >>> numBits) | (high << (32 - numBits)), + high >> numBits); + } else { + return goog.math.Long.fromBits( + high >> (numBits - 32), + high >= 0 ? 0 : -1); + } + } + }; + + + /** + * Returns this Long with bits shifted to the right by the given amount, with + * the new top bits matching the current sign bit. + * @param {number} numBits The number of bits by which to shift. + * @return {!goog.math.Long} This shifted to the right by the given amount, with + * zeros placed into the new leading bits. + */ + goog.math.Long.prototype.shiftRightUnsigned = function(numBits) { + numBits &= 63; + if (numBits == 0) { + return this; + } else { + var high = this.high_; + if (numBits < 32) { + var low = this.low_; + return goog.math.Long.fromBits( + (low >>> numBits) | (high << (32 - numBits)), + high >>> numBits); + } else if (numBits == 32) { + return goog.math.Long.fromBits(high, 0); + } else { + return goog.math.Long.fromBits(high >>> (numBits - 32), 0); + } + } + }; + + //======= begin jsbn ======= + + var navigator = { appName: 'Modern Browser' }; // polyfill a little + + // Copyright (c) 2005 Tom Wu + // All Rights Reserved. + // http://www-cs-students.stanford.edu/~tjw/jsbn/ + + /* + * Copyright (c) 2003-2005 Tom Wu + * All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, + * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY + * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + * + * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, + * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER + * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF + * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT + * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * In addition, the following condition applies: + * + * All redistributions must retain an intact copy of this copyright notice + * and disclaimer. + */ + + // Basic JavaScript BN library - subset useful for RSA encryption. + + // Bits per digit + var dbits; + + // JavaScript engine analysis + var canary = 0xdeadbeefcafe; + var j_lm = ((canary&0xffffff)==0xefcafe); + + // (public) Constructor + function BigInteger(a,b,c) { + if(a != null) + if("number" == typeof a) this.fromNumber(a,b,c); + else if(b == null && "string" != typeof a) this.fromString(a,256); + else this.fromString(a,b); + } + + // return new, unset BigInteger + function nbi() { return new BigInteger(null); } + + // am: Compute w_j += (x*this_i), propagate carries, + // c is initial carry, returns final carry. + // c < 3*dvalue, x < 2*dvalue, this_i < dvalue + // We need to select the fastest one that works in this environment. + + // am1: use a single mult and divide to get the high bits, + // max digit bits should be 26 because + // max internal value = 2*dvalue^2-2*dvalue (< 2^53) + function am1(i,x,w,j,c,n) { + while(--n >= 0) { + var v = x*this[i++]+w[j]+c; + c = Math.floor(v/0x4000000); + w[j++] = v&0x3ffffff; + } + return c; + } + // am2 avoids a big mult-and-extract completely. + // Max digit bits should be <= 30 because we do bitwise ops + // on values up to 2*hdvalue^2-hdvalue-1 (< 2^31) + function am2(i,x,w,j,c,n) { + var xl = x&0x7fff, xh = x>>15; + while(--n >= 0) { + var l = this[i]&0x7fff; + var h = this[i++]>>15; + var m = xh*l+h*xl; + l = xl*l+((m&0x7fff)<<15)+w[j]+(c&0x3fffffff); + c = (l>>>30)+(m>>>15)+xh*h+(c>>>30); + w[j++] = l&0x3fffffff; + } + return c; + } + // Alternately, set max digit bits to 28 since some + // browsers slow down when dealing with 32-bit numbers. + function am3(i,x,w,j,c,n) { + var xl = x&0x3fff, xh = x>>14; + while(--n >= 0) { + var l = this[i]&0x3fff; + var h = this[i++]>>14; + var m = xh*l+h*xl; + l = xl*l+((m&0x3fff)<<14)+w[j]+c; + c = (l>>28)+(m>>14)+xh*h; + w[j++] = l&0xfffffff; + } + return c; + } + if(j_lm && (navigator.appName == "Microsoft Internet Explorer")) { + BigInteger.prototype.am = am2; + dbits = 30; + } + else if(j_lm && (navigator.appName != "Netscape")) { + BigInteger.prototype.am = am1; + dbits = 26; + } + else { // Mozilla/Netscape seems to prefer am3 + BigInteger.prototype.am = am3; + dbits = 28; + } + + BigInteger.prototype.DB = dbits; + BigInteger.prototype.DM = ((1<= 0; --i) r[i] = this[i]; + r.t = this.t; + r.s = this.s; + } + + // (protected) set from integer value x, -DV <= x < DV + function bnpFromInt(x) { + this.t = 1; + this.s = (x<0)?-1:0; + if(x > 0) this[0] = x; + else if(x < -1) this[0] = x+DV; + else this.t = 0; + } + + // return bigint initialized to value + function nbv(i) { var r = nbi(); r.fromInt(i); return r; } + + // (protected) set from string and radix + function bnpFromString(s,b) { + var k; + if(b == 16) k = 4; + else if(b == 8) k = 3; + else if(b == 256) k = 8; // byte array + else if(b == 2) k = 1; + else if(b == 32) k = 5; + else if(b == 4) k = 2; + else { this.fromRadix(s,b); return; } + this.t = 0; + this.s = 0; + var i = s.length, mi = false, sh = 0; + while(--i >= 0) { + var x = (k==8)?s[i]&0xff:intAt(s,i); + if(x < 0) { + if(s.charAt(i) == "-") mi = true; + continue; + } + mi = false; + if(sh == 0) + this[this.t++] = x; + else if(sh+k > this.DB) { + this[this.t-1] |= (x&((1<<(this.DB-sh))-1))<>(this.DB-sh)); + } + else + this[this.t-1] |= x<= this.DB) sh -= this.DB; + } + if(k == 8 && (s[0]&0x80) != 0) { + this.s = -1; + if(sh > 0) this[this.t-1] |= ((1<<(this.DB-sh))-1)< 0 && this[this.t-1] == c) --this.t; + } + + // (public) return string representation in given radix + function bnToString(b) { + if(this.s < 0) return "-"+this.negate().toString(b); + var k; + if(b == 16) k = 4; + else if(b == 8) k = 3; + else if(b == 2) k = 1; + else if(b == 32) k = 5; + else if(b == 4) k = 2; + else return this.toRadix(b); + var km = (1< 0) { + if(p < this.DB && (d = this[i]>>p) > 0) { m = true; r = int2char(d); } + while(i >= 0) { + if(p < k) { + d = (this[i]&((1<>(p+=this.DB-k); + } + else { + d = (this[i]>>(p-=k))&km; + if(p <= 0) { p += this.DB; --i; } + } + if(d > 0) m = true; + if(m) r += int2char(d); + } + } + return m?r:"0"; + } + + // (public) -this + function bnNegate() { var r = nbi(); BigInteger.ZERO.subTo(this,r); return r; } + + // (public) |this| + function bnAbs() { return (this.s<0)?this.negate():this; } + + // (public) return + if this > a, - if this < a, 0 if equal + function bnCompareTo(a) { + var r = this.s-a.s; + if(r != 0) return r; + var i = this.t; + r = i-a.t; + if(r != 0) return (this.s<0)?-r:r; + while(--i >= 0) if((r=this[i]-a[i]) != 0) return r; + return 0; + } + + // returns bit length of the integer x + function nbits(x) { + var r = 1, t; + if((t=x>>>16) != 0) { x = t; r += 16; } + if((t=x>>8) != 0) { x = t; r += 8; } + if((t=x>>4) != 0) { x = t; r += 4; } + if((t=x>>2) != 0) { x = t; r += 2; } + if((t=x>>1) != 0) { x = t; r += 1; } + return r; + } + + // (public) return the number of bits in "this" + function bnBitLength() { + if(this.t <= 0) return 0; + return this.DB*(this.t-1)+nbits(this[this.t-1]^(this.s&this.DM)); + } + + // (protected) r = this << n*DB + function bnpDLShiftTo(n,r) { + var i; + for(i = this.t-1; i >= 0; --i) r[i+n] = this[i]; + for(i = n-1; i >= 0; --i) r[i] = 0; + r.t = this.t+n; + r.s = this.s; + } + + // (protected) r = this >> n*DB + function bnpDRShiftTo(n,r) { + for(var i = n; i < this.t; ++i) r[i-n] = this[i]; + r.t = Math.max(this.t-n,0); + r.s = this.s; + } + + // (protected) r = this << n + function bnpLShiftTo(n,r) { + var bs = n%this.DB; + var cbs = this.DB-bs; + var bm = (1<= 0; --i) { + r[i+ds+1] = (this[i]>>cbs)|c; + c = (this[i]&bm)<= 0; --i) r[i] = 0; + r[ds] = c; + r.t = this.t+ds+1; + r.s = this.s; + r.clamp(); + } + + // (protected) r = this >> n + function bnpRShiftTo(n,r) { + r.s = this.s; + var ds = Math.floor(n/this.DB); + if(ds >= this.t) { r.t = 0; return; } + var bs = n%this.DB; + var cbs = this.DB-bs; + var bm = (1<>bs; + for(var i = ds+1; i < this.t; ++i) { + r[i-ds-1] |= (this[i]&bm)<>bs; + } + if(bs > 0) r[this.t-ds-1] |= (this.s&bm)<>= this.DB; + } + if(a.t < this.t) { + c -= a.s; + while(i < this.t) { + c += this[i]; + r[i++] = c&this.DM; + c >>= this.DB; + } + c += this.s; + } + else { + c += this.s; + while(i < a.t) { + c -= a[i]; + r[i++] = c&this.DM; + c >>= this.DB; + } + c -= a.s; + } + r.s = (c<0)?-1:0; + if(c < -1) r[i++] = this.DV+c; + else if(c > 0) r[i++] = c; + r.t = i; + r.clamp(); + } + + // (protected) r = this * a, r != this,a (HAC 14.12) + // "this" should be the larger one if appropriate. + function bnpMultiplyTo(a,r) { + var x = this.abs(), y = a.abs(); + var i = x.t; + r.t = i+y.t; + while(--i >= 0) r[i] = 0; + for(i = 0; i < y.t; ++i) r[i+x.t] = x.am(0,y[i],r,i,0,x.t); + r.s = 0; + r.clamp(); + if(this.s != a.s) BigInteger.ZERO.subTo(r,r); + } + + // (protected) r = this^2, r != this (HAC 14.16) + function bnpSquareTo(r) { + var x = this.abs(); + var i = r.t = 2*x.t; + while(--i >= 0) r[i] = 0; + for(i = 0; i < x.t-1; ++i) { + var c = x.am(i,x[i],r,2*i,0,1); + if((r[i+x.t]+=x.am(i+1,2*x[i],r,2*i+1,c,x.t-i-1)) >= x.DV) { + r[i+x.t] -= x.DV; + r[i+x.t+1] = 1; + } + } + if(r.t > 0) r[r.t-1] += x.am(i,x[i],r,2*i,0,1); + r.s = 0; + r.clamp(); + } + + // (protected) divide this by m, quotient and remainder to q, r (HAC 14.20) + // r != q, this != m. q or r may be null. + function bnpDivRemTo(m,q,r) { + var pm = m.abs(); + if(pm.t <= 0) return; + var pt = this.abs(); + if(pt.t < pm.t) { + if(q != null) q.fromInt(0); + if(r != null) this.copyTo(r); + return; + } + if(r == null) r = nbi(); + var y = nbi(), ts = this.s, ms = m.s; + var nsh = this.DB-nbits(pm[pm.t-1]); // normalize modulus + if(nsh > 0) { pm.lShiftTo(nsh,y); pt.lShiftTo(nsh,r); } + else { pm.copyTo(y); pt.copyTo(r); } + var ys = y.t; + var y0 = y[ys-1]; + if(y0 == 0) return; + var yt = y0*(1<1)?y[ys-2]>>this.F2:0); + var d1 = this.FV/yt, d2 = (1<= 0) { + r[r.t++] = 1; + r.subTo(t,r); + } + BigInteger.ONE.dlShiftTo(ys,t); + t.subTo(y,y); // "negative" y so we can replace sub with am later + while(y.t < ys) y[y.t++] = 0; + while(--j >= 0) { + // Estimate quotient digit + var qd = (r[--i]==y0)?this.DM:Math.floor(r[i]*d1+(r[i-1]+e)*d2); + if((r[i]+=y.am(0,qd,r,j,0,ys)) < qd) { // Try it out + y.dlShiftTo(j,t); + r.subTo(t,r); + while(r[i] < --qd) r.subTo(t,r); + } + } + if(q != null) { + r.drShiftTo(ys,q); + if(ts != ms) BigInteger.ZERO.subTo(q,q); + } + r.t = ys; + r.clamp(); + if(nsh > 0) r.rShiftTo(nsh,r); // Denormalize remainder + if(ts < 0) BigInteger.ZERO.subTo(r,r); + } + + // (public) this mod a + function bnMod(a) { + var r = nbi(); + this.abs().divRemTo(a,null,r); + if(this.s < 0 && r.compareTo(BigInteger.ZERO) > 0) a.subTo(r,r); + return r; + } + + // Modular reduction using "classic" algorithm + function Classic(m) { this.m = m; } + function cConvert(x) { + if(x.s < 0 || x.compareTo(this.m) >= 0) return x.mod(this.m); + else return x; + } + function cRevert(x) { return x; } + function cReduce(x) { x.divRemTo(this.m,null,x); } + function cMulTo(x,y,r) { x.multiplyTo(y,r); this.reduce(r); } + function cSqrTo(x,r) { x.squareTo(r); this.reduce(r); } + + Classic.prototype.convert = cConvert; + Classic.prototype.revert = cRevert; + Classic.prototype.reduce = cReduce; + Classic.prototype.mulTo = cMulTo; + Classic.prototype.sqrTo = cSqrTo; + + // (protected) return "-1/this % 2^DB"; useful for Mont. reduction + // justification: + // xy == 1 (mod m) + // xy = 1+km + // xy(2-xy) = (1+km)(1-km) + // x[y(2-xy)] = 1-k^2m^2 + // x[y(2-xy)] == 1 (mod m^2) + // if y is 1/x mod m, then y(2-xy) is 1/x mod m^2 + // should reduce x and y(2-xy) by m^2 at each step to keep size bounded. + // JS multiply "overflows" differently from C/C++, so care is needed here. + function bnpInvDigit() { + if(this.t < 1) return 0; + var x = this[0]; + if((x&1) == 0) return 0; + var y = x&3; // y == 1/x mod 2^2 + y = (y*(2-(x&0xf)*y))&0xf; // y == 1/x mod 2^4 + y = (y*(2-(x&0xff)*y))&0xff; // y == 1/x mod 2^8 + y = (y*(2-(((x&0xffff)*y)&0xffff)))&0xffff; // y == 1/x mod 2^16 + // last step - calculate inverse mod DV directly; + // assumes 16 < DB <= 32 and assumes ability to handle 48-bit ints + y = (y*(2-x*y%this.DV))%this.DV; // y == 1/x mod 2^dbits + // we really want the negative inverse, and -DV < y < DV + return (y>0)?this.DV-y:-y; + } + + // Montgomery reduction + function Montgomery(m) { + this.m = m; + this.mp = m.invDigit(); + this.mpl = this.mp&0x7fff; + this.mph = this.mp>>15; + this.um = (1<<(m.DB-15))-1; + this.mt2 = 2*m.t; + } + + // xR mod m + function montConvert(x) { + var r = nbi(); + x.abs().dlShiftTo(this.m.t,r); + r.divRemTo(this.m,null,r); + if(x.s < 0 && r.compareTo(BigInteger.ZERO) > 0) this.m.subTo(r,r); + return r; + } + + // x/R mod m + function montRevert(x) { + var r = nbi(); + x.copyTo(r); + this.reduce(r); + return r; + } + + // x = x/R mod m (HAC 14.32) + function montReduce(x) { + while(x.t <= this.mt2) // pad x so am has enough room later + x[x.t++] = 0; + for(var i = 0; i < this.m.t; ++i) { + // faster way of calculating u0 = x[i]*mp mod DV + var j = x[i]&0x7fff; + var u0 = (j*this.mpl+(((j*this.mph+(x[i]>>15)*this.mpl)&this.um)<<15))&x.DM; + // use am to combine the multiply-shift-add into one call + j = i+this.m.t; + x[j] += this.m.am(0,u0,x,i,0,this.m.t); + // propagate carry + while(x[j] >= x.DV) { x[j] -= x.DV; x[++j]++; } + } + x.clamp(); + x.drShiftTo(this.m.t,x); + if(x.compareTo(this.m) >= 0) x.subTo(this.m,x); + } + + // r = "x^2/R mod m"; x != r + function montSqrTo(x,r) { x.squareTo(r); this.reduce(r); } + + // r = "xy/R mod m"; x,y != r + function montMulTo(x,y,r) { x.multiplyTo(y,r); this.reduce(r); } + + Montgomery.prototype.convert = montConvert; + Montgomery.prototype.revert = montRevert; + Montgomery.prototype.reduce = montReduce; + Montgomery.prototype.mulTo = montMulTo; + Montgomery.prototype.sqrTo = montSqrTo; + + // (protected) true iff this is even + function bnpIsEven() { return ((this.t>0)?(this[0]&1):this.s) == 0; } + + // (protected) this^e, e < 2^32, doing sqr and mul with "r" (HAC 14.79) + function bnpExp(e,z) { + if(e > 0xffffffff || e < 1) return BigInteger.ONE; + var r = nbi(), r2 = nbi(), g = z.convert(this), i = nbits(e)-1; + g.copyTo(r); + while(--i >= 0) { + z.sqrTo(r,r2); + if((e&(1< 0) z.mulTo(r2,g,r); + else { var t = r; r = r2; r2 = t; } + } + return z.revert(r); + } + + // (public) this^e % m, 0 <= e < 2^32 + function bnModPowInt(e,m) { + var z; + if(e < 256 || m.isEven()) z = new Classic(m); else z = new Montgomery(m); + return this.exp(e,z); + } + + // protected + BigInteger.prototype.copyTo = bnpCopyTo; + BigInteger.prototype.fromInt = bnpFromInt; + BigInteger.prototype.fromString = bnpFromString; + BigInteger.prototype.clamp = bnpClamp; + BigInteger.prototype.dlShiftTo = bnpDLShiftTo; + BigInteger.prototype.drShiftTo = bnpDRShiftTo; + BigInteger.prototype.lShiftTo = bnpLShiftTo; + BigInteger.prototype.rShiftTo = bnpRShiftTo; + BigInteger.prototype.subTo = bnpSubTo; + BigInteger.prototype.multiplyTo = bnpMultiplyTo; + BigInteger.prototype.squareTo = bnpSquareTo; + BigInteger.prototype.divRemTo = bnpDivRemTo; + BigInteger.prototype.invDigit = bnpInvDigit; + BigInteger.prototype.isEven = bnpIsEven; + BigInteger.prototype.exp = bnpExp; + + // public + BigInteger.prototype.toString = bnToString; + BigInteger.prototype.negate = bnNegate; + BigInteger.prototype.abs = bnAbs; + BigInteger.prototype.compareTo = bnCompareTo; + BigInteger.prototype.bitLength = bnBitLength; + BigInteger.prototype.mod = bnMod; + BigInteger.prototype.modPowInt = bnModPowInt; + + // "constants" + BigInteger.ZERO = nbv(0); + BigInteger.ONE = nbv(1); + + // jsbn2 stuff + + // (protected) convert from radix string + function bnpFromRadix(s,b) { + this.fromInt(0); + if(b == null) b = 10; + var cs = this.chunkSize(b); + var d = Math.pow(b,cs), mi = false, j = 0, w = 0; + for(var i = 0; i < s.length; ++i) { + var x = intAt(s,i); + if(x < 0) { + if(s.charAt(i) == "-" && this.signum() == 0) mi = true; + continue; + } + w = b*w+x; + if(++j >= cs) { + this.dMultiply(d); + this.dAddOffset(w,0); + j = 0; + w = 0; + } + } + if(j > 0) { + this.dMultiply(Math.pow(b,j)); + this.dAddOffset(w,0); + } + if(mi) BigInteger.ZERO.subTo(this,this); + } + + // (protected) return x s.t. r^x < DV + function bnpChunkSize(r) { return Math.floor(Math.LN2*this.DB/Math.log(r)); } + + // (public) 0 if this == 0, 1 if this > 0 + function bnSigNum() { + if(this.s < 0) return -1; + else if(this.t <= 0 || (this.t == 1 && this[0] <= 0)) return 0; + else return 1; + } + + // (protected) this *= n, this >= 0, 1 < n < DV + function bnpDMultiply(n) { + this[this.t] = this.am(0,n-1,this,0,0,this.t); + ++this.t; + this.clamp(); + } + + // (protected) this += n << w words, this >= 0 + function bnpDAddOffset(n,w) { + if(n == 0) return; + while(this.t <= w) this[this.t++] = 0; + this[w] += n; + while(this[w] >= this.DV) { + this[w] -= this.DV; + if(++w >= this.t) this[this.t++] = 0; + ++this[w]; + } + } + + // (protected) convert to radix string + function bnpToRadix(b) { + if(b == null) b = 10; + if(this.signum() == 0 || b < 2 || b > 36) return "0"; + var cs = this.chunkSize(b); + var a = Math.pow(b,cs); + var d = nbv(a), y = nbi(), z = nbi(), r = ""; + this.divRemTo(d,y,z); + while(y.signum() > 0) { + r = (a+z.intValue()).toString(b).substr(1) + r; + y.divRemTo(d,y,z); + } + return z.intValue().toString(b) + r; + } + + // (public) return value as integer + function bnIntValue() { + if(this.s < 0) { + if(this.t == 1) return this[0]-this.DV; + else if(this.t == 0) return -1; + } + else if(this.t == 1) return this[0]; + else if(this.t == 0) return 0; + // assumes 16 < DB < 32 + return ((this[1]&((1<<(32-this.DB))-1))<>= this.DB; + } + if(a.t < this.t) { + c += a.s; + while(i < this.t) { + c += this[i]; + r[i++] = c&this.DM; + c >>= this.DB; + } + c += this.s; + } + else { + c += this.s; + while(i < a.t) { + c += a[i]; + r[i++] = c&this.DM; + c >>= this.DB; + } + c += a.s; + } + r.s = (c<0)?-1:0; + if(c > 0) r[i++] = c; + else if(c < -1) r[i++] = this.DV+c; + r.t = i; + r.clamp(); + } + + BigInteger.prototype.fromRadix = bnpFromRadix; + BigInteger.prototype.chunkSize = bnpChunkSize; + BigInteger.prototype.signum = bnSigNum; + BigInteger.prototype.dMultiply = bnpDMultiply; + BigInteger.prototype.dAddOffset = bnpDAddOffset; + BigInteger.prototype.toRadix = bnpToRadix; + BigInteger.prototype.intValue = bnIntValue; + BigInteger.prototype.addTo = bnpAddTo; + + //======= end jsbn ======= + + // Emscripten wrapper + var Wrapper = { + abs: function(l, h) { + var x = new goog.math.Long(l, h); + var ret; + if (x.isNegative()) { + ret = x.negate(); + } else { + ret = x; + } + HEAP32[tempDoublePtr>>2] = ret.low_; + HEAP32[tempDoublePtr+4>>2] = ret.high_; + }, + ensureTemps: function() { + if (Wrapper.ensuredTemps) return; + Wrapper.ensuredTemps = true; + Wrapper.two32 = new BigInteger(); + Wrapper.two32.fromString('4294967296', 10); + Wrapper.two64 = new BigInteger(); + Wrapper.two64.fromString('18446744073709551616', 10); + Wrapper.temp1 = new BigInteger(); + Wrapper.temp2 = new BigInteger(); + }, + lh2bignum: function(l, h) { + var a = new BigInteger(); + a.fromString(h.toString(), 10); + var b = new BigInteger(); + a.multiplyTo(Wrapper.two32, b); + var c = new BigInteger(); + c.fromString(l.toString(), 10); + var d = new BigInteger(); + c.addTo(b, d); + return d; + }, + stringify: function(l, h, unsigned) { + var ret = new goog.math.Long(l, h).toString(); + if (unsigned && ret[0] == '-') { + // unsign slowly using jsbn bignums + Wrapper.ensureTemps(); + var bignum = new BigInteger(); + bignum.fromString(ret, 10); + ret = new BigInteger(); + Wrapper.two64.addTo(bignum, ret); + ret = ret.toString(10); + } + return ret; + }, + fromString: function(str, base, min, max, unsigned) { + Wrapper.ensureTemps(); + var bignum = new BigInteger(); + bignum.fromString(str, base); + var bigmin = new BigInteger(); + bigmin.fromString(min, 10); + var bigmax = new BigInteger(); + bigmax.fromString(max, 10); + if (unsigned && bignum.compareTo(BigInteger.ZERO) < 0) { + var temp = new BigInteger(); + bignum.addTo(Wrapper.two64, temp); + bignum = temp; + } + var error = false; + if (bignum.compareTo(bigmin) < 0) { + bignum = bigmin; + error = true; + } else if (bignum.compareTo(bigmax) > 0) { + bignum = bigmax; + error = true; + } + var ret = goog.math.Long.fromString(bignum.toString()); // min-max checks should have clamped this to a range goog.math.Long can handle well + HEAP32[tempDoublePtr>>2] = ret.low_; + HEAP32[tempDoublePtr+4>>2] = ret.high_; + if (error) throw 'range error'; + } + }; + return Wrapper; +})(); + +//======= end closure i64 code ======= + + + +// === Auto-generated postamble setup entry stuff === + +if (memoryInitializer) { + if (typeof Module['locateFile'] === 'function') { + memoryInitializer = Module['locateFile'](memoryInitializer); + } else if (Module['memoryInitializerPrefixURL']) { + memoryInitializer = Module['memoryInitializerPrefixURL'] + memoryInitializer; + } + if (ENVIRONMENT_IS_NODE || ENVIRONMENT_IS_SHELL) { + var data = Module['readBinary'](memoryInitializer); + HEAPU8.set(data, STATIC_BASE); + } else { + addRunDependency('memory initializer'); + Browser.asyncLoad(memoryInitializer, function(data) { + HEAPU8.set(data, STATIC_BASE); + removeRunDependency('memory initializer'); + }, function(data) { + throw 'could not load memory initializer ' + memoryInitializer; + }); + } +} + +function ExitStatus(status) { + this.name = "ExitStatus"; + this.message = "Program terminated with exit(" + status + ")"; + this.status = status; +}; +ExitStatus.prototype = new Error(); +ExitStatus.prototype.constructor = ExitStatus; + +var initialStackTop; +var preloadStartTime = null; +var calledMain = false; + +dependenciesFulfilled = function runCaller() { + // If run has never been called, and we should call run (INVOKE_RUN is true, and Module.noInitialRun is not false) + if (!Module['calledRun'] && shouldRunNow) run(); + if (!Module['calledRun']) dependenciesFulfilled = runCaller; // try this again later, after new deps are fulfilled +} + +Module['callMain'] = Module.callMain = function callMain(args) { + assert(runDependencies == 0, 'cannot call main when async dependencies remain! (listen on __ATMAIN__)'); + assert(__ATPRERUN__.length == 0, 'cannot call main when preRun functions remain to be called'); + + args = args || []; + + ensureInitRuntime(); + + var argc = args.length+1; + function pad() { + for (var i = 0; i < 4-1; i++) { + argv.push(0); + } + } + var argv = [allocate(intArrayFromString(Module['thisProgram']), 'i8', ALLOC_NORMAL) ]; + pad(); + for (var i = 0; i < argc-1; i = i + 1) { + argv.push(allocate(intArrayFromString(args[i]), 'i8', ALLOC_NORMAL)); + pad(); + } + argv.push(0); + argv = allocate(argv, 'i32', ALLOC_NORMAL); + + initialStackTop = STACKTOP; + + try { + + var ret = Module['_main'](argc, argv, 0); + + + // if we're not running an evented main loop, it's time to exit + exit(ret); + } + catch(e) { + if (e instanceof ExitStatus) { + // exit() throws this once it's done to make sure execution + // has been stopped completely + return; + } else if (e == 'SimulateInfiniteLoop') { + // running an evented main loop, don't immediately exit + Module['noExitRuntime'] = true; + return; + } else { + if (e && typeof e === 'object' && e.stack) Module.printErr('exception thrown: ' + [e, e.stack]); + throw e; + } + } finally { + calledMain = true; + } +} + + + + +function run(args) { + args = args || Module['arguments']; + + if (preloadStartTime === null) preloadStartTime = Date.now(); + + if (runDependencies > 0) { + return; + } + + preRun(); + + if (runDependencies > 0) return; // a preRun added a dependency, run will be called later + if (Module['calledRun']) return; // run may have just been called through dependencies being fulfilled just in this very frame + + function doRun() { + if (Module['calledRun']) return; // run may have just been called while the async setStatus time below was happening + Module['calledRun'] = true; + + if (ABORT) return; + + ensureInitRuntime(); + + preMain(); + + if (ENVIRONMENT_IS_WEB && preloadStartTime !== null) { + Module.printErr('pre-main prep time: ' + (Date.now() - preloadStartTime) + ' ms'); + } + + if (Module['onRuntimeInitialized']) Module['onRuntimeInitialized'](); + + if (Module['_main'] && shouldRunNow) Module['callMain'](args); + + postRun(); + } + + if (Module['setStatus']) { + Module['setStatus']('Running...'); + setTimeout(function() { + setTimeout(function() { + Module['setStatus'](''); + }, 1); + doRun(); + }, 1); + } else { + doRun(); + } +} +Module['run'] = Module.run = run; + +function exit(status) { + if (Module['noExitRuntime']) { + return; + } + + ABORT = true; + EXITSTATUS = status; + STACKTOP = initialStackTop; + + // exit the runtime + exitRuntime(); + + if (ENVIRONMENT_IS_NODE) { + // Work around a node.js bug where stdout buffer is not flushed at process exit: + // Instead of process.exit() directly, wait for stdout flush event. + // See https://github.com/joyent/node/issues/1669 and https://github.com/kripken/emscripten/issues/2582 + // Workaround is based on https://github.com/RReverser/acorn/commit/50ab143cecc9ed71a2d66f78b4aec3bb2e9844f6 + process['stdout']['once']('drain', function () { + process['exit'](status); + }); + console.log(' '); // Make sure to print something to force the drain event to occur, in case the stdout buffer was empty. + // Work around another node bug where sometimes 'drain' is never fired - make another effort + // to emit the exit status, after a significant delay (if node hasn't fired drain by then, give up) + setTimeout(function() { + process['exit'](status); + }, 500); + } else + if (ENVIRONMENT_IS_SHELL && typeof quit === 'function') { + quit(status); + } + // if we reach here, we must throw an exception to halt the current execution + throw new ExitStatus(status); +} +Module['exit'] = Module.exit = exit; + +function abort(text) { + if (text) { + Module.print(text); + Module.printErr(text); + } + + ABORT = true; + EXITSTATUS = 1; + + var extra = '\nIf this abort() is unexpected, build with -s ASSERTIONS=1 which can give more information.'; + + throw 'abort() at ' + stackTrace() + extra; +} +Module['abort'] = Module.abort = abort; + +// {{PRE_RUN_ADDITIONS}} + +if (Module['preInit']) { + if (typeof Module['preInit'] == 'function') Module['preInit'] = [Module['preInit']]; + while (Module['preInit'].length > 0) { + Module['preInit'].pop()(); + } +} + +// shouldRunNow refers to calling main(), not run(). +var shouldRunNow = true; +if (Module['noInitialRun']) { + shouldRunNow = false; +} + + +run(); + +// {{POST_RUN_ADDITIONS}} + + + + + + +// {{MODULE_ADDITIONS}} + + + + +/* vim: ts=4:sw=4:expandtab */ +var Internal = Internal || {}; + +(function() { + 'use strict'; + + // Insert some bytes into the emscripten memory and return a pointer + function _allocate(bytes) { + var address = Module._malloc(bytes.length); + Module.HEAPU8.set(bytes, address); + + return address; + } + + function _readBytes(address, length, array) { + array.set(Module.HEAPU8.subarray(address, address + length)); + } + + var basepoint = new Uint8Array(32); + basepoint[0] = 9; + + Internal.curve25519 = { + keyPair: function(privKey) { + var priv = new Uint8Array(privKey); + priv[0] &= 248; + priv[31] &= 127; + priv[31] |= 64; + + // Where to store the result + var publicKey_ptr = Module._malloc(32); + + // Get a pointer to the private key + var privateKey_ptr = _allocate(priv); + + // The basepoint for generating public keys + var basepoint_ptr = _allocate(basepoint); + + // The return value is just 0, the operation is done in place + var err = Module._curve25519_donna(publicKey_ptr, + privateKey_ptr, + basepoint_ptr); + + var res = new Uint8Array(32); + _readBytes(publicKey_ptr, 32, res); + + Module._free(publicKey_ptr); + Module._free(privateKey_ptr); + Module._free(basepoint_ptr); + + return { pubKey: res.buffer, privKey: priv.buffer }; + }, + sharedSecret: function(pubKey, privKey) { + // Where to store the result + var sharedKey_ptr = Module._malloc(32); + + // Get a pointer to our private key + var privateKey_ptr = _allocate(new Uint8Array(privKey)); + + // Get a pointer to their public key, the basepoint when you're + // generating a shared secret + var basepoint_ptr = _allocate(new Uint8Array(pubKey)); + + // Return value is 0 here too of course + var err = Module._curve25519_donna(sharedKey_ptr, + privateKey_ptr, + basepoint_ptr); + + var res = new Uint8Array(32); + _readBytes(sharedKey_ptr, 32, res); + + Module._free(sharedKey_ptr); + Module._free(privateKey_ptr); + Module._free(basepoint_ptr); + + return res.buffer; + }, + sign: function(privKey, message) { + // Where to store the result + var signature_ptr = Module._malloc(64); + + // Get a pointer to our private key + var privateKey_ptr = _allocate(new Uint8Array(privKey)); + + // Get a pointer to the message + var message_ptr = _allocate(new Uint8Array(message)); + + var err = Module._curve25519_sign(signature_ptr, + privateKey_ptr, + message_ptr, + message.byteLength); + + var res = new Uint8Array(64); + _readBytes(signature_ptr, 64, res); + + Module._free(signature_ptr); + Module._free(privateKey_ptr); + Module._free(message_ptr); + + return res.buffer; + }, + verify: function(pubKey, message, sig) { + // Get a pointer to their public key + var publicKey_ptr = _allocate(new Uint8Array(pubKey)); + + // Get a pointer to the signature + var signature_ptr = _allocate(new Uint8Array(sig)); + + // Get a pointer to the message + var message_ptr = _allocate(new Uint8Array(message)); + + var res = Module._curve25519_verify(signature_ptr, + publicKey_ptr, + message_ptr, + message.byteLength); + + Module._free(publicKey_ptr); + Module._free(signature_ptr); + Module._free(message_ptr); + + return res !== 0; + } + }; + + Internal.curve25519_async = { + keyPair: function(privKey) { + return new Promise(function(resolve) { + resolve(Internal.curve25519.keyPair(privKey)); + }); + }, + sharedSecret: function(pubKey, privKey) { + return new Promise(function(resolve) { + resolve(Internal.curve25519.sharedSecret(pubKey, privKey)); + }); + }, + sign: function(privKey, message) { + return new Promise(function(resolve) { + resolve(Internal.curve25519.sign(privKey, message)); + }); + }, + verify: function(pubKey, message, sig) { + return new Promise(function(resolve, reject) { + if (Internal.curve25519.verify(pubKey, message, sig)) { + reject(new Error("Invalid signature")); + } else { + resolve(); + } + }); + }, + }; + +})(); diff --git a/build/protoText.js b/build/protoText.js new file mode 100644 index 0000000..0ee6b61 --- /dev/null +++ b/build/protoText.js @@ -0,0 +1,34 @@ +var Internal = Internal || {}; + +Internal.protoText = function() { + var protoText = {}; + + protoText['protos/WhisperTextProtocol.proto'] = + 'package textsecure;\n' + + 'option java_package = "org.whispersystems.libsignal.protocol";\n' + + 'option java_outer_classname = "WhisperProtos";\n' + + 'message WhisperMessage {\n' + + ' optional bytes ephemeralKey = 1;\n' + + ' optional uint32 counter = 2;\n' + + ' optional uint32 previousCounter = 3;\n' + + ' optional bytes ciphertext = 4; // PushMessageContent\n' + + '}\n' + + 'message PreKeyWhisperMessage {\n' + + ' optional uint32 registrationId = 5;\n' + + ' optional uint32 preKeyId = 1;\n' + + ' optional uint32 signedPreKeyId = 6;\n' + + ' optional bytes baseKey = 2;\n' + + ' optional bytes identityKey = 3;\n' + + ' optional bytes message = 4; // WhisperMessage\n' + + '}\n' + + 'message KeyExchangeMessage {\n' + + ' optional uint32 id = 1;\n' + + ' optional bytes baseKey = 2;\n' + + ' optional bytes ephemeralKey = 3;\n' + + ' optional bytes identityKey = 4;\n' + + ' optional bytes baseKeySignature = 5;\n' + + '}\n' + +'' ; + + return protoText; +}(); \ No newline at end of file diff --git a/build/protobufs_concat.js b/build/protobufs_concat.js new file mode 100644 index 0000000..295ac7b --- /dev/null +++ b/build/protobufs_concat.js @@ -0,0 +1,51 @@ +var Internal = Internal || {}; + +Internal.protoText = function() { + var protoText = {}; + + protoText['protos/WhisperTextProtocol.proto'] = + 'package textsecure;\n' + + 'option java_package = "org.whispersystems.libsignal.protocol";\n' + + 'option java_outer_classname = "WhisperProtos";\n' + + 'message WhisperMessage {\n' + + ' optional bytes ephemeralKey = 1;\n' + + ' optional uint32 counter = 2;\n' + + ' optional uint32 previousCounter = 3;\n' + + ' optional bytes ciphertext = 4; // PushMessageContent\n' + + '}\n' + + 'message PreKeyWhisperMessage {\n' + + ' optional uint32 registrationId = 5;\n' + + ' optional uint32 preKeyId = 1;\n' + + ' optional uint32 signedPreKeyId = 6;\n' + + ' optional bytes baseKey = 2;\n' + + ' optional bytes identityKey = 3;\n' + + ' optional bytes message = 4; // WhisperMessage\n' + + '}\n' + + 'message KeyExchangeMessage {\n' + + ' optional uint32 id = 1;\n' + + ' optional bytes baseKey = 2;\n' + + ' optional bytes ephemeralKey = 3;\n' + + ' optional bytes identityKey = 4;\n' + + ' optional bytes baseKeySignature = 5;\n' + + '}\n' + +'' ; + + return protoText; +}(); +/* vim: ts=4:sw=4 */ +var Internal = Internal || {}; + +Internal.protobuf = function() { + 'use strict'; + + function loadProtoBufs(filename) { + return dcodeIO.ProtoBuf.loadProto(Internal.protoText['protos/' + filename]).build('textsecure'); + } + + var protocolMessages = loadProtoBufs('WhisperTextProtocol.proto'); + + return { + WhisperMessage : protocolMessages.WhisperMessage, + PreKeyWhisperMessage : protocolMessages.PreKeyWhisperMessage + }; +}(); diff --git a/dist/libsignal-protocol-worker.js b/dist/libsignal-protocol-worker.js new file mode 100644 index 0000000..2067957 --- /dev/null +++ b/dist/libsignal-protocol-worker.js @@ -0,0 +1,25298 @@ +;(function(){ +var Internal = {}; +var libsignal = {}; +// The Module object: Our interface to the outside world. We import +// and export values on it, and do the work to get that through +// closure compiler if necessary. There are various ways Module can be used: +// 1. Not defined. We create it here +// 2. A function parameter, function(Module) { ..generated code.. } +// 3. pre-run appended it, var Module = {}; ..generated code.. +// 4. External script tag defines var Module. +// We need to do an eval in order to handle the closure compiler +// case, where this code here is minified but Module was defined +// elsewhere (e.g. case 4 above). We also need to check if Module +// already exists (e.g. case 3 above). +// Note that if you want to run closure, and also to use Module +// after the generated code, you will need to define var Module = {}; +// before the code. Then that object will be used in the code, and you +// can continue to use Module afterwards as well. +var Module; +if (!Module) Module = (typeof Module !== 'undefined' ? Module : null) || {}; + +// Sometimes an existing Module object exists with properties +// meant to overwrite the default module functionality. Here +// we collect those properties and reapply _after_ we configure +// the current environment's defaults to avoid having to be so +// defensive during initialization. +var moduleOverrides = {}; +for (var key in Module) { + if (Module.hasOwnProperty(key)) { + moduleOverrides[key] = Module[key]; + } +} + +// The environment setup code below is customized to use Module. +// *** Environment setup code *** +var ENVIRONMENT_IS_NODE = typeof process === 'object' && typeof require === 'function'; +var ENVIRONMENT_IS_WEB = typeof window === 'object'; +var ENVIRONMENT_IS_WORKER = typeof importScripts === 'function'; +var ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER; + +if (ENVIRONMENT_IS_NODE) { + // Expose functionality in the same simple way that the shells work + // Note that we pollute the global namespace here, otherwise we break in node + if (!Module['print']) Module['print'] = function print(x) { + process['stdout'].write(x + '\n'); + }; + if (!Module['printErr']) Module['printErr'] = function printErr(x) { + process['stderr'].write(x + '\n'); + }; + + var nodeFS = require('fs'); + var nodePath = require('path'); + + Module['read'] = function read(filename, binary) { + filename = nodePath['normalize'](filename); + var ret = nodeFS['readFileSync'](filename); + // The path is absolute if the normalized version is the same as the resolved. + if (!ret && filename != nodePath['resolve'](filename)) { + filename = path.join(__dirname, '..', 'src', filename); + ret = nodeFS['readFileSync'](filename); + } + if (ret && !binary) ret = ret.toString(); + return ret; + }; + + Module['readBinary'] = function readBinary(filename) { return Module['read'](filename, true) }; + + Module['load'] = function load(f) { + globalEval(read(f)); + }; + + if (process['argv'].length > 1) { + Module['thisProgram'] = process['argv'][1].replace(/\\/g, '/'); + } else { + Module['thisProgram'] = 'unknown-program'; + } + + Module['arguments'] = process['argv'].slice(2); + + if (typeof module !== 'undefined') { + module['exports'] = Module; + } + + process['on']('uncaughtException', function(ex) { + // suppress ExitStatus exceptions from showing an error + if (!(ex instanceof ExitStatus)) { + throw ex; + } + }); +} +else if (ENVIRONMENT_IS_SHELL) { + if (!Module['print']) Module['print'] = print; + if (typeof printErr != 'undefined') Module['printErr'] = printErr; // not present in v8 or older sm + + if (typeof read != 'undefined') { + Module['read'] = read; + } else { + Module['read'] = function read() { throw 'no read() available (jsc?)' }; + } + + Module['readBinary'] = function readBinary(f) { + if (typeof readbuffer === 'function') { + return new Uint8Array(readbuffer(f)); + } + var data = read(f, 'binary'); + assert(typeof data === 'object'); + return data; + }; + + if (typeof scriptArgs != 'undefined') { + Module['arguments'] = scriptArgs; + } else if (typeof arguments != 'undefined') { + Module['arguments'] = arguments; + } + + this['Module'] = Module; + +} +else if (ENVIRONMENT_IS_WEB || ENVIRONMENT_IS_WORKER) { + Module['read'] = function read(url) { + var xhr = new XMLHttpRequest(); + xhr.open('GET', url, false); + xhr.send(null); + return xhr.responseText; + }; + + if (typeof arguments != 'undefined') { + Module['arguments'] = arguments; + } + + if (typeof console !== 'undefined') { + if (!Module['print']) Module['print'] = function print(x) { + console.log(x); + }; + if (!Module['printErr']) Module['printErr'] = function printErr(x) { + console.log(x); + }; + } else { + // Probably a worker, and without console.log. We can do very little here... + var TRY_USE_DUMP = false; + if (!Module['print']) Module['print'] = (TRY_USE_DUMP && (typeof(dump) !== "undefined") ? (function(x) { + dump(x); + }) : (function(x) { + // self.postMessage(x); // enable this if you want stdout to be sent as messages + })); + } + + if (ENVIRONMENT_IS_WEB) { + window['Module'] = Module; + } else { + Module['load'] = importScripts; + } +} +else { + // Unreachable because SHELL is dependant on the others + throw 'Unknown runtime environment. Where are we?'; +} + +function globalEval(x) { + eval.call(null, x); +} +if (!Module['load'] && Module['read']) { + Module['load'] = function load(f) { + globalEval(Module['read'](f)); + }; +} +if (!Module['print']) { + Module['print'] = function(){}; +} +if (!Module['printErr']) { + Module['printErr'] = Module['print']; +} +if (!Module['arguments']) { + Module['arguments'] = []; +} +if (!Module['thisProgram']) { + Module['thisProgram'] = './this.program'; +} + +// *** Environment setup code *** + +// Closure helpers +Module.print = Module['print']; +Module.printErr = Module['printErr']; + +// Callbacks +Module['preRun'] = []; +Module['postRun'] = []; + +// Merge back in the overrides +for (var key in moduleOverrides) { + if (moduleOverrides.hasOwnProperty(key)) { + Module[key] = moduleOverrides[key]; + } +} + + + +// === Preamble library stuff === + +// Documentation for the public APIs defined in this file must be updated in: +// site/source/docs/api_reference/preamble.js.rst +// A prebuilt local version of the documentation is available at: +// site/build/text/docs/api_reference/preamble.js.txt +// You can also build docs locally as HTML or other formats in site/ +// An online HTML version (which may be of a different version of Emscripten) +// is up at http://kripken.github.io/emscripten-site/docs/api_reference/preamble.js.html + +//======================================== +// Runtime code shared with compiler +//======================================== + +var Runtime = { + setTempRet0: function (value) { + tempRet0 = value; + }, + getTempRet0: function () { + return tempRet0; + }, + stackSave: function () { + return STACKTOP; + }, + stackRestore: function (stackTop) { + STACKTOP = stackTop; + }, + getNativeTypeSize: function (type) { + switch (type) { + case 'i1': case 'i8': return 1; + case 'i16': return 2; + case 'i32': return 4; + case 'i64': return 8; + case 'float': return 4; + case 'double': return 8; + default: { + if (type[type.length-1] === '*') { + return Runtime.QUANTUM_SIZE; // A pointer + } else if (type[0] === 'i') { + var bits = parseInt(type.substr(1)); + assert(bits % 8 === 0); + return bits/8; + } else { + return 0; + } + } + } + }, + getNativeFieldSize: function (type) { + return Math.max(Runtime.getNativeTypeSize(type), Runtime.QUANTUM_SIZE); + }, + STACK_ALIGN: 16, + getAlignSize: function (type, size, vararg) { + // we align i64s and doubles on 64-bit boundaries, unlike x86 + if (!vararg && (type == 'i64' || type == 'double')) return 8; + if (!type) return Math.min(size, 8); // align structures internally to 64 bits + return Math.min(size || (type ? Runtime.getNativeFieldSize(type) : 0), Runtime.QUANTUM_SIZE); + }, + dynCall: function (sig, ptr, args) { + if (args && args.length) { + if (!args.splice) args = Array.prototype.slice.call(args); + args.splice(0, 0, ptr); + return Module['dynCall_' + sig].apply(null, args); + } else { + return Module['dynCall_' + sig].call(null, ptr); + } + }, + functionPointers: [], + addFunction: function (func) { + for (var i = 0; i < Runtime.functionPointers.length; i++) { + if (!Runtime.functionPointers[i]) { + Runtime.functionPointers[i] = func; + return 2*(1 + i); + } + } + throw 'Finished up all reserved function pointers. Use a higher value for RESERVED_FUNCTION_POINTERS.'; + }, + removeFunction: function (index) { + Runtime.functionPointers[(index-2)/2] = null; + }, + getAsmConst: function (code, numArgs) { + // code is a constant string on the heap, so we can cache these + if (!Runtime.asmConstCache) Runtime.asmConstCache = {}; + var func = Runtime.asmConstCache[code]; + if (func) return func; + var args = []; + for (var i = 0; i < numArgs; i++) { + args.push(String.fromCharCode(36) + i); // $0, $1 etc + } + var source = Pointer_stringify(code); + if (source[0] === '"') { + // tolerate EM_ASM("..code..") even though EM_ASM(..code..) is correct + if (source.indexOf('"', 1) === source.length-1) { + source = source.substr(1, source.length-2); + } else { + // something invalid happened, e.g. EM_ASM("..code($0)..", input) + abort('invalid EM_ASM input |' + source + '|. Please use EM_ASM(..code..) (no quotes) or EM_ASM({ ..code($0).. }, input) (to input values)'); + } + } + try { + // Module is the only 'upvar', which we provide directly. We also provide FS for legacy support. + var evalled = eval('(function(Module, FS) { return function(' + args.join(',') + '){ ' + source + ' } })')(Module, typeof FS !== 'undefined' ? FS : null); + } catch(e) { + Module.printErr('error in executing inline EM_ASM code: ' + e + ' on: \n\n' + source + '\n\nwith args |' + args + '| (make sure to use the right one out of EM_ASM, EM_ASM_ARGS, etc.)'); + throw e; + } + return Runtime.asmConstCache[code] = evalled; + }, + warnOnce: function (text) { + if (!Runtime.warnOnce.shown) Runtime.warnOnce.shown = {}; + if (!Runtime.warnOnce.shown[text]) { + Runtime.warnOnce.shown[text] = 1; + Module.printErr(text); + } + }, + funcWrappers: {}, + getFuncWrapper: function (func, sig) { + assert(sig); + if (!Runtime.funcWrappers[sig]) { + Runtime.funcWrappers[sig] = {}; + } + var sigCache = Runtime.funcWrappers[sig]; + if (!sigCache[func]) { + sigCache[func] = function dynCall_wrapper() { + return Runtime.dynCall(sig, func, arguments); + }; + } + return sigCache[func]; + }, + UTF8Processor: function () { + var buffer = []; + var needed = 0; + this.processCChar = function (code) { + code = code & 0xFF; + + if (buffer.length == 0) { + if ((code & 0x80) == 0x00) { // 0xxxxxxx + return String.fromCharCode(code); + } + buffer.push(code); + if ((code & 0xE0) == 0xC0) { // 110xxxxx + needed = 1; + } else if ((code & 0xF0) == 0xE0) { // 1110xxxx + needed = 2; + } else { // 11110xxx + needed = 3; + } + return ''; + } + + if (needed) { + buffer.push(code); + needed--; + if (needed > 0) return ''; + } + + var c1 = buffer[0]; + var c2 = buffer[1]; + var c3 = buffer[2]; + var c4 = buffer[3]; + var ret; + if (buffer.length == 2) { + ret = String.fromCharCode(((c1 & 0x1F) << 6) | (c2 & 0x3F)); + } else if (buffer.length == 3) { + ret = String.fromCharCode(((c1 & 0x0F) << 12) | ((c2 & 0x3F) << 6) | (c3 & 0x3F)); + } else { + // http://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae + var codePoint = ((c1 & 0x07) << 18) | ((c2 & 0x3F) << 12) | + ((c3 & 0x3F) << 6) | (c4 & 0x3F); + ret = String.fromCharCode( + (((codePoint - 0x10000) / 0x400)|0) + 0xD800, + (codePoint - 0x10000) % 0x400 + 0xDC00); + } + buffer.length = 0; + return ret; + } + this.processJSString = function processJSString(string) { + /* TODO: use TextEncoder when present, + var encoder = new TextEncoder(); + encoder['encoding'] = "utf-8"; + var utf8Array = encoder['encode'](aMsg.data); + */ + string = unescape(encodeURIComponent(string)); + var ret = []; + for (var i = 0; i < string.length; i++) { + ret.push(string.charCodeAt(i)); + } + return ret; + } + }, + getCompilerSetting: function (name) { + throw 'You must build with -s RETAIN_COMPILER_SETTINGS=1 for Runtime.getCompilerSetting or emscripten_get_compiler_setting to work'; + }, + stackAlloc: function (size) { var ret = STACKTOP;STACKTOP = (STACKTOP + size)|0;STACKTOP = (((STACKTOP)+15)&-16); return ret; }, + staticAlloc: function (size) { var ret = STATICTOP;STATICTOP = (STATICTOP + size)|0;STATICTOP = (((STATICTOP)+15)&-16); return ret; }, + dynamicAlloc: function (size) { var ret = DYNAMICTOP;DYNAMICTOP = (DYNAMICTOP + size)|0;DYNAMICTOP = (((DYNAMICTOP)+15)&-16); if (DYNAMICTOP >= TOTAL_MEMORY) enlargeMemory();; return ret; }, + alignMemory: function (size,quantum) { var ret = size = Math.ceil((size)/(quantum ? quantum : 16))*(quantum ? quantum : 16); return ret; }, + makeBigInt: function (low,high,unsigned) { var ret = (unsigned ? ((+((low>>>0)))+((+((high>>>0)))*4294967296.0)) : ((+((low>>>0)))+((+((high|0)))*4294967296.0))); return ret; }, + GLOBAL_BASE: 8, + QUANTUM_SIZE: 4, + __dummy__: 0 +} + + +Module['Runtime'] = Runtime; + + + + + + + + + +//======================================== +// Runtime essentials +//======================================== + +var __THREW__ = 0; // Used in checking for thrown exceptions. + +var ABORT = false; // whether we are quitting the application. no code should run after this. set in exit() and abort() +var EXITSTATUS = 0; + +var undef = 0; +// tempInt is used for 32-bit signed values or smaller. tempBigInt is used +// for 32-bit unsigned values or more than 32 bits. TODO: audit all uses of tempInt +var tempValue, tempInt, tempBigInt, tempInt2, tempBigInt2, tempPair, tempBigIntI, tempBigIntR, tempBigIntS, tempBigIntP, tempBigIntD, tempDouble, tempFloat; +var tempI64, tempI64b; +var tempRet0, tempRet1, tempRet2, tempRet3, tempRet4, tempRet5, tempRet6, tempRet7, tempRet8, tempRet9; + +function assert(condition, text) { + if (!condition) { + abort('Assertion failed: ' + text); + } +} + +var globalScope = this; + +// Returns the C function with a specified identifier (for C++, you need to do manual name mangling) +function getCFunc(ident) { + var func = Module['_' + ident]; // closure exported function + if (!func) { + try { + func = eval('_' + ident); // explicit lookup + } catch(e) {} + } + assert(func, 'Cannot call unknown function ' + ident + ' (perhaps LLVM optimizations or closure removed it?)'); + return func; +} + +var cwrap, ccall; +(function(){ + var JSfuncs = { + // Helpers for cwrap -- it can't refer to Runtime directly because it might + // be renamed by closure, instead it calls JSfuncs['stackSave'].body to find + // out what the minified function name is. + 'stackSave': function() { + Runtime.stackSave() + }, + 'stackRestore': function() { + Runtime.stackRestore() + }, + // type conversion from js to c + 'arrayToC' : function(arr) { + var ret = Runtime.stackAlloc(arr.length); + writeArrayToMemory(arr, ret); + return ret; + }, + 'stringToC' : function(str) { + var ret = 0; + if (str !== null && str !== undefined && str !== 0) { // null string + // at most 4 bytes per UTF-8 code point, +1 for the trailing '\0' + ret = Runtime.stackAlloc((str.length << 2) + 1); + writeStringToMemory(str, ret); + } + return ret; + } + }; + // For fast lookup of conversion functions + var toC = {'string' : JSfuncs['stringToC'], 'array' : JSfuncs['arrayToC']}; + + // C calling interface. + ccall = function ccallFunc(ident, returnType, argTypes, args) { + var func = getCFunc(ident); + var cArgs = []; + var stack = 0; + if (args) { + for (var i = 0; i < args.length; i++) { + var converter = toC[argTypes[i]]; + if (converter) { + if (stack === 0) stack = Runtime.stackSave(); + cArgs[i] = converter(args[i]); + } else { + cArgs[i] = args[i]; + } + } + } + var ret = func.apply(null, cArgs); + if (returnType === 'string') ret = Pointer_stringify(ret); + if (stack !== 0) Runtime.stackRestore(stack); + return ret; + } + + var sourceRegex = /^function\s*\(([^)]*)\)\s*{\s*([^*]*?)[\s;]*(?:return\s*(.*?)[;\s]*)?}$/; + function parseJSFunc(jsfunc) { + // Match the body and the return value of a javascript function source + var parsed = jsfunc.toString().match(sourceRegex).slice(1); + return {arguments : parsed[0], body : parsed[1], returnValue: parsed[2]} + } + var JSsource = {}; + for (var fun in JSfuncs) { + if (JSfuncs.hasOwnProperty(fun)) { + // Elements of toCsource are arrays of three items: + // the code, and the return value + JSsource[fun] = parseJSFunc(JSfuncs[fun]); + } + } + + + cwrap = function cwrap(ident, returnType, argTypes) { + argTypes = argTypes || []; + var cfunc = getCFunc(ident); + // When the function takes numbers and returns a number, we can just return + // the original function + var numericArgs = argTypes.every(function(type){ return type === 'number'}); + var numericRet = (returnType !== 'string'); + if ( numericRet && numericArgs) { + return cfunc; + } + // Creation of the arguments list (["$1","$2",...,"$nargs"]) + var argNames = argTypes.map(function(x,i){return '$'+i}); + var funcstr = "(function(" + argNames.join(',') + ") {"; + var nargs = argTypes.length; + if (!numericArgs) { + // Generate the code needed to convert the arguments from javascript + // values to pointers + funcstr += 'var stack = ' + JSsource['stackSave'].body + ';'; + for (var i = 0; i < nargs; i++) { + var arg = argNames[i], type = argTypes[i]; + if (type === 'number') continue; + var convertCode = JSsource[type + 'ToC']; // [code, return] + funcstr += 'var ' + convertCode.arguments + ' = ' + arg + ';'; + funcstr += convertCode.body + ';'; + funcstr += arg + '=' + convertCode.returnValue + ';'; + } + } + + // When the code is compressed, the name of cfunc is not literally 'cfunc' anymore + var cfuncname = parseJSFunc(function(){return cfunc}).returnValue; + // Call the function + funcstr += 'var ret = ' + cfuncname + '(' + argNames.join(',') + ');'; + if (!numericRet) { // Return type can only by 'string' or 'number' + // Convert the result to a string + var strgfy = parseJSFunc(function(){return Pointer_stringify}).returnValue; + funcstr += 'ret = ' + strgfy + '(ret);'; + } + if (!numericArgs) { + // If we had a stack, restore it + funcstr += JSsource['stackRestore'].body.replace('()', '(stack)') + ';'; + } + funcstr += 'return ret})'; + return eval(funcstr); + }; +})(); +Module["cwrap"] = cwrap; +Module["ccall"] = ccall; + + +function setValue(ptr, value, type, noSafe) { + type = type || 'i8'; + if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit + switch(type) { + case 'i1': HEAP8[((ptr)>>0)]=value; break; + case 'i8': HEAP8[((ptr)>>0)]=value; break; + case 'i16': HEAP16[((ptr)>>1)]=value; break; + case 'i32': HEAP32[((ptr)>>2)]=value; break; + case 'i64': (tempI64 = [value>>>0,(tempDouble=value,(+(Math_abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math_min((+(Math_floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math_ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[((ptr)>>2)]=tempI64[0],HEAP32[(((ptr)+(4))>>2)]=tempI64[1]); break; + case 'float': HEAPF32[((ptr)>>2)]=value; break; + case 'double': HEAPF64[((ptr)>>3)]=value; break; + default: abort('invalid type for setValue: ' + type); + } +} +Module['setValue'] = setValue; + + +function getValue(ptr, type, noSafe) { + type = type || 'i8'; + if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit + switch(type) { + case 'i1': return HEAP8[((ptr)>>0)]; + case 'i8': return HEAP8[((ptr)>>0)]; + case 'i16': return HEAP16[((ptr)>>1)]; + case 'i32': return HEAP32[((ptr)>>2)]; + case 'i64': return HEAP32[((ptr)>>2)]; + case 'float': return HEAPF32[((ptr)>>2)]; + case 'double': return HEAPF64[((ptr)>>3)]; + default: abort('invalid type for setValue: ' + type); + } + return null; +} +Module['getValue'] = getValue; + +var ALLOC_NORMAL = 0; // Tries to use _malloc() +var ALLOC_STACK = 1; // Lives for the duration of the current function call +var ALLOC_STATIC = 2; // Cannot be freed +var ALLOC_DYNAMIC = 3; // Cannot be freed except through sbrk +var ALLOC_NONE = 4; // Do not allocate +Module['ALLOC_NORMAL'] = ALLOC_NORMAL; +Module['ALLOC_STACK'] = ALLOC_STACK; +Module['ALLOC_STATIC'] = ALLOC_STATIC; +Module['ALLOC_DYNAMIC'] = ALLOC_DYNAMIC; +Module['ALLOC_NONE'] = ALLOC_NONE; + +// allocate(): This is for internal use. You can use it yourself as well, but the interface +// is a little tricky (see docs right below). The reason is that it is optimized +// for multiple syntaxes to save space in generated code. So you should +// normally not use allocate(), and instead allocate memory using _malloc(), +// initialize it with setValue(), and so forth. +// @slab: An array of data, or a number. If a number, then the size of the block to allocate, +// in *bytes* (note that this is sometimes confusing: the next parameter does not +// affect this!) +// @types: Either an array of types, one for each byte (or 0 if no type at that position), +// or a single type which is used for the entire block. This only matters if there +// is initial data - if @slab is a number, then this does not matter at all and is +// ignored. +// @allocator: How to allocate memory, see ALLOC_* +function allocate(slab, types, allocator, ptr) { + var zeroinit, size; + if (typeof slab === 'number') { + zeroinit = true; + size = slab; + } else { + zeroinit = false; + size = slab.length; + } + + var singleType = typeof types === 'string' ? types : null; + + var ret; + if (allocator == ALLOC_NONE) { + ret = ptr; + } else { + ret = [_malloc, Runtime.stackAlloc, Runtime.staticAlloc, Runtime.dynamicAlloc][allocator === undefined ? ALLOC_STATIC : allocator](Math.max(size, singleType ? 1 : types.length)); + } + + if (zeroinit) { + var ptr = ret, stop; + assert((ret & 3) == 0); + stop = ret + (size & ~3); + for (; ptr < stop; ptr += 4) { + HEAP32[((ptr)>>2)]=0; + } + stop = ret + size; + while (ptr < stop) { + HEAP8[((ptr++)>>0)]=0; + } + return ret; + } + + if (singleType === 'i8') { + if (slab.subarray || slab.slice) { + HEAPU8.set(slab, ret); + } else { + HEAPU8.set(new Uint8Array(slab), ret); + } + return ret; + } + + var i = 0, type, typeSize, previousType; + while (i < size) { + var curr = slab[i]; + + if (typeof curr === 'function') { + curr = Runtime.getFunctionIndex(curr); + } + + type = singleType || types[i]; + if (type === 0) { + i++; + continue; + } + + if (type == 'i64') type = 'i32'; // special case: we have one i32 here, and one i32 later + + setValue(ret+i, curr, type); + + // no need to look up size unless type changes, so cache it + if (previousType !== type) { + typeSize = Runtime.getNativeTypeSize(type); + previousType = type; + } + i += typeSize; + } + + return ret; +} +Module['allocate'] = allocate; + +function Pointer_stringify(ptr, /* optional */ length) { + if (length === 0 || !ptr) return ''; + // TODO: use TextDecoder + // Find the length, and check for UTF while doing so + var hasUtf = false; + var t; + var i = 0; + while (1) { + t = HEAPU8[(((ptr)+(i))>>0)]; + if (t >= 128) hasUtf = true; + else if (t == 0 && !length) break; + i++; + if (length && i == length) break; + } + if (!length) length = i; + + var ret = ''; + + if (!hasUtf) { + var MAX_CHUNK = 1024; // split up into chunks, because .apply on a huge string can overflow the stack + var curr; + while (length > 0) { + curr = String.fromCharCode.apply(String, HEAPU8.subarray(ptr, ptr + Math.min(length, MAX_CHUNK))); + ret = ret ? ret + curr : curr; + ptr += MAX_CHUNK; + length -= MAX_CHUNK; + } + return ret; + } + + var utf8 = new Runtime.UTF8Processor(); + for (i = 0; i < length; i++) { + t = HEAPU8[(((ptr)+(i))>>0)]; + ret += utf8.processCChar(t); + } + return ret; +} +Module['Pointer_stringify'] = Pointer_stringify; + +function UTF16ToString(ptr) { + var i = 0; + + var str = ''; + while (1) { + var codeUnit = HEAP16[(((ptr)+(i*2))>>1)]; + if (codeUnit == 0) + return str; + ++i; + // fromCharCode constructs a character from a UTF-16 code unit, so we can pass the UTF16 string right through. + str += String.fromCharCode(codeUnit); + } +} +Module['UTF16ToString'] = UTF16ToString; + + +function stringToUTF16(str, outPtr) { + for(var i = 0; i < str.length; ++i) { + // charCodeAt returns a UTF-16 encoded code unit, so it can be directly written to the HEAP. + var codeUnit = str.charCodeAt(i); // possibly a lead surrogate + HEAP16[(((outPtr)+(i*2))>>1)]=codeUnit; + } + // Null-terminate the pointer to the HEAP. + HEAP16[(((outPtr)+(str.length*2))>>1)]=0; +} +Module['stringToUTF16'] = stringToUTF16; + + +function UTF32ToString(ptr) { + var i = 0; + + var str = ''; + while (1) { + var utf32 = HEAP32[(((ptr)+(i*4))>>2)]; + if (utf32 == 0) + return str; + ++i; + // Gotcha: fromCharCode constructs a character from a UTF-16 encoded code (pair), not from a Unicode code point! So encode the code point to UTF-16 for constructing. + if (utf32 >= 0x10000) { + var ch = utf32 - 0x10000; + str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF)); + } else { + str += String.fromCharCode(utf32); + } + } +} +Module['UTF32ToString'] = UTF32ToString; + + +function stringToUTF32(str, outPtr) { + var iChar = 0; + for(var iCodeUnit = 0; iCodeUnit < str.length; ++iCodeUnit) { + // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! We must decode the string to UTF-32 to the heap. + var codeUnit = str.charCodeAt(iCodeUnit); // possibly a lead surrogate + if (codeUnit >= 0xD800 && codeUnit <= 0xDFFF) { + var trailSurrogate = str.charCodeAt(++iCodeUnit); + codeUnit = 0x10000 + ((codeUnit & 0x3FF) << 10) | (trailSurrogate & 0x3FF); + } + HEAP32[(((outPtr)+(iChar*4))>>2)]=codeUnit; + ++iChar; + } + // Null-terminate the pointer to the HEAP. + HEAP32[(((outPtr)+(iChar*4))>>2)]=0; +} +Module['stringToUTF32'] = stringToUTF32; + +function demangle(func) { + var hasLibcxxabi = !!Module['___cxa_demangle']; + if (hasLibcxxabi) { + try { + var buf = _malloc(func.length); + writeStringToMemory(func.substr(1), buf); + var status = _malloc(4); + var ret = Module['___cxa_demangle'](buf, 0, 0, status); + if (getValue(status, 'i32') === 0 && ret) { + return Pointer_stringify(ret); + } + // otherwise, libcxxabi failed, we can try ours which may return a partial result + } catch(e) { + // failure when using libcxxabi, we can try ours which may return a partial result + } finally { + if (buf) _free(buf); + if (status) _free(status); + if (ret) _free(ret); + } + } + var i = 3; + // params, etc. + var basicTypes = { + 'v': 'void', + 'b': 'bool', + 'c': 'char', + 's': 'short', + 'i': 'int', + 'l': 'long', + 'f': 'float', + 'd': 'double', + 'w': 'wchar_t', + 'a': 'signed char', + 'h': 'unsigned char', + 't': 'unsigned short', + 'j': 'unsigned int', + 'm': 'unsigned long', + 'x': 'long long', + 'y': 'unsigned long long', + 'z': '...' + }; + var subs = []; + var first = true; + function dump(x) { + //return; + if (x) Module.print(x); + Module.print(func); + var pre = ''; + for (var a = 0; a < i; a++) pre += ' '; + Module.print (pre + '^'); + } + function parseNested() { + i++; + if (func[i] === 'K') i++; // ignore const + var parts = []; + while (func[i] !== 'E') { + if (func[i] === 'S') { // substitution + i++; + var next = func.indexOf('_', i); + var num = func.substring(i, next) || 0; + parts.push(subs[num] || '?'); + i = next+1; + continue; + } + if (func[i] === 'C') { // constructor + parts.push(parts[parts.length-1]); + i += 2; + continue; + } + var size = parseInt(func.substr(i)); + var pre = size.toString().length; + if (!size || !pre) { i--; break; } // counter i++ below us + var curr = func.substr(i + pre, size); + parts.push(curr); + subs.push(curr); + i += pre + size; + } + i++; // skip E + return parts; + } + function parse(rawList, limit, allowVoid) { // main parser + limit = limit || Infinity; + var ret = '', list = []; + function flushList() { + return '(' + list.join(', ') + ')'; + } + var name; + if (func[i] === 'N') { + // namespaced N-E + name = parseNested().join('::'); + limit--; + if (limit === 0) return rawList ? [name] : name; + } else { + // not namespaced + if (func[i] === 'K' || (first && func[i] === 'L')) i++; // ignore const and first 'L' + var size = parseInt(func.substr(i)); + if (size) { + var pre = size.toString().length; + name = func.substr(i + pre, size); + i += pre + size; + } + } + first = false; + if (func[i] === 'I') { + i++; + var iList = parse(true); + var iRet = parse(true, 1, true); + ret += iRet[0] + ' ' + name + '<' + iList.join(', ') + '>'; + } else { + ret = name; + } + paramLoop: while (i < func.length && limit-- > 0) { + //dump('paramLoop'); + var c = func[i++]; + if (c in basicTypes) { + list.push(basicTypes[c]); + } else { + switch (c) { + case 'P': list.push(parse(true, 1, true)[0] + '*'); break; // pointer + case 'R': list.push(parse(true, 1, true)[0] + '&'); break; // reference + case 'L': { // literal + i++; // skip basic type + var end = func.indexOf('E', i); + var size = end - i; + list.push(func.substr(i, size)); + i += size + 2; // size + 'EE' + break; + } + case 'A': { // array + var size = parseInt(func.substr(i)); + i += size.toString().length; + if (func[i] !== '_') throw '?'; + i++; // skip _ + list.push(parse(true, 1, true)[0] + ' [' + size + ']'); + break; + } + case 'E': break paramLoop; + default: ret += '?' + c; break paramLoop; + } + } + } + if (!allowVoid && list.length === 1 && list[0] === 'void') list = []; // avoid (void) + if (rawList) { + if (ret) { + list.push(ret + '?'); + } + return list; + } else { + return ret + flushList(); + } + } + var parsed = func; + try { + // Special-case the entry point, since its name differs from other name mangling. + if (func == 'Object._main' || func == '_main') { + return 'main()'; + } + if (typeof func === 'number') func = Pointer_stringify(func); + if (func[0] !== '_') return func; + if (func[1] !== '_') return func; // C function + if (func[2] !== 'Z') return func; + switch (func[3]) { + case 'n': return 'operator new()'; + case 'd': return 'operator delete()'; + } + parsed = parse(); + } catch(e) { + parsed += '?'; + } + if (parsed.indexOf('?') >= 0 && !hasLibcxxabi) { + Runtime.warnOnce('warning: a problem occurred in builtin C++ name demangling; build with -s DEMANGLE_SUPPORT=1 to link in libcxxabi demangling'); + } + return parsed; +} + +function demangleAll(text) { + return text.replace(/__Z[\w\d_]+/g, function(x) { var y = demangle(x); return x === y ? x : (x + ' [' + y + ']') }); +} + +function jsStackTrace() { + var err = new Error(); + if (!err.stack) { + // IE10+ special cases: It does have callstack info, but it is only populated if an Error object is thrown, + // so try that as a special-case. + try { + throw new Error(0); + } catch(e) { + err = e; + } + if (!err.stack) { + return '(no stack trace available)'; + } + } + return err.stack.toString(); +} + +function stackTrace() { + return demangleAll(jsStackTrace()); +} +Module['stackTrace'] = stackTrace; + +// Memory management + +var PAGE_SIZE = 4096; +function alignMemoryPage(x) { + return (x+4095)&-4096; +} + +var HEAP; +var HEAP8, HEAPU8, HEAP16, HEAPU16, HEAP32, HEAPU32, HEAPF32, HEAPF64; + +var STATIC_BASE = 0, STATICTOP = 0, staticSealed = false; // static area +var STACK_BASE = 0, STACKTOP = 0, STACK_MAX = 0; // stack area +var DYNAMIC_BASE = 0, DYNAMICTOP = 0; // dynamic area handled by sbrk + +function enlargeMemory() { + abort('Cannot enlarge memory arrays. Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value ' + TOTAL_MEMORY + ', (2) compile with ALLOW_MEMORY_GROWTH which adjusts the size at runtime but prevents some optimizations, or (3) set Module.TOTAL_MEMORY before the program runs.'); +} + + +var TOTAL_STACK = Module['TOTAL_STACK'] || 5242880; +var TOTAL_MEMORY = Module['TOTAL_MEMORY'] || 16777216; +var FAST_MEMORY = Module['FAST_MEMORY'] || 2097152; + +var totalMemory = 64*1024; +while (totalMemory < TOTAL_MEMORY || totalMemory < 2*TOTAL_STACK) { + if (totalMemory < 16*1024*1024) { + totalMemory *= 2; + } else { + totalMemory += 16*1024*1024 + } +} +if (totalMemory !== TOTAL_MEMORY) { + Module.printErr('increasing TOTAL_MEMORY to ' + totalMemory + ' to be compliant with the asm.js spec'); + TOTAL_MEMORY = totalMemory; +} + +// Initialize the runtime's memory +// check for full engine support (use string 'subarray' to avoid closure compiler confusion) +assert(typeof Int32Array !== 'undefined' && typeof Float64Array !== 'undefined' && !!(new Int32Array(1)['subarray']) && !!(new Int32Array(1)['set']), + 'JS engine does not provide full typed array support'); + +var buffer = new ArrayBuffer(TOTAL_MEMORY); +HEAP8 = new Int8Array(buffer); +HEAP16 = new Int16Array(buffer); +HEAP32 = new Int32Array(buffer); +HEAPU8 = new Uint8Array(buffer); +HEAPU16 = new Uint16Array(buffer); +HEAPU32 = new Uint32Array(buffer); +HEAPF32 = new Float32Array(buffer); +HEAPF64 = new Float64Array(buffer); + +// Endianness check (note: assumes compiler arch was little-endian) +HEAP32[0] = 255; +assert(HEAPU8[0] === 255 && HEAPU8[3] === 0, 'Typed arrays 2 must be run on a little-endian system'); + +Module['HEAP'] = HEAP; +Module['buffer'] = buffer; +Module['HEAP8'] = HEAP8; +Module['HEAP16'] = HEAP16; +Module['HEAP32'] = HEAP32; +Module['HEAPU8'] = HEAPU8; +Module['HEAPU16'] = HEAPU16; +Module['HEAPU32'] = HEAPU32; +Module['HEAPF32'] = HEAPF32; +Module['HEAPF64'] = HEAPF64; + +function callRuntimeCallbacks(callbacks) { + while(callbacks.length > 0) { + var callback = callbacks.shift(); + if (typeof callback == 'function') { + callback(); + continue; + } + var func = callback.func; + if (typeof func === 'number') { + if (callback.arg === undefined) { + Runtime.dynCall('v', func); + } else { + Runtime.dynCall('vi', func, [callback.arg]); + } + } else { + func(callback.arg === undefined ? null : callback.arg); + } + } +} + +var __ATPRERUN__ = []; // functions called before the runtime is initialized +var __ATINIT__ = []; // functions called during startup +var __ATMAIN__ = []; // functions called when main() is to be run +var __ATEXIT__ = []; // functions called during shutdown +var __ATPOSTRUN__ = []; // functions called after the runtime has exited + +var runtimeInitialized = false; +var runtimeExited = false; + +function preRun() { + // compatibility - merge in anything from Module['preRun'] at this time + if (Module['preRun']) { + if (typeof Module['preRun'] == 'function') Module['preRun'] = [Module['preRun']]; + while (Module['preRun'].length) { + addOnPreRun(Module['preRun'].shift()); + } + } + callRuntimeCallbacks(__ATPRERUN__); +} + +function ensureInitRuntime() { + if (runtimeInitialized) return; + runtimeInitialized = true; + callRuntimeCallbacks(__ATINIT__); +} + +function preMain() { + callRuntimeCallbacks(__ATMAIN__); +} + +function exitRuntime() { + callRuntimeCallbacks(__ATEXIT__); + runtimeExited = true; +} + +function postRun() { + // compatibility - merge in anything from Module['postRun'] at this time + if (Module['postRun']) { + if (typeof Module['postRun'] == 'function') Module['postRun'] = [Module['postRun']]; + while (Module['postRun'].length) { + addOnPostRun(Module['postRun'].shift()); + } + } + callRuntimeCallbacks(__ATPOSTRUN__); +} + +function addOnPreRun(cb) { + __ATPRERUN__.unshift(cb); +} +Module['addOnPreRun'] = Module.addOnPreRun = addOnPreRun; + +function addOnInit(cb) { + __ATINIT__.unshift(cb); +} +Module['addOnInit'] = Module.addOnInit = addOnInit; + +function addOnPreMain(cb) { + __ATMAIN__.unshift(cb); +} +Module['addOnPreMain'] = Module.addOnPreMain = addOnPreMain; + +function addOnExit(cb) { + __ATEXIT__.unshift(cb); +} +Module['addOnExit'] = Module.addOnExit = addOnExit; + +function addOnPostRun(cb) { + __ATPOSTRUN__.unshift(cb); +} +Module['addOnPostRun'] = Module.addOnPostRun = addOnPostRun; + +// Tools + + +function intArrayFromString(stringy, dontAddNull, length /* optional */) { + var ret = (new Runtime.UTF8Processor()).processJSString(stringy); + if (length) { + ret.length = length; + } + if (!dontAddNull) { + ret.push(0); + } + return ret; +} +Module['intArrayFromString'] = intArrayFromString; + +function intArrayToString(array) { + var ret = []; + for (var i = 0; i < array.length; i++) { + var chr = array[i]; + if (chr > 0xFF) { + chr &= 0xFF; + } + ret.push(String.fromCharCode(chr)); + } + return ret.join(''); +} +Module['intArrayToString'] = intArrayToString; + +function writeStringToMemory(string, buffer, dontAddNull) { + var array = intArrayFromString(string, dontAddNull); + var i = 0; + while (i < array.length) { + var chr = array[i]; + HEAP8[(((buffer)+(i))>>0)]=chr; + i = i + 1; + } +} +Module['writeStringToMemory'] = writeStringToMemory; + +function writeArrayToMemory(array, buffer) { + for (var i = 0; i < array.length; i++) { + HEAP8[(((buffer)+(i))>>0)]=array[i]; + } +} +Module['writeArrayToMemory'] = writeArrayToMemory; + +function writeAsciiToMemory(str, buffer, dontAddNull) { + for (var i = 0; i < str.length; i++) { + HEAP8[(((buffer)+(i))>>0)]=str.charCodeAt(i); + } + if (!dontAddNull) HEAP8[(((buffer)+(str.length))>>0)]=0; +} +Module['writeAsciiToMemory'] = writeAsciiToMemory; + +function unSign(value, bits, ignore) { + if (value >= 0) { + return value; + } + return bits <= 32 ? 2*Math.abs(1 << (bits-1)) + value // Need some trickery, since if bits == 32, we are right at the limit of the bits JS uses in bitshifts + : Math.pow(2, bits) + value; +} +function reSign(value, bits, ignore) { + if (value <= 0) { + return value; + } + var half = bits <= 32 ? Math.abs(1 << (bits-1)) // abs is needed if bits == 32 + : Math.pow(2, bits-1); + if (value >= half && (bits <= 32 || value > half)) { // for huge values, we can hit the precision limit and always get true here. so don't do that + // but, in general there is no perfect solution here. With 64-bit ints, we get rounding and errors + // TODO: In i64 mode 1, resign the two parts separately and safely + value = -2*half + value; // Cannot bitshift half, as it may be at the limit of the bits JS uses in bitshifts + } + return value; +} + +// check for imul support, and also for correctness ( https://bugs.webkit.org/show_bug.cgi?id=126345 ) +if (!Math['imul'] || Math['imul'](0xffffffff, 5) !== -5) Math['imul'] = function imul(a, b) { + var ah = a >>> 16; + var al = a & 0xffff; + var bh = b >>> 16; + var bl = b & 0xffff; + return (al*bl + ((ah*bl + al*bh) << 16))|0; +}; +Math.imul = Math['imul']; + + +var Math_abs = Math.abs; +var Math_cos = Math.cos; +var Math_sin = Math.sin; +var Math_tan = Math.tan; +var Math_acos = Math.acos; +var Math_asin = Math.asin; +var Math_atan = Math.atan; +var Math_atan2 = Math.atan2; +var Math_exp = Math.exp; +var Math_log = Math.log; +var Math_sqrt = Math.sqrt; +var Math_ceil = Math.ceil; +var Math_floor = Math.floor; +var Math_pow = Math.pow; +var Math_imul = Math.imul; +var Math_fround = Math.fround; +var Math_min = Math.min; + +// A counter of dependencies for calling run(). If we need to +// do asynchronous work before running, increment this and +// decrement it. Incrementing must happen in a place like +// PRE_RUN_ADDITIONS (used by emcc to add file preloading). +// Note that you can add dependencies in preRun, even though +// it happens right before run - run will be postponed until +// the dependencies are met. +var runDependencies = 0; +var runDependencyWatcher = null; +var dependenciesFulfilled = null; // overridden to take different actions when all run dependencies are fulfilled + +function addRunDependency(id) { + runDependencies++; + if (Module['monitorRunDependencies']) { + Module['monitorRunDependencies'](runDependencies); + } +} +Module['addRunDependency'] = addRunDependency; +function removeRunDependency(id) { + runDependencies--; + if (Module['monitorRunDependencies']) { + Module['monitorRunDependencies'](runDependencies); + } + if (runDependencies == 0) { + if (runDependencyWatcher !== null) { + clearInterval(runDependencyWatcher); + runDependencyWatcher = null; + } + if (dependenciesFulfilled) { + var callback = dependenciesFulfilled; + dependenciesFulfilled = null; + callback(); // can add another dependenciesFulfilled + } + } +} +Module['removeRunDependency'] = removeRunDependency; + +Module["preloadedImages"] = {}; // maps url to image data +Module["preloadedAudios"] = {}; // maps url to audio data + + +var memoryInitializer = null; + +// === Body === + + + + + +STATIC_BASE = 8; + +STATICTOP = STATIC_BASE + 33040; + /* global initializers */ __ATINIT__.push(); + + +/* memory initializer */ allocate([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,59,140,1,189,241,36,255,248,37,195,1,96,220,55,0,183,76,62,255,195,66,61,0,50,76,164,1,225,164,76,255,76,61,163,255,117,62,31,0,81,145,64,255,118,65,14,0,162,115,214,255,6,138,46,0,124,230,244,255,10,138,143,0,52,26,194,0,184,244,76,0,129,143,41,1,190,244,19,255,123,170,122,255,98,129,68,0,121,213,147,0,86,101,30,255,161,103,155,0,140,89,67,255,239,229,190,1,67,11,181,0,198,240,137,254,238,69,188,255,67,151,238,0,19,42,108,255,229,85,113,1,50,68,135,255,17,106,9,0,50,103,1,255,80,1,168,1,35,152,30,255,16,168,185,1,56,89,232,255,101,210,252,0,41,250,71,0,204,170,79,255,14,46,239,255,80,77,239,0,189,214,75,255,17,141,249,0,38,80,76,255,190,85,117,0,86,228,170,0,156,216,208,1,195,207,164,255,150,66,76,255,175,225,16,255,141,80,98,1,76,219,242,0,198,162,114,0,46,218,152,0,155,43,241,254,155,160,104,255,51,187,165,0,2,17,175,0,66,84,160,1,247,58,30,0,35,65,53,254,69,236,191,0,45,134,245,1,163,123,221,0,32,110,20,255,52,23,165,0,186,214,71,0,233,176,96,0,242,239,54,1,57,89,138,0,83,0,84,255,136,160,100,0,92,142,120,254,104,124,190,0,181,177,62,255,250,41,85,0,152,130,42,1,96,252,246,0,151,151,63,254,239,133,62,0,32,56,156,0,45,167,189,255,142,133,179,1,131,86,211,0,187,179,150,254,250,170,14,255,210,163,78,0,37,52,151,0,99,77,26,0,238,156,213,255,213,192,209,1,73,46,84,0,20,65,41,1,54,206,79,0,201,131,146,254,170,111,24,255,177,33,50,254,171,38,203,255,78,247,116,0,209,221,153,0,133,128,178,1,58,44,25,0,201,39,59,1,189,19,252,0,49,229,210,1,117,187,117,0,181,179,184,1,0,114,219,0,48,94,147,0,245,41,56,0,125,13,204,254,244,173,119,0,44,221,32,254,84,234,20,0,249,160,198,1,236,126,234,255,47,99,168,254,170,226,153,255,102,179,216,0,226,141,122,255,122,66,153,254,182,245,134,0,227,228,25,1,214,57,235,255,216,173,56,255,181,231,210,0,119,128,157,255,129,95,136,255,110,126,51,0,2,169,183,255,7,130,98,254,69,176,94,255,116,4,227,1,217,242,145,255,202,173,31,1,105,1,39,255,46,175,69,0,228,47,58,255,215,224,69,254,207,56,69,255,16,254,139,255,23,207,212,255,202,20,126,255,95,213,96,255,9,176,33,0,200,5,207,255,241,42,128,254,35,33,192,255,248,229,196,1,129,17,120,0,251,103,151,255,7,52,112,255,140,56,66,255,40,226,245,255,217,70,37,254,172,214,9,255,72,67,134,1,146,192,214,255,44,38,112,0,68,184,75,255,206,90,251,0,149,235,141,0,181,170,58,0,116,244,239,0,92,157,2,0,102,173,98,0,233,137,96,1,127,49,203,0,5,155,148,0,23,148,9,255,211,122,12,0,34,134,26,255,219,204,136,0,134,8,41,255,224,83,43,254,85,25,247,0,109,127,0,254,169,136,48,0,238,119,219,255,231,173,213,0,206,18,254,254,8,186,7,255,126,9,7,1,111,42,72,0,111,52,236,254,96,63,141,0,147,191,127,254,205,78,192,255,14,106,237,1,187,219,76,0,175,243,187,254,105,89,173,0,85,25,89,1,162,243,148,0,2,118,209,254,33,158,9,0,139,163,46,255,93,70,40,0,108,42,142,254,111,252,142,255,155,223,144,0,51,229,167,255,73,252,155,255,94,116,12,255,152,160,218,255,156,238,37,255,179,234,207,255,197,0,179,255,154,164,141,0,225,196,104,0,10,35,25,254,209,212,242,255,97,253,222,254,184,101,229,0,222,18,127,1,164,136,135,255,30,207,140,254,146,97,243,0,129,192,26,254,201,84,33,255,111,10,78,255,147,81,178,255,4,4,24,0,161,238,215,255,6,141,33,0,53,215,14,255,41,181,208,255,231,139,157,0,179,203,221,255,255,185,113,0,189,226,172,255,113,66,214,255,202,62,45,255,102,64,8,255,78,174,16,254,133,117,68,255,182,120,89,255,133,114,211,0,189,110,21,255,15,10,106,0,41,192,1,0,152,232,121,255,188,60,160,255,153,113,206,255,0,183,226,254,180,13,72,255,176,160,14,254,211,201,134,255,158,24,143,0,127,105,53,0,96,12,189,0,167,215,251,255,159,76,128,254,106,101,225,255,30,252,4,0,146,12,174,0,89,241,178,254,10,229,166,255,123,221,42,254,30,20,212,0,82,128,3,0,48,209,243,0,119,121,64,255,50,227,156,255,0,110,197,1,103,27,144,0,133,59,140,1,189,241,36,255,248,37,195,1,96,220,55,0,183,76,62,255,195,66,61,0,50,76,164,1,225,164,76,255,76,61,163,255,117,62,31,0,81,145,64,255,118,65,14,0,162,115,214,255,6,138,46,0,124,230,244,255,10,138,143,0,52,26,194,0,184,244,76,0,129,143,41,1,190,244,19,255,123,170,122,255,98,129,68,0,121,213,147,0,86,101,30,255,161,103,155,0,140,89,67,255,239,229,190,1,67,11,181,0,198,240,137,254,238,69,188,255,234,113,60,255,37,255,57,255,69,178,182,254,128,208,179,0,118,26,125,254,3,7,214,255,241,50,77,255,85,203,197,255,211,135,250,255,25,48,100,255,187,213,180,254,17,88,105,0,83,209,158,1,5,115,98,0,4,174,60,254,171,55,110,255,217,181,17,255,20,188,170,0,146,156,102,254,87,214,174,255,114,122,155,1,233,44,170,0,127,8,239,1,214,236,234,0,175,5,219,0,49,106,61,255,6,66,208,255,2,106,110,255,81,234,19,255,215,107,192,255,67,151,238,0,19,42,108,255,229,85,113,1,50,68,135,255,17,106,9,0,50,103,1,255,80,1,168,1,35,152,30,255,16,168,185,1,56,89,232,255,101,210,252,0,41,250,71,0,204,170,79,255,14,46,239,255,80,77,239,0,189,214,75,255,17,141,249,0,38,80,76,255,190,85,117,0,86,228,170,0,156,216,208,1,195,207,164,255,150,66,76,255,175,225,16,255,141,80,98,1,76,219,242,0,198,162,114,0,46,218,152,0,155,43,241,254,155,160,104,255,178,9,252,254,100,110,212,0,14,5,167,0,233,239,163,255,28,151,157,1,101,146,10,255,254,158,70,254,71,249,228,0,88,30,50,0,68,58,160,255,191,24,104,1,129,66,129,255,192,50,85,255,8,179,138,255,38,250,201,0,115,80,160,0,131,230,113,0,125,88,147,0,90,68,199,0,253,76,158,0,28,255,118,0,113,250,254,0,66,75,46,0,230,218,43,0,229,120,186,1,148,68,43,0,136,124,238,1,187,107,197,255,84,53,246,255,51,116,254,255,51,187,165,0,2,17,175,0,66,84,160,1,247,58,30,0,35,65,53,254,69,236,191,0,45,134,245,1,163,123,221,0,32,110,20,255,52,23,165,0,186,214,71,0,233,176,96,0,242,239,54,1,57,89,138,0,83,0,84,255,136,160,100,0,92,142,120,254,104,124,190,0,181,177,62,255,250,41,85,0,152,130,42,1,96,252,246,0,151,151,63,254,239,133,62,0,32,56,156,0,45,167,189,255,142,133,179,1,131,86,211,0,187,179,150,254,250,170,14,255,68,113,21,255,222,186,59,255,66,7,241,1,69,6,72,0,86,156,108,254,55,167,89,0,109,52,219,254,13,176,23,255,196,44,106,255,239,149,71,255,164,140,125,255,159,173,1,0,51,41,231,0,145,62,33,0,138,111,93,1,185,83,69,0,144,115,46,0,97,151,16,255,24,228,26,0,49,217,226,0,113,75,234,254,193,153,12,255,182,48,96,255,14,13,26,0,128,195,249,254,69,193,59,0,132,37,81,254,125,106,60,0,214,240,169,1,164,227,66,0,210,163,78,0,37,52,151,0,99,77,26,0,238,156,213,255,213,192,209,1,73,46,84,0,20,65,41,1,54,206,79,0,201,131,146,254,170,111,24,255,177,33,50,254,171,38,203,255,78,247,116,0,209,221,153,0,133,128,178,1,58,44,25,0,201,39,59,1,189,19,252,0,49,229,210,1,117,187,117,0,181,179,184,1,0,114,219,0,48,94,147,0,245,41,56,0,125,13,204,254,244,173,119,0,44,221,32,254,84,234,20,0,249,160,198,1,236,126,234,255,143,62,221,0,129,89,214,255,55,139,5,254,68,20,191,255,14,204,178,1,35,195,217,0,47,51,206,1,38,246,165,0,206,27,6,254,158,87,36,0,217,52,146,255,125,123,215,255,85,60,31,255,171,13,7,0,218,245,88,254,252,35,60,0,55,214,160,255,133,101,56,0,224,32,19,254,147,64,234,0,26,145,162,1,114,118,125,0,248,252,250,0,101,94,196,255,198,141,226,254,51,42,182,0,135,12,9,254,109,172,210,255,197,236,194,1,241,65,154,0,48,156,47,255,153,67,55,255,218,165,34,254,74,180,179,0,218,66,71,1,88,122,99,0,212,181,219,255,92,42,231,255,239,0,154,0,245,77,183,255,94,81,170,1,18,213,216,0,171,93,71,0,52,94,248,0,18,151,161,254,197,209,66,255,174,244,15,254,162,48,183,0,49,61,240,254,182,93,195,0,199,228,6,1,200,5,17,255,137,45,237,255,108,148,4,0,90,79,237,255,39,63,77,255,53,82,207,1,142,22,118,255,101,232,18,1,92,26,67,0,5,200,88,255,33,168,138,255,149,225,72,0,2,209,27,255,44,245,168,1,220,237,17,255,30,211,105,254,141,238,221,0,128,80,245,254,111,254,14,0,222,95,190,1,223,9,241,0,146,76,212,255,108,205,104,255,63,117,153,0,144,69,48,0,35,228,111,0,192,33,193,255,112,214,190,254,115,152,151,0,23,102,88,0,51,74,248,0,226,199,143,254,204,162,101,255,208,97,189,1,245,104,18,0,230,246,30,255,23,148,69,0,110,88,52,254,226,181,89,255,208,47,90,254,114,161,80,255,33,116,248,0,179,152,87,255,69,144,177,1,88,238,26,255,58,32,113,1,1,77,69,0,59,121,52,255,152,238,83,0,52,8,193,0,231,39,233,255,199,34,138,0,222,68,173,0,91,57,242,254,220,210,127,255,192,7,246,254,151,35,187,0,195,236,165,0,111,93,206,0,212,247,133,1,154,133,209,255,155,231,10,0,64,78,38,0,122,249,100,1,30,19,97,255,62,91,249,1,248,133,77,0,197,63,168,254,116,10,82,0,184,236,113,254,212,203,194,255,61,100,252,254,36,5,202,255,119,91,153,255,129,79,29,0,103,103,171,254,237,215,111,255,216,53,69,0,239,240,23,0,194,149,221,255,38,225,222,0,232,255,180,254,118,82,133,255,57,209,177,1,139,232,133,0,158,176,46,254,194,115,46,0,88,247,229,1,28,103,191,0,221,222,175,254,149,235,44,0,151,228,25,254,218,105,103,0,142,85,210,0,149,129,190,255,213,65,94,254,117,134,224,255,82,198,117,0,157,221,220,0,163,101,36,0,197,114,37,0,104,172,166,254,11,182,0,0,81,72,188,255,97,188,16,255,69,6,10,0,199,147,145,255,8,9,115,1,65,214,175,255,217,173,209,0,80,127,166,0,247,229,4,254,167,183,124,255,90,28,204,254,175,59,240,255,11,41,248,1,108,40,51,255,144,177,195,254,150,250,126,0,138,91,65,1,120,60,222,255,245,193,239,0,29,214,189,255,128,2,25,0,80,154,162,0,77,220,107,1,234,205,74,255,54,166,103,255,116,72,9,0,228,94,47,255,30,200,25,255,35,214,89,255,61,176,140,255,83,226,163,255,75,130,172,0,128,38,17,0,95,137,152,255,215,124,159,1,79,93,0,0,148,82,157,254,195,130,251,255,40,202,76,255,251,126,224,0,157,99,62,254,207,7,225,255,96,68,195,0,140,186,157,255,131,19,231,255,42,128,254,0,52,219,61,254,102,203,72,0,141,7,11,255,186,164,213,0,31,122,119,0,133,242,145,0,208,252,232,255,91,213,182,255,143,4,250,254,249,215,74,0,165,30,111,1,171,9,223,0,229,123,34,1,92,130,26,255,77,155,45,1,195,139,28,255,59,224,78,0,136,17,247,0,108,121,32,0,79,250,189,255,96,227,252,254,38,241,62,0,62,174,125,255,155,111,93,255,10,230,206,1,97,197,40,255,0,49,57,254,65,250,13,0,18,251,150,255,220,109,210,255,5,174,166,254,44,129,189,0,235,35,147,255,37,247,141,255,72,141,4,255,103,107,255,0,247,90,4,0,53,44,42,0,2,30,240,0,4,59,63,0,88,78,36,0,113,167,180,0,190,71,193,255,199,158,164,255,58,8,172,0,77,33,12,0,65,63,3,0,153,77,33,255,172,254,102,1,228,221,4,255,87,30,254,1,146,41,86,255,138,204,239,254,108,141,17,255,187,242,135,0,210,208,127,0,68,45,14,254,73,96,62,0,81,60,24,255,170,6,36,255,3,249,26,0,35,213,109,0,22,129,54,255,21,35,225,255,234,61,56,255,58,217,6,0,143,124,88,0,236,126,66,0,209,38,183,255,34,238,6,255,174,145,102,0,95,22,211,0,196,15,153,254,46,84,232,255,117,34,146,1,231,250,74,255,27,134,100,1,92,187,195,255,170,198,112,0,120,28,42,0,209,70,67,0,29,81,31,0,29,168,100,1,169,173,160,0,107,35,117,0,62,96,59,255,81,12,69,1,135,239,190,255,220,252,18,0,163,220,58,255,137,137,188,255,83,102,109,0,96,6,76,0,234,222,210,255,185,174,205,1,60,158,213,255,13,241,214,0,172,129,140,0,93,104,242,0,192,156,251,0,43,117,30,0,225,81,158,0,127,232,218,0,226,28,203,0,233,27,151,255,117,43,5,255,242,14,47,255,33,20,6,0,137,251,44,254,27,31,245,255,183,214,125,254,40,121,149,0,186,158,213,255,89,8,227,0,69,88,0,254,203,135,225,0,201,174,203,0,147,71,184,0,18,121,41,254,94,5,78,0,224,214,240,254,36,5,180,0,251,135,231,1,163,138,212,0,210,249,116,254,88,129,187,0,19,8,49,254,62,14,144,255,159,76,211,0,214,51,82,0,109,117,228,254,103,223,203,255,75,252,15,1,154,71,220,255,23,13,91,1,141,168,96,255,181,182,133,0,250,51,55,0,234,234,212,254,175,63,158,0,39,240,52,1,158,189,36,255,213,40,85,1,32,180,247,255,19,102,26,1,84,24,97,255,69,21,222,0,148,139,122,255,220,213,235,1,232,203,255,0,121,57,147,0,227,7,154,0,53,22,147,1,72,1,225,0,82,134,48,254,83,60,157,255,145,72,169,0,34,103,239,0,198,233,47,0,116,19,4,255,184,106,9,255,183,129,83,0,36,176,230,1,34,103,72,0,219,162,134,0,245,42,158,0,32,149,96,254,165,44,144,0,202,239,72,254,215,150,5,0,42,66,36,1,132,215,175,0,86,174,86,255,26,197,156,255,49,232,135,254,103,182,82,0,253,128,176,1,153,178,122,0,245,250,10,0,236,24,178,0,137,106,132,0,40,29,41,0,50,30,152,255,124,105,38,0,230,191,75,0,143,43,170,0,44,131,20,255,44,13,23,255,237,255,155,1,159,109,100,255,112,181,24,255,104,220,108,0,55,211,131,0,99,12,213,255,152,151,145,255,238,5,159,0,97,155,8,0,33,108,81,0,1,3,103,0,62,109,34,255,250,155,180,0,32,71,195,255,38,70,145,1,159,95,245,0,69,229,101,1,136,28,240,0,79,224,25,0,78,110,121,255,248,168,124,0,187,128,247,0,2,147,235,254,79,11,132,0,70,58,12,1,181,8,163,255,79,137,133,255,37,170,11,255,141,243,85,255,176,231,215,255,204,150,164,255,239,215,39,255,46,87,156,254,8,163,88,255,172,34,232,0,66,44,102,255,27,54,41,254,236,99,87,255,41,123,169,1,52,114,43,0,117,134,40,0,155,134,26,0,231,207,91,254,35,132,38,255,19,102,125,254,36,227,133,255,118,3,113,255,29,13,124,0,152,96,74,1,88,146,206,255,167,191,220,254,162,18,88,255,182,100,23,0,31,117,52,0,81,46,106,1,12,2,7,0,69,80,201,1,209,246,172,0,12,48,141,1,224,211,88,0,116,226,159,0,122,98,130,0,65,236,234,1,225,226,9,255,207,226,123,1,89,214,59,0,112,135,88,1,90,244,203,255,49,11,38,1,129,108,186,0,89,112,15,1,101,46,204,255,127,204,45,254,79,255,221,255,51,73,18,255,127,42,101,255,241,21,202,0,160,227,7,0,105,50,236,0,79,52,197,255,104,202,208,1,180,15,16,0,101,197,78,255,98,77,203,0,41,185,241,1,35,193,124,0,35,155,23,255,207,53,192,0,11,125,163,1,249,158,185,255,4,131,48,0,21,93,111,255,61,121,231,1,69,200,36,255,185,48,185,255,111,238,21,255,39,50,25,255,99,215,163,255,87,212,30,255,164,147,5,255,128,6,35,1,108,223,110,255,194,76,178,0,74,101,180,0,243,47,48,0,174,25,43,255,82,173,253,1,54,114,192,255,40,55,91,0,215,108,176,255,11,56,7,0,224,233,76,0,209,98,202,254,242,25,125,0,44,193,93,254,203,8,177,0,135,176,19,0,112,71,213,255,206,59,176,1,4,67,26,0,14,143,213,254,42,55,208,255,60,67,120,0,193,21,163,0,99,164,115,0,10,20,118,0,156,212,222,254,160,7,217,255,114,245,76,1,117,59,123,0,176,194,86,254,213,15,176,0,78,206,207,254,213,129,59,0,233,251,22,1,96,55,152,255,236,255,15,255,197,89,84,255,93,149,133,0,174,160,113,0,234,99,169,255,152,116,88,0,144,164,83,255,95,29,198,255,34,47,15,255,99,120,134,255,5,236,193,0,249,247,126,255,147,187,30,0,50,230,117,255,108,217,219,255,163,81,166,255,72,25,169,254,155,121,79,255,28,155,89,254,7,126,17,0,147,65,33,1,47,234,253,0,26,51,18,0,105,83,199,255,163,196,230,0,113,248,164,0,226,254,218,0,189,209,203,255,164,247,222,254,255,35,165,0,4,188,243,1,127,179,71,0,37,237,254,255,100,186,240,0,5,57,71,254,103,72,73,255,244,18,81,254,229,210,132,255,238,6,180,255,11,229,174,255,227,221,192,1,17,49,28,0,163,215,196,254,9,118,4,255,51,240,71,0,113,129,109,255,76,240,231,0,188,177,127,0,125,71,44,1,26,175,243,0,94,169,25,254,27,230,29,0,15,139,119,1,168,170,186,255,172,197,76,255,252,75,188,0,137,124,196,0,72,22,96,255,45,151,249,1,220,145,100,0,64,192,159,255,120,239,226,0,129,178,146,0,0,192,125,0,235,138,234,0,183,157,146,0,83,199,192,255,184,172,72,255,73,225,128,0,77,6,250,255,186,65,67,0,104,246,207,0,188,32,138,255,218,24,242,0,67,138,81,254,237,129,121,255,20,207,150,1,41,199,16,255,6,20,128,0,159,118,5,0,181,16,143,255,220,38,15,0,23,64,147,254,73,26,13,0,87,228,57,1,204,124,128,0,43,24,223,0,219,99,199,0,22,75,20,255,19,27,126,0,157,62,215,0,110,29,230,0,179,167,255,1,54,252,190,0,221,204,182,254,179,158,65,255,81,157,3,0,194,218,159,0,170,223,0,0,224,11,32,255,38,197,98,0,168,164,37,0,23,88,7,1,164,186,110,0,96,36,134,0,234,242,229,0,250,121,19,0,242,254,112,255,3,47,94,1,9,239,6,255,81,134,153,254,214,253,168,255,67,124,224,0,245,95,74,0,28,30,44,254,1,109,220,255,178,89,89,0,252,36,76,0,24,198,46,255,76,77,111,0,134,234,136,255,39,94,29,0,185,72,234,255,70,68,135,255,231,102,7,254,77,231,140,0,167,47,58,1,148,97,118,255,16,27,225,1,166,206,143,255,110,178,214,255,180,131,162,0,143,141,225,1,13,218,78,255,114,153,33,1,98,104,204,0,175,114,117,1,167,206,75,0,202,196,83,1,58,64,67,0,138,47,111,1,196,247,128,255,137,224,224,254,158,112,207,0,154,100,255,1,134,37,107,0,198,128,79,255,127,209,155,255,163,254,185,254,60,14,243,0,31,219,112,254,29,217,65,0,200,13,116,254,123,60,196,255,224,59,184,254,242,89,196,0,123,16,75,254,149,16,206,0,69,254,48,1,231,116,223,255,209,160,65,1,200,80,98,0,37,194,184,254,148,63,34,0,139,240,65,255,217,144,132,255,56,38,45,254,199,120,210,0,108,177,166,255,160,222,4,0,220,126,119,254,165,107,160,255,82,220,248,1,241,175,136,0,144,141,23,255,169,138,84,0,160,137,78,255,226,118,80,255,52,27,132,255,63,96,139,255,152,250,39,0,188,155,15,0,232,51,150,254,40,15,232,255,240,229,9,255,137,175,27,255,75,73,97,1,218,212,11,0,135,5,162,1,107,185,213,0,2,249,107,255,40,242,70,0,219,200,25,0,25,157,13,0,67,82,80,255,196,249,23,255,145,20,149,0,50,72,146,0,94,76,148,1,24,251,65,0,31,192,23,0,184,212,201,255,123,233,162,1,247,173,72,0,162,87,219,254,126,134,89,0,159,11,12,254,166,105,29,0,73,27,228,1,113,120,183,255,66,163,109,1,212,143,11,255,159,231,168,1,255,128,90,0,57,14,58,254,89,52,10,255,253,8,163,1,0,145,210,255,10,129,85,1,46,181,27,0,103,136,160,254,126,188,209,255,34,35,111,0,215,219,24,255,212,11,214,254,101,5,118,0,232,197,133,255,223,167,109,255,237,80,86,255,70,139,94,0,158,193,191,1,155,15,51,255,15,190,115,0,78,135,207,255,249,10,27,1,181,125,233,0,95,172,13,254,170,213,161,255,39,236,138,255,95,93,87,255,190,128,95,0,125,15,206,0,166,150,159,0,227,15,158,255,206,158,120,255,42,141,128,0,101,178,120,1,156,109,131,0,218,14,44,254,247,168,206,255,212,112,28,0,112,17,228,255,90,16,37,1,197,222,108,0,254,207,83,255,9,90,243,255,243,244,172,0,26,88,115,255,205,116,122,0,191,230,193,0,180,100,11,1,217,37,96,255,154,78,156,0,235,234,31,255,206,178,178,255,149,192,251,0,182,250,135,0,246,22,105,0,124,193,109,255,2,210,149,255,169,17,170,0,0,96,110,255,117,9,8,1,50,123,40,255,193,189,99,0,34,227,160,0,48,80,70,254,211,51,236,0,45,122,245,254,44,174,8,0,173,37,233,255,158,65,171,0,122,69,215,255,90,80,2,255,131,106,96,254,227,114,135,0,205,49,119,254,176,62,64,255,82,51,17,255,241,20,243,255,130,13,8,254,128,217,243,255,162,27,1,254,90,118,241,0,246,198,246,255,55,16,118,255,200,159,157,0,163,17,1,0,140,107,121,0,85,161,118,255,38,0,149,0,156,47,238,0,9,166,166,1,75,98,181,255,50,74,25,0,66,15,47,0,139,225,159,0,76,3,142,255,14,238,184,0,11,207,53,255,183,192,186,1,171,32,174,255,191,76,221,1,247,170,219,0,25,172,50,254,217,9,233,0,203,126,68,255,183,92,48,0,127,167,183,1,65,49,254,0,16,63,127,1,254,21,170,255,59,224,127,254,22,48,63,255,27,78,130,254,40,195,29,0,250,132,112,254,35,203,144,0,104,169,168,0,207,253,30,255,104,40,38,254,94,228,88,0,206,16,128,255,212,55,122,255,223,22,234,0,223,197,127,0,253,181,181,1,145,102,118,0,236,153,36,255,212,217,72,255,20,38,24,254,138,62,62,0,152,140,4,0,230,220,99,255,1,21,212,255,148,201,231,0,244,123,9,254,0,171,210,0,51,58,37,255,1,255,14,255,244,183,145,254,0,242,166,0,22,74,132,0,121,216,41,0,95,195,114,254,133,24,151,255,156,226,231,255,247,5,77,255,246,148,115,254,225,92,81,255,222,80,246,254,170,123,89,255,74,199,141,0,29,20,8,255,138,136,70,255,93,75,92,0,221,147,49,254,52,126,226,0,229,124,23,0,46,9,181,0,205,64,52,1,131,254,28,0,151,158,212,0,131,64,78,0,206,25,171,0,0,230,139,0,191,253,110,254,103,247,167,0,64,40,40,1,42,165,241,255,59,75,228,254,124,243,189,255,196,92,178,255,130,140,86,255,141,89,56,1,147,198,5,255,203,248,158,254,144,162,141,0,11,172,226,0,130,42,21,255,1,167,143,255,144,36,36,255,48,88,164,254,168,170,220,0,98,71,214,0,91,208,79,0,159,76,201,1,166,42,214,255,69,255,0,255,6,128,125,255,190,1,140,0,146,83,218,255,215,238,72,1,122,127,53,0,189,116,165,255,84,8,66,255,214,3,208,255,213,110,133,0,195,168,44,1,158,231,69,0,162,64,200,254,91,58,104,0,182,58,187,254,249,228,136,0,203,134,76,254,99,221,233,0,75,254,214,254,80,69,154,0,64,152,248,254,236,136,202,255,157,105,153,254,149,175,20,0,22,35,19,255,124,121,233,0,186,250,198,254,132,229,139,0,137,80,174,255,165,125,68,0,144,202,148,254,235,239,248,0,135,184,118,0,101,94,17,255,122,72,70,254,69,130,146,0,127,222,248,1,69,127,118,255,30,82,215,254,188,74,19,255,229,167,194,254,117,25,66,255,65,234,56,254,213,22,156,0,151,59,93,254,45,28,27,255,186,126,164,255,32,6,239,0,127,114,99,1,219,52,2,255,99,96,166,254,62,190,126,255,108,222,168,1,75,226,174,0,230,226,199,0,60,117,218,255,252,248,20,1,214,188,204,0,31,194,134,254,123,69,192,255,169,173,36,254,55,98,91,0,223,42,102,254,137,1,102,0,157,90,25,0,239,122,64,255,252,6,233,0,7,54,20,255,82,116,174,0,135,37,54,255,15,186,125,0,227,112,175,255,100,180,225,255,42,237,244,255,244,173,226,254,248,18,33,0,171,99,150,255,74,235,50,255,117,82,32,254,106,168,237,0,207,109,208,1,228,9,186,0,135,60,169,254,179,92,143,0,244,170,104,255,235,45,124,255,70,99,186,0,117,137,183,0,224,31,215,0,40,9,100,0,26,16,95,1,68,217,87,0,8,151,20,255,26,100,58,255,176,165,203,1,52,118,70,0,7,32,254,254,244,254,245,255,167,144,194,255,125,113,23,255,176,121,181,0,136,84,209,0,138,6,30,255,89,48,28,0,33,155,14,255,25,240,154,0,141,205,109,1,70,115,62,255,20,40,107,254,138,154,199,255,94,223,226,255,157,171,38,0,163,177,25,254,45,118,3,255,14,222,23,1,209,190,81,255,118,123,232,1,13,213,101,255,123,55,123,254,27,246,165,0,50,99,76,255,140,214,32,255,97,65,67,255,24,12,28,0,174,86,78,1,64,247,96,0,160,135,67,0,66,55,243,255,147,204,96,255,26,6,33,255,98,51,83,1,153,213,208,255,2,184,54,255,25,218,11,0,49,67,246,254,18,149,72,255,13,25,72,0,42,79,214,0,42,4,38,1,27,139,144,255,149,187,23,0,18,164,132,0,245,84,184,254,120,198,104,255,126,218,96,0,56,117,234,255,13,29,214,254,68,47,10,255,167,154,132,254,152,38,198,0,66,178,89,255,200,46,171,255,13,99,83,255,210,187,253,255,170,45,42,1,138,209,124,0,214,162,141,0,12,230,156,0,102,36,112,254,3,147,67,0,52,215,123,255,233,171,54,255,98,137,62,0,247,218,39,255,231,218,236,0,247,191,127,0,195,146,84,0,165,176,92,255,19,212,94,255,17,74,227,0,88,40,153,1,198,147,1,255,206,67,245,254,240,3,218,255,61,141,213,255,97,183,106,0,195,232,235,254,95,86,154,0,209,48,205,254,118,209,241,255,240,120,223,1,213,29,159,0,163,127,147,255,13,218,93,0,85,24,68,254,70,20,80,255,189,5,140,1,82,97,254,255,99,99,191,255,132,84,133,255,107,218,116,255,112,122,46,0,105,17,32,0,194,160,63,255,68,222,39,1,216,253,92,0,177,105,205,255,149,201,195,0,42,225,11,255,40,162,115,0,9,7,81,0,165,218,219,0,180,22,0,254,29,146,252,255,146,207,225,1,180,135,96,0,31,163,112,0,177,11,219,255,133,12,193,254,43,78,50,0,65,113,121,1,59,217,6,255,110,94,24,1,112,172,111,0,7,15,96,0,36,85,123,0,71,150,21,255,208,73,188,0,192,11,167,1,213,245,34,0,9,230,92,0,162,142,39,255,215,90,27,0,98,97,89,0,94,79,211,0,90,157,240,0,95,220,126,1,102,176,226,0,36,30,224,254,35,31,127,0,231,232,115,1,85,83,130,0,210,73,245,255,47,143,114,255,68,65,197,0,59,72,62,255,183,133,173,254,93,121,118,255,59,177,81,255,234,69,173,255,205,128,177,0,220,244,51,0,26,244,209,1,73,222,77,255,163,8,96,254,150,149,211,0,158,254,203,1,54,127,139,0,161,224,59,0,4,109,22,255,222,42,45,255,208,146,102,255,236,142,187,0,50,205,245,255,10,74,89,254,48,79,142,0,222,76,130,255,30,166,63,0,236,12,13,255,49,184,244,0,187,113,102,0,218,101,253,0,153,57,182,254,32,150,42,0,25,198,146,1,237,241,56,0,140,68,5,0,91,164,172,255,78,145,186,254,67,52,205,0,219,207,129,1,109,115,17,0,54,143,58,1,21,248,120,255,179,255,30,0,193,236,66,255,1,255,7,255,253,192,48,255,19,69,217,1,3,214,0,255,64,101,146,1,223,125,35,255,235,73,179,255,249,167,226,0,225,175,10,1,97,162,58,0,106,112,171,1,84,172,5,255,133,140,178,255,134,245,142,0,97,90,125,255,186,203,185,255,223,77,23,255,192,92,106,0,15,198,115,255,217,152,248,0,171,178,120,255,228,134,53,0,176,54,193,1,250,251,53,0,213,10,100,1,34,199,106,0,151,31,244,254,172,224,87,255,14,237,23,255,253,85,26,255,127,39,116,255,172,104,100,0,251,14,70,255,212,208,138,255,253,211,250,0,176,49,165,0,15,76,123,255,37,218,160,255,92,135,16,1,10,126,114,255,70,5,224,255,247,249,141,0,68,20,60,1,241,210,189,255,195,217,187,1,151,3,113,0,151,92,174,0,231,62,178,255,219,183,225,0,23,23,33,255,205,181,80,0,57,184,248,255,67,180,1,255,90,123,93,255,39,0,162,255,96,248,52,255,84,66,140,0,34,127,228,255,194,138,7,1,166,110,188,0,21,17,155,1,154,190,198,255,214,80,59,255,18,7,143,0,72,29,226,1,199,217,249,0,232,161,71,1,149,190,201,0,217,175,95,254,113,147,67,255,138,143,199,255,127,204,1,0,29,182,83,1,206,230,155,255,186,204,60,0,10,125,85,255,232,96,25,255,255,89,247,255,213,254,175,1,232,193,81,0,28,43,156,254,12,69,8,0,147,24,248,0,18,198,49,0,134,60,35,0,118,246,18,255,49,88,254,254,228,21,186,255,182,65,112,1,219,22,1,255,22,126,52,255,189,53,49,255,112,25,143,0,38,127,55,255,226,101,163,254,208,133,61,255,137,69,174,1,190,118,145,255,60,98,219,255,217,13,245,255,250,136,10,0,84,254,226,0,201,31,125,1,240,51,251,255,31,131,130,255,2,138,50,255,215,215,177,1,223,12,238,255,252,149,56,255,124,91,68,255,72,126,170,254,119,255,100,0,130,135,232,255,14,79,178,0,250,131,197,0,138,198,208,0,121,216,139,254,119,18,36,255,29,193,122,0,16,42,45,255,213,240,235,1,230,190,169,255,198,35,228,254,110,173,72,0,214,221,241,255,56,148,135,0,192,117,78,254,141,93,207,255,143,65,149,0,21,18,98,255,95,44,244,1,106,191,77,0,254,85,8,254,214,110,176,255,73,173,19,254,160,196,199,255,237,90,144,0,193,172,113,255,200,155,136,254,228,90,221,0,137,49,74,1,164,221,215,255,209,189,5,255,105,236,55,255,42,31,129,1,193,255,236,0,46,217,60,0,138,88,187,255,226,82,236,255,81,69,151,255,142,190,16,1,13,134,8,0,127,122,48,255,81,64,156,0,171,243,139,0,237,35,246,0,122,143,193,254,212,122,146,0,95,41,255,1,87,132,77,0,4,212,31,0,17,31,78,0,39,45,173,254,24,142,217,255,95,9,6,255,227,83,6,0,98,59,130,254,62,30,33,0,8,115,211,1,162,97,128,255,7,184,23,254,116,28,168,255,248,138,151,255,98,244,240,0,186,118,130,0,114,248,235,255,105,173,200,1,160,124,71,255,94,36,164,1,175,65,146,255,238,241,170,254,202,198,197,0,228,71,138,254,45,246,109,255,194,52,158,0,133,187,176,0,83,252,154,254,89,189,221,255,170,73,252,0,148,58,125,0,36,68,51,254,42,69,177,255,168,76,86,255,38,100,204,255,38,53,35,0,175,19,97,0,225,238,253,255,81,81,135,0,210,27,255,254,235,73,107,0,8,207,115,0,82,127,136,0,84,99,21,254,207,19,136,0,100,164,101,0,80,208,77,255,132,207,237,255,15,3,15,255,33,166,110,0,156,95,85,255,37,185,111,1,150,106,35,255,166,151,76,0,114,87,135,255,159,194,64,0,12,122,31,255,232,7,101,254,173,119,98,0,154,71,220,254,191,57,53,255,168,232,160,255,224,32,99,255,218,156,165,0,151,153,163,0,217,13,148,1,197,113,89,0,149,28,161,254,207,23,30,0,105,132,227,255,54,230,94,255,133,173,204,255,92,183,157,255,88,144,252,254,102,33,90,0,159,97,3,0,181,218,155,255,240,114,119,0,106,214,53,255,165,190,115,1,152,91,225,255,88,106,44,255,208,61,113,0,151,52,124,0,191,27,156,255,110,54,236,1,14,30,166,255,39,127,207,1,229,199,28,0,188,228,188,254,100,157,235,0,246,218,183,1,107,22,193,255,206,160,95,0,76,239,147,0,207,161,117,0,51,166,2,255,52,117,10,254,73,56,227,255,152,193,225,0,132,94,136,255,101,191,209,0,32,107,229,255,198,43,180,1,100,210,118,0,114,67,153,255,23,88,26,255,89,154,92,1,220,120,140,255,144,114,207,255,252,115,250,255,34,206,72,0,138,133,127,255,8,178,124,1,87,75,97,0,15,229,92,254,240,67,131,255,118,123,227,254,146,120,104,255,145,213,255,1,129,187,70,255,219,119,54,0,1,19,173,0,45,150,148,1,248,83,72,0,203,233,169,1,142,107,56,0,247,249,38,1,45,242,80,255,30,233,103,0,96,82,70,0,23,201,111,0,81,39,30,255,161,183,78,255,194,234,33,255,68,227,140,254,216,206,116,0,70,27,235,255,104,144,79,0,164,230,93,254,214,135,156,0,154,187,242,254,188,20,131,255,36,109,174,0,159,112,241,0,5,110,149,1,36,165,218,0,166,29,19,1,178,46,73,0,93,43,32,254,248,189,237,0,102,155,141,0,201,93,195,255,241,139,253,255,15,111,98,255,108,65,163,254,155,79,190,255,73,174,193,254,246,40,48,255,107,88,11,254,202,97,85,255,253,204,18,255,113,242,66,0,110,160,194,254,208,18,186,0,81,21,60,0,188,104,167,255,124,166,97,254,210,133,142,0,56,242,137,254,41,111,130,0,111,151,58,1,111,213,141,255,183,172,241,255,38,6,196,255,185,7,123,255,46,11,246,0,245,105,119,1,15,2,161,255,8,206,45,255,18,202,74,255,83,124,115,1,212,141,157,0,83,8,209,254,139,15,232,255,172,54,173,254,50,247,132,0,214,189,213,0,144,184,105,0,223,254,248,0,255,147,240,255,23,188,72,0,7,51,54,0,188,25,180,254,220,180,0,255,83,160,20,0,163,189,243,255,58,209,194,255,87,73,60,0,106,24,49,0,245,249,220,0,22,173,167,0,118,11,195,255,19,126,237,0,110,159,37,255,59,82,47,0,180,187,86,0,188,148,208,1,100,37,133,255,7,112,193,0,129,188,156,255,84,106,129,255,133,225,202,0,14,236,111,255,40,20,101,0,172,172,49,254,51,54,74,255,251,185,184,255,93,155,224,255,180,249,224,1,230,178,146,0,72,57,54,254,178,62,184,0,119,205,72,0,185,239,253,255,61,15,218,0,196,67,56,255,234,32,171,1,46,219,228,0,208,108,234,255,20,63,232,255,165,53,199,1,133,228,5,255,52,205,107,0,74,238,140,255,150,156,219,254,239,172,178,255,251,189,223,254,32,142,211,255,218,15,138,1,241,196,80,0,28,36,98,254,22,234,199,0,61,237,220,255,246,57,37,0,142,17,142,255,157,62,26,0,43,238,95,254,3,217,6,255,213,25,240,1,39,220,174,255,154,205,48,254,19,13,192,255,244,34,54,254,140,16,155,0,240,181,5,254,155,193,60,0,166,128,4,255,36,145,56,255,150,240,219,0,120,51,145,0,82,153,42,1,140,236,146,0,107,92,248,1,189,10,3,0,63,136,242,0,211,39,24,0,19,202,161,1,173,27,186,255,210,204,239,254,41,209,162,255,182,254,159,255,172,116,52,0,195,103,222,254,205,69,59,0,53,22,41,1,218,48,194,0,80,210,242,0,210,188,207,0,187,161,161,254,216,17,1,0,136,225,113,0,250,184,63,0,223,30,98,254,77,168,162,0,59,53,175,0,19,201,10,255,139,224,194,0,147,193,154,255,212,189,12,254,1,200,174,255,50,133,113,1,94,179,90,0,173,182,135,0,94,177,113,0,43,89,215,255,136,252,106,255,123,134,83,254,5,245,66,255,82,49,39,1,220,2,224,0,97,129,177,0,77,59,89,0,61,29,155,1,203,171,220,255,92,78,139,0,145,33,181,255,169,24,141,1,55,150,179,0,139,60,80,255,218,39,97,0,2,147,107,255,60,248,72,0,173,230,47,1,6,83,182,255,16,105,162,254,137,212,81,255,180,184,134,1,39,222,164,255,221,105,251,1,239,112,125,0,63,7,97,0,63,104,227,255,148,58,12,0,90,60,224,255,84,212,252,0,79,215,168,0,248,221,199,1,115,121,1,0,36,172,120,0,32,162,187,255,57,107,49,255,147,42,21,0,106,198,43,1,57,74,87,0,126,203,81,255,129,135,195,0,140,31,177,0,221,139,194,0,3,222,215,0,131,68,231,0,177,86,178,254,124,151,180,0,184,124,38,1,70,163,17,0,249,251,181,1,42,55,227,0,226,161,44,0,23,236,110,0,51,149,142,1,93,5,236,0,218,183,106,254,67,24,77,0,40,245,209,255,222,121,153,0,165,57,30,0,83,125,60,0,70,38,82,1,229,6,188,0,109,222,157,255,55,118,63,255,205,151,186,0,227,33,149,255,254,176,246,1,227,177,227,0,34,106,163,254,176,43,79,0,106,95,78,1,185,241,122,255,185,14,61,0,36,1,202,0,13,178,162,255,247,11,132,0,161,230,92,1,65,1,185,255,212,50,165,1,141,146,64,255,158,242,218,0,21,164,125,0,213,139,122,1,67,71,87,0,203,158,178,1,151,92,43,0,152,111,5,255,39,3,239,255,217,255,250,255,176,63,71,255,74,245,77,1,250,174,18,255,34,49,227,255,246,46,251,255,154,35,48,1,125,157,61,255,106,36,78,255,97,236,153,0,136,187,120,255,113,134,171,255,19,213,217,254,216,94,209,255,252,5,61,0,94,3,202,0,3,26,183,255,64,191,43,255,30,23,21,0,129,141,77,255,102,120,7,1,194,76,140,0,188,175,52,255,17,81,148,0,232,86,55,1,225,48,172,0,134,42,42,255,238,50,47,0,169,18,254,0,20,147,87,255,14,195,239,255,69,247,23,0,238,229,128,255,177,49,112,0,168,98,251,255,121,71,248,0,243,8,145,254,246,227,153,255,219,169,177,254,251,139,165,255,12,163,185,255,164,40,171,255,153,159,27,254,243,109,91,255,222,24,112,1,18,214,231,0,107,157,181,254,195,147,0,255,194,99,104,255,89,140,190,255,177,66,126,254,106,185,66,0,49,218,31,0,252,174,158,0,188,79,230,1,238,41,224,0,212,234,8,1,136,11,181,0,166,117,83,255,68,195,94,0,46,132,201,0,240,152,88,0,164,57,69,254,160,224,42,255,59,215,67,255,119,195,141,255,36,180,121,254,207,47,8,255,174,210,223,0,101,197,68,255,255,82,141,1,250,137,233,0,97,86,133,1,16,80,69,0,132,131,159,0,116,93,100,0,45,141,139,0,152,172,157,255,90,43,91,0,71,153,46,0,39,16,112,255,217,136,97,255,220,198,25,254,177,53,49,0,222,88,134,255,128,15,60,0,207,192,169,255,192,116,209,255,106,78,211,1,200,213,183,255,7,12,122,254,222,203,60,255,33,110,199,254,251,106,117,0,228,225,4,1,120,58,7,255,221,193,84,254,112,133,27,0,189,200,201,255,139,135,150,0,234,55,176,255,61,50,65,0,152,108,169,255,220,85,1,255,112,135,227,0,162,26,186,0,207,96,185,254,244,136,107,0,93,153,50,1,198,97,151,0,110,11,86,255,143,117,174,255,115,212,200,0,5,202,183,0,237,164,10,254,185,239,62,0,236,120,18,254,98,123,99,255,168,201,194,254,46,234,214,0,191,133,49,255,99,169,119,0,190,187,35,1,115,21,45,255,249,131,72,0,112,6,123,255,214,49,181,254,166,233,34,0,92,197,102,254,253,228,205,255,3,59,201,1,42,98,46,0,219,37,35,255,169,195,38,0,94,124,193,1,156,43,223,0,95,72,133,254,120,206,191,0,122,197,239,255,177,187,79,255,254,46,2,1,250,167,190,0,84,129,19,0,203,113,166,255,249,31,189,254,72,157,202,255,208,71,73,255,207,24,72,0,10,16,18,1,210,81,76,255,88,208,192,255,126,243,107,255,238,141,120,255,199,121,234,255,137,12,59,255,36,220,123,255,148,179,60,254,240,12,29,0,66,0,97,1,36,30,38,255,115,1,93,255,96,103,231,255,197,158,59,1,192,164,240,0,202,202,57,255,24,174,48,0,89,77,155,1,42,76,215,0,244,151,233,0,23,48,81,0,239,127,52,254,227,130,37,255,248,116,93,1,124,132,118,0,173,254,192,1,6,235,83,255,110,175,231,1,251,28,182,0,129,249,93,254,84,184,128,0,76,181,62,0,175,128,186,0,100,53,136,254,109,29,226,0,221,233,58,1,20,99,74,0,0,22,160,0,134,13,21,0,9,52,55,255,17,89,140,0,175,34,59,0,84,165,119,255,224,226,234,255,7,72,166,255,123,115,255,1,18,214,246,0,250,7,71,1,217,220,185,0,212,35,76,255,38,125,175,0,189,97,210,0,114,238,44,255,41,188,169,254,45,186,154,0,81,92,22,0,132,160,193,0,121,208,98,255,13,81,44,255,203,156,82,0,71,58,21,255,208,114,191,254,50,38,147,0,154,216,195,0,101,25,18,0,60,250,215,255,233,132,235,255,103,175,142,1,16,14,92,0,141,31,110,254,238,241,45,255,153,217,239,1,97,168,47,255,249,85,16,1,28,175,62,255,57,254,54,0,222,231,126,0,166,45,117,254,18,189,96,255,228,76,50,0,200,244,94,0,198,152,120,1,68,34,69,255,12,65,160,254,101,19,90,0,167,197,120,255,68,54,185,255,41,218,188,0,113,168,48,0,88,105,189,1,26,82,32,255,185,93,164,1,228,240,237,255,66,182,53,0,171,197,92,255,107,9,233,1,199,120,144,255,78,49,10,255,109,170,105,255,90,4,31,255,28,244,113,255,74,58,11,0,62,220,246,255,121,154,200,254,144,210,178,255,126,57,129,1,43,250,14,255,101,111,28,1,47,86,241,255,61,70,150,255,53,73,5,255,30,26,158,0,209,26,86,0,138,237,74,0,164,95,188,0,142,60,29,254,162,116,248,255,187,175,160,0,151,18,16,0,209,111,65,254,203,134,39,255,88,108,49,255,131,26,71,255,221,27,215,254,104,105,93,255,31,236,31,254,135,0,211,255,143,127,110,1,212,73,229,0,233,67,167,254,195,1,208,255,132,17,221,255,51,217,90,0,67,235,50,255,223,210,143,0,179,53,130,1,233,106,198,0,217,173,220,255,112,229,24,255,175,154,93,254,71,203,246,255,48,66,133,255,3,136,230,255,23,221,113,254,235,111,213,0,170,120,95,254,251,221,2,0,45,130,158,254,105,94,217,255,242,52,180,254,213,68,45,255,104,38,28,0,244,158,76,0,161,200,96,255,207,53,13,255,187,67,148,0,170,54,248,0,119,162,178,255,83,20,11,0,42,42,192,1,146,159,163,255,183,232,111,0,77,229,21,255,71,53,143,0,27,76,34,0,246,136,47,255,219,39,182,255,92,224,201,1,19,142,14,255,69,182,241,255,163,118,245,0,9,109,106,1,170,181,247,255,78,47,238,255,84,210,176,255,213,107,139,0,39,38,11,0,72,21,150,0,72,130,69,0,205,77,155,254,142,133,21], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE); +/* memory initializer */ allocate([71,111,172,254,226,42,59,255,179,0,215,1,33,128,241,0,234,252,13,1,184,79,8,0,110,30,73,255,246,141,189,0,170,207,218,1,74,154,69,255,138,246,49,255,155,32,100,0,125,74,105,255,90,85,61,255,35,229,177,255,62,125,193,255,153,86,188,1,73,120,212,0,209,123,246,254,135,209,38,255,151,58,44,1,92,69,214,255,14,12,88,255,252,153,166,255,253,207,112,255,60,78,83,255,227,124,110,0,180,96,252,255,53,117,33,254,164,220,82,255,41,1,27,255,38,164,166,255,164,99,169,254,61,144,70,255,192,166,18,0,107,250,66,0,197,65,50,0,1,179,18,255,255,104,1,255,43,153,35,255,80,111,168,0,110,175,168,0,41,105,45,255,219,14,205,255,164,233,140,254,43,1,118,0,233,67,195,0,178,82,159,255,138,87,122,255,212,238,90,255,144,35,124,254,25,140,164,0,251,215,44,254,133,70,107,255,101,227,80,254,92,169,55,0,215,42,49,0,114,180,85,255,33,232,27,1,172,213,25,0,62,176,123,254,32,133,24,255,225,191,62,0,93,70,153,0,181,42,104,1,22,191,224,255,200,200,140,255,249,234,37,0,149,57,141,0,195,56,208,255,254,130,70,255,32,173,240,255,29,220,199,0,110,100,115,255,132,229,249,0,228,233,223,255,37,216,209,254,178,177,209,255,183,45,165,254,224,97,114,0,137,97,168,255,225,222,172,0,165,13,49,1,210,235,204,255,252,4,28,254,70,160,151,0,232,190,52,254,83,248,93,255,62,215,77,1,175,175,179,255,160,50,66,0,121,48,208,0,63,169,209,255,0,210,200,0,224,187,44,1,73,162,82,0,9,176,143,255,19,76,193,255,29,59,167,1,24,43,154,0,28,190,190,0,141,188,129,0,232,235,203,255,234,0,109,255,54,65,159,0,60,88,232,255,121,253,150,254,252,233,131,255,198,110,41,1,83,77,71,255,200,22,59,254,106,253,242,255,21,12,207,255,237,66,189,0,90,198,202,1,225,172,127,0,53,22,202,0,56,230,132,0,1,86,183,0,109,190,42,0,243,68,174,1,109,228,154,0,200,177,122,1,35,160,183,255,177,48,85,255,90,218,169,255,248,152,78,0,202,254,110,0,6,52,43,0,142,98,65,255,63,145,22,0,70,106,93,0,232,138,107,1,110,179,61,255,211,129,218,1,242,209,92,0,35,90,217,1,182,143,106,255,116,101,217,255,114,250,221,255,173,204,6,0,60,150,163,0,73,172,44,255,239,110,80,255,237,76,153,254,161,140,249,0,149,232,229,0,133,31,40,255,174,164,119,0,113,51,214,0,129,228,2,254,64,34,243,0,107,227,244,255,174,106,200,255,84,153,70,1,50,35,16,0,250,74,216,254,236,189,66,255,153,249,13,0,230,178,4,255,221,41,238,0,118,227,121,255,94,87,140,254,254,119,92,0,73,239,246,254,117,87,128,0,19,211,145,255,177,46,252,0,229,91,246,1,69,128,247,255,202,77,54,1,8,11,9,255,153,96,166,0,217,214,173,255,134,192,2,1,0,207,0,0,189,174,107,1,140,134,100,0,158,193,243,1,182,102,171,0,235,154,51,0,142,5,123,255,60,168,89,1,217,14,92,255,19,214,5,1,211,167,254,0,44,6,202,254,120,18,236,255,15,113,184,255,184,223,139,0,40,177,119,254,182,123,90,255,176,165,176,0,247,77,194,0,27,234,120,0,231,0,214,255,59,39,30,0,125,99,145,255,150,68,68,1,141,222,248,0,153,123,210,255,110,127,152,255,229,33,214,1,135,221,197,0,137,97,2,0,12,143,204,255,81,41,188,0,115,79,130,255,94,3,132,0,152,175,187,255,124,141,10,255,126,192,179,255,11,103,198,0,149,6,45,0,219,85,187,1,230,18,178,255,72,182,152,0,3,198,184,255,128,112,224,1,97,161,230,0,254,99,38,255,58,159,197,0,151,66,219,0,59,69,143,255,185,112,249,0,119,136,47,255,123,130,132,0,168,71,95,255,113,176,40,1,232,185,173,0,207,93,117,1,68,157,108,255,102,5,147,254,49,97,33,0,89,65,111,254,247,30,163,255,124,217,221,1,102,250,216,0,198,174,75,254,57,55,18,0,227,5,236,1,229,213,173,0,201,109,218,1,49,233,239,0,30,55,158,1,25,178,106,0,155,111,188,1,94,126,140,0,215,31,238,1,77,240,16,0,213,242,25,1,38,71,168,0,205,186,93,254,49,211,140,255,219,0,180,255,134,118,165,0,160,147,134,255,110,186,35,255,198,243,42,0,243,146,119,0,134,235,163,1,4,241,135,255,193,46,193,254,103,180,79,255,225,4,184,254,242,118,130,0,146,135,176,1,234,111,30,0,69,66,213,254,41,96,123,0,121,94,42,255,178,191,195,255,46,130,42,0,117,84,8,255,233,49,214,254,238,122,109,0,6,71,89,1,236,211,123,0,244,13,48,254,119,148,14,0,114,28,86,255,75,237,25,255,145,229,16,254,129,100,53,255,134,150,120,254,168,157,50,0,23,72,104,255,224,49,14,0,255,123,22,255,151,185,151,255,170,80,184,1,134,182,20,0,41,100,101,1,153,33,16,0,76,154,111,1,86,206,234,255,192,160,164,254,165,123,93,255,1,216,164,254,67,17,175,255,169,11,59,255,158,41,61,255,73,188,14,255,195,6,137,255,22,147,29,255,20,103,3,255,246,130,227,255,122,40,128,0,226,47,24,254,35,36,32,0,152,186,183,255,69,202,20,0,195,133,195,0,222,51,247,0,169,171,94,1,183,0,160,255,64,205,18,1,156,83,15,255,197,58,249,254,251,89,110,255,50,10,88,254,51,43,216,0,98,242,198,1,245,151,113,0,171,236,194,1,197,31,199,255,229,81,38,1,41,59,20,0,253,104,230,0,152,93,14,255,246,242,146,254,214,169,240,255,240,102,108,254,160,167,236,0,154,218,188,0,150,233,202,255,27,19,250,1,2,71,133,255,175,12,63,1,145,183,198,0,104,120,115,255,130,251,247,0,17,212,167,255,62,123,132,255,247,100,189,0,155,223,152,0,143,197,33,0,155,59,44,255,150,93,240,1,127,3,87,255,95,71,207,1,167,85,1,255,188,152,116,255,10,23,23,0,137,195,93,1,54,98,97,0,240,0,168,255,148,188,127,0,134,107,151,0,76,253,171,0,90,132,192,0,146,22,54,0,224,66,54,254,230,186,229,255,39,182,196,0,148,251,130,255,65,131,108,254,128,1,160,0,169,49,167,254,199,254,148,255,251,6,131,0,187,254,129,255,85,82,62,0,178,23,58,255,254,132,5,0,164,213,39,0,134,252,146,254,37,53,81,255,155,134,82,0,205,167,238,255,94,45,180,255,132,40,161,0,254,111,112,1,54,75,217,0,179,230,221,1,235,94,191,255,23,243,48,1,202,145,203,255,39,118,42,255,117,141,253,0,254,0,222,0,43,251,50,0,54,169,234,1,80,68,208,0,148,203,243,254,145,7,135,0,6,254,0,0,252,185,127,0,98,8,129,255,38,35,72,255,211,36,220,1,40,26,89,0,168,64,197,254,3,222,239,255,2,83,215,254,180,159,105,0,58,115,194,0,186,116,106,255,229,247,219,255,129,118,193,0,202,174,183,1,166,161,72,0,201,107,147,254,237,136,74,0,233,230,106,1,105,111,168,0,64,224,30,1,1,229,3,0,102,151,175,255,194,238,228,255,254,250,212,0,187,237,121,0,67,251,96,1,197,30,11,0,183,95,204,0,205,89,138,0,64,221,37,1,255,223,30,255,178,48,211,255,241,200,90,255,167,209,96,255,57,130,221,0,46,114,200,255,61,184,66,0,55,182,24,254,110,182,33,0,171,190,232,255,114,94,31,0,18,221,8,0,47,231,254,0,255,112,83,0,118,15,215,255,173,25,40,254,192,193,31,255,238,21,146,255,171,193,118,255,101,234,53,254,131,212,112,0,89,192,107,1,8,208,27,0,181,217,15,255,231,149,232,0,140,236,126,0,144,9,199,255,12,79,181,254,147,182,202,255,19,109,182,255,49,212,225,0,74,163,203,0,175,233,148,0,26,112,51,0,193,193,9,255,15,135,249,0,150,227,130,0,204,0,219,1,24,242,205,0,238,208,117,255,22,244,112,0,26,229,34,0,37,80,188,255,38,45,206,254,240,90,225,255,29,3,47,255,42,224,76,0,186,243,167,0,32,132,15,255,5,51,125,0,139,135,24,0,6,241,219,0,172,229,133,255,246,214,50,0,231,11,207,255,191,126,83,1,180,163,170,255,245,56,24,1,178,164,211,255,3,16,202,1,98,57,118,255,141,131,89,254,33,51,24,0,243,149,91,255,253,52,14,0,35,169,67,254,49,30,88,255,179,27,36,255,165,140,183,0,58,189,151,0,88,31,0,0,75,169,66,0,66,101,199,255,24,216,199,1,121,196,26,255,14,79,203,254,240,226,81,255,94,28,10,255,83,193,240,255,204,193,131,255,94,15,86,0,218,40,157,0,51,193,209,0,0,242,177,0,102,185,247,0,158,109,116,0,38,135,91,0,223,175,149,0,220,66,1,255,86,60,232,0,25,96,37,255,225,122,162,1,215,187,168,255,158,157,46,0,56,171,162,0,232,240,101,1,122,22,9,0,51,9,21,255,53,25,238,255,217,30,232,254,125,169,148,0,13,232,102,0,148,9,37,0,165,97,141,1,228,131,41,0,222,15,243,255,254,18,17,0,6,60,237,1,106,3,113,0,59,132,189,0,92,112,30,0,105,208,213,0,48,84,179,255,187,121,231,254,27,216,109,255,162,221,107,254,73,239,195,255,250,31,57,255,149,135,89,255,185,23,115,1,3,163,157,255,18,112,250,0,25,57,187,255,161,96,164,0,47,16,243,0,12,141,251,254,67,234,184,255,41,18,161,0,175,6,96,255,160,172,52,254,24,176,183,255,198,193,85,1,124,121,137,255,151,50,114,255,220,203,60,255,207,239,5,1,0,38,107,255,55,238,94,254,70,152,94,0,213,220,77,1,120,17,69,255,85,164,190,255,203,234,81,0,38,49,37,254,61,144,124,0,137,78,49,254,168,247,48,0,95,164,252,0,105,169,135,0,253,228,134,0,64,166,75,0,81,73,20,255,207,210,10,0,234,106,150,255,94,34,90,255,254,159,57,254,220,133,99,0,139,147,180,254,24,23,185,0,41,57,30,255,189,97,76,0,65,187,223,255,224,172,37,255,34,62,95,1,231,144,240,0,77,106,126,254,64,152,91,0,29,98,155,0,226,251,53,255,234,211,5,255,144,203,222,255,164,176,221,254,5,231,24,0,179,122,205,0,36,1,134,255,125,70,151,254,97,228,252,0,172,129,23,254,48,90,209,255,150,224,82,1,84,134,30,0,241,196,46,0,103,113,234,255,46,101,121,254,40,124,250,255,135,45,242,254,9,249,168,255,140,108,131,255,143,163,171,0,50,173,199,255,88,222,142,255,200,95,158,0,142,192,163,255,7,117,135,0,111,124,22,0,236,12,65,254,68,38,65,255,227,174,254,0,244,245,38,0,240,50,208,255,161,63,250,0,60,209,239,0,122,35,19,0,14,33,230,254,2,159,113,0,106,20,127,255,228,205,96,0,137,210,174,254,180,212,144,255,89,98,154,1,34,88,139,0,167,162,112,1,65,110,197,0,241,37,169,0,66,56,131,255,10,201,83,254,133,253,187,255,177,112,45,254,196,251,0,0,196,250,151,255,238,232,214,255,150,209,205,0,28,240,118,0,71,76,83,1,236,99,91,0,42,250,131,1,96,18,64,255,118,222,35,0,113,214,203,255,122,119,184,255,66,19,36,0,204,64,249,0,146,89,139,0,134,62,135,1,104,233,101,0,188,84,26,0,49,249,129,0,208,214,75,255,207,130,77,255,115,175,235,0,171,2,137,255,175,145,186,1,55,245,135,255,154,86,181,1,100,58,246,255,109,199,60,255,82,204,134,255,215,49,230,1,140,229,192,255,222,193,251,255,81,136,15,255,179,149,162,255,23,39,29,255,7,95,75,254,191,81,222,0,241,81,90,255,107,49,201,255,244,211,157,0,222,140,149,255,65,219,56,254,189,246,90,255,178,59,157,1,48,219,52,0,98,34,215,0,28,17,187,255,175,169,24,0,92,79,161,255,236,200,194,1,147,143,234,0,229,225,7,1,197,168,14,0,235,51,53,1,253,120,174,0,197,6,168,255,202,117,171,0,163,21,206,0,114,85,90,255,15,41,10,255,194,19,99,0,65,55,216,254,162,146,116,0,50,206,212,255,64,146,29,255,158,158,131,1,100,165,130,255,172,23,129,255,125,53,9,255,15,193,18,1,26,49,11,255,181,174,201,1,135,201,14,255,100,19,149,0,219,98,79,0,42,99,143,254,96,0,48,255,197,249,83,254,104,149,79,255,235,110,136,254,82,128,44,255,65,41,36,254,88,211,10,0,187,121,187,0,98,134,199,0,171,188,179,254,210,11,238,255,66,123,130,254,52,234,61,0,48,113,23,254,6,86,120,255,119,178,245,0,87,129,201,0,242,141,209,0,202,114,85,0,148,22,161,0,103,195,48,0,25,49,171,255,138,67,130,0,182,73,122,254,148,24,130,0,211,229,154,0,32,155,158,0,84,105,61,0,177,194,9,255,166,89,86,1,54,83,187,0,249,40,117,255,109,3,215,255,53,146,44,1,63,47,179,0,194,216,3,254,14,84,136,0,136,177,13,255,72,243,186,255,117,17,125,255,211,58,211,255,93,79,223,0,90,88,245,255,139,209,111,255,70,222,47,0,10,246,79,255,198,217,178,0,227,225,11,1,78,126,179,255,62,43,126,0,103,148,35,0,129,8,165,254,245,240,148,0,61,51,142,0,81,208,134,0,15,137,115,255,211,119,236,255,159,245,248,255,2,134,136,255,230,139,58,1,160,164,254,0,114,85,141,255,49,166,182,255,144,70,84,1,85,182,7,0,46,53,93,0,9,166,161,255,55,162,178,255,45,184,188,0,146,28,44,254,169,90,49,0,120,178,241,1,14,123,127,255,7,241,199,1,189,66,50,255,198,143,101,254,189,243,135,255,141,24,24,254,75,97,87,0,118,251,154,1,237,54,156,0,171,146,207,255,131,196,246,255,136,64,113,1,151,232,57,0,240,218,115,0,49,61,27,255,64,129,73,1,252,169,27,255,40,132,10,1,90,201,193,255,252,121,240,1,186,206,41,0,43,198,97,0,145,100,183,0,204,216,80,254,172,150,65,0,249,229,196,254,104,123,73,255,77,104,96,254,130,180,8,0,104,123,57,0,220,202,229,255,102,249,211,0,86,14,232,255,182,78,209,0,239,225,164,0,106,13,32,255,120,73,17,255,134,67,233,0,83,254,181,0,183,236,112,1,48,64,131,255,241,216,243,255,65,193,226,0,206,241,100,254,100,134,166,255,237,202,197,0,55,13,81,0,32,124,102,255,40,228,177,0,118,181,31,1,231,160,134,255,119,187,202,0,0,142,60,255,128,38,189,255,166,201,150,0,207,120,26,1,54,184,172,0,12,242,204,254,133,66,230,0,34,38,31,1,184,112,80,0,32,51,165,254,191,243,55,0,58,73,146,254,155,167,205,255,100,104,152,255,197,254,207,255,173,19,247,0,238,10,202,0,239,151,242,0,94,59,39,255,240,29,102,255,10,92,154,255,229,84,219,255,161,129,80,0,208,90,204,1,240,219,174,255,158,102,145,1,53,178,76,255,52,108,168,1,83,222,107,0,211,36,109,0,118,58,56,0,8,29,22,0,237,160,199,0,170,209,157,0,137,71,47,0,143,86,32,0,198,242,2,0,212,48,136,1,92,172,186,0,230,151,105,1,96,191,229,0,138,80,191,254,240,216,130,255,98,43,6,254,168,196,49,0,253,18,91,1,144,73,121,0,61,146,39,1,63,104,24,255,184,165,112,254,126,235,98,0,80,213,98,255,123,60,87,255,82,140,245,1,223,120,173,255,15,198,134,1,206,60,239,0,231,234,92,255,33,238,19,255,165,113,142,1,176,119,38,0,160,43,166,254,239,91,105,0,107,61,194,1,25,4,68,0,15,139,51,0,164,132,106,255,34,116,46,254,168,95,197,0,137,212,23,0,72,156,58,0,137,112,69,254,150,105,154,255,236,201,157,0,23,212,154,255,136,82,227,254,226,59,221,255,95,149,192,0,81,118,52,255,33,43,215,1,14,147,75,255,89,156,121,254,14,18,79,0,147,208,139,1,151,218,62,255,156,88,8,1,210,184,98,255,20,175,123,255,102,83,229,0,220,65,116,1,150,250,4,255,92,142,220,255,34,247,66,255,204,225,179,254,151,81,151,0,71,40,236,255,138,63,62,0,6,79,240,255,183,185,181,0,118,50,27,0,63,227,192,0,123,99,58,1,50,224,155,255,17,225,223,254,220,224,77,255,14,44,123,1,141,128,175,0,248,212,200,0,150,59,183,255,147,97,29,0,150,204,181,0,253,37,71,0,145,85,119,0,154,200,186,0,2,128,249,255,83,24,124,0,14,87,143,0,168,51,245,1,124,151,231,255,208,240,197,1,124,190,185,0,48,58,246,0,20,233,232,0,125,18,98,255,13,254,31,255,245,177,130,255,108,142,35,0,171,125,242,254,140,12,34,255,165,161,162,0,206,205,101,0,247,25,34,1,100,145,57,0,39,70,57,0,118,204,203,255,242,0,162,0,165,244,30,0,198,116,226,0,128,111,153,255,140,54,182,1,60,122,15,255,155,58,57,1,54,50,198,0,171,211,29,255,107,138,167,255,173,107,199,255,109,161,193,0,89,72,242,255,206,115,89,255,250,254,142,254,177,202,94,255,81,89,50,0,7,105,66,255,25,254,255,254,203,64,23,255,79,222,108,255,39,249,75,0,241,124,50,0,239,152,133,0,221,241,105,0,147,151,98,0,213,161,121,254,242,49,137,0,233,37,249,254,42,183,27,0,184,119,230,255,217,32,163,255,208,251,228,1,137,62,131,255,79,64,9,254,94,48,113,0,17,138,50,254,193,255,22,0,247,18,197,1,67,55,104,0,16,205,95,255,48,37,66,0,55,156,63,1,64,82,74,255,200,53,71,254,239,67,125,0,26,224,222,0,223,137,93,255,30,224,202,255,9,220,132,0,198,38,235,1,102,141,86,0,60,43,81,1,136,28,26,0,233,36,8,254,207,242,148,0,164,162,63,0,51,46,224,255,114,48,79,255,9,175,226,0,222,3,193,255,47,160,232,255,255,93,105,254,14,42,230,0,26,138,82,1,208,43,244,0,27,39,38,255,98,208,127,255,64,149,182,255,5,250,209,0,187,60,28,254,49,25,218,255,169,116,205,255,119,18,120,0,156,116,147,255,132,53,109,255,13,10,202,0,110,83,167,0,157,219,137,255,6,3,130,255,50,167,30,255,60,159,47,255,129,128,157,254,94,3,189,0,3,166,68,0,83,223,215,0,150,90,194,1,15,168,65,0,227,83,51,255,205,171,66,255,54,187,60,1,152,102,45,255,119,154,225,0,240,247,136,0,100,197,178,255,139,71,223,255,204,82,16,1,41,206,42,255,156,192,221,255,216,123,244,255,218,218,185,255,187,186,239,255,252,172,160,255,195,52,22,0,144,174,181,254,187,100,115,255,211,78,176,255,27,7,193,0,147,213,104,255,90,201,10,255,80,123,66,1,22,33,186,0,1,7,99,254,30,206,10,0,229,234,5,0,53,30,210,0,138,8,220,254,71,55,167,0,72,225,86,1,118,190,188,0,254,193,101,1,171,249,172,255,94,158,183,254,93,2,108,255,176,93,76,255,73,99,79,255,74,64,129,254,246,46,65,0,99,241,127,254,246,151,102,255,44,53,208,254,59,102,234,0,154,175,164,255,88,242,32,0,111,38,1,0,255,182,190,255,115,176,15,254,169,60,129,0,122,237,241,0,90,76,63,0,62,74,120,255,122,195,110,0,119,4,178,0,222,242,210,0,130,33,46,254,156,40,41,0,167,146,112,1,49,163,111,255,121,176,235,0,76,207,14,255,3,25,198,1,41,235,213,0,85,36,214,1,49,92,109,255,200,24,30,254,168,236,195,0,145,39,124,1,236,195,149,0,90,36,184,255,67,85,170,255,38,35,26,254,131,124,68,255,239,155,35,255,54,201,164,0,196,22,117,255,49,15,205,0,24,224,29,1,126,113,144,0,117,21,182,0,203,159,141,0,223,135,77,0,176,230,176,255,190,229,215,255,99,37,181,255,51,21,138,255,25,189,89,255,49,48,165,254,152,45,247,0,170,108,222,0,80,202,5,0,27,69,103,254,204,22,129,255,180,252,62,254,210,1,91,255,146,110,254,255,219,162,28,0,223,252,213,1,59,8,33,0,206,16,244,0,129,211,48,0,107,160,208,0,112,59,209,0,109,77,216,254,34,21,185,255,246,99,56,255,179,139,19,255,185,29,50,255,84,89,19,0,74,250,98,255,225,42,200,255,192,217,205,255,210,16,167,0,99,132,95,1,43,230,57,0,254,11,203,255,99,188,63,255,119,193,251,254,80,105,54,0,232,181,189,1,183,69,112,255,208,171,165,255,47,109,180,255,123,83,165,0,146,162,52,255,154,11,4,255,151,227,90,255,146,137,97,254,61,233,41,255,94,42,55,255,108,164,236,0,152,68,254,0,10,140,131,255,10,106,79,254,243,158,137,0,67,178,66,254,177,123,198,255,15,62,34,0,197,88,42,255,149,95,177,255,152,0,198,255,149,254,113,255,225,90,163,255,125,217,247,0,18,17,224,0,128,66,120,254,192,25,9,255,50,221,205,0,49,212,70,0,233,255,164,0,2,209,9,0,221,52,219,254,172,224,244,255,94,56,206,1,242,179,2,255,31,91,164,1,230,46,138,255,189,230,220,0,57,47,61,255,111,11,157,0,177,91,152,0,28,230,98,0,97,87,126,0,198,89,145,255,167,79,107,0,249,77,160,1,29,233,230,255,150,21,86,254,60,11,193,0,151,37,36,254,185,150,243,255,228,212,83,1,172,151,180,0,201,169,155,0,244,60,234,0,142,235,4,1,67,218,60,0,192,113,75,1,116,243,207,255,65,172,155,0,81,30,156,255,80,72,33,254,18,231,109,255,142,107,21,254,125,26,132,255,176,16,59,255,150,201,58,0,206,169,201,0,208,121,226,0,40,172,14,255,150,61,94,255,56,57,156,255,141,60,145,255,45,108,149,255,238,145,155,255,209,85,31,254,192,12,210,0,99,98,93,254,152,16,151,0,225,185,220,0,141,235,44,255,160,172,21,254,71,26,31,255,13,64,93,254,28,56,198,0,177,62,248,1,182,8,241,0,166,101,148,255,78,81,133,255,129,222,215,1,188,169,129,255,232,7,97,0,49,112,60,255,217,229,251,0,119,108,138,0,39,19,123,254,131,49,235,0,132,84,145,0,130,230,148,255,25,74,187,0,5,245,54,255,185,219,241,1,18,194,228,255,241,202,102,0,105,113,202,0,155,235,79,0,21,9,178,255,156,1,239,0,200,148,61,0,115,247,210,255,49,221,135,0,58,189,8,1,35,46,9,0,81,65,5,255,52,158,185,255,125,116,46,255,74,140,13,255,210,92,172,254,147,23,71,0,217,224,253,254,115,108,180,255,145,58,48,254,219,177,24,255,156,255,60,1,154,147,242,0,253,134,87,0,53,75,229,0,48,195,222,255,31,175,50,255,156,210,120,255,208,35,222,255,18,248,179,1,2,10,101,255,157,194,248,255,158,204,101,255,104,254,197,255,79,62,4,0,178,172,101,1,96,146,251,255,65,10,156,0,2,137,165,255,116,4,231,0,242,215,1,0,19,35,29,255,43,161,79,0,59,149,246,1,251,66,176,0,200,33,3,255,80,110,142,255,195,161,17,1,228,56,66,255,123,47,145,254,132,4,164,0,67,174,172,0,25,253,114,0,87,97,87,1,250,220,84,0,96,91,200,255,37,125,59,0,19,65,118,0,161,52,241,255,237,172,6,255,176,191,255,255,1,65,130,254,223,190,230,0,101,253,231,255,146,35,109,0,250,29,77,1,49,0,19,0,123,90,155,1,22,86,32,255,218,213,65,0,111,93,127,0,60,93,169,255,8,127,182,0,17,186,14,254,253,137,246,255,213,25,48,254,76,238,0,255,248,92,70,255,99,224,139,0,184,9,255,1,7,164,208,0,205,131,198,1,87,214,199,0,130,214,95,0,221,149,222,0,23,38,171,254,197,110,213,0,43,115,140,254,215,177,118,0,96,52,66,1,117,158,237,0,14,64,182,255,46,63,174,255,158,95,190,255,225,205,177,255,43,5,142,255,172,99,212,255,244,187,147,0,29,51,153,255,228,116,24,254,30,101,207,0,19,246,150,255,134,231,5,0,125,134,226,1,77,65,98,0,236,130,33,255,5,110,62,0,69,108,127,255,7,113,22,0,145,20,83,254,194,161,231,255,131,181,60,0,217,209,177,255,229,148,212,254,3,131,184,0,117,177,187,1,28,14,31,255,176,102,80,0,50,84,151,255,125,31,54,255,21,157,133,255,19,179,139,1,224,232,26,0,34,117,170,255,167,252,171,255,73,141,206,254,129,250,35,0,72,79,236,1,220,229,20,255,41,202,173,255,99,76,238,255,198,22,224,255,108,198,195,255,36,141,96,1,236,158,59,255,106,100,87,0,110,226,2,0,227,234,222,0,154,93,119,255,74,112,164,255,67,91,2,255,21,145,33,255,102,214,137,255,175,230,103,254,163,246,166,0,93,247,116,254,167,224,28,255,220,2,57,1,171,206,84,0,123,228,17,255,27,120,119,0,119,11,147,1,180,47,225,255,104,200,185,254,165,2,114,0,77,78,212,0,45,154,177,255,24,196,121,254,82,157,182,0,90,16,190,1,12,147,197,0,95,239,152,255,11,235,71,0,86,146,119,255,172,134,214,0,60,131,196,0,161,225,129,0,31,130,120,254,95,200,51,0,105,231,210,255,58,9,148,255,43,168,221,255,124,237,142,0,198,211,50,254,46,245,103,0,164,248,84,0,152,70,208,255,180,117,177,0,70,79,185,0,243,74,32,0,149,156,207,0,197,196,161,1,245,53,239,0,15,93,246,254,139,240,49,255,196,88,36,255,162,38,123,0,128,200,157,1,174,76,103,255,173,169,34,254,216,1,171,255,114,51,17,0,136,228,194,0,110,150,56,254,106,246,159,0,19,184,79,255,150,77,240,255,155,80,162,0,0,53,169,255,29,151,86,0,68,94,16,0,92,7,110,254,98,117,149,255,249,77,230,255,253,10,140,0,214,124,92,254,35,118,235,0,89,48,57,1,22,53,166,0,184,144,61,255,179,255,194,0,214,248,61,254,59,110,246,0,121,21,81,254,166,3,228,0,106,64,26,255,69,232,134,255,242,220,53,254,46,220,85,0,113,149,247,255,97,179,103,255,190,127,11,0,135,209,182,0,95,52,129,1,170,144,206,255,122,200,204,255,168,100,146,0,60,144,149,254,70,60,40,0,122,52,177,255,246,211,101,255,174,237,8,0,7,51,120,0,19,31,173,0,126,239,156,255,143,189,203,0,196,128,88,255,233,133,226,255,30,125,173,255,201,108,50,0,123,100,59,255,254,163,3,1,221,148,181,255,214,136,57,254,222,180,137,255,207,88,54,255,28,33,251,255,67,214,52,1,210,208,100,0,81,170,94,0,145,40,53,0,224,111,231,254,35,28,244,255,226,199,195,254,238,17,230,0,217,217,164,254,169,157,221,0,218,46,162,1,199,207,163,255,108,115,162,1,14,96,187,255,118,60,76,0,184,159,152,0,209,231,71,254,42,164,186,255,186,153,51,254,221,171,182,255,162,142,173,0,235,47,193,0,7,139,16,1,95,164,64,255,16,221,166,0,219,197,16,0,132,29,44,255,100,69,117,255,60,235,88,254,40,81,173,0,71,190,61,255,187,88,157,0,231,11,23,0,237,117,164,0,225,168,223,255,154,114,116,255,163,152,242,1,24,32,170,0,125,98,113,254,168,19,76,0,17,157,220,254,155,52,5,0,19,111,161,255,71,90,252,255,173,110,240,0,10,198,121,255,253,255,240,255,66,123,210,0,221,194,215,254,121,163,17,255,225,7,99,0,190,49,182,0,115,9,133,1,232,26,138,255,213,68,132,0,44,119,122,255,179,98,51,0,149,90,106,0,71,50,230,255,10,153,118,255,177,70,25,0,165,87,205,0,55,138,234,0,238,30,97,0,113,155,207,0,98,153,127,0,34,107,219,254,117,114,172,255,76,180,255,254,242,57,179,255,221,34,172,254,56,162,49,255,83,3,255,255,113,221,189,255,188,25,228,254,16,88,89,255,71,28,198,254,22,17,149,255,243,121,254,255,107,202,99,255,9,206,14,1,220,47,153,0,107,137,39,1,97,49,194,255,149,51,197,254,186,58,11,255,107,43,232,1,200,6,14,255,181,133,65,254,221,228,171,255,123,62,231,1,227,234,179,255,34,189,212,254,244,187,249,0,190,13,80,1,130,89,1,0,223,133,173,0,9,222,198,255,66,127,74,0,167,216,93,255,155,168,198,1,66,145,0,0,68,102,46,1,172,90,154,0,216,128,75,255,160,40,51,0,158,17,27,1,124,240,49,0,236,202,176,255,151,124,192,255,38,193,190,0,95,182,61,0,163,147,124,255,255,165,51,255,28,40,17,254,215,96,78,0,86,145,218,254,31,36,202,255,86,9,5,0,111,41,200,255,237,108,97,0,57,62,44,0,117,184,15,1,45,241,116,0,152,1,220,255,157,165,188,0,250,15,131,1,60,44,125,255,65,220,251,255,75,50,184,0,53,90,128,255,231,80,194,255,136,129,127,1,21,18,187,255,45,58,161,255,71,147,34,0,174,249,11,254,35,141,29,0,239,68,177,255,115,110,58,0,238,190,177,1,87,245,166,255,190,49,247,255,146,83,184,255,173,14,39,255,146,215,104,0,142,223,120,0,149,200,155,255,212,207,145,1,16,181,217,0,173,32,87,255,255,35,181,0,119,223,161,1,200,223,94,255,70,6,186,255,192,67,85,255,50,169,152,0,144,26,123,255,56,243,179,254,20,68,136,0,39,140,188,254,253,208,5,255,200,115,135,1,43,172,229,255,156,104,187,0,151,251,167,0,52,135,23,0,151,153,72,0,147,197,107,254,148,158,5,255,238,143,206,0,126,153,137,255,88,152,197,254,7,68,167,0,252,159,165,255,239,78,54,255,24,63,55,255,38,222,94,0,237,183,12,255,206,204,210,0,19,39,246,254,30,74,231,0,135,108,29,1,179,115,0,0,117,118,116,1,132,6,252,255,145,129,161,1,105,67,141,0,82,37,226,255,238,226,228,255,204,214,129,254,162,123,100,255,185,121,234,0,45,108,231,0,66,8,56,255,132,136,128,0,172,224,66,254,175,157,188,0,230,223,226,254,242,219,69,0,184,14,119,1,82,162,56,0,114,123,20,0,162,103,85,255,49,239,99,254,156,135,215,0,111,255,167,254,39,196,214,0,144,38,79,1,249,168,125,0,155,97,156,255,23,52,219,255,150,22,144,0,44,149,165,255,40,127,183,0,196,77,233,255,118,129,210,255,170,135,230,255,214,119,198,0,233,240,35,0,253,52,7,255,117,102,48,255,21,204,154,255,179,136,177,255,23,2,3,1,149,130,89,255,252,17,159,1,70,60,26,0,144,107,17,0,180,190,60,255,56,182,59,255,110,71,54,255,198,18,129,255,149,224,87,255,223,21,152,255,138,22,182,255,250,156,205,0,236,45,208,255,79,148,242,1,101,70,209,0,103,78,174,0,101,144,172,255,152,136,237,1,191,194,136,0,113,80,125,1,152,4,141,0,155,150,53,255,196,116,245,0,239,114,73,254,19,82,17,255,124,125,234,255,40,52,191,0,42,210,158,255,155,132,165,0,178,5,42,1,64,92,40,255,36,85,77,255,178,228,118,0,137,66,96,254,115,226,66,0,110,240,69,254,151,111,80,0,167,174,236,255,227,108,107,255,188,242,65,255,183,81,255,0,57,206,181,255,47,34,181,255,213,240,158,1,71,75,95,0,156,40,24,255,102,210,81,0,171,199,228,255,154,34,41,0,227,175,75,0,21,239,195,0,138,229,95,1,76,192,49,0,117,123,87,1,227,225,130,0,125,62,63,255,2,198,171,0,254,36,13,254,145,186,206,0,148,255,244,255,35,0,166,0,30,150,219,1,92,228,212,0,92,198,60,254,62,133,200,255,201,41,59,0,125,238,109,255,180,163,238,1,140,122,82,0,9,22,88,255,197,157,47,255,153,94,57,0,88,30,182,0,84,161,85,0,178,146,124,0,166,166,7,255,21,208,223,0,156,182,242,0,155,121,185,0,83,156,174,254,154,16,118,255,186,83,232,1,223,58,121,255,29,23,88,0,35,125,127,255,170,5,149,254,164,12,130,255,155,196,29,0,161,96,136,0,7,35,29,1,162,37,251,0,3,46,242,255,0,217,188,0,57,174,226,1,206,233,2,0,57,187,136,254,123,189,9,255,201,117,127,255,186,36,204,0,231,25,216,0,80,78,105,0,19,134,129,255,148,203,68,0,141,81,125,254,248,165,200,255,214,144,135,0,151,55,166,255,38,235,91,0,21,46,154,0,223,254,150,255,35,153,180,255,125,176,29,1,43,98,30,255,216,122,230,255,233,160,12,0,57,185,12,254,240,113,7,255,5,9,16,254,26,91,108,0,109,198,203,0,8,147,40,0,129,134,228,255,124,186,40,255,114,98,132,254,166,132,23,0,99,69,44,0,9,242,238,255,184,53,59,0,132,129,102,255,52,32,243,254,147,223,200,255,123,83,179,254,135,144,201,255,141,37,56,1,151,60,227,255,90,73,156,1,203,172,187,0,80,151,47,255,94,137,231,255,36,191,59,255,225,209,181,255,74,215,213,254,6,118,179,255,153,54,193,1,50,0,231,0,104,157,72,1,140,227,154,255,182,226,16,254,96,225,92,255,115,20,170,254,6,250,78,0,248,75,173,255,53,89,6,255,0,180,118,0,72,173,1,0,64,8,206,1,174,133,223,0,185,62,133,255,214,11,98,0,197,31,208,0,171,167,244,255,22,231,181,1,150,218,185,0,247,169,97,1,165,139,247,255,47,120,149,1,103,248,51,0,60,69,28,254,25,179,196,0,124,7,218,254,58,107,81,0,184,233,156,255,252,74,36,0,118,188,67,0,141,95,53,255,222,94,165,254,46,61,53,0,206,59,115,255,47,236,250,255,74,5,32,1,129,154,238,255,106,32,226,0,121,187,61,255,3,166,241,254,67,170,172,255,29,216,178,255,23,201,252,0,253,110,243,0,200,125,57,0,109,192,96,255,52,115,238,0,38,121,243,255,201,56,33,0,194,118,130,0,75,96,25,255,170,30,230,254,39,63,253,0,36,45,250,255,251,1,239,0,160,212,92,1,45,209,237,0,243,33,87,254,237,84,201,255,212,18,157,254,212,99,127,255,217,98,16,254,139,172,239,0,168,201,130,255,143,193,169,255,238,151,193,1,215,104,41,0,239,61,165,254,2,3,242,0,22,203,177,254,177,204,22,0,149,129,213,254,31,11,41,255,0,159,121,254,160,25,114,255,162,80,200,0,157,151,11,0,154,134,78,1,216,54,252,0,48,103,133,0,105,220,197,0,253,168,77,254,53,179,23,0,24,121,240,1,255,46,96,255,107,60,135,254,98,205,249,255,63,249,119,255,120,59,211,255,114,180,55,254,91,85,237,0,149,212,77,1,56,73,49,0,86,198,150,0,93,209,160,0,69,205,182,255,244,90,43,0,20,36,176,0,122,116,221,0,51,167,39,1,231,1,63,255,13,197,134,0,3,209,34,255,135,59,202,0,167,100,78,0,47,223,76,0,185,60,62,0,178,166,123,1,132,12,161,255,61,174,43,0,195,69,144,0,127,47,191,1,34,44,78,0,57,234,52,1,255,22,40,255,246,94,146,0,83,228,128,0,60,78,224,255,0,96,210,255,153,175,236,0,159,21,73,0,180,115,196,254,131,225,106,0,255,167,134,0,159,8,112,255,120,68,194,255,176,196,198,255,118,48,168,255,93,169,1,0,112,200,102,1,74,24,254,0,19,141,4,254,142,62,63,0,131,179,187,255,77,156,155,255,119,86,164,0,170,208,146,255,208,133,154,255,148,155,58,255,162,120,232,254,252,213,155,0,241,13,42,0,94,50,131,0,179,170,112,0,140,83,151,255,55,119,84,1,140,35,239,255,153,45,67,1,236,175,39,0,54,151,103,255,158,42,65,255,196,239,135,254,86,53,203,0,149,97,47,254,216,35,17,255,70,3,70,1,103,36,90,255,40,26,173,0,184,48,13,0,163,219,217,255,81,6,1,255,221,170,108,254,233,208,93,0,100,201,249,254,86,36,35,255,209,154,30,1,227,201,251,255,2,189,167,254,100,57,3,0,13,128,41,0,197,100,75,0,150,204,235,255,145,174,59,0,120,248,149,255,85,55,225,0,114,210,53,254,199,204,119,0,14,247,74,1,63,251,129,0,67,104,151,1,135,130,80,0,79,89,55,255,117,230,157,255,25,96,143,0,213,145,5,0,69,241,120,1,149,243,95,255,114,42,20,0,131,72,2,0,154,53,20,255,73,62,109,0,196,102,152,0,41,12,204,255,122,38,11,1,250,10,145,0,207,125,148,0,246,244,222,255,41,32,85,1,112,213,126,0,162,249,86,1,71,198,127,255,81,9,21,1,98,39,4,255,204,71,45,1,75,111,137,0,234,59,231,0,32,48,95,255,204,31,114,1,29,196,181,255,51,241,167,254,93,109,142,0,104,144,45,0,235,12,181,255,52,112,164,0,76,254,202,255,174,14,162,0,61,235,147,255,43,64,185,254,233,125,217,0,243,88,167,254,74,49,8,0,156,204,66,0,124,214,123,0,38,221,118,1,146,112,236,0,114,98,177,0,151,89,199,0,87,197,112,0,185,149,161,0,44,96,165,0,248,179,20,255,188,219,216,254,40,62,13,0,243,142,141,0,229,227,206,255,172,202,35,255,117,176,225,255,82,110,38,1,42,245,14,255,20,83,97,0,49,171,10,0,242,119,120,0,25,232,61,0,212,240,147,255,4,115,56,255,145,17,239,254,202,17,251,255,249,18,245,255,99,117,239,0,184,4,179,255,246,237,51,255,37,239,137,255,166,112,166,255,81,188,33,255,185,250,142,255,54,187,173,0,208,112,201,0,246,43,228,1,104,184,88,255,212,52,196,255,51,117,108,255,254,117,155,0,46,91,15,255,87,14,144,255,87,227,204,0,83,26,83,1,159,76,227,0,159,27,213,1,24,151,108,0,117,144,179,254,137,209,82,0,38,159,10,0,115,133,201,0,223,182,156,1,110,196,93,255,57,60,233,0,5,167,105,255,154,197,164,0,96,34,186,255,147,133,37,1,220,99,190,0,1,167,84,255,20,145,171,0,194,197,251,254,95,78,133,255,252,248,243,255,225,93,131,255,187,134,196,255,216,153,170,0,20,118,158,254,140,1,118,0,86,158,15,1,45,211,41,255,147,1,100,254,113,116,76,255,211,127,108,1,103,15,48,0,193,16,102,1,69,51,95,255,107,128,157,0,137,171,233,0,90,124,144,1,106,161,182,0,175,76,236,1,200,141,172,255,163,58,104,0,233,180,52,255,240,253,14,255,162,113,254,255,38,239,138,254,52,46,166,0,241,101,33,254,131,186,156,0,111,208,62,255,124,94,160,255,31,172,254,0,112,174,56,255,188,99,27,255,67,138,251,0,125,58,128,1,156,152,174,255,178,12,247,255,252,84,158,0,82,197,14,254,172,200,83,255,37,39,46,1,106,207,167,0,24,189,34,0,131,178,144,0,206,213,4,0,161,226,210,0,72,51,105,255,97,45,187,255,78,184,223,255,176,29,251,0,79,160,86,255,116,37,178,0,82,77,213,1,82,84,141,255,226,101,212,1,175,88,199,255,245,94,247,1,172,118,109,255,166,185,190,0,131,181,120,0,87,254,93,255,134,240,73,255,32,245,143,255,139,162,103,255,179,98,18,254,217,204,112,0,147,223,120,255,53,10,243,0,166,140,150,0,125,80,200,255,14,109,219,255,91,218,1,255,252,252,47,254,109,156,116,255,115,49,127,1,204,87,211,255,148,202,217,255,26,85,249,255,14,245,134,1,76,89,169,255,242,45,230,0,59,98,172,255,114,73,132,254,78,155,49,255,158,126,84,0,49,175,43,255,16,182,84,255,157,103,35,0,104,193,109,255,67,221,154,0,201,172,1,254,8,162,88,0,165,1,29,255,125,155,229,255,30,154,220,1,103,239,92,0,220,1,109,255,202,198,1,0,94,2,142,1,36,54,44,0,235,226,158,255,170,251,214,255,185,77,9,0,97,74,242,0,219,163,149,255,240,35,118,255,223,114,88,254,192,199,3,0,106,37,24,255,201,161,118,255,97,89,99,1,224,58,103,255,101,199,147,254,222,60,99,0,234,25,59,1,52,135,27,0,102,3,91,254,168,216,235,0,229,232,136,0,104,60,129,0,46,168,238,0,39,191,67,0,75,163,47,0,143,97,98,255,56,216,168,1,168,233,252,255,35,111,22,255,92,84,43,0,26,200,87,1,91,253,152,0,202,56,70,0,142,8,77,0,80,10,175,1,252,199,76,0,22,110,82,255,129,1,194,0,11,128,61,1,87,14,145,255,253,222,190,1,15,72,174,0,85,163,86,254,58,99,44,255,45,24,188,254,26,205,15,0,19,229,210,254,248,67,195,0,99,71,184,0,154,199,37,255,151,243,121,255,38,51,75,255,201,85,130,254,44,65,250,0,57,147,243,254,146,43,59,255,89,28,53,0,33,84,24,255,179,51,18,254,189,70,83,0,11,156,179,1,98,134,119,0,158,111,111,0,119,154,73,255,200,63,140,254,45,13,13,255,154,192,2,254,81,72,42,0,46,160,185,254,44,112,6,0,146,215,149,1,26,176,104,0,68,28,87,1,236,50,153,255,179,128,250,254,206,193,191,255,166,92,137,254,53,40,239,0,210,1,204,254,168,173,35,0,141,243,45,1,36,50,109,255,15,242,194,255,227,159,122,255,176,175,202,254,70,57,72,0,40,223,56,0,208,162,58,255,183,98,93,0,15,111,12,0,30,8,76,255,132,127,246,255,45,242,103,0,69,181,15,255,10,209,30,0,3,179,121,0,241,232,218,1,123,199,88,255,2,210,202,1,188,130,81,255,94,101,208,1,103,36,45,0,76,193,24,1,95,26,241,255,165,162,187,0,36,114,140,0,202,66,5,255,37,56,147,0,152,11,243,1,127,85,232,255,250,135,212,1,185,177,113,0,90,220,75,255,69,248,146,0,50,111,50,0,92,22,80,0,244,36,115,254,163,100,82,255,25,193,6,1,127,61,36,0,253,67,30,254,65,236,170,255,161,17,215,254,63,175,140,0,55,127,4,0,79,112,233,0,109,160,40,0,143,83,7,255,65,26,238,255,217,169,140,255,78,94,189,255,0,147,190,255,147,71,186,254,106,77,127,255,233,157,233,1,135,87,237,255,208,13,236,1,155,109,36,255,180,100,218,0,180,163,18,0,190,110,9,1,17,63,123,255,179,136,180,255,165,123,123,255,144,188,81,254,71,240,108,255,25,112,11,255,227,218,51,255,167,50,234,255,114,79,108,255,31,19,115,255,183,240,99,0,227,87,143,255,72,217,248,255,102,169,95,1,129,149,149,0,238,133,12,1,227,204,35,0,208,115,26,1,102,8,234,0,112,88,143,1,144,249,14,0,240,158,172,254,100,112,119,0,194,141,153,254,40,56,83,255,121,176,46,0,42,53,76,255,158,191,154,0,91,209,92,0,173,13,16,1,5,72,226,255,204,254,149,0,80,184,207,0,100,9,122,254,118,101,171,255,252,203,0,254,160,207,54,0,56,72,249,1,56,140,13,255,10,64,107,254,91,101,52,255,225,181,248,1,139,255,132,0,230,145,17,0,233,56,23,0,119,1,241,255,213,169,151,255,99,99,9,254,185,15,191,255,173,103,109,1,174,13,251,255,178,88,7,254,27,59,68,255,10,33,2,255,248,97,59,0,26,30,146,1,176,147,10,0,95,121,207,1,188,88,24,0,185,94,254,254,115,55,201,0,24,50,70,0,120,53,6,0,142,66,146,0,228,226,249,255,104,192,222,1,173,68,219,0,162,184,36,255,143,102,137,255,157,11,23,0,125,45,98,0,235,93,225,254,56,112,160,255,70,116,243,1,153,249,55,255,129,39,17,1,241,80,244,0,87,69,21,1,94,228,73,255,78,66,65,255,194,227,231,0,61,146,87,255,173,155,23,255,112,116,219,254,216,38,11,255,131,186,133,0,94,212,187,0,100,47,91,0,204,254,175,255,222,18,215,254,173,68,108,255,227,228,79,255,38,221,213,0,163,227,150,254,31,190,18,0,160,179,11,1,10,90,94,255,220,174,88,0,163,211,229,255,199,136,52,0,130,95,221,255,140,188,231,254,139,113,128,255,117,171,236,254,49,220,20,255,59,20,171,255,228,109,188,0,20,225,32,254,195,16,174,0,227,254,136,1,135,39,105,0,150,77,206,255,210,238,226,0,55,212,132,254,239,57,124,0,170,194,93,255,249,16,247,255,24,151,62,255,10,151,10,0,79,139,178,255,120,242,202,0,26,219,213,0,62,125,35,255,144,2,108,255,230,33,83,255,81,45,216,1,224,62,17,0,214,217,125,0,98,153,153,255], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+10240); +/* memory initializer */ allocate([179,176,106,254,131,93,138,255,109,62,36,255,178,121,32,255,120,252,70,0,220,248,37,0,204,88,103,1,128,220,251,255,236,227,7,1,106,49,198,255,60,56,107,0,99,114,238,0,220,204,94,1,73,187,1,0,89,154,34,0,78,217,165,255,14,195,249,255,9,230,253,255,205,135,245,0,26,252,7,255,84,205,27,1,134,2,112,0,37,158,32,0,231,91,237,255,191,170,204,255,152,7,222,0,109,192,49,0,193,166,146,255,232,19,181,255,105,142,52,255,103,16,27,1,253,200,165,0,195,217,4,255,52,189,144,255,123,155,160,254,87,130,54,255,78,120,61,255,14,56,41,0,25,41,125,255,87,168,245,0,214,165,70,0,212,169,6,255,219,211,194,254,72,93,164,255,197,33,103,255,43,142,141,0,131,225,172,0,244,105,28,0,68,68,225,0,136,84,13,255,130,57,40,254,139,77,56,0,84,150,53,0,54,95,157,0,144,13,177,254,95,115,186,0,117,23,118,255,244,166,241,255,11,186,135,0,178,106,203,255,97,218,93,0,43,253,45,0,164,152,4,0,139,118,239,0,96,1,24,254,235,153,211,255,168,110,20,255,50,239,176,0,114,41,232,0,193,250,53,0,254,160,111,254,136,122,41,255,97,108,67,0,215,152,23,255,140,209,212,0,42,189,163,0,202,42,50,255,106,106,189,255,190,68,217,255,233,58,117,0,229,220,243,1,197,3,4,0,37,120,54,254,4,156,134,255,36,61,171,254,165,136,100,255,212,232,14,0,90,174,10,0,216,198,65,255,12,3,64,0,116,113,115,255,248,103,8,0,231,125,18,255,160,28,197,0,30,184,35,1,223,73,249,255,123,20,46,254,135,56,37,255,173,13,229,1,119,161,34,255,245,61,73,0,205,125,112,0,137,104,134,0,217,246,30,255,237,142,143,0,65,159,102,255,108,164,190,0,219,117,173,255,34,37,120,254,200,69,80,0,31,124,218,254,74,27,160,255,186,154,199,255,71,199,252,0,104,81,159,1,17,200,39,0,211,61,192,1,26,238,91,0,148,217,12,0,59,91,213,255,11,81,183,255,129,230,122,255,114,203,145,1,119,180,66,255,72,138,180,0,224,149,106,0,119,82,104,255,208,140,43,0,98,9,182,255,205,101,134,255,18,101,38,0,95,197,166,255,203,241,147,0,62,208,145,255,133,246,251,0,2,169,14,0,13,247,184,0,142,7,254,0,36,200,23,255,88,205,223,0,91,129,52,255,21,186,30,0,143,228,210,1,247,234,248,255,230,69,31,254,176,186,135,255,238,205,52,1,139,79,43,0,17,176,217,254,32,243,67,0,242,111,233,0,44,35,9,255,227,114,81,1,4,71,12,255,38,105,191,0,7,117,50,255,81,79,16,0,63,68,65,255,157,36,110,255,77,241,3,255,226,45,251,1,142,25,206,0,120,123,209,1,28,254,238,255,5,128,126,255,91,222,215,255,162,15,191,0,86,240,73,0,135,185,81,254,44,241,163,0,212,219,210,255,112,162,155,0,207,101,118,0,168,72,56,255,196,5,52,0,72,172,242,255,126,22,157,255,146,96,59,255,162,121,152,254,140,16,95,0,195,254,200,254,82,150,162,0,119,43,145,254,204,172,78,255,166,224,159,0,104,19,237,255,245,126,208,255,226,59,213,0,117,217,197,0,152,72,237,0,220,31,23,254,14,90,231,255,188,212,64,1,60,101,246,255,85,24,86,0,1,177,109,0,146,83,32,1,75,182,192,0,119,241,224,0,185,237,27,255,184,101,82,1,235,37,77,255,253,134,19,0,232,246,122,0,60,106,179,0,195,11,12,0,109,66,235,1,125,113,59,0,61,40,164,0,175,104,240,0,2,47,187,255,50,12,141,0,194,139,181,255,135,250,104,0,97,92,222,255,217,149,201,255,203,241,118,255,79,151,67,0,122,142,218,255,149,245,239,0,138,42,200,254,80,37,97,255,124,112,167,255,36,138,87,255,130,29,147,255,241,87,78,255,204,97,19,1,177,209,22,255,247,227,127,254,99,119,83,255,212,25,198,1,16,179,179,0,145,77,172,254,89,153,14,255,218,189,167,0,107,233,59,255,35,33,243,254,44,112,112,255,161,127,79,1,204,175,10,0,40,21,138,254,104,116,228,0,199,95,137,255,133,190,168,255,146,165,234,1,183,99,39,0,183,220,54,254,255,222,133,0,162,219,121,254,63,239,6,0,225,102,54,255,251,18,246,0,4,34,129,1,135,36,131,0,206,50,59,1,15,97,183,0,171,216,135,255,101,152,43,255,150,251,91,0,38,145,95,0,34,204,38,254,178,140,83,255,25,129,243,255,76,144,37,0,106,36,26,254,118,144,172,255,68,186,229,255,107,161,213,255,46,163,68,255,149,170,253,0,187,17,15,0,218,160,165,255,171,35,246,1,96,13,19,0,165,203,117,0,214,107,192,255,244,123,177,1,100,3,104,0,178,242,97,255,251,76,130,255,211,77,42,1,250,79,70,255,63,244,80,1,105,101,246,0,61,136,58,1,238,91,213,0,14,59,98,255,167,84,77,0,17,132,46,254,57,175,197,255,185,62,184,0,76,64,207,0,172,175,208,254,175,74,37,0,138,27,211,254,148,125,194,0,10,89,81,0,168,203,101,255,43,213,209,1,235,245,54,0,30,35,226,255,9,126,70,0,226,125,94,254,156,117,20,255,57,248,112,1,230,48,64,255,164,92,166,1,224,214,230,255,36,120,143,0,55,8,43,255,251,1,245,1,106,98,165,0,74,107,106,254,53,4,54,255,90,178,150,1,3,120,123,255,244,5,89,1,114,250,61,255,254,153,82,1,77,15,17,0,57,238,90,1,95,223,230,0,236,52,47,254,103,148,164,255,121,207,36,1,18,16,185,255,75,20,74,0,187,11,101,0,46,48,129,255,22,239,210,255,77,236,129,255,111,77,204,255,61,72,97,255,199,217,251,255,42,215,204,0,133,145,201,255,57,230,146,1,235,100,198,0,146,73,35,254,108,198,20,255,182,79,210,255,82,103,136,0,246,108,176,0,34,17,60,255,19,74,114,254,168,170,78,255,157,239,20,255,149,41,168,0,58,121,28,0,79,179,134,255,231,121,135,255,174,209,98,255,243,122,190,0,171,166,205,0,212,116,48,0,29,108,66,255,162,222,182,1,14,119,21,0,213,39,249,255,254,223,228,255,183,165,198,0,133,190,48,0,124,208,109,255,119,175,85,255,9,209,121,1,48,171,189,255,195,71,134,1,136,219,51,255,182,91,141,254,49,159,72,0,35,118,245,255,112,186,227,255,59,137,31,0,137,44,163,0,114,103,60,254,8,213,150,0,162,10,113,255,194,104,72,0,220,131,116,255,178,79,92,0,203,250,213,254,93,193,189,255,130,255,34,254,212,188,151,0,136,17,20,255,20,101,83,255,212,206,166,0,229,238,73,255,151,74,3,255,168,87,215,0,155,188,133,255,166,129,73,0,240,79,133,255,178,211,81,255,203,72,163,254,193,168,165,0,14,164,199,254,30,255,204,0,65,72,91,1,166,74,102,255,200,42,0,255,194,113,227,255,66,23,208,0,229,216,100,255,24,239,26,0,10,233,62,255,123,10,178,1,26,36,174,255,119,219,199,1,45,163,190,0,16,168,42,0,166,57,198,255,28,26,26,0,126,165,231,0,251,108,100,255,61,229,121,255,58,118,138,0,76,207,17,0,13,34,112,254,89,16,168,0,37,208,105,255,35,201,215,255,40,106,101,254,6,239,114,0,40,103,226,254,246,127,110,255,63,167,58,0,132,240,142,0,5,158,88,255,129,73,158,255,94,89,146,0,230,54,146,0,8,45,173,0,79,169,1,0,115,186,247,0,84,64,131,0,67,224,253,255,207,189,64,0,154,28,81,1,45,184,54,255,87,212,224,255,0,96,73,255,129,33,235,1,52,66,80,255,251,174,155,255,4,179,37,0,234,164,93,254,93,175,253,0,198,69,87,255,224,106,46,0,99,29,210,0,62,188,114,255,44,234,8,0,169,175,247,255,23,109,137,255,229,182,39,0,192,165,94,254,245,101,217,0,191,88,96,0,196,94,99,255,106,238,11,254,53,126,243,0,94,1,101,255,46,147,2,0,201,124,124,255,141,12,218,0,13,166,157,1,48,251,237,255,155,250,124,255,106,148,146,255,182,13,202,0,28,61,167,0,217,152,8,254,220,130,45,255,200,230,255,1,55,65,87,255,93,191,97,254,114,251,14,0,32,105,92,1,26,207,141,0,24,207,13,254,21,50,48,255,186,148,116,255,211,43,225,0,37,34,162,254,164,210,42,255,68,23,96,255,182,214,8,255,245,117,137,255,66,195,50,0,75,12,83,254,80,140,164,0,9,165,36,1,228,110,227,0,241,17,90,1,25,52,212,0,6,223,12,255,139,243,57,0,12,113,75,1,246,183,191,255,213,191,69,255,230,15,142,0,1,195,196,255,138,171,47,255,64,63,106,1,16,169,214,255,207,174,56,1,88,73,133,255,182,133,140,0,177,14,25,255,147,184,53,255,10,227,161,255,120,216,244,255,73,77,233,0,157,238,139,1,59,65,233,0,70,251,216,1,41,184,153,255,32,203,112,0,146,147,253,0,87,101,109,1,44,82,133,255,244,150,53,255,94,152,232,255,59,93,39,255,88,147,220,255,78,81,13,1,32,47,252,255,160,19,114,255,93,107,39,255,118,16,211,1,185,119,209,255,227,219,127,254,88,105,236,255,162,110,23,255,36,166,110,255,91,236,221,255,66,234,116,0,111,19,244,254,10,233,26,0,32,183,6,254,2,191,242,0,218,156,53,254,41,60,70,255,168,236,111,0,121,185,126,255,238,142,207,255,55,126,52,0,220,129,208,254,80,204,164,255,67,23,144,254,218,40,108,255,127,202,164,0,203,33,3,255,2,158,0,0,37,96,188,255,192,49,74,0,109,4,0,0,111,167,10,254,91,218,135,255,203,66,173,255,150,194,226,0,201,253,6,255,174,102,121,0,205,191,110,0,53,194,4,0,81,40,45,254,35,102,143,255,12,108,198,255,16,27,232,255,252,71,186,1,176,110,114,0,142,3,117,1,113,77,142,0,19,156,197,1,92,47,252,0,53,232,22,1,54,18,235,0,46,35,189,255,236,212,129,0,2,96,208,254,200,238,199,255,59,175,164,255,146,43,231,0,194,217,52,255,3,223,12,0,138,54,178,254,85,235,207,0,232,207,34,0,49,52,50,255,166,113,89,255,10,45,216,255,62,173,28,0,111,165,246,0,118,115,91,255,128,84,60,0,167,144,203,0,87,13,243,0,22,30,228,1,177,113,146,255,129,170,230,254,252,153,129,255,145,225,43,0,70,231,5,255,122,105,126,254,86,246,148,255,110,37,154,254,209,3,91,0,68,145,62,0,228,16,165,255,55,221,249,254,178,210,91,0,83,146,226,254,69,146,186,0,93,210,104,254,16,25,173,0,231,186,38,0,189,122,140,255,251,13,112,255,105,110,93,0,251,72,170,0,192,23,223,255,24,3,202,1,225,93,228,0,153,147,199,254,109,170,22,0,248,101,246,255,178,124,12,255,178,254,102,254,55,4,65,0,125,214,180,0,183,96,147,0,45,117,23,254,132,191,249,0,143,176,203,254,136,183,54,255,146,234,177,0,146,101,86,255,44,123,143,1,33,209,152,0,192,90,41,254,83,15,125,255,213,172,82,0,215,169,144,0,16,13,34,0,32,209,100,255,84,18,249,1,197,17,236,255,217,186,230,0,49,160,176,255,111,118,97,255,237,104,235,0,79,59,92,254,69,249,11,255,35,172,74,1,19,118,68,0,222,124,165,255,180,66,35,255,86,174,246,0,43,74,111,255,126,144,86,255,228,234,91,0,242,213,24,254,69,44,235,255,220,180,35,0,8,248,7,255,102,47,92,255,240,205,102,255,113,230,171,1,31,185,201,255,194,246,70,255,122,17,187,0,134,70,199,255,149,3,150,255,117,63,103,0,65,104,123,255,212,54,19,1,6,141,88,0,83,134,243,255,136,53,103,0,169,27,180,0,177,49,24,0,111,54,167,0,195,61,215,255,31,1,108,1,60,42,70,0,185,3,162,255,194,149,40,255,246,127,38,254,190,119,38,255,61,119,8,1,96,161,219,255,42,203,221,1,177,242,164,255,245,159,10,0,116,196,0,0,5,93,205,254,128,127,179,0,125,237,246,255,149,162,217,255,87,37,20,254,140,238,192,0,9,9,193,0,97,1,226,0,29,38,10,0,0,136,63,255,229,72,210,254,38,134,92,255,78,218,208,1,104,36,84,255,12,5,193,255,242,175,61,255,191,169,46,1,179,147,147,255,113,190,139,254,125,172,31,0,3,75,252,254,215,36,15,0,193,27,24,1,255,69,149,255,110,129,118,0,203,93,249,0,138,137,64,254,38,70,6,0,153,116,222,0,161,74,123,0,193,99,79,255,118,59,94,255,61,12,43,1,146,177,157,0,46,147,191,0,16,255,38,0,11,51,31,1,60,58,98,255,111,194,77,1,154,91,244,0,140,40,144,1,173,10,251,0,203,209,50,254,108,130,78,0,228,180,90,0,174,7,250,0,31,174,60,0,41,171,30,0,116,99,82,255,118,193,139,255,187,173,198,254,218,111,56,0,185,123,216,0,249,158,52,0,52,180,93,255,201,9,91,255,56,45,166,254,132,155,203,255,58,232,110,0,52,211,89,255,253,0,162,1,9,87,183,0,145,136,44,1,94,122,245,0,85,188,171,1,147,92,198,0,0,8,104,0,30,95,174,0,221,230,52,1,247,247,235,255,137,174,53,255,35,21,204,255,71,227,214,1,232,82,194,0,11,48,227,255,170,73,184,255,198,251,252,254,44,112,34,0,131,101,131,255,72,168,187,0,132,135,125,255,138,104,97,255,238,184,168,255,243,104,84,255,135,216,226,255,139,144,237,0,188,137,150,1,80,56,140,255,86,169,167,255,194,78,25,255,220,17,180,255,17,13,193,0,117,137,212,255,141,224,151,0,49,244,175,0,193,99,175,255,19,99,154,1,255,65,62,255,156,210,55,255,242,244,3,255,250,14,149,0,158,88,217,255,157,207,134,254,251,232,28,0,46,156,251,255,171,56,184,255,239,51,234,0,142,138,131,255,25,254,243,1,10,201,194,0,63,97,75,0,210,239,162,0,192,200,31,1,117,214,243,0,24,71,222,254,54,40,232,255,76,183,111,254,144,14,87,255,214,79,136,255,216,196,212,0,132,27,140,254,131,5,253,0,124,108,19,255,28,215,75,0,76,222,55,254,233,182,63,0,68,171,191,254,52,111,222,255,10,105,77,255,80,170,235,0,143,24,88,255,45,231,121,0,148,129,224,1,61,246,84,0,253,46,219,255,239,76,33,0,49,148,18,254,230,37,69,0,67,134,22,254,142,155,94,0,31,157,211,254,213,42,30,255,4,228,247,254,252,176,13,255,39,0,31,254,241,244,255,255,170,45,10,254,253,222,249,0,222,114,132,0,255,47,6,255,180,163,179,1,84,94,151,255,89,209,82,254,229,52,169,255,213,236,0,1,214,56,228,255,135,119,151,255,112,201,193,0,83,160,53,254,6,151,66,0,18,162,17,0,233,97,91,0,131,5,78,1,181,120,53,255,117,95,63,255,237,117,185,0,191,126,136,255,144,119,233,0,183,57,97,1,47,201,187,255,167,165,119,1,45,100,126,0,21,98,6,254,145,150,95,255,120,54,152,0,209,98,104,0,143,111,30,254,184,148,249,0,235,216,46,0,248,202,148,255,57,95,22,0,242,225,163,0,233,247,232,255,71,171,19,255,103,244,49,255,84,103,93,255,68,121,244,1,82,224,13,0,41,79,43,255,249,206,167,255,215,52,21,254,192,32,22,255,247,111,60,0,101,74,38,255,22,91,84,254,29,28,13,255,198,231,215,254,244,154,200,0,223,137,237,0,211,132,14,0,95,64,206,255,17,62,247,255,233,131,121,1,93,23,77,0,205,204,52,254,81,189,136,0,180,219,138,1,143,18,94,0,204,43,140,254,188,175,219,0,111,98,143,255,151,63,162,255,211,50,71,254,19,146,53,0,146,45,83,254,178,82,238,255,16,133,84,255,226,198,93,255,201,97,20,255,120,118,35,255,114,50,231,255,162,229,156,255,211,26,12,0,114,39,115,255,206,212,134,0,197,217,160,255,116,129,94,254,199,215,219,255,75,223,249,1,253,116,181,255,232,215,104,255,228,130,246,255,185,117,86,0,14,5,8,0,239,29,61,1,237,87,133,255,125,146,137,254,204,168,223,0,46,168,245,0,154,105,22,0,220,212,161,255,107,69,24,255,137,218,181,255,241,84,198,255,130,122,211,255,141,8,153,255,190,177,118,0,96,89,178,0,255,16,48,254,122,96,105,255,117,54,232,255,34,126,105,255,204,67,166,0,232,52,138,255,211,147,12,0,25,54,7,0,44,15,215,254,51,236,45,0,190,68,129,1,106,147,225,0,28,93,45,254,236,141,15,255,17,61,161,0,220,115,192,0,236,145,24,254,111,168,169,0,224,58,63,255,127,164,188,0,82,234,75,1,224,158,134,0,209,68,110,1,217,166,217,0,70,225,166,1,187,193,143,255,16,7,88,255,10,205,140,0,117,192,156,1,17,56,38,0,27,124,108,1,171,215,55,255,95,253,212,0,155,135,168,255,246,178,153,254,154,68,74,0,232,61,96,254,105,132,59,0,33,76,199,1,189,176,130,255,9,104,25,254,75,198,102,255,233,1,112,0,108,220,20,255,114,230,70,0,140,194,133,255,57,158,164,254,146,6,80,255,169,196,97,1,85,183,130,0,70,158,222,1,59,237,234,255,96,25,26,255,232,175,97,255,11,121,248,254,88,35,194,0,219,180,252,254,74,8,227,0,195,227,73,1,184,110,161,255,49,233,164,1,128,53,47,0,82,14,121,255,193,190,58,0,48,174,117,255,132,23,32,0,40,10,134,1,22,51,25,255,240,11,176,255,110,57,146,0,117,143,239,1,157,101,118,255,54,84,76,0,205,184,18,255,47,4,72,255,78,112,85,255,193,50,66,1,93,16,52,255,8,105,134,0,12,109,72,255,58,156,251,0,144,35,204,0,44,160,117,254,50,107,194,0,1,68,165,255,111,110,162,0,158,83,40,254,76,214,234,0,58,216,205,255,171,96,147,255,40,227,114,1,176,227,241,0,70,249,183,1,136,84,139,255,60,122,247,254,143,9,117,255,177,174,137,254,73,247,143,0,236,185,126,255,62,25,247,255,45,64,56,255,161,244,6,0,34,57,56,1,105,202,83,0,128,147,208,0,6,103,10,255,74,138,65,255,97,80,100,255,214,174,33,255,50,134,74,255,110,151,130,254,111,84,172,0,84,199,75,254,248,59,112,255,8,216,178,1,9,183,95,0,238,27,8,254,170,205,220,0,195,229,135,0,98,76,237,255,226,91,26,1,82,219,39,255,225,190,199,1,217,200,121,255,81,179,8,255,140,65,206,0,178,207,87,254,250,252,46,255,104,89,110,1,253,189,158,255,144,214,158,255,160,245,54,255,53,183,92,1,21,200,194,255,146,33,113,1,209,1,255,0,235,106,43,255,167,52,232,0,157,229,221,0,51,30,25,0,250,221,27,1,65,147,87,255,79,123,196,0,65,196,223,255,76,44,17,1,85,241,68,0,202,183,249,255,65,212,212,255,9,33,154,1,71,59,80,0,175,194,59,255,141,72,9,0,100,160,244,0,230,208,56,0,59,25,75,254,80,194,194,0,18,3,200,254,160,159,115,0,132,143,247,1,111,93,57,255,58,237,11,1,134,222,135,255,122,163,108,1,123,43,190,255,251,189,206,254,80,182,72,255,208,246,224,1,17,60,9,0,161,207,38,0,141,109,91,0,216,15,211,255,136,78,110,0,98,163,104,255,21,80,121,255,173,178,183,1,127,143,4,0,104,60,82,254,214,16,13,255,96,238,33,1,158,148,230,255,127,129,62,255,51,255,210,255,62,141,236,254,157,55,224,255,114,39,244,0,192,188,250,255,228,76,53,0,98,84,81,255,173,203,61,254,147,50,55,255,204,235,191,0,52,197,244,0,88,43,211,254,27,191,119,0,188,231,154,0,66,81,161,0,92,193,160,1,250,227,120,0,123,55,226,0,184,17,72,0,133,168,10,254,22,135,156,255,41,25,103,255,48,202,58,0,186,149,81,255,188,134,239,0,235,181,189,254,217,139,188,255,74,48,82,0,46,218,229,0,189,253,251,0,50,229,12,255,211,141,191,1,128,244,25,255,169,231,122,254,86,47,189,255,132,183,23,255,37,178,150,255,51,137,253,0,200,78,31,0,22,105,50,0,130,60,0,0,132,163,91,254,23,231,187,0,192,79,239,0,157,102,164,255,192,82,20,1,24,181,103,255,240,9,234,0,1,123,164,255,133,233,0,255,202,242,242,0,60,186,245,0,241,16,199,255,224,116,158,254,191,125,91,255,224,86,207,0,121,37,231,255,227,9,198,255,15,153,239,255,121,232,217,254,75,112,82,0,95,12,57,254,51,214,105,255,148,220,97,1,199,98,36,0,156,209,12,254,10,212,52,0,217,180,55,254,212,170,232,255,216,20,84,255,157,250,135,0,157,99,127,254,1,206,41,0,149,36,70,1,54,196,201,255,87,116,0,254,235,171,150,0,27,163,234,0,202,135,180,0,208,95,0,254,123,156,93,0,183,62,75,0,137,235,182,0,204,225,255,255,214,139,210,255,2,115,8,255,29,12,111,0,52,156,1,0,253,21,251,255,37,165,31,254,12,130,211,0,106,18,53,254,42,99,154,0,14,217,61,254,216,11,92,255,200,197,112,254,147,38,199,0,36,252,120,254,107,169,77,0,1,123,159,255,207,75,102,0,163,175,196,0,44,1,240,0,120,186,176,254,13,98,76,255,237,124,241,255,232,146,188,255,200,96,224,0,204,31,41,0,208,200,13,0,21,225,96,255,175,156,196,0,247,208,126,0,62,184,244,254,2,171,81,0,85,115,158,0,54,64,45,255,19,138,114,0,135,71,205,0,227,47,147,1,218,231,66,0,253,209,28,0,244,15,173,255,6,15,118,254,16,150,208,255,185,22,50,255,86,112,207,255,75,113,215,1,63,146,43,255,4,225,19,254,227,23,62,255,14,255,214,254,45,8,205,255,87,197,151,254,210,82,215,255,245,248,247,255,128,248,70,0,225,247,87,0,90,120,70,0,213,245,92,0,13,133,226,0,47,181,5,1,92,163,105,255,6,30,133,254,232,178,61,255,230,149,24,255,18,49,158,0,228,100,61,254,116,243,251,255,77,75,92,1,81,219,147,255,76,163,254,254,141,213,246,0,232,37,152,254,97,44,100,0,201,37,50,1,212,244,57,0,174,171,183,255,249,74,112,0,166,156,30,0,222,221,97,255,243,93,73,254,251,101,100,255,216,217,93,255,254,138,187,255,142,190,52,255,59,203,177,255,200,94,52,0,115,114,158,255,165,152,104,1,126,99,226,255,118,157,244,1,107,200,16,0,193,90,229,0,121,6,88,0,156,32,93,254,125,241,211,255,14,237,157,255,165,154,21,255,184,224,22,255,250,24,152,255,113,77,31,0,247,171,23,255,237,177,204,255,52,137,145,255,194,182,114,0,224,234,149,0,10,111,103,1,201,129,4,0,238,142,78,0,52,6,40,255,110,213,165,254,60,207,253,0,62,215,69,0,96,97,0,255,49,45,202,0,120,121,22,255,235,139,48,1,198,45,34,255,182,50,27,1,131,210,91,255,46,54,128,0,175,123,105,255,198,141,78,254,67,244,239,255,245,54,103,254,78,38,242,255,2,92,249,254,251,174,87,255,139,63,144,0,24,108,27,255,34,102,18,1,34,22,152,0,66,229,118,254,50,143,99,0,144,169,149,1,118,30,152,0,178,8,121,1,8,159,18,0,90,101,230,255,129,29,119,0,68,36,11,1,232,183,55,0,23,255,96,255,161,41,193,255,63,139,222,0,15,179,243,0,255,100,15,255,82,53,135,0,137,57,149,1,99,240,170,255,22,230,228,254,49,180,82,255,61,82,43,0,110,245,217,0,199,125,61,0,46,253,52,0,141,197,219,0,211,159,193,0,55,121,105,254,183,20,129,0,169,119,170,255,203,178,139,255,135,40,182,255,172,13,202,255,65,178,148,0,8,207,43,0,122,53,127,1,74,161,48,0,227,214,128,254,86,11,243,255,100,86,7,1,245,68,134,255,61,43,21,1,152,84,94,255,190,60,250,254,239,118,232,255,214,136,37,1,113,76,107,255,93,104,100,1,144,206,23,255,110,150,154,1,228,103,185,0,218,49,50,254,135,77,139,255,185,1,78,0,0,161,148,255,97,29,233,255,207,148,149,255,160,168,0,0,91,128,171,255,6,28,19,254,11,111,247,0,39,187,150,255,138,232,149,0,117,62,68,255,63,216,188,255,235,234,32,254,29,57,160,255,25,12,241,1,169,60,191,0,32,131,141,255,237,159,123,255,94,197,94,254,116,254,3,255,92,179,97,254,121,97,92,255,170,112,14,0,21,149,248,0,248,227,3,0,80,96,109,0,75,192,74,1,12,90,226,255,161,106,68,1,208,114,127,255,114,42,255,254,74,26,74,255,247,179,150,254,121,140,60,0,147,70,200,255,214,40,161,255,161,188,201,255,141,65,135,255,242,115,252,0,62,47,202,0,180,149,255,254,130,55,237,0,165,17,186,255,10,169,194,0,156,109,218,255,112,140,123,255,104,128,223,254,177,142,108,255,121,37,219,255,128,77,18,255,111,108,23,1,91,192,75,0,174,245,22,255,4,236,62,255,43,64,153,1,227,173,254,0,237,122,132,1,127,89,186,255,142,82,128,254,252,84,174,0,90,179,177,1,243,214,87,255,103,60,162,255,208,130,14,255,11,130,139,0,206,129,219,255,94,217,157,255,239,230,230,255,116,115,159,254,164,107,95,0,51,218,2,1,216,125,198,255,140,202,128,254,11,95,68,255,55,9,93,254,174,153,6,255,204,172,96,0,69,160,110,0,213,38,49,254,27,80,213,0,118,125,114,0,70,70,67,255,15,142,73,255,131,122,185,255,243,20,50,254,130,237,40,0,210,159,140,1,197,151,65,255,84,153,66,0,195,126,90,0,16,238,236,1,118,187,102,255,3,24,133,255,187,69,230,0,56,197,92,1,213,69,94,255,80,138,229,1,206,7,230,0,222,111,230,1,91,233,119,255,9,89,7,1,2,98,1,0,148,74,133,255,51,246,180,255,228,177,112,1,58,189,108,255,194,203,237,254,21,209,195,0,147,10,35,1,86,157,226,0,31,163,139,254,56,7,75,255,62,90,116,0,181,60,169,0,138,162,212,254,81,167,31,0,205,90,112,255,33,112,227,0,83,151,117,1,177,224,73,255,174,144,217,255,230,204,79,255,22,77,232,255,114,78,234,0,224,57,126,254,9,49,141,0,242,147,165,1,104,182,140,255,167,132,12,1,123,68,127,0,225,87,39,1,251,108,8,0,198,193,143,1,121,135,207,255,172,22,70,0,50,68,116,255,101,175,40,255,248,105,233,0,166,203,7,0,110,197,218,0,215,254,26,254,168,226,253,0,31,143,96,0,11,103,41,0,183,129,203,254,100,247,74,255,213,126,132,0,210,147,44,0,199,234,27,1,148,47,181,0,155,91,158,1,54,105,175,255,2,78,145,254,102,154,95,0,128,207,127,254,52,124,236,255,130,84,71,0,221,243,211,0,152,170,207,0,222,106,199,0,183,84,94,254,92,200,56,255,138,182,115,1,142,96,146,0,133,136,228,0,97,18,150,0,55,251,66,0,140,102,4,0,202,103,151,0,30,19,248,255,51,184,207,0,202,198,89,0,55,197,225,254,169,95,249,255,66,65,68,255,188,234,126,0,166,223,100,1,112,239,244,0,144,23,194,0,58,39,182,0,244,44,24,254,175,68,179,255,152,118,154,1,176,162,130,0,217,114,204,254,173,126,78,255,33,222,30,255,36,2,91,255,2,143,243,0,9,235,215,0,3,171,151,1,24,215,245,255,168,47,164,254,241,146,207,0,69,129,180,0,68,243,113,0,144,53,72,254,251,45,14,0,23,110,168,0,68,68,79,255,110,70,95,254,174,91,144,255,33,206,95,255,137,41,7,255,19,187,153,254,35,255,112,255,9,145,185,254,50,157,37,0,11,112,49,1,102,8,190,255,234,243,169,1,60,85,23,0,74,39,189,0,116,49,239,0,173,213,210,0,46,161,108,255,159,150,37,0,196,120,185,255,34,98,6,255,153,195,62,255,97,230,71,255,102,61,76,0,26,212,236,255,164,97,16,0,198,59,146,0,163,23,196,0,56,24,61,0,181,98,193,0,251,147,229,255,98,189,24,255,46,54,206,255,234,82,246,0,183,103,38,1,109,62,204,0,10,240,224,0,146,22,117,255,142,154,120,0,69,212,35,0,208,99,118,1,121,255,3,255,72,6,194,0,117,17,197,255,125,15,23,0,154,79,153,0,214,94,197,255,185,55,147,255,62,254,78,254,127,82,153,0,110,102,63,255,108,82,161,255,105,187,212,1,80,138,39,0,60,255,93,255,72,12,186,0,210,251,31,1,190,167,144,255,228,44,19,254,128,67,232,0,214,249,107,254,136,145,86,255,132,46,176,0,189,187,227,255,208,22,140,0,217,211,116,0,50,81,186,254,139,250,31,0,30,64,198,1,135,155,100,0,160,206,23,254,187,162,211,255,16,188,63,0,254,208,49,0,85,84,191,0,241,192,242,255,153,126,145,1,234,162,162,255,230,97,216,1,64,135,126,0,190,148,223,1,52,0,43,255,28,39,189,1,64,136,238,0,175,196,185,0,98,226,213,255,127,159,244,1,226,175,60,0,160,233,142,1,180,243,207,255,69,152,89,1,31,101,21,0,144,25,164,254,139,191,209,0,91,25,121,0,32,147,5,0,39,186,123,255,63,115,230,255,93,167,198,255,143,213,220,255,179,156,19,255,25,66,122,0,214,160,217,255,2,45,62,255,106,79,146,254,51,137,99,255,87,100,231,255,175,145,232,255,101,184,1,255,174,9,125,0,82,37,161,1,36,114,141,255,48,222,142,255,245,186,154,0,5,174,221,254,63,114,155,255,135,55,160,1,80,31,135,0,126,250,179,1,236,218,45,0,20,28,145,1,16,147,73,0,249,189,132,1,17,189,192,255,223,142,198,255,72,20,15,255,250,53,237,254,15,11,18,0,27,211,113,254,213,107,56,255,174,147,146,255,96,126,48,0,23,193,109,1,37,162,94,0,199,157,249,254,24,128,187,255,205,49,178,254,93,164,42,255,43,119,235,1,88,183,237,255,218,210,1,255,107,254,42,0,230,10,99,255,162,0,226,0,219,237,91,0,129,178,203,0,208,50,95,254,206,208,95,255,247,191,89,254,110,234,79,255,165,61,243,0,20,122,112,255,246,246,185,254,103,4,123,0,233,99,230,1,219,91,252,255,199,222,22,255,179,245,233,255,211,241,234,0,111,250,192,255,85,84,136,0,101,58,50,255,131,173,156,254,119,45,51,255,118,233,16,254,242,90,214,0,94,159,219,1,3,3,234,255,98,76,92,254,80,54,230,0,5,228,231,254,53,24,223,255,113,56,118,1,20,132,1,255,171,210,236,0,56,241,158,255,186,115,19,255,8,229,174,0,48,44,0,1,114,114,166,255,6,73,226,255,205,89,244,0,137,227,75,1,248,173,56,0,74,120,246,254,119,3,11,255,81,120,198,255,136,122,98,255,146,241,221,1,109,194,78,255,223,241,70,1,214,200,169,255,97,190,47,255,47,103,174,255,99,92,72,254,118,233,180,255,193,35,233,254,26,229,32,255,222,252,198,0,204,43,71,255,199,84,172,0,134,102,190,0,111,238,97,254,230,40,230,0,227,205,64,254,200,12,225,0,166,25,222,0,113,69,51,255,143,159,24,0,167,184,74,0,29,224,116,254,158,208,233,0,193,116,126,255,212,11,133,255,22,58,140,1,204,36,51,255,232,30,43,0,235,70,181,255,64,56,146,254,169,18,84,255,226,1,13,255,200,50,176,255,52,213,245,254,168,209,97,0,191,71,55,0,34,78,156,0,232,144,58,1,185,74,189,0,186,142,149,254,64,69,127,255,161,203,147,255,176,151,191,0,136,231,203,254,163,182,137,0,161,126,251,254,233,32,66,0,68,207,66,0,30,28,37,0,93,114,96,1,254,92,247,255,44,171,69,0,202,119,11,255,188,118,50,1,255,83,136,255,71,82,26,0,70,227,2,0,32,235,121,1,181,41,154,0,71,134,229,254,202,255,36,0,41,152,5,0,154,63,73,255,34,182,124,0,121,221,150,255,26,204,213,1,41,172,87,0,90,157,146,255,109,130,20,0,71,107,200,255,243,102,189,0,1,195,145,254,46,88,117,0,8,206,227,0,191,110,253,255,109,128,20,254,134,85,51,255,137,177,112,1,216,34,22,255,131,16,208,255,121,149,170,0,114,19,23,1,166,80,31,255,113,240,122,0,232,179,250,0,68,110,180,254,210,170,119,0,223,108,164,255,207,79,233,255,27,229,226,254,209,98,81,255,79,68,7,0,131,185,100,0,170,29,162,255,17,162,107,255,57,21,11,1,100,200,181,255,127,65,166,1,165,134,204,0,104,167,168,0,1,164,79,0,146,135,59,1,70,50,128,255,102,119,13,254,227,6,135,0,162,142,179,255,160,100,222,0,27,224,219,1,158,93,195,255,234,141,137,0,16,24,125,255,238,206,47,255,97,17,98,255,116,110,12,255,96,115,77,0,91,227,232,255,248,254,79,255,92,229,6,254,88,198,139,0,206,75,129,0,250,77,206,255,141,244,123,1,138,69,220,0,32,151,6,1,131,167,22,255,237,68,167,254,199,189,150,0,163,171,138,255,51,188,6,255,95,29,137,254,148,226,179,0,181,107,208,255,134,31,82,255,151,101,45,255,129,202,225,0,224,72,147,0,48,138,151,255,195,64,206,254,237,218,158,0,106,29,137,254,253,189,233,255,103,15,17,255,194,97,255,0,178,45,169,254,198,225,155,0,39,48,117,255,135,106,115,0,97,38,181,0,150,47,65,255,83,130,229,254,246,38,129,0,92,239,154,254,91,99,127,0,161,111,33,255,238,217,242,255,131,185,195,255,213,191,158,255,41,150,218,0,132,169,131,0,89,84,252,1,171,70,128,255,163,248,203,254,1,50,180,255,124,76,85,1,251,111,80,0,99,66,239,255,154,237,182,255,221,126,133,254,74,204,99,255,65,147,119,255,99,56,167,255,79,248,149,255,116,155,228,255,237,43,14,254,69,137,11,255,22,250,241,1,91,122,143,255,205,249,243,0,212,26,60,255,48,182,176,1,48,23,191,255,203,121,152,254,45,74,213,255,62,90,18,254,245,163,230,255,185,106,116,255,83,35,159,0,12,33,2,255,80,34,62,0,16,87,174,255,173,101,85,0,202,36,81,254,160,69,204,255,64,225,187,0,58,206,94,0,86,144,47,0,229,86,245,0,63,145,190,1,37,5,39,0,109,251,26,0,137,147,234,0,162,121,145,255,144,116,206,255,197,232,185,255,183,190,140,255,73,12,254,255,139,20,242,255,170,90,239,255,97,66,187,255,245,181,135,254,222,136,52,0,245,5,51,254,203,47,78,0,152,101,216,0,73,23,125,0,254,96,33,1,235,210,73,255,43,209,88,1,7,129,109,0,122,104,228,254,170,242,203,0,242,204,135,255,202,28,233,255,65,6,127,0,159,144,71,0,100,140,95,0,78,150,13,0,251,107,118,1,182,58,125,255,1,38,108,255,141,189,209,255,8,155,125,1,113,163,91,255,121,79,190,255,134,239,108,255,76,47,248,0,163,228,239,0,17,111,10,0,88,149,75,255,215,235,239,0,167,159,24,255,47,151,108,255,107,209,188,0,233,231,99,254,28,202,148,255,174,35,138,255,110,24,68,255,2,69,181,0,107,102,82,0,102,237,7,0,92,36,237,255,221,162,83,1,55,202,6,255,135,234,135,255,24,250,222,0,65,94,168,254,245,248,210,255,167,108,201,254,255,161,111,0,205,8,254,0,136,13,116,0,100,176,132,255,43,215,126,255,177,133,130,255,158,79,148,0,67,224,37,1,12,206,21,255,62,34,110,1,237,104,175,255,80,132,111,255,142,174,72,0,84,229,180,254,105,179,140,0,64,248,15,255,233,138,16,0,245,67,123,254,218,121,212,255,63,95,218,1,213,133,137,255,143,182,82,255,48,28,11,0,244,114,141,1,209,175,76,255,157,181,150,255,186,229,3,255,164,157,111,1,231,189,139,0,119,202,190,255,218,106,64,255,68,235,63,254,96,26,172,255,187,47,11,1,215,18,251,255,81,84,89,0,68,58,128,0,94,113,5,1,92,129,208,255,97,15,83,254,9,28,188,0,239,9,164,0,60,205,152,0,192,163,98,255,184,18,60,0,217,182,139,0,109,59,120,255,4,192,251,0,169,210,240,255,37,172,92,254,148,211,245,255,179,65,52,0,253,13,115,0,185,174,206,1,114,188,149,255,237,90,173,0,43,199,192,255,88,108,113,0,52,35,76,0,66,25,148,255,221,4,7,255,151,241,114,255,190,209,232,0,98,50,199,0,151,150,213,255,18,74,36,1,53,40,7,0,19,135,65,255,26,172,69,0,174,237,85,0,99,95,41,0,3,56,16,0,39,160,177,255,200,106,218,254,185,68,84,255,91,186,61,254,67,143,141,255,13,244,166,255,99,114,198,0,199,110,163,255,193,18,186,0,124,239,246,1,110,68,22,0,2,235,46,1,212,60,107,0,105,42,105,1,14,230,152,0,7,5,131,0,141,104,154,255,213,3,6,0,131,228,162,255,179,100,28,1,231,123,85,255,206,14,223,1,253,96,230,0,38,152,149,1,98,137,122,0,214,205,3,255,226,152,179,255,6,133,137,0,158,69,140,255,113,162,154,255,180,243,172,255,27,189,115,255,143,46,220,255,213,134,225,255,126,29,69,0,188,43,137,1,242,70,9,0,90,204,255,255,231,170,147,0,23,56,19,254,56,125,157,255,48,179,218,255,79,182,253,255,38,212,191,1,41,235,124,0,96,151,28,0,135,148,190,0,205,249,39,254,52,96,136,255,212,44,136,255,67,209,131,255,252,130,23,255,219,128,20,255,198,129,118,0,108,101,11,0,178,5,146,1,62,7,100,255,181,236,94,254,28,26,164,0,76,22,112,255,120,102,79,0,202,192,229,1,200,176,215,0,41,64,244,255,206,184,78,0,167,45,63,1,160,35,0,255,59,12,142,255,204,9,144,255,219,94,229,1,122,27,112,0,189,105,109,255,64,208,74,255,251,127,55,1,2,226,198,0,44,76,209,0,151,152,77,255,210,23,46,1,201,171,69,255,44,211,231,0,190,37,224,255,245,196,62,255,169,181,222,255,34,211,17,0,119,241,197,255,229,35,152,1,21,69,40,255,178,226,161,0,148,179,193,0,219,194,254,1,40,206,51,255,231,92,250,1,67,153,170,0,21,148,241,0,170,69,82,255,121,18,231,255,92,114,3,0,184,62,230,0,225,201,87,255,146,96,162,255,181,242,220,0,173,187,221,1,226,62,170,255,56,126,217,1,117,13,227,255,179,44,239,0,157,141,155,255,144,221,83,0,235,209,208,0,42,17,165,1,251,81,133,0,124,245,201,254,97,211,24,255,83,214,166,0,154,36,9,255,248,47,127,0,90,219,140,255,161,217,38,254,212,147,63,255,66,84,148,1,207,3,1,0,230,134,89,1,127,78,122,255,224,155,1,255,82,136,74,0,178,156,208,255,186,25,49,255,222,3,210,1,229,150,190,255,85,162,52,255,41,84,141,255,73,123,84,254,93,17,150,0,119,19,28,1,32,22,215,255,28,23,204,255,142,241,52,255,228,52,125,0,29,76,207,0,215,167,250,254,175,164,230,0,55,207,105,1,109,187,245,255,161,44,220,1,41,101,128,255,167,16,94,0,93,214,107,255,118,72,0,254,80,61,234,255,121,175,125,0,139,169,251,0,97,39,147,254,250,196,49,255,165,179,110,254,223,70,187,255,22,142,125,1,154,179,138,255,118,176,42,1,10,174,153,0,156,92,102,0,168,13,161,255,143,16,32,0,250,197,180,255,203,163,44,1,87,32,36,0,161,153,20,255,123,252,15,0,25,227,80,0,60,88,142,0,17,22,201,1,154,205,77,255,39,63,47,0,8,122,141,0,128,23,182,254,204,39,19,255,4,112,29,255,23,36,140,255,210,234,116,254,53,50,63,255,121,171,104,255,160,219,94,0,87,82,14,254,231,42,5,0,165,139,127,254,86,78,38,0,130,60,66,254,203,30,45,255,46,196,122,1,249,53,162,255,136,143,103,254,215,210,114,0,231,7,160,254,169,152,42,255,111,45,246,0,142,131,135,255,131,71,204,255,36,226,11,0,0,28,242,255,225,138,213,255,247,46,216,254,245,3,183,0,108,252,74,1,206,26,48,255,205,54,246,255,211,198,36,255,121,35,50,0,52,216,202,255,38,139,129,254,242,73,148,0,67,231,141,255,42,47,204,0,78,116,25,1,4,225,191,255,6,147,228,0,58,88,177,0,122,165,229,255,252,83,201,255,224,167,96,1,177,184,158,255,242,105,179,1,248,198,240,0,133,66,203,1,254,36,47,0,45,24,115,255,119,62,254,0,196,225,186,254,123,141,172,0,26,85,41,255,226,111,183,0,213,231,151,0,4,59,7,255,238,138,148,0,66,147,33,255,31,246,141,255,209,141,116,255,104,112,31,0,88,161,172,0,83,215,230,254,47,111,151,0,45,38,52,1,132,45,204,0,138,128,109,254,233,117,134,255,243,190,173,254,241,236,240,0,82,127,236,254,40,223,161,255,110,182,225,255,123,174,239,0,135,242,145,1,51,209,154,0,150,3,115,254,217,164,252,255,55,156,69,1,84,94,255,255,232,73,45,1,20,19,212,255,96,197,59,254,96,251,33,0,38,199,73,1,64,172,247,255,117,116,56,255,228,17,18,0,62,138,103,1,246,229,164,255,244,118,201,254,86,32,159,255,109,34,137,1,85,211,186,0,10,193,193,254,122,194,177,0,122,238,102,255,162,218,171,0,108,217,161,1,158,170,34,0,176,47,155,1,181,228,11,255,8,156,0,0,16,75,93,0,206,98,255,1,58,154,35,0,12,243,184,254,67,117,66,255,230,229,123,0,201,42,110,0,134,228,178,254,186,108,118,255,58,19,154,255,82,169,62,255,114,143,115,1,239,196,50,255,173,48,193,255,147,2,84,255,150,134,147,254,95,232,73,0,109,227,52,254,191,137,10,0,40,204,30,254,76,52,97,255,164,235,126,0,254,124,188,0,74,182,21,1,121,29,35,255,241,30,7,254,85,218,214,255,7,84,150,254,81,27,117,255,160,159,152,254,66,24,221,255,227,10,60,1,141,135,102,0,208,189,150,1,117,179,92,0,132,22,136,255,120,199,28,0,21,129,79,254,182,9,65,0,218,163,169,0,246,147,198,255,107,38,144,1,78,175,205,255,214,5,250,254,47,88,29,255,164,47,204,255,43,55,6,255,131,134,207,254,116,100,214,0,96,140,75,1,106,220,144,0,195,32,28,1,172,81,5,255,199,179,52,255,37,84,203,0,170,112,174,0,11,4,91,0,69,244,27,1,117,131,92,0,33,152,175,255,140,153,107,255,251,135,43,254,87,138,4,255,198,234,147,254,121,152,84,255,205,101,155,1,157,9,25,0,72,106,17,254,108,153,0,255,189,229,186,0,193,8,176,255,174,149,209,0,238,130,29,0,233,214,126,1,61,226,102,0,57,163,4,1,198,111,51,255,45,79,78,1,115,210,10,255,218,9,25,255,158,139,198,255,211,82,187,254,80,133,83,0,157,129,230,1,243,133,134,255,40,136,16,0,77,107,79,255,183,85,92,1,177,204,202,0,163,71,147,255,152,69,190,0,172,51,188,1,250,210,172,255,211,242,113,1,89,89,26,255,64,66,111,254,116,152,42,0,161,39,27,255,54,80,254,0,106,209,115,1,103,124,97,0,221,230,98,255,31,231,6,0,178,192,120,254,15,217,203,255,124,158,79,0,112,145,247,0,92,250,48,1,163,181,193,255,37,47,142,254,144,189,165,255,46,146,240,0,6,75,128,0,41,157,200,254,87,121,213,0,1,113,236,0,5,45,250,0,144,12,82,0,31,108,231,0,225,239,119,255,167,7,189,255,187,228,132,255,110,189,34,0,94,44,204,1,162,52,197,0,78,188,241,254,57,20,141,0,244,146,47,1,206,100,51,0,125,107,148,254,27,195,77,0,152,253,90,1,7,143,144,255,51,37,31,0,34,119,38,255,7,197,118,0,153,188,211,0,151,20,116,254,245,65,52,255,180,253,110,1,47,177,209,0,161,99,17,255,118,222,202,0,125,179,252,1,123,54,126,255,145,57,191,0,55,186,121,0,10,243,138,0,205,211,229,255,125,156,241,254,148,156,185,255,227,19,188,255,124,41,32,255,31,34,206,254,17,57,83,0,204,22,37,255,42,96,98,0,119,102,184,1,3,190,28,0,110,82,218,255,200,204,192,255,201,145,118,0,117,204,146,0,132,32,98,1,192,194,121,0,106,161,248,1,237,88,124,0,23,212,26,0,205,171,90,255,248,48,216,1,141,37,230,255,124,203,0,254,158,168,30,255,214,248,21,0,112,187,7,255], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+20480); +/* memory initializer */ allocate([75,133,239,255,74,227,243,255,250,147,70,0,214,120,162,0,167,9,179,255,22,158,18,0,218,77,209,1,97,109,81,255,244,33,179,255,57,52,57,255,65,172,210,255,249,71,209,255,142,169,238,0,158,189,153,255,174,254,103,254,98,33,14,0,141,76,230,255,113,139,52,255,15,58,212,0,168,215,201,255,248,204,215,1,223,68,160,255,57,154,183,254,47,231,121,0,106,166,137,0,81,136,138,0,165,43,51,0,231,139,61,0,57,95,59,254,118,98,25,255,151,63,236,1,94,190,250,255,169,185,114,1,5,250,58,255,75,105,97,1,215,223,134,0,113,99,163,1,128,62,112,0,99,106,147,0,163,195,10,0,33,205,182,0,214,14,174,255,129,38,231,255,53,182,223,0,98,42,159,255,247,13,40,0,188,210,177,1,6,21,0,255,255,61,148,254,137,45,129,255,89,26,116,254,126,38,114,0,251,50,242,254,121,134,128,255,204,249,167,254,165,235,215,0,202,177,243,0,133,141,62,0,240,130,190,1,110,175,255,0,0,20,146,1,37,210,121,255,7,39,130,0,142,250,84,255,141,200,207,0,9,95,104,255,11,244,174,0,134,232,126,0,167,1,123,254,16,193,149,255,232,233,239,1,213,70,112,255,252,116,160,254,242,222,220,255,205,85,227,0,7,185,58,0,118,247,63,1,116,77,177,255,62,245,200,254,63,18,37,255,107,53,232,254,50,221,211,0,162,219,7,254,2,94,43,0,182,62,182,254,160,78,200,255,135,140,170,0,235,184,228,0,175,53,138,254,80,58,77,255,152,201,2,1,63,196,34,0,5,30,184,0,171,176,154,0,121,59,206,0,38,99,39,0,172,80,77,254,0,134,151,0,186,33,241,254,94,253,223,255,44,114,252,0,108,126,57,255,201,40,13,255,39,229,27,255,39,239,23,1,151,121,51,255,153,150,248,0,10,234,174,255,118,246,4,254,200,245,38,0,69,161,242,1,16,178,150,0,113,56,130,0,171,31,105,0,26,88,108,255,49,42,106,0,251,169,66,0,69,93,149,0,20,57,254,0,164,25,111,0,90,188,90,255,204,4,197,0,40,213,50,1,212,96,132,255,88,138,180,254,228,146,124,255,184,246,247,0,65,117,86,255,253,102,210,254,254,121,36,0,137,115,3,255,60,24,216,0,134,18,29,0,59,226,97,0,176,142,71,0,7,209,161,0,189,84,51,254,155,250,72,0,213,84,235,255,45,222,224,0,238,148,143,255,170,42,53,255,78,167,117,0,186,0,40,255,125,177,103,255,69,225,66,0,227,7,88,1,75,172,6,0,169,45,227,1,16,36,70,255,50,2,9,255,139,193,22,0,143,183,231,254,218,69,50,0,236,56,161,1,213,131,42,0,138,145,44,254,136,229,40,255,49,63,35,255,61,145,245,255,101,192,2,254,232,167,113,0,152,104,38,1,121,185,218,0,121,139,211,254,119,240,35,0,65,189,217,254,187,179,162,255,160,187,230,0,62,248,14,255,60,78,97,0,255,247,163,255,225,59,91,255,107,71,58,255,241,47,33,1,50,117,236,0,219,177,63,254,244,90,179,0,35,194,215,255,189,67,50,255,23,135,129,0,104,189,37,255,185,57,194,0,35,62,231,255,220,248,108,0,12,231,178,0,143,80,91,1,131,93,101,255,144,39,2,1,255,250,178,0,5,17,236,254,139,32,46,0,204,188,38,254,245,115,52,255,191,113,73,254,191,108,69,255,22,69,245,1,23,203,178,0,170,99,170,0,65,248,111,0,37,108,153,255,64,37,69,0,0,88,62,254,89,148,144,255,191,68,224,1,241,39,53,0,41,203,237,255,145,126,194,255,221,42,253,255,25,99,151,0,97,253,223,1,74,115,49,255,6,175,72,255,59,176,203,0,124,183,249,1,228,228,99,0,129,12,207,254,168,192,195,255,204,176,16,254,152,234,171,0,77,37,85,255,33,120,135,255,142,194,227,1,31,214,58,0,213,187,125,255,232,46,60,255,190,116,42,254,151,178,19,255,51,62,237,254,204,236,193,0,194,232,60,0,172,34,157,255,189,16,184,254,103,3,95,255,141,233,36,254,41,25,11,255,21,195,166,0,118,245,45,0,67,213,149,255,159,12,18,255,187,164,227,1,160,25,5,0,12,78,195,1,43,197,225,0,48,142,41,254,196,155,60,255,223,199,18,1,145,136,156,0,252,117,169,254,145,226,238,0,239,23,107,0,109,181,188,255,230,112,49,254,73,170,237,255,231,183,227,255,80,220,20,0,194,107,127,1,127,205,101,0,46,52,197,1,210,171,36,255,88,3,90,255,56,151,141,0,96,187,255,255,42,78,200,0,254,70,70,1,244,125,168,0,204,68,138,1,124,215,70,0,102,66,200,254,17,52,228,0,117,220,143,254,203,248,123,0,56,18,174,255,186,151,164,255,51,232,208,1,160,228,43,255,249,29,25,1,68,190,63,0,8,201,188,243,103,230,9,106,59,167,202,132,133,174,103,187,43,248,148,254,114,243,110,60,241,54,29,95,58,245,79,165,209,130,230,173,127,82,14,81,31,108,62,43,140,104,5,155,107,189,65,251,171,217,131,31,121,33,126,19,25,205,224,91,34,174,40,215,152,47,138,66,205,101,239,35,145,68,55,113,47,59,77,236,207,251,192,181,188,219,137,129,165,219,181,233,56,181,72,243,91,194,86,57,25,208,5,182,241,17,241,89,155,79,25,175,164,130,63,146,24,129,109,218,213,94,28,171,66,2,3,163,152,170,7,216,190,111,112,69,1,91,131,18,140,178,228,78,190,133,49,36,226,180,255,213,195,125,12,85,111,137,123,242,116,93,190,114,177,150,22,59,254,177,222,128,53,18,199,37,167,6,220,155,148,38,105,207,116,241,155,193,210,74,241,158,193,105,155,228,227,37,79,56,134,71,190,239,181,213,140,139,198,157,193,15,101,156,172,119,204,161,12,36,117,2,43,89,111,44,233,45,131,228,166,110,170,132,116,74,212,251,65,189,220,169,176,92,181,83,17,131,218,136,249,118,171,223,102,238,82,81,62,152,16,50,180,45,109,198,49,168,63,33,251,152,200,39,3,176,228,14,239,190,199,127,89,191,194,143,168,61,243,11,224,198,37,167,10,147,71,145,167,213,111,130,3,224,81,99,202,6,112,110,14,10,103,41,41,20,252,47,210,70,133,10,183,39,38,201,38,92,56,33,27,46,237,42,196,90,252,109,44,77,223,179,149,157,19,13,56,83,222,99,175,139,84,115,10,101,168,178,119,60,187,10,106,118,230,174,237,71,46,201,194,129,59,53,130,20,133,44,114,146,100,3,241,76,161,232,191,162,1,48,66,188,75,102,26,168,145,151,248,208,112,139,75,194,48,190,84,6,163,81,108,199,24,82,239,214,25,232,146,209,16,169,101,85,36,6,153,214,42,32,113,87,133,53,14,244,184,209,187,50,112,160,106,16,200,208,210,184,22,193,164,25,83,171,65,81,8,108,55,30,153,235,142,223,76,119,72,39,168,72,155,225,181,188,176,52,99,90,201,197,179,12,28,57,203,138,65,227,74,170,216,78,115,227,99,119,79,202,156,91,163,184,178,214,243,111,46,104,252,178,239,93,238,130,143,116,96,47,23,67,111,99,165,120,114,171,240,161,20,120,200,132,236,57,100,26,8,2,199,140,40,30,99,35,250,255,190,144,233,189,130,222,235,108,80,164,21,121,198,178,247,163,249,190,43,83,114,227,242,120,113,198,156,97,38,234,206,62,39,202,7,194,192,33,199,184,134,209,30,235,224,205,214,125,218,234,120,209,110,238,127,79,125,245,186,111,23,114,170,103,240,6,166,152,200,162,197,125,99,10,174,13,249,190,4,152,63,17,27,71,28,19,53,11,113,27,132,125,4,35,245,119,219,40,147,36,199,64,123,171,202,50,188,190,201,21,10,190,158,60,76,13,16,156,196,103,29,67,182,66,62,203,190,212,197,76,42,126,101,252,156,41,127,89,236,250,214,58,171,111,203,95,23,88,71,74,140,25,68,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+30720); + + + + +var tempDoublePtr = Runtime.alignMemory(allocate(12, "i8", ALLOC_STATIC), 8); + +assert(tempDoublePtr % 8 == 0); + +function copyTempFloat(ptr) { // functions, because inlining this code increases code size too much + + HEAP8[tempDoublePtr] = HEAP8[ptr]; + + HEAP8[tempDoublePtr+1] = HEAP8[ptr+1]; + + HEAP8[tempDoublePtr+2] = HEAP8[ptr+2]; + + HEAP8[tempDoublePtr+3] = HEAP8[ptr+3]; + +} + +function copyTempDouble(ptr) { + + HEAP8[tempDoublePtr] = HEAP8[ptr]; + + HEAP8[tempDoublePtr+1] = HEAP8[ptr+1]; + + HEAP8[tempDoublePtr+2] = HEAP8[ptr+2]; + + HEAP8[tempDoublePtr+3] = HEAP8[ptr+3]; + + HEAP8[tempDoublePtr+4] = HEAP8[ptr+4]; + + HEAP8[tempDoublePtr+5] = HEAP8[ptr+5]; + + HEAP8[tempDoublePtr+6] = HEAP8[ptr+6]; + + HEAP8[tempDoublePtr+7] = HEAP8[ptr+7]; + +} + + + + Module["_bitshift64Ashr"] = _bitshift64Ashr; + + + Module["_i64Subtract"] = _i64Subtract; + + + Module["_i64Add"] = _i64Add; + + + Module["_memset"] = _memset; + + + Module["_bitshift64Lshr"] = _bitshift64Lshr; + + + Module["_bitshift64Shl"] = _bitshift64Shl; + + function _abort() { + Module['abort'](); + } + + + Module["_strlen"] = _strlen; + + + function _emscripten_memcpy_big(dest, src, num) { + HEAPU8.set(HEAPU8.subarray(src, src+num), dest); + return dest; + } + Module["_memcpy"] = _memcpy; + + + + var ___errno_state=0;function ___setErrNo(value) { + // For convenient setting and returning of errno. + HEAP32[((___errno_state)>>2)]=value; + return value; + } + + var ERRNO_CODES={EPERM:1,ENOENT:2,ESRCH:3,EINTR:4,EIO:5,ENXIO:6,E2BIG:7,ENOEXEC:8,EBADF:9,ECHILD:10,EAGAIN:11,EWOULDBLOCK:11,ENOMEM:12,EACCES:13,EFAULT:14,ENOTBLK:15,EBUSY:16,EEXIST:17,EXDEV:18,ENODEV:19,ENOTDIR:20,EISDIR:21,EINVAL:22,ENFILE:23,EMFILE:24,ENOTTY:25,ETXTBSY:26,EFBIG:27,ENOSPC:28,ESPIPE:29,EROFS:30,EMLINK:31,EPIPE:32,EDOM:33,ERANGE:34,ENOMSG:42,EIDRM:43,ECHRNG:44,EL2NSYNC:45,EL3HLT:46,EL3RST:47,ELNRNG:48,EUNATCH:49,ENOCSI:50,EL2HLT:51,EDEADLK:35,ENOLCK:37,EBADE:52,EBADR:53,EXFULL:54,ENOANO:55,EBADRQC:56,EBADSLT:57,EDEADLOCK:35,EBFONT:59,ENOSTR:60,ENODATA:61,ETIME:62,ENOSR:63,ENONET:64,ENOPKG:65,EREMOTE:66,ENOLINK:67,EADV:68,ESRMNT:69,ECOMM:70,EPROTO:71,EMULTIHOP:72,EDOTDOT:73,EBADMSG:74,ENOTUNIQ:76,EBADFD:77,EREMCHG:78,ELIBACC:79,ELIBBAD:80,ELIBSCN:81,ELIBMAX:82,ELIBEXEC:83,ENOSYS:38,ENOTEMPTY:39,ENAMETOOLONG:36,ELOOP:40,EOPNOTSUPP:95,EPFNOSUPPORT:96,ECONNRESET:104,ENOBUFS:105,EAFNOSUPPORT:97,EPROTOTYPE:91,ENOTSOCK:88,ENOPROTOOPT:92,ESHUTDOWN:108,ECONNREFUSED:111,EADDRINUSE:98,ECONNABORTED:103,ENETUNREACH:101,ENETDOWN:100,ETIMEDOUT:110,EHOSTDOWN:112,EHOSTUNREACH:113,EINPROGRESS:115,EALREADY:114,EDESTADDRREQ:89,EMSGSIZE:90,EPROTONOSUPPORT:93,ESOCKTNOSUPPORT:94,EADDRNOTAVAIL:99,ENETRESET:102,EISCONN:106,ENOTCONN:107,ETOOMANYREFS:109,EUSERS:87,EDQUOT:122,ESTALE:116,ENOTSUP:95,ENOMEDIUM:123,EILSEQ:84,EOVERFLOW:75,ECANCELED:125,ENOTRECOVERABLE:131,EOWNERDEAD:130,ESTRPIPE:86};function _sysconf(name) { + // long sysconf(int name); + // http://pubs.opengroup.org/onlinepubs/009695399/functions/sysconf.html + switch(name) { + case 30: return PAGE_SIZE; + case 132: + case 133: + case 12: + case 137: + case 138: + case 15: + case 235: + case 16: + case 17: + case 18: + case 19: + case 20: + case 149: + case 13: + case 10: + case 236: + case 153: + case 9: + case 21: + case 22: + case 159: + case 154: + case 14: + case 77: + case 78: + case 139: + case 80: + case 81: + case 79: + case 82: + case 68: + case 67: + case 164: + case 11: + case 29: + case 47: + case 48: + case 95: + case 52: + case 51: + case 46: + return 200809; + case 27: + case 246: + case 127: + case 128: + case 23: + case 24: + case 160: + case 161: + case 181: + case 182: + case 242: + case 183: + case 184: + case 243: + case 244: + case 245: + case 165: + case 178: + case 179: + case 49: + case 50: + case 168: + case 169: + case 175: + case 170: + case 171: + case 172: + case 97: + case 76: + case 32: + case 173: + case 35: + return -1; + case 176: + case 177: + case 7: + case 155: + case 8: + case 157: + case 125: + case 126: + case 92: + case 93: + case 129: + case 130: + case 131: + case 94: + case 91: + return 1; + case 74: + case 60: + case 69: + case 70: + case 4: + return 1024; + case 31: + case 42: + case 72: + return 32; + case 87: + case 26: + case 33: + return 2147483647; + case 34: + case 1: + return 47839; + case 38: + case 36: + return 99; + case 43: + case 37: + return 2048; + case 0: return 2097152; + case 3: return 65536; + case 28: return 32768; + case 44: return 32767; + case 75: return 16384; + case 39: return 1000; + case 89: return 700; + case 71: return 256; + case 40: return 255; + case 2: return 100; + case 180: return 64; + case 25: return 20; + case 5: return 16; + case 6: return 6; + case 73: return 4; + case 84: { + if (typeof navigator === 'object') return navigator['hardwareConcurrency'] || 1; + return 1; + } + } + ___setErrNo(ERRNO_CODES.EINVAL); + return -1; + } + + function _sbrk(bytes) { + // Implement a Linux-like 'memory area' for our 'process'. + // Changes the size of the memory area by |bytes|; returns the + // address of the previous top ('break') of the memory area + // We control the "dynamic" memory - DYNAMIC_BASE to DYNAMICTOP + var self = _sbrk; + if (!self.called) { + DYNAMICTOP = alignMemoryPage(DYNAMICTOP); // make sure we start out aligned + self.called = true; + assert(Runtime.dynamicAlloc); + self.alloc = Runtime.dynamicAlloc; + Runtime.dynamicAlloc = function() { abort('cannot dynamically allocate, sbrk now has control') }; + } + var ret = DYNAMICTOP; + if (bytes != 0) self.alloc(bytes); + return ret; // Previous break location. + } + + + Module["_memmove"] = _memmove; + + function ___errno_location() { + return ___errno_state; + } + + + + + var ERRNO_MESSAGES={0:"Success",1:"Not super-user",2:"No such file or directory",3:"No such process",4:"Interrupted system call",5:"I/O error",6:"No such device or address",7:"Arg list too long",8:"Exec format error",9:"Bad file number",10:"No children",11:"No more processes",12:"Not enough core",13:"Permission denied",14:"Bad address",15:"Block device required",16:"Mount device busy",17:"File exists",18:"Cross-device link",19:"No such device",20:"Not a directory",21:"Is a directory",22:"Invalid argument",23:"Too many open files in system",24:"Too many open files",25:"Not a typewriter",26:"Text file busy",27:"File too large",28:"No space left on device",29:"Illegal seek",30:"Read only file system",31:"Too many links",32:"Broken pipe",33:"Math arg out of domain of func",34:"Math result not representable",35:"File locking deadlock error",36:"File or path name too long",37:"No record locks available",38:"Function not implemented",39:"Directory not empty",40:"Too many symbolic links",42:"No message of desired type",43:"Identifier removed",44:"Channel number out of range",45:"Level 2 not synchronized",46:"Level 3 halted",47:"Level 3 reset",48:"Link number out of range",49:"Protocol driver not attached",50:"No CSI structure available",51:"Level 2 halted",52:"Invalid exchange",53:"Invalid request descriptor",54:"Exchange full",55:"No anode",56:"Invalid request code",57:"Invalid slot",59:"Bad font file fmt",60:"Device not a stream",61:"No data (for no delay io)",62:"Timer expired",63:"Out of streams resources",64:"Machine is not on the network",65:"Package not installed",66:"The object is remote",67:"The link has been severed",68:"Advertise error",69:"Srmount error",70:"Communication error on send",71:"Protocol error",72:"Multihop attempted",73:"Cross mount point (not really error)",74:"Trying to read unreadable message",75:"Value too large for defined data type",76:"Given log. name not unique",77:"f.d. invalid for this operation",78:"Remote address changed",79:"Can access a needed shared lib",80:"Accessing a corrupted shared lib",81:".lib section in a.out corrupted",82:"Attempting to link in too many libs",83:"Attempting to exec a shared library",84:"Illegal byte sequence",86:"Streams pipe error",87:"Too many users",88:"Socket operation on non-socket",89:"Destination address required",90:"Message too long",91:"Protocol wrong type for socket",92:"Protocol not available",93:"Unknown protocol",94:"Socket type not supported",95:"Not supported",96:"Protocol family not supported",97:"Address family not supported by protocol family",98:"Address already in use",99:"Address not available",100:"Network interface is not configured",101:"Network is unreachable",102:"Connection reset by network",103:"Connection aborted",104:"Connection reset by peer",105:"No buffer space available",106:"Socket is already connected",107:"Socket is not connected",108:"Can't send after socket shutdown",109:"Too many references",110:"Connection timed out",111:"Connection refused",112:"Host is down",113:"Host is unreachable",114:"Socket already connected",115:"Connection already in progress",116:"Stale file handle",122:"Quota exceeded",123:"No medium (in tape drive)",125:"Operation canceled",130:"Previous owner died",131:"State not recoverable"}; + + var TTY={ttys:[],init:function () { + // https://github.com/kripken/emscripten/pull/1555 + // if (ENVIRONMENT_IS_NODE) { + // // currently, FS.init does not distinguish if process.stdin is a file or TTY + // // device, it always assumes it's a TTY device. because of this, we're forcing + // // process.stdin to UTF8 encoding to at least make stdin reading compatible + // // with text files until FS.init can be refactored. + // process['stdin']['setEncoding']('utf8'); + // } + },shutdown:function () { + // https://github.com/kripken/emscripten/pull/1555 + // if (ENVIRONMENT_IS_NODE) { + // // inolen: any idea as to why node -e 'process.stdin.read()' wouldn't exit immediately (with process.stdin being a tty)? + // // isaacs: because now it's reading from the stream, you've expressed interest in it, so that read() kicks off a _read() which creates a ReadReq operation + // // inolen: I thought read() in that case was a synchronous operation that just grabbed some amount of buffered data if it exists? + // // isaacs: it is. but it also triggers a _read() call, which calls readStart() on the handle + // // isaacs: do process.stdin.pause() and i'd think it'd probably close the pending call + // process['stdin']['pause'](); + // } + },register:function (dev, ops) { + TTY.ttys[dev] = { input: [], output: [], ops: ops }; + FS.registerDevice(dev, TTY.stream_ops); + },stream_ops:{open:function (stream) { + var tty = TTY.ttys[stream.node.rdev]; + if (!tty) { + throw new FS.ErrnoError(ERRNO_CODES.ENODEV); + } + stream.tty = tty; + stream.seekable = false; + },close:function (stream) { + // flush any pending line data + stream.tty.ops.flush(stream.tty); + },flush:function (stream) { + stream.tty.ops.flush(stream.tty); + },read:function (stream, buffer, offset, length, pos /* ignored */) { + if (!stream.tty || !stream.tty.ops.get_char) { + throw new FS.ErrnoError(ERRNO_CODES.ENXIO); + } + var bytesRead = 0; + for (var i = 0; i < length; i++) { + var result; + try { + result = stream.tty.ops.get_char(stream.tty); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + if (result === undefined && bytesRead === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EAGAIN); + } + if (result === null || result === undefined) break; + bytesRead++; + buffer[offset+i] = result; + } + if (bytesRead) { + stream.node.timestamp = Date.now(); + } + return bytesRead; + },write:function (stream, buffer, offset, length, pos) { + if (!stream.tty || !stream.tty.ops.put_char) { + throw new FS.ErrnoError(ERRNO_CODES.ENXIO); + } + for (var i = 0; i < length; i++) { + try { + stream.tty.ops.put_char(stream.tty, buffer[offset+i]); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + } + if (length) { + stream.node.timestamp = Date.now(); + } + return i; + }},default_tty_ops:{get_char:function (tty) { + if (!tty.input.length) { + var result = null; + if (ENVIRONMENT_IS_NODE) { + result = process['stdin']['read'](); + if (!result) { + if (process['stdin']['_readableState'] && process['stdin']['_readableState']['ended']) { + return null; // EOF + } + return undefined; // no data available + } + } else if (typeof window != 'undefined' && + typeof window.prompt == 'function') { + // Browser. + result = window.prompt('Input: '); // returns null on cancel + if (result !== null) { + result += '\n'; + } + } else if (typeof readline == 'function') { + // Command line. + result = readline(); + if (result !== null) { + result += '\n'; + } + } + if (!result) { + return null; + } + tty.input = intArrayFromString(result, true); + } + return tty.input.shift(); + },flush:function (tty) { + if (tty.output && tty.output.length > 0) { + Module['print'](tty.output.join('')); + tty.output = []; + } + },put_char:function (tty, val) { + if (val === null || val === 10) { + Module['print'](tty.output.join('')); + tty.output = []; + } else { + tty.output.push(TTY.utf8.processCChar(val)); + } + }},default_tty1_ops:{put_char:function (tty, val) { + if (val === null || val === 10) { + Module['printErr'](tty.output.join('')); + tty.output = []; + } else { + tty.output.push(TTY.utf8.processCChar(val)); + } + },flush:function (tty) { + if (tty.output && tty.output.length > 0) { + Module['printErr'](tty.output.join('')); + tty.output = []; + } + }}}; + + var MEMFS={ops_table:null,mount:function (mount) { + return MEMFS.createNode(null, '/', 16384 | 511 /* 0777 */, 0); + },createNode:function (parent, name, mode, dev) { + if (FS.isBlkdev(mode) || FS.isFIFO(mode)) { + // no supported + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + if (!MEMFS.ops_table) { + MEMFS.ops_table = { + dir: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr, + lookup: MEMFS.node_ops.lookup, + mknod: MEMFS.node_ops.mknod, + rename: MEMFS.node_ops.rename, + unlink: MEMFS.node_ops.unlink, + rmdir: MEMFS.node_ops.rmdir, + readdir: MEMFS.node_ops.readdir, + symlink: MEMFS.node_ops.symlink + }, + stream: { + llseek: MEMFS.stream_ops.llseek + } + }, + file: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr + }, + stream: { + llseek: MEMFS.stream_ops.llseek, + read: MEMFS.stream_ops.read, + write: MEMFS.stream_ops.write, + allocate: MEMFS.stream_ops.allocate, + mmap: MEMFS.stream_ops.mmap + } + }, + link: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr, + readlink: MEMFS.node_ops.readlink + }, + stream: {} + }, + chrdev: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr + }, + stream: FS.chrdev_stream_ops + } + }; + } + var node = FS.createNode(parent, name, mode, dev); + if (FS.isDir(node.mode)) { + node.node_ops = MEMFS.ops_table.dir.node; + node.stream_ops = MEMFS.ops_table.dir.stream; + node.contents = {}; + } else if (FS.isFile(node.mode)) { + node.node_ops = MEMFS.ops_table.file.node; + node.stream_ops = MEMFS.ops_table.file.stream; + node.usedBytes = 0; // The actual number of bytes used in the typed array, as opposed to contents.buffer.byteLength which gives the whole capacity. + // When the byte data of the file is populated, this will point to either a typed array, or a normal JS array. Typed arrays are preferred + // for performance, and used by default. However, typed arrays are not resizable like normal JS arrays are, so there is a small disk size + // penalty involved for appending file writes that continuously grow a file similar to std::vector capacity vs used -scheme. + node.contents = null; + } else if (FS.isLink(node.mode)) { + node.node_ops = MEMFS.ops_table.link.node; + node.stream_ops = MEMFS.ops_table.link.stream; + } else if (FS.isChrdev(node.mode)) { + node.node_ops = MEMFS.ops_table.chrdev.node; + node.stream_ops = MEMFS.ops_table.chrdev.stream; + } + node.timestamp = Date.now(); + // add the new node to the parent + if (parent) { + parent.contents[name] = node; + } + return node; + },getFileDataAsRegularArray:function (node) { + if (node.contents && node.contents.subarray) { + var arr = []; + for (var i = 0; i < node.usedBytes; ++i) arr.push(node.contents[i]); + return arr; // Returns a copy of the original data. + } + return node.contents; // No-op, the file contents are already in a JS array. Return as-is. + },getFileDataAsTypedArray:function (node) { + if (!node.contents) return new Uint8Array; + if (node.contents.subarray) return node.contents.subarray(0, node.usedBytes); // Make sure to not return excess unused bytes. + return new Uint8Array(node.contents); + },expandFileStorage:function (node, newCapacity) { + + // If we are asked to expand the size of a file that already exists, revert to using a standard JS array to store the file + // instead of a typed array. This makes resizing the array more flexible because we can just .push() elements at the back to + // increase the size. + if (node.contents && node.contents.subarray && newCapacity > node.contents.length) { + node.contents = MEMFS.getFileDataAsRegularArray(node); + node.usedBytes = node.contents.length; // We might be writing to a lazy-loaded file which had overridden this property, so force-reset it. + } + + if (!node.contents || node.contents.subarray) { // Keep using a typed array if creating a new storage, or if old one was a typed array as well. + var prevCapacity = node.contents ? node.contents.buffer.byteLength : 0; + if (prevCapacity >= newCapacity) return; // No need to expand, the storage was already large enough. + // Don't expand strictly to the given requested limit if it's only a very small increase, but instead geometrically grow capacity. + // For small filesizes (<1MB), perform size*2 geometric increase, but for large sizes, do a much more conservative size*1.125 increase to + // avoid overshooting the allocation cap by a very large margin. + var CAPACITY_DOUBLING_MAX = 1024 * 1024; + newCapacity = Math.max(newCapacity, (prevCapacity * (prevCapacity < CAPACITY_DOUBLING_MAX ? 2.0 : 1.125)) | 0); + if (prevCapacity != 0) newCapacity = Math.max(newCapacity, 256); // At minimum allocate 256b for each file when expanding. + var oldContents = node.contents; + node.contents = new Uint8Array(newCapacity); // Allocate new storage. + if (node.usedBytes > 0) node.contents.set(oldContents.subarray(0, node.usedBytes), 0); // Copy old data over to the new storage. + return; + } + // Not using a typed array to back the file storage. Use a standard JS array instead. + if (!node.contents && newCapacity > 0) node.contents = []; + while (node.contents.length < newCapacity) node.contents.push(0); + },resizeFileStorage:function (node, newSize) { + if (node.usedBytes == newSize) return; + if (newSize == 0) { + node.contents = null; // Fully decommit when requesting a resize to zero. + node.usedBytes = 0; + return; + } + + if (!node.contents || node.contents.subarray) { // Resize a typed array if that is being used as the backing store. + var oldContents = node.contents; + node.contents = new Uint8Array(new ArrayBuffer(newSize)); // Allocate new storage. + if (oldContents) { + node.contents.set(oldContents.subarray(0, Math.min(newSize, node.usedBytes))); // Copy old data over to the new storage. + } + node.usedBytes = newSize; + return; + } + // Backing with a JS array. + if (!node.contents) node.contents = []; + if (node.contents.length > newSize) node.contents.length = newSize; + else while (node.contents.length < newSize) node.contents.push(0); + node.usedBytes = newSize; + },node_ops:{getattr:function (node) { + var attr = {}; + // device numbers reuse inode numbers. + attr.dev = FS.isChrdev(node.mode) ? node.id : 1; + attr.ino = node.id; + attr.mode = node.mode; + attr.nlink = 1; + attr.uid = 0; + attr.gid = 0; + attr.rdev = node.rdev; + if (FS.isDir(node.mode)) { + attr.size = 4096; + } else if (FS.isFile(node.mode)) { + attr.size = node.usedBytes; + } else if (FS.isLink(node.mode)) { + attr.size = node.link.length; + } else { + attr.size = 0; + } + attr.atime = new Date(node.timestamp); + attr.mtime = new Date(node.timestamp); + attr.ctime = new Date(node.timestamp); + // NOTE: In our implementation, st_blocks = Math.ceil(st_size/st_blksize), + // but this is not required by the standard. + attr.blksize = 4096; + attr.blocks = Math.ceil(attr.size / attr.blksize); + return attr; + },setattr:function (node, attr) { + if (attr.mode !== undefined) { + node.mode = attr.mode; + } + if (attr.timestamp !== undefined) { + node.timestamp = attr.timestamp; + } + if (attr.size !== undefined) { + MEMFS.resizeFileStorage(node, attr.size); + } + },lookup:function (parent, name) { + throw FS.genericErrors[ERRNO_CODES.ENOENT]; + },mknod:function (parent, name, mode, dev) { + return MEMFS.createNode(parent, name, mode, dev); + },rename:function (old_node, new_dir, new_name) { + // if we're overwriting a directory at new_name, make sure it's empty. + if (FS.isDir(old_node.mode)) { + var new_node; + try { + new_node = FS.lookupNode(new_dir, new_name); + } catch (e) { + } + if (new_node) { + for (var i in new_node.contents) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); + } + } + } + // do the internal rewiring + delete old_node.parent.contents[old_node.name]; + old_node.name = new_name; + new_dir.contents[new_name] = old_node; + old_node.parent = new_dir; + },unlink:function (parent, name) { + delete parent.contents[name]; + },rmdir:function (parent, name) { + var node = FS.lookupNode(parent, name); + for (var i in node.contents) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); + } + delete parent.contents[name]; + },readdir:function (node) { + var entries = ['.', '..'] + for (var key in node.contents) { + if (!node.contents.hasOwnProperty(key)) { + continue; + } + entries.push(key); + } + return entries; + },symlink:function (parent, newname, oldpath) { + var node = MEMFS.createNode(parent, newname, 511 /* 0777 */ | 40960, 0); + node.link = oldpath; + return node; + },readlink:function (node) { + if (!FS.isLink(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + return node.link; + }},stream_ops:{read:function (stream, buffer, offset, length, position) { + var contents = stream.node.contents; + if (position >= stream.node.usedBytes) return 0; + var size = Math.min(stream.node.usedBytes - position, length); + assert(size >= 0); + if (size > 8 && contents.subarray) { // non-trivial, and typed array + buffer.set(contents.subarray(position, position + size), offset); + } else + { + for (var i = 0; i < size; i++) buffer[offset + i] = contents[position + i]; + } + return size; + },write:function (stream, buffer, offset, length, position, canOwn) { + if (!length) return 0; + var node = stream.node; + node.timestamp = Date.now(); + + if (buffer.subarray && (!node.contents || node.contents.subarray)) { // This write is from a typed array to a typed array? + if (canOwn) { // Can we just reuse the buffer we are given? + node.contents = buffer.subarray(offset, offset + length); + node.usedBytes = length; + return length; + } else if (node.usedBytes === 0 && position === 0) { // If this is a simple first write to an empty file, do a fast set since we don't need to care about old data. + node.contents = new Uint8Array(buffer.subarray(offset, offset + length)); + node.usedBytes = length; + return length; + } else if (position + length <= node.usedBytes) { // Writing to an already allocated and used subrange of the file? + node.contents.set(buffer.subarray(offset, offset + length), position); + return length; + } + } + // Appending to an existing file and we need to reallocate, or source data did not come as a typed array. + MEMFS.expandFileStorage(node, position+length); + if (node.contents.subarray && buffer.subarray) node.contents.set(buffer.subarray(offset, offset + length), position); // Use typed array write if available. + else + for (var i = 0; i < length; i++) { + node.contents[position + i] = buffer[offset + i]; // Or fall back to manual write if not. + } + node.usedBytes = Math.max(node.usedBytes, position+length); + return length; + },llseek:function (stream, offset, whence) { + var position = offset; + if (whence === 1) { // SEEK_CUR. + position += stream.position; + } else if (whence === 2) { // SEEK_END. + if (FS.isFile(stream.node.mode)) { + position += stream.node.usedBytes; + } + } + if (position < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + return position; + },allocate:function (stream, offset, length) { + MEMFS.expandFileStorage(stream.node, offset + length); + stream.node.usedBytes = Math.max(stream.node.usedBytes, offset + length); + },mmap:function (stream, buffer, offset, length, position, prot, flags) { + if (!FS.isFile(stream.node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.ENODEV); + } + var ptr; + var allocated; + var contents = stream.node.contents; + // Only make a new copy when MAP_PRIVATE is specified. + if ( !(flags & 2) && + (contents.buffer === buffer || contents.buffer === buffer.buffer) ) { + // We can't emulate MAP_SHARED when the file is not backed by the buffer + // we're mapping to (e.g. the HEAP buffer). + allocated = false; + ptr = contents.byteOffset; + } else { + // Try to avoid unnecessary slices. + if (position > 0 || position + length < stream.node.usedBytes) { + if (contents.subarray) { + contents = contents.subarray(position, position + length); + } else { + contents = Array.prototype.slice.call(contents, position, position + length); + } + } + allocated = true; + ptr = _malloc(length); + if (!ptr) { + throw new FS.ErrnoError(ERRNO_CODES.ENOMEM); + } + buffer.set(contents, ptr); + } + return { ptr: ptr, allocated: allocated }; + }}}; + + var IDBFS={dbs:{},indexedDB:function () { + if (typeof indexedDB !== 'undefined') return indexedDB; + var ret = null; + if (typeof window === 'object') ret = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; + assert(ret, 'IDBFS used, but indexedDB not supported'); + return ret; + },DB_VERSION:21,DB_STORE_NAME:"FILE_DATA",mount:function (mount) { + // reuse all of the core MEMFS functionality + return MEMFS.mount.apply(null, arguments); + },syncfs:function (mount, populate, callback) { + IDBFS.getLocalSet(mount, function(err, local) { + if (err) return callback(err); + + IDBFS.getRemoteSet(mount, function(err, remote) { + if (err) return callback(err); + + var src = populate ? remote : local; + var dst = populate ? local : remote; + + IDBFS.reconcile(src, dst, callback); + }); + }); + },getDB:function (name, callback) { + // check the cache first + var db = IDBFS.dbs[name]; + if (db) { + return callback(null, db); + } + + var req; + try { + req = IDBFS.indexedDB().open(name, IDBFS.DB_VERSION); + } catch (e) { + return callback(e); + } + req.onupgradeneeded = function(e) { + var db = e.target.result; + var transaction = e.target.transaction; + + var fileStore; + + if (db.objectStoreNames.contains(IDBFS.DB_STORE_NAME)) { + fileStore = transaction.objectStore(IDBFS.DB_STORE_NAME); + } else { + fileStore = db.createObjectStore(IDBFS.DB_STORE_NAME); + } + + fileStore.createIndex('timestamp', 'timestamp', { unique: false }); + }; + req.onsuccess = function() { + db = req.result; + + // add to the cache + IDBFS.dbs[name] = db; + callback(null, db); + }; + req.onerror = function() { + callback(this.error); + }; + },getLocalSet:function (mount, callback) { + var entries = {}; + + function isRealDir(p) { + return p !== '.' && p !== '..'; + }; + function toAbsolute(root) { + return function(p) { + return PATH.join2(root, p); + } + }; + + var check = FS.readdir(mount.mountpoint).filter(isRealDir).map(toAbsolute(mount.mountpoint)); + + while (check.length) { + var path = check.pop(); + var stat; + + try { + stat = FS.stat(path); + } catch (e) { + return callback(e); + } + + if (FS.isDir(stat.mode)) { + check.push.apply(check, FS.readdir(path).filter(isRealDir).map(toAbsolute(path))); + } + + entries[path] = { timestamp: stat.mtime }; + } + + return callback(null, { type: 'local', entries: entries }); + },getRemoteSet:function (mount, callback) { + var entries = {}; + + IDBFS.getDB(mount.mountpoint, function(err, db) { + if (err) return callback(err); + + var transaction = db.transaction([IDBFS.DB_STORE_NAME], 'readonly'); + transaction.onerror = function() { callback(this.error); }; + + var store = transaction.objectStore(IDBFS.DB_STORE_NAME); + var index = store.index('timestamp'); + + index.openKeyCursor().onsuccess = function(event) { + var cursor = event.target.result; + + if (!cursor) { + return callback(null, { type: 'remote', db: db, entries: entries }); + } + + entries[cursor.primaryKey] = { timestamp: cursor.key }; + + cursor.continue(); + }; + }); + },loadLocalEntry:function (path, callback) { + var stat, node; + + try { + var lookup = FS.lookupPath(path); + node = lookup.node; + stat = FS.stat(path); + } catch (e) { + return callback(e); + } + + if (FS.isDir(stat.mode)) { + return callback(null, { timestamp: stat.mtime, mode: stat.mode }); + } else if (FS.isFile(stat.mode)) { + // Performance consideration: storing a normal JavaScript array to a IndexedDB is much slower than storing a typed array. + // Therefore always convert the file contents to a typed array first before writing the data to IndexedDB. + node.contents = MEMFS.getFileDataAsTypedArray(node); + return callback(null, { timestamp: stat.mtime, mode: stat.mode, contents: node.contents }); + } else { + return callback(new Error('node type not supported')); + } + },storeLocalEntry:function (path, entry, callback) { + try { + if (FS.isDir(entry.mode)) { + FS.mkdir(path, entry.mode); + } else if (FS.isFile(entry.mode)) { + FS.writeFile(path, entry.contents, { encoding: 'binary', canOwn: true }); + } else { + return callback(new Error('node type not supported')); + } + + FS.chmod(path, entry.mode); + FS.utime(path, entry.timestamp, entry.timestamp); + } catch (e) { + return callback(e); + } + + callback(null); + },removeLocalEntry:function (path, callback) { + try { + var lookup = FS.lookupPath(path); + var stat = FS.stat(path); + + if (FS.isDir(stat.mode)) { + FS.rmdir(path); + } else if (FS.isFile(stat.mode)) { + FS.unlink(path); + } + } catch (e) { + return callback(e); + } + + callback(null); + },loadRemoteEntry:function (store, path, callback) { + var req = store.get(path); + req.onsuccess = function(event) { callback(null, event.target.result); }; + req.onerror = function() { callback(this.error); }; + },storeRemoteEntry:function (store, path, entry, callback) { + var req = store.put(entry, path); + req.onsuccess = function() { callback(null); }; + req.onerror = function() { callback(this.error); }; + },removeRemoteEntry:function (store, path, callback) { + var req = store.delete(path); + req.onsuccess = function() { callback(null); }; + req.onerror = function() { callback(this.error); }; + },reconcile:function (src, dst, callback) { + var total = 0; + + var create = []; + Object.keys(src.entries).forEach(function (key) { + var e = src.entries[key]; + var e2 = dst.entries[key]; + if (!e2 || e.timestamp > e2.timestamp) { + create.push(key); + total++; + } + }); + + var remove = []; + Object.keys(dst.entries).forEach(function (key) { + var e = dst.entries[key]; + var e2 = src.entries[key]; + if (!e2) { + remove.push(key); + total++; + } + }); + + if (!total) { + return callback(null); + } + + var errored = false; + var completed = 0; + var db = src.type === 'remote' ? src.db : dst.db; + var transaction = db.transaction([IDBFS.DB_STORE_NAME], 'readwrite'); + var store = transaction.objectStore(IDBFS.DB_STORE_NAME); + + function done(err) { + if (err) { + if (!done.errored) { + done.errored = true; + return callback(err); + } + return; + } + if (++completed >= total) { + return callback(null); + } + }; + + transaction.onerror = function() { done(this.error); }; + + // sort paths in ascending order so directory entries are created + // before the files inside them + create.sort().forEach(function (path) { + if (dst.type === 'local') { + IDBFS.loadRemoteEntry(store, path, function (err, entry) { + if (err) return done(err); + IDBFS.storeLocalEntry(path, entry, done); + }); + } else { + IDBFS.loadLocalEntry(path, function (err, entry) { + if (err) return done(err); + IDBFS.storeRemoteEntry(store, path, entry, done); + }); + } + }); + + // sort paths in descending order so files are deleted before their + // parent directories + remove.sort().reverse().forEach(function(path) { + if (dst.type === 'local') { + IDBFS.removeLocalEntry(path, done); + } else { + IDBFS.removeRemoteEntry(store, path, done); + } + }); + }}; + + var NODEFS={isWindows:false,staticInit:function () { + NODEFS.isWindows = !!process.platform.match(/^win/); + },mount:function (mount) { + assert(ENVIRONMENT_IS_NODE); + return NODEFS.createNode(null, '/', NODEFS.getMode(mount.opts.root), 0); + },createNode:function (parent, name, mode, dev) { + if (!FS.isDir(mode) && !FS.isFile(mode) && !FS.isLink(mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + var node = FS.createNode(parent, name, mode); + node.node_ops = NODEFS.node_ops; + node.stream_ops = NODEFS.stream_ops; + return node; + },getMode:function (path) { + var stat; + try { + stat = fs.lstatSync(path); + if (NODEFS.isWindows) { + // On Windows, directories return permission bits 'rw-rw-rw-', even though they have 'rwxrwxrwx', so + // propagate write bits to execute bits. + stat.mode = stat.mode | ((stat.mode & 146) >> 1); + } + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + return stat.mode; + },realPath:function (node) { + var parts = []; + while (node.parent !== node) { + parts.push(node.name); + node = node.parent; + } + parts.push(node.mount.opts.root); + parts.reverse(); + return PATH.join.apply(null, parts); + },flagsToPermissionStringMap:{0:"r",1:"r+",2:"r+",64:"r",65:"r+",66:"r+",129:"rx+",193:"rx+",514:"w+",577:"w",578:"w+",705:"wx",706:"wx+",1024:"a",1025:"a",1026:"a+",1089:"a",1090:"a+",1153:"ax",1154:"ax+",1217:"ax",1218:"ax+",4096:"rs",4098:"rs+"},flagsToPermissionString:function (flags) { + if (flags in NODEFS.flagsToPermissionStringMap) { + return NODEFS.flagsToPermissionStringMap[flags]; + } else { + return flags; + } + },node_ops:{getattr:function (node) { + var path = NODEFS.realPath(node); + var stat; + try { + stat = fs.lstatSync(path); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + // node.js v0.10.20 doesn't report blksize and blocks on Windows. Fake them with default blksize of 4096. + // See http://support.microsoft.com/kb/140365 + if (NODEFS.isWindows && !stat.blksize) { + stat.blksize = 4096; + } + if (NODEFS.isWindows && !stat.blocks) { + stat.blocks = (stat.size+stat.blksize-1)/stat.blksize|0; + } + return { + dev: stat.dev, + ino: stat.ino, + mode: stat.mode, + nlink: stat.nlink, + uid: stat.uid, + gid: stat.gid, + rdev: stat.rdev, + size: stat.size, + atime: stat.atime, + mtime: stat.mtime, + ctime: stat.ctime, + blksize: stat.blksize, + blocks: stat.blocks + }; + },setattr:function (node, attr) { + var path = NODEFS.realPath(node); + try { + if (attr.mode !== undefined) { + fs.chmodSync(path, attr.mode); + // update the common node structure mode as well + node.mode = attr.mode; + } + if (attr.timestamp !== undefined) { + var date = new Date(attr.timestamp); + fs.utimesSync(path, date, date); + } + if (attr.size !== undefined) { + fs.truncateSync(path, attr.size); + } + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },lookup:function (parent, name) { + var path = PATH.join2(NODEFS.realPath(parent), name); + var mode = NODEFS.getMode(path); + return NODEFS.createNode(parent, name, mode); + },mknod:function (parent, name, mode, dev) { + var node = NODEFS.createNode(parent, name, mode, dev); + // create the backing node for this in the fs root as well + var path = NODEFS.realPath(node); + try { + if (FS.isDir(node.mode)) { + fs.mkdirSync(path, node.mode); + } else { + fs.writeFileSync(path, '', { mode: node.mode }); + } + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + return node; + },rename:function (oldNode, newDir, newName) { + var oldPath = NODEFS.realPath(oldNode); + var newPath = PATH.join2(NODEFS.realPath(newDir), newName); + try { + fs.renameSync(oldPath, newPath); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },unlink:function (parent, name) { + var path = PATH.join2(NODEFS.realPath(parent), name); + try { + fs.unlinkSync(path); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },rmdir:function (parent, name) { + var path = PATH.join2(NODEFS.realPath(parent), name); + try { + fs.rmdirSync(path); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },readdir:function (node) { + var path = NODEFS.realPath(node); + try { + return fs.readdirSync(path); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },symlink:function (parent, newName, oldPath) { + var newPath = PATH.join2(NODEFS.realPath(parent), newName); + try { + fs.symlinkSync(oldPath, newPath); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },readlink:function (node) { + var path = NODEFS.realPath(node); + try { + return fs.readlinkSync(path); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + }},stream_ops:{open:function (stream) { + var path = NODEFS.realPath(stream.node); + try { + if (FS.isFile(stream.node.mode)) { + stream.nfd = fs.openSync(path, NODEFS.flagsToPermissionString(stream.flags)); + } + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },close:function (stream) { + try { + if (FS.isFile(stream.node.mode) && stream.nfd) { + fs.closeSync(stream.nfd); + } + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },read:function (stream, buffer, offset, length, position) { + if (length === 0) return 0; // node errors on 0 length reads + // FIXME this is terrible. + var nbuffer = new Buffer(length); + var res; + try { + res = fs.readSync(stream.nfd, nbuffer, 0, length, position); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + if (res > 0) { + for (var i = 0; i < res; i++) { + buffer[offset + i] = nbuffer[i]; + } + } + return res; + },write:function (stream, buffer, offset, length, position) { + // FIXME this is terrible. + var nbuffer = new Buffer(buffer.subarray(offset, offset + length)); + var res; + try { + res = fs.writeSync(stream.nfd, nbuffer, 0, length, position); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + return res; + },llseek:function (stream, offset, whence) { + var position = offset; + if (whence === 1) { // SEEK_CUR. + position += stream.position; + } else if (whence === 2) { // SEEK_END. + if (FS.isFile(stream.node.mode)) { + try { + var stat = fs.fstatSync(stream.nfd); + position += stat.size; + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + } + } + + if (position < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + + return position; + }}}; + + var _stdin=allocate(1, "i32*", ALLOC_STATIC); + + var _stdout=allocate(1, "i32*", ALLOC_STATIC); + + var _stderr=allocate(1, "i32*", ALLOC_STATIC); + + function _fflush(stream) { + // int fflush(FILE *stream); + // http://pubs.opengroup.org/onlinepubs/000095399/functions/fflush.html + + /* + // Disabled, see https://github.com/kripken/emscripten/issues/2770 + stream = FS.getStreamFromPtr(stream); + if (stream.stream_ops.flush) { + stream.stream_ops.flush(stream); + } + */ + }var FS={root:null,mounts:[],devices:[null],streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,trackingDelegate:{},tracking:{openFlags:{READ:1,WRITE:2}},ErrnoError:null,genericErrors:{},handleFSError:function (e) { + if (!(e instanceof FS.ErrnoError)) throw e + ' : ' + stackTrace(); + return ___setErrNo(e.errno); + },lookupPath:function (path, opts) { + path = PATH.resolve(FS.cwd(), path); + opts = opts || {}; + + if (!path) return { path: '', node: null }; + + var defaults = { + follow_mount: true, + recurse_count: 0 + }; + for (var key in defaults) { + if (opts[key] === undefined) { + opts[key] = defaults[key]; + } + } + + if (opts.recurse_count > 8) { // max recursive lookup of 8 + throw new FS.ErrnoError(ERRNO_CODES.ELOOP); + } + + // split the path + var parts = PATH.normalizeArray(path.split('/').filter(function(p) { + return !!p; + }), false); + + // start at the root + var current = FS.root; + var current_path = '/'; + + for (var i = 0; i < parts.length; i++) { + var islast = (i === parts.length-1); + if (islast && opts.parent) { + // stop resolving + break; + } + + current = FS.lookupNode(current, parts[i]); + current_path = PATH.join2(current_path, parts[i]); + + // jump to the mount's root node if this is a mountpoint + if (FS.isMountpoint(current)) { + if (!islast || (islast && opts.follow_mount)) { + current = current.mounted.root; + } + } + + // by default, lookupPath will not follow a symlink if it is the final path component. + // setting opts.follow = true will override this behavior. + if (!islast || opts.follow) { + var count = 0; + while (FS.isLink(current.mode)) { + var link = FS.readlink(current_path); + current_path = PATH.resolve(PATH.dirname(current_path), link); + + var lookup = FS.lookupPath(current_path, { recurse_count: opts.recurse_count }); + current = lookup.node; + + if (count++ > 40) { // limit max consecutive symlinks to 40 (SYMLOOP_MAX). + throw new FS.ErrnoError(ERRNO_CODES.ELOOP); + } + } + } + } + + return { path: current_path, node: current }; + },getPath:function (node) { + var path; + while (true) { + if (FS.isRoot(node)) { + var mount = node.mount.mountpoint; + if (!path) return mount; + return mount[mount.length-1] !== '/' ? mount + '/' + path : mount + path; + } + path = path ? node.name + '/' + path : node.name; + node = node.parent; + } + },hashName:function (parentid, name) { + var hash = 0; + + + for (var i = 0; i < name.length; i++) { + hash = ((hash << 5) - hash + name.charCodeAt(i)) | 0; + } + return ((parentid + hash) >>> 0) % FS.nameTable.length; + },hashAddNode:function (node) { + var hash = FS.hashName(node.parent.id, node.name); + node.name_next = FS.nameTable[hash]; + FS.nameTable[hash] = node; + },hashRemoveNode:function (node) { + var hash = FS.hashName(node.parent.id, node.name); + if (FS.nameTable[hash] === node) { + FS.nameTable[hash] = node.name_next; + } else { + var current = FS.nameTable[hash]; + while (current) { + if (current.name_next === node) { + current.name_next = node.name_next; + break; + } + current = current.name_next; + } + } + },lookupNode:function (parent, name) { + var err = FS.mayLookup(parent); + if (err) { + throw new FS.ErrnoError(err, parent); + } + var hash = FS.hashName(parent.id, name); + for (var node = FS.nameTable[hash]; node; node = node.name_next) { + var nodeName = node.name; + if (node.parent.id === parent.id && nodeName === name) { + return node; + } + } + // if we failed to find it in the cache, call into the VFS + return FS.lookup(parent, name); + },createNode:function (parent, name, mode, rdev) { + if (!FS.FSNode) { + FS.FSNode = function(parent, name, mode, rdev) { + if (!parent) { + parent = this; // root node sets parent to itself + } + this.parent = parent; + this.mount = parent.mount; + this.mounted = null; + this.id = FS.nextInode++; + this.name = name; + this.mode = mode; + this.node_ops = {}; + this.stream_ops = {}; + this.rdev = rdev; + }; + + FS.FSNode.prototype = {}; + + // compatibility + var readMode = 292 | 73; + var writeMode = 146; + + // NOTE we must use Object.defineProperties instead of individual calls to + // Object.defineProperty in order to make closure compiler happy + Object.defineProperties(FS.FSNode.prototype, { + read: { + get: function() { return (this.mode & readMode) === readMode; }, + set: function(val) { val ? this.mode |= readMode : this.mode &= ~readMode; } + }, + write: { + get: function() { return (this.mode & writeMode) === writeMode; }, + set: function(val) { val ? this.mode |= writeMode : this.mode &= ~writeMode; } + }, + isFolder: { + get: function() { return FS.isDir(this.mode); } + }, + isDevice: { + get: function() { return FS.isChrdev(this.mode); } + } + }); + } + + var node = new FS.FSNode(parent, name, mode, rdev); + + FS.hashAddNode(node); + + return node; + },destroyNode:function (node) { + FS.hashRemoveNode(node); + },isRoot:function (node) { + return node === node.parent; + },isMountpoint:function (node) { + return !!node.mounted; + },isFile:function (mode) { + return (mode & 61440) === 32768; + },isDir:function (mode) { + return (mode & 61440) === 16384; + },isLink:function (mode) { + return (mode & 61440) === 40960; + },isChrdev:function (mode) { + return (mode & 61440) === 8192; + },isBlkdev:function (mode) { + return (mode & 61440) === 24576; + },isFIFO:function (mode) { + return (mode & 61440) === 4096; + },isSocket:function (mode) { + return (mode & 49152) === 49152; + },flagModes:{"r":0,"rs":1052672,"r+":2,"w":577,"wx":705,"xw":705,"w+":578,"wx+":706,"xw+":706,"a":1089,"ax":1217,"xa":1217,"a+":1090,"ax+":1218,"xa+":1218},modeStringToFlags:function (str) { + var flags = FS.flagModes[str]; + if (typeof flags === 'undefined') { + throw new Error('Unknown file open mode: ' + str); + } + return flags; + },flagsToPermissionString:function (flag) { + var accmode = flag & 2097155; + var perms = ['r', 'w', 'rw'][accmode]; + if ((flag & 512)) { + perms += 'w'; + } + return perms; + },nodePermissions:function (node, perms) { + if (FS.ignorePermissions) { + return 0; + } + // return 0 if any user, group or owner bits are set. + if (perms.indexOf('r') !== -1 && !(node.mode & 292)) { + return ERRNO_CODES.EACCES; + } else if (perms.indexOf('w') !== -1 && !(node.mode & 146)) { + return ERRNO_CODES.EACCES; + } else if (perms.indexOf('x') !== -1 && !(node.mode & 73)) { + return ERRNO_CODES.EACCES; + } + return 0; + },mayLookup:function (dir) { + var err = FS.nodePermissions(dir, 'x'); + if (err) return err; + if (!dir.node_ops.lookup) return ERRNO_CODES.EACCES; + return 0; + },mayCreate:function (dir, name) { + try { + var node = FS.lookupNode(dir, name); + return ERRNO_CODES.EEXIST; + } catch (e) { + } + return FS.nodePermissions(dir, 'wx'); + },mayDelete:function (dir, name, isdir) { + var node; + try { + node = FS.lookupNode(dir, name); + } catch (e) { + return e.errno; + } + var err = FS.nodePermissions(dir, 'wx'); + if (err) { + return err; + } + if (isdir) { + if (!FS.isDir(node.mode)) { + return ERRNO_CODES.ENOTDIR; + } + if (FS.isRoot(node) || FS.getPath(node) === FS.cwd()) { + return ERRNO_CODES.EBUSY; + } + } else { + if (FS.isDir(node.mode)) { + return ERRNO_CODES.EISDIR; + } + } + return 0; + },mayOpen:function (node, flags) { + if (!node) { + return ERRNO_CODES.ENOENT; + } + if (FS.isLink(node.mode)) { + return ERRNO_CODES.ELOOP; + } else if (FS.isDir(node.mode)) { + if ((flags & 2097155) !== 0 || // opening for write + (flags & 512)) { + return ERRNO_CODES.EISDIR; + } + } + return FS.nodePermissions(node, FS.flagsToPermissionString(flags)); + },MAX_OPEN_FDS:4096,nextfd:function (fd_start, fd_end) { + fd_start = fd_start || 0; + fd_end = fd_end || FS.MAX_OPEN_FDS; + for (var fd = fd_start; fd <= fd_end; fd++) { + if (!FS.streams[fd]) { + return fd; + } + } + throw new FS.ErrnoError(ERRNO_CODES.EMFILE); + },getStream:function (fd) { + return FS.streams[fd]; + },createStream:function (stream, fd_start, fd_end) { + if (!FS.FSStream) { + FS.FSStream = function(){}; + FS.FSStream.prototype = {}; + // compatibility + Object.defineProperties(FS.FSStream.prototype, { + object: { + get: function() { return this.node; }, + set: function(val) { this.node = val; } + }, + isRead: { + get: function() { return (this.flags & 2097155) !== 1; } + }, + isWrite: { + get: function() { return (this.flags & 2097155) !== 0; } + }, + isAppend: { + get: function() { return (this.flags & 1024); } + } + }); + } + // clone it, so we can return an instance of FSStream + var newStream = new FS.FSStream(); + for (var p in stream) { + newStream[p] = stream[p]; + } + stream = newStream; + var fd = FS.nextfd(fd_start, fd_end); + stream.fd = fd; + FS.streams[fd] = stream; + return stream; + },closeStream:function (fd) { + FS.streams[fd] = null; + },getStreamFromPtr:function (ptr) { + return FS.streams[ptr - 1]; + },getPtrForStream:function (stream) { + return stream ? stream.fd + 1 : 0; + },chrdev_stream_ops:{open:function (stream) { + var device = FS.getDevice(stream.node.rdev); + // override node's stream ops with the device's + stream.stream_ops = device.stream_ops; + // forward the open call + if (stream.stream_ops.open) { + stream.stream_ops.open(stream); + } + },llseek:function () { + throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); + }},major:function (dev) { + return ((dev) >> 8); + },minor:function (dev) { + return ((dev) & 0xff); + },makedev:function (ma, mi) { + return ((ma) << 8 | (mi)); + },registerDevice:function (dev, ops) { + FS.devices[dev] = { stream_ops: ops }; + },getDevice:function (dev) { + return FS.devices[dev]; + },getMounts:function (mount) { + var mounts = []; + var check = [mount]; + + while (check.length) { + var m = check.pop(); + + mounts.push(m); + + check.push.apply(check, m.mounts); + } + + return mounts; + },syncfs:function (populate, callback) { + if (typeof(populate) === 'function') { + callback = populate; + populate = false; + } + + var mounts = FS.getMounts(FS.root.mount); + var completed = 0; + + function done(err) { + if (err) { + if (!done.errored) { + done.errored = true; + return callback(err); + } + return; + } + if (++completed >= mounts.length) { + callback(null); + } + }; + + // sync all mounts + mounts.forEach(function (mount) { + if (!mount.type.syncfs) { + return done(null); + } + mount.type.syncfs(mount, populate, done); + }); + },mount:function (type, opts, mountpoint) { + var root = mountpoint === '/'; + var pseudo = !mountpoint; + var node; + + if (root && FS.root) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } else if (!root && !pseudo) { + var lookup = FS.lookupPath(mountpoint, { follow_mount: false }); + + mountpoint = lookup.path; // use the absolute path + node = lookup.node; + + if (FS.isMountpoint(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } + + if (!FS.isDir(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); + } + } + + var mount = { + type: type, + opts: opts, + mountpoint: mountpoint, + mounts: [] + }; + + // create a root node for the fs + var mountRoot = type.mount(mount); + mountRoot.mount = mount; + mount.root = mountRoot; + + if (root) { + FS.root = mountRoot; + } else if (node) { + // set as a mountpoint + node.mounted = mount; + + // add the new mount to the current mount's children + if (node.mount) { + node.mount.mounts.push(mount); + } + } + + return mountRoot; + },unmount:function (mountpoint) { + var lookup = FS.lookupPath(mountpoint, { follow_mount: false }); + + if (!FS.isMountpoint(lookup.node)) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + + // destroy the nodes for this mount, and all its child mounts + var node = lookup.node; + var mount = node.mounted; + var mounts = FS.getMounts(mount); + + Object.keys(FS.nameTable).forEach(function (hash) { + var current = FS.nameTable[hash]; + + while (current) { + var next = current.name_next; + + if (mounts.indexOf(current.mount) !== -1) { + FS.destroyNode(current); + } + + current = next; + } + }); + + // no longer a mountpoint + node.mounted = null; + + // remove this mount from the child mounts + var idx = node.mount.mounts.indexOf(mount); + assert(idx !== -1); + node.mount.mounts.splice(idx, 1); + },lookup:function (parent, name) { + return parent.node_ops.lookup(parent, name); + },mknod:function (path, mode, dev) { + var lookup = FS.lookupPath(path, { parent: true }); + var parent = lookup.node; + var name = PATH.basename(path); + if (!name || name === '.' || name === '..') { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + var err = FS.mayCreate(parent, name); + if (err) { + throw new FS.ErrnoError(err); + } + if (!parent.node_ops.mknod) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + return parent.node_ops.mknod(parent, name, mode, dev); + },create:function (path, mode) { + mode = mode !== undefined ? mode : 438 /* 0666 */; + mode &= 4095; + mode |= 32768; + return FS.mknod(path, mode, 0); + },mkdir:function (path, mode) { + mode = mode !== undefined ? mode : 511 /* 0777 */; + mode &= 511 | 512; + mode |= 16384; + return FS.mknod(path, mode, 0); + },mkdev:function (path, mode, dev) { + if (typeof(dev) === 'undefined') { + dev = mode; + mode = 438 /* 0666 */; + } + mode |= 8192; + return FS.mknod(path, mode, dev); + },symlink:function (oldpath, newpath) { + if (!PATH.resolve(oldpath)) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + var lookup = FS.lookupPath(newpath, { parent: true }); + var parent = lookup.node; + if (!parent) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + var newname = PATH.basename(newpath); + var err = FS.mayCreate(parent, newname); + if (err) { + throw new FS.ErrnoError(err); + } + if (!parent.node_ops.symlink) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + return parent.node_ops.symlink(parent, newname, oldpath); + },rename:function (old_path, new_path) { + var old_dirname = PATH.dirname(old_path); + var new_dirname = PATH.dirname(new_path); + var old_name = PATH.basename(old_path); + var new_name = PATH.basename(new_path); + // parents must exist + var lookup, old_dir, new_dir; + try { + lookup = FS.lookupPath(old_path, { parent: true }); + old_dir = lookup.node; + lookup = FS.lookupPath(new_path, { parent: true }); + new_dir = lookup.node; + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } + if (!old_dir || !new_dir) throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + // need to be part of the same mount + if (old_dir.mount !== new_dir.mount) { + throw new FS.ErrnoError(ERRNO_CODES.EXDEV); + } + // source must exist + var old_node = FS.lookupNode(old_dir, old_name); + // old path should not be an ancestor of the new path + var relative = PATH.relative(old_path, new_dirname); + if (relative.charAt(0) !== '.') { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + // new path should not be an ancestor of the old path + relative = PATH.relative(new_path, old_dirname); + if (relative.charAt(0) !== '.') { + throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); + } + // see if the new path already exists + var new_node; + try { + new_node = FS.lookupNode(new_dir, new_name); + } catch (e) { + // not fatal + } + // early out if nothing needs to change + if (old_node === new_node) { + return; + } + // we'll need to delete the old entry + var isdir = FS.isDir(old_node.mode); + var err = FS.mayDelete(old_dir, old_name, isdir); + if (err) { + throw new FS.ErrnoError(err); + } + // need delete permissions if we'll be overwriting. + // need create permissions if new doesn't already exist. + err = new_node ? + FS.mayDelete(new_dir, new_name, isdir) : + FS.mayCreate(new_dir, new_name); + if (err) { + throw new FS.ErrnoError(err); + } + if (!old_dir.node_ops.rename) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + if (FS.isMountpoint(old_node) || (new_node && FS.isMountpoint(new_node))) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } + // if we are going to change the parent, check write permissions + if (new_dir !== old_dir) { + err = FS.nodePermissions(old_dir, 'w'); + if (err) { + throw new FS.ErrnoError(err); + } + } + try { + if (FS.trackingDelegate['willMovePath']) { + FS.trackingDelegate['willMovePath'](old_path, new_path); + } + } catch(e) { + console.log("FS.trackingDelegate['willMovePath']('"+old_path+"', '"+new_path+"') threw an exception: " + e.message); + } + // remove the node from the lookup hash + FS.hashRemoveNode(old_node); + // do the underlying fs rename + try { + old_dir.node_ops.rename(old_node, new_dir, new_name); + } catch (e) { + throw e; + } finally { + // add the node back to the hash (in case node_ops.rename + // changed its name) + FS.hashAddNode(old_node); + } + try { + if (FS.trackingDelegate['onMovePath']) FS.trackingDelegate['onMovePath'](old_path, new_path); + } catch(e) { + console.log("FS.trackingDelegate['onMovePath']('"+old_path+"', '"+new_path+"') threw an exception: " + e.message); + } + },rmdir:function (path) { + var lookup = FS.lookupPath(path, { parent: true }); + var parent = lookup.node; + var name = PATH.basename(path); + var node = FS.lookupNode(parent, name); + var err = FS.mayDelete(parent, name, true); + if (err) { + throw new FS.ErrnoError(err); + } + if (!parent.node_ops.rmdir) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + if (FS.isMountpoint(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } + try { + if (FS.trackingDelegate['willDeletePath']) { + FS.trackingDelegate['willDeletePath'](path); + } + } catch(e) { + console.log("FS.trackingDelegate['willDeletePath']('"+path+"') threw an exception: " + e.message); + } + parent.node_ops.rmdir(parent, name); + FS.destroyNode(node); + try { + if (FS.trackingDelegate['onDeletePath']) FS.trackingDelegate['onDeletePath'](path); + } catch(e) { + console.log("FS.trackingDelegate['onDeletePath']('"+path+"') threw an exception: " + e.message); + } + },readdir:function (path) { + var lookup = FS.lookupPath(path, { follow: true }); + var node = lookup.node; + if (!node.node_ops.readdir) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); + } + return node.node_ops.readdir(node); + },unlink:function (path) { + var lookup = FS.lookupPath(path, { parent: true }); + var parent = lookup.node; + var name = PATH.basename(path); + var node = FS.lookupNode(parent, name); + var err = FS.mayDelete(parent, name, false); + if (err) { + // POSIX says unlink should set EPERM, not EISDIR + if (err === ERRNO_CODES.EISDIR) err = ERRNO_CODES.EPERM; + throw new FS.ErrnoError(err); + } + if (!parent.node_ops.unlink) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + if (FS.isMountpoint(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } + try { + if (FS.trackingDelegate['willDeletePath']) { + FS.trackingDelegate['willDeletePath'](path); + } + } catch(e) { + console.log("FS.trackingDelegate['willDeletePath']('"+path+"') threw an exception: " + e.message); + } + parent.node_ops.unlink(parent, name); + FS.destroyNode(node); + try { + if (FS.trackingDelegate['onDeletePath']) FS.trackingDelegate['onDeletePath'](path); + } catch(e) { + console.log("FS.trackingDelegate['onDeletePath']('"+path+"') threw an exception: " + e.message); + } + },readlink:function (path) { + var lookup = FS.lookupPath(path); + var link = lookup.node; + if (!link) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + if (!link.node_ops.readlink) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + return link.node_ops.readlink(link); + },stat:function (path, dontFollow) { + var lookup = FS.lookupPath(path, { follow: !dontFollow }); + var node = lookup.node; + if (!node) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + if (!node.node_ops.getattr) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + return node.node_ops.getattr(node); + },lstat:function (path) { + return FS.stat(path, true); + },chmod:function (path, mode, dontFollow) { + var node; + if (typeof path === 'string') { + var lookup = FS.lookupPath(path, { follow: !dontFollow }); + node = lookup.node; + } else { + node = path; + } + if (!node.node_ops.setattr) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + node.node_ops.setattr(node, { + mode: (mode & 4095) | (node.mode & ~4095), + timestamp: Date.now() + }); + },lchmod:function (path, mode) { + FS.chmod(path, mode, true); + },fchmod:function (fd, mode) { + var stream = FS.getStream(fd); + if (!stream) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + FS.chmod(stream.node, mode); + },chown:function (path, uid, gid, dontFollow) { + var node; + if (typeof path === 'string') { + var lookup = FS.lookupPath(path, { follow: !dontFollow }); + node = lookup.node; + } else { + node = path; + } + if (!node.node_ops.setattr) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + node.node_ops.setattr(node, { + timestamp: Date.now() + // we ignore the uid / gid for now + }); + },lchown:function (path, uid, gid) { + FS.chown(path, uid, gid, true); + },fchown:function (fd, uid, gid) { + var stream = FS.getStream(fd); + if (!stream) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + FS.chown(stream.node, uid, gid); + },truncate:function (path, len) { + if (len < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + var node; + if (typeof path === 'string') { + var lookup = FS.lookupPath(path, { follow: true }); + node = lookup.node; + } else { + node = path; + } + if (!node.node_ops.setattr) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + if (FS.isDir(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EISDIR); + } + if (!FS.isFile(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + var err = FS.nodePermissions(node, 'w'); + if (err) { + throw new FS.ErrnoError(err); + } + node.node_ops.setattr(node, { + size: len, + timestamp: Date.now() + }); + },ftruncate:function (fd, len) { + var stream = FS.getStream(fd); + if (!stream) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + if ((stream.flags & 2097155) === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + FS.truncate(stream.node, len); + },utime:function (path, atime, mtime) { + var lookup = FS.lookupPath(path, { follow: true }); + var node = lookup.node; + node.node_ops.setattr(node, { + timestamp: Math.max(atime, mtime) + }); + },open:function (path, flags, mode, fd_start, fd_end) { + if (path === "") { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + flags = typeof flags === 'string' ? FS.modeStringToFlags(flags) : flags; + mode = typeof mode === 'undefined' ? 438 /* 0666 */ : mode; + if ((flags & 64)) { + mode = (mode & 4095) | 32768; + } else { + mode = 0; + } + var node; + if (typeof path === 'object') { + node = path; + } else { + path = PATH.normalize(path); + try { + var lookup = FS.lookupPath(path, { + follow: !(flags & 131072) + }); + node = lookup.node; + } catch (e) { + // ignore + } + } + // perhaps we need to create the node + var created = false; + if ((flags & 64)) { + if (node) { + // if O_CREAT and O_EXCL are set, error out if the node already exists + if ((flags & 128)) { + throw new FS.ErrnoError(ERRNO_CODES.EEXIST); + } + } else { + // node doesn't exist, try to create it + node = FS.mknod(path, mode, 0); + created = true; + } + } + if (!node) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + // can't truncate a device + if (FS.isChrdev(node.mode)) { + flags &= ~512; + } + // check permissions, if this is not a file we just created now (it is ok to + // create and write to a file with read-only permissions; it is read-only + // for later use) + if (!created) { + var err = FS.mayOpen(node, flags); + if (err) { + throw new FS.ErrnoError(err); + } + } + // do truncation if necessary + if ((flags & 512)) { + FS.truncate(node, 0); + } + // we've already handled these, don't pass down to the underlying vfs + flags &= ~(128 | 512); + + // register the stream with the filesystem + var stream = FS.createStream({ + node: node, + path: FS.getPath(node), // we want the absolute path to the node + flags: flags, + seekable: true, + position: 0, + stream_ops: node.stream_ops, + // used by the file family libc calls (fopen, fwrite, ferror, etc.) + ungotten: [], + error: false + }, fd_start, fd_end); + // call the new stream's open function + if (stream.stream_ops.open) { + stream.stream_ops.open(stream); + } + if (Module['logReadFiles'] && !(flags & 1)) { + if (!FS.readFiles) FS.readFiles = {}; + if (!(path in FS.readFiles)) { + FS.readFiles[path] = 1; + Module['printErr']('read file: ' + path); + } + } + try { + if (FS.trackingDelegate['onOpenFile']) { + var trackingFlags = 0; + if ((flags & 2097155) !== 1) { + trackingFlags |= FS.tracking.openFlags.READ; + } + if ((flags & 2097155) !== 0) { + trackingFlags |= FS.tracking.openFlags.WRITE; + } + FS.trackingDelegate['onOpenFile'](path, trackingFlags); + } + } catch(e) { + console.log("FS.trackingDelegate['onOpenFile']('"+path+"', flags) threw an exception: " + e.message); + } + return stream; + },close:function (stream) { + try { + if (stream.stream_ops.close) { + stream.stream_ops.close(stream); + } + } catch (e) { + throw e; + } finally { + FS.closeStream(stream.fd); + } + },llseek:function (stream, offset, whence) { + if (!stream.seekable || !stream.stream_ops.llseek) { + throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); + } + stream.position = stream.stream_ops.llseek(stream, offset, whence); + stream.ungotten = []; + return stream.position; + },read:function (stream, buffer, offset, length, position) { + if (length < 0 || position < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + if ((stream.flags & 2097155) === 1) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + if (FS.isDir(stream.node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EISDIR); + } + if (!stream.stream_ops.read) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + var seeking = true; + if (typeof position === 'undefined') { + position = stream.position; + seeking = false; + } else if (!stream.seekable) { + throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); + } + var bytesRead = stream.stream_ops.read(stream, buffer, offset, length, position); + if (!seeking) stream.position += bytesRead; + return bytesRead; + },write:function (stream, buffer, offset, length, position, canOwn) { + if (length < 0 || position < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + if ((stream.flags & 2097155) === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + if (FS.isDir(stream.node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EISDIR); + } + if (!stream.stream_ops.write) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + if (stream.flags & 1024) { + // seek to the end before writing in append mode + FS.llseek(stream, 0, 2); + } + var seeking = true; + if (typeof position === 'undefined') { + position = stream.position; + seeking = false; + } else if (!stream.seekable) { + throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); + } + var bytesWritten = stream.stream_ops.write(stream, buffer, offset, length, position, canOwn); + if (!seeking) stream.position += bytesWritten; + try { + if (stream.path && FS.trackingDelegate['onWriteToFile']) FS.trackingDelegate['onWriteToFile'](stream.path); + } catch(e) { + console.log("FS.trackingDelegate['onWriteToFile']('"+path+"') threw an exception: " + e.message); + } + return bytesWritten; + },allocate:function (stream, offset, length) { + if (offset < 0 || length <= 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + if ((stream.flags & 2097155) === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + if (!FS.isFile(stream.node.mode) && !FS.isDir(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.ENODEV); + } + if (!stream.stream_ops.allocate) { + throw new FS.ErrnoError(ERRNO_CODES.EOPNOTSUPP); + } + stream.stream_ops.allocate(stream, offset, length); + },mmap:function (stream, buffer, offset, length, position, prot, flags) { + // TODO if PROT is PROT_WRITE, make sure we have write access + if ((stream.flags & 2097155) === 1) { + throw new FS.ErrnoError(ERRNO_CODES.EACCES); + } + if (!stream.stream_ops.mmap) { + throw new FS.ErrnoError(ERRNO_CODES.ENODEV); + } + return stream.stream_ops.mmap(stream, buffer, offset, length, position, prot, flags); + },ioctl:function (stream, cmd, arg) { + if (!stream.stream_ops.ioctl) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTTY); + } + return stream.stream_ops.ioctl(stream, cmd, arg); + },readFile:function (path, opts) { + opts = opts || {}; + opts.flags = opts.flags || 'r'; + opts.encoding = opts.encoding || 'binary'; + if (opts.encoding !== 'utf8' && opts.encoding !== 'binary') { + throw new Error('Invalid encoding type "' + opts.encoding + '"'); + } + var ret; + var stream = FS.open(path, opts.flags); + var stat = FS.stat(path); + var length = stat.size; + var buf = new Uint8Array(length); + FS.read(stream, buf, 0, length, 0); + if (opts.encoding === 'utf8') { + ret = ''; + var utf8 = new Runtime.UTF8Processor(); + for (var i = 0; i < length; i++) { + ret += utf8.processCChar(buf[i]); + } + } else if (opts.encoding === 'binary') { + ret = buf; + } + FS.close(stream); + return ret; + },writeFile:function (path, data, opts) { + opts = opts || {}; + opts.flags = opts.flags || 'w'; + opts.encoding = opts.encoding || 'utf8'; + if (opts.encoding !== 'utf8' && opts.encoding !== 'binary') { + throw new Error('Invalid encoding type "' + opts.encoding + '"'); + } + var stream = FS.open(path, opts.flags, opts.mode); + if (opts.encoding === 'utf8') { + var utf8 = new Runtime.UTF8Processor(); + var buf = new Uint8Array(utf8.processJSString(data)); + FS.write(stream, buf, 0, buf.length, 0, opts.canOwn); + } else if (opts.encoding === 'binary') { + FS.write(stream, data, 0, data.length, 0, opts.canOwn); + } + FS.close(stream); + },cwd:function () { + return FS.currentPath; + },chdir:function (path) { + var lookup = FS.lookupPath(path, { follow: true }); + if (!FS.isDir(lookup.node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); + } + var err = FS.nodePermissions(lookup.node, 'x'); + if (err) { + throw new FS.ErrnoError(err); + } + FS.currentPath = lookup.path; + },createDefaultDirectories:function () { + FS.mkdir('/tmp'); + FS.mkdir('/home'); + FS.mkdir('/home/web_user'); + },createDefaultDevices:function () { + // create /dev + FS.mkdir('/dev'); + // setup /dev/null + FS.registerDevice(FS.makedev(1, 3), { + read: function() { return 0; }, + write: function() { return 0; } + }); + FS.mkdev('/dev/null', FS.makedev(1, 3)); + // setup /dev/tty and /dev/tty1 + // stderr needs to print output using Module['printErr'] + // so we register a second tty just for it. + TTY.register(FS.makedev(5, 0), TTY.default_tty_ops); + TTY.register(FS.makedev(6, 0), TTY.default_tty1_ops); + FS.mkdev('/dev/tty', FS.makedev(5, 0)); + FS.mkdev('/dev/tty1', FS.makedev(6, 0)); + // setup /dev/[u]random + var random_device; + if (typeof crypto !== 'undefined') { + // for modern web browsers + var randomBuffer = new Uint8Array(1); + random_device = function() { crypto.getRandomValues(randomBuffer); return randomBuffer[0]; }; + } else if (ENVIRONMENT_IS_NODE) { + // for nodejs + random_device = function() { return require('crypto').randomBytes(1)[0]; }; + } else { + // default for ES5 platforms + random_device = function() { return (Math.random()*256)|0; }; + } + FS.createDevice('/dev', 'random', random_device); + FS.createDevice('/dev', 'urandom', random_device); + // we're not going to emulate the actual shm device, + // just create the tmp dirs that reside in it commonly + FS.mkdir('/dev/shm'); + FS.mkdir('/dev/shm/tmp'); + },createStandardStreams:function () { + // TODO deprecate the old functionality of a single + // input / output callback and that utilizes FS.createDevice + // and instead require a unique set of stream ops + + // by default, we symlink the standard streams to the + // default tty devices. however, if the standard streams + // have been overwritten we create a unique device for + // them instead. + if (Module['stdin']) { + FS.createDevice('/dev', 'stdin', Module['stdin']); + } else { + FS.symlink('/dev/tty', '/dev/stdin'); + } + if (Module['stdout']) { + FS.createDevice('/dev', 'stdout', null, Module['stdout']); + } else { + FS.symlink('/dev/tty', '/dev/stdout'); + } + if (Module['stderr']) { + FS.createDevice('/dev', 'stderr', null, Module['stderr']); + } else { + FS.symlink('/dev/tty1', '/dev/stderr'); + } + + // open default streams for the stdin, stdout and stderr devices + var stdin = FS.open('/dev/stdin', 'r'); + HEAP32[((_stdin)>>2)]=FS.getPtrForStream(stdin); + assert(stdin.fd === 0, 'invalid handle for stdin (' + stdin.fd + ')'); + + var stdout = FS.open('/dev/stdout', 'w'); + HEAP32[((_stdout)>>2)]=FS.getPtrForStream(stdout); + assert(stdout.fd === 1, 'invalid handle for stdout (' + stdout.fd + ')'); + + var stderr = FS.open('/dev/stderr', 'w'); + HEAP32[((_stderr)>>2)]=FS.getPtrForStream(stderr); + assert(stderr.fd === 2, 'invalid handle for stderr (' + stderr.fd + ')'); + },ensureErrnoError:function () { + if (FS.ErrnoError) return; + FS.ErrnoError = function ErrnoError(errno, node) { + this.node = node; + this.setErrno = function(errno) { + this.errno = errno; + for (var key in ERRNO_CODES) { + if (ERRNO_CODES[key] === errno) { + this.code = key; + break; + } + } + }; + this.setErrno(errno); + this.message = ERRNO_MESSAGES[errno]; + }; + FS.ErrnoError.prototype = new Error(); + FS.ErrnoError.prototype.constructor = FS.ErrnoError; + // Some errors may happen quite a bit, to avoid overhead we reuse them (and suffer a lack of stack info) + [ERRNO_CODES.ENOENT].forEach(function(code) { + FS.genericErrors[code] = new FS.ErrnoError(code); + FS.genericErrors[code].stack = ''; + }); + },staticInit:function () { + FS.ensureErrnoError(); + + FS.nameTable = new Array(4096); + + FS.mount(MEMFS, {}, '/'); + + FS.createDefaultDirectories(); + FS.createDefaultDevices(); + },init:function (input, output, error) { + assert(!FS.init.initialized, 'FS.init was previously called. If you want to initialize later with custom parameters, remove any earlier calls (note that one is automatically added to the generated code)'); + FS.init.initialized = true; + + FS.ensureErrnoError(); + + // Allow Module.stdin etc. to provide defaults, if none explicitly passed to us here + Module['stdin'] = input || Module['stdin']; + Module['stdout'] = output || Module['stdout']; + Module['stderr'] = error || Module['stderr']; + + FS.createStandardStreams(); + },quit:function () { + FS.init.initialized = false; + for (var i = 0; i < FS.streams.length; i++) { + var stream = FS.streams[i]; + if (!stream) { + continue; + } + FS.close(stream); + } + },getMode:function (canRead, canWrite) { + var mode = 0; + if (canRead) mode |= 292 | 73; + if (canWrite) mode |= 146; + return mode; + },joinPath:function (parts, forceRelative) { + var path = PATH.join.apply(null, parts); + if (forceRelative && path[0] == '/') path = path.substr(1); + return path; + },absolutePath:function (relative, base) { + return PATH.resolve(base, relative); + },standardizePath:function (path) { + return PATH.normalize(path); + },findObject:function (path, dontResolveLastLink) { + var ret = FS.analyzePath(path, dontResolveLastLink); + if (ret.exists) { + return ret.object; + } else { + ___setErrNo(ret.error); + return null; + } + },analyzePath:function (path, dontResolveLastLink) { + // operate from within the context of the symlink's target + try { + var lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }); + path = lookup.path; + } catch (e) { + } + var ret = { + isRoot: false, exists: false, error: 0, name: null, path: null, object: null, + parentExists: false, parentPath: null, parentObject: null + }; + try { + var lookup = FS.lookupPath(path, { parent: true }); + ret.parentExists = true; + ret.parentPath = lookup.path; + ret.parentObject = lookup.node; + ret.name = PATH.basename(path); + lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }); + ret.exists = true; + ret.path = lookup.path; + ret.object = lookup.node; + ret.name = lookup.node.name; + ret.isRoot = lookup.path === '/'; + } catch (e) { + ret.error = e.errno; + }; + return ret; + },createFolder:function (parent, name, canRead, canWrite) { + var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); + var mode = FS.getMode(canRead, canWrite); + return FS.mkdir(path, mode); + },createPath:function (parent, path, canRead, canWrite) { + parent = typeof parent === 'string' ? parent : FS.getPath(parent); + var parts = path.split('/').reverse(); + while (parts.length) { + var part = parts.pop(); + if (!part) continue; + var current = PATH.join2(parent, part); + try { + FS.mkdir(current); + } catch (e) { + // ignore EEXIST + } + parent = current; + } + return current; + },createFile:function (parent, name, properties, canRead, canWrite) { + var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); + var mode = FS.getMode(canRead, canWrite); + return FS.create(path, mode); + },createDataFile:function (parent, name, data, canRead, canWrite, canOwn) { + var path = name ? PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name) : parent; + var mode = FS.getMode(canRead, canWrite); + var node = FS.create(path, mode); + if (data) { + if (typeof data === 'string') { + var arr = new Array(data.length); + for (var i = 0, len = data.length; i < len; ++i) arr[i] = data.charCodeAt(i); + data = arr; + } + // make sure we can write to the file + FS.chmod(node, mode | 146); + var stream = FS.open(node, 'w'); + FS.write(stream, data, 0, data.length, 0, canOwn); + FS.close(stream); + FS.chmod(node, mode); + } + return node; + },createDevice:function (parent, name, input, output) { + var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); + var mode = FS.getMode(!!input, !!output); + if (!FS.createDevice.major) FS.createDevice.major = 64; + var dev = FS.makedev(FS.createDevice.major++, 0); + // Create a fake device that a set of stream ops to emulate + // the old behavior. + FS.registerDevice(dev, { + open: function(stream) { + stream.seekable = false; + }, + close: function(stream) { + // flush any pending line data + if (output && output.buffer && output.buffer.length) { + output(10); + } + }, + read: function(stream, buffer, offset, length, pos /* ignored */) { + var bytesRead = 0; + for (var i = 0; i < length; i++) { + var result; + try { + result = input(); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + if (result === undefined && bytesRead === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EAGAIN); + } + if (result === null || result === undefined) break; + bytesRead++; + buffer[offset+i] = result; + } + if (bytesRead) { + stream.node.timestamp = Date.now(); + } + return bytesRead; + }, + write: function(stream, buffer, offset, length, pos) { + for (var i = 0; i < length; i++) { + try { + output(buffer[offset+i]); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + } + if (length) { + stream.node.timestamp = Date.now(); + } + return i; + } + }); + return FS.mkdev(path, mode, dev); + },createLink:function (parent, name, target, canRead, canWrite) { + var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); + return FS.symlink(target, path); + },forceLoadFile:function (obj) { + if (obj.isDevice || obj.isFolder || obj.link || obj.contents) return true; + var success = true; + if (typeof XMLHttpRequest !== 'undefined') { + throw new Error("Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread."); + } else if (Module['read']) { + // Command-line. + try { + // WARNING: Can't read binary files in V8's d8 or tracemonkey's js, as + // read() will try to parse UTF8. + obj.contents = intArrayFromString(Module['read'](obj.url), true); + obj.usedBytes = obj.contents.length; + } catch (e) { + success = false; + } + } else { + throw new Error('Cannot load without read() or XMLHttpRequest.'); + } + if (!success) ___setErrNo(ERRNO_CODES.EIO); + return success; + },createLazyFile:function (parent, name, url, canRead, canWrite) { + // Lazy chunked Uint8Array (implements get and length from Uint8Array). Actual getting is abstracted away for eventual reuse. + function LazyUint8Array() { + this.lengthKnown = false; + this.chunks = []; // Loaded chunks. Index is the chunk number + } + LazyUint8Array.prototype.get = function LazyUint8Array_get(idx) { + if (idx > this.length-1 || idx < 0) { + return undefined; + } + var chunkOffset = idx % this.chunkSize; + var chunkNum = (idx / this.chunkSize)|0; + return this.getter(chunkNum)[chunkOffset]; + } + LazyUint8Array.prototype.setDataGetter = function LazyUint8Array_setDataGetter(getter) { + this.getter = getter; + } + LazyUint8Array.prototype.cacheLength = function LazyUint8Array_cacheLength() { + // Find length + var xhr = new XMLHttpRequest(); + xhr.open('HEAD', url, false); + xhr.send(null); + if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); + var datalength = Number(xhr.getResponseHeader("Content-length")); + var header; + var hasByteServing = (header = xhr.getResponseHeader("Accept-Ranges")) && header === "bytes"; + var chunkSize = 1024*1024; // Chunk size in bytes + + if (!hasByteServing) chunkSize = datalength; + + // Function to get a range from the remote URL. + var doXHR = (function(from, to) { + if (from > to) throw new Error("invalid range (" + from + ", " + to + ") or no bytes requested!"); + if (to > datalength-1) throw new Error("only " + datalength + " bytes available! programmer error!"); + + // TODO: Use mozResponseArrayBuffer, responseStream, etc. if available. + var xhr = new XMLHttpRequest(); + xhr.open('GET', url, false); + if (datalength !== chunkSize) xhr.setRequestHeader("Range", "bytes=" + from + "-" + to); + + // Some hints to the browser that we want binary data. + if (typeof Uint8Array != 'undefined') xhr.responseType = 'arraybuffer'; + if (xhr.overrideMimeType) { + xhr.overrideMimeType('text/plain; charset=x-user-defined'); + } + + xhr.send(null); + if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); + if (xhr.response !== undefined) { + return new Uint8Array(xhr.response || []); + } else { + return intArrayFromString(xhr.responseText || '', true); + } + }); + var lazyArray = this; + lazyArray.setDataGetter(function(chunkNum) { + var start = chunkNum * chunkSize; + var end = (chunkNum+1) * chunkSize - 1; // including this byte + end = Math.min(end, datalength-1); // if datalength-1 is selected, this is the last block + if (typeof(lazyArray.chunks[chunkNum]) === "undefined") { + lazyArray.chunks[chunkNum] = doXHR(start, end); + } + if (typeof(lazyArray.chunks[chunkNum]) === "undefined") throw new Error("doXHR failed!"); + return lazyArray.chunks[chunkNum]; + }); + + this._length = datalength; + this._chunkSize = chunkSize; + this.lengthKnown = true; + } + if (typeof XMLHttpRequest !== 'undefined') { + if (!ENVIRONMENT_IS_WORKER) throw 'Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc'; + var lazyArray = new LazyUint8Array(); + Object.defineProperty(lazyArray, "length", { + get: function() { + if(!this.lengthKnown) { + this.cacheLength(); + } + return this._length; + } + }); + Object.defineProperty(lazyArray, "chunkSize", { + get: function() { + if(!this.lengthKnown) { + this.cacheLength(); + } + return this._chunkSize; + } + }); + + var properties = { isDevice: false, contents: lazyArray }; + } else { + var properties = { isDevice: false, url: url }; + } + + var node = FS.createFile(parent, name, properties, canRead, canWrite); + // This is a total hack, but I want to get this lazy file code out of the + // core of MEMFS. If we want to keep this lazy file concept I feel it should + // be its own thin LAZYFS proxying calls to MEMFS. + if (properties.contents) { + node.contents = properties.contents; + } else if (properties.url) { + node.contents = null; + node.url = properties.url; + } + // Add a function that defers querying the file size until it is asked the first time. + Object.defineProperty(node, "usedBytes", { + get: function() { return this.contents.length; } + }); + // override each stream op with one that tries to force load the lazy file first + var stream_ops = {}; + var keys = Object.keys(node.stream_ops); + keys.forEach(function(key) { + var fn = node.stream_ops[key]; + stream_ops[key] = function forceLoadLazyFile() { + if (!FS.forceLoadFile(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + return fn.apply(null, arguments); + }; + }); + // use a custom read function + stream_ops.read = function stream_ops_read(stream, buffer, offset, length, position) { + if (!FS.forceLoadFile(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + var contents = stream.node.contents; + if (position >= contents.length) + return 0; + var size = Math.min(contents.length - position, length); + assert(size >= 0); + if (contents.slice) { // normal array + for (var i = 0; i < size; i++) { + buffer[offset + i] = contents[position + i]; + } + } else { + for (var i = 0; i < size; i++) { // LazyUint8Array from sync binary XHR + buffer[offset + i] = contents.get(position + i); + } + } + return size; + }; + node.stream_ops = stream_ops; + return node; + },createPreloadedFile:function (parent, name, url, canRead, canWrite, onload, onerror, dontCreateFile, canOwn) { + Browser.init(); + // TODO we should allow people to just pass in a complete filename instead + // of parent and name being that we just join them anyways + var fullname = name ? PATH.resolve(PATH.join2(parent, name)) : parent; + function processData(byteArray) { + function finish(byteArray) { + if (!dontCreateFile) { + FS.createDataFile(parent, name, byteArray, canRead, canWrite, canOwn); + } + if (onload) onload(); + removeRunDependency('cp ' + fullname); + } + var handled = false; + Module['preloadPlugins'].forEach(function(plugin) { + if (handled) return; + if (plugin['canHandle'](fullname)) { + plugin['handle'](byteArray, fullname, finish, function() { + if (onerror) onerror(); + removeRunDependency('cp ' + fullname); + }); + handled = true; + } + }); + if (!handled) finish(byteArray); + } + addRunDependency('cp ' + fullname); + if (typeof url == 'string') { + Browser.asyncLoad(url, function(byteArray) { + processData(byteArray); + }, onerror); + } else { + processData(url); + } + },indexedDB:function () { + return window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; + },DB_NAME:function () { + return 'EM_FS_' + window.location.pathname; + },DB_VERSION:20,DB_STORE_NAME:"FILE_DATA",saveFilesToDB:function (paths, onload, onerror) { + onload = onload || function(){}; + onerror = onerror || function(){}; + var indexedDB = FS.indexedDB(); + try { + var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); + } catch (e) { + return onerror(e); + } + openRequest.onupgradeneeded = function openRequest_onupgradeneeded() { + console.log('creating db'); + var db = openRequest.result; + db.createObjectStore(FS.DB_STORE_NAME); + }; + openRequest.onsuccess = function openRequest_onsuccess() { + var db = openRequest.result; + var transaction = db.transaction([FS.DB_STORE_NAME], 'readwrite'); + var files = transaction.objectStore(FS.DB_STORE_NAME); + var ok = 0, fail = 0, total = paths.length; + function finish() { + if (fail == 0) onload(); else onerror(); + } + paths.forEach(function(path) { + var putRequest = files.put(FS.analyzePath(path).object.contents, path); + putRequest.onsuccess = function putRequest_onsuccess() { ok++; if (ok + fail == total) finish() }; + putRequest.onerror = function putRequest_onerror() { fail++; if (ok + fail == total) finish() }; + }); + transaction.onerror = onerror; + }; + openRequest.onerror = onerror; + },loadFilesFromDB:function (paths, onload, onerror) { + onload = onload || function(){}; + onerror = onerror || function(){}; + var indexedDB = FS.indexedDB(); + try { + var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); + } catch (e) { + return onerror(e); + } + openRequest.onupgradeneeded = onerror; // no database to load from + openRequest.onsuccess = function openRequest_onsuccess() { + var db = openRequest.result; + try { + var transaction = db.transaction([FS.DB_STORE_NAME], 'readonly'); + } catch(e) { + onerror(e); + return; + } + var files = transaction.objectStore(FS.DB_STORE_NAME); + var ok = 0, fail = 0, total = paths.length; + function finish() { + if (fail == 0) onload(); else onerror(); + } + paths.forEach(function(path) { + var getRequest = files.get(path); + getRequest.onsuccess = function getRequest_onsuccess() { + if (FS.analyzePath(path).exists) { + FS.unlink(path); + } + FS.createDataFile(PATH.dirname(path), PATH.basename(path), getRequest.result, true, true, true); + ok++; + if (ok + fail == total) finish(); + }; + getRequest.onerror = function getRequest_onerror() { fail++; if (ok + fail == total) finish() }; + }); + transaction.onerror = onerror; + }; + openRequest.onerror = onerror; + }};var PATH={splitPath:function (filename) { + var splitPathRe = /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; + return splitPathRe.exec(filename).slice(1); + },normalizeArray:function (parts, allowAboveRoot) { + // if the path tries to go above the root, `up` ends up > 0 + var up = 0; + for (var i = parts.length - 1; i >= 0; i--) { + var last = parts[i]; + if (last === '.') { + parts.splice(i, 1); + } else if (last === '..') { + parts.splice(i, 1); + up++; + } else if (up) { + parts.splice(i, 1); + up--; + } + } + // if the path is allowed to go above the root, restore leading ..s + if (allowAboveRoot) { + for (; up--; up) { + parts.unshift('..'); + } + } + return parts; + },normalize:function (path) { + var isAbsolute = path.charAt(0) === '/', + trailingSlash = path.substr(-1) === '/'; + // Normalize the path + path = PATH.normalizeArray(path.split('/').filter(function(p) { + return !!p; + }), !isAbsolute).join('/'); + if (!path && !isAbsolute) { + path = '.'; + } + if (path && trailingSlash) { + path += '/'; + } + return (isAbsolute ? '/' : '') + path; + },dirname:function (path) { + var result = PATH.splitPath(path), + root = result[0], + dir = result[1]; + if (!root && !dir) { + // No dirname whatsoever + return '.'; + } + if (dir) { + // It has a dirname, strip trailing slash + dir = dir.substr(0, dir.length - 1); + } + return root + dir; + },basename:function (path) { + // EMSCRIPTEN return '/'' for '/', not an empty string + if (path === '/') return '/'; + var lastSlash = path.lastIndexOf('/'); + if (lastSlash === -1) return path; + return path.substr(lastSlash+1); + },extname:function (path) { + return PATH.splitPath(path)[3]; + },join:function () { + var paths = Array.prototype.slice.call(arguments, 0); + return PATH.normalize(paths.join('/')); + },join2:function (l, r) { + return PATH.normalize(l + '/' + r); + },resolve:function () { + var resolvedPath = '', + resolvedAbsolute = false; + for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { + var path = (i >= 0) ? arguments[i] : FS.cwd(); + // Skip empty and invalid entries + if (typeof path !== 'string') { + throw new TypeError('Arguments to path.resolve must be strings'); + } else if (!path) { + return ''; // an invalid portion invalidates the whole thing + } + resolvedPath = path + '/' + resolvedPath; + resolvedAbsolute = path.charAt(0) === '/'; + } + // At this point the path should be resolved to a full absolute path, but + // handle relative paths to be safe (might happen when process.cwd() fails) + resolvedPath = PATH.normalizeArray(resolvedPath.split('/').filter(function(p) { + return !!p; + }), !resolvedAbsolute).join('/'); + return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.'; + },relative:function (from, to) { + from = PATH.resolve(from).substr(1); + to = PATH.resolve(to).substr(1); + function trim(arr) { + var start = 0; + for (; start < arr.length; start++) { + if (arr[start] !== '') break; + } + var end = arr.length - 1; + for (; end >= 0; end--) { + if (arr[end] !== '') break; + } + if (start > end) return []; + return arr.slice(start, end - start + 1); + } + var fromParts = trim(from.split('/')); + var toParts = trim(to.split('/')); + var length = Math.min(fromParts.length, toParts.length); + var samePartsLength = length; + for (var i = 0; i < length; i++) { + if (fromParts[i] !== toParts[i]) { + samePartsLength = i; + break; + } + } + var outputParts = []; + for (var i = samePartsLength; i < fromParts.length; i++) { + outputParts.push('..'); + } + outputParts = outputParts.concat(toParts.slice(samePartsLength)); + return outputParts.join('/'); + }}; + + + function _emscripten_set_main_loop_timing(mode, value) { + Browser.mainLoop.timingMode = mode; + Browser.mainLoop.timingValue = value; + + if (!Browser.mainLoop.func) { + return 1; // Return non-zero on failure, can't set timing mode when there is no main loop. + } + + if (mode == 0 /*EM_TIMING_SETTIMEOUT*/) { + Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler() { + setTimeout(Browser.mainLoop.runner, value); // doing this each time means that on exception, we stop + }; + Browser.mainLoop.method = 'timeout'; + } else if (mode == 1 /*EM_TIMING_RAF*/) { + Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler() { + Browser.requestAnimationFrame(Browser.mainLoop.runner); + }; + Browser.mainLoop.method = 'rAF'; + } + return 0; + }function _emscripten_set_main_loop(func, fps, simulateInfiniteLoop, arg) { + Module['noExitRuntime'] = true; + + assert(!Browser.mainLoop.func, 'emscripten_set_main_loop: there can only be one main loop function at once: call emscripten_cancel_main_loop to cancel the previous one before setting a new one with different parameters.'); + + Browser.mainLoop.func = func; + Browser.mainLoop.arg = arg; + + var thisMainLoopId = Browser.mainLoop.currentlyRunningMainloop; + + Browser.mainLoop.runner = function Browser_mainLoop_runner() { + if (ABORT) return; + if (Browser.mainLoop.queue.length > 0) { + var start = Date.now(); + var blocker = Browser.mainLoop.queue.shift(); + blocker.func(blocker.arg); + if (Browser.mainLoop.remainingBlockers) { + var remaining = Browser.mainLoop.remainingBlockers; + var next = remaining%1 == 0 ? remaining-1 : Math.floor(remaining); + if (blocker.counted) { + Browser.mainLoop.remainingBlockers = next; + } else { + // not counted, but move the progress along a tiny bit + next = next + 0.5; // do not steal all the next one's progress + Browser.mainLoop.remainingBlockers = (8*remaining + next)/9; + } + } + console.log('main loop blocker "' + blocker.name + '" took ' + (Date.now() - start) + ' ms'); //, left: ' + Browser.mainLoop.remainingBlockers); + Browser.mainLoop.updateStatus(); + setTimeout(Browser.mainLoop.runner, 0); + return; + } + + // catch pauses from non-main loop sources + if (thisMainLoopId < Browser.mainLoop.currentlyRunningMainloop) return; + + // Implement very basic swap interval control + Browser.mainLoop.currentFrameNumber = Browser.mainLoop.currentFrameNumber + 1 | 0; + if (Browser.mainLoop.timingMode == 1/*EM_TIMING_RAF*/ && Browser.mainLoop.timingValue > 1 && Browser.mainLoop.currentFrameNumber % Browser.mainLoop.timingValue != 0) { + // Not the scheduled time to render this frame - skip. + Browser.mainLoop.scheduler(); + return; + } + + // Signal GL rendering layer that processing of a new frame is about to start. This helps it optimize + // VBO double-buffering and reduce GPU stalls. + + if (Browser.mainLoop.method === 'timeout' && Module.ctx) { + Module.printErr('Looks like you are rendering without using requestAnimationFrame for the main loop. You should use 0 for the frame rate in emscripten_set_main_loop in order to use requestAnimationFrame, as that can greatly improve your frame rates!'); + Browser.mainLoop.method = ''; // just warn once per call to set main loop + } + + Browser.mainLoop.runIter(function() { + if (typeof arg !== 'undefined') { + Runtime.dynCall('vi', func, [arg]); + } else { + Runtime.dynCall('v', func); + } + }); + + // catch pauses from the main loop itself + if (thisMainLoopId < Browser.mainLoop.currentlyRunningMainloop) return; + + // Queue new audio data. This is important to be right after the main loop invocation, so that we will immediately be able + // to queue the newest produced audio samples. + // TODO: Consider adding pre- and post- rAF callbacks so that GL.newRenderingFrameStarted() and SDL.audio.queueNewAudioData() + // do not need to be hardcoded into this function, but can be more generic. + if (typeof SDL === 'object' && SDL.audio && SDL.audio.queueNewAudioData) SDL.audio.queueNewAudioData(); + + Browser.mainLoop.scheduler(); + } + + if (fps && fps > 0) _emscripten_set_main_loop_timing(0/*EM_TIMING_SETTIMEOUT*/, 1000.0 / fps); + else _emscripten_set_main_loop_timing(1/*EM_TIMING_RAF*/, 1); // Do rAF by rendering each frame (no decimating) + + Browser.mainLoop.scheduler(); + + if (simulateInfiniteLoop) { + throw 'SimulateInfiniteLoop'; + } + }var Browser={mainLoop:{scheduler:null,method:"",currentlyRunningMainloop:0,func:null,arg:0,timingMode:0,timingValue:0,currentFrameNumber:0,queue:[],pause:function () { + Browser.mainLoop.scheduler = null; + Browser.mainLoop.currentlyRunningMainloop++; // Incrementing this signals the previous main loop that it's now become old, and it must return. + },resume:function () { + Browser.mainLoop.currentlyRunningMainloop++; + var timingMode = Browser.mainLoop.timingMode; + var timingValue = Browser.mainLoop.timingValue; + var func = Browser.mainLoop.func; + Browser.mainLoop.func = null; + _emscripten_set_main_loop(func, 0, false, Browser.mainLoop.arg); + _emscripten_set_main_loop_timing(timingMode, timingValue); + },updateStatus:function () { + if (Module['setStatus']) { + var message = Module['statusMessage'] || 'Please wait...'; + var remaining = Browser.mainLoop.remainingBlockers; + var expected = Browser.mainLoop.expectedBlockers; + if (remaining) { + if (remaining < expected) { + Module['setStatus'](message + ' (' + (expected - remaining) + '/' + expected + ')'); + } else { + Module['setStatus'](message); + } + } else { + Module['setStatus'](''); + } + } + },runIter:function (func) { + if (ABORT) return; + if (Module['preMainLoop']) { + var preRet = Module['preMainLoop'](); + if (preRet === false) { + return; // |return false| skips a frame + } + } + try { + func(); + } catch (e) { + if (e instanceof ExitStatus) { + return; + } else { + if (e && typeof e === 'object' && e.stack) Module.printErr('exception thrown: ' + [e, e.stack]); + throw e; + } + } + if (Module['postMainLoop']) Module['postMainLoop'](); + }},isFullScreen:false,pointerLock:false,moduleContextCreatedCallbacks:[],workers:[],init:function () { + if (!Module["preloadPlugins"]) Module["preloadPlugins"] = []; // needs to exist even in workers + + if (Browser.initted) return; + Browser.initted = true; + + try { + new Blob(); + Browser.hasBlobConstructor = true; + } catch(e) { + Browser.hasBlobConstructor = false; + console.log("warning: no blob constructor, cannot create blobs with mimetypes"); + } + Browser.BlobBuilder = typeof MozBlobBuilder != "undefined" ? MozBlobBuilder : (typeof WebKitBlobBuilder != "undefined" ? WebKitBlobBuilder : (!Browser.hasBlobConstructor ? console.log("warning: no BlobBuilder") : null)); + Browser.URLObject = typeof window != "undefined" ? (window.URL ? window.URL : window.webkitURL) : undefined; + if (!Module.noImageDecoding && typeof Browser.URLObject === 'undefined') { + console.log("warning: Browser does not support creating object URLs. Built-in browser image decoding will not be available."); + Module.noImageDecoding = true; + } + + // Support for plugins that can process preloaded files. You can add more of these to + // your app by creating and appending to Module.preloadPlugins. + // + // Each plugin is asked if it can handle a file based on the file's name. If it can, + // it is given the file's raw data. When it is done, it calls a callback with the file's + // (possibly modified) data. For example, a plugin might decompress a file, or it + // might create some side data structure for use later (like an Image element, etc.). + + var imagePlugin = {}; + imagePlugin['canHandle'] = function imagePlugin_canHandle(name) { + return !Module.noImageDecoding && /\.(jpg|jpeg|png|bmp)$/i.test(name); + }; + imagePlugin['handle'] = function imagePlugin_handle(byteArray, name, onload, onerror) { + var b = null; + if (Browser.hasBlobConstructor) { + try { + b = new Blob([byteArray], { type: Browser.getMimetype(name) }); + if (b.size !== byteArray.length) { // Safari bug #118630 + // Safari's Blob can only take an ArrayBuffer + b = new Blob([(new Uint8Array(byteArray)).buffer], { type: Browser.getMimetype(name) }); + } + } catch(e) { + Runtime.warnOnce('Blob constructor present but fails: ' + e + '; falling back to blob builder'); + } + } + if (!b) { + var bb = new Browser.BlobBuilder(); + bb.append((new Uint8Array(byteArray)).buffer); // we need to pass a buffer, and must copy the array to get the right data range + b = bb.getBlob(); + } + var url = Browser.URLObject.createObjectURL(b); + var img = new Image(); + img.onload = function img_onload() { + assert(img.complete, 'Image ' + name + ' could not be decoded'); + var canvas = document.createElement('canvas'); + canvas.width = img.width; + canvas.height = img.height; + var ctx = canvas.getContext('2d'); + ctx.drawImage(img, 0, 0); + Module["preloadedImages"][name] = canvas; + Browser.URLObject.revokeObjectURL(url); + if (onload) onload(byteArray); + }; + img.onerror = function img_onerror(event) { + console.log('Image ' + url + ' could not be decoded'); + if (onerror) onerror(); + }; + img.src = url; + }; + Module['preloadPlugins'].push(imagePlugin); + + var audioPlugin = {}; + audioPlugin['canHandle'] = function audioPlugin_canHandle(name) { + return !Module.noAudioDecoding && name.substr(-4) in { '.ogg': 1, '.wav': 1, '.mp3': 1 }; + }; + audioPlugin['handle'] = function audioPlugin_handle(byteArray, name, onload, onerror) { + var done = false; + function finish(audio) { + if (done) return; + done = true; + Module["preloadedAudios"][name] = audio; + if (onload) onload(byteArray); + } + function fail() { + if (done) return; + done = true; + Module["preloadedAudios"][name] = new Audio(); // empty shim + if (onerror) onerror(); + } + if (Browser.hasBlobConstructor) { + try { + var b = new Blob([byteArray], { type: Browser.getMimetype(name) }); + } catch(e) { + return fail(); + } + var url = Browser.URLObject.createObjectURL(b); // XXX we never revoke this! + var audio = new Audio(); + audio.addEventListener('canplaythrough', function() { finish(audio) }, false); // use addEventListener due to chromium bug 124926 + audio.onerror = function audio_onerror(event) { + if (done) return; + console.log('warning: browser could not fully decode audio ' + name + ', trying slower base64 approach'); + function encode64(data) { + var BASE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; + var PAD = '='; + var ret = ''; + var leftchar = 0; + var leftbits = 0; + for (var i = 0; i < data.length; i++) { + leftchar = (leftchar << 8) | data[i]; + leftbits += 8; + while (leftbits >= 6) { + var curr = (leftchar >> (leftbits-6)) & 0x3f; + leftbits -= 6; + ret += BASE[curr]; + } + } + if (leftbits == 2) { + ret += BASE[(leftchar&3) << 4]; + ret += PAD + PAD; + } else if (leftbits == 4) { + ret += BASE[(leftchar&0xf) << 2]; + ret += PAD; + } + return ret; + } + audio.src = 'data:audio/x-' + name.substr(-3) + ';base64,' + encode64(byteArray); + finish(audio); // we don't wait for confirmation this worked - but it's worth trying + }; + audio.src = url; + // workaround for chrome bug 124926 - we do not always get oncanplaythrough or onerror + Browser.safeSetTimeout(function() { + finish(audio); // try to use it even though it is not necessarily ready to play + }, 10000); + } else { + return fail(); + } + }; + Module['preloadPlugins'].push(audioPlugin); + + // Canvas event setup + + var canvas = Module['canvas']; + function pointerLockChange() { + Browser.pointerLock = document['pointerLockElement'] === canvas || + document['mozPointerLockElement'] === canvas || + document['webkitPointerLockElement'] === canvas || + document['msPointerLockElement'] === canvas; + } + if (canvas) { + // forced aspect ratio can be enabled by defining 'forcedAspectRatio' on Module + // Module['forcedAspectRatio'] = 4 / 3; + + canvas.requestPointerLock = canvas['requestPointerLock'] || + canvas['mozRequestPointerLock'] || + canvas['webkitRequestPointerLock'] || + canvas['msRequestPointerLock'] || + function(){}; + canvas.exitPointerLock = document['exitPointerLock'] || + document['mozExitPointerLock'] || + document['webkitExitPointerLock'] || + document['msExitPointerLock'] || + function(){}; // no-op if function does not exist + canvas.exitPointerLock = canvas.exitPointerLock.bind(document); + + + document.addEventListener('pointerlockchange', pointerLockChange, false); + document.addEventListener('mozpointerlockchange', pointerLockChange, false); + document.addEventListener('webkitpointerlockchange', pointerLockChange, false); + document.addEventListener('mspointerlockchange', pointerLockChange, false); + + if (Module['elementPointerLock']) { + canvas.addEventListener("click", function(ev) { + if (!Browser.pointerLock && canvas.requestPointerLock) { + canvas.requestPointerLock(); + ev.preventDefault(); + } + }, false); + } + } + },createContext:function (canvas, useWebGL, setInModule, webGLContextAttributes) { + if (useWebGL && Module.ctx && canvas == Module.canvas) return Module.ctx; // no need to recreate GL context if it's already been created for this canvas. + + var ctx; + var contextHandle; + if (useWebGL) { + // For GLES2/desktop GL compatibility, adjust a few defaults to be different to WebGL defaults, so that they align better with the desktop defaults. + var contextAttributes = { + antialias: false, + alpha: false + }; + + if (webGLContextAttributes) { + for (var attribute in webGLContextAttributes) { + contextAttributes[attribute] = webGLContextAttributes[attribute]; + } + } + + contextHandle = GL.createContext(canvas, contextAttributes); + if (contextHandle) { + ctx = GL.getContext(contextHandle).GLctx; + } + // Set the background of the WebGL canvas to black + canvas.style.backgroundColor = "black"; + } else { + ctx = canvas.getContext('2d'); + } + + if (!ctx) return null; + + if (setInModule) { + if (!useWebGL) assert(typeof GLctx === 'undefined', 'cannot set in module if GLctx is used, but we are a non-GL context that would replace it'); + + Module.ctx = ctx; + if (useWebGL) GL.makeContextCurrent(contextHandle); + Module.useWebGL = useWebGL; + Browser.moduleContextCreatedCallbacks.forEach(function(callback) { callback() }); + Browser.init(); + } + return ctx; + },destroyContext:function (canvas, useWebGL, setInModule) {},fullScreenHandlersInstalled:false,lockPointer:undefined,resizeCanvas:undefined,requestFullScreen:function (lockPointer, resizeCanvas) { + Browser.lockPointer = lockPointer; + Browser.resizeCanvas = resizeCanvas; + if (typeof Browser.lockPointer === 'undefined') Browser.lockPointer = true; + if (typeof Browser.resizeCanvas === 'undefined') Browser.resizeCanvas = false; + + var canvas = Module['canvas']; + function fullScreenChange() { + Browser.isFullScreen = false; + var canvasContainer = canvas.parentNode; + if ((document['webkitFullScreenElement'] || document['webkitFullscreenElement'] || + document['mozFullScreenElement'] || document['mozFullscreenElement'] || + document['fullScreenElement'] || document['fullscreenElement'] || + document['msFullScreenElement'] || document['msFullscreenElement'] || + document['webkitCurrentFullScreenElement']) === canvasContainer) { + canvas.cancelFullScreen = document['cancelFullScreen'] || + document['mozCancelFullScreen'] || + document['webkitCancelFullScreen'] || + document['msExitFullscreen'] || + document['exitFullscreen'] || + function() {}; + canvas.cancelFullScreen = canvas.cancelFullScreen.bind(document); + if (Browser.lockPointer) canvas.requestPointerLock(); + Browser.isFullScreen = true; + if (Browser.resizeCanvas) Browser.setFullScreenCanvasSize(); + } else { + + // remove the full screen specific parent of the canvas again to restore the HTML structure from before going full screen + canvasContainer.parentNode.insertBefore(canvas, canvasContainer); + canvasContainer.parentNode.removeChild(canvasContainer); + + if (Browser.resizeCanvas) Browser.setWindowedCanvasSize(); + } + if (Module['onFullScreen']) Module['onFullScreen'](Browser.isFullScreen); + Browser.updateCanvasDimensions(canvas); + } + + if (!Browser.fullScreenHandlersInstalled) { + Browser.fullScreenHandlersInstalled = true; + document.addEventListener('fullscreenchange', fullScreenChange, false); + document.addEventListener('mozfullscreenchange', fullScreenChange, false); + document.addEventListener('webkitfullscreenchange', fullScreenChange, false); + document.addEventListener('MSFullscreenChange', fullScreenChange, false); + } + + // create a new parent to ensure the canvas has no siblings. this allows browsers to optimize full screen performance when its parent is the full screen root + var canvasContainer = document.createElement("div"); + canvas.parentNode.insertBefore(canvasContainer, canvas); + canvasContainer.appendChild(canvas); + + // use parent of canvas as full screen root to allow aspect ratio correction (Firefox stretches the root to screen size) + canvasContainer.requestFullScreen = canvasContainer['requestFullScreen'] || + canvasContainer['mozRequestFullScreen'] || + canvasContainer['msRequestFullscreen'] || + (canvasContainer['webkitRequestFullScreen'] ? function() { canvasContainer['webkitRequestFullScreen'](Element['ALLOW_KEYBOARD_INPUT']) } : null); + canvasContainer.requestFullScreen(); + },nextRAF:0,fakeRequestAnimationFrame:function (func) { + // try to keep 60fps between calls to here + var now = Date.now(); + if (Browser.nextRAF === 0) { + Browser.nextRAF = now + 1000/60; + } else { + while (now + 2 >= Browser.nextRAF) { // fudge a little, to avoid timer jitter causing us to do lots of delay:0 + Browser.nextRAF += 1000/60; + } + } + var delay = Math.max(Browser.nextRAF - now, 0); + setTimeout(func, delay); + },requestAnimationFrame:function requestAnimationFrame(func) { + if (typeof window === 'undefined') { // Provide fallback to setTimeout if window is undefined (e.g. in Node.js) + Browser.fakeRequestAnimationFrame(func); + } else { + if (!window.requestAnimationFrame) { + window.requestAnimationFrame = window['requestAnimationFrame'] || + window['mozRequestAnimationFrame'] || + window['webkitRequestAnimationFrame'] || + window['msRequestAnimationFrame'] || + window['oRequestAnimationFrame'] || + Browser.fakeRequestAnimationFrame; + } + window.requestAnimationFrame(func); + } + },safeCallback:function (func) { + return function() { + if (!ABORT) return func.apply(null, arguments); + }; + },safeRequestAnimationFrame:function (func) { + return Browser.requestAnimationFrame(function() { + if (!ABORT) func(); + }); + },safeSetTimeout:function (func, timeout) { + Module['noExitRuntime'] = true; + return setTimeout(function() { + if (!ABORT) func(); + }, timeout); + },safeSetInterval:function (func, timeout) { + Module['noExitRuntime'] = true; + return setInterval(function() { + if (!ABORT) func(); + }, timeout); + },getMimetype:function (name) { + return { + 'jpg': 'image/jpeg', + 'jpeg': 'image/jpeg', + 'png': 'image/png', + 'bmp': 'image/bmp', + 'ogg': 'audio/ogg', + 'wav': 'audio/wav', + 'mp3': 'audio/mpeg' + }[name.substr(name.lastIndexOf('.')+1)]; + },getUserMedia:function (func) { + if(!window.getUserMedia) { + window.getUserMedia = navigator['getUserMedia'] || + navigator['mozGetUserMedia']; + } + window.getUserMedia(func); + },getMovementX:function (event) { + return event['movementX'] || + event['mozMovementX'] || + event['webkitMovementX'] || + 0; + },getMovementY:function (event) { + return event['movementY'] || + event['mozMovementY'] || + event['webkitMovementY'] || + 0; + },getMouseWheelDelta:function (event) { + var delta = 0; + switch (event.type) { + case 'DOMMouseScroll': + delta = event.detail; + break; + case 'mousewheel': + delta = event.wheelDelta; + break; + case 'wheel': + delta = event['deltaY']; + break; + default: + throw 'unrecognized mouse wheel event: ' + event.type; + } + return delta; + },mouseX:0,mouseY:0,mouseMovementX:0,mouseMovementY:0,touches:{},lastTouches:{},calculateMouseEvent:function (event) { // event should be mousemove, mousedown or mouseup + if (Browser.pointerLock) { + // When the pointer is locked, calculate the coordinates + // based on the movement of the mouse. + // Workaround for Firefox bug 764498 + if (event.type != 'mousemove' && + ('mozMovementX' in event)) { + Browser.mouseMovementX = Browser.mouseMovementY = 0; + } else { + Browser.mouseMovementX = Browser.getMovementX(event); + Browser.mouseMovementY = Browser.getMovementY(event); + } + + // check if SDL is available + if (typeof SDL != "undefined") { + Browser.mouseX = SDL.mouseX + Browser.mouseMovementX; + Browser.mouseY = SDL.mouseY + Browser.mouseMovementY; + } else { + // just add the mouse delta to the current absolut mouse position + // FIXME: ideally this should be clamped against the canvas size and zero + Browser.mouseX += Browser.mouseMovementX; + Browser.mouseY += Browser.mouseMovementY; + } + } else { + // Otherwise, calculate the movement based on the changes + // in the coordinates. + var rect = Module["canvas"].getBoundingClientRect(); + var cw = Module["canvas"].width; + var ch = Module["canvas"].height; + + // Neither .scrollX or .pageXOffset are defined in a spec, but + // we prefer .scrollX because it is currently in a spec draft. + // (see: http://www.w3.org/TR/2013/WD-cssom-view-20131217/) + var scrollX = ((typeof window.scrollX !== 'undefined') ? window.scrollX : window.pageXOffset); + var scrollY = ((typeof window.scrollY !== 'undefined') ? window.scrollY : window.pageYOffset); + + if (event.type === 'touchstart' || event.type === 'touchend' || event.type === 'touchmove') { + var touch = event.touch; + if (touch === undefined) { + return; // the "touch" property is only defined in SDL + + } + var adjustedX = touch.pageX - (scrollX + rect.left); + var adjustedY = touch.pageY - (scrollY + rect.top); + + adjustedX = adjustedX * (cw / rect.width); + adjustedY = adjustedY * (ch / rect.height); + + var coords = { x: adjustedX, y: adjustedY }; + + if (event.type === 'touchstart') { + Browser.lastTouches[touch.identifier] = coords; + Browser.touches[touch.identifier] = coords; + } else if (event.type === 'touchend' || event.type === 'touchmove') { + Browser.lastTouches[touch.identifier] = Browser.touches[touch.identifier]; + Browser.touches[touch.identifier] = { x: adjustedX, y: adjustedY }; + } + return; + } + + var x = event.pageX - (scrollX + rect.left); + var y = event.pageY - (scrollY + rect.top); + + // the canvas might be CSS-scaled compared to its backbuffer; + // SDL-using content will want mouse coordinates in terms + // of backbuffer units. + x = x * (cw / rect.width); + y = y * (ch / rect.height); + + Browser.mouseMovementX = x - Browser.mouseX; + Browser.mouseMovementY = y - Browser.mouseY; + Browser.mouseX = x; + Browser.mouseY = y; + } + },xhrLoad:function (url, onload, onerror) { + var xhr = new XMLHttpRequest(); + xhr.open('GET', url, true); + xhr.responseType = 'arraybuffer'; + xhr.onload = function xhr_onload() { + if (xhr.status == 200 || (xhr.status == 0 && xhr.response)) { // file URLs can return 0 + onload(xhr.response); + } else { + onerror(); + } + }; + xhr.onerror = onerror; + xhr.send(null); + },asyncLoad:function (url, onload, onerror, noRunDep) { + Browser.xhrLoad(url, function(arrayBuffer) { + assert(arrayBuffer, 'Loading data file "' + url + '" failed (no arrayBuffer).'); + onload(new Uint8Array(arrayBuffer)); + if (!noRunDep) removeRunDependency('al ' + url); + }, function(event) { + if (onerror) { + onerror(); + } else { + throw 'Loading data file "' + url + '" failed.'; + } + }); + if (!noRunDep) addRunDependency('al ' + url); + },resizeListeners:[],updateResizeListeners:function () { + var canvas = Module['canvas']; + Browser.resizeListeners.forEach(function(listener) { + listener(canvas.width, canvas.height); + }); + },setCanvasSize:function (width, height, noUpdates) { + var canvas = Module['canvas']; + Browser.updateCanvasDimensions(canvas, width, height); + if (!noUpdates) Browser.updateResizeListeners(); + },windowedWidth:0,windowedHeight:0,setFullScreenCanvasSize:function () { + // check if SDL is available + if (typeof SDL != "undefined") { + var flags = HEAPU32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]; + flags = flags | 0x00800000; // set SDL_FULLSCREEN flag + HEAP32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]=flags + } + Browser.updateResizeListeners(); + },setWindowedCanvasSize:function () { + // check if SDL is available + if (typeof SDL != "undefined") { + var flags = HEAPU32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]; + flags = flags & ~0x00800000; // clear SDL_FULLSCREEN flag + HEAP32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]=flags + } + Browser.updateResizeListeners(); + },updateCanvasDimensions:function (canvas, wNative, hNative) { + if (wNative && hNative) { + canvas.widthNative = wNative; + canvas.heightNative = hNative; + } else { + wNative = canvas.widthNative; + hNative = canvas.heightNative; + } + var w = wNative; + var h = hNative; + if (Module['forcedAspectRatio'] && Module['forcedAspectRatio'] > 0) { + if (w/h < Module['forcedAspectRatio']) { + w = Math.round(h * Module['forcedAspectRatio']); + } else { + h = Math.round(w / Module['forcedAspectRatio']); + } + } + if (((document['webkitFullScreenElement'] || document['webkitFullscreenElement'] || + document['mozFullScreenElement'] || document['mozFullscreenElement'] || + document['fullScreenElement'] || document['fullscreenElement'] || + document['msFullScreenElement'] || document['msFullscreenElement'] || + document['webkitCurrentFullScreenElement']) === canvas.parentNode) && (typeof screen != 'undefined')) { + var factor = Math.min(screen.width / w, screen.height / h); + w = Math.round(w * factor); + h = Math.round(h * factor); + } + if (Browser.resizeCanvas) { + if (canvas.width != w) canvas.width = w; + if (canvas.height != h) canvas.height = h; + if (typeof canvas.style != 'undefined') { + canvas.style.removeProperty( "width"); + canvas.style.removeProperty("height"); + } + } else { + if (canvas.width != wNative) canvas.width = wNative; + if (canvas.height != hNative) canvas.height = hNative; + if (typeof canvas.style != 'undefined') { + if (w != wNative || h != hNative) { + canvas.style.setProperty( "width", w + "px", "important"); + canvas.style.setProperty("height", h + "px", "important"); + } else { + canvas.style.removeProperty( "width"); + canvas.style.removeProperty("height"); + } + } + } + },wgetRequests:{},nextWgetRequestHandle:0,getNextWgetRequestHandle:function () { + var handle = Browser.nextWgetRequestHandle; + Browser.nextWgetRequestHandle++; + return handle; + }}; + + function _time(ptr) { + var ret = (Date.now()/1000)|0; + if (ptr) { + HEAP32[((ptr)>>2)]=ret; + } + return ret; + } +___errno_state = Runtime.staticAlloc(4); HEAP32[((___errno_state)>>2)]=0; +Module["requestFullScreen"] = function Module_requestFullScreen(lockPointer, resizeCanvas) { Browser.requestFullScreen(lockPointer, resizeCanvas) }; + Module["requestAnimationFrame"] = function Module_requestAnimationFrame(func) { Browser.requestAnimationFrame(func) }; + Module["setCanvasSize"] = function Module_setCanvasSize(width, height, noUpdates) { Browser.setCanvasSize(width, height, noUpdates) }; + Module["pauseMainLoop"] = function Module_pauseMainLoop() { Browser.mainLoop.pause() }; + Module["resumeMainLoop"] = function Module_resumeMainLoop() { Browser.mainLoop.resume() }; + Module["getUserMedia"] = function Module_getUserMedia() { Browser.getUserMedia() } +FS.staticInit();__ATINIT__.unshift({ func: function() { if (!Module["noFSInit"] && !FS.init.initialized) FS.init() } });__ATMAIN__.push({ func: function() { FS.ignorePermissions = false } });__ATEXIT__.push({ func: function() { FS.quit() } });Module["FS_createFolder"] = FS.createFolder;Module["FS_createPath"] = FS.createPath;Module["FS_createDataFile"] = FS.createDataFile;Module["FS_createPreloadedFile"] = FS.createPreloadedFile;Module["FS_createLazyFile"] = FS.createLazyFile;Module["FS_createLink"] = FS.createLink;Module["FS_createDevice"] = FS.createDevice; +__ATINIT__.unshift({ func: function() { TTY.init() } });__ATEXIT__.push({ func: function() { TTY.shutdown() } });TTY.utf8 = new Runtime.UTF8Processor(); +if (ENVIRONMENT_IS_NODE) { var fs = require("fs"); NODEFS.staticInit(); } +STACK_BASE = STACKTOP = Runtime.alignMemory(STATICTOP); + +staticSealed = true; // seal the static portion of memory + +STACK_MAX = STACK_BASE + TOTAL_STACK; + +DYNAMIC_BASE = DYNAMICTOP = Runtime.alignMemory(STACK_MAX); + +assert(DYNAMIC_BASE < TOTAL_MEMORY, "TOTAL_MEMORY not big enough for stack"); + + var ctlz_i8 = allocate([8,7,6,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], "i8", ALLOC_DYNAMIC); + var cttz_i8 = allocate([8,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,7,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0], "i8", ALLOC_DYNAMIC); + + +Module.asmGlobalArg = { "Math": Math, "Int8Array": Int8Array, "Int16Array": Int16Array, "Int32Array": Int32Array, "Uint8Array": Uint8Array, "Uint16Array": Uint16Array, "Uint32Array": Uint32Array, "Float32Array": Float32Array, "Float64Array": Float64Array }; +Module.asmLibraryArg = { "abort": abort, "assert": assert, "min": Math_min, "_fflush": _fflush, "_sysconf": _sysconf, "_abort": _abort, "___setErrNo": ___setErrNo, "_sbrk": _sbrk, "_time": _time, "_emscripten_set_main_loop_timing": _emscripten_set_main_loop_timing, "_emscripten_memcpy_big": _emscripten_memcpy_big, "_emscripten_set_main_loop": _emscripten_set_main_loop, "___errno_location": ___errno_location, "STACKTOP": STACKTOP, "STACK_MAX": STACK_MAX, "tempDoublePtr": tempDoublePtr, "ABORT": ABORT, "cttz_i8": cttz_i8, "ctlz_i8": ctlz_i8, "NaN": NaN, "Infinity": Infinity }; +// EMSCRIPTEN_START_ASM +var asm = (function(global, env, buffer) { + 'use asm'; + + var HEAP8 = new global.Int8Array(buffer); + var HEAP16 = new global.Int16Array(buffer); + var HEAP32 = new global.Int32Array(buffer); + var HEAPU8 = new global.Uint8Array(buffer); + var HEAPU16 = new global.Uint16Array(buffer); + var HEAPU32 = new global.Uint32Array(buffer); + var HEAPF32 = new global.Float32Array(buffer); + var HEAPF64 = new global.Float64Array(buffer); + + + var STACKTOP=env.STACKTOP|0; + var STACK_MAX=env.STACK_MAX|0; + var tempDoublePtr=env.tempDoublePtr|0; + var ABORT=env.ABORT|0; + var cttz_i8=env.cttz_i8|0; + var ctlz_i8=env.ctlz_i8|0; + + var __THREW__ = 0; + var threwValue = 0; + var setjmpId = 0; + var undef = 0; + var nan = +env.NaN, inf = +env.Infinity; + var tempInt = 0, tempBigInt = 0, tempBigIntP = 0, tempBigIntS = 0, tempBigIntR = 0.0, tempBigIntI = 0, tempBigIntD = 0, tempValue = 0, tempDouble = 0.0; + + var tempRet0 = 0; + var tempRet1 = 0; + var tempRet2 = 0; + var tempRet3 = 0; + var tempRet4 = 0; + var tempRet5 = 0; + var tempRet6 = 0; + var tempRet7 = 0; + var tempRet8 = 0; + var tempRet9 = 0; + var Math_floor=global.Math.floor; + var Math_abs=global.Math.abs; + var Math_sqrt=global.Math.sqrt; + var Math_pow=global.Math.pow; + var Math_cos=global.Math.cos; + var Math_sin=global.Math.sin; + var Math_tan=global.Math.tan; + var Math_acos=global.Math.acos; + var Math_asin=global.Math.asin; + var Math_atan=global.Math.atan; + var Math_atan2=global.Math.atan2; + var Math_exp=global.Math.exp; + var Math_log=global.Math.log; + var Math_ceil=global.Math.ceil; + var Math_imul=global.Math.imul; + var abort=env.abort; + var assert=env.assert; + var Math_min=env.min; + var _fflush=env._fflush; + var _sysconf=env._sysconf; + var _abort=env._abort; + var ___setErrNo=env.___setErrNo; + var _sbrk=env._sbrk; + var _time=env._time; + var _emscripten_set_main_loop_timing=env._emscripten_set_main_loop_timing; + var _emscripten_memcpy_big=env._emscripten_memcpy_big; + var _emscripten_set_main_loop=env._emscripten_set_main_loop; + var ___errno_location=env.___errno_location; + var tempFloat = 0.0; + +// EMSCRIPTEN_START_FUNCS +function stackAlloc(size) { + size = size|0; + var ret = 0; + ret = STACKTOP; + STACKTOP = (STACKTOP + size)|0; +STACKTOP = (STACKTOP + 15)&-16; + + return ret|0; +} +function stackSave() { + return STACKTOP|0; +} +function stackRestore(top) { + top = top|0; + STACKTOP = top; +} + +function setThrew(threw, value) { + threw = threw|0; + value = value|0; + if ((__THREW__|0) == 0) { + __THREW__ = threw; + threwValue = value; + } +} +function copyTempFloat(ptr) { + ptr = ptr|0; + HEAP8[tempDoublePtr>>0] = HEAP8[ptr>>0]; + HEAP8[tempDoublePtr+1>>0] = HEAP8[ptr+1>>0]; + HEAP8[tempDoublePtr+2>>0] = HEAP8[ptr+2>>0]; + HEAP8[tempDoublePtr+3>>0] = HEAP8[ptr+3>>0]; +} +function copyTempDouble(ptr) { + ptr = ptr|0; + HEAP8[tempDoublePtr>>0] = HEAP8[ptr>>0]; + HEAP8[tempDoublePtr+1>>0] = HEAP8[ptr+1>>0]; + HEAP8[tempDoublePtr+2>>0] = HEAP8[ptr+2>>0]; + HEAP8[tempDoublePtr+3>>0] = HEAP8[ptr+3>>0]; + HEAP8[tempDoublePtr+4>>0] = HEAP8[ptr+4>>0]; + HEAP8[tempDoublePtr+5>>0] = HEAP8[ptr+5>>0]; + HEAP8[tempDoublePtr+6>>0] = HEAP8[ptr+6>>0]; + HEAP8[tempDoublePtr+7>>0] = HEAP8[ptr+7>>0]; +} +function setTempRet0(value) { + value = value|0; + tempRet0 = value; +} +function getTempRet0() { + return tempRet0|0; +} + +function _crypto_verify_32_ref($x,$y) { + $x = $x|0; + $y = $y|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0; + var $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; + var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; + var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; + var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$x>>0]|0; + $1 = HEAP8[$y>>0]|0; + $2 = $1 ^ $0; + $3 = (($x) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = (($y) + 1|0); + $6 = HEAP8[$5>>0]|0; + $7 = $6 ^ $4; + $8 = $7 | $2; + $9 = (($x) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = (($y) + 2|0); + $12 = HEAP8[$11>>0]|0; + $13 = $12 ^ $10; + $14 = $8 | $13; + $15 = (($x) + 3|0); + $16 = HEAP8[$15>>0]|0; + $17 = (($y) + 3|0); + $18 = HEAP8[$17>>0]|0; + $19 = $18 ^ $16; + $20 = $14 | $19; + $21 = (($x) + 4|0); + $22 = HEAP8[$21>>0]|0; + $23 = (($y) + 4|0); + $24 = HEAP8[$23>>0]|0; + $25 = $24 ^ $22; + $26 = $20 | $25; + $27 = (($x) + 5|0); + $28 = HEAP8[$27>>0]|0; + $29 = (($y) + 5|0); + $30 = HEAP8[$29>>0]|0; + $31 = $30 ^ $28; + $32 = $26 | $31; + $33 = (($x) + 6|0); + $34 = HEAP8[$33>>0]|0; + $35 = (($y) + 6|0); + $36 = HEAP8[$35>>0]|0; + $37 = $36 ^ $34; + $38 = $32 | $37; + $39 = (($x) + 7|0); + $40 = HEAP8[$39>>0]|0; + $41 = (($y) + 7|0); + $42 = HEAP8[$41>>0]|0; + $43 = $42 ^ $40; + $44 = $38 | $43; + $45 = (($x) + 8|0); + $46 = HEAP8[$45>>0]|0; + $47 = (($y) + 8|0); + $48 = HEAP8[$47>>0]|0; + $49 = $48 ^ $46; + $50 = $44 | $49; + $51 = (($x) + 9|0); + $52 = HEAP8[$51>>0]|0; + $53 = (($y) + 9|0); + $54 = HEAP8[$53>>0]|0; + $55 = $54 ^ $52; + $56 = $50 | $55; + $57 = (($x) + 10|0); + $58 = HEAP8[$57>>0]|0; + $59 = (($y) + 10|0); + $60 = HEAP8[$59>>0]|0; + $61 = $60 ^ $58; + $62 = $56 | $61; + $63 = (($x) + 11|0); + $64 = HEAP8[$63>>0]|0; + $65 = (($y) + 11|0); + $66 = HEAP8[$65>>0]|0; + $67 = $66 ^ $64; + $68 = $62 | $67; + $69 = (($x) + 12|0); + $70 = HEAP8[$69>>0]|0; + $71 = (($y) + 12|0); + $72 = HEAP8[$71>>0]|0; + $73 = $72 ^ $70; + $74 = $68 | $73; + $75 = (($x) + 13|0); + $76 = HEAP8[$75>>0]|0; + $77 = (($y) + 13|0); + $78 = HEAP8[$77>>0]|0; + $79 = $78 ^ $76; + $80 = $74 | $79; + $81 = (($x) + 14|0); + $82 = HEAP8[$81>>0]|0; + $83 = (($y) + 14|0); + $84 = HEAP8[$83>>0]|0; + $85 = $84 ^ $82; + $86 = $80 | $85; + $87 = (($x) + 15|0); + $88 = HEAP8[$87>>0]|0; + $89 = (($y) + 15|0); + $90 = HEAP8[$89>>0]|0; + $91 = $90 ^ $88; + $92 = $86 | $91; + $93 = (($x) + 16|0); + $94 = HEAP8[$93>>0]|0; + $95 = (($y) + 16|0); + $96 = HEAP8[$95>>0]|0; + $97 = $96 ^ $94; + $98 = $92 | $97; + $99 = (($x) + 17|0); + $100 = HEAP8[$99>>0]|0; + $101 = (($y) + 17|0); + $102 = HEAP8[$101>>0]|0; + $103 = $102 ^ $100; + $104 = $98 | $103; + $105 = (($x) + 18|0); + $106 = HEAP8[$105>>0]|0; + $107 = (($y) + 18|0); + $108 = HEAP8[$107>>0]|0; + $109 = $108 ^ $106; + $110 = $104 | $109; + $111 = (($x) + 19|0); + $112 = HEAP8[$111>>0]|0; + $113 = (($y) + 19|0); + $114 = HEAP8[$113>>0]|0; + $115 = $114 ^ $112; + $116 = $110 | $115; + $117 = (($x) + 20|0); + $118 = HEAP8[$117>>0]|0; + $119 = (($y) + 20|0); + $120 = HEAP8[$119>>0]|0; + $121 = $120 ^ $118; + $122 = $116 | $121; + $123 = (($x) + 21|0); + $124 = HEAP8[$123>>0]|0; + $125 = (($y) + 21|0); + $126 = HEAP8[$125>>0]|0; + $127 = $126 ^ $124; + $128 = $122 | $127; + $129 = (($x) + 22|0); + $130 = HEAP8[$129>>0]|0; + $131 = (($y) + 22|0); + $132 = HEAP8[$131>>0]|0; + $133 = $132 ^ $130; + $134 = $128 | $133; + $135 = (($x) + 23|0); + $136 = HEAP8[$135>>0]|0; + $137 = (($y) + 23|0); + $138 = HEAP8[$137>>0]|0; + $139 = $138 ^ $136; + $140 = $134 | $139; + $141 = (($x) + 24|0); + $142 = HEAP8[$141>>0]|0; + $143 = (($y) + 24|0); + $144 = HEAP8[$143>>0]|0; + $145 = $144 ^ $142; + $146 = $140 | $145; + $147 = (($x) + 25|0); + $148 = HEAP8[$147>>0]|0; + $149 = (($y) + 25|0); + $150 = HEAP8[$149>>0]|0; + $151 = $150 ^ $148; + $152 = $146 | $151; + $153 = (($x) + 26|0); + $154 = HEAP8[$153>>0]|0; + $155 = (($y) + 26|0); + $156 = HEAP8[$155>>0]|0; + $157 = $156 ^ $154; + $158 = $152 | $157; + $159 = (($x) + 27|0); + $160 = HEAP8[$159>>0]|0; + $161 = (($y) + 27|0); + $162 = HEAP8[$161>>0]|0; + $163 = $162 ^ $160; + $164 = $158 | $163; + $165 = (($x) + 28|0); + $166 = HEAP8[$165>>0]|0; + $167 = (($y) + 28|0); + $168 = HEAP8[$167>>0]|0; + $169 = $168 ^ $166; + $170 = $164 | $169; + $171 = (($x) + 29|0); + $172 = HEAP8[$171>>0]|0; + $173 = (($y) + 29|0); + $174 = HEAP8[$173>>0]|0; + $175 = $174 ^ $172; + $176 = $170 | $175; + $177 = (($x) + 30|0); + $178 = HEAP8[$177>>0]|0; + $179 = (($y) + 30|0); + $180 = HEAP8[$179>>0]|0; + $181 = $180 ^ $178; + $182 = $176 | $181; + $183 = (($x) + 31|0); + $184 = HEAP8[$183>>0]|0; + $185 = (($y) + 31|0); + $186 = HEAP8[$185>>0]|0; + $187 = $186 ^ $184; + $188 = $182 | $187; + $189 = $188&255; + $190 = (($189) + 511)|0; + $191 = $190 >>> 8; + $192 = $191 & 1; + $193 = (($192) + -1)|0; + STACKTOP = sp;return ($193|0); +} +function _curve25519_sign($signature_out,$curve25519_privkey,$msg,$msg_len) { + $signature_out = $signature_out|0; + $curve25519_privkey = $curve25519_privkey|0; + $msg = $msg|0; + $msg_len = $msg_len|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $ed_keypair = 0, $ed_pubkey_point = 0, $sigbuf_out_len = 0, dest = 0; + var label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 240|0; + $ed_pubkey_point = sp + 8|0; + $ed_keypair = sp + 168|0; + $sigbuf_out_len = sp; + $0 = (($msg_len) + 64)|0; + $1 = STACKTOP; STACKTOP = STACKTOP + ((((1*$0)|0)+15)&-16)|0;; + $2 = $sigbuf_out_len; + $3 = $2; + HEAP32[$3>>2] = 0; + $4 = (($2) + 4)|0; + $5 = $4; + HEAP32[$5>>2] = 0; + dest=$ed_keypair+0|0; src=$curve25519_privkey+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _crypto_sign_ed25519_ref10_ge_scalarmult_base($ed_pubkey_point,$curve25519_privkey); + $6 = (($ed_keypair) + 32|0); + _crypto_sign_ed25519_ref10_ge_p3_tobytes($6,$ed_pubkey_point); + $7 = (($ed_keypair) + 63|0); + $8 = HEAP8[$7>>0]|0; + $9 = $8&255; + $10 = $9 & 128; + (_crypto_sign_modified($1,$sigbuf_out_len,$msg,$msg_len,0,$ed_keypair)|0); + dest=$signature_out+0|0; src=$1+0|0; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $11 = (($signature_out) + 63|0); + $12 = HEAP8[$11>>0]|0; + $13 = $12&255; + $14 = $13 | $10; + $15 = $14&255; + HEAP8[$11>>0] = $15; + STACKTOP = sp;return; +} +function _curve25519_verify($signature,$curve25519_pubkey,$msg,$msg_len) { + $signature = $signature|0; + $curve25519_pubkey = $curve25519_pubkey|0; + $msg = $msg|0; + $msg_len = $msg_len|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $ed_pubkey = 0, $ed_y = 0; + var $inv_mont_x_plus_one = 0, $mont_x = 0, $mont_x_minus_one = 0, $mont_x_plus_one = 0, $one = 0, $some_retval = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 288|0; + $mont_x = sp + 208|0; + $mont_x_minus_one = sp + 168|0; + $mont_x_plus_one = sp + 128|0; + $inv_mont_x_plus_one = sp + 88|0; + $one = sp + 48|0; + $ed_y = sp + 8|0; + $ed_pubkey = sp + 248|0; + $some_retval = sp; + $0 = (($msg_len) + 64)|0; + $1 = STACKTOP; STACKTOP = STACKTOP + ((((1*$0)|0)+15)&-16)|0;; + $2 = STACKTOP; STACKTOP = STACKTOP + ((((1*$0)|0)+15)&-16)|0;; + _crypto_sign_ed25519_ref10_fe_frombytes($mont_x,$curve25519_pubkey); + _crypto_sign_ed25519_ref10_fe_1($one); + _crypto_sign_ed25519_ref10_fe_sub($mont_x_minus_one,$mont_x,$one); + _crypto_sign_ed25519_ref10_fe_add($mont_x_plus_one,$mont_x,$one); + _crypto_sign_ed25519_ref10_fe_invert($inv_mont_x_plus_one,$mont_x_plus_one); + _crypto_sign_ed25519_ref10_fe_mul($ed_y,$mont_x_minus_one,$inv_mont_x_plus_one); + _crypto_sign_ed25519_ref10_fe_tobytes($ed_pubkey,$ed_y); + $3 = (($signature) + 63|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = $5 & 128; + $7 = (($ed_pubkey) + 31|0); + $8 = HEAP8[$7>>0]|0; + $9 = $8&255; + $10 = $9 | $6; + $11 = $10&255; + HEAP8[$7>>0] = $11; + $12 = HEAP8[$3>>0]|0; + $13 = $12&255; + $14 = $13 & 127; + $15 = $14&255; + HEAP8[$3>>0] = $15; + dest=$1+0|0; src=$signature+0|0; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $16 = (($1) + 64|0); + _memcpy(($16|0),($msg|0),($msg_len|0))|0; + $17 = (_crypto_sign_edwards25519sha512batch_ref10_open($2,$some_retval,$1,$0,0,$ed_pubkey)|0); + STACKTOP = sp;return ($17|0); +} +function _crypto_hash_sha512_ref($output,$input,$0,$1) { + $output = $output|0; + $input = $input|0; + $0 = $0|0; + $1 = $1|0; + var $ctx = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 208|0; + $ctx = sp; + _sph_sha512_init($ctx); + _sph_sha384($ctx,$input,$0); + _sph_sha512_close($ctx,$output); + STACKTOP = sp;return 0; +} +function _crypto_sign_modified($sm,$smlen,$m,$0,$1,$sk) { + $sm = $sm|0; + $smlen = $smlen|0; + $m = $m|0; + $0 = $0|0; + $1 = $1|0; + $sk = $sk|0; + var $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $R = 0, $hram = 0, $nonce = 0, $pk1 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 320|0; + $pk1 = sp + 288|0; + $nonce = sp + 224|0; + $hram = sp + 160|0; + $R = sp; + $2 = (($sk) + 32|0); + dest=$pk1+0|0; src=$2+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $3 = (_i64Add(($0|0),($1|0),64,0)|0); + $4 = tempRet0; + $5 = $smlen; + $6 = $5; + HEAP32[$6>>2] = $3; + $7 = (($5) + 4)|0; + $8 = $7; + HEAP32[$8>>2] = $4; + $9 = (($sm) + 64|0); + _memmove(($9|0),($m|0),($0|0))|0; + $10 = (($sm) + 32|0); + _memmove(($10|0),($sk|0),32)|0; + $11 = (_i64Add(($0|0),($1|0),32,0)|0); + $12 = tempRet0; + (_crypto_hash_sha512_ref($nonce,$10,$11,$12)|0); + dest=$10+0|0; src=$pk1+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _crypto_sign_ed25519_ref10_sc_reduce($nonce); + _crypto_sign_ed25519_ref10_ge_scalarmult_base($R,$nonce); + _crypto_sign_ed25519_ref10_ge_p3_tobytes($sm,$R); + (_crypto_hash_sha512_ref($hram,$sm,$3,$4)|0); + _crypto_sign_ed25519_ref10_sc_reduce($hram); + _crypto_sign_ed25519_ref10_sc_muladd($10,$hram,$sk,$nonce); + STACKTOP = sp;return 0; +} +function _curve25519_donna($mypublic,$secret,$basepoint) { + $mypublic = $mypublic|0; + $secret = $secret|0; + $basepoint = $basepoint|0; + var $bp = 0, $e = 0, $x = 0, $z = 0, $zmone = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 368|0; + $bp = sp + 248|0; + $x = sp + 168|0; + $z = sp + 80|0; + $zmone = sp; + $e = sp + 328|0; + dest=$e+0|0; src=$secret+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _fexpand($bp,$basepoint); + _cmult($x,$z,$e,$bp); + _crecip($zmone,$z); + _fmul($z,$x,$zmone); + _fcontract($mypublic,$z); + STACKTOP = sp;return 0; +} +function _fexpand($output,$input) { + $output = $output|0; + $input = $input|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $3 = 0, $30 = 0, $31 = 0; + var $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; + var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; + var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; + var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$input>>0]|0; + $1 = $0&255; + $2 = (($input) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($input) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + $15 = (($input) + 3|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16&255; + $18 = (_bitshift64Shl(($17|0),0,24)|0); + $19 = tempRet0; + $20 = $18 & 50331648; + $21 = $13 | $20; + $22 = $output; + $23 = $22; + HEAP32[$23>>2] = $21; + $24 = (($22) + 4)|0; + $25 = $24; + HEAP32[$25>>2] = $14; + $26 = HEAP8[$15>>0]|0; + $27 = $26&255; + $28 = (($input) + 4|0); + $29 = HEAP8[$28>>0]|0; + $30 = $29&255; + $31 = (_bitshift64Shl(($30|0),0,8)|0); + $32 = tempRet0; + $33 = $31 | $27; + $34 = (($input) + 5|0); + $35 = HEAP8[$34>>0]|0; + $36 = $35&255; + $37 = (_bitshift64Shl(($36|0),0,16)|0); + $38 = tempRet0; + $39 = $33 | $37; + $40 = $32 | $38; + $41 = (($input) + 6|0); + $42 = HEAP8[$41>>0]|0; + $43 = $42&255; + $44 = (_bitshift64Shl(($43|0),0,24)|0); + $45 = tempRet0; + $46 = $39 | $44; + $47 = $40 | $45; + $48 = (_bitshift64Lshr(($46|0),($47|0),2)|0); + $49 = tempRet0; + $50 = $48 & 33554431; + $51 = (($output) + 8|0); + $52 = $51; + $53 = $52; + HEAP32[$53>>2] = $50; + $54 = (($52) + 4)|0; + $55 = $54; + HEAP32[$55>>2] = 0; + $56 = HEAP8[$41>>0]|0; + $57 = $56&255; + $58 = (($input) + 7|0); + $59 = HEAP8[$58>>0]|0; + $60 = $59&255; + $61 = (_bitshift64Shl(($60|0),0,8)|0); + $62 = tempRet0; + $63 = $61 | $57; + $64 = (($input) + 8|0); + $65 = HEAP8[$64>>0]|0; + $66 = $65&255; + $67 = (_bitshift64Shl(($66|0),0,16)|0); + $68 = tempRet0; + $69 = $63 | $67; + $70 = $62 | $68; + $71 = (($input) + 9|0); + $72 = HEAP8[$71>>0]|0; + $73 = $72&255; + $74 = (_bitshift64Shl(($73|0),0,24)|0); + $75 = tempRet0; + $76 = $69 | $74; + $77 = $70 | $75; + $78 = (_bitshift64Lshr(($76|0),($77|0),3)|0); + $79 = tempRet0; + $80 = $78 & 67108863; + $81 = (($output) + 16|0); + $82 = $81; + $83 = $82; + HEAP32[$83>>2] = $80; + $84 = (($82) + 4)|0; + $85 = $84; + HEAP32[$85>>2] = 0; + $86 = HEAP8[$71>>0]|0; + $87 = $86&255; + $88 = (($input) + 10|0); + $89 = HEAP8[$88>>0]|0; + $90 = $89&255; + $91 = (_bitshift64Shl(($90|0),0,8)|0); + $92 = tempRet0; + $93 = $91 | $87; + $94 = (($input) + 11|0); + $95 = HEAP8[$94>>0]|0; + $96 = $95&255; + $97 = (_bitshift64Shl(($96|0),0,16)|0); + $98 = tempRet0; + $99 = $93 | $97; + $100 = $92 | $98; + $101 = (($input) + 12|0); + $102 = HEAP8[$101>>0]|0; + $103 = $102&255; + $104 = (_bitshift64Shl(($103|0),0,24)|0); + $105 = tempRet0; + $106 = $99 | $104; + $107 = $100 | $105; + $108 = (_bitshift64Lshr(($106|0),($107|0),5)|0); + $109 = tempRet0; + $110 = $108 & 33554431; + $111 = (($output) + 24|0); + $112 = $111; + $113 = $112; + HEAP32[$113>>2] = $110; + $114 = (($112) + 4)|0; + $115 = $114; + HEAP32[$115>>2] = 0; + $116 = HEAP8[$101>>0]|0; + $117 = $116&255; + $118 = (($input) + 13|0); + $119 = HEAP8[$118>>0]|0; + $120 = $119&255; + $121 = (_bitshift64Shl(($120|0),0,8)|0); + $122 = tempRet0; + $123 = $121 | $117; + $124 = (($input) + 14|0); + $125 = HEAP8[$124>>0]|0; + $126 = $125&255; + $127 = (_bitshift64Shl(($126|0),0,16)|0); + $128 = tempRet0; + $129 = $123 | $127; + $130 = $122 | $128; + $131 = (($input) + 15|0); + $132 = HEAP8[$131>>0]|0; + $133 = $132&255; + $134 = (_bitshift64Shl(($133|0),0,24)|0); + $135 = tempRet0; + $136 = $129 | $134; + $137 = $130 | $135; + $138 = (_bitshift64Lshr(($136|0),($137|0),6)|0); + $139 = tempRet0; + $140 = $138 & 67108863; + $141 = (($output) + 32|0); + $142 = $141; + $143 = $142; + HEAP32[$143>>2] = $140; + $144 = (($142) + 4)|0; + $145 = $144; + HEAP32[$145>>2] = 0; + $146 = (($input) + 16|0); + $147 = HEAP8[$146>>0]|0; + $148 = $147&255; + $149 = (($input) + 17|0); + $150 = HEAP8[$149>>0]|0; + $151 = $150&255; + $152 = (_bitshift64Shl(($151|0),0,8)|0); + $153 = tempRet0; + $154 = $152 | $148; + $155 = (($input) + 18|0); + $156 = HEAP8[$155>>0]|0; + $157 = $156&255; + $158 = (_bitshift64Shl(($157|0),0,16)|0); + $159 = tempRet0; + $160 = $154 | $158; + $161 = $153 | $159; + $162 = (($input) + 19|0); + $163 = HEAP8[$162>>0]|0; + $164 = $163&255; + $165 = (_bitshift64Shl(($164|0),0,24)|0); + $166 = tempRet0; + $167 = $165 & 16777216; + $168 = $160 | $167; + $169 = (($output) + 40|0); + $170 = $169; + $171 = $170; + HEAP32[$171>>2] = $168; + $172 = (($170) + 4)|0; + $173 = $172; + HEAP32[$173>>2] = $161; + $174 = HEAP8[$162>>0]|0; + $175 = $174&255; + $176 = (($input) + 20|0); + $177 = HEAP8[$176>>0]|0; + $178 = $177&255; + $179 = (_bitshift64Shl(($178|0),0,8)|0); + $180 = tempRet0; + $181 = $179 | $175; + $182 = (($input) + 21|0); + $183 = HEAP8[$182>>0]|0; + $184 = $183&255; + $185 = (_bitshift64Shl(($184|0),0,16)|0); + $186 = tempRet0; + $187 = $181 | $185; + $188 = $180 | $186; + $189 = (($input) + 22|0); + $190 = HEAP8[$189>>0]|0; + $191 = $190&255; + $192 = (_bitshift64Shl(($191|0),0,24)|0); + $193 = tempRet0; + $194 = $187 | $192; + $195 = $188 | $193; + $196 = (_bitshift64Lshr(($194|0),($195|0),1)|0); + $197 = tempRet0; + $198 = $196 & 67108863; + $199 = (($output) + 48|0); + $200 = $199; + $201 = $200; + HEAP32[$201>>2] = $198; + $202 = (($200) + 4)|0; + $203 = $202; + HEAP32[$203>>2] = 0; + $204 = HEAP8[$189>>0]|0; + $205 = $204&255; + $206 = (($input) + 23|0); + $207 = HEAP8[$206>>0]|0; + $208 = $207&255; + $209 = (_bitshift64Shl(($208|0),0,8)|0); + $210 = tempRet0; + $211 = $209 | $205; + $212 = (($input) + 24|0); + $213 = HEAP8[$212>>0]|0; + $214 = $213&255; + $215 = (_bitshift64Shl(($214|0),0,16)|0); + $216 = tempRet0; + $217 = $211 | $215; + $218 = $210 | $216; + $219 = (($input) + 25|0); + $220 = HEAP8[$219>>0]|0; + $221 = $220&255; + $222 = (_bitshift64Shl(($221|0),0,24)|0); + $223 = tempRet0; + $224 = $217 | $222; + $225 = $218 | $223; + $226 = (_bitshift64Lshr(($224|0),($225|0),3)|0); + $227 = tempRet0; + $228 = $226 & 33554431; + $229 = (($output) + 56|0); + $230 = $229; + $231 = $230; + HEAP32[$231>>2] = $228; + $232 = (($230) + 4)|0; + $233 = $232; + HEAP32[$233>>2] = 0; + $234 = HEAP8[$219>>0]|0; + $235 = $234&255; + $236 = (($input) + 26|0); + $237 = HEAP8[$236>>0]|0; + $238 = $237&255; + $239 = (_bitshift64Shl(($238|0),0,8)|0); + $240 = tempRet0; + $241 = $239 | $235; + $242 = (($input) + 27|0); + $243 = HEAP8[$242>>0]|0; + $244 = $243&255; + $245 = (_bitshift64Shl(($244|0),0,16)|0); + $246 = tempRet0; + $247 = $241 | $245; + $248 = $240 | $246; + $249 = (($input) + 28|0); + $250 = HEAP8[$249>>0]|0; + $251 = $250&255; + $252 = (_bitshift64Shl(($251|0),0,24)|0); + $253 = tempRet0; + $254 = $247 | $252; + $255 = $248 | $253; + $256 = (_bitshift64Lshr(($254|0),($255|0),4)|0); + $257 = tempRet0; + $258 = $256 & 67108863; + $259 = (($output) + 64|0); + $260 = $259; + $261 = $260; + HEAP32[$261>>2] = $258; + $262 = (($260) + 4)|0; + $263 = $262; + HEAP32[$263>>2] = 0; + $264 = HEAP8[$249>>0]|0; + $265 = $264&255; + $266 = (($input) + 29|0); + $267 = HEAP8[$266>>0]|0; + $268 = $267&255; + $269 = (_bitshift64Shl(($268|0),0,8)|0); + $270 = tempRet0; + $271 = $269 | $265; + $272 = (($input) + 30|0); + $273 = HEAP8[$272>>0]|0; + $274 = $273&255; + $275 = (_bitshift64Shl(($274|0),0,16)|0); + $276 = tempRet0; + $277 = $271 | $275; + $278 = $270 | $276; + $279 = (($input) + 31|0); + $280 = HEAP8[$279>>0]|0; + $281 = $280&255; + $282 = (_bitshift64Shl(($281|0),0,24)|0); + $283 = tempRet0; + $284 = $277 | $282; + $285 = $278 | $283; + $286 = (_bitshift64Lshr(($284|0),($285|0),6)|0); + $287 = tempRet0; + $288 = $286 & 33554431; + $289 = (($output) + 72|0); + $290 = $289; + $291 = $290; + HEAP32[$291>>2] = $288; + $292 = (($290) + 4)|0; + $293 = $292; + HEAP32[$293>>2] = 0; + STACKTOP = sp;return; +} +function _cmult($resultx,$resultz,$n,$q) { + $resultx = $resultx|0; + $resultz = $resultz|0; + $n = $n|0; + $q = $q|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $3 = 0, $4 = 0; + var $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $a = 0, $b = 0, $byte$09 = 0, $c = 0, $d = 0, $e = 0, $exitcond = 0, $exitcond20 = 0, $f = 0, $g = 0, $h = 0, $i$018 = 0, $j$08 = 0, $nqpqx$019 = 0, $nqpqx$110 = 0; + var $nqpqx$110$phi = 0, $nqpqx2$014 = 0, $nqpqx2$14 = 0, $nqpqx2$14$phi = 0, $nqpqz$013 = 0, $nqpqz$13 = 0, $nqpqz$13$phi = 0, $nqpqz2$015 = 0, $nqpqz2$15 = 0, $nqpqz2$15$phi = 0, $nqx$011 = 0, $nqx$11 = 0, $nqx$11$phi = 0, $nqx2$016 = 0, $nqx2$16 = 0, $nqx2$16$phi = 0, $nqz$012 = 0, $nqz$12 = 0, $nqz$12$phi = 0, $nqz2$017 = 0; + var $nqz2$17 = 0, $nqz2$17$phi = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 1216|0; + $a = sp + 1064|0; + $b = sp + 912|0; + $c = sp + 760|0; + $d = sp + 608|0; + $e = sp + 456|0; + $f = sp + 304|0; + $g = sp + 152|0; + $h = sp; + _memset(($a|0),0,152)|0; + _memset(($b|0),0,152)|0; + $0 = $b; + $1 = $0; + HEAP32[$1>>2] = 1; + $2 = (($0) + 4)|0; + $3 = $2; + HEAP32[$3>>2] = 0; + _memset(($c|0),0,152)|0; + $4 = $c; + $5 = $4; + HEAP32[$5>>2] = 1; + $6 = (($4) + 4)|0; + $7 = $6; + HEAP32[$7>>2] = 0; + _memset(($d|0),0,152)|0; + _memset(($e|0),0,152)|0; + _memset(($f|0),0,152)|0; + $8 = $f; + $9 = $8; + HEAP32[$9>>2] = 1; + $10 = (($8) + 4)|0; + $11 = $10; + HEAP32[$11>>2] = 0; + _memset(($g|0),0,152)|0; + _memset(($h|0),0,152)|0; + $12 = $h; + $13 = $12; + HEAP32[$13>>2] = 1; + $14 = (($12) + 4)|0; + $15 = $14; + HEAP32[$15>>2] = 0; + dest=$a+0|0; src=$q+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + $i$018 = 0;$nqpqx$019 = $a;$nqpqx2$014 = $e;$nqpqz$013 = $b;$nqpqz2$015 = $f;$nqx$011 = $c;$nqx2$016 = $g;$nqz$012 = $d;$nqz2$017 = $h; + while(1) { + $16 = (31 - ($i$018))|0; + $17 = (($n) + ($16)|0); + $18 = HEAP8[$17>>0]|0; + $byte$09 = $18;$j$08 = 0;$nqpqx$110 = $nqpqx$019;$nqpqx2$14 = $nqpqx2$014;$nqpqz$13 = $nqpqz$013;$nqpqz2$15 = $nqpqz2$015;$nqx$11 = $nqx$011;$nqx2$16 = $nqx2$016;$nqz$12 = $nqz$012;$nqz2$17 = $nqz2$017; + while(1) { + $19 = $byte$09&255; + $20 = $19 >>> 7; + _swap_conditional($nqx$11,$nqpqx$110,$20,0); + _swap_conditional($nqz$12,$nqpqz$13,$20,0); + _fmonty($nqx2$16,$nqz2$17,$nqpqx2$14,$nqpqz2$15,$nqx$11,$nqz$12,$nqpqx$110,$nqpqz$13,$q); + _swap_conditional($nqx2$16,$nqpqx2$14,$20,0); + _swap_conditional($nqz2$17,$nqpqz2$15,$20,0); + $21 = $19 << 1; + $22 = $21&255; + $23 = (($j$08) + 1)|0; + $exitcond = ($23|0)==(8); + if ($exitcond) { + break; + } else { + $nqz2$17$phi = $nqz$12;$nqz$12$phi = $nqz2$17;$nqx2$16$phi = $nqx$11;$nqx$11$phi = $nqx2$16;$nqpqz2$15$phi = $nqpqz$13;$nqpqz$13$phi = $nqpqz2$15;$nqpqx2$14$phi = $nqpqx$110;$nqpqx$110$phi = $nqpqx2$14;$byte$09 = $22;$j$08 = $23;$nqz2$17 = $nqz2$17$phi;$nqz$12 = $nqz$12$phi;$nqx2$16 = $nqx2$16$phi;$nqx$11 = $nqx$11$phi;$nqpqz2$15 = $nqpqz2$15$phi;$nqpqz$13 = $nqpqz$13$phi;$nqpqx2$14 = $nqpqx2$14$phi;$nqpqx$110 = $nqpqx$110$phi; + } + } + $24 = (($i$018) + 1)|0; + $exitcond20 = ($24|0)==(32); + if ($exitcond20) { + break; + } else { + $i$018 = $24;$nqpqx$019 = $nqpqx2$14;$nqpqx2$014 = $nqpqx$110;$nqpqz$013 = $nqpqz2$15;$nqpqz2$015 = $nqpqz$13;$nqx$011 = $nqx2$16;$nqx2$016 = $nqx$11;$nqz$012 = $nqz2$17;$nqz2$017 = $nqz$12; + } + } + dest=$resultx+0|0; src=$nqx2$16+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + dest=$resultz+0|0; src=$nqz2$17+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _crecip($out,$z) { + $out = $out|0; + $z = $z|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $i$33 = 0, $i$42 = 0, $i$51 = 0, $t0 = 0, $t1 = 0, $z11 = 0, $z2 = 0, $z2_100_0 = 0, $z2_10_0 = 0, $z2_20_0 = 0, $z2_50_0 = 0, $z2_5_0 = 0, $z9 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 800|0; + $z2 = sp + 720|0; + $z9 = sp + 640|0; + $z11 = sp + 560|0; + $z2_5_0 = sp + 480|0; + $z2_10_0 = sp + 400|0; + $z2_20_0 = sp + 320|0; + $z2_50_0 = sp + 240|0; + $z2_100_0 = sp + 160|0; + $t0 = sp + 80|0; + $t1 = sp; + _fsquare($z2,$z); + _fsquare($t1,$z2); + _fsquare($t0,$t1); + _fmul($z9,$t0,$z); + _fmul($z11,$z9,$z2); + _fsquare($t0,$z11); + _fmul($z2_5_0,$t0,$z9); + _fsquare($t0,$z2_5_0); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fmul($z2_10_0,$t0,$z2_5_0); + _fsquare($t0,$z2_10_0); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fmul($z2_20_0,$t1,$z2_10_0); + _fsquare($t0,$z2_20_0); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fmul($t0,$t1,$z2_20_0); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fmul($z2_50_0,$t0,$z2_10_0); + _fsquare($t0,$z2_50_0); + _fsquare($t1,$t0); + $i$33 = 2; + while(1) { + _fsquare($t0,$t1); + _fsquare($t1,$t0); + $0 = (($i$33) + 2)|0; + $1 = ($0|0)<(50); + if ($1) { + $i$33 = $0; + } else { + break; + } + } + _fmul($z2_100_0,$t1,$z2_50_0); + _fsquare($t1,$z2_100_0); + _fsquare($t0,$t1); + $i$42 = 2; + while(1) { + _fsquare($t1,$t0); + _fsquare($t0,$t1); + $2 = (($i$42) + 2)|0; + $3 = ($2|0)<(100); + if ($3) { + $i$42 = $2; + } else { + break; + } + } + _fmul($t1,$t0,$z2_100_0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + $i$51 = 2; + while(1) { + _fsquare($t0,$t1); + _fsquare($t1,$t0); + $4 = (($i$51) + 2)|0; + $5 = ($4|0)<(50); + if ($5) { + $i$51 = $4; + } else { + break; + } + } + _fmul($t0,$t1,$z2_50_0); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fmul($out,$t1,$z11); + STACKTOP = sp;return; +} +function _fmul($output,$in,$in2) { + $output = $output|0; + $in = $in|0; + $in2 = $in2|0; + var $t = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 160|0; + $t = sp; + _fproduct($t,$in,$in2); + _freduce_degree($t); + _freduce_coefficients($t); + dest=$output+0|0; src=$t+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _fcontract($output,$input_limbs) { + $output = $output|0; + $input_limbs = $input_limbs|0; + var $$pn = 0, $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0; + var $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0; + var $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0; + var $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0; + var $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0; + var $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0; + var $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0; + var $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0; + var $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0; + var $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0; + var $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0; + var $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0; + var $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0; + var $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0; + var $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0; + var $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0; + var $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0; + var $403 = 0, $404 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0; + var $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0; + var $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0; + var $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $exitcond = 0, $exitcond11 = 0, $exitcond11$1 = 0, $exitcond14 = 0, $exitcond14$1 = 0, $i$17 = 0, $i$17$1 = 0, $i$24 = 0, $i$24$1 = 0, $i$33 = 0, $input = 0, $mask$02 = 0, $mask$1 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $input = sp; + $0 = $input_limbs; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + HEAP32[$input>>2] = $2; + $6 = (($input_limbs) + 8|0); + $7 = $6; + $8 = $7; + $9 = HEAP32[$8>>2]|0; + $10 = (($7) + 4)|0; + $11 = $10; + $12 = HEAP32[$11>>2]|0; + $13 = (($input) + 4|0); + HEAP32[$13>>2] = $9; + $14 = (($input_limbs) + 16|0); + $15 = $14; + $16 = $15; + $17 = HEAP32[$16>>2]|0; + $18 = (($15) + 4)|0; + $19 = $18; + $20 = HEAP32[$19>>2]|0; + $21 = (($input) + 8|0); + HEAP32[$21>>2] = $17; + $22 = (($input_limbs) + 24|0); + $23 = $22; + $24 = $23; + $25 = HEAP32[$24>>2]|0; + $26 = (($23) + 4)|0; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (($input) + 12|0); + HEAP32[$29>>2] = $25; + $30 = (($input_limbs) + 32|0); + $31 = $30; + $32 = $31; + $33 = HEAP32[$32>>2]|0; + $34 = (($31) + 4)|0; + $35 = $34; + $36 = HEAP32[$35>>2]|0; + $37 = (($input) + 16|0); + HEAP32[$37>>2] = $33; + $38 = (($input_limbs) + 40|0); + $39 = $38; + $40 = $39; + $41 = HEAP32[$40>>2]|0; + $42 = (($39) + 4)|0; + $43 = $42; + $44 = HEAP32[$43>>2]|0; + $45 = (($input) + 20|0); + HEAP32[$45>>2] = $41; + $46 = (($input_limbs) + 48|0); + $47 = $46; + $48 = $47; + $49 = HEAP32[$48>>2]|0; + $50 = (($47) + 4)|0; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($input) + 24|0); + HEAP32[$53>>2] = $49; + $54 = (($input_limbs) + 56|0); + $55 = $54; + $56 = $55; + $57 = HEAP32[$56>>2]|0; + $58 = (($55) + 4)|0; + $59 = $58; + $60 = HEAP32[$59>>2]|0; + $61 = (($input) + 28|0); + HEAP32[$61>>2] = $57; + $62 = (($input_limbs) + 64|0); + $63 = $62; + $64 = $63; + $65 = HEAP32[$64>>2]|0; + $66 = (($63) + 4)|0; + $67 = $66; + $68 = HEAP32[$67>>2]|0; + $69 = (($input) + 32|0); + HEAP32[$69>>2] = $65; + $70 = (($input_limbs) + 72|0); + $71 = $70; + $72 = $71; + $73 = HEAP32[$72>>2]|0; + $74 = (($71) + 4)|0; + $75 = $74; + $76 = HEAP32[$75>>2]|0; + $77 = (($input) + 36|0); + HEAP32[$77>>2] = $73; + $78 = (($input) + 36|0); + $i$17 = 0; + while(1) { + $79 = $i$17 & 1; + $80 = ($79|0)==(0); + $81 = (($input) + ($i$17<<2)|0); + $82 = HEAP32[$81>>2]|0; + $83 = $82 >> 31; + $84 = $83 & $82; + if ($80) { + $92 = $84 >> 26; + $93 = Math_imul($92, -67108864)|0; + $94 = (($93) + ($82))|0; + HEAP32[$81>>2] = $94; + $95 = (($i$17) + 1)|0; + $96 = (($input) + ($95<<2)|0); + $97 = HEAP32[$96>>2]|0; + $98 = (($97) + ($92))|0; + HEAP32[$96>>2] = $98; + } else { + $85 = $84 >> 25; + $86 = Math_imul($85, -33554432)|0; + $87 = (($86) + ($82))|0; + HEAP32[$81>>2] = $87; + $88 = (($i$17) + 1)|0; + $89 = (($input) + ($88<<2)|0); + $90 = HEAP32[$89>>2]|0; + $91 = (($90) + ($85))|0; + HEAP32[$89>>2] = $91; + } + $99 = (($i$17) + 1)|0; + $exitcond14 = ($99|0)==(9); + if ($exitcond14) { + break; + } else { + $i$17 = $99; + } + } + $100 = HEAP32[$78>>2]|0; + $101 = $100 >> 31; + $102 = $101 & $100; + $103 = $102 >> 25; + $104 = Math_imul($103, -33554432)|0; + $105 = (($104) + ($100))|0; + HEAP32[$78>>2] = $105; + $106 = HEAP32[$input>>2]|0; + $107 = ($103*19)|0; + $108 = (($107) + ($106))|0; + HEAP32[$input>>2] = $108; + $i$17$1 = 0; + while(1) { + $384 = $i$17$1 & 1; + $385 = ($384|0)==(0); + $386 = (($input) + ($i$17$1<<2)|0); + $387 = HEAP32[$386>>2]|0; + $388 = $387 >> 31; + $389 = $388 & $387; + if ($385) { + $397 = $389 >> 26; + $398 = Math_imul($397, -67108864)|0; + $399 = (($398) + ($387))|0; + HEAP32[$386>>2] = $399; + $400 = (($i$17$1) + 1)|0; + $401 = (($input) + ($400<<2)|0); + $402 = HEAP32[$401>>2]|0; + $403 = (($402) + ($397))|0; + HEAP32[$401>>2] = $403; + } else { + $390 = $389 >> 25; + $391 = Math_imul($390, -33554432)|0; + $392 = (($391) + ($387))|0; + HEAP32[$386>>2] = $392; + $393 = (($i$17$1) + 1)|0; + $394 = (($input) + ($393<<2)|0); + $395 = HEAP32[$394>>2]|0; + $396 = (($395) + ($390))|0; + HEAP32[$394>>2] = $396; + } + $404 = (($i$17$1) + 1)|0; + $exitcond14$1 = ($404|0)==(9); + if ($exitcond14$1) { + break; + } else { + $i$17$1 = $404; + } + } + $109 = HEAP32[$78>>2]|0; + $110 = $109 >> 31; + $111 = $110 & $109; + $112 = $111 >> 25; + $113 = Math_imul($112, -33554432)|0; + $114 = (($113) + ($109))|0; + HEAP32[$78>>2] = $114; + $115 = HEAP32[$input>>2]|0; + $116 = ($112*19)|0; + $117 = (($116) + ($115))|0; + $118 = $117 >> 31; + $119 = $118 & $117; + $120 = $119 >> 26; + $121 = Math_imul($120, -67108864)|0; + $122 = (($121) + ($117))|0; + HEAP32[$input>>2] = $122; + $123 = (($input) + 4|0); + $124 = HEAP32[$123>>2]|0; + $125 = (($120) + ($124))|0; + HEAP32[$123>>2] = $125; + $126 = (($input) + 36|0); + $i$24 = 0; + while(1) { + $127 = $i$24 & 1; + $128 = ($127|0)==(0); + $129 = (($input) + ($i$24<<2)|0); + $130 = HEAP32[$129>>2]|0; + if ($128) { + $137 = $130 >> 26; + $138 = $130 & 67108863; + HEAP32[$129>>2] = $138; + $139 = (($i$24) + 1)|0; + $140 = (($input) + ($139<<2)|0); + $141 = HEAP32[$140>>2]|0; + $142 = (($141) + ($137))|0; + HEAP32[$140>>2] = $142; + } else { + $131 = $130 >> 25; + $132 = $130 & 33554431; + HEAP32[$129>>2] = $132; + $133 = (($i$24) + 1)|0; + $134 = (($input) + ($133<<2)|0); + $135 = HEAP32[$134>>2]|0; + $136 = (($135) + ($131))|0; + HEAP32[$134>>2] = $136; + } + $143 = (($i$24) + 1)|0; + $exitcond11 = ($143|0)==(9); + if ($exitcond11) { + break; + } else { + $i$24 = $143; + } + } + $144 = HEAP32[$126>>2]|0; + $145 = $144 >> 25; + $146 = $144 & 33554431; + HEAP32[$126>>2] = $146; + $147 = ($145*19)|0; + $148 = HEAP32[$input>>2]|0; + $149 = (($147) + ($148))|0; + HEAP32[$input>>2] = $149; + $i$24$1 = 0; + while(1) { + $360 = $i$24$1 & 1; + $361 = ($360|0)==(0); + $362 = (($input) + ($i$24$1<<2)|0); + $363 = HEAP32[$362>>2]|0; + if ($361) { + $370 = $363 >> 26; + $371 = $363 & 67108863; + HEAP32[$362>>2] = $371; + $372 = (($i$24$1) + 1)|0; + $373 = (($input) + ($372<<2)|0); + $374 = HEAP32[$373>>2]|0; + $375 = (($374) + ($370))|0; + HEAP32[$373>>2] = $375; + } else { + $364 = $363 >> 25; + $365 = $363 & 33554431; + HEAP32[$362>>2] = $365; + $366 = (($i$24$1) + 1)|0; + $367 = (($input) + ($366<<2)|0); + $368 = HEAP32[$367>>2]|0; + $369 = (($368) + ($364))|0; + HEAP32[$367>>2] = $369; + } + $376 = (($i$24$1) + 1)|0; + $exitcond11$1 = ($376|0)==(9); + if ($exitcond11$1) { + break; + } else { + $i$24$1 = $376; + } + } + $377 = HEAP32[$126>>2]|0; + $378 = $377 >> 25; + $379 = $377 & 33554431; + HEAP32[$126>>2] = $379; + $380 = ($378*19)|0; + $381 = HEAP32[$input>>2]|0; + $382 = (($380) + ($381))|0; + HEAP32[$input>>2] = $382; + $383 = (_s32_gte($382)|0); + $i$33 = 1;$mask$02 = $383; + while(1) { + $150 = $i$33 & 1; + $151 = ($150|0)==(0); + $152 = (($input) + ($i$33<<2)|0); + $153 = HEAP32[$152>>2]|0; + if ($151) { + $155 = (_s32_eq($153,67108863)|0); + $$pn = $155; + } else { + $154 = (_s32_eq($153,33554431)|0); + $$pn = $154; + } + $mask$1 = $$pn & $mask$02; + $156 = (($i$33) + 1)|0; + $exitcond = ($156|0)==(10); + if ($exitcond) { + break; + } else { + $i$33 = $156;$mask$02 = $mask$1; + } + } + $157 = $mask$1 & 67108845; + $158 = HEAP32[$input>>2]|0; + $159 = (($158) - ($157))|0; + HEAP32[$input>>2] = $159; + $160 = $mask$1 & 67108863; + $161 = $mask$1 & 33554431; + $162 = (($input) + 4|0); + $163 = HEAP32[$162>>2]|0; + $164 = (($163) - ($161))|0; + HEAP32[$162>>2] = $164; + $165 = (($input) + 8|0); + $166 = HEAP32[$165>>2]|0; + $167 = (($166) - ($160))|0; + HEAP32[$165>>2] = $167; + $168 = (($input) + 12|0); + $169 = HEAP32[$168>>2]|0; + $170 = (($169) - ($161))|0; + HEAP32[$168>>2] = $170; + $171 = (($input) + 16|0); + $172 = HEAP32[$171>>2]|0; + $173 = (($172) - ($160))|0; + HEAP32[$171>>2] = $173; + $174 = (($input) + 20|0); + $175 = HEAP32[$174>>2]|0; + $176 = (($175) - ($161))|0; + HEAP32[$174>>2] = $176; + $177 = (($input) + 24|0); + $178 = HEAP32[$177>>2]|0; + $179 = (($178) - ($160))|0; + HEAP32[$177>>2] = $179; + $180 = (($input) + 28|0); + $181 = HEAP32[$180>>2]|0; + $182 = (($181) - ($161))|0; + HEAP32[$180>>2] = $182; + $183 = (($input) + 32|0); + $184 = HEAP32[$183>>2]|0; + $185 = (($184) - ($160))|0; + HEAP32[$183>>2] = $185; + $186 = (($input) + 36|0); + $187 = HEAP32[$186>>2]|0; + $188 = (($187) - ($161))|0; + HEAP32[$186>>2] = $188; + $189 = HEAP32[$123>>2]|0; + $190 = $189 << 2; + HEAP32[$123>>2] = $190; + $191 = (($input) + 8|0); + $192 = HEAP32[$191>>2]|0; + $193 = $192 << 3; + HEAP32[$191>>2] = $193; + $194 = (($input) + 12|0); + $195 = HEAP32[$194>>2]|0; + $196 = $195 << 5; + HEAP32[$194>>2] = $196; + $197 = (($input) + 16|0); + $198 = HEAP32[$197>>2]|0; + $199 = $198 << 6; + HEAP32[$197>>2] = $199; + $200 = (($input) + 24|0); + $201 = HEAP32[$200>>2]|0; + $202 = $201 << 1; + HEAP32[$200>>2] = $202; + $203 = (($input) + 28|0); + $204 = HEAP32[$203>>2]|0; + $205 = $204 << 3; + HEAP32[$203>>2] = $205; + $206 = (($input) + 32|0); + $207 = HEAP32[$206>>2]|0; + $208 = $207 << 4; + HEAP32[$206>>2] = $208; + $209 = (($input) + 36|0); + $210 = HEAP32[$209>>2]|0; + $211 = $210 << 6; + HEAP32[$209>>2] = $211; + HEAP8[$output>>0] = 0; + $212 = (($output) + 16|0); + HEAP8[$212>>0] = 0; + $213 = HEAP32[$input>>2]|0; + $214 = HEAP8[$output>>0]|0; + $215 = $214&255; + $216 = $215 | $213; + $217 = $216&255; + HEAP8[$output>>0] = $217; + $218 = HEAP32[$input>>2]|0; + $219 = $218 >>> 8; + $220 = $219&255; + $221 = (($output) + 1|0); + HEAP8[$221>>0] = $220; + $222 = HEAP32[$input>>2]|0; + $223 = $222 >>> 16; + $224 = $223&255; + $225 = (($output) + 2|0); + HEAP8[$225>>0] = $224; + $226 = HEAP32[$input>>2]|0; + $227 = $226 >>> 24; + $228 = (($output) + 3|0); + $229 = HEAP32[$123>>2]|0; + $230 = $227 | $229; + $231 = $230&255; + HEAP8[$228>>0] = $231; + $232 = HEAP32[$123>>2]|0; + $233 = $232 >>> 8; + $234 = $233&255; + $235 = (($output) + 4|0); + HEAP8[$235>>0] = $234; + $236 = HEAP32[$123>>2]|0; + $237 = $236 >>> 16; + $238 = $237&255; + $239 = (($output) + 5|0); + HEAP8[$239>>0] = $238; + $240 = HEAP32[$123>>2]|0; + $241 = $240 >>> 24; + $242 = (($output) + 6|0); + $243 = HEAP32[$191>>2]|0; + $244 = $241 | $243; + $245 = $244&255; + HEAP8[$242>>0] = $245; + $246 = HEAP32[$191>>2]|0; + $247 = $246 >>> 8; + $248 = $247&255; + $249 = (($output) + 7|0); + HEAP8[$249>>0] = $248; + $250 = HEAP32[$191>>2]|0; + $251 = $250 >>> 16; + $252 = $251&255; + $253 = (($output) + 8|0); + HEAP8[$253>>0] = $252; + $254 = HEAP32[$191>>2]|0; + $255 = $254 >>> 24; + $256 = (($output) + 9|0); + $257 = HEAP32[$194>>2]|0; + $258 = $255 | $257; + $259 = $258&255; + HEAP8[$256>>0] = $259; + $260 = HEAP32[$194>>2]|0; + $261 = $260 >>> 8; + $262 = $261&255; + $263 = (($output) + 10|0); + HEAP8[$263>>0] = $262; + $264 = HEAP32[$194>>2]|0; + $265 = $264 >>> 16; + $266 = $265&255; + $267 = (($output) + 11|0); + HEAP8[$267>>0] = $266; + $268 = HEAP32[$194>>2]|0; + $269 = $268 >>> 24; + $270 = (($output) + 12|0); + $271 = HEAP32[$197>>2]|0; + $272 = $269 | $271; + $273 = $272&255; + HEAP8[$270>>0] = $273; + $274 = HEAP32[$197>>2]|0; + $275 = $274 >>> 8; + $276 = $275&255; + $277 = (($output) + 13|0); + HEAP8[$277>>0] = $276; + $278 = HEAP32[$197>>2]|0; + $279 = $278 >>> 16; + $280 = $279&255; + $281 = (($output) + 14|0); + HEAP8[$281>>0] = $280; + $282 = HEAP32[$197>>2]|0; + $283 = $282 >>> 24; + $284 = $283&255; + $285 = (($output) + 15|0); + HEAP8[$285>>0] = $284; + $286 = (($input) + 20|0); + $287 = HEAP32[$286>>2]|0; + $288 = HEAP8[$212>>0]|0; + $289 = $288&255; + $290 = $289 | $287; + $291 = $290&255; + HEAP8[$212>>0] = $291; + $292 = HEAP32[$286>>2]|0; + $293 = $292 >>> 8; + $294 = $293&255; + $295 = (($output) + 17|0); + HEAP8[$295>>0] = $294; + $296 = HEAP32[$286>>2]|0; + $297 = $296 >>> 16; + $298 = $297&255; + $299 = (($output) + 18|0); + HEAP8[$299>>0] = $298; + $300 = HEAP32[$286>>2]|0; + $301 = $300 >>> 24; + $302 = (($output) + 19|0); + $303 = HEAP32[$200>>2]|0; + $304 = $301 | $303; + $305 = $304&255; + HEAP8[$302>>0] = $305; + $306 = HEAP32[$200>>2]|0; + $307 = $306 >>> 8; + $308 = $307&255; + $309 = (($output) + 20|0); + HEAP8[$309>>0] = $308; + $310 = HEAP32[$200>>2]|0; + $311 = $310 >>> 16; + $312 = $311&255; + $313 = (($output) + 21|0); + HEAP8[$313>>0] = $312; + $314 = HEAP32[$200>>2]|0; + $315 = $314 >>> 24; + $316 = (($output) + 22|0); + $317 = HEAP32[$203>>2]|0; + $318 = $315 | $317; + $319 = $318&255; + HEAP8[$316>>0] = $319; + $320 = HEAP32[$203>>2]|0; + $321 = $320 >>> 8; + $322 = $321&255; + $323 = (($output) + 23|0); + HEAP8[$323>>0] = $322; + $324 = HEAP32[$203>>2]|0; + $325 = $324 >>> 16; + $326 = $325&255; + $327 = (($output) + 24|0); + HEAP8[$327>>0] = $326; + $328 = HEAP32[$203>>2]|0; + $329 = $328 >>> 24; + $330 = (($output) + 25|0); + $331 = HEAP32[$206>>2]|0; + $332 = $329 | $331; + $333 = $332&255; + HEAP8[$330>>0] = $333; + $334 = HEAP32[$206>>2]|0; + $335 = $334 >>> 8; + $336 = $335&255; + $337 = (($output) + 26|0); + HEAP8[$337>>0] = $336; + $338 = HEAP32[$206>>2]|0; + $339 = $338 >>> 16; + $340 = $339&255; + $341 = (($output) + 27|0); + HEAP8[$341>>0] = $340; + $342 = HEAP32[$206>>2]|0; + $343 = $342 >>> 24; + $344 = (($output) + 28|0); + $345 = HEAP32[$209>>2]|0; + $346 = $343 | $345; + $347 = $346&255; + HEAP8[$344>>0] = $347; + $348 = HEAP32[$209>>2]|0; + $349 = $348 >>> 8; + $350 = $349&255; + $351 = (($output) + 29|0); + HEAP8[$351>>0] = $350; + $352 = HEAP32[$209>>2]|0; + $353 = $352 >>> 16; + $354 = $353&255; + $355 = (($output) + 30|0); + HEAP8[$355>>0] = $354; + $356 = HEAP32[$209>>2]|0; + $357 = $356 >>> 24; + $358 = $357&255; + $359 = (($output) + 31|0); + HEAP8[$359>>0] = $358; + STACKTOP = sp;return; +} +function _swap_conditional($a,$b,$0,$1) { + $a = $a|0; + $b = $b|0; + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0; + var $9 = 0, $exitcond = 0, $i$02 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = (_i64Subtract(0,0,($0|0),($1|0))|0); + $3 = tempRet0; + $i$02 = 0; + while(1) { + $4 = (($a) + ($i$02<<3)|0); + $5 = $4; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = (($5) + 4)|0; + $9 = $8; + $10 = HEAP32[$9>>2]|0; + $11 = (($b) + ($i$02<<3)|0); + $12 = $11; + $13 = $12; + $14 = HEAP32[$13>>2]|0; + $15 = (($12) + 4)|0; + $16 = $15; + $17 = HEAP32[$16>>2]|0; + $18 = $14 ^ $7; + $19 = $17 ^ $10; + $20 = $18 & $2; + $21 = $19 & $3; + $22 = $20 ^ $7; + $21 ^ $10; + $23 = (_bitshift64Ashr(0,($22|0),32)|0); + $24 = tempRet0; + $25 = $4; + $26 = $25; + HEAP32[$26>>2] = $23; + $27 = (($25) + 4)|0; + $28 = $27; + HEAP32[$28>>2] = $24; + $29 = $11; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = (($29) + 4)|0; + $33 = $32; + $34 = HEAP32[$33>>2]|0; + $35 = $20 ^ $31; + $21 ^ $34; + $36 = (_bitshift64Ashr(0,($35|0),32)|0); + $37 = tempRet0; + $38 = $11; + $39 = $38; + HEAP32[$39>>2] = $36; + $40 = (($38) + 4)|0; + $41 = $40; + HEAP32[$41>>2] = $37; + $42 = (($i$02) + 1)|0; + $exitcond = ($42|0)==(10); + if ($exitcond) { + break; + } else { + $i$02 = $42; + } + } + STACKTOP = sp;return; +} +function _fmonty($x2,$z2,$x3,$z3,$x,$z,$xprime,$zprime,$qmqp) { + $x2 = $x2|0; + $z2 = $z2|0; + $x3 = $x3|0; + $z3 = $z3|0; + $x = $x|0; + $z = $z|0; + $xprime = $xprime|0; + $zprime = $zprime|0; + $qmqp = $qmqp|0; + var $0 = 0, $origx = 0, $origxprime = 0, $xx = 0, $xxprime = 0, $xxxprime = 0, $zz = 0, $zzprime = 0, $zzz = 0, $zzzprime = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 1232|0; + $origx = sp + 1144|0; + $origxprime = sp + 1064|0; + $zzz = sp + 912|0; + $xx = sp + 760|0; + $zz = sp + 608|0; + $xxprime = sp + 456|0; + $zzprime = sp + 304|0; + $zzzprime = sp + 152|0; + $xxxprime = sp; + dest=$origx+0|0; src=$x+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($x,$z); + _fdifference($z,$origx); + dest=$origxprime+0|0; src=$xprime+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($xprime,$zprime); + _fdifference($zprime,$origxprime); + _fproduct($xxprime,$xprime,$z); + _fproduct($zzprime,$x,$zprime); + _freduce_degree($xxprime); + _freduce_coefficients($xxprime); + _freduce_degree($zzprime); + _freduce_coefficients($zzprime); + dest=$origxprime+0|0; src=$xxprime+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($xxprime,$zzprime); + _fdifference($zzprime,$origxprime); + _fsquare($xxxprime,$xxprime); + _fsquare($zzzprime,$zzprime); + _fproduct($zzprime,$zzzprime,$qmqp); + _freduce_degree($zzprime); + _freduce_coefficients($zzprime); + dest=$x3+0|0; src=$xxxprime+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + dest=$z3+0|0; src=$zzprime+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsquare($xx,$x); + _fsquare($zz,$z); + _fproduct($x2,$xx,$zz); + _freduce_degree($x2); + _freduce_coefficients($x2); + _fdifference($zz,$xx); + $0 = (($zzz) + 80|0); + dest=$0+0|0; stop=dest+72|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + _fscalar_product($zzz,$zz); + _freduce_coefficients($zzz); + _fsum($zzz,$xx); + _fproduct($z2,$zz,$zzz); + _freduce_degree($z2); + _freduce_coefficients($z2); + STACKTOP = sp;return; +} +function _fsquare($output,$in) { + $output = $output|0; + $in = $in|0; + var $t = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 160|0; + $t = sp; + _fsquare_inner($t,$in); + _freduce_degree($t); + _freduce_coefficients($t); + dest=$output+0|0; src=$t+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _fproduct($output,$in2,$in) { + $output = $output|0; + $in2 = $in2|0; + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; + var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; + var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; + var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; + var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; + var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; + var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0; + var $1123 = 0, $1124 = 0, $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0; + var $1141 = 0, $1142 = 0, $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0; + var $116 = 0, $1160 = 0, $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0; + var $1178 = 0, $1179 = 0, $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0; + var $1196 = 0, $1197 = 0, $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0; + var $1213 = 0, $1214 = 0, $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0; + var $1231 = 0, $1232 = 0, $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0; + var $125 = 0, $1250 = 0, $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0; + var $1268 = 0, $1269 = 0, $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0; + var $1286 = 0, $1287 = 0, $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0; + var $1303 = 0, $1304 = 0, $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0; + var $1321 = 0, $1322 = 0, $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0; + var $134 = 0, $1340 = 0, $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0; + var $1358 = 0, $1359 = 0, $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0; + var $1376 = 0, $1377 = 0, $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0; + var $1394 = 0, $1395 = 0, $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0; + var $1411 = 0, $1412 = 0, $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0; + var $143 = 0, $1430 = 0, $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0; + var $1448 = 0, $1449 = 0, $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0; + var $1466 = 0, $1467 = 0, $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0; + var $1484 = 0, $1485 = 0, $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0; + var $1501 = 0, $1502 = 0, $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0; + var $152 = 0, $1520 = 0, $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0; + var $1538 = 0, $1539 = 0, $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0; + var $1556 = 0, $1557 = 0, $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0; + var $1574 = 0, $1575 = 0, $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0; + var $1592 = 0, $1593 = 0, $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0; + var $161 = 0, $1610 = 0, $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0; + var $1628 = 0, $1629 = 0, $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0; + var $1646 = 0, $1647 = 0, $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0; + var $1664 = 0, $1665 = 0, $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0; + var $1682 = 0, $1683 = 0, $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0; + var $170 = 0, $1700 = 0, $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0; + var $1718 = 0, $1719 = 0, $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0; + var $1736 = 0, $1737 = 0, $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0; + var $1754 = 0, $1755 = 0, $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0; + var $1772 = 0, $1773 = 0, $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0; + var $1790 = 0, $1791 = 0, $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0; + var $1808 = 0, $1809 = 0, $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0; + var $1826 = 0, $1827 = 0, $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0; + var $1844 = 0, $1845 = 0, $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0; + var $1862 = 0, $1863 = 0, $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $1879 = 0, $188 = 0; + var $1880 = 0, $1881 = 0, $1882 = 0, $1883 = 0, $1884 = 0, $1885 = 0, $1886 = 0, $1887 = 0, $1888 = 0, $1889 = 0, $189 = 0, $1890 = 0, $1891 = 0, $1892 = 0, $1893 = 0, $1894 = 0, $1895 = 0, $1896 = 0, $1897 = 0, $1898 = 0; + var $1899 = 0, $19 = 0, $190 = 0, $1900 = 0, $1901 = 0, $1902 = 0, $1903 = 0, $1904 = 0, $1905 = 0, $1906 = 0, $1907 = 0, $1908 = 0, $1909 = 0, $191 = 0, $1910 = 0, $1911 = 0, $1912 = 0, $1913 = 0, $1914 = 0, $1915 = 0; + var $1916 = 0, $1917 = 0, $1918 = 0, $1919 = 0, $192 = 0, $1920 = 0, $1921 = 0, $1922 = 0, $1923 = 0, $1924 = 0, $1925 = 0, $1926 = 0, $1927 = 0, $1928 = 0, $1929 = 0, $193 = 0, $1930 = 0, $1931 = 0, $1932 = 0, $1933 = 0; + var $1934 = 0, $1935 = 0, $1936 = 0, $1937 = 0, $1938 = 0, $1939 = 0, $194 = 0, $1940 = 0, $1941 = 0, $1942 = 0, $1943 = 0, $1944 = 0, $1945 = 0, $1946 = 0, $1947 = 0, $1948 = 0, $1949 = 0, $195 = 0, $1950 = 0, $1951 = 0; + var $1952 = 0, $1953 = 0, $1954 = 0, $1955 = 0, $1956 = 0, $1957 = 0, $1958 = 0, $1959 = 0, $196 = 0, $1960 = 0, $1961 = 0, $1962 = 0, $1963 = 0, $1964 = 0, $1965 = 0, $1966 = 0, $1967 = 0, $1968 = 0, $1969 = 0, $197 = 0; + var $1970 = 0, $1971 = 0, $1972 = 0, $1973 = 0, $1974 = 0, $1975 = 0, $1976 = 0, $1977 = 0, $1978 = 0, $1979 = 0, $198 = 0, $1980 = 0, $1981 = 0, $1982 = 0, $1983 = 0, $1984 = 0, $1985 = 0, $1986 = 0, $1987 = 0, $1988 = 0; + var $1989 = 0, $199 = 0, $1990 = 0, $1991 = 0, $1992 = 0, $1993 = 0, $1994 = 0, $1995 = 0, $1996 = 0, $1997 = 0, $1998 = 0, $1999 = 0, $2 = 0, $20 = 0, $200 = 0, $2000 = 0, $2001 = 0, $2002 = 0, $2003 = 0, $2004 = 0; + var $2005 = 0, $2006 = 0, $2007 = 0, $2008 = 0, $2009 = 0, $201 = 0, $2010 = 0, $2011 = 0, $2012 = 0, $2013 = 0, $2014 = 0, $2015 = 0, $2016 = 0, $2017 = 0, $2018 = 0, $2019 = 0, $202 = 0, $2020 = 0, $2021 = 0, $2022 = 0; + var $2023 = 0, $2024 = 0, $2025 = 0, $2026 = 0, $2027 = 0, $2028 = 0, $2029 = 0, $203 = 0, $2030 = 0, $2031 = 0, $2032 = 0, $2033 = 0, $2034 = 0, $2035 = 0, $2036 = 0, $2037 = 0, $2038 = 0, $2039 = 0, $204 = 0, $2040 = 0; + var $2041 = 0, $2042 = 0, $2043 = 0, $2044 = 0, $2045 = 0, $2046 = 0, $2047 = 0, $2048 = 0, $2049 = 0, $205 = 0, $2050 = 0, $2051 = 0, $2052 = 0, $2053 = 0, $2054 = 0, $2055 = 0, $2056 = 0, $2057 = 0, $2058 = 0, $2059 = 0; + var $206 = 0, $2060 = 0, $2061 = 0, $2062 = 0, $2063 = 0, $2064 = 0, $2065 = 0, $2066 = 0, $2067 = 0, $2068 = 0, $2069 = 0, $207 = 0, $2070 = 0, $2071 = 0, $2072 = 0, $2073 = 0, $2074 = 0, $2075 = 0, $2076 = 0, $2077 = 0; + var $2078 = 0, $2079 = 0, $208 = 0, $2080 = 0, $2081 = 0, $2082 = 0, $2083 = 0, $2084 = 0, $2085 = 0, $2086 = 0, $2087 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0; + var $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0; + var $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0; + var $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0; + var $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0; + var $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0; + var $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0; + var $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0; + var $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0; + var $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0; + var $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0; + var $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0; + var $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0; + var $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0; + var $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0; + var $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0; + var $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0; + var $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0; + var $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0; + var $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0; + var $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0; + var $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0; + var $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0; + var $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0; + var $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0; + var $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0; + var $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0; + var $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0; + var $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0; + var $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0; + var $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0; + var $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0; + var $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0; + var $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0; + var $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0; + var $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0; + var $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0; + var $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0; + var $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0; + var $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0; + var $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0; + var $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0; + var $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0; + var $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0; + var $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $in2; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = (_bitshift64Ashr(0,($2|0),32)|0); + $7 = tempRet0; + $8 = $in; + $9 = $8; + $10 = HEAP32[$9>>2]|0; + $11 = (($8) + 4)|0; + $12 = $11; + $13 = HEAP32[$12>>2]|0; + $14 = (_bitshift64Ashr(0,($10|0),32)|0); + $15 = tempRet0; + $16 = (___muldi3(($14|0),($15|0),($6|0),($7|0))|0); + $17 = tempRet0; + $18 = $output; + $19 = $18; + HEAP32[$19>>2] = $16; + $20 = (($18) + 4)|0; + $21 = $20; + HEAP32[$21>>2] = $17; + $22 = $in2; + $23 = $22; + $24 = HEAP32[$23>>2]|0; + $25 = (($22) + 4)|0; + $26 = $25; + $27 = HEAP32[$26>>2]|0; + $28 = (_bitshift64Ashr(0,($24|0),32)|0); + $29 = tempRet0; + $30 = (($in) + 8|0); + $31 = $30; + $32 = $31; + $33 = HEAP32[$32>>2]|0; + $34 = (($31) + 4)|0; + $35 = $34; + $36 = HEAP32[$35>>2]|0; + $37 = (_bitshift64Ashr(0,($33|0),32)|0); + $38 = tempRet0; + $39 = (___muldi3(($37|0),($38|0),($28|0),($29|0))|0); + $40 = tempRet0; + $41 = (($in2) + 8|0); + $42 = $41; + $43 = $42; + $44 = HEAP32[$43>>2]|0; + $45 = (($42) + 4)|0; + $46 = $45; + $47 = HEAP32[$46>>2]|0; + $48 = (_bitshift64Ashr(0,($44|0),32)|0); + $49 = tempRet0; + $50 = $in; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + $56 = (_bitshift64Ashr(0,($52|0),32)|0); + $57 = tempRet0; + $58 = (___muldi3(($56|0),($57|0),($48|0),($49|0))|0); + $59 = tempRet0; + $60 = (_i64Add(($58|0),($59|0),($39|0),($40|0))|0); + $61 = tempRet0; + $62 = (($output) + 8|0); + $63 = $62; + $64 = $63; + HEAP32[$64>>2] = $60; + $65 = (($63) + 4)|0; + $66 = $65; + HEAP32[$66>>2] = $61; + $67 = $41; + $68 = $67; + $69 = HEAP32[$68>>2]|0; + $70 = (($67) + 4)|0; + $71 = $70; + $72 = HEAP32[$71>>2]|0; + $73 = (_bitshift64Ashr(0,($69|0),31)|0); + $74 = tempRet0; + $75 = $30; + $76 = $75; + $77 = HEAP32[$76>>2]|0; + $78 = (($75) + 4)|0; + $79 = $78; + $80 = HEAP32[$79>>2]|0; + $81 = (_bitshift64Ashr(0,($77|0),32)|0); + $82 = tempRet0; + $83 = (___muldi3(($81|0),($82|0),($73|0),($74|0))|0); + $84 = tempRet0; + $85 = $in2; + $86 = $85; + $87 = HEAP32[$86>>2]|0; + $88 = (($85) + 4)|0; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (_bitshift64Ashr(0,($87|0),32)|0); + $92 = tempRet0; + $93 = (($in) + 16|0); + $94 = $93; + $95 = $94; + $96 = HEAP32[$95>>2]|0; + $97 = (($94) + 4)|0; + $98 = $97; + $99 = HEAP32[$98>>2]|0; + $100 = (_bitshift64Ashr(0,($96|0),32)|0); + $101 = tempRet0; + $102 = (___muldi3(($100|0),($101|0),($91|0),($92|0))|0); + $103 = tempRet0; + $104 = (_i64Add(($102|0),($103|0),($83|0),($84|0))|0); + $105 = tempRet0; + $106 = (($in2) + 16|0); + $107 = $106; + $108 = $107; + $109 = HEAP32[$108>>2]|0; + $110 = (($107) + 4)|0; + $111 = $110; + $112 = HEAP32[$111>>2]|0; + $113 = (_bitshift64Ashr(0,($109|0),32)|0); + $114 = tempRet0; + $115 = $in; + $116 = $115; + $117 = HEAP32[$116>>2]|0; + $118 = (($115) + 4)|0; + $119 = $118; + $120 = HEAP32[$119>>2]|0; + $121 = (_bitshift64Ashr(0,($117|0),32)|0); + $122 = tempRet0; + $123 = (___muldi3(($121|0),($122|0),($113|0),($114|0))|0); + $124 = tempRet0; + $125 = (_i64Add(($104|0),($105|0),($123|0),($124|0))|0); + $126 = tempRet0; + $127 = (($output) + 16|0); + $128 = $127; + $129 = $128; + HEAP32[$129>>2] = $125; + $130 = (($128) + 4)|0; + $131 = $130; + HEAP32[$131>>2] = $126; + $132 = $41; + $133 = $132; + $134 = HEAP32[$133>>2]|0; + $135 = (($132) + 4)|0; + $136 = $135; + $137 = HEAP32[$136>>2]|0; + $138 = (_bitshift64Ashr(0,($134|0),32)|0); + $139 = tempRet0; + $140 = $93; + $141 = $140; + $142 = HEAP32[$141>>2]|0; + $143 = (($140) + 4)|0; + $144 = $143; + $145 = HEAP32[$144>>2]|0; + $146 = (_bitshift64Ashr(0,($142|0),32)|0); + $147 = tempRet0; + $148 = (___muldi3(($146|0),($147|0),($138|0),($139|0))|0); + $149 = tempRet0; + $150 = $106; + $151 = $150; + $152 = HEAP32[$151>>2]|0; + $153 = (($150) + 4)|0; + $154 = $153; + $155 = HEAP32[$154>>2]|0; + $156 = (_bitshift64Ashr(0,($152|0),32)|0); + $157 = tempRet0; + $158 = $30; + $159 = $158; + $160 = HEAP32[$159>>2]|0; + $161 = (($158) + 4)|0; + $162 = $161; + $163 = HEAP32[$162>>2]|0; + $164 = (_bitshift64Ashr(0,($160|0),32)|0); + $165 = tempRet0; + $166 = (___muldi3(($164|0),($165|0),($156|0),($157|0))|0); + $167 = tempRet0; + $168 = (_i64Add(($166|0),($167|0),($148|0),($149|0))|0); + $169 = tempRet0; + $170 = $in2; + $171 = $170; + $172 = HEAP32[$171>>2]|0; + $173 = (($170) + 4)|0; + $174 = $173; + $175 = HEAP32[$174>>2]|0; + $176 = (_bitshift64Ashr(0,($172|0),32)|0); + $177 = tempRet0; + $178 = (($in) + 24|0); + $179 = $178; + $180 = $179; + $181 = HEAP32[$180>>2]|0; + $182 = (($179) + 4)|0; + $183 = $182; + $184 = HEAP32[$183>>2]|0; + $185 = (_bitshift64Ashr(0,($181|0),32)|0); + $186 = tempRet0; + $187 = (___muldi3(($185|0),($186|0),($176|0),($177|0))|0); + $188 = tempRet0; + $189 = (_i64Add(($168|0),($169|0),($187|0),($188|0))|0); + $190 = tempRet0; + $191 = (($in2) + 24|0); + $192 = $191; + $193 = $192; + $194 = HEAP32[$193>>2]|0; + $195 = (($192) + 4)|0; + $196 = $195; + $197 = HEAP32[$196>>2]|0; + $198 = (_bitshift64Ashr(0,($194|0),32)|0); + $199 = tempRet0; + $200 = $in; + $201 = $200; + $202 = HEAP32[$201>>2]|0; + $203 = (($200) + 4)|0; + $204 = $203; + $205 = HEAP32[$204>>2]|0; + $206 = (_bitshift64Ashr(0,($202|0),32)|0); + $207 = tempRet0; + $208 = (___muldi3(($206|0),($207|0),($198|0),($199|0))|0); + $209 = tempRet0; + $210 = (_i64Add(($189|0),($190|0),($208|0),($209|0))|0); + $211 = tempRet0; + $212 = (($output) + 24|0); + $213 = $212; + $214 = $213; + HEAP32[$214>>2] = $210; + $215 = (($213) + 4)|0; + $216 = $215; + HEAP32[$216>>2] = $211; + $217 = $106; + $218 = $217; + $219 = HEAP32[$218>>2]|0; + $220 = (($217) + 4)|0; + $221 = $220; + $222 = HEAP32[$221>>2]|0; + $223 = (_bitshift64Ashr(0,($219|0),32)|0); + $224 = tempRet0; + $225 = $93; + $226 = $225; + $227 = HEAP32[$226>>2]|0; + $228 = (($225) + 4)|0; + $229 = $228; + $230 = HEAP32[$229>>2]|0; + $231 = (_bitshift64Ashr(0,($227|0),32)|0); + $232 = tempRet0; + $233 = (___muldi3(($231|0),($232|0),($223|0),($224|0))|0); + $234 = tempRet0; + $235 = $41; + $236 = $235; + $237 = HEAP32[$236>>2]|0; + $238 = (($235) + 4)|0; + $239 = $238; + $240 = HEAP32[$239>>2]|0; + $241 = (_bitshift64Ashr(0,($237|0),32)|0); + $242 = tempRet0; + $243 = $178; + $244 = $243; + $245 = HEAP32[$244>>2]|0; + $246 = (($243) + 4)|0; + $247 = $246; + $248 = HEAP32[$247>>2]|0; + $249 = (_bitshift64Ashr(0,($245|0),32)|0); + $250 = tempRet0; + $251 = (___muldi3(($249|0),($250|0),($241|0),($242|0))|0); + $252 = tempRet0; + $253 = $191; + $254 = $253; + $255 = HEAP32[$254>>2]|0; + $256 = (($253) + 4)|0; + $257 = $256; + $258 = HEAP32[$257>>2]|0; + $259 = (_bitshift64Ashr(0,($255|0),32)|0); + $260 = tempRet0; + $261 = $30; + $262 = $261; + $263 = HEAP32[$262>>2]|0; + $264 = (($261) + 4)|0; + $265 = $264; + $266 = HEAP32[$265>>2]|0; + $267 = (_bitshift64Ashr(0,($263|0),32)|0); + $268 = tempRet0; + $269 = (___muldi3(($267|0),($268|0),($259|0),($260|0))|0); + $270 = tempRet0; + $271 = (_i64Add(($269|0),($270|0),($251|0),($252|0))|0); + $272 = tempRet0; + $273 = (_bitshift64Shl(($271|0),($272|0),1)|0); + $274 = tempRet0; + $275 = (_i64Add(($273|0),($274|0),($233|0),($234|0))|0); + $276 = tempRet0; + $277 = $in2; + $278 = $277; + $279 = HEAP32[$278>>2]|0; + $280 = (($277) + 4)|0; + $281 = $280; + $282 = HEAP32[$281>>2]|0; + $283 = (_bitshift64Ashr(0,($279|0),32)|0); + $284 = tempRet0; + $285 = (($in) + 32|0); + $286 = $285; + $287 = $286; + $288 = HEAP32[$287>>2]|0; + $289 = (($286) + 4)|0; + $290 = $289; + $291 = HEAP32[$290>>2]|0; + $292 = (_bitshift64Ashr(0,($288|0),32)|0); + $293 = tempRet0; + $294 = (___muldi3(($292|0),($293|0),($283|0),($284|0))|0); + $295 = tempRet0; + $296 = (_i64Add(($275|0),($276|0),($294|0),($295|0))|0); + $297 = tempRet0; + $298 = (($in2) + 32|0); + $299 = $298; + $300 = $299; + $301 = HEAP32[$300>>2]|0; + $302 = (($299) + 4)|0; + $303 = $302; + $304 = HEAP32[$303>>2]|0; + $305 = (_bitshift64Ashr(0,($301|0),32)|0); + $306 = tempRet0; + $307 = $in; + $308 = $307; + $309 = HEAP32[$308>>2]|0; + $310 = (($307) + 4)|0; + $311 = $310; + $312 = HEAP32[$311>>2]|0; + $313 = (_bitshift64Ashr(0,($309|0),32)|0); + $314 = tempRet0; + $315 = (___muldi3(($313|0),($314|0),($305|0),($306|0))|0); + $316 = tempRet0; + $317 = (_i64Add(($296|0),($297|0),($315|0),($316|0))|0); + $318 = tempRet0; + $319 = (($output) + 32|0); + $320 = $319; + $321 = $320; + HEAP32[$321>>2] = $317; + $322 = (($320) + 4)|0; + $323 = $322; + HEAP32[$323>>2] = $318; + $324 = $106; + $325 = $324; + $326 = HEAP32[$325>>2]|0; + $327 = (($324) + 4)|0; + $328 = $327; + $329 = HEAP32[$328>>2]|0; + $330 = (_bitshift64Ashr(0,($326|0),32)|0); + $331 = tempRet0; + $332 = $178; + $333 = $332; + $334 = HEAP32[$333>>2]|0; + $335 = (($332) + 4)|0; + $336 = $335; + $337 = HEAP32[$336>>2]|0; + $338 = (_bitshift64Ashr(0,($334|0),32)|0); + $339 = tempRet0; + $340 = (___muldi3(($338|0),($339|0),($330|0),($331|0))|0); + $341 = tempRet0; + $342 = $191; + $343 = $342; + $344 = HEAP32[$343>>2]|0; + $345 = (($342) + 4)|0; + $346 = $345; + $347 = HEAP32[$346>>2]|0; + $348 = (_bitshift64Ashr(0,($344|0),32)|0); + $349 = tempRet0; + $350 = $93; + $351 = $350; + $352 = HEAP32[$351>>2]|0; + $353 = (($350) + 4)|0; + $354 = $353; + $355 = HEAP32[$354>>2]|0; + $356 = (_bitshift64Ashr(0,($352|0),32)|0); + $357 = tempRet0; + $358 = (___muldi3(($356|0),($357|0),($348|0),($349|0))|0); + $359 = tempRet0; + $360 = (_i64Add(($358|0),($359|0),($340|0),($341|0))|0); + $361 = tempRet0; + $362 = $41; + $363 = $362; + $364 = HEAP32[$363>>2]|0; + $365 = (($362) + 4)|0; + $366 = $365; + $367 = HEAP32[$366>>2]|0; + $368 = (_bitshift64Ashr(0,($364|0),32)|0); + $369 = tempRet0; + $370 = $285; + $371 = $370; + $372 = HEAP32[$371>>2]|0; + $373 = (($370) + 4)|0; + $374 = $373; + $375 = HEAP32[$374>>2]|0; + $376 = (_bitshift64Ashr(0,($372|0),32)|0); + $377 = tempRet0; + $378 = (___muldi3(($376|0),($377|0),($368|0),($369|0))|0); + $379 = tempRet0; + $380 = (_i64Add(($360|0),($361|0),($378|0),($379|0))|0); + $381 = tempRet0; + $382 = $298; + $383 = $382; + $384 = HEAP32[$383>>2]|0; + $385 = (($382) + 4)|0; + $386 = $385; + $387 = HEAP32[$386>>2]|0; + $388 = (_bitshift64Ashr(0,($384|0),32)|0); + $389 = tempRet0; + $390 = $30; + $391 = $390; + $392 = HEAP32[$391>>2]|0; + $393 = (($390) + 4)|0; + $394 = $393; + $395 = HEAP32[$394>>2]|0; + $396 = (_bitshift64Ashr(0,($392|0),32)|0); + $397 = tempRet0; + $398 = (___muldi3(($396|0),($397|0),($388|0),($389|0))|0); + $399 = tempRet0; + $400 = (_i64Add(($380|0),($381|0),($398|0),($399|0))|0); + $401 = tempRet0; + $402 = $in2; + $403 = $402; + $404 = HEAP32[$403>>2]|0; + $405 = (($402) + 4)|0; + $406 = $405; + $407 = HEAP32[$406>>2]|0; + $408 = (_bitshift64Ashr(0,($404|0),32)|0); + $409 = tempRet0; + $410 = (($in) + 40|0); + $411 = $410; + $412 = $411; + $413 = HEAP32[$412>>2]|0; + $414 = (($411) + 4)|0; + $415 = $414; + $416 = HEAP32[$415>>2]|0; + $417 = (_bitshift64Ashr(0,($413|0),32)|0); + $418 = tempRet0; + $419 = (___muldi3(($417|0),($418|0),($408|0),($409|0))|0); + $420 = tempRet0; + $421 = (_i64Add(($400|0),($401|0),($419|0),($420|0))|0); + $422 = tempRet0; + $423 = (($in2) + 40|0); + $424 = $423; + $425 = $424; + $426 = HEAP32[$425>>2]|0; + $427 = (($424) + 4)|0; + $428 = $427; + $429 = HEAP32[$428>>2]|0; + $430 = (_bitshift64Ashr(0,($426|0),32)|0); + $431 = tempRet0; + $432 = $in; + $433 = $432; + $434 = HEAP32[$433>>2]|0; + $435 = (($432) + 4)|0; + $436 = $435; + $437 = HEAP32[$436>>2]|0; + $438 = (_bitshift64Ashr(0,($434|0),32)|0); + $439 = tempRet0; + $440 = (___muldi3(($438|0),($439|0),($430|0),($431|0))|0); + $441 = tempRet0; + $442 = (_i64Add(($421|0),($422|0),($440|0),($441|0))|0); + $443 = tempRet0; + $444 = (($output) + 40|0); + $445 = $444; + $446 = $445; + HEAP32[$446>>2] = $442; + $447 = (($445) + 4)|0; + $448 = $447; + HEAP32[$448>>2] = $443; + $449 = $191; + $450 = $449; + $451 = HEAP32[$450>>2]|0; + $452 = (($449) + 4)|0; + $453 = $452; + $454 = HEAP32[$453>>2]|0; + $455 = (_bitshift64Ashr(0,($451|0),32)|0); + $456 = tempRet0; + $457 = $178; + $458 = $457; + $459 = HEAP32[$458>>2]|0; + $460 = (($457) + 4)|0; + $461 = $460; + $462 = HEAP32[$461>>2]|0; + $463 = (_bitshift64Ashr(0,($459|0),32)|0); + $464 = tempRet0; + $465 = (___muldi3(($463|0),($464|0),($455|0),($456|0))|0); + $466 = tempRet0; + $467 = $41; + $468 = $467; + $469 = HEAP32[$468>>2]|0; + $470 = (($467) + 4)|0; + $471 = $470; + $472 = HEAP32[$471>>2]|0; + $473 = (_bitshift64Ashr(0,($469|0),32)|0); + $474 = tempRet0; + $475 = $410; + $476 = $475; + $477 = HEAP32[$476>>2]|0; + $478 = (($475) + 4)|0; + $479 = $478; + $480 = HEAP32[$479>>2]|0; + $481 = (_bitshift64Ashr(0,($477|0),32)|0); + $482 = tempRet0; + $483 = (___muldi3(($481|0),($482|0),($473|0),($474|0))|0); + $484 = tempRet0; + $485 = (_i64Add(($483|0),($484|0),($465|0),($466|0))|0); + $486 = tempRet0; + $487 = $423; + $488 = $487; + $489 = HEAP32[$488>>2]|0; + $490 = (($487) + 4)|0; + $491 = $490; + $492 = HEAP32[$491>>2]|0; + $493 = (_bitshift64Ashr(0,($489|0),32)|0); + $494 = tempRet0; + $495 = $30; + $496 = $495; + $497 = HEAP32[$496>>2]|0; + $498 = (($495) + 4)|0; + $499 = $498; + $500 = HEAP32[$499>>2]|0; + $501 = (_bitshift64Ashr(0,($497|0),32)|0); + $502 = tempRet0; + $503 = (___muldi3(($501|0),($502|0),($493|0),($494|0))|0); + $504 = tempRet0; + $505 = (_i64Add(($485|0),($486|0),($503|0),($504|0))|0); + $506 = tempRet0; + $507 = (_bitshift64Shl(($505|0),($506|0),1)|0); + $508 = tempRet0; + $509 = $106; + $510 = $509; + $511 = HEAP32[$510>>2]|0; + $512 = (($509) + 4)|0; + $513 = $512; + $514 = HEAP32[$513>>2]|0; + $515 = (_bitshift64Ashr(0,($511|0),32)|0); + $516 = tempRet0; + $517 = $285; + $518 = $517; + $519 = HEAP32[$518>>2]|0; + $520 = (($517) + 4)|0; + $521 = $520; + $522 = HEAP32[$521>>2]|0; + $523 = (_bitshift64Ashr(0,($519|0),32)|0); + $524 = tempRet0; + $525 = (___muldi3(($523|0),($524|0),($515|0),($516|0))|0); + $526 = tempRet0; + $527 = (_i64Add(($507|0),($508|0),($525|0),($526|0))|0); + $528 = tempRet0; + $529 = $298; + $530 = $529; + $531 = HEAP32[$530>>2]|0; + $532 = (($529) + 4)|0; + $533 = $532; + $534 = HEAP32[$533>>2]|0; + $535 = (_bitshift64Ashr(0,($531|0),32)|0); + $536 = tempRet0; + $537 = $93; + $538 = $537; + $539 = HEAP32[$538>>2]|0; + $540 = (($537) + 4)|0; + $541 = $540; + $542 = HEAP32[$541>>2]|0; + $543 = (_bitshift64Ashr(0,($539|0),32)|0); + $544 = tempRet0; + $545 = (___muldi3(($543|0),($544|0),($535|0),($536|0))|0); + $546 = tempRet0; + $547 = (_i64Add(($527|0),($528|0),($545|0),($546|0))|0); + $548 = tempRet0; + $549 = $in2; + $550 = $549; + $551 = HEAP32[$550>>2]|0; + $552 = (($549) + 4)|0; + $553 = $552; + $554 = HEAP32[$553>>2]|0; + $555 = (_bitshift64Ashr(0,($551|0),32)|0); + $556 = tempRet0; + $557 = (($in) + 48|0); + $558 = $557; + $559 = $558; + $560 = HEAP32[$559>>2]|0; + $561 = (($558) + 4)|0; + $562 = $561; + $563 = HEAP32[$562>>2]|0; + $564 = (_bitshift64Ashr(0,($560|0),32)|0); + $565 = tempRet0; + $566 = (___muldi3(($564|0),($565|0),($555|0),($556|0))|0); + $567 = tempRet0; + $568 = (_i64Add(($547|0),($548|0),($566|0),($567|0))|0); + $569 = tempRet0; + $570 = (($in2) + 48|0); + $571 = $570; + $572 = $571; + $573 = HEAP32[$572>>2]|0; + $574 = (($571) + 4)|0; + $575 = $574; + $576 = HEAP32[$575>>2]|0; + $577 = (_bitshift64Ashr(0,($573|0),32)|0); + $578 = tempRet0; + $579 = $in; + $580 = $579; + $581 = HEAP32[$580>>2]|0; + $582 = (($579) + 4)|0; + $583 = $582; + $584 = HEAP32[$583>>2]|0; + $585 = (_bitshift64Ashr(0,($581|0),32)|0); + $586 = tempRet0; + $587 = (___muldi3(($585|0),($586|0),($577|0),($578|0))|0); + $588 = tempRet0; + $589 = (_i64Add(($568|0),($569|0),($587|0),($588|0))|0); + $590 = tempRet0; + $591 = (($output) + 48|0); + $592 = $591; + $593 = $592; + HEAP32[$593>>2] = $589; + $594 = (($592) + 4)|0; + $595 = $594; + HEAP32[$595>>2] = $590; + $596 = $191; + $597 = $596; + $598 = HEAP32[$597>>2]|0; + $599 = (($596) + 4)|0; + $600 = $599; + $601 = HEAP32[$600>>2]|0; + $602 = (_bitshift64Ashr(0,($598|0),32)|0); + $603 = tempRet0; + $604 = $285; + $605 = $604; + $606 = HEAP32[$605>>2]|0; + $607 = (($604) + 4)|0; + $608 = $607; + $609 = HEAP32[$608>>2]|0; + $610 = (_bitshift64Ashr(0,($606|0),32)|0); + $611 = tempRet0; + $612 = (___muldi3(($610|0),($611|0),($602|0),($603|0))|0); + $613 = tempRet0; + $614 = $298; + $615 = $614; + $616 = HEAP32[$615>>2]|0; + $617 = (($614) + 4)|0; + $618 = $617; + $619 = HEAP32[$618>>2]|0; + $620 = (_bitshift64Ashr(0,($616|0),32)|0); + $621 = tempRet0; + $622 = $178; + $623 = $622; + $624 = HEAP32[$623>>2]|0; + $625 = (($622) + 4)|0; + $626 = $625; + $627 = HEAP32[$626>>2]|0; + $628 = (_bitshift64Ashr(0,($624|0),32)|0); + $629 = tempRet0; + $630 = (___muldi3(($628|0),($629|0),($620|0),($621|0))|0); + $631 = tempRet0; + $632 = (_i64Add(($630|0),($631|0),($612|0),($613|0))|0); + $633 = tempRet0; + $634 = $106; + $635 = $634; + $636 = HEAP32[$635>>2]|0; + $637 = (($634) + 4)|0; + $638 = $637; + $639 = HEAP32[$638>>2]|0; + $640 = (_bitshift64Ashr(0,($636|0),32)|0); + $641 = tempRet0; + $642 = $410; + $643 = $642; + $644 = HEAP32[$643>>2]|0; + $645 = (($642) + 4)|0; + $646 = $645; + $647 = HEAP32[$646>>2]|0; + $648 = (_bitshift64Ashr(0,($644|0),32)|0); + $649 = tempRet0; + $650 = (___muldi3(($648|0),($649|0),($640|0),($641|0))|0); + $651 = tempRet0; + $652 = (_i64Add(($632|0),($633|0),($650|0),($651|0))|0); + $653 = tempRet0; + $654 = $423; + $655 = $654; + $656 = HEAP32[$655>>2]|0; + $657 = (($654) + 4)|0; + $658 = $657; + $659 = HEAP32[$658>>2]|0; + $660 = (_bitshift64Ashr(0,($656|0),32)|0); + $661 = tempRet0; + $662 = $93; + $663 = $662; + $664 = HEAP32[$663>>2]|0; + $665 = (($662) + 4)|0; + $666 = $665; + $667 = HEAP32[$666>>2]|0; + $668 = (_bitshift64Ashr(0,($664|0),32)|0); + $669 = tempRet0; + $670 = (___muldi3(($668|0),($669|0),($660|0),($661|0))|0); + $671 = tempRet0; + $672 = (_i64Add(($652|0),($653|0),($670|0),($671|0))|0); + $673 = tempRet0; + $674 = $41; + $675 = $674; + $676 = HEAP32[$675>>2]|0; + $677 = (($674) + 4)|0; + $678 = $677; + $679 = HEAP32[$678>>2]|0; + $680 = (_bitshift64Ashr(0,($676|0),32)|0); + $681 = tempRet0; + $682 = $557; + $683 = $682; + $684 = HEAP32[$683>>2]|0; + $685 = (($682) + 4)|0; + $686 = $685; + $687 = HEAP32[$686>>2]|0; + $688 = (_bitshift64Ashr(0,($684|0),32)|0); + $689 = tempRet0; + $690 = (___muldi3(($688|0),($689|0),($680|0),($681|0))|0); + $691 = tempRet0; + $692 = (_i64Add(($672|0),($673|0),($690|0),($691|0))|0); + $693 = tempRet0; + $694 = $570; + $695 = $694; + $696 = HEAP32[$695>>2]|0; + $697 = (($694) + 4)|0; + $698 = $697; + $699 = HEAP32[$698>>2]|0; + $700 = (_bitshift64Ashr(0,($696|0),32)|0); + $701 = tempRet0; + $702 = $30; + $703 = $702; + $704 = HEAP32[$703>>2]|0; + $705 = (($702) + 4)|0; + $706 = $705; + $707 = HEAP32[$706>>2]|0; + $708 = (_bitshift64Ashr(0,($704|0),32)|0); + $709 = tempRet0; + $710 = (___muldi3(($708|0),($709|0),($700|0),($701|0))|0); + $711 = tempRet0; + $712 = (_i64Add(($692|0),($693|0),($710|0),($711|0))|0); + $713 = tempRet0; + $714 = $in2; + $715 = $714; + $716 = HEAP32[$715>>2]|0; + $717 = (($714) + 4)|0; + $718 = $717; + $719 = HEAP32[$718>>2]|0; + $720 = (_bitshift64Ashr(0,($716|0),32)|0); + $721 = tempRet0; + $722 = (($in) + 56|0); + $723 = $722; + $724 = $723; + $725 = HEAP32[$724>>2]|0; + $726 = (($723) + 4)|0; + $727 = $726; + $728 = HEAP32[$727>>2]|0; + $729 = (_bitshift64Ashr(0,($725|0),32)|0); + $730 = tempRet0; + $731 = (___muldi3(($729|0),($730|0),($720|0),($721|0))|0); + $732 = tempRet0; + $733 = (_i64Add(($712|0),($713|0),($731|0),($732|0))|0); + $734 = tempRet0; + $735 = (($in2) + 56|0); + $736 = $735; + $737 = $736; + $738 = HEAP32[$737>>2]|0; + $739 = (($736) + 4)|0; + $740 = $739; + $741 = HEAP32[$740>>2]|0; + $742 = (_bitshift64Ashr(0,($738|0),32)|0); + $743 = tempRet0; + $744 = $in; + $745 = $744; + $746 = HEAP32[$745>>2]|0; + $747 = (($744) + 4)|0; + $748 = $747; + $749 = HEAP32[$748>>2]|0; + $750 = (_bitshift64Ashr(0,($746|0),32)|0); + $751 = tempRet0; + $752 = (___muldi3(($750|0),($751|0),($742|0),($743|0))|0); + $753 = tempRet0; + $754 = (_i64Add(($733|0),($734|0),($752|0),($753|0))|0); + $755 = tempRet0; + $756 = (($output) + 56|0); + $757 = $756; + $758 = $757; + HEAP32[$758>>2] = $754; + $759 = (($757) + 4)|0; + $760 = $759; + HEAP32[$760>>2] = $755; + $761 = $298; + $762 = $761; + $763 = HEAP32[$762>>2]|0; + $764 = (($761) + 4)|0; + $765 = $764; + $766 = HEAP32[$765>>2]|0; + $767 = (_bitshift64Ashr(0,($763|0),32)|0); + $768 = tempRet0; + $769 = $285; + $770 = $769; + $771 = HEAP32[$770>>2]|0; + $772 = (($769) + 4)|0; + $773 = $772; + $774 = HEAP32[$773>>2]|0; + $775 = (_bitshift64Ashr(0,($771|0),32)|0); + $776 = tempRet0; + $777 = (___muldi3(($775|0),($776|0),($767|0),($768|0))|0); + $778 = tempRet0; + $779 = $191; + $780 = $779; + $781 = HEAP32[$780>>2]|0; + $782 = (($779) + 4)|0; + $783 = $782; + $784 = HEAP32[$783>>2]|0; + $785 = (_bitshift64Ashr(0,($781|0),32)|0); + $786 = tempRet0; + $787 = $410; + $788 = $787; + $789 = HEAP32[$788>>2]|0; + $790 = (($787) + 4)|0; + $791 = $790; + $792 = HEAP32[$791>>2]|0; + $793 = (_bitshift64Ashr(0,($789|0),32)|0); + $794 = tempRet0; + $795 = (___muldi3(($793|0),($794|0),($785|0),($786|0))|0); + $796 = tempRet0; + $797 = $423; + $798 = $797; + $799 = HEAP32[$798>>2]|0; + $800 = (($797) + 4)|0; + $801 = $800; + $802 = HEAP32[$801>>2]|0; + $803 = (_bitshift64Ashr(0,($799|0),32)|0); + $804 = tempRet0; + $805 = $178; + $806 = $805; + $807 = HEAP32[$806>>2]|0; + $808 = (($805) + 4)|0; + $809 = $808; + $810 = HEAP32[$809>>2]|0; + $811 = (_bitshift64Ashr(0,($807|0),32)|0); + $812 = tempRet0; + $813 = (___muldi3(($811|0),($812|0),($803|0),($804|0))|0); + $814 = tempRet0; + $815 = (_i64Add(($813|0),($814|0),($795|0),($796|0))|0); + $816 = tempRet0; + $817 = $41; + $818 = $817; + $819 = HEAP32[$818>>2]|0; + $820 = (($817) + 4)|0; + $821 = $820; + $822 = HEAP32[$821>>2]|0; + $823 = (_bitshift64Ashr(0,($819|0),32)|0); + $824 = tempRet0; + $825 = $722; + $826 = $825; + $827 = HEAP32[$826>>2]|0; + $828 = (($825) + 4)|0; + $829 = $828; + $830 = HEAP32[$829>>2]|0; + $831 = (_bitshift64Ashr(0,($827|0),32)|0); + $832 = tempRet0; + $833 = (___muldi3(($831|0),($832|0),($823|0),($824|0))|0); + $834 = tempRet0; + $835 = (_i64Add(($815|0),($816|0),($833|0),($834|0))|0); + $836 = tempRet0; + $837 = $735; + $838 = $837; + $839 = HEAP32[$838>>2]|0; + $840 = (($837) + 4)|0; + $841 = $840; + $842 = HEAP32[$841>>2]|0; + $843 = (_bitshift64Ashr(0,($839|0),32)|0); + $844 = tempRet0; + $845 = $30; + $846 = $845; + $847 = HEAP32[$846>>2]|0; + $848 = (($845) + 4)|0; + $849 = $848; + $850 = HEAP32[$849>>2]|0; + $851 = (_bitshift64Ashr(0,($847|0),32)|0); + $852 = tempRet0; + $853 = (___muldi3(($851|0),($852|0),($843|0),($844|0))|0); + $854 = tempRet0; + $855 = (_i64Add(($835|0),($836|0),($853|0),($854|0))|0); + $856 = tempRet0; + $857 = (_bitshift64Shl(($855|0),($856|0),1)|0); + $858 = tempRet0; + $859 = (_i64Add(($857|0),($858|0),($777|0),($778|0))|0); + $860 = tempRet0; + $861 = $106; + $862 = $861; + $863 = HEAP32[$862>>2]|0; + $864 = (($861) + 4)|0; + $865 = $864; + $866 = HEAP32[$865>>2]|0; + $867 = (_bitshift64Ashr(0,($863|0),32)|0); + $868 = tempRet0; + $869 = $557; + $870 = $869; + $871 = HEAP32[$870>>2]|0; + $872 = (($869) + 4)|0; + $873 = $872; + $874 = HEAP32[$873>>2]|0; + $875 = (_bitshift64Ashr(0,($871|0),32)|0); + $876 = tempRet0; + $877 = (___muldi3(($875|0),($876|0),($867|0),($868|0))|0); + $878 = tempRet0; + $879 = (_i64Add(($859|0),($860|0),($877|0),($878|0))|0); + $880 = tempRet0; + $881 = $570; + $882 = $881; + $883 = HEAP32[$882>>2]|0; + $884 = (($881) + 4)|0; + $885 = $884; + $886 = HEAP32[$885>>2]|0; + $887 = (_bitshift64Ashr(0,($883|0),32)|0); + $888 = tempRet0; + $889 = $93; + $890 = $889; + $891 = HEAP32[$890>>2]|0; + $892 = (($889) + 4)|0; + $893 = $892; + $894 = HEAP32[$893>>2]|0; + $895 = (_bitshift64Ashr(0,($891|0),32)|0); + $896 = tempRet0; + $897 = (___muldi3(($895|0),($896|0),($887|0),($888|0))|0); + $898 = tempRet0; + $899 = (_i64Add(($879|0),($880|0),($897|0),($898|0))|0); + $900 = tempRet0; + $901 = $in2; + $902 = $901; + $903 = HEAP32[$902>>2]|0; + $904 = (($901) + 4)|0; + $905 = $904; + $906 = HEAP32[$905>>2]|0; + $907 = (_bitshift64Ashr(0,($903|0),32)|0); + $908 = tempRet0; + $909 = (($in) + 64|0); + $910 = $909; + $911 = $910; + $912 = HEAP32[$911>>2]|0; + $913 = (($910) + 4)|0; + $914 = $913; + $915 = HEAP32[$914>>2]|0; + $916 = (_bitshift64Ashr(0,($912|0),32)|0); + $917 = tempRet0; + $918 = (___muldi3(($916|0),($917|0),($907|0),($908|0))|0); + $919 = tempRet0; + $920 = (_i64Add(($899|0),($900|0),($918|0),($919|0))|0); + $921 = tempRet0; + $922 = (($in2) + 64|0); + $923 = $922; + $924 = $923; + $925 = HEAP32[$924>>2]|0; + $926 = (($923) + 4)|0; + $927 = $926; + $928 = HEAP32[$927>>2]|0; + $929 = (_bitshift64Ashr(0,($925|0),32)|0); + $930 = tempRet0; + $931 = $in; + $932 = $931; + $933 = HEAP32[$932>>2]|0; + $934 = (($931) + 4)|0; + $935 = $934; + $936 = HEAP32[$935>>2]|0; + $937 = (_bitshift64Ashr(0,($933|0),32)|0); + $938 = tempRet0; + $939 = (___muldi3(($937|0),($938|0),($929|0),($930|0))|0); + $940 = tempRet0; + $941 = (_i64Add(($920|0),($921|0),($939|0),($940|0))|0); + $942 = tempRet0; + $943 = (($output) + 64|0); + $944 = $943; + $945 = $944; + HEAP32[$945>>2] = $941; + $946 = (($944) + 4)|0; + $947 = $946; + HEAP32[$947>>2] = $942; + $948 = $298; + $949 = $948; + $950 = HEAP32[$949>>2]|0; + $951 = (($948) + 4)|0; + $952 = $951; + $953 = HEAP32[$952>>2]|0; + $954 = (_bitshift64Ashr(0,($950|0),32)|0); + $955 = tempRet0; + $956 = $410; + $957 = $956; + $958 = HEAP32[$957>>2]|0; + $959 = (($956) + 4)|0; + $960 = $959; + $961 = HEAP32[$960>>2]|0; + $962 = (_bitshift64Ashr(0,($958|0),32)|0); + $963 = tempRet0; + $964 = (___muldi3(($962|0),($963|0),($954|0),($955|0))|0); + $965 = tempRet0; + $966 = $423; + $967 = $966; + $968 = HEAP32[$967>>2]|0; + $969 = (($966) + 4)|0; + $970 = $969; + $971 = HEAP32[$970>>2]|0; + $972 = (_bitshift64Ashr(0,($968|0),32)|0); + $973 = tempRet0; + $974 = $285; + $975 = $974; + $976 = HEAP32[$975>>2]|0; + $977 = (($974) + 4)|0; + $978 = $977; + $979 = HEAP32[$978>>2]|0; + $980 = (_bitshift64Ashr(0,($976|0),32)|0); + $981 = tempRet0; + $982 = (___muldi3(($980|0),($981|0),($972|0),($973|0))|0); + $983 = tempRet0; + $984 = (_i64Add(($982|0),($983|0),($964|0),($965|0))|0); + $985 = tempRet0; + $986 = $191; + $987 = $986; + $988 = HEAP32[$987>>2]|0; + $989 = (($986) + 4)|0; + $990 = $989; + $991 = HEAP32[$990>>2]|0; + $992 = (_bitshift64Ashr(0,($988|0),32)|0); + $993 = tempRet0; + $994 = $557; + $995 = $994; + $996 = HEAP32[$995>>2]|0; + $997 = (($994) + 4)|0; + $998 = $997; + $999 = HEAP32[$998>>2]|0; + $1000 = (_bitshift64Ashr(0,($996|0),32)|0); + $1001 = tempRet0; + $1002 = (___muldi3(($1000|0),($1001|0),($992|0),($993|0))|0); + $1003 = tempRet0; + $1004 = (_i64Add(($984|0),($985|0),($1002|0),($1003|0))|0); + $1005 = tempRet0; + $1006 = $570; + $1007 = $1006; + $1008 = HEAP32[$1007>>2]|0; + $1009 = (($1006) + 4)|0; + $1010 = $1009; + $1011 = HEAP32[$1010>>2]|0; + $1012 = (_bitshift64Ashr(0,($1008|0),32)|0); + $1013 = tempRet0; + $1014 = $178; + $1015 = $1014; + $1016 = HEAP32[$1015>>2]|0; + $1017 = (($1014) + 4)|0; + $1018 = $1017; + $1019 = HEAP32[$1018>>2]|0; + $1020 = (_bitshift64Ashr(0,($1016|0),32)|0); + $1021 = tempRet0; + $1022 = (___muldi3(($1020|0),($1021|0),($1012|0),($1013|0))|0); + $1023 = tempRet0; + $1024 = (_i64Add(($1004|0),($1005|0),($1022|0),($1023|0))|0); + $1025 = tempRet0; + $1026 = $106; + $1027 = $1026; + $1028 = HEAP32[$1027>>2]|0; + $1029 = (($1026) + 4)|0; + $1030 = $1029; + $1031 = HEAP32[$1030>>2]|0; + $1032 = (_bitshift64Ashr(0,($1028|0),32)|0); + $1033 = tempRet0; + $1034 = $722; + $1035 = $1034; + $1036 = HEAP32[$1035>>2]|0; + $1037 = (($1034) + 4)|0; + $1038 = $1037; + $1039 = HEAP32[$1038>>2]|0; + $1040 = (_bitshift64Ashr(0,($1036|0),32)|0); + $1041 = tempRet0; + $1042 = (___muldi3(($1040|0),($1041|0),($1032|0),($1033|0))|0); + $1043 = tempRet0; + $1044 = (_i64Add(($1024|0),($1025|0),($1042|0),($1043|0))|0); + $1045 = tempRet0; + $1046 = $735; + $1047 = $1046; + $1048 = HEAP32[$1047>>2]|0; + $1049 = (($1046) + 4)|0; + $1050 = $1049; + $1051 = HEAP32[$1050>>2]|0; + $1052 = (_bitshift64Ashr(0,($1048|0),32)|0); + $1053 = tempRet0; + $1054 = $93; + $1055 = $1054; + $1056 = HEAP32[$1055>>2]|0; + $1057 = (($1054) + 4)|0; + $1058 = $1057; + $1059 = HEAP32[$1058>>2]|0; + $1060 = (_bitshift64Ashr(0,($1056|0),32)|0); + $1061 = tempRet0; + $1062 = (___muldi3(($1060|0),($1061|0),($1052|0),($1053|0))|0); + $1063 = tempRet0; + $1064 = (_i64Add(($1044|0),($1045|0),($1062|0),($1063|0))|0); + $1065 = tempRet0; + $1066 = $41; + $1067 = $1066; + $1068 = HEAP32[$1067>>2]|0; + $1069 = (($1066) + 4)|0; + $1070 = $1069; + $1071 = HEAP32[$1070>>2]|0; + $1072 = (_bitshift64Ashr(0,($1068|0),32)|0); + $1073 = tempRet0; + $1074 = $909; + $1075 = $1074; + $1076 = HEAP32[$1075>>2]|0; + $1077 = (($1074) + 4)|0; + $1078 = $1077; + $1079 = HEAP32[$1078>>2]|0; + $1080 = (_bitshift64Ashr(0,($1076|0),32)|0); + $1081 = tempRet0; + $1082 = (___muldi3(($1080|0),($1081|0),($1072|0),($1073|0))|0); + $1083 = tempRet0; + $1084 = (_i64Add(($1064|0),($1065|0),($1082|0),($1083|0))|0); + $1085 = tempRet0; + $1086 = $922; + $1087 = $1086; + $1088 = HEAP32[$1087>>2]|0; + $1089 = (($1086) + 4)|0; + $1090 = $1089; + $1091 = HEAP32[$1090>>2]|0; + $1092 = (_bitshift64Ashr(0,($1088|0),32)|0); + $1093 = tempRet0; + $1094 = $30; + $1095 = $1094; + $1096 = HEAP32[$1095>>2]|0; + $1097 = (($1094) + 4)|0; + $1098 = $1097; + $1099 = HEAP32[$1098>>2]|0; + $1100 = (_bitshift64Ashr(0,($1096|0),32)|0); + $1101 = tempRet0; + $1102 = (___muldi3(($1100|0),($1101|0),($1092|0),($1093|0))|0); + $1103 = tempRet0; + $1104 = (_i64Add(($1084|0),($1085|0),($1102|0),($1103|0))|0); + $1105 = tempRet0; + $1106 = $in2; + $1107 = $1106; + $1108 = HEAP32[$1107>>2]|0; + $1109 = (($1106) + 4)|0; + $1110 = $1109; + $1111 = HEAP32[$1110>>2]|0; + $1112 = (_bitshift64Ashr(0,($1108|0),32)|0); + $1113 = tempRet0; + $1114 = (($in) + 72|0); + $1115 = $1114; + $1116 = $1115; + $1117 = HEAP32[$1116>>2]|0; + $1118 = (($1115) + 4)|0; + $1119 = $1118; + $1120 = HEAP32[$1119>>2]|0; + $1121 = (_bitshift64Ashr(0,($1117|0),32)|0); + $1122 = tempRet0; + $1123 = (___muldi3(($1121|0),($1122|0),($1112|0),($1113|0))|0); + $1124 = tempRet0; + $1125 = (_i64Add(($1104|0),($1105|0),($1123|0),($1124|0))|0); + $1126 = tempRet0; + $1127 = (($in2) + 72|0); + $1128 = $1127; + $1129 = $1128; + $1130 = HEAP32[$1129>>2]|0; + $1131 = (($1128) + 4)|0; + $1132 = $1131; + $1133 = HEAP32[$1132>>2]|0; + $1134 = (_bitshift64Ashr(0,($1130|0),32)|0); + $1135 = tempRet0; + $1136 = $in; + $1137 = $1136; + $1138 = HEAP32[$1137>>2]|0; + $1139 = (($1136) + 4)|0; + $1140 = $1139; + $1141 = HEAP32[$1140>>2]|0; + $1142 = (_bitshift64Ashr(0,($1138|0),32)|0); + $1143 = tempRet0; + $1144 = (___muldi3(($1142|0),($1143|0),($1134|0),($1135|0))|0); + $1145 = tempRet0; + $1146 = (_i64Add(($1125|0),($1126|0),($1144|0),($1145|0))|0); + $1147 = tempRet0; + $1148 = (($output) + 72|0); + $1149 = $1148; + $1150 = $1149; + HEAP32[$1150>>2] = $1146; + $1151 = (($1149) + 4)|0; + $1152 = $1151; + HEAP32[$1152>>2] = $1147; + $1153 = $423; + $1154 = $1153; + $1155 = HEAP32[$1154>>2]|0; + $1156 = (($1153) + 4)|0; + $1157 = $1156; + $1158 = HEAP32[$1157>>2]|0; + $1159 = (_bitshift64Ashr(0,($1155|0),32)|0); + $1160 = tempRet0; + $1161 = $410; + $1162 = $1161; + $1163 = HEAP32[$1162>>2]|0; + $1164 = (($1161) + 4)|0; + $1165 = $1164; + $1166 = HEAP32[$1165>>2]|0; + $1167 = (_bitshift64Ashr(0,($1163|0),32)|0); + $1168 = tempRet0; + $1169 = (___muldi3(($1167|0),($1168|0),($1159|0),($1160|0))|0); + $1170 = tempRet0; + $1171 = $191; + $1172 = $1171; + $1173 = HEAP32[$1172>>2]|0; + $1174 = (($1171) + 4)|0; + $1175 = $1174; + $1176 = HEAP32[$1175>>2]|0; + $1177 = (_bitshift64Ashr(0,($1173|0),32)|0); + $1178 = tempRet0; + $1179 = $722; + $1180 = $1179; + $1181 = HEAP32[$1180>>2]|0; + $1182 = (($1179) + 4)|0; + $1183 = $1182; + $1184 = HEAP32[$1183>>2]|0; + $1185 = (_bitshift64Ashr(0,($1181|0),32)|0); + $1186 = tempRet0; + $1187 = (___muldi3(($1185|0),($1186|0),($1177|0),($1178|0))|0); + $1188 = tempRet0; + $1189 = (_i64Add(($1187|0),($1188|0),($1169|0),($1170|0))|0); + $1190 = tempRet0; + $1191 = $735; + $1192 = $1191; + $1193 = HEAP32[$1192>>2]|0; + $1194 = (($1191) + 4)|0; + $1195 = $1194; + $1196 = HEAP32[$1195>>2]|0; + $1197 = (_bitshift64Ashr(0,($1193|0),32)|0); + $1198 = tempRet0; + $1199 = $178; + $1200 = $1199; + $1201 = HEAP32[$1200>>2]|0; + $1202 = (($1199) + 4)|0; + $1203 = $1202; + $1204 = HEAP32[$1203>>2]|0; + $1205 = (_bitshift64Ashr(0,($1201|0),32)|0); + $1206 = tempRet0; + $1207 = (___muldi3(($1205|0),($1206|0),($1197|0),($1198|0))|0); + $1208 = tempRet0; + $1209 = (_i64Add(($1189|0),($1190|0),($1207|0),($1208|0))|0); + $1210 = tempRet0; + $1211 = $41; + $1212 = $1211; + $1213 = HEAP32[$1212>>2]|0; + $1214 = (($1211) + 4)|0; + $1215 = $1214; + $1216 = HEAP32[$1215>>2]|0; + $1217 = (_bitshift64Ashr(0,($1213|0),32)|0); + $1218 = tempRet0; + $1219 = $1114; + $1220 = $1219; + $1221 = HEAP32[$1220>>2]|0; + $1222 = (($1219) + 4)|0; + $1223 = $1222; + $1224 = HEAP32[$1223>>2]|0; + $1225 = (_bitshift64Ashr(0,($1221|0),32)|0); + $1226 = tempRet0; + $1227 = (___muldi3(($1225|0),($1226|0),($1217|0),($1218|0))|0); + $1228 = tempRet0; + $1229 = (_i64Add(($1209|0),($1210|0),($1227|0),($1228|0))|0); + $1230 = tempRet0; + $1231 = $1127; + $1232 = $1231; + $1233 = HEAP32[$1232>>2]|0; + $1234 = (($1231) + 4)|0; + $1235 = $1234; + $1236 = HEAP32[$1235>>2]|0; + $1237 = (_bitshift64Ashr(0,($1233|0),32)|0); + $1238 = tempRet0; + $1239 = $30; + $1240 = $1239; + $1241 = HEAP32[$1240>>2]|0; + $1242 = (($1239) + 4)|0; + $1243 = $1242; + $1244 = HEAP32[$1243>>2]|0; + $1245 = (_bitshift64Ashr(0,($1241|0),32)|0); + $1246 = tempRet0; + $1247 = (___muldi3(($1245|0),($1246|0),($1237|0),($1238|0))|0); + $1248 = tempRet0; + $1249 = (_i64Add(($1229|0),($1230|0),($1247|0),($1248|0))|0); + $1250 = tempRet0; + $1251 = (_bitshift64Shl(($1249|0),($1250|0),1)|0); + $1252 = tempRet0; + $1253 = $298; + $1254 = $1253; + $1255 = HEAP32[$1254>>2]|0; + $1256 = (($1253) + 4)|0; + $1257 = $1256; + $1258 = HEAP32[$1257>>2]|0; + $1259 = (_bitshift64Ashr(0,($1255|0),32)|0); + $1260 = tempRet0; + $1261 = $557; + $1262 = $1261; + $1263 = HEAP32[$1262>>2]|0; + $1264 = (($1261) + 4)|0; + $1265 = $1264; + $1266 = HEAP32[$1265>>2]|0; + $1267 = (_bitshift64Ashr(0,($1263|0),32)|0); + $1268 = tempRet0; + $1269 = (___muldi3(($1267|0),($1268|0),($1259|0),($1260|0))|0); + $1270 = tempRet0; + $1271 = (_i64Add(($1251|0),($1252|0),($1269|0),($1270|0))|0); + $1272 = tempRet0; + $1273 = $570; + $1274 = $1273; + $1275 = HEAP32[$1274>>2]|0; + $1276 = (($1273) + 4)|0; + $1277 = $1276; + $1278 = HEAP32[$1277>>2]|0; + $1279 = (_bitshift64Ashr(0,($1275|0),32)|0); + $1280 = tempRet0; + $1281 = $285; + $1282 = $1281; + $1283 = HEAP32[$1282>>2]|0; + $1284 = (($1281) + 4)|0; + $1285 = $1284; + $1286 = HEAP32[$1285>>2]|0; + $1287 = (_bitshift64Ashr(0,($1283|0),32)|0); + $1288 = tempRet0; + $1289 = (___muldi3(($1287|0),($1288|0),($1279|0),($1280|0))|0); + $1290 = tempRet0; + $1291 = (_i64Add(($1271|0),($1272|0),($1289|0),($1290|0))|0); + $1292 = tempRet0; + $1293 = $106; + $1294 = $1293; + $1295 = HEAP32[$1294>>2]|0; + $1296 = (($1293) + 4)|0; + $1297 = $1296; + $1298 = HEAP32[$1297>>2]|0; + $1299 = (_bitshift64Ashr(0,($1295|0),32)|0); + $1300 = tempRet0; + $1301 = $909; + $1302 = $1301; + $1303 = HEAP32[$1302>>2]|0; + $1304 = (($1301) + 4)|0; + $1305 = $1304; + $1306 = HEAP32[$1305>>2]|0; + $1307 = (_bitshift64Ashr(0,($1303|0),32)|0); + $1308 = tempRet0; + $1309 = (___muldi3(($1307|0),($1308|0),($1299|0),($1300|0))|0); + $1310 = tempRet0; + $1311 = (_i64Add(($1291|0),($1292|0),($1309|0),($1310|0))|0); + $1312 = tempRet0; + $1313 = $922; + $1314 = $1313; + $1315 = HEAP32[$1314>>2]|0; + $1316 = (($1313) + 4)|0; + $1317 = $1316; + $1318 = HEAP32[$1317>>2]|0; + $1319 = (_bitshift64Ashr(0,($1315|0),32)|0); + $1320 = tempRet0; + $1321 = $93; + $1322 = $1321; + $1323 = HEAP32[$1322>>2]|0; + $1324 = (($1321) + 4)|0; + $1325 = $1324; + $1326 = HEAP32[$1325>>2]|0; + $1327 = (_bitshift64Ashr(0,($1323|0),32)|0); + $1328 = tempRet0; + $1329 = (___muldi3(($1327|0),($1328|0),($1319|0),($1320|0))|0); + $1330 = tempRet0; + $1331 = (_i64Add(($1311|0),($1312|0),($1329|0),($1330|0))|0); + $1332 = tempRet0; + $1333 = (($output) + 80|0); + $1334 = $1333; + $1335 = $1334; + HEAP32[$1335>>2] = $1331; + $1336 = (($1334) + 4)|0; + $1337 = $1336; + HEAP32[$1337>>2] = $1332; + $1338 = $423; + $1339 = $1338; + $1340 = HEAP32[$1339>>2]|0; + $1341 = (($1338) + 4)|0; + $1342 = $1341; + $1343 = HEAP32[$1342>>2]|0; + $1344 = (_bitshift64Ashr(0,($1340|0),32)|0); + $1345 = tempRet0; + $1346 = $557; + $1347 = $1346; + $1348 = HEAP32[$1347>>2]|0; + $1349 = (($1346) + 4)|0; + $1350 = $1349; + $1351 = HEAP32[$1350>>2]|0; + $1352 = (_bitshift64Ashr(0,($1348|0),32)|0); + $1353 = tempRet0; + $1354 = (___muldi3(($1352|0),($1353|0),($1344|0),($1345|0))|0); + $1355 = tempRet0; + $1356 = $570; + $1357 = $1356; + $1358 = HEAP32[$1357>>2]|0; + $1359 = (($1356) + 4)|0; + $1360 = $1359; + $1361 = HEAP32[$1360>>2]|0; + $1362 = (_bitshift64Ashr(0,($1358|0),32)|0); + $1363 = tempRet0; + $1364 = $410; + $1365 = $1364; + $1366 = HEAP32[$1365>>2]|0; + $1367 = (($1364) + 4)|0; + $1368 = $1367; + $1369 = HEAP32[$1368>>2]|0; + $1370 = (_bitshift64Ashr(0,($1366|0),32)|0); + $1371 = tempRet0; + $1372 = (___muldi3(($1370|0),($1371|0),($1362|0),($1363|0))|0); + $1373 = tempRet0; + $1374 = (_i64Add(($1372|0),($1373|0),($1354|0),($1355|0))|0); + $1375 = tempRet0; + $1376 = $298; + $1377 = $1376; + $1378 = HEAP32[$1377>>2]|0; + $1379 = (($1376) + 4)|0; + $1380 = $1379; + $1381 = HEAP32[$1380>>2]|0; + $1382 = (_bitshift64Ashr(0,($1378|0),32)|0); + $1383 = tempRet0; + $1384 = $722; + $1385 = $1384; + $1386 = HEAP32[$1385>>2]|0; + $1387 = (($1384) + 4)|0; + $1388 = $1387; + $1389 = HEAP32[$1388>>2]|0; + $1390 = (_bitshift64Ashr(0,($1386|0),32)|0); + $1391 = tempRet0; + $1392 = (___muldi3(($1390|0),($1391|0),($1382|0),($1383|0))|0); + $1393 = tempRet0; + $1394 = (_i64Add(($1374|0),($1375|0),($1392|0),($1393|0))|0); + $1395 = tempRet0; + $1396 = $735; + $1397 = $1396; + $1398 = HEAP32[$1397>>2]|0; + $1399 = (($1396) + 4)|0; + $1400 = $1399; + $1401 = HEAP32[$1400>>2]|0; + $1402 = (_bitshift64Ashr(0,($1398|0),32)|0); + $1403 = tempRet0; + $1404 = $285; + $1405 = $1404; + $1406 = HEAP32[$1405>>2]|0; + $1407 = (($1404) + 4)|0; + $1408 = $1407; + $1409 = HEAP32[$1408>>2]|0; + $1410 = (_bitshift64Ashr(0,($1406|0),32)|0); + $1411 = tempRet0; + $1412 = (___muldi3(($1410|0),($1411|0),($1402|0),($1403|0))|0); + $1413 = tempRet0; + $1414 = (_i64Add(($1394|0),($1395|0),($1412|0),($1413|0))|0); + $1415 = tempRet0; + $1416 = $191; + $1417 = $1416; + $1418 = HEAP32[$1417>>2]|0; + $1419 = (($1416) + 4)|0; + $1420 = $1419; + $1421 = HEAP32[$1420>>2]|0; + $1422 = (_bitshift64Ashr(0,($1418|0),32)|0); + $1423 = tempRet0; + $1424 = $909; + $1425 = $1424; + $1426 = HEAP32[$1425>>2]|0; + $1427 = (($1424) + 4)|0; + $1428 = $1427; + $1429 = HEAP32[$1428>>2]|0; + $1430 = (_bitshift64Ashr(0,($1426|0),32)|0); + $1431 = tempRet0; + $1432 = (___muldi3(($1430|0),($1431|0),($1422|0),($1423|0))|0); + $1433 = tempRet0; + $1434 = (_i64Add(($1414|0),($1415|0),($1432|0),($1433|0))|0); + $1435 = tempRet0; + $1436 = $922; + $1437 = $1436; + $1438 = HEAP32[$1437>>2]|0; + $1439 = (($1436) + 4)|0; + $1440 = $1439; + $1441 = HEAP32[$1440>>2]|0; + $1442 = (_bitshift64Ashr(0,($1438|0),32)|0); + $1443 = tempRet0; + $1444 = $178; + $1445 = $1444; + $1446 = HEAP32[$1445>>2]|0; + $1447 = (($1444) + 4)|0; + $1448 = $1447; + $1449 = HEAP32[$1448>>2]|0; + $1450 = (_bitshift64Ashr(0,($1446|0),32)|0); + $1451 = tempRet0; + $1452 = (___muldi3(($1450|0),($1451|0),($1442|0),($1443|0))|0); + $1453 = tempRet0; + $1454 = (_i64Add(($1434|0),($1435|0),($1452|0),($1453|0))|0); + $1455 = tempRet0; + $1456 = $106; + $1457 = $1456; + $1458 = HEAP32[$1457>>2]|0; + $1459 = (($1456) + 4)|0; + $1460 = $1459; + $1461 = HEAP32[$1460>>2]|0; + $1462 = (_bitshift64Ashr(0,($1458|0),32)|0); + $1463 = tempRet0; + $1464 = $1114; + $1465 = $1464; + $1466 = HEAP32[$1465>>2]|0; + $1467 = (($1464) + 4)|0; + $1468 = $1467; + $1469 = HEAP32[$1468>>2]|0; + $1470 = (_bitshift64Ashr(0,($1466|0),32)|0); + $1471 = tempRet0; + $1472 = (___muldi3(($1470|0),($1471|0),($1462|0),($1463|0))|0); + $1473 = tempRet0; + $1474 = (_i64Add(($1454|0),($1455|0),($1472|0),($1473|0))|0); + $1475 = tempRet0; + $1476 = $1127; + $1477 = $1476; + $1478 = HEAP32[$1477>>2]|0; + $1479 = (($1476) + 4)|0; + $1480 = $1479; + $1481 = HEAP32[$1480>>2]|0; + $1482 = (_bitshift64Ashr(0,($1478|0),32)|0); + $1483 = tempRet0; + $1484 = $93; + $1485 = $1484; + $1486 = HEAP32[$1485>>2]|0; + $1487 = (($1484) + 4)|0; + $1488 = $1487; + $1489 = HEAP32[$1488>>2]|0; + $1490 = (_bitshift64Ashr(0,($1486|0),32)|0); + $1491 = tempRet0; + $1492 = (___muldi3(($1490|0),($1491|0),($1482|0),($1483|0))|0); + $1493 = tempRet0; + $1494 = (_i64Add(($1474|0),($1475|0),($1492|0),($1493|0))|0); + $1495 = tempRet0; + $1496 = (($output) + 88|0); + $1497 = $1496; + $1498 = $1497; + HEAP32[$1498>>2] = $1494; + $1499 = (($1497) + 4)|0; + $1500 = $1499; + HEAP32[$1500>>2] = $1495; + $1501 = $570; + $1502 = $1501; + $1503 = HEAP32[$1502>>2]|0; + $1504 = (($1501) + 4)|0; + $1505 = $1504; + $1506 = HEAP32[$1505>>2]|0; + $1507 = (_bitshift64Ashr(0,($1503|0),32)|0); + $1508 = tempRet0; + $1509 = $557; + $1510 = $1509; + $1511 = HEAP32[$1510>>2]|0; + $1512 = (($1509) + 4)|0; + $1513 = $1512; + $1514 = HEAP32[$1513>>2]|0; + $1515 = (_bitshift64Ashr(0,($1511|0),32)|0); + $1516 = tempRet0; + $1517 = (___muldi3(($1515|0),($1516|0),($1507|0),($1508|0))|0); + $1518 = tempRet0; + $1519 = $423; + $1520 = $1519; + $1521 = HEAP32[$1520>>2]|0; + $1522 = (($1519) + 4)|0; + $1523 = $1522; + $1524 = HEAP32[$1523>>2]|0; + $1525 = (_bitshift64Ashr(0,($1521|0),32)|0); + $1526 = tempRet0; + $1527 = $722; + $1528 = $1527; + $1529 = HEAP32[$1528>>2]|0; + $1530 = (($1527) + 4)|0; + $1531 = $1530; + $1532 = HEAP32[$1531>>2]|0; + $1533 = (_bitshift64Ashr(0,($1529|0),32)|0); + $1534 = tempRet0; + $1535 = (___muldi3(($1533|0),($1534|0),($1525|0),($1526|0))|0); + $1536 = tempRet0; + $1537 = $735; + $1538 = $1537; + $1539 = HEAP32[$1538>>2]|0; + $1540 = (($1537) + 4)|0; + $1541 = $1540; + $1542 = HEAP32[$1541>>2]|0; + $1543 = (_bitshift64Ashr(0,($1539|0),32)|0); + $1544 = tempRet0; + $1545 = $410; + $1546 = $1545; + $1547 = HEAP32[$1546>>2]|0; + $1548 = (($1545) + 4)|0; + $1549 = $1548; + $1550 = HEAP32[$1549>>2]|0; + $1551 = (_bitshift64Ashr(0,($1547|0),32)|0); + $1552 = tempRet0; + $1553 = (___muldi3(($1551|0),($1552|0),($1543|0),($1544|0))|0); + $1554 = tempRet0; + $1555 = (_i64Add(($1553|0),($1554|0),($1535|0),($1536|0))|0); + $1556 = tempRet0; + $1557 = $191; + $1558 = $1557; + $1559 = HEAP32[$1558>>2]|0; + $1560 = (($1557) + 4)|0; + $1561 = $1560; + $1562 = HEAP32[$1561>>2]|0; + $1563 = (_bitshift64Ashr(0,($1559|0),32)|0); + $1564 = tempRet0; + $1565 = $1114; + $1566 = $1565; + $1567 = HEAP32[$1566>>2]|0; + $1568 = (($1565) + 4)|0; + $1569 = $1568; + $1570 = HEAP32[$1569>>2]|0; + $1571 = (_bitshift64Ashr(0,($1567|0),32)|0); + $1572 = tempRet0; + $1573 = (___muldi3(($1571|0),($1572|0),($1563|0),($1564|0))|0); + $1574 = tempRet0; + $1575 = (_i64Add(($1555|0),($1556|0),($1573|0),($1574|0))|0); + $1576 = tempRet0; + $1577 = $1127; + $1578 = $1577; + $1579 = HEAP32[$1578>>2]|0; + $1580 = (($1577) + 4)|0; + $1581 = $1580; + $1582 = HEAP32[$1581>>2]|0; + $1583 = (_bitshift64Ashr(0,($1579|0),32)|0); + $1584 = tempRet0; + $1585 = $178; + $1586 = $1585; + $1587 = HEAP32[$1586>>2]|0; + $1588 = (($1585) + 4)|0; + $1589 = $1588; + $1590 = HEAP32[$1589>>2]|0; + $1591 = (_bitshift64Ashr(0,($1587|0),32)|0); + $1592 = tempRet0; + $1593 = (___muldi3(($1591|0),($1592|0),($1583|0),($1584|0))|0); + $1594 = tempRet0; + $1595 = (_i64Add(($1575|0),($1576|0),($1593|0),($1594|0))|0); + $1596 = tempRet0; + $1597 = (_bitshift64Shl(($1595|0),($1596|0),1)|0); + $1598 = tempRet0; + $1599 = (_i64Add(($1597|0),($1598|0),($1517|0),($1518|0))|0); + $1600 = tempRet0; + $1601 = $298; + $1602 = $1601; + $1603 = HEAP32[$1602>>2]|0; + $1604 = (($1601) + 4)|0; + $1605 = $1604; + $1606 = HEAP32[$1605>>2]|0; + $1607 = (_bitshift64Ashr(0,($1603|0),32)|0); + $1608 = tempRet0; + $1609 = $909; + $1610 = $1609; + $1611 = HEAP32[$1610>>2]|0; + $1612 = (($1609) + 4)|0; + $1613 = $1612; + $1614 = HEAP32[$1613>>2]|0; + $1615 = (_bitshift64Ashr(0,($1611|0),32)|0); + $1616 = tempRet0; + $1617 = (___muldi3(($1615|0),($1616|0),($1607|0),($1608|0))|0); + $1618 = tempRet0; + $1619 = (_i64Add(($1599|0),($1600|0),($1617|0),($1618|0))|0); + $1620 = tempRet0; + $1621 = $922; + $1622 = $1621; + $1623 = HEAP32[$1622>>2]|0; + $1624 = (($1621) + 4)|0; + $1625 = $1624; + $1626 = HEAP32[$1625>>2]|0; + $1627 = (_bitshift64Ashr(0,($1623|0),32)|0); + $1628 = tempRet0; + $1629 = $285; + $1630 = $1629; + $1631 = HEAP32[$1630>>2]|0; + $1632 = (($1629) + 4)|0; + $1633 = $1632; + $1634 = HEAP32[$1633>>2]|0; + $1635 = (_bitshift64Ashr(0,($1631|0),32)|0); + $1636 = tempRet0; + $1637 = (___muldi3(($1635|0),($1636|0),($1627|0),($1628|0))|0); + $1638 = tempRet0; + $1639 = (_i64Add(($1619|0),($1620|0),($1637|0),($1638|0))|0); + $1640 = tempRet0; + $1641 = (($output) + 96|0); + $1642 = $1641; + $1643 = $1642; + HEAP32[$1643>>2] = $1639; + $1644 = (($1642) + 4)|0; + $1645 = $1644; + HEAP32[$1645>>2] = $1640; + $1646 = $570; + $1647 = $1646; + $1648 = HEAP32[$1647>>2]|0; + $1649 = (($1646) + 4)|0; + $1650 = $1649; + $1651 = HEAP32[$1650>>2]|0; + $1652 = (_bitshift64Ashr(0,($1648|0),32)|0); + $1653 = tempRet0; + $1654 = $722; + $1655 = $1654; + $1656 = HEAP32[$1655>>2]|0; + $1657 = (($1654) + 4)|0; + $1658 = $1657; + $1659 = HEAP32[$1658>>2]|0; + $1660 = (_bitshift64Ashr(0,($1656|0),32)|0); + $1661 = tempRet0; + $1662 = (___muldi3(($1660|0),($1661|0),($1652|0),($1653|0))|0); + $1663 = tempRet0; + $1664 = $735; + $1665 = $1664; + $1666 = HEAP32[$1665>>2]|0; + $1667 = (($1664) + 4)|0; + $1668 = $1667; + $1669 = HEAP32[$1668>>2]|0; + $1670 = (_bitshift64Ashr(0,($1666|0),32)|0); + $1671 = tempRet0; + $1672 = $557; + $1673 = $1672; + $1674 = HEAP32[$1673>>2]|0; + $1675 = (($1672) + 4)|0; + $1676 = $1675; + $1677 = HEAP32[$1676>>2]|0; + $1678 = (_bitshift64Ashr(0,($1674|0),32)|0); + $1679 = tempRet0; + $1680 = (___muldi3(($1678|0),($1679|0),($1670|0),($1671|0))|0); + $1681 = tempRet0; + $1682 = (_i64Add(($1680|0),($1681|0),($1662|0),($1663|0))|0); + $1683 = tempRet0; + $1684 = $423; + $1685 = $1684; + $1686 = HEAP32[$1685>>2]|0; + $1687 = (($1684) + 4)|0; + $1688 = $1687; + $1689 = HEAP32[$1688>>2]|0; + $1690 = (_bitshift64Ashr(0,($1686|0),32)|0); + $1691 = tempRet0; + $1692 = $909; + $1693 = $1692; + $1694 = HEAP32[$1693>>2]|0; + $1695 = (($1692) + 4)|0; + $1696 = $1695; + $1697 = HEAP32[$1696>>2]|0; + $1698 = (_bitshift64Ashr(0,($1694|0),32)|0); + $1699 = tempRet0; + $1700 = (___muldi3(($1698|0),($1699|0),($1690|0),($1691|0))|0); + $1701 = tempRet0; + $1702 = (_i64Add(($1682|0),($1683|0),($1700|0),($1701|0))|0); + $1703 = tempRet0; + $1704 = $922; + $1705 = $1704; + $1706 = HEAP32[$1705>>2]|0; + $1707 = (($1704) + 4)|0; + $1708 = $1707; + $1709 = HEAP32[$1708>>2]|0; + $1710 = (_bitshift64Ashr(0,($1706|0),32)|0); + $1711 = tempRet0; + $1712 = $410; + $1713 = $1712; + $1714 = HEAP32[$1713>>2]|0; + $1715 = (($1712) + 4)|0; + $1716 = $1715; + $1717 = HEAP32[$1716>>2]|0; + $1718 = (_bitshift64Ashr(0,($1714|0),32)|0); + $1719 = tempRet0; + $1720 = (___muldi3(($1718|0),($1719|0),($1710|0),($1711|0))|0); + $1721 = tempRet0; + $1722 = (_i64Add(($1702|0),($1703|0),($1720|0),($1721|0))|0); + $1723 = tempRet0; + $1724 = $298; + $1725 = $1724; + $1726 = HEAP32[$1725>>2]|0; + $1727 = (($1724) + 4)|0; + $1728 = $1727; + $1729 = HEAP32[$1728>>2]|0; + $1730 = (_bitshift64Ashr(0,($1726|0),32)|0); + $1731 = tempRet0; + $1732 = $1114; + $1733 = $1732; + $1734 = HEAP32[$1733>>2]|0; + $1735 = (($1732) + 4)|0; + $1736 = $1735; + $1737 = HEAP32[$1736>>2]|0; + $1738 = (_bitshift64Ashr(0,($1734|0),32)|0); + $1739 = tempRet0; + $1740 = (___muldi3(($1738|0),($1739|0),($1730|0),($1731|0))|0); + $1741 = tempRet0; + $1742 = (_i64Add(($1722|0),($1723|0),($1740|0),($1741|0))|0); + $1743 = tempRet0; + $1744 = $1127; + $1745 = $1744; + $1746 = HEAP32[$1745>>2]|0; + $1747 = (($1744) + 4)|0; + $1748 = $1747; + $1749 = HEAP32[$1748>>2]|0; + $1750 = (_bitshift64Ashr(0,($1746|0),32)|0); + $1751 = tempRet0; + $1752 = $285; + $1753 = $1752; + $1754 = HEAP32[$1753>>2]|0; + $1755 = (($1752) + 4)|0; + $1756 = $1755; + $1757 = HEAP32[$1756>>2]|0; + $1758 = (_bitshift64Ashr(0,($1754|0),32)|0); + $1759 = tempRet0; + $1760 = (___muldi3(($1758|0),($1759|0),($1750|0),($1751|0))|0); + $1761 = tempRet0; + $1762 = (_i64Add(($1742|0),($1743|0),($1760|0),($1761|0))|0); + $1763 = tempRet0; + $1764 = (($output) + 104|0); + $1765 = $1764; + $1766 = $1765; + HEAP32[$1766>>2] = $1762; + $1767 = (($1765) + 4)|0; + $1768 = $1767; + HEAP32[$1768>>2] = $1763; + $1769 = $735; + $1770 = $1769; + $1771 = HEAP32[$1770>>2]|0; + $1772 = (($1769) + 4)|0; + $1773 = $1772; + $1774 = HEAP32[$1773>>2]|0; + $1775 = (_bitshift64Ashr(0,($1771|0),32)|0); + $1776 = tempRet0; + $1777 = $722; + $1778 = $1777; + $1779 = HEAP32[$1778>>2]|0; + $1780 = (($1777) + 4)|0; + $1781 = $1780; + $1782 = HEAP32[$1781>>2]|0; + $1783 = (_bitshift64Ashr(0,($1779|0),32)|0); + $1784 = tempRet0; + $1785 = (___muldi3(($1783|0),($1784|0),($1775|0),($1776|0))|0); + $1786 = tempRet0; + $1787 = $423; + $1788 = $1787; + $1789 = HEAP32[$1788>>2]|0; + $1790 = (($1787) + 4)|0; + $1791 = $1790; + $1792 = HEAP32[$1791>>2]|0; + $1793 = (_bitshift64Ashr(0,($1789|0),32)|0); + $1794 = tempRet0; + $1795 = $1114; + $1796 = $1795; + $1797 = HEAP32[$1796>>2]|0; + $1798 = (($1795) + 4)|0; + $1799 = $1798; + $1800 = HEAP32[$1799>>2]|0; + $1801 = (_bitshift64Ashr(0,($1797|0),32)|0); + $1802 = tempRet0; + $1803 = (___muldi3(($1801|0),($1802|0),($1793|0),($1794|0))|0); + $1804 = tempRet0; + $1805 = (_i64Add(($1803|0),($1804|0),($1785|0),($1786|0))|0); + $1806 = tempRet0; + $1807 = $1127; + $1808 = $1807; + $1809 = HEAP32[$1808>>2]|0; + $1810 = (($1807) + 4)|0; + $1811 = $1810; + $1812 = HEAP32[$1811>>2]|0; + $1813 = (_bitshift64Ashr(0,($1809|0),32)|0); + $1814 = tempRet0; + $1815 = $410; + $1816 = $1815; + $1817 = HEAP32[$1816>>2]|0; + $1818 = (($1815) + 4)|0; + $1819 = $1818; + $1820 = HEAP32[$1819>>2]|0; + $1821 = (_bitshift64Ashr(0,($1817|0),32)|0); + $1822 = tempRet0; + $1823 = (___muldi3(($1821|0),($1822|0),($1813|0),($1814|0))|0); + $1824 = tempRet0; + $1825 = (_i64Add(($1805|0),($1806|0),($1823|0),($1824|0))|0); + $1826 = tempRet0; + $1827 = (_bitshift64Shl(($1825|0),($1826|0),1)|0); + $1828 = tempRet0; + $1829 = $570; + $1830 = $1829; + $1831 = HEAP32[$1830>>2]|0; + $1832 = (($1829) + 4)|0; + $1833 = $1832; + $1834 = HEAP32[$1833>>2]|0; + $1835 = (_bitshift64Ashr(0,($1831|0),32)|0); + $1836 = tempRet0; + $1837 = $909; + $1838 = $1837; + $1839 = HEAP32[$1838>>2]|0; + $1840 = (($1837) + 4)|0; + $1841 = $1840; + $1842 = HEAP32[$1841>>2]|0; + $1843 = (_bitshift64Ashr(0,($1839|0),32)|0); + $1844 = tempRet0; + $1845 = (___muldi3(($1843|0),($1844|0),($1835|0),($1836|0))|0); + $1846 = tempRet0; + $1847 = (_i64Add(($1827|0),($1828|0),($1845|0),($1846|0))|0); + $1848 = tempRet0; + $1849 = $922; + $1850 = $1849; + $1851 = HEAP32[$1850>>2]|0; + $1852 = (($1849) + 4)|0; + $1853 = $1852; + $1854 = HEAP32[$1853>>2]|0; + $1855 = (_bitshift64Ashr(0,($1851|0),32)|0); + $1856 = tempRet0; + $1857 = $557; + $1858 = $1857; + $1859 = HEAP32[$1858>>2]|0; + $1860 = (($1857) + 4)|0; + $1861 = $1860; + $1862 = HEAP32[$1861>>2]|0; + $1863 = (_bitshift64Ashr(0,($1859|0),32)|0); + $1864 = tempRet0; + $1865 = (___muldi3(($1863|0),($1864|0),($1855|0),($1856|0))|0); + $1866 = tempRet0; + $1867 = (_i64Add(($1847|0),($1848|0),($1865|0),($1866|0))|0); + $1868 = tempRet0; + $1869 = (($output) + 112|0); + $1870 = $1869; + $1871 = $1870; + HEAP32[$1871>>2] = $1867; + $1872 = (($1870) + 4)|0; + $1873 = $1872; + HEAP32[$1873>>2] = $1868; + $1874 = $735; + $1875 = $1874; + $1876 = HEAP32[$1875>>2]|0; + $1877 = (($1874) + 4)|0; + $1878 = $1877; + $1879 = HEAP32[$1878>>2]|0; + $1880 = (_bitshift64Ashr(0,($1876|0),32)|0); + $1881 = tempRet0; + $1882 = $909; + $1883 = $1882; + $1884 = HEAP32[$1883>>2]|0; + $1885 = (($1882) + 4)|0; + $1886 = $1885; + $1887 = HEAP32[$1886>>2]|0; + $1888 = (_bitshift64Ashr(0,($1884|0),32)|0); + $1889 = tempRet0; + $1890 = (___muldi3(($1888|0),($1889|0),($1880|0),($1881|0))|0); + $1891 = tempRet0; + $1892 = $922; + $1893 = $1892; + $1894 = HEAP32[$1893>>2]|0; + $1895 = (($1892) + 4)|0; + $1896 = $1895; + $1897 = HEAP32[$1896>>2]|0; + $1898 = (_bitshift64Ashr(0,($1894|0),32)|0); + $1899 = tempRet0; + $1900 = $722; + $1901 = $1900; + $1902 = HEAP32[$1901>>2]|0; + $1903 = (($1900) + 4)|0; + $1904 = $1903; + $1905 = HEAP32[$1904>>2]|0; + $1906 = (_bitshift64Ashr(0,($1902|0),32)|0); + $1907 = tempRet0; + $1908 = (___muldi3(($1906|0),($1907|0),($1898|0),($1899|0))|0); + $1909 = tempRet0; + $1910 = (_i64Add(($1908|0),($1909|0),($1890|0),($1891|0))|0); + $1911 = tempRet0; + $1912 = $570; + $1913 = $1912; + $1914 = HEAP32[$1913>>2]|0; + $1915 = (($1912) + 4)|0; + $1916 = $1915; + $1917 = HEAP32[$1916>>2]|0; + $1918 = (_bitshift64Ashr(0,($1914|0),32)|0); + $1919 = tempRet0; + $1920 = $1114; + $1921 = $1920; + $1922 = HEAP32[$1921>>2]|0; + $1923 = (($1920) + 4)|0; + $1924 = $1923; + $1925 = HEAP32[$1924>>2]|0; + $1926 = (_bitshift64Ashr(0,($1922|0),32)|0); + $1927 = tempRet0; + $1928 = (___muldi3(($1926|0),($1927|0),($1918|0),($1919|0))|0); + $1929 = tempRet0; + $1930 = (_i64Add(($1910|0),($1911|0),($1928|0),($1929|0))|0); + $1931 = tempRet0; + $1932 = $1127; + $1933 = $1932; + $1934 = HEAP32[$1933>>2]|0; + $1935 = (($1932) + 4)|0; + $1936 = $1935; + $1937 = HEAP32[$1936>>2]|0; + $1938 = (_bitshift64Ashr(0,($1934|0),32)|0); + $1939 = tempRet0; + $1940 = $557; + $1941 = $1940; + $1942 = HEAP32[$1941>>2]|0; + $1943 = (($1940) + 4)|0; + $1944 = $1943; + $1945 = HEAP32[$1944>>2]|0; + $1946 = (_bitshift64Ashr(0,($1942|0),32)|0); + $1947 = tempRet0; + $1948 = (___muldi3(($1946|0),($1947|0),($1938|0),($1939|0))|0); + $1949 = tempRet0; + $1950 = (_i64Add(($1930|0),($1931|0),($1948|0),($1949|0))|0); + $1951 = tempRet0; + $1952 = (($output) + 120|0); + $1953 = $1952; + $1954 = $1953; + HEAP32[$1954>>2] = $1950; + $1955 = (($1953) + 4)|0; + $1956 = $1955; + HEAP32[$1956>>2] = $1951; + $1957 = $922; + $1958 = $1957; + $1959 = HEAP32[$1958>>2]|0; + $1960 = (($1957) + 4)|0; + $1961 = $1960; + $1962 = HEAP32[$1961>>2]|0; + $1963 = (_bitshift64Ashr(0,($1959|0),32)|0); + $1964 = tempRet0; + $1965 = $909; + $1966 = $1965; + $1967 = HEAP32[$1966>>2]|0; + $1968 = (($1965) + 4)|0; + $1969 = $1968; + $1970 = HEAP32[$1969>>2]|0; + $1971 = (_bitshift64Ashr(0,($1967|0),32)|0); + $1972 = tempRet0; + $1973 = (___muldi3(($1971|0),($1972|0),($1963|0),($1964|0))|0); + $1974 = tempRet0; + $1975 = $735; + $1976 = $1975; + $1977 = HEAP32[$1976>>2]|0; + $1978 = (($1975) + 4)|0; + $1979 = $1978; + $1980 = HEAP32[$1979>>2]|0; + $1981 = (_bitshift64Ashr(0,($1977|0),32)|0); + $1982 = tempRet0; + $1983 = $1114; + $1984 = $1983; + $1985 = HEAP32[$1984>>2]|0; + $1986 = (($1983) + 4)|0; + $1987 = $1986; + $1988 = HEAP32[$1987>>2]|0; + $1989 = (_bitshift64Ashr(0,($1985|0),32)|0); + $1990 = tempRet0; + $1991 = (___muldi3(($1989|0),($1990|0),($1981|0),($1982|0))|0); + $1992 = tempRet0; + $1993 = $1127; + $1994 = $1993; + $1995 = HEAP32[$1994>>2]|0; + $1996 = (($1993) + 4)|0; + $1997 = $1996; + $1998 = HEAP32[$1997>>2]|0; + $1999 = (_bitshift64Ashr(0,($1995|0),32)|0); + $2000 = tempRet0; + $2001 = $722; + $2002 = $2001; + $2003 = HEAP32[$2002>>2]|0; + $2004 = (($2001) + 4)|0; + $2005 = $2004; + $2006 = HEAP32[$2005>>2]|0; + $2007 = (_bitshift64Ashr(0,($2003|0),32)|0); + $2008 = tempRet0; + $2009 = (___muldi3(($2007|0),($2008|0),($1999|0),($2000|0))|0); + $2010 = tempRet0; + $2011 = (_i64Add(($2009|0),($2010|0),($1991|0),($1992|0))|0); + $2012 = tempRet0; + $2013 = (_bitshift64Shl(($2011|0),($2012|0),1)|0); + $2014 = tempRet0; + $2015 = (_i64Add(($2013|0),($2014|0),($1973|0),($1974|0))|0); + $2016 = tempRet0; + $2017 = (($output) + 128|0); + $2018 = $2017; + $2019 = $2018; + HEAP32[$2019>>2] = $2015; + $2020 = (($2018) + 4)|0; + $2021 = $2020; + HEAP32[$2021>>2] = $2016; + $2022 = $922; + $2023 = $2022; + $2024 = HEAP32[$2023>>2]|0; + $2025 = (($2022) + 4)|0; + $2026 = $2025; + $2027 = HEAP32[$2026>>2]|0; + $2028 = (_bitshift64Ashr(0,($2024|0),32)|0); + $2029 = tempRet0; + $2030 = $1114; + $2031 = $2030; + $2032 = HEAP32[$2031>>2]|0; + $2033 = (($2030) + 4)|0; + $2034 = $2033; + $2035 = HEAP32[$2034>>2]|0; + $2036 = (_bitshift64Ashr(0,($2032|0),32)|0); + $2037 = tempRet0; + $2038 = (___muldi3(($2036|0),($2037|0),($2028|0),($2029|0))|0); + $2039 = tempRet0; + $2040 = $1127; + $2041 = $2040; + $2042 = HEAP32[$2041>>2]|0; + $2043 = (($2040) + 4)|0; + $2044 = $2043; + $2045 = HEAP32[$2044>>2]|0; + $2046 = (_bitshift64Ashr(0,($2042|0),32)|0); + $2047 = tempRet0; + $2048 = $909; + $2049 = $2048; + $2050 = HEAP32[$2049>>2]|0; + $2051 = (($2048) + 4)|0; + $2052 = $2051; + $2053 = HEAP32[$2052>>2]|0; + $2054 = (_bitshift64Ashr(0,($2050|0),32)|0); + $2055 = tempRet0; + $2056 = (___muldi3(($2054|0),($2055|0),($2046|0),($2047|0))|0); + $2057 = tempRet0; + $2058 = (_i64Add(($2056|0),($2057|0),($2038|0),($2039|0))|0); + $2059 = tempRet0; + $2060 = (($output) + 136|0); + $2061 = $2060; + $2062 = $2061; + HEAP32[$2062>>2] = $2058; + $2063 = (($2061) + 4)|0; + $2064 = $2063; + HEAP32[$2064>>2] = $2059; + $2065 = $1127; + $2066 = $2065; + $2067 = HEAP32[$2066>>2]|0; + $2068 = (($2065) + 4)|0; + $2069 = $2068; + $2070 = HEAP32[$2069>>2]|0; + $2071 = (_bitshift64Ashr(0,($2067|0),31)|0); + $2072 = tempRet0; + $2073 = $1114; + $2074 = $2073; + $2075 = HEAP32[$2074>>2]|0; + $2076 = (($2073) + 4)|0; + $2077 = $2076; + $2078 = HEAP32[$2077>>2]|0; + $2079 = (_bitshift64Ashr(0,($2075|0),32)|0); + $2080 = tempRet0; + $2081 = (___muldi3(($2079|0),($2080|0),($2071|0),($2072|0))|0); + $2082 = tempRet0; + $2083 = (($output) + 144|0); + $2084 = $2083; + $2085 = $2084; + HEAP32[$2085>>2] = $2081; + $2086 = (($2084) + 4)|0; + $2087 = $2086; + HEAP32[$2087>>2] = $2082; + STACKTOP = sp;return; +} +function _freduce_degree($output) { + $output = $output|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0; + var $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0; + var $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0; + var $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + $0 = (($output) + 144|0); + $1 = $0; + $2 = $1; + $3 = HEAP32[$2>>2]|0; + $4 = (($1) + 4)|0; + $5 = $4; + $6 = HEAP32[$5>>2]|0; + $7 = (_bitshift64Shl(($3|0),($6|0),4)|0); + $8 = tempRet0; + $9 = (($output) + 64|0); + $10 = $9; + $11 = $10; + $12 = HEAP32[$11>>2]|0; + $13 = (($10) + 4)|0; + $14 = $13; + $15 = HEAP32[$14>>2]|0; + $16 = (_i64Add(($12|0),($15|0),($7|0),($8|0))|0); + $17 = tempRet0; + $18 = (_bitshift64Shl(($3|0),($6|0),1)|0); + $19 = tempRet0; + $20 = (_i64Add(($18|0),($19|0),($16|0),($17|0))|0); + $21 = tempRet0; + $22 = $0; + $23 = $22; + $24 = HEAP32[$23>>2]|0; + $25 = (($22) + 4)|0; + $26 = $25; + $27 = HEAP32[$26>>2]|0; + $28 = (_i64Add(($20|0),($21|0),($24|0),($27|0))|0); + $29 = tempRet0; + $30 = $9; + $31 = $30; + HEAP32[$31>>2] = $28; + $32 = (($30) + 4)|0; + $33 = $32; + HEAP32[$33>>2] = $29; + $34 = (($output) + 136|0); + $35 = $34; + $36 = $35; + $37 = HEAP32[$36>>2]|0; + $38 = (($35) + 4)|0; + $39 = $38; + $40 = HEAP32[$39>>2]|0; + $41 = (_bitshift64Shl(($37|0),($40|0),4)|0); + $42 = tempRet0; + $43 = (($output) + 56|0); + $44 = $43; + $45 = $44; + $46 = HEAP32[$45>>2]|0; + $47 = (($44) + 4)|0; + $48 = $47; + $49 = HEAP32[$48>>2]|0; + $50 = (_i64Add(($46|0),($49|0),($41|0),($42|0))|0); + $51 = tempRet0; + $52 = (_bitshift64Shl(($37|0),($40|0),1)|0); + $53 = tempRet0; + $54 = (_i64Add(($52|0),($53|0),($50|0),($51|0))|0); + $55 = tempRet0; + $56 = $34; + $57 = $56; + $58 = HEAP32[$57>>2]|0; + $59 = (($56) + 4)|0; + $60 = $59; + $61 = HEAP32[$60>>2]|0; + $62 = (_i64Add(($54|0),($55|0),($58|0),($61|0))|0); + $63 = tempRet0; + $64 = $43; + $65 = $64; + HEAP32[$65>>2] = $62; + $66 = (($64) + 4)|0; + $67 = $66; + HEAP32[$67>>2] = $63; + $68 = (($output) + 128|0); + $69 = $68; + $70 = $69; + $71 = HEAP32[$70>>2]|0; + $72 = (($69) + 4)|0; + $73 = $72; + $74 = HEAP32[$73>>2]|0; + $75 = (_bitshift64Shl(($71|0),($74|0),4)|0); + $76 = tempRet0; + $77 = (($output) + 48|0); + $78 = $77; + $79 = $78; + $80 = HEAP32[$79>>2]|0; + $81 = (($78) + 4)|0; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (_i64Add(($80|0),($83|0),($75|0),($76|0))|0); + $85 = tempRet0; + $86 = (_bitshift64Shl(($71|0),($74|0),1)|0); + $87 = tempRet0; + $88 = (_i64Add(($86|0),($87|0),($84|0),($85|0))|0); + $89 = tempRet0; + $90 = $68; + $91 = $90; + $92 = HEAP32[$91>>2]|0; + $93 = (($90) + 4)|0; + $94 = $93; + $95 = HEAP32[$94>>2]|0; + $96 = (_i64Add(($88|0),($89|0),($92|0),($95|0))|0); + $97 = tempRet0; + $98 = $77; + $99 = $98; + HEAP32[$99>>2] = $96; + $100 = (($98) + 4)|0; + $101 = $100; + HEAP32[$101>>2] = $97; + $102 = (($output) + 120|0); + $103 = $102; + $104 = $103; + $105 = HEAP32[$104>>2]|0; + $106 = (($103) + 4)|0; + $107 = $106; + $108 = HEAP32[$107>>2]|0; + $109 = (_bitshift64Shl(($105|0),($108|0),4)|0); + $110 = tempRet0; + $111 = (($output) + 40|0); + $112 = $111; + $113 = $112; + $114 = HEAP32[$113>>2]|0; + $115 = (($112) + 4)|0; + $116 = $115; + $117 = HEAP32[$116>>2]|0; + $118 = (_i64Add(($114|0),($117|0),($109|0),($110|0))|0); + $119 = tempRet0; + $120 = (_bitshift64Shl(($105|0),($108|0),1)|0); + $121 = tempRet0; + $122 = (_i64Add(($120|0),($121|0),($118|0),($119|0))|0); + $123 = tempRet0; + $124 = $102; + $125 = $124; + $126 = HEAP32[$125>>2]|0; + $127 = (($124) + 4)|0; + $128 = $127; + $129 = HEAP32[$128>>2]|0; + $130 = (_i64Add(($122|0),($123|0),($126|0),($129|0))|0); + $131 = tempRet0; + $132 = $111; + $133 = $132; + HEAP32[$133>>2] = $130; + $134 = (($132) + 4)|0; + $135 = $134; + HEAP32[$135>>2] = $131; + $136 = (($output) + 112|0); + $137 = $136; + $138 = $137; + $139 = HEAP32[$138>>2]|0; + $140 = (($137) + 4)|0; + $141 = $140; + $142 = HEAP32[$141>>2]|0; + $143 = (_bitshift64Shl(($139|0),($142|0),4)|0); + $144 = tempRet0; + $145 = (($output) + 32|0); + $146 = $145; + $147 = $146; + $148 = HEAP32[$147>>2]|0; + $149 = (($146) + 4)|0; + $150 = $149; + $151 = HEAP32[$150>>2]|0; + $152 = (_i64Add(($148|0),($151|0),($143|0),($144|0))|0); + $153 = tempRet0; + $154 = (_bitshift64Shl(($139|0),($142|0),1)|0); + $155 = tempRet0; + $156 = (_i64Add(($154|0),($155|0),($152|0),($153|0))|0); + $157 = tempRet0; + $158 = $136; + $159 = $158; + $160 = HEAP32[$159>>2]|0; + $161 = (($158) + 4)|0; + $162 = $161; + $163 = HEAP32[$162>>2]|0; + $164 = (_i64Add(($156|0),($157|0),($160|0),($163|0))|0); + $165 = tempRet0; + $166 = $145; + $167 = $166; + HEAP32[$167>>2] = $164; + $168 = (($166) + 4)|0; + $169 = $168; + HEAP32[$169>>2] = $165; + $170 = (($output) + 104|0); + $171 = $170; + $172 = $171; + $173 = HEAP32[$172>>2]|0; + $174 = (($171) + 4)|0; + $175 = $174; + $176 = HEAP32[$175>>2]|0; + $177 = (_bitshift64Shl(($173|0),($176|0),4)|0); + $178 = tempRet0; + $179 = (($output) + 24|0); + $180 = $179; + $181 = $180; + $182 = HEAP32[$181>>2]|0; + $183 = (($180) + 4)|0; + $184 = $183; + $185 = HEAP32[$184>>2]|0; + $186 = (_i64Add(($182|0),($185|0),($177|0),($178|0))|0); + $187 = tempRet0; + $188 = (_bitshift64Shl(($173|0),($176|0),1)|0); + $189 = tempRet0; + $190 = (_i64Add(($188|0),($189|0),($186|0),($187|0))|0); + $191 = tempRet0; + $192 = $170; + $193 = $192; + $194 = HEAP32[$193>>2]|0; + $195 = (($192) + 4)|0; + $196 = $195; + $197 = HEAP32[$196>>2]|0; + $198 = (_i64Add(($190|0),($191|0),($194|0),($197|0))|0); + $199 = tempRet0; + $200 = $179; + $201 = $200; + HEAP32[$201>>2] = $198; + $202 = (($200) + 4)|0; + $203 = $202; + HEAP32[$203>>2] = $199; + $204 = (($output) + 96|0); + $205 = $204; + $206 = $205; + $207 = HEAP32[$206>>2]|0; + $208 = (($205) + 4)|0; + $209 = $208; + $210 = HEAP32[$209>>2]|0; + $211 = (_bitshift64Shl(($207|0),($210|0),4)|0); + $212 = tempRet0; + $213 = (($output) + 16|0); + $214 = $213; + $215 = $214; + $216 = HEAP32[$215>>2]|0; + $217 = (($214) + 4)|0; + $218 = $217; + $219 = HEAP32[$218>>2]|0; + $220 = (_i64Add(($216|0),($219|0),($211|0),($212|0))|0); + $221 = tempRet0; + $222 = (_bitshift64Shl(($207|0),($210|0),1)|0); + $223 = tempRet0; + $224 = (_i64Add(($222|0),($223|0),($220|0),($221|0))|0); + $225 = tempRet0; + $226 = $204; + $227 = $226; + $228 = HEAP32[$227>>2]|0; + $229 = (($226) + 4)|0; + $230 = $229; + $231 = HEAP32[$230>>2]|0; + $232 = (_i64Add(($224|0),($225|0),($228|0),($231|0))|0); + $233 = tempRet0; + $234 = $213; + $235 = $234; + HEAP32[$235>>2] = $232; + $236 = (($234) + 4)|0; + $237 = $236; + HEAP32[$237>>2] = $233; + $238 = (($output) + 88|0); + $239 = $238; + $240 = $239; + $241 = HEAP32[$240>>2]|0; + $242 = (($239) + 4)|0; + $243 = $242; + $244 = HEAP32[$243>>2]|0; + $245 = (_bitshift64Shl(($241|0),($244|0),4)|0); + $246 = tempRet0; + $247 = (($output) + 8|0); + $248 = $247; + $249 = $248; + $250 = HEAP32[$249>>2]|0; + $251 = (($248) + 4)|0; + $252 = $251; + $253 = HEAP32[$252>>2]|0; + $254 = (_i64Add(($250|0),($253|0),($245|0),($246|0))|0); + $255 = tempRet0; + $256 = (_bitshift64Shl(($241|0),($244|0),1)|0); + $257 = tempRet0; + $258 = (_i64Add(($256|0),($257|0),($254|0),($255|0))|0); + $259 = tempRet0; + $260 = $238; + $261 = $260; + $262 = HEAP32[$261>>2]|0; + $263 = (($260) + 4)|0; + $264 = $263; + $265 = HEAP32[$264>>2]|0; + $266 = (_i64Add(($258|0),($259|0),($262|0),($265|0))|0); + $267 = tempRet0; + $268 = $247; + $269 = $268; + HEAP32[$269>>2] = $266; + $270 = (($268) + 4)|0; + $271 = $270; + HEAP32[$271>>2] = $267; + $272 = (($output) + 80|0); + $273 = $272; + $274 = $273; + $275 = HEAP32[$274>>2]|0; + $276 = (($273) + 4)|0; + $277 = $276; + $278 = HEAP32[$277>>2]|0; + $279 = (_bitshift64Shl(($275|0),($278|0),4)|0); + $280 = tempRet0; + $281 = $output; + $282 = $281; + $283 = HEAP32[$282>>2]|0; + $284 = (($281) + 4)|0; + $285 = $284; + $286 = HEAP32[$285>>2]|0; + $287 = (_i64Add(($283|0),($286|0),($279|0),($280|0))|0); + $288 = tempRet0; + $289 = (_bitshift64Shl(($275|0),($278|0),1)|0); + $290 = tempRet0; + $291 = (_i64Add(($289|0),($290|0),($287|0),($288|0))|0); + $292 = tempRet0; + $293 = (_i64Add(($291|0),($292|0),($275|0),($278|0))|0); + $294 = tempRet0; + $295 = $output; + $296 = $295; + HEAP32[$296>>2] = $293; + $297 = (($295) + 4)|0; + $298 = $297; + HEAP32[$298>>2] = $294; + STACKTOP = sp;return; +} +function _freduce_coefficients($output) { + $output = $output|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0; + var $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0; + var $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0; + var $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0; + var $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $i$01 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($output) + 80|0); + $1 = $0; + $2 = $1; + HEAP32[$2>>2] = 0; + $3 = (($1) + 4)|0; + $4 = $3; + HEAP32[$4>>2] = 0; + $i$01 = 0; + while(1) { + $5 = (($output) + ($i$01<<3)|0); + $6 = $5; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + $9 = (($6) + 4)|0; + $10 = $9; + $11 = HEAP32[$10>>2]|0; + $12 = (_div_by_2_26($8,$11)|0); + $13 = tempRet0; + $14 = (_bitshift64Shl(($12|0),($13|0),26)|0); + $15 = tempRet0; + $16 = (_i64Subtract(($8|0),($11|0),($14|0),($15|0))|0); + $17 = tempRet0; + $18 = $5; + $19 = $18; + HEAP32[$19>>2] = $16; + $20 = (($18) + 4)|0; + $21 = $20; + HEAP32[$21>>2] = $17; + $22 = $i$01 | 1; + $23 = (($output) + ($22<<3)|0); + $24 = $23; + $25 = $24; + $26 = HEAP32[$25>>2]|0; + $27 = (($24) + 4)|0; + $28 = $27; + $29 = HEAP32[$28>>2]|0; + $30 = (_i64Add(($26|0),($29|0),($12|0),($13|0))|0); + $31 = tempRet0; + $32 = (_div_by_2_25($30,$31)|0); + $33 = tempRet0; + $34 = (_bitshift64Shl(($32|0),($33|0),25)|0); + $35 = tempRet0; + $36 = (_i64Subtract(($30|0),($31|0),($34|0),($35|0))|0); + $37 = tempRet0; + $38 = $23; + $39 = $38; + HEAP32[$39>>2] = $36; + $40 = (($38) + 4)|0; + $41 = $40; + HEAP32[$41>>2] = $37; + $42 = (($i$01) + 2)|0; + $43 = (($output) + ($42<<3)|0); + $44 = $43; + $45 = $44; + $46 = HEAP32[$45>>2]|0; + $47 = (($44) + 4)|0; + $48 = $47; + $49 = HEAP32[$48>>2]|0; + $50 = (_i64Add(($46|0),($49|0),($32|0),($33|0))|0); + $51 = tempRet0; + $52 = $43; + $53 = $52; + HEAP32[$53>>2] = $50; + $54 = (($52) + 4)|0; + $55 = $54; + HEAP32[$55>>2] = $51; + $56 = ($42>>>0)<(10); + if ($56) { + $i$01 = $42; + } else { + break; + } + } + $57 = $0; + $58 = $57; + $59 = HEAP32[$58>>2]|0; + $60 = (($57) + 4)|0; + $61 = $60; + $62 = HEAP32[$61>>2]|0; + $63 = (_bitshift64Shl(($59|0),($62|0),4)|0); + $64 = tempRet0; + $65 = $output; + $66 = $65; + $67 = HEAP32[$66>>2]|0; + $68 = (($65) + 4)|0; + $69 = $68; + $70 = HEAP32[$69>>2]|0; + $71 = (_i64Add(($67|0),($70|0),($63|0),($64|0))|0); + $72 = tempRet0; + $73 = (_bitshift64Shl(($59|0),($62|0),1)|0); + $74 = tempRet0; + $75 = (_i64Add(($73|0),($74|0),($71|0),($72|0))|0); + $76 = tempRet0; + $77 = (_i64Add(($75|0),($76|0),($59|0),($62|0))|0); + $78 = tempRet0; + $79 = $output; + $80 = $79; + HEAP32[$80>>2] = $77; + $81 = (($79) + 4)|0; + $82 = $81; + HEAP32[$82>>2] = $78; + $83 = $0; + $84 = $83; + HEAP32[$84>>2] = 0; + $85 = (($83) + 4)|0; + $86 = $85; + HEAP32[$86>>2] = 0; + $87 = $output; + $88 = $87; + $89 = HEAP32[$88>>2]|0; + $90 = (($87) + 4)|0; + $91 = $90; + $92 = HEAP32[$91>>2]|0; + $93 = (_div_by_2_26($89,$92)|0); + $94 = tempRet0; + $95 = (_bitshift64Shl(($93|0),($94|0),26)|0); + $96 = tempRet0; + $97 = (_i64Subtract(($89|0),($92|0),($95|0),($96|0))|0); + $98 = tempRet0; + $99 = $output; + $100 = $99; + HEAP32[$100>>2] = $97; + $101 = (($99) + 4)|0; + $102 = $101; + HEAP32[$102>>2] = $98; + $103 = (($output) + 8|0); + $104 = $103; + $105 = $104; + $106 = HEAP32[$105>>2]|0; + $107 = (($104) + 4)|0; + $108 = $107; + $109 = HEAP32[$108>>2]|0; + $110 = (_i64Add(($106|0),($109|0),($93|0),($94|0))|0); + $111 = tempRet0; + $112 = $103; + $113 = $112; + HEAP32[$113>>2] = $110; + $114 = (($112) + 4)|0; + $115 = $114; + HEAP32[$115>>2] = $111; + STACKTOP = sp;return; +} +function _s32_eq($a,$b) { + $a = $a|0; + $b = $b|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $a ^ -1; + $1 = $0 ^ $b; + $2 = $1 << 16; + $3 = $2 & $1; + $4 = $3 << 8; + $5 = $4 & $3; + $6 = $5 << 4; + $7 = $6 & $5; + $8 = $7 << 2; + $9 = $8 & $7; + $10 = $9 << 1; + $11 = $10 & $9; + $12 = $11 >> 31; + STACKTOP = sp;return ($12|0); +} +function _s32_gte($a) { + $a = $a|0; + var $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($a) + -67108845)|0; + $1 = $0 >> 31; + $2 = $1 ^ -1; + STACKTOP = sp;return ($2|0); +} +function _fsum($output,$in) { + $output = $output|0; + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; + var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $output; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = $in; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + $9 = (($6) + 4)|0; + $10 = $9; + $11 = HEAP32[$10>>2]|0; + $12 = (_i64Add(($8|0),($11|0),($2|0),($5|0))|0); + $13 = tempRet0; + $14 = $output; + $15 = $14; + HEAP32[$15>>2] = $12; + $16 = (($14) + 4)|0; + $17 = $16; + HEAP32[$17>>2] = $13; + $18 = (($output) + 8|0); + $19 = $18; + $20 = $19; + $21 = HEAP32[$20>>2]|0; + $22 = (($19) + 4)|0; + $23 = $22; + $24 = HEAP32[$23>>2]|0; + $25 = (($in) + 8|0); + $26 = $25; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (($26) + 4)|0; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = (_i64Add(($28|0),($31|0),($21|0),($24|0))|0); + $33 = tempRet0; + $34 = $18; + $35 = $34; + HEAP32[$35>>2] = $32; + $36 = (($34) + 4)|0; + $37 = $36; + HEAP32[$37>>2] = $33; + $38 = (($output) + 16|0); + $39 = $38; + $40 = $39; + $41 = HEAP32[$40>>2]|0; + $42 = (($39) + 4)|0; + $43 = $42; + $44 = HEAP32[$43>>2]|0; + $45 = (($in) + 16|0); + $46 = $45; + $47 = $46; + $48 = HEAP32[$47>>2]|0; + $49 = (($46) + 4)|0; + $50 = $49; + $51 = HEAP32[$50>>2]|0; + $52 = (_i64Add(($48|0),($51|0),($41|0),($44|0))|0); + $53 = tempRet0; + $54 = $38; + $55 = $54; + HEAP32[$55>>2] = $52; + $56 = (($54) + 4)|0; + $57 = $56; + HEAP32[$57>>2] = $53; + $58 = (($output) + 24|0); + $59 = $58; + $60 = $59; + $61 = HEAP32[$60>>2]|0; + $62 = (($59) + 4)|0; + $63 = $62; + $64 = HEAP32[$63>>2]|0; + $65 = (($in) + 24|0); + $66 = $65; + $67 = $66; + $68 = HEAP32[$67>>2]|0; + $69 = (($66) + 4)|0; + $70 = $69; + $71 = HEAP32[$70>>2]|0; + $72 = (_i64Add(($68|0),($71|0),($61|0),($64|0))|0); + $73 = tempRet0; + $74 = $58; + $75 = $74; + HEAP32[$75>>2] = $72; + $76 = (($74) + 4)|0; + $77 = $76; + HEAP32[$77>>2] = $73; + $78 = (($output) + 32|0); + $79 = $78; + $80 = $79; + $81 = HEAP32[$80>>2]|0; + $82 = (($79) + 4)|0; + $83 = $82; + $84 = HEAP32[$83>>2]|0; + $85 = (($in) + 32|0); + $86 = $85; + $87 = $86; + $88 = HEAP32[$87>>2]|0; + $89 = (($86) + 4)|0; + $90 = $89; + $91 = HEAP32[$90>>2]|0; + $92 = (_i64Add(($88|0),($91|0),($81|0),($84|0))|0); + $93 = tempRet0; + $94 = $78; + $95 = $94; + HEAP32[$95>>2] = $92; + $96 = (($94) + 4)|0; + $97 = $96; + HEAP32[$97>>2] = $93; + $98 = (($output) + 40|0); + $99 = $98; + $100 = $99; + $101 = HEAP32[$100>>2]|0; + $102 = (($99) + 4)|0; + $103 = $102; + $104 = HEAP32[$103>>2]|0; + $105 = (($in) + 40|0); + $106 = $105; + $107 = $106; + $108 = HEAP32[$107>>2]|0; + $109 = (($106) + 4)|0; + $110 = $109; + $111 = HEAP32[$110>>2]|0; + $112 = (_i64Add(($108|0),($111|0),($101|0),($104|0))|0); + $113 = tempRet0; + $114 = $98; + $115 = $114; + HEAP32[$115>>2] = $112; + $116 = (($114) + 4)|0; + $117 = $116; + HEAP32[$117>>2] = $113; + $118 = (($output) + 48|0); + $119 = $118; + $120 = $119; + $121 = HEAP32[$120>>2]|0; + $122 = (($119) + 4)|0; + $123 = $122; + $124 = HEAP32[$123>>2]|0; + $125 = (($in) + 48|0); + $126 = $125; + $127 = $126; + $128 = HEAP32[$127>>2]|0; + $129 = (($126) + 4)|0; + $130 = $129; + $131 = HEAP32[$130>>2]|0; + $132 = (_i64Add(($128|0),($131|0),($121|0),($124|0))|0); + $133 = tempRet0; + $134 = $118; + $135 = $134; + HEAP32[$135>>2] = $132; + $136 = (($134) + 4)|0; + $137 = $136; + HEAP32[$137>>2] = $133; + $138 = (($output) + 56|0); + $139 = $138; + $140 = $139; + $141 = HEAP32[$140>>2]|0; + $142 = (($139) + 4)|0; + $143 = $142; + $144 = HEAP32[$143>>2]|0; + $145 = (($in) + 56|0); + $146 = $145; + $147 = $146; + $148 = HEAP32[$147>>2]|0; + $149 = (($146) + 4)|0; + $150 = $149; + $151 = HEAP32[$150>>2]|0; + $152 = (_i64Add(($148|0),($151|0),($141|0),($144|0))|0); + $153 = tempRet0; + $154 = $138; + $155 = $154; + HEAP32[$155>>2] = $152; + $156 = (($154) + 4)|0; + $157 = $156; + HEAP32[$157>>2] = $153; + $158 = (($output) + 64|0); + $159 = $158; + $160 = $159; + $161 = HEAP32[$160>>2]|0; + $162 = (($159) + 4)|0; + $163 = $162; + $164 = HEAP32[$163>>2]|0; + $165 = (($in) + 64|0); + $166 = $165; + $167 = $166; + $168 = HEAP32[$167>>2]|0; + $169 = (($166) + 4)|0; + $170 = $169; + $171 = HEAP32[$170>>2]|0; + $172 = (_i64Add(($168|0),($171|0),($161|0),($164|0))|0); + $173 = tempRet0; + $174 = $158; + $175 = $174; + HEAP32[$175>>2] = $172; + $176 = (($174) + 4)|0; + $177 = $176; + HEAP32[$177>>2] = $173; + $178 = (($output) + 72|0); + $179 = $178; + $180 = $179; + $181 = HEAP32[$180>>2]|0; + $182 = (($179) + 4)|0; + $183 = $182; + $184 = HEAP32[$183>>2]|0; + $185 = (($in) + 72|0); + $186 = $185; + $187 = $186; + $188 = HEAP32[$187>>2]|0; + $189 = (($186) + 4)|0; + $190 = $189; + $191 = HEAP32[$190>>2]|0; + $192 = (_i64Add(($188|0),($191|0),($181|0),($184|0))|0); + $193 = tempRet0; + $194 = $178; + $195 = $194; + HEAP32[$195>>2] = $192; + $196 = (($194) + 4)|0; + $197 = $196; + HEAP32[$197>>2] = $193; + STACKTOP = sp;return; +} +function _fdifference($output,$in) { + $output = $output|0; + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; + var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $in; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = $output; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + $9 = (($6) + 4)|0; + $10 = $9; + $11 = HEAP32[$10>>2]|0; + $12 = (_i64Subtract(($2|0),($5|0),($8|0),($11|0))|0); + $13 = tempRet0; + $14 = $output; + $15 = $14; + HEAP32[$15>>2] = $12; + $16 = (($14) + 4)|0; + $17 = $16; + HEAP32[$17>>2] = $13; + $18 = (($in) + 8|0); + $19 = $18; + $20 = $19; + $21 = HEAP32[$20>>2]|0; + $22 = (($19) + 4)|0; + $23 = $22; + $24 = HEAP32[$23>>2]|0; + $25 = (($output) + 8|0); + $26 = $25; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (($26) + 4)|0; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = (_i64Subtract(($21|0),($24|0),($28|0),($31|0))|0); + $33 = tempRet0; + $34 = $25; + $35 = $34; + HEAP32[$35>>2] = $32; + $36 = (($34) + 4)|0; + $37 = $36; + HEAP32[$37>>2] = $33; + $38 = (($in) + 16|0); + $39 = $38; + $40 = $39; + $41 = HEAP32[$40>>2]|0; + $42 = (($39) + 4)|0; + $43 = $42; + $44 = HEAP32[$43>>2]|0; + $45 = (($output) + 16|0); + $46 = $45; + $47 = $46; + $48 = HEAP32[$47>>2]|0; + $49 = (($46) + 4)|0; + $50 = $49; + $51 = HEAP32[$50>>2]|0; + $52 = (_i64Subtract(($41|0),($44|0),($48|0),($51|0))|0); + $53 = tempRet0; + $54 = $45; + $55 = $54; + HEAP32[$55>>2] = $52; + $56 = (($54) + 4)|0; + $57 = $56; + HEAP32[$57>>2] = $53; + $58 = (($in) + 24|0); + $59 = $58; + $60 = $59; + $61 = HEAP32[$60>>2]|0; + $62 = (($59) + 4)|0; + $63 = $62; + $64 = HEAP32[$63>>2]|0; + $65 = (($output) + 24|0); + $66 = $65; + $67 = $66; + $68 = HEAP32[$67>>2]|0; + $69 = (($66) + 4)|0; + $70 = $69; + $71 = HEAP32[$70>>2]|0; + $72 = (_i64Subtract(($61|0),($64|0),($68|0),($71|0))|0); + $73 = tempRet0; + $74 = $65; + $75 = $74; + HEAP32[$75>>2] = $72; + $76 = (($74) + 4)|0; + $77 = $76; + HEAP32[$77>>2] = $73; + $78 = (($in) + 32|0); + $79 = $78; + $80 = $79; + $81 = HEAP32[$80>>2]|0; + $82 = (($79) + 4)|0; + $83 = $82; + $84 = HEAP32[$83>>2]|0; + $85 = (($output) + 32|0); + $86 = $85; + $87 = $86; + $88 = HEAP32[$87>>2]|0; + $89 = (($86) + 4)|0; + $90 = $89; + $91 = HEAP32[$90>>2]|0; + $92 = (_i64Subtract(($81|0),($84|0),($88|0),($91|0))|0); + $93 = tempRet0; + $94 = $85; + $95 = $94; + HEAP32[$95>>2] = $92; + $96 = (($94) + 4)|0; + $97 = $96; + HEAP32[$97>>2] = $93; + $98 = (($in) + 40|0); + $99 = $98; + $100 = $99; + $101 = HEAP32[$100>>2]|0; + $102 = (($99) + 4)|0; + $103 = $102; + $104 = HEAP32[$103>>2]|0; + $105 = (($output) + 40|0); + $106 = $105; + $107 = $106; + $108 = HEAP32[$107>>2]|0; + $109 = (($106) + 4)|0; + $110 = $109; + $111 = HEAP32[$110>>2]|0; + $112 = (_i64Subtract(($101|0),($104|0),($108|0),($111|0))|0); + $113 = tempRet0; + $114 = $105; + $115 = $114; + HEAP32[$115>>2] = $112; + $116 = (($114) + 4)|0; + $117 = $116; + HEAP32[$117>>2] = $113; + $118 = (($in) + 48|0); + $119 = $118; + $120 = $119; + $121 = HEAP32[$120>>2]|0; + $122 = (($119) + 4)|0; + $123 = $122; + $124 = HEAP32[$123>>2]|0; + $125 = (($output) + 48|0); + $126 = $125; + $127 = $126; + $128 = HEAP32[$127>>2]|0; + $129 = (($126) + 4)|0; + $130 = $129; + $131 = HEAP32[$130>>2]|0; + $132 = (_i64Subtract(($121|0),($124|0),($128|0),($131|0))|0); + $133 = tempRet0; + $134 = $125; + $135 = $134; + HEAP32[$135>>2] = $132; + $136 = (($134) + 4)|0; + $137 = $136; + HEAP32[$137>>2] = $133; + $138 = (($in) + 56|0); + $139 = $138; + $140 = $139; + $141 = HEAP32[$140>>2]|0; + $142 = (($139) + 4)|0; + $143 = $142; + $144 = HEAP32[$143>>2]|0; + $145 = (($output) + 56|0); + $146 = $145; + $147 = $146; + $148 = HEAP32[$147>>2]|0; + $149 = (($146) + 4)|0; + $150 = $149; + $151 = HEAP32[$150>>2]|0; + $152 = (_i64Subtract(($141|0),($144|0),($148|0),($151|0))|0); + $153 = tempRet0; + $154 = $145; + $155 = $154; + HEAP32[$155>>2] = $152; + $156 = (($154) + 4)|0; + $157 = $156; + HEAP32[$157>>2] = $153; + $158 = (($in) + 64|0); + $159 = $158; + $160 = $159; + $161 = HEAP32[$160>>2]|0; + $162 = (($159) + 4)|0; + $163 = $162; + $164 = HEAP32[$163>>2]|0; + $165 = (($output) + 64|0); + $166 = $165; + $167 = $166; + $168 = HEAP32[$167>>2]|0; + $169 = (($166) + 4)|0; + $170 = $169; + $171 = HEAP32[$170>>2]|0; + $172 = (_i64Subtract(($161|0),($164|0),($168|0),($171|0))|0); + $173 = tempRet0; + $174 = $165; + $175 = $174; + HEAP32[$175>>2] = $172; + $176 = (($174) + 4)|0; + $177 = $176; + HEAP32[$177>>2] = $173; + $178 = (($in) + 72|0); + $179 = $178; + $180 = $179; + $181 = HEAP32[$180>>2]|0; + $182 = (($179) + 4)|0; + $183 = $182; + $184 = HEAP32[$183>>2]|0; + $185 = (($output) + 72|0); + $186 = $185; + $187 = $186; + $188 = HEAP32[$187>>2]|0; + $189 = (($186) + 4)|0; + $190 = $189; + $191 = HEAP32[$190>>2]|0; + $192 = (_i64Subtract(($181|0),($184|0),($188|0),($191|0))|0); + $193 = tempRet0; + $194 = $185; + $195 = $194; + HEAP32[$195>>2] = $192; + $196 = (($194) + 4)|0; + $197 = $196; + HEAP32[$197>>2] = $193; + STACKTOP = sp;return; +} +function _fscalar_product($output,$in) { + $output = $output|0; + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; + var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $in; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = (___muldi3(($2|0),($5|0),121665,0)|0); + $7 = tempRet0; + $8 = $output; + $9 = $8; + HEAP32[$9>>2] = $6; + $10 = (($8) + 4)|0; + $11 = $10; + HEAP32[$11>>2] = $7; + $12 = (($in) + 8|0); + $13 = $12; + $14 = $13; + $15 = HEAP32[$14>>2]|0; + $16 = (($13) + 4)|0; + $17 = $16; + $18 = HEAP32[$17>>2]|0; + $19 = (___muldi3(($15|0),($18|0),121665,0)|0); + $20 = tempRet0; + $21 = (($output) + 8|0); + $22 = $21; + $23 = $22; + HEAP32[$23>>2] = $19; + $24 = (($22) + 4)|0; + $25 = $24; + HEAP32[$25>>2] = $20; + $26 = (($in) + 16|0); + $27 = $26; + $28 = $27; + $29 = HEAP32[$28>>2]|0; + $30 = (($27) + 4)|0; + $31 = $30; + $32 = HEAP32[$31>>2]|0; + $33 = (___muldi3(($29|0),($32|0),121665,0)|0); + $34 = tempRet0; + $35 = (($output) + 16|0); + $36 = $35; + $37 = $36; + HEAP32[$37>>2] = $33; + $38 = (($36) + 4)|0; + $39 = $38; + HEAP32[$39>>2] = $34; + $40 = (($in) + 24|0); + $41 = $40; + $42 = $41; + $43 = HEAP32[$42>>2]|0; + $44 = (($41) + 4)|0; + $45 = $44; + $46 = HEAP32[$45>>2]|0; + $47 = (___muldi3(($43|0),($46|0),121665,0)|0); + $48 = tempRet0; + $49 = (($output) + 24|0); + $50 = $49; + $51 = $50; + HEAP32[$51>>2] = $47; + $52 = (($50) + 4)|0; + $53 = $52; + HEAP32[$53>>2] = $48; + $54 = (($in) + 32|0); + $55 = $54; + $56 = $55; + $57 = HEAP32[$56>>2]|0; + $58 = (($55) + 4)|0; + $59 = $58; + $60 = HEAP32[$59>>2]|0; + $61 = (___muldi3(($57|0),($60|0),121665,0)|0); + $62 = tempRet0; + $63 = (($output) + 32|0); + $64 = $63; + $65 = $64; + HEAP32[$65>>2] = $61; + $66 = (($64) + 4)|0; + $67 = $66; + HEAP32[$67>>2] = $62; + $68 = (($in) + 40|0); + $69 = $68; + $70 = $69; + $71 = HEAP32[$70>>2]|0; + $72 = (($69) + 4)|0; + $73 = $72; + $74 = HEAP32[$73>>2]|0; + $75 = (___muldi3(($71|0),($74|0),121665,0)|0); + $76 = tempRet0; + $77 = (($output) + 40|0); + $78 = $77; + $79 = $78; + HEAP32[$79>>2] = $75; + $80 = (($78) + 4)|0; + $81 = $80; + HEAP32[$81>>2] = $76; + $82 = (($in) + 48|0); + $83 = $82; + $84 = $83; + $85 = HEAP32[$84>>2]|0; + $86 = (($83) + 4)|0; + $87 = $86; + $88 = HEAP32[$87>>2]|0; + $89 = (___muldi3(($85|0),($88|0),121665,0)|0); + $90 = tempRet0; + $91 = (($output) + 48|0); + $92 = $91; + $93 = $92; + HEAP32[$93>>2] = $89; + $94 = (($92) + 4)|0; + $95 = $94; + HEAP32[$95>>2] = $90; + $96 = (($in) + 56|0); + $97 = $96; + $98 = $97; + $99 = HEAP32[$98>>2]|0; + $100 = (($97) + 4)|0; + $101 = $100; + $102 = HEAP32[$101>>2]|0; + $103 = (___muldi3(($99|0),($102|0),121665,0)|0); + $104 = tempRet0; + $105 = (($output) + 56|0); + $106 = $105; + $107 = $106; + HEAP32[$107>>2] = $103; + $108 = (($106) + 4)|0; + $109 = $108; + HEAP32[$109>>2] = $104; + $110 = (($in) + 64|0); + $111 = $110; + $112 = $111; + $113 = HEAP32[$112>>2]|0; + $114 = (($111) + 4)|0; + $115 = $114; + $116 = HEAP32[$115>>2]|0; + $117 = (___muldi3(($113|0),($116|0),121665,0)|0); + $118 = tempRet0; + $119 = (($output) + 64|0); + $120 = $119; + $121 = $120; + HEAP32[$121>>2] = $117; + $122 = (($120) + 4)|0; + $123 = $122; + HEAP32[$123>>2] = $118; + $124 = (($in) + 72|0); + $125 = $124; + $126 = $125; + $127 = HEAP32[$126>>2]|0; + $128 = (($125) + 4)|0; + $129 = $128; + $130 = HEAP32[$129>>2]|0; + $131 = (___muldi3(($127|0),($130|0),121665,0)|0); + $132 = tempRet0; + $133 = (($output) + 72|0); + $134 = $133; + $135 = $134; + HEAP32[$135>>2] = $131; + $136 = (($134) + 4)|0; + $137 = $136; + HEAP32[$137>>2] = $132; + STACKTOP = sp;return; +} +function _fsquare_inner($output,$in) { + $output = $output|0; + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; + var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; + var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; + var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; + var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; + var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; + var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0; + var $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0; + var $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0; + var $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0; + var $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0; + var $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0; + var $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0; + var $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0; + var $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0; + var $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0; + var $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0; + var $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0; + var $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0; + var $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0; + var $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0; + var $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0; + var $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0; + var $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0; + var $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0; + var $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0; + var $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0; + var $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0; + var $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0; + var $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0; + var $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0; + var $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0; + var $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0; + var $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0; + var $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0; + var $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0; + var $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0; + var $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0; + var $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0; + var $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0; + var $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0; + var $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0; + var $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0; + var $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0; + var $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0; + var $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0; + var $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0; + var $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0; + var $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0; + var $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0; + var $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0; + var $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0; + var $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0; + var $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0; + var $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0; + var $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + $0 = $in; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = (_bitshift64Ashr(0,($2|0),32)|0); + $7 = tempRet0; + $8 = (___muldi3(($6|0),($7|0),($6|0),($7|0))|0); + $9 = tempRet0; + $10 = $output; + $11 = $10; + HEAP32[$11>>2] = $8; + $12 = (($10) + 4)|0; + $13 = $12; + HEAP32[$13>>2] = $9; + $14 = $in; + $15 = $14; + $16 = HEAP32[$15>>2]|0; + $17 = (($14) + 4)|0; + $18 = $17; + $19 = HEAP32[$18>>2]|0; + $20 = (_bitshift64Ashr(0,($16|0),31)|0); + $21 = tempRet0; + $22 = (($in) + 8|0); + $23 = $22; + $24 = $23; + $25 = HEAP32[$24>>2]|0; + $26 = (($23) + 4)|0; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (_bitshift64Ashr(0,($25|0),32)|0); + $30 = tempRet0; + $31 = (___muldi3(($29|0),($30|0),($20|0),($21|0))|0); + $32 = tempRet0; + $33 = (($output) + 8|0); + $34 = $33; + $35 = $34; + HEAP32[$35>>2] = $31; + $36 = (($34) + 4)|0; + $37 = $36; + HEAP32[$37>>2] = $32; + $38 = $22; + $39 = $38; + $40 = HEAP32[$39>>2]|0; + $41 = (($38) + 4)|0; + $42 = $41; + $43 = HEAP32[$42>>2]|0; + $44 = (_bitshift64Ashr(0,($40|0),32)|0); + $45 = tempRet0; + $46 = (___muldi3(($44|0),($45|0),($44|0),($45|0))|0); + $47 = tempRet0; + $48 = $in; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + $51 = (($48) + 4)|0; + $52 = $51; + $53 = HEAP32[$52>>2]|0; + $54 = (_bitshift64Ashr(0,($50|0),32)|0); + $55 = tempRet0; + $56 = (($in) + 16|0); + $57 = $56; + $58 = $57; + $59 = HEAP32[$58>>2]|0; + $60 = (($57) + 4)|0; + $61 = $60; + $62 = HEAP32[$61>>2]|0; + $63 = (_bitshift64Ashr(0,($59|0),32)|0); + $64 = tempRet0; + $65 = (___muldi3(($63|0),($64|0),($54|0),($55|0))|0); + $66 = tempRet0; + $67 = (_i64Add(($65|0),($66|0),($46|0),($47|0))|0); + $68 = tempRet0; + $69 = (_bitshift64Shl(($67|0),($68|0),1)|0); + $70 = tempRet0; + $71 = (($output) + 16|0); + $72 = $71; + $73 = $72; + HEAP32[$73>>2] = $69; + $74 = (($72) + 4)|0; + $75 = $74; + HEAP32[$75>>2] = $70; + $76 = $22; + $77 = $76; + $78 = HEAP32[$77>>2]|0; + $79 = (($76) + 4)|0; + $80 = $79; + $81 = HEAP32[$80>>2]|0; + $82 = (_bitshift64Ashr(0,($78|0),32)|0); + $83 = tempRet0; + $84 = $56; + $85 = $84; + $86 = HEAP32[$85>>2]|0; + $87 = (($84) + 4)|0; + $88 = $87; + $89 = HEAP32[$88>>2]|0; + $90 = (_bitshift64Ashr(0,($86|0),32)|0); + $91 = tempRet0; + $92 = (___muldi3(($90|0),($91|0),($82|0),($83|0))|0); + $93 = tempRet0; + $94 = $in; + $95 = $94; + $96 = HEAP32[$95>>2]|0; + $97 = (($94) + 4)|0; + $98 = $97; + $99 = HEAP32[$98>>2]|0; + $100 = (_bitshift64Ashr(0,($96|0),32)|0); + $101 = tempRet0; + $102 = (($in) + 24|0); + $103 = $102; + $104 = $103; + $105 = HEAP32[$104>>2]|0; + $106 = (($103) + 4)|0; + $107 = $106; + $108 = HEAP32[$107>>2]|0; + $109 = (_bitshift64Ashr(0,($105|0),32)|0); + $110 = tempRet0; + $111 = (___muldi3(($109|0),($110|0),($100|0),($101|0))|0); + $112 = tempRet0; + $113 = (_i64Add(($111|0),($112|0),($92|0),($93|0))|0); + $114 = tempRet0; + $115 = (_bitshift64Shl(($113|0),($114|0),1)|0); + $116 = tempRet0; + $117 = (($output) + 24|0); + $118 = $117; + $119 = $118; + HEAP32[$119>>2] = $115; + $120 = (($118) + 4)|0; + $121 = $120; + HEAP32[$121>>2] = $116; + $122 = $56; + $123 = $122; + $124 = HEAP32[$123>>2]|0; + $125 = (($122) + 4)|0; + $126 = $125; + $127 = HEAP32[$126>>2]|0; + $128 = (_bitshift64Ashr(0,($124|0),32)|0); + $129 = tempRet0; + $130 = (___muldi3(($128|0),($129|0),($128|0),($129|0))|0); + $131 = tempRet0; + $132 = $22; + $133 = $132; + $134 = HEAP32[$133>>2]|0; + $135 = (($132) + 4)|0; + $136 = $135; + $137 = HEAP32[$136>>2]|0; + $138 = (_bitshift64Ashr(0,($134|0),30)|0); + $139 = tempRet0; + $140 = $102; + $141 = $140; + $142 = HEAP32[$141>>2]|0; + $143 = (($140) + 4)|0; + $144 = $143; + $145 = HEAP32[$144>>2]|0; + $146 = (_bitshift64Ashr(0,($142|0),32)|0); + $147 = tempRet0; + $148 = (___muldi3(($146|0),($147|0),($138|0),($139|0))|0); + $149 = tempRet0; + $150 = (_i64Add(($148|0),($149|0),($130|0),($131|0))|0); + $151 = tempRet0; + $152 = $in; + $153 = $152; + $154 = HEAP32[$153>>2]|0; + $155 = (($152) + 4)|0; + $156 = $155; + $157 = HEAP32[$156>>2]|0; + $158 = (_bitshift64Ashr(0,($154|0),31)|0); + $159 = tempRet0; + $160 = (($in) + 32|0); + $161 = $160; + $162 = $161; + $163 = HEAP32[$162>>2]|0; + $164 = (($161) + 4)|0; + $165 = $164; + $166 = HEAP32[$165>>2]|0; + $167 = (_bitshift64Ashr(0,($163|0),32)|0); + $168 = tempRet0; + $169 = (___muldi3(($167|0),($168|0),($158|0),($159|0))|0); + $170 = tempRet0; + $171 = (_i64Add(($150|0),($151|0),($169|0),($170|0))|0); + $172 = tempRet0; + $173 = (($output) + 32|0); + $174 = $173; + $175 = $174; + HEAP32[$175>>2] = $171; + $176 = (($174) + 4)|0; + $177 = $176; + HEAP32[$177>>2] = $172; + $178 = $56; + $179 = $178; + $180 = HEAP32[$179>>2]|0; + $181 = (($178) + 4)|0; + $182 = $181; + $183 = HEAP32[$182>>2]|0; + $184 = (_bitshift64Ashr(0,($180|0),32)|0); + $185 = tempRet0; + $186 = $102; + $187 = $186; + $188 = HEAP32[$187>>2]|0; + $189 = (($186) + 4)|0; + $190 = $189; + $191 = HEAP32[$190>>2]|0; + $192 = (_bitshift64Ashr(0,($188|0),32)|0); + $193 = tempRet0; + $194 = (___muldi3(($192|0),($193|0),($184|0),($185|0))|0); + $195 = tempRet0; + $196 = $22; + $197 = $196; + $198 = HEAP32[$197>>2]|0; + $199 = (($196) + 4)|0; + $200 = $199; + $201 = HEAP32[$200>>2]|0; + $202 = (_bitshift64Ashr(0,($198|0),32)|0); + $203 = tempRet0; + $204 = $160; + $205 = $204; + $206 = HEAP32[$205>>2]|0; + $207 = (($204) + 4)|0; + $208 = $207; + $209 = HEAP32[$208>>2]|0; + $210 = (_bitshift64Ashr(0,($206|0),32)|0); + $211 = tempRet0; + $212 = (___muldi3(($210|0),($211|0),($202|0),($203|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($212|0),($213|0),($194|0),($195|0))|0); + $215 = tempRet0; + $216 = $in; + $217 = $216; + $218 = HEAP32[$217>>2]|0; + $219 = (($216) + 4)|0; + $220 = $219; + $221 = HEAP32[$220>>2]|0; + $222 = (_bitshift64Ashr(0,($218|0),32)|0); + $223 = tempRet0; + $224 = (($in) + 40|0); + $225 = $224; + $226 = $225; + $227 = HEAP32[$226>>2]|0; + $228 = (($225) + 4)|0; + $229 = $228; + $230 = HEAP32[$229>>2]|0; + $231 = (_bitshift64Ashr(0,($227|0),32)|0); + $232 = tempRet0; + $233 = (___muldi3(($231|0),($232|0),($222|0),($223|0))|0); + $234 = tempRet0; + $235 = (_i64Add(($214|0),($215|0),($233|0),($234|0))|0); + $236 = tempRet0; + $237 = (_bitshift64Shl(($235|0),($236|0),1)|0); + $238 = tempRet0; + $239 = (($output) + 40|0); + $240 = $239; + $241 = $240; + HEAP32[$241>>2] = $237; + $242 = (($240) + 4)|0; + $243 = $242; + HEAP32[$243>>2] = $238; + $244 = $102; + $245 = $244; + $246 = HEAP32[$245>>2]|0; + $247 = (($244) + 4)|0; + $248 = $247; + $249 = HEAP32[$248>>2]|0; + $250 = (_bitshift64Ashr(0,($246|0),32)|0); + $251 = tempRet0; + $252 = (___muldi3(($250|0),($251|0),($250|0),($251|0))|0); + $253 = tempRet0; + $254 = $56; + $255 = $254; + $256 = HEAP32[$255>>2]|0; + $257 = (($254) + 4)|0; + $258 = $257; + $259 = HEAP32[$258>>2]|0; + $260 = (_bitshift64Ashr(0,($256|0),32)|0); + $261 = tempRet0; + $262 = $160; + $263 = $262; + $264 = HEAP32[$263>>2]|0; + $265 = (($262) + 4)|0; + $266 = $265; + $267 = HEAP32[$266>>2]|0; + $268 = (_bitshift64Ashr(0,($264|0),32)|0); + $269 = tempRet0; + $270 = (___muldi3(($268|0),($269|0),($260|0),($261|0))|0); + $271 = tempRet0; + $272 = (_i64Add(($270|0),($271|0),($252|0),($253|0))|0); + $273 = tempRet0; + $274 = $in; + $275 = $274; + $276 = HEAP32[$275>>2]|0; + $277 = (($274) + 4)|0; + $278 = $277; + $279 = HEAP32[$278>>2]|0; + $280 = (_bitshift64Ashr(0,($276|0),32)|0); + $281 = tempRet0; + $282 = (($in) + 48|0); + $283 = $282; + $284 = $283; + $285 = HEAP32[$284>>2]|0; + $286 = (($283) + 4)|0; + $287 = $286; + $288 = HEAP32[$287>>2]|0; + $289 = (_bitshift64Ashr(0,($285|0),32)|0); + $290 = tempRet0; + $291 = (___muldi3(($289|0),($290|0),($280|0),($281|0))|0); + $292 = tempRet0; + $293 = (_i64Add(($272|0),($273|0),($291|0),($292|0))|0); + $294 = tempRet0; + $295 = $22; + $296 = $295; + $297 = HEAP32[$296>>2]|0; + $298 = (($295) + 4)|0; + $299 = $298; + $300 = HEAP32[$299>>2]|0; + $301 = (_bitshift64Ashr(0,($297|0),31)|0); + $302 = tempRet0; + $303 = $224; + $304 = $303; + $305 = HEAP32[$304>>2]|0; + $306 = (($303) + 4)|0; + $307 = $306; + $308 = HEAP32[$307>>2]|0; + $309 = (_bitshift64Ashr(0,($305|0),32)|0); + $310 = tempRet0; + $311 = (___muldi3(($309|0),($310|0),($301|0),($302|0))|0); + $312 = tempRet0; + $313 = (_i64Add(($293|0),($294|0),($311|0),($312|0))|0); + $314 = tempRet0; + $315 = (_bitshift64Shl(($313|0),($314|0),1)|0); + $316 = tempRet0; + $317 = (($output) + 48|0); + $318 = $317; + $319 = $318; + HEAP32[$319>>2] = $315; + $320 = (($318) + 4)|0; + $321 = $320; + HEAP32[$321>>2] = $316; + $322 = $102; + $323 = $322; + $324 = HEAP32[$323>>2]|0; + $325 = (($322) + 4)|0; + $326 = $325; + $327 = HEAP32[$326>>2]|0; + $328 = (_bitshift64Ashr(0,($324|0),32)|0); + $329 = tempRet0; + $330 = $160; + $331 = $330; + $332 = HEAP32[$331>>2]|0; + $333 = (($330) + 4)|0; + $334 = $333; + $335 = HEAP32[$334>>2]|0; + $336 = (_bitshift64Ashr(0,($332|0),32)|0); + $337 = tempRet0; + $338 = (___muldi3(($336|0),($337|0),($328|0),($329|0))|0); + $339 = tempRet0; + $340 = $56; + $341 = $340; + $342 = HEAP32[$341>>2]|0; + $343 = (($340) + 4)|0; + $344 = $343; + $345 = HEAP32[$344>>2]|0; + $346 = (_bitshift64Ashr(0,($342|0),32)|0); + $347 = tempRet0; + $348 = $224; + $349 = $348; + $350 = HEAP32[$349>>2]|0; + $351 = (($348) + 4)|0; + $352 = $351; + $353 = HEAP32[$352>>2]|0; + $354 = (_bitshift64Ashr(0,($350|0),32)|0); + $355 = tempRet0; + $356 = (___muldi3(($354|0),($355|0),($346|0),($347|0))|0); + $357 = tempRet0; + $358 = (_i64Add(($356|0),($357|0),($338|0),($339|0))|0); + $359 = tempRet0; + $360 = $22; + $361 = $360; + $362 = HEAP32[$361>>2]|0; + $363 = (($360) + 4)|0; + $364 = $363; + $365 = HEAP32[$364>>2]|0; + $366 = (_bitshift64Ashr(0,($362|0),32)|0); + $367 = tempRet0; + $368 = $282; + $369 = $368; + $370 = HEAP32[$369>>2]|0; + $371 = (($368) + 4)|0; + $372 = $371; + $373 = HEAP32[$372>>2]|0; + $374 = (_bitshift64Ashr(0,($370|0),32)|0); + $375 = tempRet0; + $376 = (___muldi3(($374|0),($375|0),($366|0),($367|0))|0); + $377 = tempRet0; + $378 = (_i64Add(($358|0),($359|0),($376|0),($377|0))|0); + $379 = tempRet0; + $380 = $in; + $381 = $380; + $382 = HEAP32[$381>>2]|0; + $383 = (($380) + 4)|0; + $384 = $383; + $385 = HEAP32[$384>>2]|0; + $386 = (_bitshift64Ashr(0,($382|0),32)|0); + $387 = tempRet0; + $388 = (($in) + 56|0); + $389 = $388; + $390 = $389; + $391 = HEAP32[$390>>2]|0; + $392 = (($389) + 4)|0; + $393 = $392; + $394 = HEAP32[$393>>2]|0; + $395 = (_bitshift64Ashr(0,($391|0),32)|0); + $396 = tempRet0; + $397 = (___muldi3(($395|0),($396|0),($386|0),($387|0))|0); + $398 = tempRet0; + $399 = (_i64Add(($378|0),($379|0),($397|0),($398|0))|0); + $400 = tempRet0; + $401 = (_bitshift64Shl(($399|0),($400|0),1)|0); + $402 = tempRet0; + $403 = (($output) + 56|0); + $404 = $403; + $405 = $404; + HEAP32[$405>>2] = $401; + $406 = (($404) + 4)|0; + $407 = $406; + HEAP32[$407>>2] = $402; + $408 = $160; + $409 = $408; + $410 = HEAP32[$409>>2]|0; + $411 = (($408) + 4)|0; + $412 = $411; + $413 = HEAP32[$412>>2]|0; + $414 = (_bitshift64Ashr(0,($410|0),32)|0); + $415 = tempRet0; + $416 = (___muldi3(($414|0),($415|0),($414|0),($415|0))|0); + $417 = tempRet0; + $418 = $56; + $419 = $418; + $420 = HEAP32[$419>>2]|0; + $421 = (($418) + 4)|0; + $422 = $421; + $423 = HEAP32[$422>>2]|0; + $424 = (_bitshift64Ashr(0,($420|0),32)|0); + $425 = tempRet0; + $426 = $282; + $427 = $426; + $428 = HEAP32[$427>>2]|0; + $429 = (($426) + 4)|0; + $430 = $429; + $431 = HEAP32[$430>>2]|0; + $432 = (_bitshift64Ashr(0,($428|0),32)|0); + $433 = tempRet0; + $434 = (___muldi3(($432|0),($433|0),($424|0),($425|0))|0); + $435 = tempRet0; + $436 = $in; + $437 = $436; + $438 = HEAP32[$437>>2]|0; + $439 = (($436) + 4)|0; + $440 = $439; + $441 = HEAP32[$440>>2]|0; + $442 = (_bitshift64Ashr(0,($438|0),32)|0); + $443 = tempRet0; + $444 = (($in) + 64|0); + $445 = $444; + $446 = $445; + $447 = HEAP32[$446>>2]|0; + $448 = (($445) + 4)|0; + $449 = $448; + $450 = HEAP32[$449>>2]|0; + $451 = (_bitshift64Ashr(0,($447|0),32)|0); + $452 = tempRet0; + $453 = (___muldi3(($451|0),($452|0),($442|0),($443|0))|0); + $454 = tempRet0; + $455 = (_i64Add(($453|0),($454|0),($434|0),($435|0))|0); + $456 = tempRet0; + $457 = $22; + $458 = $457; + $459 = HEAP32[$458>>2]|0; + $460 = (($457) + 4)|0; + $461 = $460; + $462 = HEAP32[$461>>2]|0; + $463 = (_bitshift64Ashr(0,($459|0),32)|0); + $464 = tempRet0; + $465 = $388; + $466 = $465; + $467 = HEAP32[$466>>2]|0; + $468 = (($465) + 4)|0; + $469 = $468; + $470 = HEAP32[$469>>2]|0; + $471 = (_bitshift64Ashr(0,($467|0),32)|0); + $472 = tempRet0; + $473 = (___muldi3(($471|0),($472|0),($463|0),($464|0))|0); + $474 = tempRet0; + $475 = $102; + $476 = $475; + $477 = HEAP32[$476>>2]|0; + $478 = (($475) + 4)|0; + $479 = $478; + $480 = HEAP32[$479>>2]|0; + $481 = (_bitshift64Ashr(0,($477|0),32)|0); + $482 = tempRet0; + $483 = $224; + $484 = $483; + $485 = HEAP32[$484>>2]|0; + $486 = (($483) + 4)|0; + $487 = $486; + $488 = HEAP32[$487>>2]|0; + $489 = (_bitshift64Ashr(0,($485|0),32)|0); + $490 = tempRet0; + $491 = (___muldi3(($489|0),($490|0),($481|0),($482|0))|0); + $492 = tempRet0; + $493 = (_i64Add(($491|0),($492|0),($473|0),($474|0))|0); + $494 = tempRet0; + $495 = (_bitshift64Shl(($493|0),($494|0),1)|0); + $496 = tempRet0; + $497 = (_i64Add(($455|0),($456|0),($495|0),($496|0))|0); + $498 = tempRet0; + $499 = (_bitshift64Shl(($497|0),($498|0),1)|0); + $500 = tempRet0; + $501 = (_i64Add(($499|0),($500|0),($416|0),($417|0))|0); + $502 = tempRet0; + $503 = (($output) + 64|0); + $504 = $503; + $505 = $504; + HEAP32[$505>>2] = $501; + $506 = (($504) + 4)|0; + $507 = $506; + HEAP32[$507>>2] = $502; + $508 = $160; + $509 = $508; + $510 = HEAP32[$509>>2]|0; + $511 = (($508) + 4)|0; + $512 = $511; + $513 = HEAP32[$512>>2]|0; + $514 = (_bitshift64Ashr(0,($510|0),32)|0); + $515 = tempRet0; + $516 = $224; + $517 = $516; + $518 = HEAP32[$517>>2]|0; + $519 = (($516) + 4)|0; + $520 = $519; + $521 = HEAP32[$520>>2]|0; + $522 = (_bitshift64Ashr(0,($518|0),32)|0); + $523 = tempRet0; + $524 = (___muldi3(($522|0),($523|0),($514|0),($515|0))|0); + $525 = tempRet0; + $526 = $102; + $527 = $526; + $528 = HEAP32[$527>>2]|0; + $529 = (($526) + 4)|0; + $530 = $529; + $531 = HEAP32[$530>>2]|0; + $532 = (_bitshift64Ashr(0,($528|0),32)|0); + $533 = tempRet0; + $534 = $282; + $535 = $534; + $536 = HEAP32[$535>>2]|0; + $537 = (($534) + 4)|0; + $538 = $537; + $539 = HEAP32[$538>>2]|0; + $540 = (_bitshift64Ashr(0,($536|0),32)|0); + $541 = tempRet0; + $542 = (___muldi3(($540|0),($541|0),($532|0),($533|0))|0); + $543 = tempRet0; + $544 = (_i64Add(($542|0),($543|0),($524|0),($525|0))|0); + $545 = tempRet0; + $546 = $56; + $547 = $546; + $548 = HEAP32[$547>>2]|0; + $549 = (($546) + 4)|0; + $550 = $549; + $551 = HEAP32[$550>>2]|0; + $552 = (_bitshift64Ashr(0,($548|0),32)|0); + $553 = tempRet0; + $554 = $388; + $555 = $554; + $556 = HEAP32[$555>>2]|0; + $557 = (($554) + 4)|0; + $558 = $557; + $559 = HEAP32[$558>>2]|0; + $560 = (_bitshift64Ashr(0,($556|0),32)|0); + $561 = tempRet0; + $562 = (___muldi3(($560|0),($561|0),($552|0),($553|0))|0); + $563 = tempRet0; + $564 = (_i64Add(($544|0),($545|0),($562|0),($563|0))|0); + $565 = tempRet0; + $566 = $22; + $567 = $566; + $568 = HEAP32[$567>>2]|0; + $569 = (($566) + 4)|0; + $570 = $569; + $571 = HEAP32[$570>>2]|0; + $572 = (_bitshift64Ashr(0,($568|0),32)|0); + $573 = tempRet0; + $574 = $444; + $575 = $574; + $576 = HEAP32[$575>>2]|0; + $577 = (($574) + 4)|0; + $578 = $577; + $579 = HEAP32[$578>>2]|0; + $580 = (_bitshift64Ashr(0,($576|0),32)|0); + $581 = tempRet0; + $582 = (___muldi3(($580|0),($581|0),($572|0),($573|0))|0); + $583 = tempRet0; + $584 = (_i64Add(($564|0),($565|0),($582|0),($583|0))|0); + $585 = tempRet0; + $586 = $in; + $587 = $586; + $588 = HEAP32[$587>>2]|0; + $589 = (($586) + 4)|0; + $590 = $589; + $591 = HEAP32[$590>>2]|0; + $592 = (_bitshift64Ashr(0,($588|0),32)|0); + $593 = tempRet0; + $594 = (($in) + 72|0); + $595 = $594; + $596 = $595; + $597 = HEAP32[$596>>2]|0; + $598 = (($595) + 4)|0; + $599 = $598; + $600 = HEAP32[$599>>2]|0; + $601 = (_bitshift64Ashr(0,($597|0),32)|0); + $602 = tempRet0; + $603 = (___muldi3(($601|0),($602|0),($592|0),($593|0))|0); + $604 = tempRet0; + $605 = (_i64Add(($584|0),($585|0),($603|0),($604|0))|0); + $606 = tempRet0; + $607 = (_bitshift64Shl(($605|0),($606|0),1)|0); + $608 = tempRet0; + $609 = (($output) + 72|0); + $610 = $609; + $611 = $610; + HEAP32[$611>>2] = $607; + $612 = (($610) + 4)|0; + $613 = $612; + HEAP32[$613>>2] = $608; + $614 = $224; + $615 = $614; + $616 = HEAP32[$615>>2]|0; + $617 = (($614) + 4)|0; + $618 = $617; + $619 = HEAP32[$618>>2]|0; + $620 = (_bitshift64Ashr(0,($616|0),32)|0); + $621 = tempRet0; + $622 = (___muldi3(($620|0),($621|0),($620|0),($621|0))|0); + $623 = tempRet0; + $624 = $160; + $625 = $624; + $626 = HEAP32[$625>>2]|0; + $627 = (($624) + 4)|0; + $628 = $627; + $629 = HEAP32[$628>>2]|0; + $630 = (_bitshift64Ashr(0,($626|0),32)|0); + $631 = tempRet0; + $632 = $282; + $633 = $632; + $634 = HEAP32[$633>>2]|0; + $635 = (($632) + 4)|0; + $636 = $635; + $637 = HEAP32[$636>>2]|0; + $638 = (_bitshift64Ashr(0,($634|0),32)|0); + $639 = tempRet0; + $640 = (___muldi3(($638|0),($639|0),($630|0),($631|0))|0); + $641 = tempRet0; + $642 = (_i64Add(($640|0),($641|0),($622|0),($623|0))|0); + $643 = tempRet0; + $644 = $56; + $645 = $644; + $646 = HEAP32[$645>>2]|0; + $647 = (($644) + 4)|0; + $648 = $647; + $649 = HEAP32[$648>>2]|0; + $650 = (_bitshift64Ashr(0,($646|0),32)|0); + $651 = tempRet0; + $652 = $444; + $653 = $652; + $654 = HEAP32[$653>>2]|0; + $655 = (($652) + 4)|0; + $656 = $655; + $657 = HEAP32[$656>>2]|0; + $658 = (_bitshift64Ashr(0,($654|0),32)|0); + $659 = tempRet0; + $660 = (___muldi3(($658|0),($659|0),($650|0),($651|0))|0); + $661 = tempRet0; + $662 = (_i64Add(($642|0),($643|0),($660|0),($661|0))|0); + $663 = tempRet0; + $664 = $102; + $665 = $664; + $666 = HEAP32[$665>>2]|0; + $667 = (($664) + 4)|0; + $668 = $667; + $669 = HEAP32[$668>>2]|0; + $670 = (_bitshift64Ashr(0,($666|0),32)|0); + $671 = tempRet0; + $672 = $388; + $673 = $672; + $674 = HEAP32[$673>>2]|0; + $675 = (($672) + 4)|0; + $676 = $675; + $677 = HEAP32[$676>>2]|0; + $678 = (_bitshift64Ashr(0,($674|0),32)|0); + $679 = tempRet0; + $680 = (___muldi3(($678|0),($679|0),($670|0),($671|0))|0); + $681 = tempRet0; + $682 = $22; + $683 = $682; + $684 = HEAP32[$683>>2]|0; + $685 = (($682) + 4)|0; + $686 = $685; + $687 = HEAP32[$686>>2]|0; + $688 = (_bitshift64Ashr(0,($684|0),32)|0); + $689 = tempRet0; + $690 = $594; + $691 = $690; + $692 = HEAP32[$691>>2]|0; + $693 = (($690) + 4)|0; + $694 = $693; + $695 = HEAP32[$694>>2]|0; + $696 = (_bitshift64Ashr(0,($692|0),32)|0); + $697 = tempRet0; + $698 = (___muldi3(($696|0),($697|0),($688|0),($689|0))|0); + $699 = tempRet0; + $700 = (_i64Add(($698|0),($699|0),($680|0),($681|0))|0); + $701 = tempRet0; + $702 = (_bitshift64Shl(($700|0),($701|0),1)|0); + $703 = tempRet0; + $704 = (_i64Add(($662|0),($663|0),($702|0),($703|0))|0); + $705 = tempRet0; + $706 = (_bitshift64Shl(($704|0),($705|0),1)|0); + $707 = tempRet0; + $708 = (($output) + 80|0); + $709 = $708; + $710 = $709; + HEAP32[$710>>2] = $706; + $711 = (($709) + 4)|0; + $712 = $711; + HEAP32[$712>>2] = $707; + $713 = $224; + $714 = $713; + $715 = HEAP32[$714>>2]|0; + $716 = (($713) + 4)|0; + $717 = $716; + $718 = HEAP32[$717>>2]|0; + $719 = (_bitshift64Ashr(0,($715|0),32)|0); + $720 = tempRet0; + $721 = $282; + $722 = $721; + $723 = HEAP32[$722>>2]|0; + $724 = (($721) + 4)|0; + $725 = $724; + $726 = HEAP32[$725>>2]|0; + $727 = (_bitshift64Ashr(0,($723|0),32)|0); + $728 = tempRet0; + $729 = (___muldi3(($727|0),($728|0),($719|0),($720|0))|0); + $730 = tempRet0; + $731 = $160; + $732 = $731; + $733 = HEAP32[$732>>2]|0; + $734 = (($731) + 4)|0; + $735 = $734; + $736 = HEAP32[$735>>2]|0; + $737 = (_bitshift64Ashr(0,($733|0),32)|0); + $738 = tempRet0; + $739 = $388; + $740 = $739; + $741 = HEAP32[$740>>2]|0; + $742 = (($739) + 4)|0; + $743 = $742; + $744 = HEAP32[$743>>2]|0; + $745 = (_bitshift64Ashr(0,($741|0),32)|0); + $746 = tempRet0; + $747 = (___muldi3(($745|0),($746|0),($737|0),($738|0))|0); + $748 = tempRet0; + $749 = (_i64Add(($747|0),($748|0),($729|0),($730|0))|0); + $750 = tempRet0; + $751 = $102; + $752 = $751; + $753 = HEAP32[$752>>2]|0; + $754 = (($751) + 4)|0; + $755 = $754; + $756 = HEAP32[$755>>2]|0; + $757 = (_bitshift64Ashr(0,($753|0),32)|0); + $758 = tempRet0; + $759 = $444; + $760 = $759; + $761 = HEAP32[$760>>2]|0; + $762 = (($759) + 4)|0; + $763 = $762; + $764 = HEAP32[$763>>2]|0; + $765 = (_bitshift64Ashr(0,($761|0),32)|0); + $766 = tempRet0; + $767 = (___muldi3(($765|0),($766|0),($757|0),($758|0))|0); + $768 = tempRet0; + $769 = (_i64Add(($749|0),($750|0),($767|0),($768|0))|0); + $770 = tempRet0; + $771 = $56; + $772 = $771; + $773 = HEAP32[$772>>2]|0; + $774 = (($771) + 4)|0; + $775 = $774; + $776 = HEAP32[$775>>2]|0; + $777 = (_bitshift64Ashr(0,($773|0),32)|0); + $778 = tempRet0; + $779 = $594; + $780 = $779; + $781 = HEAP32[$780>>2]|0; + $782 = (($779) + 4)|0; + $783 = $782; + $784 = HEAP32[$783>>2]|0; + $785 = (_bitshift64Ashr(0,($781|0),32)|0); + $786 = tempRet0; + $787 = (___muldi3(($785|0),($786|0),($777|0),($778|0))|0); + $788 = tempRet0; + $789 = (_i64Add(($769|0),($770|0),($787|0),($788|0))|0); + $790 = tempRet0; + $791 = (_bitshift64Shl(($789|0),($790|0),1)|0); + $792 = tempRet0; + $793 = (($output) + 88|0); + $794 = $793; + $795 = $794; + HEAP32[$795>>2] = $791; + $796 = (($794) + 4)|0; + $797 = $796; + HEAP32[$797>>2] = $792; + $798 = $282; + $799 = $798; + $800 = HEAP32[$799>>2]|0; + $801 = (($798) + 4)|0; + $802 = $801; + $803 = HEAP32[$802>>2]|0; + $804 = (_bitshift64Ashr(0,($800|0),32)|0); + $805 = tempRet0; + $806 = (___muldi3(($804|0),($805|0),($804|0),($805|0))|0); + $807 = tempRet0; + $808 = $160; + $809 = $808; + $810 = HEAP32[$809>>2]|0; + $811 = (($808) + 4)|0; + $812 = $811; + $813 = HEAP32[$812>>2]|0; + $814 = (_bitshift64Ashr(0,($810|0),32)|0); + $815 = tempRet0; + $816 = $444; + $817 = $816; + $818 = HEAP32[$817>>2]|0; + $819 = (($816) + 4)|0; + $820 = $819; + $821 = HEAP32[$820>>2]|0; + $822 = (_bitshift64Ashr(0,($818|0),32)|0); + $823 = tempRet0; + $824 = (___muldi3(($822|0),($823|0),($814|0),($815|0))|0); + $825 = tempRet0; + $826 = $224; + $827 = $826; + $828 = HEAP32[$827>>2]|0; + $829 = (($826) + 4)|0; + $830 = $829; + $831 = HEAP32[$830>>2]|0; + $832 = (_bitshift64Ashr(0,($828|0),32)|0); + $833 = tempRet0; + $834 = $388; + $835 = $834; + $836 = HEAP32[$835>>2]|0; + $837 = (($834) + 4)|0; + $838 = $837; + $839 = HEAP32[$838>>2]|0; + $840 = (_bitshift64Ashr(0,($836|0),32)|0); + $841 = tempRet0; + $842 = (___muldi3(($840|0),($841|0),($832|0),($833|0))|0); + $843 = tempRet0; + $844 = $102; + $845 = $844; + $846 = HEAP32[$845>>2]|0; + $847 = (($844) + 4)|0; + $848 = $847; + $849 = HEAP32[$848>>2]|0; + $850 = (_bitshift64Ashr(0,($846|0),32)|0); + $851 = tempRet0; + $852 = $594; + $853 = $852; + $854 = HEAP32[$853>>2]|0; + $855 = (($852) + 4)|0; + $856 = $855; + $857 = HEAP32[$856>>2]|0; + $858 = (_bitshift64Ashr(0,($854|0),32)|0); + $859 = tempRet0; + $860 = (___muldi3(($858|0),($859|0),($850|0),($851|0))|0); + $861 = tempRet0; + $862 = (_i64Add(($860|0),($861|0),($842|0),($843|0))|0); + $863 = tempRet0; + $864 = (_bitshift64Shl(($862|0),($863|0),1)|0); + $865 = tempRet0; + $866 = (_i64Add(($864|0),($865|0),($824|0),($825|0))|0); + $867 = tempRet0; + $868 = (_bitshift64Shl(($866|0),($867|0),1)|0); + $869 = tempRet0; + $870 = (_i64Add(($868|0),($869|0),($806|0),($807|0))|0); + $871 = tempRet0; + $872 = (($output) + 96|0); + $873 = $872; + $874 = $873; + HEAP32[$874>>2] = $870; + $875 = (($873) + 4)|0; + $876 = $875; + HEAP32[$876>>2] = $871; + $877 = $282; + $878 = $877; + $879 = HEAP32[$878>>2]|0; + $880 = (($877) + 4)|0; + $881 = $880; + $882 = HEAP32[$881>>2]|0; + $883 = (_bitshift64Ashr(0,($879|0),32)|0); + $884 = tempRet0; + $885 = $388; + $886 = $885; + $887 = HEAP32[$886>>2]|0; + $888 = (($885) + 4)|0; + $889 = $888; + $890 = HEAP32[$889>>2]|0; + $891 = (_bitshift64Ashr(0,($887|0),32)|0); + $892 = tempRet0; + $893 = (___muldi3(($891|0),($892|0),($883|0),($884|0))|0); + $894 = tempRet0; + $895 = $224; + $896 = $895; + $897 = HEAP32[$896>>2]|0; + $898 = (($895) + 4)|0; + $899 = $898; + $900 = HEAP32[$899>>2]|0; + $901 = (_bitshift64Ashr(0,($897|0),32)|0); + $902 = tempRet0; + $903 = $444; + $904 = $903; + $905 = HEAP32[$904>>2]|0; + $906 = (($903) + 4)|0; + $907 = $906; + $908 = HEAP32[$907>>2]|0; + $909 = (_bitshift64Ashr(0,($905|0),32)|0); + $910 = tempRet0; + $911 = (___muldi3(($909|0),($910|0),($901|0),($902|0))|0); + $912 = tempRet0; + $913 = (_i64Add(($911|0),($912|0),($893|0),($894|0))|0); + $914 = tempRet0; + $915 = $160; + $916 = $915; + $917 = HEAP32[$916>>2]|0; + $918 = (($915) + 4)|0; + $919 = $918; + $920 = HEAP32[$919>>2]|0; + $921 = (_bitshift64Ashr(0,($917|0),32)|0); + $922 = tempRet0; + $923 = $594; + $924 = $923; + $925 = HEAP32[$924>>2]|0; + $926 = (($923) + 4)|0; + $927 = $926; + $928 = HEAP32[$927>>2]|0; + $929 = (_bitshift64Ashr(0,($925|0),32)|0); + $930 = tempRet0; + $931 = (___muldi3(($929|0),($930|0),($921|0),($922|0))|0); + $932 = tempRet0; + $933 = (_i64Add(($913|0),($914|0),($931|0),($932|0))|0); + $934 = tempRet0; + $935 = (_bitshift64Shl(($933|0),($934|0),1)|0); + $936 = tempRet0; + $937 = (($output) + 104|0); + $938 = $937; + $939 = $938; + HEAP32[$939>>2] = $935; + $940 = (($938) + 4)|0; + $941 = $940; + HEAP32[$941>>2] = $936; + $942 = $388; + $943 = $942; + $944 = HEAP32[$943>>2]|0; + $945 = (($942) + 4)|0; + $946 = $945; + $947 = HEAP32[$946>>2]|0; + $948 = (_bitshift64Ashr(0,($944|0),32)|0); + $949 = tempRet0; + $950 = (___muldi3(($948|0),($949|0),($948|0),($949|0))|0); + $951 = tempRet0; + $952 = $282; + $953 = $952; + $954 = HEAP32[$953>>2]|0; + $955 = (($952) + 4)|0; + $956 = $955; + $957 = HEAP32[$956>>2]|0; + $958 = (_bitshift64Ashr(0,($954|0),32)|0); + $959 = tempRet0; + $960 = $444; + $961 = $960; + $962 = HEAP32[$961>>2]|0; + $963 = (($960) + 4)|0; + $964 = $963; + $965 = HEAP32[$964>>2]|0; + $966 = (_bitshift64Ashr(0,($962|0),32)|0); + $967 = tempRet0; + $968 = (___muldi3(($966|0),($967|0),($958|0),($959|0))|0); + $969 = tempRet0; + $970 = (_i64Add(($968|0),($969|0),($950|0),($951|0))|0); + $971 = tempRet0; + $972 = $224; + $973 = $972; + $974 = HEAP32[$973>>2]|0; + $975 = (($972) + 4)|0; + $976 = $975; + $977 = HEAP32[$976>>2]|0; + $978 = (_bitshift64Ashr(0,($974|0),31)|0); + $979 = tempRet0; + $980 = $594; + $981 = $980; + $982 = HEAP32[$981>>2]|0; + $983 = (($980) + 4)|0; + $984 = $983; + $985 = HEAP32[$984>>2]|0; + $986 = (_bitshift64Ashr(0,($982|0),32)|0); + $987 = tempRet0; + $988 = (___muldi3(($986|0),($987|0),($978|0),($979|0))|0); + $989 = tempRet0; + $990 = (_i64Add(($970|0),($971|0),($988|0),($989|0))|0); + $991 = tempRet0; + $992 = (_bitshift64Shl(($990|0),($991|0),1)|0); + $993 = tempRet0; + $994 = (($output) + 112|0); + $995 = $994; + $996 = $995; + HEAP32[$996>>2] = $992; + $997 = (($995) + 4)|0; + $998 = $997; + HEAP32[$998>>2] = $993; + $999 = $388; + $1000 = $999; + $1001 = HEAP32[$1000>>2]|0; + $1002 = (($999) + 4)|0; + $1003 = $1002; + $1004 = HEAP32[$1003>>2]|0; + $1005 = (_bitshift64Ashr(0,($1001|0),32)|0); + $1006 = tempRet0; + $1007 = $444; + $1008 = $1007; + $1009 = HEAP32[$1008>>2]|0; + $1010 = (($1007) + 4)|0; + $1011 = $1010; + $1012 = HEAP32[$1011>>2]|0; + $1013 = (_bitshift64Ashr(0,($1009|0),32)|0); + $1014 = tempRet0; + $1015 = (___muldi3(($1013|0),($1014|0),($1005|0),($1006|0))|0); + $1016 = tempRet0; + $1017 = $282; + $1018 = $1017; + $1019 = HEAP32[$1018>>2]|0; + $1020 = (($1017) + 4)|0; + $1021 = $1020; + $1022 = HEAP32[$1021>>2]|0; + $1023 = (_bitshift64Ashr(0,($1019|0),32)|0); + $1024 = tempRet0; + $1025 = $594; + $1026 = $1025; + $1027 = HEAP32[$1026>>2]|0; + $1028 = (($1025) + 4)|0; + $1029 = $1028; + $1030 = HEAP32[$1029>>2]|0; + $1031 = (_bitshift64Ashr(0,($1027|0),32)|0); + $1032 = tempRet0; + $1033 = (___muldi3(($1031|0),($1032|0),($1023|0),($1024|0))|0); + $1034 = tempRet0; + $1035 = (_i64Add(($1033|0),($1034|0),($1015|0),($1016|0))|0); + $1036 = tempRet0; + $1037 = (_bitshift64Shl(($1035|0),($1036|0),1)|0); + $1038 = tempRet0; + $1039 = (($output) + 120|0); + $1040 = $1039; + $1041 = $1040; + HEAP32[$1041>>2] = $1037; + $1042 = (($1040) + 4)|0; + $1043 = $1042; + HEAP32[$1043>>2] = $1038; + $1044 = $444; + $1045 = $1044; + $1046 = HEAP32[$1045>>2]|0; + $1047 = (($1044) + 4)|0; + $1048 = $1047; + $1049 = HEAP32[$1048>>2]|0; + $1050 = (_bitshift64Ashr(0,($1046|0),32)|0); + $1051 = tempRet0; + $1052 = (___muldi3(($1050|0),($1051|0),($1050|0),($1051|0))|0); + $1053 = tempRet0; + $1054 = $388; + $1055 = $1054; + $1056 = HEAP32[$1055>>2]|0; + $1057 = (($1054) + 4)|0; + $1058 = $1057; + $1059 = HEAP32[$1058>>2]|0; + $1060 = (_bitshift64Ashr(0,($1056|0),30)|0); + $1061 = tempRet0; + $1062 = $594; + $1063 = $1062; + $1064 = HEAP32[$1063>>2]|0; + $1065 = (($1062) + 4)|0; + $1066 = $1065; + $1067 = HEAP32[$1066>>2]|0; + $1068 = (_bitshift64Ashr(0,($1064|0),32)|0); + $1069 = tempRet0; + $1070 = (___muldi3(($1068|0),($1069|0),($1060|0),($1061|0))|0); + $1071 = tempRet0; + $1072 = (_i64Add(($1070|0),($1071|0),($1052|0),($1053|0))|0); + $1073 = tempRet0; + $1074 = (($output) + 128|0); + $1075 = $1074; + $1076 = $1075; + HEAP32[$1076>>2] = $1072; + $1077 = (($1075) + 4)|0; + $1078 = $1077; + HEAP32[$1078>>2] = $1073; + $1079 = $444; + $1080 = $1079; + $1081 = HEAP32[$1080>>2]|0; + $1082 = (($1079) + 4)|0; + $1083 = $1082; + $1084 = HEAP32[$1083>>2]|0; + $1085 = (_bitshift64Ashr(0,($1081|0),31)|0); + $1086 = tempRet0; + $1087 = $594; + $1088 = $1087; + $1089 = HEAP32[$1088>>2]|0; + $1090 = (($1087) + 4)|0; + $1091 = $1090; + $1092 = HEAP32[$1091>>2]|0; + $1093 = (_bitshift64Ashr(0,($1089|0),32)|0); + $1094 = tempRet0; + $1095 = (___muldi3(($1093|0),($1094|0),($1085|0),($1086|0))|0); + $1096 = tempRet0; + $1097 = (($output) + 136|0); + $1098 = $1097; + $1099 = $1098; + HEAP32[$1099>>2] = $1095; + $1100 = (($1098) + 4)|0; + $1101 = $1100; + HEAP32[$1101>>2] = $1096; + $1102 = $594; + $1103 = $1102; + $1104 = HEAP32[$1103>>2]|0; + $1105 = (($1102) + 4)|0; + $1106 = $1105; + $1107 = HEAP32[$1106>>2]|0; + $1108 = (_bitshift64Ashr(0,($1104|0),32)|0); + $1109 = tempRet0; + $1110 = (_bitshift64Ashr(0,($1104|0),31)|0); + $1111 = tempRet0; + $1112 = (___muldi3(($1110|0),($1111|0),($1108|0),($1109|0))|0); + $1113 = tempRet0; + $1114 = (($output) + 144|0); + $1115 = $1114; + $1116 = $1115; + HEAP32[$1116>>2] = $1112; + $1117 = (($1115) + 4)|0; + $1118 = $1117; + HEAP32[$1118>>2] = $1113; + STACKTOP = sp;return; +} +function _div_by_2_26($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = $1 >> 31; + $3 = $2 >>> 6; + $4 = (_i64Add(($3|0),0,($0|0),($1|0))|0); + $5 = tempRet0; + $6 = (_bitshift64Ashr(($4|0),($5|0),26)|0); + $7 = tempRet0; + tempRet0 = $7; + STACKTOP = sp;return ($6|0); +} +function _div_by_2_25($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = $1 >> 31; + $3 = $2 >>> 7; + $4 = (_i64Add(($3|0),0,($0|0),($1|0))|0); + $5 = tempRet0; + $6 = (_bitshift64Ashr(($4|0),($5|0),25)|0); + $7 = tempRet0; + tempRet0 = $7; + STACKTOP = sp;return ($6|0); +} +function _crypto_sign_ed25519_ref10_fe_0($h) { + $h = $h|0; + var dest = 0, label = 0, sp = 0, stop = 0; + sp = STACKTOP; + dest=$h+0|0; stop=dest+40|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_1($h) { + $h = $h|0; + var $0 = 0, dest = 0, label = 0, sp = 0, stop = 0; + sp = STACKTOP; + HEAP32[$h>>2] = 1; + $0 = (($h) + 4|0); + dest=$0+0|0; stop=dest+36|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_add($h,$f,$g) { + $h = $h|0; + $f = $f|0; + $g = $g|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = HEAP32[$g>>2]|0; + $20 = (($g) + 4|0); + $21 = HEAP32[$20>>2]|0; + $22 = (($g) + 8|0); + $23 = HEAP32[$22>>2]|0; + $24 = (($g) + 12|0); + $25 = HEAP32[$24>>2]|0; + $26 = (($g) + 16|0); + $27 = HEAP32[$26>>2]|0; + $28 = (($g) + 20|0); + $29 = HEAP32[$28>>2]|0; + $30 = (($g) + 24|0); + $31 = HEAP32[$30>>2]|0; + $32 = (($g) + 28|0); + $33 = HEAP32[$32>>2]|0; + $34 = (($g) + 32|0); + $35 = HEAP32[$34>>2]|0; + $36 = (($g) + 36|0); + $37 = HEAP32[$36>>2]|0; + $38 = (($19) + ($0))|0; + $39 = (($21) + ($2))|0; + $40 = (($23) + ($4))|0; + $41 = (($25) + ($6))|0; + $42 = (($27) + ($8))|0; + $43 = (($29) + ($10))|0; + $44 = (($31) + ($12))|0; + $45 = (($33) + ($14))|0; + $46 = (($35) + ($16))|0; + $47 = (($37) + ($18))|0; + HEAP32[$h>>2] = $38; + $48 = (($h) + 4|0); + HEAP32[$48>>2] = $39; + $49 = (($h) + 8|0); + HEAP32[$49>>2] = $40; + $50 = (($h) + 12|0); + HEAP32[$50>>2] = $41; + $51 = (($h) + 16|0); + HEAP32[$51>>2] = $42; + $52 = (($h) + 20|0); + HEAP32[$52>>2] = $43; + $53 = (($h) + 24|0); + HEAP32[$53>>2] = $44; + $54 = (($h) + 28|0); + HEAP32[$54>>2] = $45; + $55 = (($h) + 32|0); + HEAP32[$55>>2] = $46; + $56 = (($h) + 36|0); + HEAP32[$56>>2] = $47; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_cmov($f,$g,$b) { + $f = $f|0; + $g = $g|0; + $b = $b|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0; + var $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = HEAP32[$g>>2]|0; + $20 = (($g) + 4|0); + $21 = HEAP32[$20>>2]|0; + $22 = (($g) + 8|0); + $23 = HEAP32[$22>>2]|0; + $24 = (($g) + 12|0); + $25 = HEAP32[$24>>2]|0; + $26 = (($g) + 16|0); + $27 = HEAP32[$26>>2]|0; + $28 = (($g) + 20|0); + $29 = HEAP32[$28>>2]|0; + $30 = (($g) + 24|0); + $31 = HEAP32[$30>>2]|0; + $32 = (($g) + 28|0); + $33 = HEAP32[$32>>2]|0; + $34 = (($g) + 32|0); + $35 = HEAP32[$34>>2]|0; + $36 = (($g) + 36|0); + $37 = HEAP32[$36>>2]|0; + $38 = $19 ^ $0; + $39 = $21 ^ $2; + $40 = $23 ^ $4; + $41 = $25 ^ $6; + $42 = $27 ^ $8; + $43 = $29 ^ $10; + $44 = $31 ^ $12; + $45 = $33 ^ $14; + $46 = $35 ^ $16; + $47 = $37 ^ $18; + $48 = (0 - ($b))|0; + $49 = $38 & $48; + $50 = $39 & $48; + $51 = $40 & $48; + $52 = $41 & $48; + $53 = $42 & $48; + $54 = $43 & $48; + $55 = $44 & $48; + $56 = $45 & $48; + $57 = $46 & $48; + $58 = $47 & $48; + $59 = $49 ^ $0; + HEAP32[$f>>2] = $59; + $60 = $50 ^ $2; + HEAP32[$1>>2] = $60; + $61 = $51 ^ $4; + HEAP32[$3>>2] = $61; + $62 = $52 ^ $6; + HEAP32[$5>>2] = $62; + $63 = $53 ^ $8; + HEAP32[$7>>2] = $63; + $64 = $54 ^ $10; + HEAP32[$9>>2] = $64; + $65 = $55 ^ $12; + HEAP32[$11>>2] = $65; + $66 = $56 ^ $14; + HEAP32[$13>>2] = $66; + $67 = $57 ^ $16; + HEAP32[$15>>2] = $67; + $68 = $58 ^ $18; + HEAP32[$17>>2] = $68; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_copy($h,$f) { + $h = $h|0; + $f = $f|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + HEAP32[$h>>2] = $0; + $19 = (($h) + 4|0); + HEAP32[$19>>2] = $2; + $20 = (($h) + 8|0); + HEAP32[$20>>2] = $4; + $21 = (($h) + 12|0); + HEAP32[$21>>2] = $6; + $22 = (($h) + 16|0); + HEAP32[$22>>2] = $8; + $23 = (($h) + 20|0); + HEAP32[$23>>2] = $10; + $24 = (($h) + 24|0); + HEAP32[$24>>2] = $12; + $25 = (($h) + 28|0); + HEAP32[$25>>2] = $14; + $26 = (($h) + 32|0); + HEAP32[$26>>2] = $16; + $27 = (($h) + 36|0); + HEAP32[$27>>2] = $18; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_frombytes($h,$s) { + $h = $h|0; + $s = $s|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; + var $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0; + var $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0; + var $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0; + var $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (_load_4($s)|0); + $1 = tempRet0; + $2 = (($s) + 4|0); + $3 = (_load_3($2)|0); + $4 = tempRet0; + $5 = (_bitshift64Shl(($3|0),($4|0),6)|0); + $6 = tempRet0; + $7 = (($s) + 7|0); + $8 = (_load_3($7)|0); + $9 = tempRet0; + $10 = (_bitshift64Shl(($8|0),($9|0),5)|0); + $11 = tempRet0; + $12 = (($s) + 10|0); + $13 = (_load_3($12)|0); + $14 = tempRet0; + $15 = (_bitshift64Shl(($13|0),($14|0),3)|0); + $16 = tempRet0; + $17 = (($s) + 13|0); + $18 = (_load_3($17)|0); + $19 = tempRet0; + $20 = (_bitshift64Shl(($18|0),($19|0),2)|0); + $21 = tempRet0; + $22 = (($s) + 16|0); + $23 = (_load_4($22)|0); + $24 = tempRet0; + $25 = (($s) + 20|0); + $26 = (_load_3($25)|0); + $27 = tempRet0; + $28 = (_bitshift64Shl(($26|0),($27|0),7)|0); + $29 = tempRet0; + $30 = (($s) + 23|0); + $31 = (_load_3($30)|0); + $32 = tempRet0; + $33 = (_bitshift64Shl(($31|0),($32|0),5)|0); + $34 = tempRet0; + $35 = (($s) + 26|0); + $36 = (_load_3($35)|0); + $37 = tempRet0; + $38 = (_bitshift64Shl(($36|0),($37|0),4)|0); + $39 = tempRet0; + $40 = (($s) + 29|0); + $41 = (_load_3($40)|0); + $42 = tempRet0; + $43 = (_bitshift64Shl(($41|0),($42|0),2)|0); + $44 = tempRet0; + $45 = $43 & 33554428; + $46 = (_i64Add(($45|0),0,16777216,0)|0); + $47 = tempRet0; + $48 = (_bitshift64Lshr(($46|0),($47|0),25)|0); + $49 = tempRet0; + $50 = (___muldi3(($48|0),($49|0),19,0)|0); + $51 = tempRet0; + $52 = (_i64Add(($50|0),($51|0),($0|0),($1|0))|0); + $53 = tempRet0; + $54 = (_bitshift64Shl(($48|0),($49|0),25)|0); + $55 = tempRet0; + $56 = (_i64Add(($5|0),($6|0),16777216,0)|0); + $57 = tempRet0; + $58 = (_bitshift64Ashr(($56|0),($57|0),25)|0); + $59 = tempRet0; + $60 = (_i64Add(($58|0),($59|0),($10|0),($11|0))|0); + $61 = tempRet0; + $62 = (_bitshift64Shl(($58|0),($59|0),25)|0); + $63 = tempRet0; + $64 = (_i64Subtract(($5|0),($6|0),($62|0),($63|0))|0); + $65 = tempRet0; + $66 = (_i64Add(($15|0),($16|0),16777216,0)|0); + $67 = tempRet0; + $68 = (_bitshift64Ashr(($66|0),($67|0),25)|0); + $69 = tempRet0; + $70 = (_i64Add(($68|0),($69|0),($20|0),($21|0))|0); + $71 = tempRet0; + $72 = (_bitshift64Shl(($68|0),($69|0),25)|0); + $73 = tempRet0; + $74 = (_i64Subtract(($15|0),($16|0),($72|0),($73|0))|0); + $75 = tempRet0; + $76 = (_i64Add(($23|0),($24|0),16777216,0)|0); + $77 = tempRet0; + $78 = (_bitshift64Ashr(($76|0),($77|0),25)|0); + $79 = tempRet0; + $80 = (_i64Add(($28|0),($29|0),($78|0),($79|0))|0); + $81 = tempRet0; + $82 = (_bitshift64Shl(($78|0),($79|0),25)|0); + $83 = tempRet0; + $84 = (_i64Subtract(($23|0),($24|0),($82|0),($83|0))|0); + $85 = tempRet0; + $86 = (_i64Add(($33|0),($34|0),16777216,0)|0); + $87 = tempRet0; + $88 = (_bitshift64Ashr(($86|0),($87|0),25)|0); + $89 = tempRet0; + $90 = (_i64Add(($88|0),($89|0),($38|0),($39|0))|0); + $91 = tempRet0; + $92 = (_bitshift64Shl(($88|0),($89|0),25)|0); + $93 = tempRet0; + $94 = (_i64Add(($52|0),($53|0),33554432,0)|0); + $95 = tempRet0; + $96 = (_bitshift64Ashr(($94|0),($95|0),26)|0); + $97 = tempRet0; + $98 = (_i64Add(($64|0),($65|0),($96|0),($97|0))|0); + $99 = tempRet0; + $100 = (_bitshift64Shl(($96|0),($97|0),26)|0); + $101 = tempRet0; + $102 = (_i64Subtract(($52|0),($53|0),($100|0),($101|0))|0); + $103 = tempRet0; + $104 = (_i64Add(($60|0),($61|0),33554432,0)|0); + $105 = tempRet0; + $106 = (_bitshift64Ashr(($104|0),($105|0),26)|0); + $107 = tempRet0; + $108 = (_i64Add(($74|0),($75|0),($106|0),($107|0))|0); + $109 = tempRet0; + $110 = (_bitshift64Shl(($106|0),($107|0),26)|0); + $111 = tempRet0; + $112 = (_i64Subtract(($60|0),($61|0),($110|0),($111|0))|0); + $113 = tempRet0; + $114 = (_i64Add(($70|0),($71|0),33554432,0)|0); + $115 = tempRet0; + $116 = (_bitshift64Ashr(($114|0),($115|0),26)|0); + $117 = tempRet0; + $118 = (_i64Add(($84|0),($85|0),($116|0),($117|0))|0); + $119 = tempRet0; + $120 = (_bitshift64Shl(($116|0),($117|0),26)|0); + $121 = tempRet0; + $122 = (_i64Subtract(($70|0),($71|0),($120|0),($121|0))|0); + $123 = tempRet0; + $124 = (_i64Add(($80|0),($81|0),33554432,0)|0); + $125 = tempRet0; + $126 = (_bitshift64Ashr(($124|0),($125|0),26)|0); + $127 = tempRet0; + $128 = (_i64Add(($126|0),($127|0),($33|0),($34|0))|0); + $129 = tempRet0; + $130 = (_i64Subtract(($128|0),($129|0),($92|0),($93|0))|0); + $131 = tempRet0; + $132 = (_bitshift64Shl(($126|0),($127|0),26)|0); + $133 = tempRet0; + $134 = (_i64Subtract(($80|0),($81|0),($132|0),($133|0))|0); + $135 = tempRet0; + $136 = (_i64Add(($90|0),($91|0),33554432,0)|0); + $137 = tempRet0; + $138 = (_bitshift64Ashr(($136|0),($137|0),26)|0); + $139 = tempRet0; + $140 = (_i64Add(($138|0),($139|0),($45|0),0)|0); + $141 = tempRet0; + $142 = (_i64Subtract(($140|0),($141|0),($54|0),($55|0))|0); + $143 = tempRet0; + $144 = (_bitshift64Shl(($138|0),($139|0),26)|0); + $145 = tempRet0; + $146 = (_i64Subtract(($90|0),($91|0),($144|0),($145|0))|0); + $147 = tempRet0; + HEAP32[$h>>2] = $102; + $148 = (($h) + 4|0); + HEAP32[$148>>2] = $98; + $149 = (($h) + 8|0); + HEAP32[$149>>2] = $112; + $150 = (($h) + 12|0); + HEAP32[$150>>2] = $108; + $151 = (($h) + 16|0); + HEAP32[$151>>2] = $122; + $152 = (($h) + 20|0); + HEAP32[$152>>2] = $118; + $153 = (($h) + 24|0); + HEAP32[$153>>2] = $134; + $154 = (($h) + 28|0); + HEAP32[$154>>2] = $130; + $155 = (($h) + 32|0); + HEAP32[$155>>2] = $146; + $156 = (($h) + 36|0); + HEAP32[$156>>2] = $142; + STACKTOP = sp;return; +} +function _load_4($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + $15 = (($in) + 3|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16&255; + $18 = (_bitshift64Shl(($17|0),0,24)|0); + $19 = tempRet0; + $20 = $13 | $18; + $21 = $14 | $19; + tempRet0 = $21; + STACKTOP = sp;return ($20|0); +} +function _load_3($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + tempRet0 = $14; + STACKTOP = sp;return ($13|0); +} +function _crypto_sign_ed25519_ref10_fe_invert($out,$z) { + $out = $out|0; + $z = $z|0; + var $0 = 0, $1 = 0, $2 = 0, $exitcond = 0, $exitcond10 = 0, $exitcond11 = 0, $i$74 = 0, $i$83 = 0, $i$92 = 0, $t0 = 0, $t1 = 0, $t2 = 0, $t3 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 160|0; + $t0 = sp + 120|0; + $t1 = sp + 80|0; + $t2 = sp + 40|0; + $t3 = sp; + _crypto_sign_ed25519_ref10_fe_sq($t0,$z); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t1,$z,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t0,$t0,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t0); + _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_mul($t2,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_mul($t2,$t3,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); + $i$74 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + $0 = (($i$74) + 1)|0; + $exitcond11 = ($0|0)==(50); + if ($exitcond11) { + break; + } else { + $i$74 = $0; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t2,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t2); + $i$83 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + $1 = (($i$83) + 1)|0; + $exitcond10 = ($1|0)==(100); + if ($exitcond10) { + break; + } else { + $i$83 = $1; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t2,$t3,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + $i$92 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + $2 = (($i$92) + 1)|0; + $exitcond = ($2|0)==(50); + if ($exitcond) { + break; + } else { + $i$92 = $2; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($out,$t1,$t0); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_isnegative($f) { + $f = $f|0; + var $0 = 0, $1 = 0, $2 = 0, $s = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 32|0; + $s = sp; + _crypto_sign_ed25519_ref10_fe_tobytes($s,$f); + $0 = HEAP8[$s>>0]|0; + $1 = $0&255; + $2 = $1 & 1; + STACKTOP = sp;return ($2|0); +} +function _crypto_sign_ed25519_ref10_fe_isnonzero($f) { + $f = $f|0; + var $0 = 0, $s = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 32|0; + $s = sp; + _crypto_sign_ed25519_ref10_fe_tobytes($s,$f); + $0 = (_crypto_verify_32_ref($s,8)|0); + STACKTOP = sp;return ($0|0); +} +function _crypto_sign_ed25519_ref10_fe_mul($h,$f,$g) { + $h = $h|0; + $f = $f|0; + $g = $g|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; + var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; + var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; + var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; + var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; + var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; + var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; + var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0; + var $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0; + var $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0; + var $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0; + var $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0; + var $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0; + var $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0; + var $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0; + var $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0; + var $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0; + var $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0; + var $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0; + var $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0; + var $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = HEAP32[$g>>2]|0; + $20 = (($g) + 4|0); + $21 = HEAP32[$20>>2]|0; + $22 = (($g) + 8|0); + $23 = HEAP32[$22>>2]|0; + $24 = (($g) + 12|0); + $25 = HEAP32[$24>>2]|0; + $26 = (($g) + 16|0); + $27 = HEAP32[$26>>2]|0; + $28 = (($g) + 20|0); + $29 = HEAP32[$28>>2]|0; + $30 = (($g) + 24|0); + $31 = HEAP32[$30>>2]|0; + $32 = (($g) + 28|0); + $33 = HEAP32[$32>>2]|0; + $34 = (($g) + 32|0); + $35 = HEAP32[$34>>2]|0; + $36 = (($g) + 36|0); + $37 = HEAP32[$36>>2]|0; + $38 = ($21*19)|0; + $39 = ($23*19)|0; + $40 = ($25*19)|0; + $41 = ($27*19)|0; + $42 = ($29*19)|0; + $43 = ($31*19)|0; + $44 = ($33*19)|0; + $45 = ($35*19)|0; + $46 = ($37*19)|0; + $47 = $2 << 1; + $48 = $6 << 1; + $49 = $10 << 1; + $50 = $14 << 1; + $51 = $18 << 1; + $52 = ($0|0)<(0); + $53 = $52 << 31 >> 31; + $54 = ($19|0)<(0); + $55 = $54 << 31 >> 31; + $56 = (___muldi3(($19|0),($55|0),($0|0),($53|0))|0); + $57 = tempRet0; + $58 = ($21|0)<(0); + $59 = $58 << 31 >> 31; + $60 = (___muldi3(($21|0),($59|0),($0|0),($53|0))|0); + $61 = tempRet0; + $62 = ($23|0)<(0); + $63 = $62 << 31 >> 31; + $64 = (___muldi3(($23|0),($63|0),($0|0),($53|0))|0); + $65 = tempRet0; + $66 = ($25|0)<(0); + $67 = $66 << 31 >> 31; + $68 = (___muldi3(($25|0),($67|0),($0|0),($53|0))|0); + $69 = tempRet0; + $70 = ($27|0)<(0); + $71 = $70 << 31 >> 31; + $72 = (___muldi3(($27|0),($71|0),($0|0),($53|0))|0); + $73 = tempRet0; + $74 = ($29|0)<(0); + $75 = $74 << 31 >> 31; + $76 = (___muldi3(($29|0),($75|0),($0|0),($53|0))|0); + $77 = tempRet0; + $78 = ($31|0)<(0); + $79 = $78 << 31 >> 31; + $80 = (___muldi3(($31|0),($79|0),($0|0),($53|0))|0); + $81 = tempRet0; + $82 = ($33|0)<(0); + $83 = $82 << 31 >> 31; + $84 = (___muldi3(($33|0),($83|0),($0|0),($53|0))|0); + $85 = tempRet0; + $86 = ($35|0)<(0); + $87 = $86 << 31 >> 31; + $88 = (___muldi3(($35|0),($87|0),($0|0),($53|0))|0); + $89 = tempRet0; + $90 = ($37|0)<(0); + $91 = $90 << 31 >> 31; + $92 = (___muldi3(($37|0),($91|0),($0|0),($53|0))|0); + $93 = tempRet0; + $94 = ($2|0)<(0); + $95 = $94 << 31 >> 31; + $96 = (___muldi3(($19|0),($55|0),($2|0),($95|0))|0); + $97 = tempRet0; + $98 = ($47|0)<(0); + $99 = $98 << 31 >> 31; + $100 = (___muldi3(($21|0),($59|0),($47|0),($99|0))|0); + $101 = tempRet0; + $102 = (___muldi3(($23|0),($63|0),($2|0),($95|0))|0); + $103 = tempRet0; + $104 = (___muldi3(($25|0),($67|0),($47|0),($99|0))|0); + $105 = tempRet0; + $106 = (___muldi3(($27|0),($71|0),($2|0),($95|0))|0); + $107 = tempRet0; + $108 = (___muldi3(($29|0),($75|0),($47|0),($99|0))|0); + $109 = tempRet0; + $110 = (___muldi3(($31|0),($79|0),($2|0),($95|0))|0); + $111 = tempRet0; + $112 = (___muldi3(($33|0),($83|0),($47|0),($99|0))|0); + $113 = tempRet0; + $114 = (___muldi3(($35|0),($87|0),($2|0),($95|0))|0); + $115 = tempRet0; + $116 = ($46|0)<(0); + $117 = $116 << 31 >> 31; + $118 = (___muldi3(($46|0),($117|0),($47|0),($99|0))|0); + $119 = tempRet0; + $120 = ($4|0)<(0); + $121 = $120 << 31 >> 31; + $122 = (___muldi3(($19|0),($55|0),($4|0),($121|0))|0); + $123 = tempRet0; + $124 = (___muldi3(($21|0),($59|0),($4|0),($121|0))|0); + $125 = tempRet0; + $126 = (___muldi3(($23|0),($63|0),($4|0),($121|0))|0); + $127 = tempRet0; + $128 = (___muldi3(($25|0),($67|0),($4|0),($121|0))|0); + $129 = tempRet0; + $130 = (___muldi3(($27|0),($71|0),($4|0),($121|0))|0); + $131 = tempRet0; + $132 = (___muldi3(($29|0),($75|0),($4|0),($121|0))|0); + $133 = tempRet0; + $134 = (___muldi3(($31|0),($79|0),($4|0),($121|0))|0); + $135 = tempRet0; + $136 = (___muldi3(($33|0),($83|0),($4|0),($121|0))|0); + $137 = tempRet0; + $138 = ($45|0)<(0); + $139 = $138 << 31 >> 31; + $140 = (___muldi3(($45|0),($139|0),($4|0),($121|0))|0); + $141 = tempRet0; + $142 = (___muldi3(($46|0),($117|0),($4|0),($121|0))|0); + $143 = tempRet0; + $144 = ($6|0)<(0); + $145 = $144 << 31 >> 31; + $146 = (___muldi3(($19|0),($55|0),($6|0),($145|0))|0); + $147 = tempRet0; + $148 = ($48|0)<(0); + $149 = $148 << 31 >> 31; + $150 = (___muldi3(($21|0),($59|0),($48|0),($149|0))|0); + $151 = tempRet0; + $152 = (___muldi3(($23|0),($63|0),($6|0),($145|0))|0); + $153 = tempRet0; + $154 = (___muldi3(($25|0),($67|0),($48|0),($149|0))|0); + $155 = tempRet0; + $156 = (___muldi3(($27|0),($71|0),($6|0),($145|0))|0); + $157 = tempRet0; + $158 = (___muldi3(($29|0),($75|0),($48|0),($149|0))|0); + $159 = tempRet0; + $160 = (___muldi3(($31|0),($79|0),($6|0),($145|0))|0); + $161 = tempRet0; + $162 = ($44|0)<(0); + $163 = $162 << 31 >> 31; + $164 = (___muldi3(($44|0),($163|0),($48|0),($149|0))|0); + $165 = tempRet0; + $166 = (___muldi3(($45|0),($139|0),($6|0),($145|0))|0); + $167 = tempRet0; + $168 = (___muldi3(($46|0),($117|0),($48|0),($149|0))|0); + $169 = tempRet0; + $170 = ($8|0)<(0); + $171 = $170 << 31 >> 31; + $172 = (___muldi3(($19|0),($55|0),($8|0),($171|0))|0); + $173 = tempRet0; + $174 = (___muldi3(($21|0),($59|0),($8|0),($171|0))|0); + $175 = tempRet0; + $176 = (___muldi3(($23|0),($63|0),($8|0),($171|0))|0); + $177 = tempRet0; + $178 = (___muldi3(($25|0),($67|0),($8|0),($171|0))|0); + $179 = tempRet0; + $180 = (___muldi3(($27|0),($71|0),($8|0),($171|0))|0); + $181 = tempRet0; + $182 = (___muldi3(($29|0),($75|0),($8|0),($171|0))|0); + $183 = tempRet0; + $184 = ($43|0)<(0); + $185 = $184 << 31 >> 31; + $186 = (___muldi3(($43|0),($185|0),($8|0),($171|0))|0); + $187 = tempRet0; + $188 = (___muldi3(($44|0),($163|0),($8|0),($171|0))|0); + $189 = tempRet0; + $190 = (___muldi3(($45|0),($139|0),($8|0),($171|0))|0); + $191 = tempRet0; + $192 = (___muldi3(($46|0),($117|0),($8|0),($171|0))|0); + $193 = tempRet0; + $194 = ($10|0)<(0); + $195 = $194 << 31 >> 31; + $196 = (___muldi3(($19|0),($55|0),($10|0),($195|0))|0); + $197 = tempRet0; + $198 = ($49|0)<(0); + $199 = $198 << 31 >> 31; + $200 = (___muldi3(($21|0),($59|0),($49|0),($199|0))|0); + $201 = tempRet0; + $202 = (___muldi3(($23|0),($63|0),($10|0),($195|0))|0); + $203 = tempRet0; + $204 = (___muldi3(($25|0),($67|0),($49|0),($199|0))|0); + $205 = tempRet0; + $206 = (___muldi3(($27|0),($71|0),($10|0),($195|0))|0); + $207 = tempRet0; + $208 = ($42|0)<(0); + $209 = $208 << 31 >> 31; + $210 = (___muldi3(($42|0),($209|0),($49|0),($199|0))|0); + $211 = tempRet0; + $212 = (___muldi3(($43|0),($185|0),($10|0),($195|0))|0); + $213 = tempRet0; + $214 = (___muldi3(($44|0),($163|0),($49|0),($199|0))|0); + $215 = tempRet0; + $216 = (___muldi3(($45|0),($139|0),($10|0),($195|0))|0); + $217 = tempRet0; + $218 = (___muldi3(($46|0),($117|0),($49|0),($199|0))|0); + $219 = tempRet0; + $220 = ($12|0)<(0); + $221 = $220 << 31 >> 31; + $222 = (___muldi3(($19|0),($55|0),($12|0),($221|0))|0); + $223 = tempRet0; + $224 = (___muldi3(($21|0),($59|0),($12|0),($221|0))|0); + $225 = tempRet0; + $226 = (___muldi3(($23|0),($63|0),($12|0),($221|0))|0); + $227 = tempRet0; + $228 = (___muldi3(($25|0),($67|0),($12|0),($221|0))|0); + $229 = tempRet0; + $230 = ($41|0)<(0); + $231 = $230 << 31 >> 31; + $232 = (___muldi3(($41|0),($231|0),($12|0),($221|0))|0); + $233 = tempRet0; + $234 = (___muldi3(($42|0),($209|0),($12|0),($221|0))|0); + $235 = tempRet0; + $236 = (___muldi3(($43|0),($185|0),($12|0),($221|0))|0); + $237 = tempRet0; + $238 = (___muldi3(($44|0),($163|0),($12|0),($221|0))|0); + $239 = tempRet0; + $240 = (___muldi3(($45|0),($139|0),($12|0),($221|0))|0); + $241 = tempRet0; + $242 = (___muldi3(($46|0),($117|0),($12|0),($221|0))|0); + $243 = tempRet0; + $244 = ($14|0)<(0); + $245 = $244 << 31 >> 31; + $246 = (___muldi3(($19|0),($55|0),($14|0),($245|0))|0); + $247 = tempRet0; + $248 = ($50|0)<(0); + $249 = $248 << 31 >> 31; + $250 = (___muldi3(($21|0),($59|0),($50|0),($249|0))|0); + $251 = tempRet0; + $252 = (___muldi3(($23|0),($63|0),($14|0),($245|0))|0); + $253 = tempRet0; + $254 = ($40|0)<(0); + $255 = $254 << 31 >> 31; + $256 = (___muldi3(($40|0),($255|0),($50|0),($249|0))|0); + $257 = tempRet0; + $258 = (___muldi3(($41|0),($231|0),($14|0),($245|0))|0); + $259 = tempRet0; + $260 = (___muldi3(($42|0),($209|0),($50|0),($249|0))|0); + $261 = tempRet0; + $262 = (___muldi3(($43|0),($185|0),($14|0),($245|0))|0); + $263 = tempRet0; + $264 = (___muldi3(($44|0),($163|0),($50|0),($249|0))|0); + $265 = tempRet0; + $266 = (___muldi3(($45|0),($139|0),($14|0),($245|0))|0); + $267 = tempRet0; + $268 = (___muldi3(($46|0),($117|0),($50|0),($249|0))|0); + $269 = tempRet0; + $270 = ($16|0)<(0); + $271 = $270 << 31 >> 31; + $272 = (___muldi3(($19|0),($55|0),($16|0),($271|0))|0); + $273 = tempRet0; + $274 = (___muldi3(($21|0),($59|0),($16|0),($271|0))|0); + $275 = tempRet0; + $276 = ($39|0)<(0); + $277 = $276 << 31 >> 31; + $278 = (___muldi3(($39|0),($277|0),($16|0),($271|0))|0); + $279 = tempRet0; + $280 = (___muldi3(($40|0),($255|0),($16|0),($271|0))|0); + $281 = tempRet0; + $282 = (___muldi3(($41|0),($231|0),($16|0),($271|0))|0); + $283 = tempRet0; + $284 = (___muldi3(($42|0),($209|0),($16|0),($271|0))|0); + $285 = tempRet0; + $286 = (___muldi3(($43|0),($185|0),($16|0),($271|0))|0); + $287 = tempRet0; + $288 = (___muldi3(($44|0),($163|0),($16|0),($271|0))|0); + $289 = tempRet0; + $290 = (___muldi3(($45|0),($139|0),($16|0),($271|0))|0); + $291 = tempRet0; + $292 = (___muldi3(($46|0),($117|0),($16|0),($271|0))|0); + $293 = tempRet0; + $294 = ($18|0)<(0); + $295 = $294 << 31 >> 31; + $296 = (___muldi3(($19|0),($55|0),($18|0),($295|0))|0); + $297 = tempRet0; + $298 = ($51|0)<(0); + $299 = $298 << 31 >> 31; + $300 = ($38|0)<(0); + $301 = $300 << 31 >> 31; + $302 = (___muldi3(($38|0),($301|0),($51|0),($299|0))|0); + $303 = tempRet0; + $304 = (___muldi3(($39|0),($277|0),($18|0),($295|0))|0); + $305 = tempRet0; + $306 = (___muldi3(($40|0),($255|0),($51|0),($299|0))|0); + $307 = tempRet0; + $308 = (___muldi3(($41|0),($231|0),($18|0),($295|0))|0); + $309 = tempRet0; + $310 = (___muldi3(($42|0),($209|0),($51|0),($299|0))|0); + $311 = tempRet0; + $312 = (___muldi3(($43|0),($185|0),($18|0),($295|0))|0); + $313 = tempRet0; + $314 = (___muldi3(($44|0),($163|0),($51|0),($299|0))|0); + $315 = tempRet0; + $316 = (___muldi3(($45|0),($139|0),($18|0),($295|0))|0); + $317 = tempRet0; + $318 = (___muldi3(($46|0),($117|0),($51|0),($299|0))|0); + $319 = tempRet0; + $320 = (_i64Add(($302|0),($303|0),($56|0),($57|0))|0); + $321 = tempRet0; + $322 = (_i64Add(($320|0),($321|0),($278|0),($279|0))|0); + $323 = tempRet0; + $324 = (_i64Add(($322|0),($323|0),($256|0),($257|0))|0); + $325 = tempRet0; + $326 = (_i64Add(($324|0),($325|0),($232|0),($233|0))|0); + $327 = tempRet0; + $328 = (_i64Add(($326|0),($327|0),($210|0),($211|0))|0); + $329 = tempRet0; + $330 = (_i64Add(($328|0),($329|0),($186|0),($187|0))|0); + $331 = tempRet0; + $332 = (_i64Add(($330|0),($331|0),($164|0),($165|0))|0); + $333 = tempRet0; + $334 = (_i64Add(($332|0),($333|0),($140|0),($141|0))|0); + $335 = tempRet0; + $336 = (_i64Add(($334|0),($335|0),($118|0),($119|0))|0); + $337 = tempRet0; + $338 = (_i64Add(($60|0),($61|0),($96|0),($97|0))|0); + $339 = tempRet0; + $340 = (_i64Add(($150|0),($151|0),($172|0),($173|0))|0); + $341 = tempRet0; + $342 = (_i64Add(($340|0),($341|0),($126|0),($127|0))|0); + $343 = tempRet0; + $344 = (_i64Add(($342|0),($343|0),($104|0),($105|0))|0); + $345 = tempRet0; + $346 = (_i64Add(($344|0),($345|0),($72|0),($73|0))|0); + $347 = tempRet0; + $348 = (_i64Add(($346|0),($347|0),($310|0),($311|0))|0); + $349 = tempRet0; + $350 = (_i64Add(($348|0),($349|0),($286|0),($287|0))|0); + $351 = tempRet0; + $352 = (_i64Add(($350|0),($351|0),($264|0),($265|0))|0); + $353 = tempRet0; + $354 = (_i64Add(($352|0),($353|0),($240|0),($241|0))|0); + $355 = tempRet0; + $356 = (_i64Add(($354|0),($355|0),($218|0),($219|0))|0); + $357 = tempRet0; + $358 = (_i64Add(($336|0),($337|0),33554432,0)|0); + $359 = tempRet0; + $360 = (_bitshift64Ashr(($358|0),($359|0),26)|0); + $361 = tempRet0; + $362 = (_i64Add(($338|0),($339|0),($304|0),($305|0))|0); + $363 = tempRet0; + $364 = (_i64Add(($362|0),($363|0),($280|0),($281|0))|0); + $365 = tempRet0; + $366 = (_i64Add(($364|0),($365|0),($258|0),($259|0))|0); + $367 = tempRet0; + $368 = (_i64Add(($366|0),($367|0),($234|0),($235|0))|0); + $369 = tempRet0; + $370 = (_i64Add(($368|0),($369|0),($212|0),($213|0))|0); + $371 = tempRet0; + $372 = (_i64Add(($370|0),($371|0),($188|0),($189|0))|0); + $373 = tempRet0; + $374 = (_i64Add(($372|0),($373|0),($166|0),($167|0))|0); + $375 = tempRet0; + $376 = (_i64Add(($374|0),($375|0),($142|0),($143|0))|0); + $377 = tempRet0; + $378 = (_i64Add(($376|0),($377|0),($360|0),($361|0))|0); + $379 = tempRet0; + $380 = (_bitshift64Shl(($360|0),($361|0),26)|0); + $381 = tempRet0; + $382 = (_i64Subtract(($336|0),($337|0),($380|0),($381|0))|0); + $383 = tempRet0; + $384 = (_i64Add(($356|0),($357|0),33554432,0)|0); + $385 = tempRet0; + $386 = (_bitshift64Ashr(($384|0),($385|0),26)|0); + $387 = tempRet0; + $388 = (_i64Add(($174|0),($175|0),($196|0),($197|0))|0); + $389 = tempRet0; + $390 = (_i64Add(($388|0),($389|0),($152|0),($153|0))|0); + $391 = tempRet0; + $392 = (_i64Add(($390|0),($391|0),($128|0),($129|0))|0); + $393 = tempRet0; + $394 = (_i64Add(($392|0),($393|0),($106|0),($107|0))|0); + $395 = tempRet0; + $396 = (_i64Add(($394|0),($395|0),($76|0),($77|0))|0); + $397 = tempRet0; + $398 = (_i64Add(($396|0),($397|0),($312|0),($313|0))|0); + $399 = tempRet0; + $400 = (_i64Add(($398|0),($399|0),($288|0),($289|0))|0); + $401 = tempRet0; + $402 = (_i64Add(($400|0),($401|0),($266|0),($267|0))|0); + $403 = tempRet0; + $404 = (_i64Add(($402|0),($403|0),($242|0),($243|0))|0); + $405 = tempRet0; + $406 = (_i64Add(($404|0),($405|0),($386|0),($387|0))|0); + $407 = tempRet0; + $408 = (_bitshift64Shl(($386|0),($387|0),26)|0); + $409 = tempRet0; + $410 = (_i64Subtract(($356|0),($357|0),($408|0),($409|0))|0); + $411 = tempRet0; + $412 = (_i64Add(($378|0),($379|0),16777216,0)|0); + $413 = tempRet0; + $414 = (_bitshift64Ashr(($412|0),($413|0),25)|0); + $415 = tempRet0; + $416 = (_i64Add(($100|0),($101|0),($122|0),($123|0))|0); + $417 = tempRet0; + $418 = (_i64Add(($416|0),($417|0),($64|0),($65|0))|0); + $419 = tempRet0; + $420 = (_i64Add(($418|0),($419|0),($306|0),($307|0))|0); + $421 = tempRet0; + $422 = (_i64Add(($420|0),($421|0),($282|0),($283|0))|0); + $423 = tempRet0; + $424 = (_i64Add(($422|0),($423|0),($260|0),($261|0))|0); + $425 = tempRet0; + $426 = (_i64Add(($424|0),($425|0),($236|0),($237|0))|0); + $427 = tempRet0; + $428 = (_i64Add(($426|0),($427|0),($214|0),($215|0))|0); + $429 = tempRet0; + $430 = (_i64Add(($428|0),($429|0),($190|0),($191|0))|0); + $431 = tempRet0; + $432 = (_i64Add(($430|0),($431|0),($168|0),($169|0))|0); + $433 = tempRet0; + $434 = (_i64Add(($432|0),($433|0),($414|0),($415|0))|0); + $435 = tempRet0; + $436 = (_bitshift64Shl(($414|0),($415|0),25)|0); + $437 = tempRet0; + $438 = (_i64Subtract(($378|0),($379|0),($436|0),($437|0))|0); + $439 = tempRet0; + $440 = (_i64Add(($406|0),($407|0),16777216,0)|0); + $441 = tempRet0; + $442 = (_bitshift64Ashr(($440|0),($441|0),25)|0); + $443 = tempRet0; + $444 = (_i64Add(($200|0),($201|0),($222|0),($223|0))|0); + $445 = tempRet0; + $446 = (_i64Add(($444|0),($445|0),($176|0),($177|0))|0); + $447 = tempRet0; + $448 = (_i64Add(($446|0),($447|0),($154|0),($155|0))|0); + $449 = tempRet0; + $450 = (_i64Add(($448|0),($449|0),($130|0),($131|0))|0); + $451 = tempRet0; + $452 = (_i64Add(($450|0),($451|0),($108|0),($109|0))|0); + $453 = tempRet0; + $454 = (_i64Add(($452|0),($453|0),($80|0),($81|0))|0); + $455 = tempRet0; + $456 = (_i64Add(($454|0),($455|0),($314|0),($315|0))|0); + $457 = tempRet0; + $458 = (_i64Add(($456|0),($457|0),($290|0),($291|0))|0); + $459 = tempRet0; + $460 = (_i64Add(($458|0),($459|0),($268|0),($269|0))|0); + $461 = tempRet0; + $462 = (_i64Add(($460|0),($461|0),($442|0),($443|0))|0); + $463 = tempRet0; + $464 = (_bitshift64Shl(($442|0),($443|0),25)|0); + $465 = tempRet0; + $466 = (_i64Subtract(($406|0),($407|0),($464|0),($465|0))|0); + $467 = tempRet0; + $468 = (_i64Add(($434|0),($435|0),33554432,0)|0); + $469 = tempRet0; + $470 = (_bitshift64Ashr(($468|0),($469|0),26)|0); + $471 = tempRet0; + $472 = (_i64Add(($124|0),($125|0),($146|0),($147|0))|0); + $473 = tempRet0; + $474 = (_i64Add(($472|0),($473|0),($102|0),($103|0))|0); + $475 = tempRet0; + $476 = (_i64Add(($474|0),($475|0),($68|0),($69|0))|0); + $477 = tempRet0; + $478 = (_i64Add(($476|0),($477|0),($308|0),($309|0))|0); + $479 = tempRet0; + $480 = (_i64Add(($478|0),($479|0),($284|0),($285|0))|0); + $481 = tempRet0; + $482 = (_i64Add(($480|0),($481|0),($262|0),($263|0))|0); + $483 = tempRet0; + $484 = (_i64Add(($482|0),($483|0),($238|0),($239|0))|0); + $485 = tempRet0; + $486 = (_i64Add(($484|0),($485|0),($216|0),($217|0))|0); + $487 = tempRet0; + $488 = (_i64Add(($486|0),($487|0),($192|0),($193|0))|0); + $489 = tempRet0; + $490 = (_i64Add(($488|0),($489|0),($470|0),($471|0))|0); + $491 = tempRet0; + $492 = (_bitshift64Shl(($470|0),($471|0),26)|0); + $493 = tempRet0; + $494 = (_i64Subtract(($434|0),($435|0),($492|0),($493|0))|0); + $495 = tempRet0; + $496 = (_i64Add(($462|0),($463|0),33554432,0)|0); + $497 = tempRet0; + $498 = (_bitshift64Ashr(($496|0),($497|0),26)|0); + $499 = tempRet0; + $500 = (_i64Add(($224|0),($225|0),($246|0),($247|0))|0); + $501 = tempRet0; + $502 = (_i64Add(($500|0),($501|0),($202|0),($203|0))|0); + $503 = tempRet0; + $504 = (_i64Add(($502|0),($503|0),($178|0),($179|0))|0); + $505 = tempRet0; + $506 = (_i64Add(($504|0),($505|0),($156|0),($157|0))|0); + $507 = tempRet0; + $508 = (_i64Add(($506|0),($507|0),($132|0),($133|0))|0); + $509 = tempRet0; + $510 = (_i64Add(($508|0),($509|0),($110|0),($111|0))|0); + $511 = tempRet0; + $512 = (_i64Add(($510|0),($511|0),($84|0),($85|0))|0); + $513 = tempRet0; + $514 = (_i64Add(($512|0),($513|0),($316|0),($317|0))|0); + $515 = tempRet0; + $516 = (_i64Add(($514|0),($515|0),($292|0),($293|0))|0); + $517 = tempRet0; + $518 = (_i64Add(($516|0),($517|0),($498|0),($499|0))|0); + $519 = tempRet0; + $520 = (_bitshift64Shl(($498|0),($499|0),26)|0); + $521 = tempRet0; + $522 = (_i64Subtract(($462|0),($463|0),($520|0),($521|0))|0); + $523 = tempRet0; + $524 = (_i64Add(($490|0),($491|0),16777216,0)|0); + $525 = tempRet0; + $526 = (_bitshift64Ashr(($524|0),($525|0),25)|0); + $527 = tempRet0; + $528 = (_i64Add(($526|0),($527|0),($410|0),($411|0))|0); + $529 = tempRet0; + $530 = (_bitshift64Shl(($526|0),($527|0),25)|0); + $531 = tempRet0; + $532 = (_i64Subtract(($490|0),($491|0),($530|0),($531|0))|0); + $533 = tempRet0; + $534 = (_i64Add(($518|0),($519|0),16777216,0)|0); + $535 = tempRet0; + $536 = (_bitshift64Ashr(($534|0),($535|0),25)|0); + $537 = tempRet0; + $538 = (_i64Add(($250|0),($251|0),($272|0),($273|0))|0); + $539 = tempRet0; + $540 = (_i64Add(($538|0),($539|0),($226|0),($227|0))|0); + $541 = tempRet0; + $542 = (_i64Add(($540|0),($541|0),($204|0),($205|0))|0); + $543 = tempRet0; + $544 = (_i64Add(($542|0),($543|0),($180|0),($181|0))|0); + $545 = tempRet0; + $546 = (_i64Add(($544|0),($545|0),($158|0),($159|0))|0); + $547 = tempRet0; + $548 = (_i64Add(($546|0),($547|0),($134|0),($135|0))|0); + $549 = tempRet0; + $550 = (_i64Add(($548|0),($549|0),($112|0),($113|0))|0); + $551 = tempRet0; + $552 = (_i64Add(($550|0),($551|0),($88|0),($89|0))|0); + $553 = tempRet0; + $554 = (_i64Add(($552|0),($553|0),($318|0),($319|0))|0); + $555 = tempRet0; + $556 = (_i64Add(($554|0),($555|0),($536|0),($537|0))|0); + $557 = tempRet0; + $558 = (_bitshift64Shl(($536|0),($537|0),25)|0); + $559 = tempRet0; + $560 = (_i64Subtract(($518|0),($519|0),($558|0),($559|0))|0); + $561 = tempRet0; + $562 = (_i64Add(($528|0),($529|0),33554432,0)|0); + $563 = tempRet0; + $564 = (_bitshift64Ashr(($562|0),($563|0),26)|0); + $565 = tempRet0; + $566 = (_i64Add(($466|0),($467|0),($564|0),($565|0))|0); + $567 = tempRet0; + $568 = (_bitshift64Shl(($564|0),($565|0),26)|0); + $569 = tempRet0; + $570 = (_i64Subtract(($528|0),($529|0),($568|0),($569|0))|0); + $571 = tempRet0; + $572 = (_i64Add(($556|0),($557|0),33554432,0)|0); + $573 = tempRet0; + $574 = (_bitshift64Ashr(($572|0),($573|0),26)|0); + $575 = tempRet0; + $576 = (_i64Add(($274|0),($275|0),($296|0),($297|0))|0); + $577 = tempRet0; + $578 = (_i64Add(($576|0),($577|0),($252|0),($253|0))|0); + $579 = tempRet0; + $580 = (_i64Add(($578|0),($579|0),($228|0),($229|0))|0); + $581 = tempRet0; + $582 = (_i64Add(($580|0),($581|0),($206|0),($207|0))|0); + $583 = tempRet0; + $584 = (_i64Add(($582|0),($583|0),($182|0),($183|0))|0); + $585 = tempRet0; + $586 = (_i64Add(($584|0),($585|0),($160|0),($161|0))|0); + $587 = tempRet0; + $588 = (_i64Add(($586|0),($587|0),($136|0),($137|0))|0); + $589 = tempRet0; + $590 = (_i64Add(($588|0),($589|0),($114|0),($115|0))|0); + $591 = tempRet0; + $592 = (_i64Add(($590|0),($591|0),($92|0),($93|0))|0); + $593 = tempRet0; + $594 = (_i64Add(($592|0),($593|0),($574|0),($575|0))|0); + $595 = tempRet0; + $596 = (_bitshift64Shl(($574|0),($575|0),26)|0); + $597 = tempRet0; + $598 = (_i64Subtract(($556|0),($557|0),($596|0),($597|0))|0); + $599 = tempRet0; + $600 = (_i64Add(($594|0),($595|0),16777216,0)|0); + $601 = tempRet0; + $602 = (_bitshift64Ashr(($600|0),($601|0),25)|0); + $603 = tempRet0; + $604 = (___muldi3(($602|0),($603|0),19,0)|0); + $605 = tempRet0; + $606 = (_i64Add(($604|0),($605|0),($382|0),($383|0))|0); + $607 = tempRet0; + $608 = (_bitshift64Shl(($602|0),($603|0),25)|0); + $609 = tempRet0; + $610 = (_i64Subtract(($594|0),($595|0),($608|0),($609|0))|0); + $611 = tempRet0; + $612 = (_i64Add(($606|0),($607|0),33554432,0)|0); + $613 = tempRet0; + $614 = (_bitshift64Ashr(($612|0),($613|0),26)|0); + $615 = tempRet0; + $616 = (_i64Add(($438|0),($439|0),($614|0),($615|0))|0); + $617 = tempRet0; + $618 = (_bitshift64Shl(($614|0),($615|0),26)|0); + $619 = tempRet0; + $620 = (_i64Subtract(($606|0),($607|0),($618|0),($619|0))|0); + $621 = tempRet0; + HEAP32[$h>>2] = $620; + $622 = (($h) + 4|0); + HEAP32[$622>>2] = $616; + $623 = (($h) + 8|0); + HEAP32[$623>>2] = $494; + $624 = (($h) + 12|0); + HEAP32[$624>>2] = $532; + $625 = (($h) + 16|0); + HEAP32[$625>>2] = $570; + $626 = (($h) + 20|0); + HEAP32[$626>>2] = $566; + $627 = (($h) + 24|0); + HEAP32[$627>>2] = $522; + $628 = (($h) + 28|0); + HEAP32[$628>>2] = $560; + $629 = (($h) + 32|0); + HEAP32[$629>>2] = $598; + $630 = (($h) + 36|0); + HEAP32[$630>>2] = $610; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_neg($h,$f) { + $h = $h|0; + $f = $f|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = (0 - ($0))|0; + $20 = (0 - ($2))|0; + $21 = (0 - ($4))|0; + $22 = (0 - ($6))|0; + $23 = (0 - ($8))|0; + $24 = (0 - ($10))|0; + $25 = (0 - ($12))|0; + $26 = (0 - ($14))|0; + $27 = (0 - ($16))|0; + $28 = (0 - ($18))|0; + HEAP32[$h>>2] = $19; + $29 = (($h) + 4|0); + HEAP32[$29>>2] = $20; + $30 = (($h) + 8|0); + HEAP32[$30>>2] = $21; + $31 = (($h) + 12|0); + HEAP32[$31>>2] = $22; + $32 = (($h) + 16|0); + HEAP32[$32>>2] = $23; + $33 = (($h) + 20|0); + HEAP32[$33>>2] = $24; + $34 = (($h) + 24|0); + HEAP32[$34>>2] = $25; + $35 = (($h) + 28|0); + HEAP32[$35>>2] = $26; + $36 = (($h) + 32|0); + HEAP32[$36>>2] = $27; + $37 = (($h) + 36|0); + HEAP32[$37>>2] = $28; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_pow22523($out,$z) { + $out = $out|0; + $z = $z|0; + var $0 = 0, $1 = 0, $2 = 0, $exitcond = 0, $exitcond10 = 0, $exitcond11 = 0, $i$74 = 0, $i$83 = 0, $i$92 = 0, $t0 = 0, $t1 = 0, $t2 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $t0 = sp + 80|0; + $t1 = sp + 40|0; + $t2 = sp; + _crypto_sign_ed25519_ref10_fe_sq($t0,$z); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t1,$z,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t0,$t0,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); + _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); + $i$74 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + $0 = (($i$74) + 1)|0; + $exitcond11 = ($0|0)==(50); + if ($exitcond11) { + break; + } else { + $i$74 = $0; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); + $i$83 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + $1 = (($i$83) + 1)|0; + $exitcond10 = ($1|0)==(100); + if ($exitcond10) { + break; + } else { + $i$83 = $1; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + $i$92 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + $2 = (($i$92) + 1)|0; + $exitcond = ($2|0)==(50); + if ($exitcond) { + break; + } else { + $i$92 = $2; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); + _crypto_sign_ed25519_ref10_fe_mul($out,$t0,$z); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_sq($h,$f) { + $h = $h|0; + $f = $f|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; + var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; + var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; + var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; + var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; + var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; + var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; + var $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0; + var $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0; + var $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = $0 << 1; + $20 = $2 << 1; + $21 = $4 << 1; + $22 = $6 << 1; + $23 = $8 << 1; + $24 = $10 << 1; + $25 = $12 << 1; + $26 = $14 << 1; + $27 = ($10*38)|0; + $28 = ($12*19)|0; + $29 = ($14*38)|0; + $30 = ($16*19)|0; + $31 = ($18*38)|0; + $32 = ($0|0)<(0); + $33 = $32 << 31 >> 31; + $34 = (___muldi3(($0|0),($33|0),($0|0),($33|0))|0); + $35 = tempRet0; + $36 = ($19|0)<(0); + $37 = $36 << 31 >> 31; + $38 = ($2|0)<(0); + $39 = $38 << 31 >> 31; + $40 = (___muldi3(($19|0),($37|0),($2|0),($39|0))|0); + $41 = tempRet0; + $42 = ($4|0)<(0); + $43 = $42 << 31 >> 31; + $44 = (___muldi3(($4|0),($43|0),($19|0),($37|0))|0); + $45 = tempRet0; + $46 = ($6|0)<(0); + $47 = $46 << 31 >> 31; + $48 = (___muldi3(($6|0),($47|0),($19|0),($37|0))|0); + $49 = tempRet0; + $50 = ($8|0)<(0); + $51 = $50 << 31 >> 31; + $52 = (___muldi3(($8|0),($51|0),($19|0),($37|0))|0); + $53 = tempRet0; + $54 = ($10|0)<(0); + $55 = $54 << 31 >> 31; + $56 = (___muldi3(($10|0),($55|0),($19|0),($37|0))|0); + $57 = tempRet0; + $58 = ($12|0)<(0); + $59 = $58 << 31 >> 31; + $60 = (___muldi3(($12|0),($59|0),($19|0),($37|0))|0); + $61 = tempRet0; + $62 = ($14|0)<(0); + $63 = $62 << 31 >> 31; + $64 = (___muldi3(($14|0),($63|0),($19|0),($37|0))|0); + $65 = tempRet0; + $66 = ($16|0)<(0); + $67 = $66 << 31 >> 31; + $68 = (___muldi3(($16|0),($67|0),($19|0),($37|0))|0); + $69 = tempRet0; + $70 = ($18|0)<(0); + $71 = $70 << 31 >> 31; + $72 = (___muldi3(($18|0),($71|0),($19|0),($37|0))|0); + $73 = tempRet0; + $74 = ($20|0)<(0); + $75 = $74 << 31 >> 31; + $76 = (___muldi3(($20|0),($75|0),($2|0),($39|0))|0); + $77 = tempRet0; + $78 = (___muldi3(($20|0),($75|0),($4|0),($43|0))|0); + $79 = tempRet0; + $80 = ($22|0)<(0); + $81 = $80 << 31 >> 31; + $82 = (___muldi3(($22|0),($81|0),($20|0),($75|0))|0); + $83 = tempRet0; + $84 = (___muldi3(($8|0),($51|0),($20|0),($75|0))|0); + $85 = tempRet0; + $86 = ($24|0)<(0); + $87 = $86 << 31 >> 31; + $88 = (___muldi3(($24|0),($87|0),($20|0),($75|0))|0); + $89 = tempRet0; + $90 = (___muldi3(($12|0),($59|0),($20|0),($75|0))|0); + $91 = tempRet0; + $92 = ($26|0)<(0); + $93 = $92 << 31 >> 31; + $94 = (___muldi3(($26|0),($93|0),($20|0),($75|0))|0); + $95 = tempRet0; + $96 = (___muldi3(($16|0),($67|0),($20|0),($75|0))|0); + $97 = tempRet0; + $98 = ($31|0)<(0); + $99 = $98 << 31 >> 31; + $100 = (___muldi3(($31|0),($99|0),($20|0),($75|0))|0); + $101 = tempRet0; + $102 = (___muldi3(($4|0),($43|0),($4|0),($43|0))|0); + $103 = tempRet0; + $104 = ($21|0)<(0); + $105 = $104 << 31 >> 31; + $106 = (___muldi3(($21|0),($105|0),($6|0),($47|0))|0); + $107 = tempRet0; + $108 = (___muldi3(($8|0),($51|0),($21|0),($105|0))|0); + $109 = tempRet0; + $110 = (___muldi3(($10|0),($55|0),($21|0),($105|0))|0); + $111 = tempRet0; + $112 = (___muldi3(($12|0),($59|0),($21|0),($105|0))|0); + $113 = tempRet0; + $114 = (___muldi3(($14|0),($63|0),($21|0),($105|0))|0); + $115 = tempRet0; + $116 = ($30|0)<(0); + $117 = $116 << 31 >> 31; + $118 = (___muldi3(($30|0),($117|0),($21|0),($105|0))|0); + $119 = tempRet0; + $120 = (___muldi3(($31|0),($99|0),($4|0),($43|0))|0); + $121 = tempRet0; + $122 = (___muldi3(($22|0),($81|0),($6|0),($47|0))|0); + $123 = tempRet0; + $124 = (___muldi3(($22|0),($81|0),($8|0),($51|0))|0); + $125 = tempRet0; + $126 = (___muldi3(($24|0),($87|0),($22|0),($81|0))|0); + $127 = tempRet0; + $128 = (___muldi3(($12|0),($59|0),($22|0),($81|0))|0); + $129 = tempRet0; + $130 = ($29|0)<(0); + $131 = $130 << 31 >> 31; + $132 = (___muldi3(($29|0),($131|0),($22|0),($81|0))|0); + $133 = tempRet0; + $134 = (___muldi3(($30|0),($117|0),($22|0),($81|0))|0); + $135 = tempRet0; + $136 = (___muldi3(($31|0),($99|0),($22|0),($81|0))|0); + $137 = tempRet0; + $138 = (___muldi3(($8|0),($51|0),($8|0),($51|0))|0); + $139 = tempRet0; + $140 = ($23|0)<(0); + $141 = $140 << 31 >> 31; + $142 = (___muldi3(($23|0),($141|0),($10|0),($55|0))|0); + $143 = tempRet0; + $144 = ($28|0)<(0); + $145 = $144 << 31 >> 31; + $146 = (___muldi3(($28|0),($145|0),($23|0),($141|0))|0); + $147 = tempRet0; + $148 = (___muldi3(($29|0),($131|0),($8|0),($51|0))|0); + $149 = tempRet0; + $150 = (___muldi3(($30|0),($117|0),($23|0),($141|0))|0); + $151 = tempRet0; + $152 = (___muldi3(($31|0),($99|0),($8|0),($51|0))|0); + $153 = tempRet0; + $154 = ($27|0)<(0); + $155 = $154 << 31 >> 31; + $156 = (___muldi3(($27|0),($155|0),($10|0),($55|0))|0); + $157 = tempRet0; + $158 = (___muldi3(($28|0),($145|0),($24|0),($87|0))|0); + $159 = tempRet0; + $160 = (___muldi3(($29|0),($131|0),($24|0),($87|0))|0); + $161 = tempRet0; + $162 = (___muldi3(($30|0),($117|0),($24|0),($87|0))|0); + $163 = tempRet0; + $164 = (___muldi3(($31|0),($99|0),($24|0),($87|0))|0); + $165 = tempRet0; + $166 = (___muldi3(($28|0),($145|0),($12|0),($59|0))|0); + $167 = tempRet0; + $168 = (___muldi3(($29|0),($131|0),($12|0),($59|0))|0); + $169 = tempRet0; + $170 = ($25|0)<(0); + $171 = $170 << 31 >> 31; + $172 = (___muldi3(($30|0),($117|0),($25|0),($171|0))|0); + $173 = tempRet0; + $174 = (___muldi3(($31|0),($99|0),($12|0),($59|0))|0); + $175 = tempRet0; + $176 = (___muldi3(($29|0),($131|0),($14|0),($63|0))|0); + $177 = tempRet0; + $178 = (___muldi3(($30|0),($117|0),($26|0),($93|0))|0); + $179 = tempRet0; + $180 = (___muldi3(($31|0),($99|0),($26|0),($93|0))|0); + $181 = tempRet0; + $182 = (___muldi3(($30|0),($117|0),($16|0),($67|0))|0); + $183 = tempRet0; + $184 = (___muldi3(($31|0),($99|0),($16|0),($67|0))|0); + $185 = tempRet0; + $186 = (___muldi3(($31|0),($99|0),($18|0),($71|0))|0); + $187 = tempRet0; + $188 = (_i64Add(($156|0),($157|0),($34|0),($35|0))|0); + $189 = tempRet0; + $190 = (_i64Add(($188|0),($189|0),($146|0),($147|0))|0); + $191 = tempRet0; + $192 = (_i64Add(($190|0),($191|0),($132|0),($133|0))|0); + $193 = tempRet0; + $194 = (_i64Add(($192|0),($193|0),($118|0),($119|0))|0); + $195 = tempRet0; + $196 = (_i64Add(($194|0),($195|0),($100|0),($101|0))|0); + $197 = tempRet0; + $198 = (_i64Add(($44|0),($45|0),($76|0),($77|0))|0); + $199 = tempRet0; + $200 = (_i64Add(($48|0),($49|0),($78|0),($79|0))|0); + $201 = tempRet0; + $202 = (_i64Add(($82|0),($83|0),($102|0),($103|0))|0); + $203 = tempRet0; + $204 = (_i64Add(($202|0),($203|0),($52|0),($53|0))|0); + $205 = tempRet0; + $206 = (_i64Add(($204|0),($205|0),($176|0),($177|0))|0); + $207 = tempRet0; + $208 = (_i64Add(($206|0),($207|0),($172|0),($173|0))|0); + $209 = tempRet0; + $210 = (_i64Add(($208|0),($209|0),($164|0),($165|0))|0); + $211 = tempRet0; + $212 = (_i64Add(($196|0),($197|0),33554432,0)|0); + $213 = tempRet0; + $214 = (_bitshift64Ashr(($212|0),($213|0),26)|0); + $215 = tempRet0; + $216 = (_i64Add(($158|0),($159|0),($40|0),($41|0))|0); + $217 = tempRet0; + $218 = (_i64Add(($216|0),($217|0),($148|0),($149|0))|0); + $219 = tempRet0; + $220 = (_i64Add(($218|0),($219|0),($134|0),($135|0))|0); + $221 = tempRet0; + $222 = (_i64Add(($220|0),($221|0),($120|0),($121|0))|0); + $223 = tempRet0; + $224 = (_i64Add(($222|0),($223|0),($214|0),($215|0))|0); + $225 = tempRet0; + $226 = (_bitshift64Shl(($214|0),($215|0),26)|0); + $227 = tempRet0; + $228 = (_i64Subtract(($196|0),($197|0),($226|0),($227|0))|0); + $229 = tempRet0; + $230 = (_i64Add(($210|0),($211|0),33554432,0)|0); + $231 = tempRet0; + $232 = (_bitshift64Ashr(($230|0),($231|0),26)|0); + $233 = tempRet0; + $234 = (_i64Add(($84|0),($85|0),($106|0),($107|0))|0); + $235 = tempRet0; + $236 = (_i64Add(($234|0),($235|0),($56|0),($57|0))|0); + $237 = tempRet0; + $238 = (_i64Add(($236|0),($237|0),($178|0),($179|0))|0); + $239 = tempRet0; + $240 = (_i64Add(($238|0),($239|0),($174|0),($175|0))|0); + $241 = tempRet0; + $242 = (_i64Add(($240|0),($241|0),($232|0),($233|0))|0); + $243 = tempRet0; + $244 = (_bitshift64Shl(($232|0),($233|0),26)|0); + $245 = tempRet0; + $246 = (_i64Subtract(($210|0),($211|0),($244|0),($245|0))|0); + $247 = tempRet0; + $248 = (_i64Add(($224|0),($225|0),16777216,0)|0); + $249 = tempRet0; + $250 = (_bitshift64Ashr(($248|0),($249|0),25)|0); + $251 = tempRet0; + $252 = (_i64Add(($198|0),($199|0),($166|0),($167|0))|0); + $253 = tempRet0; + $254 = (_i64Add(($252|0),($253|0),($160|0),($161|0))|0); + $255 = tempRet0; + $256 = (_i64Add(($254|0),($255|0),($150|0),($151|0))|0); + $257 = tempRet0; + $258 = (_i64Add(($256|0),($257|0),($136|0),($137|0))|0); + $259 = tempRet0; + $260 = (_i64Add(($258|0),($259|0),($250|0),($251|0))|0); + $261 = tempRet0; + $262 = (_bitshift64Shl(($250|0),($251|0),25)|0); + $263 = tempRet0; + $264 = (_i64Subtract(($224|0),($225|0),($262|0),($263|0))|0); + $265 = tempRet0; + $266 = (_i64Add(($242|0),($243|0),16777216,0)|0); + $267 = tempRet0; + $268 = (_bitshift64Ashr(($266|0),($267|0),25)|0); + $269 = tempRet0; + $270 = (_i64Add(($122|0),($123|0),($108|0),($109|0))|0); + $271 = tempRet0; + $272 = (_i64Add(($270|0),($271|0),($88|0),($89|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($60|0),($61|0))|0); + $275 = tempRet0; + $276 = (_i64Add(($274|0),($275|0),($182|0),($183|0))|0); + $277 = tempRet0; + $278 = (_i64Add(($276|0),($277|0),($180|0),($181|0))|0); + $279 = tempRet0; + $280 = (_i64Add(($278|0),($279|0),($268|0),($269|0))|0); + $281 = tempRet0; + $282 = (_bitshift64Shl(($268|0),($269|0),25)|0); + $283 = tempRet0; + $284 = (_i64Subtract(($242|0),($243|0),($282|0),($283|0))|0); + $285 = tempRet0; + $286 = (_i64Add(($260|0),($261|0),33554432,0)|0); + $287 = tempRet0; + $288 = (_bitshift64Ashr(($286|0),($287|0),26)|0); + $289 = tempRet0; + $290 = (_i64Add(($200|0),($201|0),($168|0),($169|0))|0); + $291 = tempRet0; + $292 = (_i64Add(($290|0),($291|0),($162|0),($163|0))|0); + $293 = tempRet0; + $294 = (_i64Add(($292|0),($293|0),($152|0),($153|0))|0); + $295 = tempRet0; + $296 = (_i64Add(($294|0),($295|0),($288|0),($289|0))|0); + $297 = tempRet0; + $298 = (_bitshift64Shl(($288|0),($289|0),26)|0); + $299 = tempRet0; + $300 = (_i64Subtract(($260|0),($261|0),($298|0),($299|0))|0); + $301 = tempRet0; + $302 = (_i64Add(($280|0),($281|0),33554432,0)|0); + $303 = tempRet0; + $304 = (_bitshift64Ashr(($302|0),($303|0),26)|0); + $305 = tempRet0; + $306 = (_i64Add(($110|0),($111|0),($124|0),($125|0))|0); + $307 = tempRet0; + $308 = (_i64Add(($306|0),($307|0),($90|0),($91|0))|0); + $309 = tempRet0; + $310 = (_i64Add(($308|0),($309|0),($64|0),($65|0))|0); + $311 = tempRet0; + $312 = (_i64Add(($310|0),($311|0),($184|0),($185|0))|0); + $313 = tempRet0; + $314 = (_i64Add(($312|0),($313|0),($304|0),($305|0))|0); + $315 = tempRet0; + $316 = (_bitshift64Shl(($304|0),($305|0),26)|0); + $317 = tempRet0; + $318 = (_i64Subtract(($280|0),($281|0),($316|0),($317|0))|0); + $319 = tempRet0; + $320 = (_i64Add(($296|0),($297|0),16777216,0)|0); + $321 = tempRet0; + $322 = (_bitshift64Ashr(($320|0),($321|0),25)|0); + $323 = tempRet0; + $324 = (_i64Add(($322|0),($323|0),($246|0),($247|0))|0); + $325 = tempRet0; + $326 = (_bitshift64Shl(($322|0),($323|0),25)|0); + $327 = tempRet0; + $328 = (_i64Subtract(($296|0),($297|0),($326|0),($327|0))|0); + $329 = tempRet0; + $330 = (_i64Add(($314|0),($315|0),16777216,0)|0); + $331 = tempRet0; + $332 = (_bitshift64Ashr(($330|0),($331|0),25)|0); + $333 = tempRet0; + $334 = (_i64Add(($112|0),($113|0),($138|0),($139|0))|0); + $335 = tempRet0; + $336 = (_i64Add(($334|0),($335|0),($126|0),($127|0))|0); + $337 = tempRet0; + $338 = (_i64Add(($336|0),($337|0),($94|0),($95|0))|0); + $339 = tempRet0; + $340 = (_i64Add(($338|0),($339|0),($68|0),($69|0))|0); + $341 = tempRet0; + $342 = (_i64Add(($340|0),($341|0),($186|0),($187|0))|0); + $343 = tempRet0; + $344 = (_i64Add(($342|0),($343|0),($332|0),($333|0))|0); + $345 = tempRet0; + $346 = (_bitshift64Shl(($332|0),($333|0),25)|0); + $347 = tempRet0; + $348 = (_i64Subtract(($314|0),($315|0),($346|0),($347|0))|0); + $349 = tempRet0; + $350 = (_i64Add(($324|0),($325|0),33554432,0)|0); + $351 = tempRet0; + $352 = (_bitshift64Ashr(($350|0),($351|0),26)|0); + $353 = tempRet0; + $354 = (_i64Add(($284|0),($285|0),($352|0),($353|0))|0); + $355 = tempRet0; + $356 = (_bitshift64Shl(($352|0),($353|0),26)|0); + $357 = tempRet0; + $358 = (_i64Subtract(($324|0),($325|0),($356|0),($357|0))|0); + $359 = tempRet0; + $360 = (_i64Add(($344|0),($345|0),33554432,0)|0); + $361 = tempRet0; + $362 = (_bitshift64Ashr(($360|0),($361|0),26)|0); + $363 = tempRet0; + $364 = (_i64Add(($128|0),($129|0),($142|0),($143|0))|0); + $365 = tempRet0; + $366 = (_i64Add(($364|0),($365|0),($114|0),($115|0))|0); + $367 = tempRet0; + $368 = (_i64Add(($366|0),($367|0),($96|0),($97|0))|0); + $369 = tempRet0; + $370 = (_i64Add(($368|0),($369|0),($72|0),($73|0))|0); + $371 = tempRet0; + $372 = (_i64Add(($370|0),($371|0),($362|0),($363|0))|0); + $373 = tempRet0; + $374 = (_bitshift64Shl(($362|0),($363|0),26)|0); + $375 = tempRet0; + $376 = (_i64Subtract(($344|0),($345|0),($374|0),($375|0))|0); + $377 = tempRet0; + $378 = (_i64Add(($372|0),($373|0),16777216,0)|0); + $379 = tempRet0; + $380 = (_bitshift64Ashr(($378|0),($379|0),25)|0); + $381 = tempRet0; + $382 = (___muldi3(($380|0),($381|0),19,0)|0); + $383 = tempRet0; + $384 = (_i64Add(($382|0),($383|0),($228|0),($229|0))|0); + $385 = tempRet0; + $386 = (_bitshift64Shl(($380|0),($381|0),25)|0); + $387 = tempRet0; + $388 = (_i64Subtract(($372|0),($373|0),($386|0),($387|0))|0); + $389 = tempRet0; + $390 = (_i64Add(($384|0),($385|0),33554432,0)|0); + $391 = tempRet0; + $392 = (_bitshift64Ashr(($390|0),($391|0),26)|0); + $393 = tempRet0; + $394 = (_i64Add(($264|0),($265|0),($392|0),($393|0))|0); + $395 = tempRet0; + $396 = (_bitshift64Shl(($392|0),($393|0),26)|0); + $397 = tempRet0; + $398 = (_i64Subtract(($384|0),($385|0),($396|0),($397|0))|0); + $399 = tempRet0; + HEAP32[$h>>2] = $398; + $400 = (($h) + 4|0); + HEAP32[$400>>2] = $394; + $401 = (($h) + 8|0); + HEAP32[$401>>2] = $300; + $402 = (($h) + 12|0); + HEAP32[$402>>2] = $328; + $403 = (($h) + 16|0); + HEAP32[$403>>2] = $358; + $404 = (($h) + 20|0); + HEAP32[$404>>2] = $354; + $405 = (($h) + 24|0); + HEAP32[$405>>2] = $318; + $406 = (($h) + 28|0); + HEAP32[$406>>2] = $348; + $407 = (($h) + 32|0); + HEAP32[$407>>2] = $376; + $408 = (($h) + 36|0); + HEAP32[$408>>2] = $388; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_sq2($h,$f) { + $h = $h|0; + $f = $f|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; + var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; + var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; + var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; + var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; + var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; + var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; + var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; + var $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0; + var $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0; + var $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = $0 << 1; + $20 = $2 << 1; + $21 = $4 << 1; + $22 = $6 << 1; + $23 = $8 << 1; + $24 = $10 << 1; + $25 = $12 << 1; + $26 = $14 << 1; + $27 = ($10*38)|0; + $28 = ($12*19)|0; + $29 = ($14*38)|0; + $30 = ($16*19)|0; + $31 = ($18*38)|0; + $32 = ($0|0)<(0); + $33 = $32 << 31 >> 31; + $34 = (___muldi3(($0|0),($33|0),($0|0),($33|0))|0); + $35 = tempRet0; + $36 = ($19|0)<(0); + $37 = $36 << 31 >> 31; + $38 = ($2|0)<(0); + $39 = $38 << 31 >> 31; + $40 = (___muldi3(($19|0),($37|0),($2|0),($39|0))|0); + $41 = tempRet0; + $42 = ($4|0)<(0); + $43 = $42 << 31 >> 31; + $44 = (___muldi3(($4|0),($43|0),($19|0),($37|0))|0); + $45 = tempRet0; + $46 = ($6|0)<(0); + $47 = $46 << 31 >> 31; + $48 = (___muldi3(($6|0),($47|0),($19|0),($37|0))|0); + $49 = tempRet0; + $50 = ($8|0)<(0); + $51 = $50 << 31 >> 31; + $52 = (___muldi3(($8|0),($51|0),($19|0),($37|0))|0); + $53 = tempRet0; + $54 = ($10|0)<(0); + $55 = $54 << 31 >> 31; + $56 = (___muldi3(($10|0),($55|0),($19|0),($37|0))|0); + $57 = tempRet0; + $58 = ($12|0)<(0); + $59 = $58 << 31 >> 31; + $60 = (___muldi3(($12|0),($59|0),($19|0),($37|0))|0); + $61 = tempRet0; + $62 = ($14|0)<(0); + $63 = $62 << 31 >> 31; + $64 = (___muldi3(($14|0),($63|0),($19|0),($37|0))|0); + $65 = tempRet0; + $66 = ($16|0)<(0); + $67 = $66 << 31 >> 31; + $68 = (___muldi3(($16|0),($67|0),($19|0),($37|0))|0); + $69 = tempRet0; + $70 = ($18|0)<(0); + $71 = $70 << 31 >> 31; + $72 = (___muldi3(($18|0),($71|0),($19|0),($37|0))|0); + $73 = tempRet0; + $74 = ($20|0)<(0); + $75 = $74 << 31 >> 31; + $76 = (___muldi3(($20|0),($75|0),($2|0),($39|0))|0); + $77 = tempRet0; + $78 = (___muldi3(($20|0),($75|0),($4|0),($43|0))|0); + $79 = tempRet0; + $80 = ($22|0)<(0); + $81 = $80 << 31 >> 31; + $82 = (___muldi3(($22|0),($81|0),($20|0),($75|0))|0); + $83 = tempRet0; + $84 = (___muldi3(($8|0),($51|0),($20|0),($75|0))|0); + $85 = tempRet0; + $86 = ($24|0)<(0); + $87 = $86 << 31 >> 31; + $88 = (___muldi3(($24|0),($87|0),($20|0),($75|0))|0); + $89 = tempRet0; + $90 = (___muldi3(($12|0),($59|0),($20|0),($75|0))|0); + $91 = tempRet0; + $92 = ($26|0)<(0); + $93 = $92 << 31 >> 31; + $94 = (___muldi3(($26|0),($93|0),($20|0),($75|0))|0); + $95 = tempRet0; + $96 = (___muldi3(($16|0),($67|0),($20|0),($75|0))|0); + $97 = tempRet0; + $98 = ($31|0)<(0); + $99 = $98 << 31 >> 31; + $100 = (___muldi3(($31|0),($99|0),($20|0),($75|0))|0); + $101 = tempRet0; + $102 = (___muldi3(($4|0),($43|0),($4|0),($43|0))|0); + $103 = tempRet0; + $104 = ($21|0)<(0); + $105 = $104 << 31 >> 31; + $106 = (___muldi3(($21|0),($105|0),($6|0),($47|0))|0); + $107 = tempRet0; + $108 = (___muldi3(($8|0),($51|0),($21|0),($105|0))|0); + $109 = tempRet0; + $110 = (___muldi3(($10|0),($55|0),($21|0),($105|0))|0); + $111 = tempRet0; + $112 = (___muldi3(($12|0),($59|0),($21|0),($105|0))|0); + $113 = tempRet0; + $114 = (___muldi3(($14|0),($63|0),($21|0),($105|0))|0); + $115 = tempRet0; + $116 = ($30|0)<(0); + $117 = $116 << 31 >> 31; + $118 = (___muldi3(($30|0),($117|0),($21|0),($105|0))|0); + $119 = tempRet0; + $120 = (___muldi3(($31|0),($99|0),($4|0),($43|0))|0); + $121 = tempRet0; + $122 = (___muldi3(($22|0),($81|0),($6|0),($47|0))|0); + $123 = tempRet0; + $124 = (___muldi3(($22|0),($81|0),($8|0),($51|0))|0); + $125 = tempRet0; + $126 = (___muldi3(($24|0),($87|0),($22|0),($81|0))|0); + $127 = tempRet0; + $128 = (___muldi3(($12|0),($59|0),($22|0),($81|0))|0); + $129 = tempRet0; + $130 = ($29|0)<(0); + $131 = $130 << 31 >> 31; + $132 = (___muldi3(($29|0),($131|0),($22|0),($81|0))|0); + $133 = tempRet0; + $134 = (___muldi3(($30|0),($117|0),($22|0),($81|0))|0); + $135 = tempRet0; + $136 = (___muldi3(($31|0),($99|0),($22|0),($81|0))|0); + $137 = tempRet0; + $138 = (___muldi3(($8|0),($51|0),($8|0),($51|0))|0); + $139 = tempRet0; + $140 = ($23|0)<(0); + $141 = $140 << 31 >> 31; + $142 = (___muldi3(($23|0),($141|0),($10|0),($55|0))|0); + $143 = tempRet0; + $144 = ($28|0)<(0); + $145 = $144 << 31 >> 31; + $146 = (___muldi3(($28|0),($145|0),($23|0),($141|0))|0); + $147 = tempRet0; + $148 = (___muldi3(($29|0),($131|0),($8|0),($51|0))|0); + $149 = tempRet0; + $150 = (___muldi3(($30|0),($117|0),($23|0),($141|0))|0); + $151 = tempRet0; + $152 = (___muldi3(($31|0),($99|0),($8|0),($51|0))|0); + $153 = tempRet0; + $154 = ($27|0)<(0); + $155 = $154 << 31 >> 31; + $156 = (___muldi3(($27|0),($155|0),($10|0),($55|0))|0); + $157 = tempRet0; + $158 = (___muldi3(($28|0),($145|0),($24|0),($87|0))|0); + $159 = tempRet0; + $160 = (___muldi3(($29|0),($131|0),($24|0),($87|0))|0); + $161 = tempRet0; + $162 = (___muldi3(($30|0),($117|0),($24|0),($87|0))|0); + $163 = tempRet0; + $164 = (___muldi3(($31|0),($99|0),($24|0),($87|0))|0); + $165 = tempRet0; + $166 = (___muldi3(($28|0),($145|0),($12|0),($59|0))|0); + $167 = tempRet0; + $168 = (___muldi3(($29|0),($131|0),($12|0),($59|0))|0); + $169 = tempRet0; + $170 = ($25|0)<(0); + $171 = $170 << 31 >> 31; + $172 = (___muldi3(($30|0),($117|0),($25|0),($171|0))|0); + $173 = tempRet0; + $174 = (___muldi3(($31|0),($99|0),($12|0),($59|0))|0); + $175 = tempRet0; + $176 = (___muldi3(($29|0),($131|0),($14|0),($63|0))|0); + $177 = tempRet0; + $178 = (___muldi3(($30|0),($117|0),($26|0),($93|0))|0); + $179 = tempRet0; + $180 = (___muldi3(($31|0),($99|0),($26|0),($93|0))|0); + $181 = tempRet0; + $182 = (___muldi3(($30|0),($117|0),($16|0),($67|0))|0); + $183 = tempRet0; + $184 = (___muldi3(($31|0),($99|0),($16|0),($67|0))|0); + $185 = tempRet0; + $186 = (___muldi3(($31|0),($99|0),($18|0),($71|0))|0); + $187 = tempRet0; + $188 = (_i64Add(($156|0),($157|0),($34|0),($35|0))|0); + $189 = tempRet0; + $190 = (_i64Add(($188|0),($189|0),($146|0),($147|0))|0); + $191 = tempRet0; + $192 = (_i64Add(($190|0),($191|0),($132|0),($133|0))|0); + $193 = tempRet0; + $194 = (_i64Add(($192|0),($193|0),($118|0),($119|0))|0); + $195 = tempRet0; + $196 = (_i64Add(($194|0),($195|0),($100|0),($101|0))|0); + $197 = tempRet0; + $198 = (_i64Add(($158|0),($159|0),($40|0),($41|0))|0); + $199 = tempRet0; + $200 = (_i64Add(($198|0),($199|0),($148|0),($149|0))|0); + $201 = tempRet0; + $202 = (_i64Add(($200|0),($201|0),($134|0),($135|0))|0); + $203 = tempRet0; + $204 = (_i64Add(($202|0),($203|0),($120|0),($121|0))|0); + $205 = tempRet0; + $206 = (_i64Add(($44|0),($45|0),($76|0),($77|0))|0); + $207 = tempRet0; + $208 = (_i64Add(($206|0),($207|0),($166|0),($167|0))|0); + $209 = tempRet0; + $210 = (_i64Add(($208|0),($209|0),($160|0),($161|0))|0); + $211 = tempRet0; + $212 = (_i64Add(($210|0),($211|0),($150|0),($151|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($212|0),($213|0),($136|0),($137|0))|0); + $215 = tempRet0; + $216 = (_i64Add(($48|0),($49|0),($78|0),($79|0))|0); + $217 = tempRet0; + $218 = (_i64Add(($216|0),($217|0),($168|0),($169|0))|0); + $219 = tempRet0; + $220 = (_i64Add(($218|0),($219|0),($162|0),($163|0))|0); + $221 = tempRet0; + $222 = (_i64Add(($220|0),($221|0),($152|0),($153|0))|0); + $223 = tempRet0; + $224 = (_i64Add(($82|0),($83|0),($102|0),($103|0))|0); + $225 = tempRet0; + $226 = (_i64Add(($224|0),($225|0),($52|0),($53|0))|0); + $227 = tempRet0; + $228 = (_i64Add(($226|0),($227|0),($176|0),($177|0))|0); + $229 = tempRet0; + $230 = (_i64Add(($228|0),($229|0),($172|0),($173|0))|0); + $231 = tempRet0; + $232 = (_i64Add(($230|0),($231|0),($164|0),($165|0))|0); + $233 = tempRet0; + $234 = (_i64Add(($84|0),($85|0),($106|0),($107|0))|0); + $235 = tempRet0; + $236 = (_i64Add(($234|0),($235|0),($56|0),($57|0))|0); + $237 = tempRet0; + $238 = (_i64Add(($236|0),($237|0),($178|0),($179|0))|0); + $239 = tempRet0; + $240 = (_i64Add(($238|0),($239|0),($174|0),($175|0))|0); + $241 = tempRet0; + $242 = (_i64Add(($122|0),($123|0),($108|0),($109|0))|0); + $243 = tempRet0; + $244 = (_i64Add(($242|0),($243|0),($88|0),($89|0))|0); + $245 = tempRet0; + $246 = (_i64Add(($244|0),($245|0),($60|0),($61|0))|0); + $247 = tempRet0; + $248 = (_i64Add(($246|0),($247|0),($182|0),($183|0))|0); + $249 = tempRet0; + $250 = (_i64Add(($248|0),($249|0),($180|0),($181|0))|0); + $251 = tempRet0; + $252 = (_i64Add(($110|0),($111|0),($124|0),($125|0))|0); + $253 = tempRet0; + $254 = (_i64Add(($252|0),($253|0),($90|0),($91|0))|0); + $255 = tempRet0; + $256 = (_i64Add(($254|0),($255|0),($64|0),($65|0))|0); + $257 = tempRet0; + $258 = (_i64Add(($256|0),($257|0),($184|0),($185|0))|0); + $259 = tempRet0; + $260 = (_i64Add(($112|0),($113|0),($138|0),($139|0))|0); + $261 = tempRet0; + $262 = (_i64Add(($260|0),($261|0),($126|0),($127|0))|0); + $263 = tempRet0; + $264 = (_i64Add(($262|0),($263|0),($94|0),($95|0))|0); + $265 = tempRet0; + $266 = (_i64Add(($264|0),($265|0),($68|0),($69|0))|0); + $267 = tempRet0; + $268 = (_i64Add(($266|0),($267|0),($186|0),($187|0))|0); + $269 = tempRet0; + $270 = (_i64Add(($128|0),($129|0),($142|0),($143|0))|0); + $271 = tempRet0; + $272 = (_i64Add(($270|0),($271|0),($114|0),($115|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($96|0),($97|0))|0); + $275 = tempRet0; + $276 = (_i64Add(($274|0),($275|0),($72|0),($73|0))|0); + $277 = tempRet0; + $278 = (_bitshift64Shl(($196|0),($197|0),1)|0); + $279 = tempRet0; + $280 = (_bitshift64Shl(($204|0),($205|0),1)|0); + $281 = tempRet0; + $282 = (_bitshift64Shl(($214|0),($215|0),1)|0); + $283 = tempRet0; + $284 = (_bitshift64Shl(($222|0),($223|0),1)|0); + $285 = tempRet0; + $286 = (_bitshift64Shl(($232|0),($233|0),1)|0); + $287 = tempRet0; + $288 = (_bitshift64Shl(($240|0),($241|0),1)|0); + $289 = tempRet0; + $290 = (_bitshift64Shl(($250|0),($251|0),1)|0); + $291 = tempRet0; + $292 = (_bitshift64Shl(($258|0),($259|0),1)|0); + $293 = tempRet0; + $294 = (_bitshift64Shl(($268|0),($269|0),1)|0); + $295 = tempRet0; + $296 = (_bitshift64Shl(($276|0),($277|0),1)|0); + $297 = tempRet0; + $298 = (_i64Add(($278|0),($279|0),33554432,0)|0); + $299 = tempRet0; + $300 = (_bitshift64Ashr(($298|0),($299|0),26)|0); + $301 = tempRet0; + $302 = (_i64Add(($300|0),($301|0),($280|0),($281|0))|0); + $303 = tempRet0; + $304 = (_bitshift64Shl(($300|0),($301|0),26)|0); + $305 = tempRet0; + $306 = (_i64Subtract(($278|0),($279|0),($304|0),($305|0))|0); + $307 = tempRet0; + $308 = (_i64Add(($286|0),($287|0),33554432,0)|0); + $309 = tempRet0; + $310 = (_bitshift64Ashr(($308|0),($309|0),26)|0); + $311 = tempRet0; + $312 = (_i64Add(($310|0),($311|0),($288|0),($289|0))|0); + $313 = tempRet0; + $314 = (_bitshift64Shl(($310|0),($311|0),26)|0); + $315 = tempRet0; + $316 = (_i64Subtract(($286|0),($287|0),($314|0),($315|0))|0); + $317 = tempRet0; + $318 = (_i64Add(($302|0),($303|0),16777216,0)|0); + $319 = tempRet0; + $320 = (_bitshift64Ashr(($318|0),($319|0),25)|0); + $321 = tempRet0; + $322 = (_i64Add(($320|0),($321|0),($282|0),($283|0))|0); + $323 = tempRet0; + $324 = (_bitshift64Shl(($320|0),($321|0),25)|0); + $325 = tempRet0; + $326 = (_i64Subtract(($302|0),($303|0),($324|0),($325|0))|0); + $327 = tempRet0; + $328 = (_i64Add(($312|0),($313|0),16777216,0)|0); + $329 = tempRet0; + $330 = (_bitshift64Ashr(($328|0),($329|0),25)|0); + $331 = tempRet0; + $332 = (_i64Add(($330|0),($331|0),($290|0),($291|0))|0); + $333 = tempRet0; + $334 = (_bitshift64Shl(($330|0),($331|0),25)|0); + $335 = tempRet0; + $336 = (_i64Subtract(($312|0),($313|0),($334|0),($335|0))|0); + $337 = tempRet0; + $338 = (_i64Add(($322|0),($323|0),33554432,0)|0); + $339 = tempRet0; + $340 = (_bitshift64Ashr(($338|0),($339|0),26)|0); + $341 = tempRet0; + $342 = (_i64Add(($340|0),($341|0),($284|0),($285|0))|0); + $343 = tempRet0; + $344 = (_bitshift64Shl(($340|0),($341|0),26)|0); + $345 = tempRet0; + $346 = (_i64Subtract(($322|0),($323|0),($344|0),($345|0))|0); + $347 = tempRet0; + $348 = (_i64Add(($332|0),($333|0),33554432,0)|0); + $349 = tempRet0; + $350 = (_bitshift64Ashr(($348|0),($349|0),26)|0); + $351 = tempRet0; + $352 = (_i64Add(($350|0),($351|0),($292|0),($293|0))|0); + $353 = tempRet0; + $354 = (_bitshift64Shl(($350|0),($351|0),26)|0); + $355 = tempRet0; + $356 = (_i64Subtract(($332|0),($333|0),($354|0),($355|0))|0); + $357 = tempRet0; + $358 = (_i64Add(($342|0),($343|0),16777216,0)|0); + $359 = tempRet0; + $360 = (_bitshift64Ashr(($358|0),($359|0),25)|0); + $361 = tempRet0; + $362 = (_i64Add(($360|0),($361|0),($316|0),($317|0))|0); + $363 = tempRet0; + $364 = (_bitshift64Shl(($360|0),($361|0),25)|0); + $365 = tempRet0; + $366 = (_i64Subtract(($342|0),($343|0),($364|0),($365|0))|0); + $367 = tempRet0; + $368 = (_i64Add(($352|0),($353|0),16777216,0)|0); + $369 = tempRet0; + $370 = (_bitshift64Ashr(($368|0),($369|0),25)|0); + $371 = tempRet0; + $372 = (_i64Add(($370|0),($371|0),($294|0),($295|0))|0); + $373 = tempRet0; + $374 = (_bitshift64Shl(($370|0),($371|0),25)|0); + $375 = tempRet0; + $376 = (_i64Subtract(($352|0),($353|0),($374|0),($375|0))|0); + $377 = tempRet0; + $378 = (_i64Add(($362|0),($363|0),33554432,0)|0); + $379 = tempRet0; + $380 = (_bitshift64Ashr(($378|0),($379|0),26)|0); + $381 = tempRet0; + $382 = (_i64Add(($336|0),($337|0),($380|0),($381|0))|0); + $383 = tempRet0; + $384 = (_bitshift64Shl(($380|0),($381|0),26)|0); + $385 = tempRet0; + $386 = (_i64Subtract(($362|0),($363|0),($384|0),($385|0))|0); + $387 = tempRet0; + $388 = (_i64Add(($372|0),($373|0),33554432,0)|0); + $389 = tempRet0; + $390 = (_bitshift64Ashr(($388|0),($389|0),26)|0); + $391 = tempRet0; + $392 = (_i64Add(($390|0),($391|0),($296|0),($297|0))|0); + $393 = tempRet0; + $394 = (_bitshift64Shl(($390|0),($391|0),26)|0); + $395 = tempRet0; + $396 = (_i64Subtract(($372|0),($373|0),($394|0),($395|0))|0); + $397 = tempRet0; + $398 = (_i64Add(($392|0),($393|0),16777216,0)|0); + $399 = tempRet0; + $400 = (_bitshift64Ashr(($398|0),($399|0),25)|0); + $401 = tempRet0; + $402 = (___muldi3(($400|0),($401|0),19,0)|0); + $403 = tempRet0; + $404 = (_i64Add(($402|0),($403|0),($306|0),($307|0))|0); + $405 = tempRet0; + $406 = (_bitshift64Shl(($400|0),($401|0),25)|0); + $407 = tempRet0; + $408 = (_i64Subtract(($392|0),($393|0),($406|0),($407|0))|0); + $409 = tempRet0; + $410 = (_i64Add(($404|0),($405|0),33554432,0)|0); + $411 = tempRet0; + $412 = (_bitshift64Ashr(($410|0),($411|0),26)|0); + $413 = tempRet0; + $414 = (_i64Add(($326|0),($327|0),($412|0),($413|0))|0); + $415 = tempRet0; + $416 = (_bitshift64Shl(($412|0),($413|0),26)|0); + $417 = tempRet0; + $418 = (_i64Subtract(($404|0),($405|0),($416|0),($417|0))|0); + $419 = tempRet0; + HEAP32[$h>>2] = $418; + $420 = (($h) + 4|0); + HEAP32[$420>>2] = $414; + $421 = (($h) + 8|0); + HEAP32[$421>>2] = $346; + $422 = (($h) + 12|0); + HEAP32[$422>>2] = $366; + $423 = (($h) + 16|0); + HEAP32[$423>>2] = $386; + $424 = (($h) + 20|0); + HEAP32[$424>>2] = $382; + $425 = (($h) + 24|0); + HEAP32[$425>>2] = $356; + $426 = (($h) + 28|0); + HEAP32[$426>>2] = $376; + $427 = (($h) + 32|0); + HEAP32[$427>>2] = $396; + $428 = (($h) + 36|0); + HEAP32[$428>>2] = $408; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_sub($h,$f,$g) { + $h = $h|0; + $f = $f|0; + $g = $g|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = HEAP32[$g>>2]|0; + $20 = (($g) + 4|0); + $21 = HEAP32[$20>>2]|0; + $22 = (($g) + 8|0); + $23 = HEAP32[$22>>2]|0; + $24 = (($g) + 12|0); + $25 = HEAP32[$24>>2]|0; + $26 = (($g) + 16|0); + $27 = HEAP32[$26>>2]|0; + $28 = (($g) + 20|0); + $29 = HEAP32[$28>>2]|0; + $30 = (($g) + 24|0); + $31 = HEAP32[$30>>2]|0; + $32 = (($g) + 28|0); + $33 = HEAP32[$32>>2]|0; + $34 = (($g) + 32|0); + $35 = HEAP32[$34>>2]|0; + $36 = (($g) + 36|0); + $37 = HEAP32[$36>>2]|0; + $38 = (($0) - ($19))|0; + $39 = (($2) - ($21))|0; + $40 = (($4) - ($23))|0; + $41 = (($6) - ($25))|0; + $42 = (($8) - ($27))|0; + $43 = (($10) - ($29))|0; + $44 = (($12) - ($31))|0; + $45 = (($14) - ($33))|0; + $46 = (($16) - ($35))|0; + $47 = (($18) - ($37))|0; + HEAP32[$h>>2] = $38; + $48 = (($h) + 4|0); + HEAP32[$48>>2] = $39; + $49 = (($h) + 8|0); + HEAP32[$49>>2] = $40; + $50 = (($h) + 12|0); + HEAP32[$50>>2] = $41; + $51 = (($h) + 16|0); + HEAP32[$51>>2] = $42; + $52 = (($h) + 20|0); + HEAP32[$52>>2] = $43; + $53 = (($h) + 24|0); + HEAP32[$53>>2] = $44; + $54 = (($h) + 28|0); + HEAP32[$54>>2] = $45; + $55 = (($h) + 32|0); + HEAP32[$55>>2] = $46; + $56 = (($h) + 36|0); + HEAP32[$56>>2] = $47; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_tobytes($s,$h) { + $s = $s|0; + $h = $h|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0; + var $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0; + var $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0; + var $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0; + var $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$h>>2]|0; + $1 = (($h) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($h) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($h) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($h) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($h) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($h) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($h) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($h) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($h) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = ($18*19)|0; + $20 = (($19) + 16777216)|0; + $21 = $20 >> 25; + $22 = (($21) + ($0))|0; + $23 = $22 >> 26; + $24 = (($23) + ($2))|0; + $25 = $24 >> 25; + $26 = (($25) + ($4))|0; + $27 = $26 >> 26; + $28 = (($27) + ($6))|0; + $29 = $28 >> 25; + $30 = (($29) + ($8))|0; + $31 = $30 >> 26; + $32 = (($31) + ($10))|0; + $33 = $32 >> 25; + $34 = (($33) + ($12))|0; + $35 = $34 >> 26; + $36 = (($35) + ($14))|0; + $37 = $36 >> 25; + $38 = (($37) + ($16))|0; + $39 = $38 >> 26; + $40 = (($39) + ($18))|0; + $41 = $40 >> 25; + $42 = ($41*19)|0; + $43 = (($42) + ($0))|0; + $44 = $43 >> 26; + $45 = (($44) + ($2))|0; + $46 = $44 << 26; + $47 = (($43) - ($46))|0; + $48 = $45 >> 25; + $49 = (($48) + ($4))|0; + $50 = $48 << 25; + $51 = (($45) - ($50))|0; + $52 = $49 >> 26; + $53 = (($52) + ($6))|0; + $54 = $52 << 26; + $55 = (($49) - ($54))|0; + $56 = $53 >> 25; + $57 = (($56) + ($8))|0; + $58 = $56 << 25; + $59 = (($53) - ($58))|0; + $60 = $57 >> 26; + $61 = (($60) + ($10))|0; + $62 = $60 << 26; + $63 = (($57) - ($62))|0; + $64 = $61 >> 25; + $65 = (($64) + ($12))|0; + $66 = $64 << 25; + $67 = (($61) - ($66))|0; + $68 = $65 >> 26; + $69 = (($68) + ($14))|0; + $70 = $68 << 26; + $71 = (($65) - ($70))|0; + $72 = $69 >> 25; + $73 = (($72) + ($16))|0; + $74 = $72 << 25; + $75 = (($69) - ($74))|0; + $76 = $73 >> 26; + $77 = (($76) + ($18))|0; + $78 = $76 << 26; + $79 = (($73) - ($78))|0; + $80 = $77 & 33554431; + $81 = $47&255; + HEAP8[$s>>0] = $81; + $82 = $47 >>> 8; + $83 = $82&255; + $84 = (($s) + 1|0); + HEAP8[$84>>0] = $83; + $85 = $47 >>> 16; + $86 = $85&255; + $87 = (($s) + 2|0); + HEAP8[$87>>0] = $86; + $88 = $47 >>> 24; + $89 = $51 << 2; + $90 = $89 | $88; + $91 = $90&255; + $92 = (($s) + 3|0); + HEAP8[$92>>0] = $91; + $93 = $51 >>> 6; + $94 = $93&255; + $95 = (($s) + 4|0); + HEAP8[$95>>0] = $94; + $96 = $51 >>> 14; + $97 = $96&255; + $98 = (($s) + 5|0); + HEAP8[$98>>0] = $97; + $99 = $51 >>> 22; + $100 = $55 << 3; + $101 = $100 | $99; + $102 = $101&255; + $103 = (($s) + 6|0); + HEAP8[$103>>0] = $102; + $104 = $55 >>> 5; + $105 = $104&255; + $106 = (($s) + 7|0); + HEAP8[$106>>0] = $105; + $107 = $55 >>> 13; + $108 = $107&255; + $109 = (($s) + 8|0); + HEAP8[$109>>0] = $108; + $110 = $55 >>> 21; + $111 = $59 << 5; + $112 = $111 | $110; + $113 = $112&255; + $114 = (($s) + 9|0); + HEAP8[$114>>0] = $113; + $115 = $59 >>> 3; + $116 = $115&255; + $117 = (($s) + 10|0); + HEAP8[$117>>0] = $116; + $118 = $59 >>> 11; + $119 = $118&255; + $120 = (($s) + 11|0); + HEAP8[$120>>0] = $119; + $121 = $59 >>> 19; + $122 = $63 << 6; + $123 = $122 | $121; + $124 = $123&255; + $125 = (($s) + 12|0); + HEAP8[$125>>0] = $124; + $126 = $63 >>> 2; + $127 = $126&255; + $128 = (($s) + 13|0); + HEAP8[$128>>0] = $127; + $129 = $63 >>> 10; + $130 = $129&255; + $131 = (($s) + 14|0); + HEAP8[$131>>0] = $130; + $132 = $63 >>> 18; + $133 = $132&255; + $134 = (($s) + 15|0); + HEAP8[$134>>0] = $133; + $135 = $67&255; + $136 = (($s) + 16|0); + HEAP8[$136>>0] = $135; + $137 = $67 >>> 8; + $138 = $137&255; + $139 = (($s) + 17|0); + HEAP8[$139>>0] = $138; + $140 = $67 >>> 16; + $141 = $140&255; + $142 = (($s) + 18|0); + HEAP8[$142>>0] = $141; + $143 = $67 >>> 24; + $144 = $71 << 1; + $145 = $144 | $143; + $146 = $145&255; + $147 = (($s) + 19|0); + HEAP8[$147>>0] = $146; + $148 = $71 >>> 7; + $149 = $148&255; + $150 = (($s) + 20|0); + HEAP8[$150>>0] = $149; + $151 = $71 >>> 15; + $152 = $151&255; + $153 = (($s) + 21|0); + HEAP8[$153>>0] = $152; + $154 = $71 >>> 23; + $155 = $75 << 3; + $156 = $155 | $154; + $157 = $156&255; + $158 = (($s) + 22|0); + HEAP8[$158>>0] = $157; + $159 = $75 >>> 5; + $160 = $159&255; + $161 = (($s) + 23|0); + HEAP8[$161>>0] = $160; + $162 = $75 >>> 13; + $163 = $162&255; + $164 = (($s) + 24|0); + HEAP8[$164>>0] = $163; + $165 = $75 >>> 21; + $166 = $79 << 4; + $167 = $166 | $165; + $168 = $167&255; + $169 = (($s) + 25|0); + HEAP8[$169>>0] = $168; + $170 = $79 >>> 4; + $171 = $170&255; + $172 = (($s) + 26|0); + HEAP8[$172>>0] = $171; + $173 = $79 >>> 12; + $174 = $173&255; + $175 = (($s) + 27|0); + HEAP8[$175>>0] = $174; + $176 = $79 >>> 20; + $177 = $80 << 6; + $178 = $176 | $177; + $179 = $178&255; + $180 = (($s) + 28|0); + HEAP8[$180>>0] = $179; + $181 = $77 >>> 2; + $182 = $181&255; + $183 = (($s) + 29|0); + HEAP8[$183>>0] = $182; + $184 = $77 >>> 10; + $185 = $184&255; + $186 = (($s) + 30|0); + HEAP8[$186>>0] = $185; + $187 = $80 >>> 18; + $188 = $187&255; + $189 = (($s) + 31|0); + HEAP8[$189>>0] = $188; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_add($r,$p,$q) { + $r = $r|0; + $p = $p|0; + $q = $q|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $t0 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $t0 = sp; + $0 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); + $1 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); + $2 = (($r) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($2,$r,$q); + $3 = (($q) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($1,$1,$3); + $4 = (($r) + 120|0); + $5 = (($q) + 120|0); + $6 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); + $7 = (($p) + 80|0); + $8 = (($q) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($r,$7,$8); + _crypto_sign_ed25519_ref10_fe_add($t0,$r,$r); + _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($2,$t0,$4); + _crypto_sign_ed25519_ref10_fe_sub($4,$t0,$4); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($r,$a,$A,$b) { + $r = $r|0; + $a = $a|0; + $A = $A|0; + $b = $b|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, $A2 = 0, $Ai = 0, $aslide = 0, $bslide = 0, $i$0$lcssa = 0, $i$02 = 0, $i$11 = 0, $t = 0, $u = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 2272|0; + $aslide = sp + 2016|0; + $bslide = sp + 1760|0; + $Ai = sp + 480|0; + $t = sp + 320|0; + $u = sp + 160|0; + $A2 = sp; + _slide($aslide,$a); + _slide($bslide,$b); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($Ai,$A); + _crypto_sign_ed25519_ref10_ge_p3_dbl($t,$A); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($A2,$t); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$Ai); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $0 = (($Ai) + 160|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($0,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$0); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $1 = (($Ai) + 320|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($1,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$1); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $2 = (($Ai) + 480|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($2,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$2); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $3 = (($Ai) + 640|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($3,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$3); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $4 = (($Ai) + 800|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($4,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$4); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $5 = (($Ai) + 960|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($5,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$5); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $6 = (($Ai) + 1120|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($6,$u); + _crypto_sign_ed25519_ref10_ge_p2_0($r); + $i$02 = 255; + while(1) { + $8 = (($aslide) + ($i$02)|0); + $9 = HEAP8[$8>>0]|0; + $10 = ($9<<24>>24)==(0); + if (!($10)) { + $i$0$lcssa = $i$02; + break; + } + $11 = (($bslide) + ($i$02)|0); + $12 = HEAP8[$11>>0]|0; + $13 = ($12<<24>>24)==(0); + $14 = (($i$02) + -1)|0; + if (!($13)) { + $i$0$lcssa = $i$02; + break; + } + $7 = ($i$02|0)>(0); + if ($7) { + $i$02 = $14; + } else { + $i$0$lcssa = $14; + break; + } + } + $15 = ($i$0$lcssa|0)>(-1); + if ($15) { + $i$11 = $i$0$lcssa; + } else { + STACKTOP = sp;return; + } + while(1) { + _crypto_sign_ed25519_ref10_ge_p2_dbl($t,$r); + $16 = (($aslide) + ($i$11)|0); + $17 = HEAP8[$16>>0]|0; + $18 = ($17<<24>>24)>(0); + if ($18) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $19 = HEAP8[$16>>0]|0; + $20 = $19 << 24 >> 24; + $21 = (($20|0) / 2)&-1; + $22 = (($Ai) + (($21*160)|0)|0); + _crypto_sign_ed25519_ref10_ge_add($t,$u,$22); + } else { + $23 = ($17<<24>>24)<(0); + if ($23) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $24 = HEAP8[$16>>0]|0; + $25 = $24 << 24 >> 24; + $26 = (($25|0) / -2)&-1; + $27 = (($Ai) + (($26*160)|0)|0); + _crypto_sign_ed25519_ref10_ge_sub($t,$u,$27); + } + } + $28 = (($bslide) + ($i$11)|0); + $29 = HEAP8[$28>>0]|0; + $30 = ($29<<24>>24)>(0); + if ($30) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $31 = HEAP8[$28>>0]|0; + $32 = $31 << 24 >> 24; + $33 = (($32|0) / 2)&-1; + $34 = (40 + (($33*120)|0)|0); + _crypto_sign_ed25519_ref10_ge_madd($t,$u,$34); + } else { + $35 = ($29<<24>>24)<(0); + if ($35) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $36 = HEAP8[$28>>0]|0; + $37 = $36 << 24 >> 24; + $38 = (($37|0) / -2)&-1; + $39 = (40 + (($38*120)|0)|0); + _crypto_sign_ed25519_ref10_ge_msub($t,$u,$39); + } + } + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($r,$t); + $40 = (($i$11) + -1)|0; + $41 = ($i$11|0)>(0); + if ($41) { + $i$11 = $40; + } else { + break; + } + } + STACKTOP = sp;return; +} +function _slide($r,$a) { + $r = $r|0; + $a = $a|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $b$03 = 0, $exitcond = 0, $exitcond10 = 0; + var $i$08 = 0, $i$15 = 0, $k$01 = 0, label = 0, sp = 0; + sp = STACKTOP; + $i$08 = 0; + while(1) { + $0 = $i$08 >> 3; + $1 = (($a) + ($0)|0); + $2 = HEAP8[$1>>0]|0; + $3 = $2&255; + $4 = $i$08 & 7; + $5 = $3 >>> $4; + $6 = $5 & 1; + $7 = $6&255; + $8 = (($r) + ($i$08)|0); + HEAP8[$8>>0] = $7; + $9 = (($i$08) + 1)|0; + $exitcond10 = ($9|0)==(256); + if ($exitcond10) { + $i$15 = 0; + break; + } else { + $i$08 = $9; + } + } + while(1) { + $10 = (($r) + ($i$15)|0); + $11 = HEAP8[$10>>0]|0; + $12 = ($11<<24>>24)==(0); + L5: do { + if (!($12)) { + $b$03 = 1; + while(1) { + $13 = (($b$03) + ($i$15))|0; + $14 = ($13|0)<(256); + if (!($14)) { + break L5; + } + $15 = (($r) + ($13)|0); + $16 = HEAP8[$15>>0]|0; + $17 = ($16<<24>>24)==(0); + L9: do { + if (!($17)) { + $18 = HEAP8[$10>>0]|0; + $19 = $18 << 24 >> 24; + $20 = $16 << 24 >> 24; + $21 = $20 << $b$03; + $22 = (($19) + ($21))|0; + $23 = ($22|0)<(16); + if ($23) { + $24 = $22&255; + HEAP8[$10>>0] = $24; + HEAP8[$15>>0] = 0; + break; + } + $25 = (($19) - ($21))|0; + $26 = ($25|0)>(-16); + if (!($26)) { + break L5; + } + $27 = $25&255; + HEAP8[$10>>0] = $27; + $28 = ($13|0)<(256); + if ($28) { + $k$01 = $13; + while(1) { + $29 = (($r) + ($k$01)|0); + $30 = HEAP8[$29>>0]|0; + $31 = ($30<<24>>24)==(0); + if ($31) { + break; + } + HEAP8[$29>>0] = 0; + $32 = (($k$01) + 1)|0; + $33 = ($32|0)<(256); + if ($33) { + $k$01 = $32; + } else { + break L9; + } + } + HEAP8[$29>>0] = 1; + } + } + } while(0); + $34 = (($b$03) + 1)|0; + $35 = ($34|0)<(7); + if ($35) { + $b$03 = $34; + } else { + break; + } + } + } + } while(0); + $36 = (($i$15) + 1)|0; + $exitcond = ($36|0)==(256); + if ($exitcond) { + break; + } else { + $i$15 = $36; + } + } + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($h,$s) { + $h = $h|0; + $s = $s|0; + var $$0 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $check = 0, $u = 0, $v = 0, $v3 = 0, $vxx = 0, label = 0; + var sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 208|0; + $u = sp + 160|0; + $v = sp + 120|0; + $v3 = sp + 80|0; + $vxx = sp + 40|0; + $check = sp; + $0 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_frombytes($0,$s); + $1 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($1); + _crypto_sign_ed25519_ref10_fe_sq($u,$0); + _crypto_sign_ed25519_ref10_fe_mul($v,$u,1000); + _crypto_sign_ed25519_ref10_fe_sub($u,$u,$1); + _crypto_sign_ed25519_ref10_fe_add($v,$v,$1); + _crypto_sign_ed25519_ref10_fe_sq($v3,$v); + _crypto_sign_ed25519_ref10_fe_mul($v3,$v3,$v); + _crypto_sign_ed25519_ref10_fe_sq($h,$v3); + _crypto_sign_ed25519_ref10_fe_mul($h,$h,$v); + _crypto_sign_ed25519_ref10_fe_mul($h,$h,$u); + _crypto_sign_ed25519_ref10_fe_pow22523($h,$h); + _crypto_sign_ed25519_ref10_fe_mul($h,$h,$v3); + _crypto_sign_ed25519_ref10_fe_mul($h,$h,$u); + _crypto_sign_ed25519_ref10_fe_sq($vxx,$h); + _crypto_sign_ed25519_ref10_fe_mul($vxx,$vxx,$v); + _crypto_sign_ed25519_ref10_fe_sub($check,$vxx,$u); + $2 = (_crypto_sign_ed25519_ref10_fe_isnonzero($check)|0); + $3 = ($2|0)==(0); + do { + if (!($3)) { + _crypto_sign_ed25519_ref10_fe_add($check,$vxx,$u); + $4 = (_crypto_sign_ed25519_ref10_fe_isnonzero($check)|0); + $5 = ($4|0)==(0); + if ($5) { + _crypto_sign_ed25519_ref10_fe_mul($h,$h,1040); + break; + } else { + $$0 = -1; + STACKTOP = sp;return ($$0|0); + } + } + } while(0); + $6 = (_crypto_sign_ed25519_ref10_fe_isnegative($h)|0); + $7 = (($s) + 31|0); + $8 = HEAP8[$7>>0]|0; + $9 = $8&255; + $10 = $9 >>> 7; + $11 = ($6|0)==($10|0); + if ($11) { + _crypto_sign_ed25519_ref10_fe_neg($h,$h); + } + $12 = (($h) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($12,$h,$0); + $$0 = 0; + STACKTOP = sp;return ($$0|0); +} +function _crypto_sign_ed25519_ref10_ge_madd($r,$p,$q) { + $r = $r|0; + $p = $p|0; + $q = $q|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $t0 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $t0 = sp; + $0 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); + $1 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); + $2 = (($r) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($2,$r,$q); + $3 = (($q) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($1,$1,$3); + $4 = (($r) + 120|0); + $5 = (($q) + 80|0); + $6 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); + $7 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_add($t0,$7,$7); + _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($2,$t0,$4); + _crypto_sign_ed25519_ref10_fe_sub($4,$t0,$4); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_msub($r,$p,$q) { + $r = $r|0; + $p = $p|0; + $q = $q|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $t0 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $t0 = sp; + $0 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); + $1 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); + $2 = (($r) + 80|0); + $3 = (($q) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($2,$r,$3); + _crypto_sign_ed25519_ref10_fe_mul($1,$1,$q); + $4 = (($r) + 120|0); + $5 = (($q) + 80|0); + $6 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); + $7 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_add($t0,$7,$7); + _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); + _crypto_sign_ed25519_ref10_fe_sub($2,$t0,$4); + _crypto_sign_ed25519_ref10_fe_add($4,$t0,$4); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($r,$p) { + $r = $r|0; + $p = $p|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($r,$p,$0); + $1 = (($r) + 40|0); + $2 = (($p) + 40|0); + $3 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($1,$2,$3); + $4 = (($r) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$3,$0); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($r,$p) { + $r = $r|0; + $p = $p|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($r,$p,$0); + $1 = (($r) + 40|0); + $2 = (($p) + 40|0); + $3 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($1,$2,$3); + $4 = (($r) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$3,$0); + $5 = (($r) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($5,$p,$2); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p2_0($h) { + $h = $h|0; + var $0 = 0, $1 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_0($h); + $0 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_1($0); + $1 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($1); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$p) { + $r = $r|0; + $p = $p|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $t0 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $t0 = sp; + _crypto_sign_ed25519_ref10_fe_sq($r,$p); + $0 = (($r) + 80|0); + $1 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_sq($0,$1); + $2 = (($r) + 120|0); + $3 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_sq2($2,$3); + $4 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($4,$p,$1); + _crypto_sign_ed25519_ref10_fe_sq($t0,$4); + _crypto_sign_ed25519_ref10_fe_add($4,$0,$r); + _crypto_sign_ed25519_ref10_fe_sub($0,$0,$r); + _crypto_sign_ed25519_ref10_fe_sub($r,$t0,$4); + _crypto_sign_ed25519_ref10_fe_sub($2,$2,$0); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_0($h) { + $h = $h|0; + var $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_0($h); + $0 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_1($0); + $1 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($1); + $2 = (($h) + 120|0); + _crypto_sign_ed25519_ref10_fe_0($2); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_dbl($r,$p) { + $r = $r|0; + $p = $p|0; + var $q = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $q = sp; + _crypto_sign_ed25519_ref10_ge_p3_to_p2($q,$p); + _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$q); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_to_cached($r,$p) { + $r = $r|0; + $p = $p|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); + $1 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); + $2 = (($r) + 80|0); + $3 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_copy($2,$3); + $4 = (($r) + 120|0); + $5 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,1080); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_to_p2($r,$p) { + $r = $r|0; + $p = $p|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_copy($r,$p); + $0 = (($r) + 40|0); + $1 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_copy($0,$1); + $2 = (($r) + 80|0); + $3 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_copy($2,$3); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_tobytes($s,$h) { + $s = $s|0; + $h = $h|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $recip = 0, $x = 0, $y = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $recip = sp + 80|0; + $x = sp + 40|0; + $y = sp; + $0 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_invert($recip,$0); + _crypto_sign_ed25519_ref10_fe_mul($x,$h,$recip); + $1 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($y,$1,$recip); + _crypto_sign_ed25519_ref10_fe_tobytes($s,$y); + $2 = (_crypto_sign_ed25519_ref10_fe_isnegative($x)|0); + $3 = $2 << 7; + $4 = (($s) + 31|0); + $5 = HEAP8[$4>>0]|0; + $6 = $5&255; + $7 = $6 ^ $3; + $8 = $7&255; + HEAP8[$4>>0] = $8; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_precomp_0($h) { + $h = $h|0; + var $0 = 0, $1 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_1($h); + $0 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_1($0); + $1 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_0($1); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_scalarmult_base($h,$a) { + $h = $h|0; + $a = $a|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $carry$04 = 0, $e = 0, $exitcond = 0, $exitcond7 = 0; + var $i$06 = 0, $i$15 = 0, $i$23 = 0, $i$32 = 0, $r = 0, $s = 0, $sext = 0, $sext1 = 0, $t = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 464|0; + $e = sp + 400|0; + $r = sp + 240|0; + $s = sp + 120|0; + $t = sp; + $i$06 = 0; + while(1) { + $0 = (($a) + ($i$06)|0); + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = $2 & 15; + $4 = $3&255; + $5 = $i$06 << 1; + $6 = (($e) + ($5)|0); + HEAP8[$6>>0] = $4; + $7 = HEAP8[$0>>0]|0; + $8 = ($7&255) >>> 4; + $9 = $5 | 1; + $10 = (($e) + ($9)|0); + HEAP8[$10>>0] = $8; + $11 = (($i$06) + 1)|0; + $exitcond7 = ($11|0)==(32); + if ($exitcond7) { + $carry$04 = 0;$i$15 = 0; + break; + } else { + $i$06 = $11; + } + } + while(1) { + $12 = (($e) + ($i$15)|0); + $13 = HEAP8[$12>>0]|0; + $14 = $13&255; + $15 = (($14) + ($carry$04))|0; + $sext = $15 << 24; + $sext1 = (($sext) + 134217728)|0; + $16 = $sext1 >> 28; + $17 = $16 << 4; + $18 = (($15) - ($17))|0; + $19 = $18&255; + HEAP8[$12>>0] = $19; + $20 = (($i$15) + 1)|0; + $exitcond = ($20|0)==(63); + if ($exitcond) { + break; + } else { + $carry$04 = $16;$i$15 = $20; + } + } + $21 = (($e) + 63|0); + $22 = HEAP8[$21>>0]|0; + $23 = $22&255; + $24 = (($23) + ($16))|0; + $25 = $24&255; + HEAP8[$21>>0] = $25; + _crypto_sign_ed25519_ref10_ge_p3_0($h); + $i$23 = 1; + while(1) { + $26 = (($i$23|0) / 2)&-1; + $27 = (($e) + ($i$23)|0); + $28 = HEAP8[$27>>0]|0; + _select($t,$26,$28); + _crypto_sign_ed25519_ref10_ge_madd($r,$h,$t); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); + $29 = (($i$23) + 2)|0; + $30 = ($29|0)<(64); + if ($30) { + $i$23 = $29; + } else { + break; + } + } + _crypto_sign_ed25519_ref10_ge_p3_dbl($r,$h); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); + _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); + _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); + _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); + $i$32 = 0; + while(1) { + $31 = (($i$32|0) / 2)&-1; + $32 = (($e) + ($i$32)|0); + $33 = HEAP8[$32>>0]|0; + _select($t,$31,$33); + _crypto_sign_ed25519_ref10_ge_madd($r,$h,$t); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); + $34 = (($i$32) + 2)|0; + $35 = ($34|0)<(64); + if ($35) { + $i$32 = $34; + } else { + break; + } + } + STACKTOP = sp;return; +} +function _select($t,$pos,$b) { + $t = $t|0; + $pos = $pos|0; + $b = $b|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $minust = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $minust = sp; + $0 = (_negative($b)|0); + $1 = $b << 24 >> 24; + $2 = $0&255; + $3 = (0 - ($2))|0; + $4 = $1 & $3; + $5 = $4 << 1; + $6 = (($1) - ($5))|0; + $7 = $6&255; + _crypto_sign_ed25519_ref10_ge_precomp_0($t); + $8 = (1120 + (($pos*960)|0)|0); + $9 = (_equal($7,1)|0); + _cmov($t,$8,$9); + $10 = ((1120 + (($pos*960)|0)|0) + 120|0); + $11 = (_equal($7,2)|0); + _cmov($t,$10,$11); + $12 = ((1120 + (($pos*960)|0)|0) + 240|0); + $13 = (_equal($7,3)|0); + _cmov($t,$12,$13); + $14 = ((1120 + (($pos*960)|0)|0) + 360|0); + $15 = (_equal($7,4)|0); + _cmov($t,$14,$15); + $16 = ((1120 + (($pos*960)|0)|0) + 480|0); + $17 = (_equal($7,5)|0); + _cmov($t,$16,$17); + $18 = ((1120 + (($pos*960)|0)|0) + 600|0); + $19 = (_equal($7,6)|0); + _cmov($t,$18,$19); + $20 = ((1120 + (($pos*960)|0)|0) + 720|0); + $21 = (_equal($7,7)|0); + _cmov($t,$20,$21); + $22 = ((1120 + (($pos*960)|0)|0) + 840|0); + $23 = (_equal($7,8)|0); + _cmov($t,$22,$23); + $24 = (($t) + 40|0); + _crypto_sign_ed25519_ref10_fe_copy($minust,$24); + $25 = (($minust) + 40|0); + _crypto_sign_ed25519_ref10_fe_copy($25,$t); + $26 = (($minust) + 80|0); + $27 = (($t) + 80|0); + _crypto_sign_ed25519_ref10_fe_neg($26,$27); + _cmov($t,$minust,$0); + STACKTOP = sp;return; +} +function _negative($b) { + $b = $b|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $b << 24 >> 24; + $1 = ($0|0)<(0); + $2 = $1 << 31 >> 31; + $3 = (_bitshift64Lshr(($0|0),($2|0),63)|0); + $4 = tempRet0; + $5 = $3&255; + STACKTOP = sp;return ($5|0); +} +function _equal($b,$c) { + $b = $b|0; + $c = $c|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $c ^ $b; + $1 = $0&255; + $2 = (($1) + -1)|0; + $3 = $2 >>> 31; + $4 = $3&255; + STACKTOP = sp;return ($4|0); +} +function _cmov($t,$u,$b) { + $t = $t|0; + $u = $u|0; + $b = $b|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $b&255; + _crypto_sign_ed25519_ref10_fe_cmov($t,$u,$0); + $1 = (($t) + 40|0); + $2 = (($u) + 40|0); + _crypto_sign_ed25519_ref10_fe_cmov($1,$2,$0); + $3 = (($t) + 80|0); + $4 = (($u) + 80|0); + _crypto_sign_ed25519_ref10_fe_cmov($3,$4,$0); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_sub($r,$p,$q) { + $r = $r|0; + $p = $p|0; + $q = $q|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $t0 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $t0 = sp; + $0 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); + $1 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); + $2 = (($r) + 80|0); + $3 = (($q) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($2,$r,$3); + _crypto_sign_ed25519_ref10_fe_mul($1,$1,$q); + $4 = (($r) + 120|0); + $5 = (($q) + 120|0); + $6 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); + $7 = (($p) + 80|0); + $8 = (($q) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($r,$7,$8); + _crypto_sign_ed25519_ref10_fe_add($t0,$r,$r); + _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); + _crypto_sign_ed25519_ref10_fe_sub($2,$t0,$4); + _crypto_sign_ed25519_ref10_fe_add($4,$t0,$4); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_tobytes($s,$h) { + $s = $s|0; + $h = $h|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $recip = 0, $x = 0, $y = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $recip = sp + 80|0; + $x = sp + 40|0; + $y = sp; + $0 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_invert($recip,$0); + _crypto_sign_ed25519_ref10_fe_mul($x,$h,$recip); + $1 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($y,$1,$recip); + _crypto_sign_ed25519_ref10_fe_tobytes($s,$y); + $2 = (_crypto_sign_ed25519_ref10_fe_isnegative($x)|0); + $3 = $2 << 7; + $4 = (($s) + 31|0); + $5 = HEAP8[$4>>0]|0; + $6 = $5&255; + $7 = $6 ^ $3; + $8 = $7&255; + HEAP8[$4>>0] = $8; + STACKTOP = sp;return; +} +function _crypto_sign_edwards25519sha512batch_ref10_open($m,$mlen,$sm,$0,$1,$pk) { + $m = $m|0; + $mlen = $mlen|0; + $sm = $sm|0; + $0 = $0|0; + $1 = $1|0; + $pk = $pk|0; + var $$0 = 0, $$sum = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $A = 0, $R = 0, $h = 0, $pkcopy1 = 0, $rcheck = 0, $rcopy = 0, $scopy = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 480|0; + $pkcopy1 = sp + 440|0; + $rcopy = sp + 408|0; + $scopy = sp + 376|0; + $h = sp + 312|0; + $rcheck = sp + 280|0; + $A = sp + 120|0; + $R = sp; + $2 = ($1>>>0)<(0); + $3 = ($0>>>0)<(64); + $4 = ($1|0)==(0); + $5 = $4 & $3; + $6 = $2 | $5; + if (!($6)) { + $7 = (($sm) + 63|0); + $8 = HEAP8[$7>>0]|0; + $9 = ($8&255)>(31); + if (!($9)) { + $10 = (_crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($A,$pk)|0); + $11 = ($10|0)==(0); + if ($11) { + dest=$pkcopy1+0|0; src=$pk+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + dest=$rcopy+0|0; src=$sm+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $12 = (($sm) + 32|0); + dest=$scopy+0|0; src=$12+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _memmove(($m|0),($sm|0),($0|0))|0; + $13 = (($m) + 32|0); + dest=$13+0|0; src=$pkcopy1+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + (_crypto_hash_sha512_ref($h,$m,$0,$1)|0); + _crypto_sign_ed25519_ref10_sc_reduce($h); + _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($R,$h,$A,$scopy); + _crypto_sign_ed25519_ref10_ge_tobytes($rcheck,$R); + $14 = (_crypto_verify_32_ref($rcheck,$rcopy)|0); + $15 = ($14|0)==(0); + if ($15) { + $16 = (($m) + 64|0); + $17 = (_i64Add(($0|0),($1|0),-64,-1)|0); + $18 = tempRet0; + _memmove(($m|0),($16|0),($17|0))|0; + $$sum = (($0) + -64)|0; + $19 = (($m) + ($$sum)|0); + dest=$19+0|0; stop=dest+64|0; do { HEAP8[dest>>0]=0|0; dest=dest+1|0; } while ((dest|0) < (stop|0)); + $20 = $mlen; + $21 = $20; + HEAP32[$21>>2] = $17; + $22 = (($20) + 4)|0; + $23 = $22; + HEAP32[$23>>2] = $18; + $$0 = 0; + STACKTOP = sp;return ($$0|0); + } + } + } + } + $24 = $mlen; + $25 = $24; + HEAP32[$25>>2] = -1; + $26 = (($24) + 4)|0; + $27 = $26; + HEAP32[$27>>2] = -1; + _memset(($m|0),0,($0|0))|0; + $$0 = -1; + STACKTOP = sp;return ($$0|0); +} +function _crypto_sign_ed25519_ref10_sc_muladd($s,$a,$b,$c) { + $s = $s|0; + $a = $a|0; + $b = $b|0; + $c = $c|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; + var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; + var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; + var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; + var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; + var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; + var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0; + var $1123 = 0, $1124 = 0, $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0; + var $1141 = 0, $1142 = 0, $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0; + var $116 = 0, $1160 = 0, $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0; + var $1178 = 0, $1179 = 0, $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0; + var $1196 = 0, $1197 = 0, $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0; + var $1213 = 0, $1214 = 0, $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0; + var $1231 = 0, $1232 = 0, $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0; + var $125 = 0, $1250 = 0, $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0; + var $1268 = 0, $1269 = 0, $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0; + var $1286 = 0, $1287 = 0, $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0; + var $1303 = 0, $1304 = 0, $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0; + var $1321 = 0, $1322 = 0, $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0; + var $134 = 0, $1340 = 0, $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0; + var $1358 = 0, $1359 = 0, $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0; + var $1376 = 0, $1377 = 0, $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0; + var $1394 = 0, $1395 = 0, $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0; + var $1411 = 0, $1412 = 0, $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0; + var $143 = 0, $1430 = 0, $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0; + var $1448 = 0, $1449 = 0, $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0; + var $1466 = 0, $1467 = 0, $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0; + var $1484 = 0, $1485 = 0, $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0; + var $1501 = 0, $1502 = 0, $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0; + var $152 = 0, $1520 = 0, $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0; + var $1538 = 0, $1539 = 0, $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0; + var $1556 = 0, $1557 = 0, $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0; + var $1574 = 0, $1575 = 0, $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0; + var $1592 = 0, $1593 = 0, $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0; + var $161 = 0, $1610 = 0, $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0; + var $1628 = 0, $1629 = 0, $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0; + var $1646 = 0, $1647 = 0, $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0; + var $1664 = 0, $1665 = 0, $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0; + var $1682 = 0, $1683 = 0, $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0; + var $170 = 0, $1700 = 0, $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0; + var $1718 = 0, $1719 = 0, $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0; + var $1736 = 0, $1737 = 0, $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0; + var $1754 = 0, $1755 = 0, $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0; + var $1772 = 0, $1773 = 0, $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0; + var $1790 = 0, $1791 = 0, $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0; + var $1808 = 0, $1809 = 0, $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0; + var $1826 = 0, $1827 = 0, $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0; + var $1844 = 0, $1845 = 0, $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0; + var $1862 = 0, $1863 = 0, $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $188 = 0, $189 = 0; + var $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0; + var $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0; + var $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0; + var $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0; + var $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0; + var $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0; + var $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0; + var $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0; + var $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0; + var $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0; + var $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0; + var $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0; + var $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0; + var $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0; + var $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0; + var $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0; + var $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0; + var $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0; + var $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0; + var $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0; + var $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0; + var $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0; + var $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0; + var $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0; + var $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0; + var $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0; + var $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0; + var $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0; + var $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0; + var $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0; + var $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0; + var $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0; + var $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0; + var $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0; + var $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0; + var $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0; + var $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0; + var $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0; + var $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0; + var $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0; + var $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0; + var $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0; + var $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0; + var $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0; + var $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + $0 = (_load_347($a)|0); + $1 = tempRet0; + $2 = $0 & 2097151; + $3 = (($a) + 2|0); + $4 = (_load_448($3)|0); + $5 = tempRet0; + $6 = (_bitshift64Lshr(($4|0),($5|0),5)|0); + $7 = tempRet0; + $8 = $6 & 2097151; + $9 = (($a) + 5|0); + $10 = (_load_347($9)|0); + $11 = tempRet0; + $12 = (_bitshift64Lshr(($10|0),($11|0),2)|0); + $13 = tempRet0; + $14 = $12 & 2097151; + $15 = (($a) + 7|0); + $16 = (_load_448($15)|0); + $17 = tempRet0; + $18 = (_bitshift64Lshr(($16|0),($17|0),7)|0); + $19 = tempRet0; + $20 = $18 & 2097151; + $21 = (($a) + 10|0); + $22 = (_load_448($21)|0); + $23 = tempRet0; + $24 = (_bitshift64Lshr(($22|0),($23|0),4)|0); + $25 = tempRet0; + $26 = $24 & 2097151; + $27 = (($a) + 13|0); + $28 = (_load_347($27)|0); + $29 = tempRet0; + $30 = (_bitshift64Lshr(($28|0),($29|0),1)|0); + $31 = tempRet0; + $32 = $30 & 2097151; + $33 = (($a) + 15|0); + $34 = (_load_448($33)|0); + $35 = tempRet0; + $36 = (_bitshift64Lshr(($34|0),($35|0),6)|0); + $37 = tempRet0; + $38 = $36 & 2097151; + $39 = (($a) + 18|0); + $40 = (_load_347($39)|0); + $41 = tempRet0; + $42 = (_bitshift64Lshr(($40|0),($41|0),3)|0); + $43 = tempRet0; + $44 = $42 & 2097151; + $45 = (($a) + 21|0); + $46 = (_load_347($45)|0); + $47 = tempRet0; + $48 = $46 & 2097151; + $49 = (($a) + 23|0); + $50 = (_load_448($49)|0); + $51 = tempRet0; + $52 = (_bitshift64Lshr(($50|0),($51|0),5)|0); + $53 = tempRet0; + $54 = $52 & 2097151; + $55 = (($a) + 26|0); + $56 = (_load_347($55)|0); + $57 = tempRet0; + $58 = (_bitshift64Lshr(($56|0),($57|0),2)|0); + $59 = tempRet0; + $60 = $58 & 2097151; + $61 = (($a) + 28|0); + $62 = (_load_448($61)|0); + $63 = tempRet0; + $64 = (_bitshift64Lshr(($62|0),($63|0),7)|0); + $65 = tempRet0; + $66 = (_load_347($b)|0); + $67 = tempRet0; + $68 = $66 & 2097151; + $69 = (($b) + 2|0); + $70 = (_load_448($69)|0); + $71 = tempRet0; + $72 = (_bitshift64Lshr(($70|0),($71|0),5)|0); + $73 = tempRet0; + $74 = $72 & 2097151; + $75 = (($b) + 5|0); + $76 = (_load_347($75)|0); + $77 = tempRet0; + $78 = (_bitshift64Lshr(($76|0),($77|0),2)|0); + $79 = tempRet0; + $80 = $78 & 2097151; + $81 = (($b) + 7|0); + $82 = (_load_448($81)|0); + $83 = tempRet0; + $84 = (_bitshift64Lshr(($82|0),($83|0),7)|0); + $85 = tempRet0; + $86 = $84 & 2097151; + $87 = (($b) + 10|0); + $88 = (_load_448($87)|0); + $89 = tempRet0; + $90 = (_bitshift64Lshr(($88|0),($89|0),4)|0); + $91 = tempRet0; + $92 = $90 & 2097151; + $93 = (($b) + 13|0); + $94 = (_load_347($93)|0); + $95 = tempRet0; + $96 = (_bitshift64Lshr(($94|0),($95|0),1)|0); + $97 = tempRet0; + $98 = $96 & 2097151; + $99 = (($b) + 15|0); + $100 = (_load_448($99)|0); + $101 = tempRet0; + $102 = (_bitshift64Lshr(($100|0),($101|0),6)|0); + $103 = tempRet0; + $104 = $102 & 2097151; + $105 = (($b) + 18|0); + $106 = (_load_347($105)|0); + $107 = tempRet0; + $108 = (_bitshift64Lshr(($106|0),($107|0),3)|0); + $109 = tempRet0; + $110 = $108 & 2097151; + $111 = (($b) + 21|0); + $112 = (_load_347($111)|0); + $113 = tempRet0; + $114 = $112 & 2097151; + $115 = (($b) + 23|0); + $116 = (_load_448($115)|0); + $117 = tempRet0; + $118 = (_bitshift64Lshr(($116|0),($117|0),5)|0); + $119 = tempRet0; + $120 = $118 & 2097151; + $121 = (($b) + 26|0); + $122 = (_load_347($121)|0); + $123 = tempRet0; + $124 = (_bitshift64Lshr(($122|0),($123|0),2)|0); + $125 = tempRet0; + $126 = $124 & 2097151; + $127 = (($b) + 28|0); + $128 = (_load_448($127)|0); + $129 = tempRet0; + $130 = (_bitshift64Lshr(($128|0),($129|0),7)|0); + $131 = tempRet0; + $132 = (_load_347($c)|0); + $133 = tempRet0; + $134 = $132 & 2097151; + $135 = (($c) + 2|0); + $136 = (_load_448($135)|0); + $137 = tempRet0; + $138 = (_bitshift64Lshr(($136|0),($137|0),5)|0); + $139 = tempRet0; + $140 = $138 & 2097151; + $141 = (($c) + 5|0); + $142 = (_load_347($141)|0); + $143 = tempRet0; + $144 = (_bitshift64Lshr(($142|0),($143|0),2)|0); + $145 = tempRet0; + $146 = $144 & 2097151; + $147 = (($c) + 7|0); + $148 = (_load_448($147)|0); + $149 = tempRet0; + $150 = (_bitshift64Lshr(($148|0),($149|0),7)|0); + $151 = tempRet0; + $152 = $150 & 2097151; + $153 = (($c) + 10|0); + $154 = (_load_448($153)|0); + $155 = tempRet0; + $156 = (_bitshift64Lshr(($154|0),($155|0),4)|0); + $157 = tempRet0; + $158 = $156 & 2097151; + $159 = (($c) + 13|0); + $160 = (_load_347($159)|0); + $161 = tempRet0; + $162 = (_bitshift64Lshr(($160|0),($161|0),1)|0); + $163 = tempRet0; + $164 = $162 & 2097151; + $165 = (($c) + 15|0); + $166 = (_load_448($165)|0); + $167 = tempRet0; + $168 = (_bitshift64Lshr(($166|0),($167|0),6)|0); + $169 = tempRet0; + $170 = $168 & 2097151; + $171 = (($c) + 18|0); + $172 = (_load_347($171)|0); + $173 = tempRet0; + $174 = (_bitshift64Lshr(($172|0),($173|0),3)|0); + $175 = tempRet0; + $176 = $174 & 2097151; + $177 = (($c) + 21|0); + $178 = (_load_347($177)|0); + $179 = tempRet0; + $180 = $178 & 2097151; + $181 = (($c) + 23|0); + $182 = (_load_448($181)|0); + $183 = tempRet0; + $184 = (_bitshift64Lshr(($182|0),($183|0),5)|0); + $185 = tempRet0; + $186 = $184 & 2097151; + $187 = (($c) + 26|0); + $188 = (_load_347($187)|0); + $189 = tempRet0; + $190 = (_bitshift64Lshr(($188|0),($189|0),2)|0); + $191 = tempRet0; + $192 = $190 & 2097151; + $193 = (($c) + 28|0); + $194 = (_load_448($193)|0); + $195 = tempRet0; + $196 = (_bitshift64Lshr(($194|0),($195|0),7)|0); + $197 = tempRet0; + $198 = (___muldi3(($68|0),0,($2|0),0)|0); + $199 = tempRet0; + $200 = (_i64Add(($134|0),0,($198|0),($199|0))|0); + $201 = tempRet0; + $202 = (___muldi3(($74|0),0,($2|0),0)|0); + $203 = tempRet0; + $204 = (___muldi3(($68|0),0,($8|0),0)|0); + $205 = tempRet0; + $206 = (___muldi3(($80|0),0,($2|0),0)|0); + $207 = tempRet0; + $208 = (___muldi3(($74|0),0,($8|0),0)|0); + $209 = tempRet0; + $210 = (___muldi3(($68|0),0,($14|0),0)|0); + $211 = tempRet0; + $212 = (_i64Add(($208|0),($209|0),($210|0),($211|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($212|0),($213|0),($206|0),($207|0))|0); + $215 = tempRet0; + $216 = (_i64Add(($214|0),($215|0),($146|0),0)|0); + $217 = tempRet0; + $218 = (___muldi3(($86|0),0,($2|0),0)|0); + $219 = tempRet0; + $220 = (___muldi3(($80|0),0,($8|0),0)|0); + $221 = tempRet0; + $222 = (___muldi3(($74|0),0,($14|0),0)|0); + $223 = tempRet0; + $224 = (___muldi3(($68|0),0,($20|0),0)|0); + $225 = tempRet0; + $226 = (___muldi3(($92|0),0,($2|0),0)|0); + $227 = tempRet0; + $228 = (___muldi3(($86|0),0,($8|0),0)|0); + $229 = tempRet0; + $230 = (___muldi3(($80|0),0,($14|0),0)|0); + $231 = tempRet0; + $232 = (___muldi3(($74|0),0,($20|0),0)|0); + $233 = tempRet0; + $234 = (___muldi3(($68|0),0,($26|0),0)|0); + $235 = tempRet0; + $236 = (_i64Add(($232|0),($233|0),($234|0),($235|0))|0); + $237 = tempRet0; + $238 = (_i64Add(($236|0),($237|0),($230|0),($231|0))|0); + $239 = tempRet0; + $240 = (_i64Add(($238|0),($239|0),($228|0),($229|0))|0); + $241 = tempRet0; + $242 = (_i64Add(($240|0),($241|0),($226|0),($227|0))|0); + $243 = tempRet0; + $244 = (_i64Add(($242|0),($243|0),($158|0),0)|0); + $245 = tempRet0; + $246 = (___muldi3(($98|0),0,($2|0),0)|0); + $247 = tempRet0; + $248 = (___muldi3(($92|0),0,($8|0),0)|0); + $249 = tempRet0; + $250 = (___muldi3(($86|0),0,($14|0),0)|0); + $251 = tempRet0; + $252 = (___muldi3(($80|0),0,($20|0),0)|0); + $253 = tempRet0; + $254 = (___muldi3(($74|0),0,($26|0),0)|0); + $255 = tempRet0; + $256 = (___muldi3(($68|0),0,($32|0),0)|0); + $257 = tempRet0; + $258 = (___muldi3(($104|0),0,($2|0),0)|0); + $259 = tempRet0; + $260 = (___muldi3(($98|0),0,($8|0),0)|0); + $261 = tempRet0; + $262 = (___muldi3(($92|0),0,($14|0),0)|0); + $263 = tempRet0; + $264 = (___muldi3(($86|0),0,($20|0),0)|0); + $265 = tempRet0; + $266 = (___muldi3(($80|0),0,($26|0),0)|0); + $267 = tempRet0; + $268 = (___muldi3(($74|0),0,($32|0),0)|0); + $269 = tempRet0; + $270 = (___muldi3(($68|0),0,($38|0),0)|0); + $271 = tempRet0; + $272 = (_i64Add(($268|0),($269|0),($270|0),($271|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($266|0),($267|0))|0); + $275 = tempRet0; + $276 = (_i64Add(($274|0),($275|0),($264|0),($265|0))|0); + $277 = tempRet0; + $278 = (_i64Add(($276|0),($277|0),($262|0),($263|0))|0); + $279 = tempRet0; + $280 = (_i64Add(($278|0),($279|0),($260|0),($261|0))|0); + $281 = tempRet0; + $282 = (_i64Add(($280|0),($281|0),($258|0),($259|0))|0); + $283 = tempRet0; + $284 = (_i64Add(($282|0),($283|0),($170|0),0)|0); + $285 = tempRet0; + $286 = (___muldi3(($110|0),0,($2|0),0)|0); + $287 = tempRet0; + $288 = (___muldi3(($104|0),0,($8|0),0)|0); + $289 = tempRet0; + $290 = (___muldi3(($98|0),0,($14|0),0)|0); + $291 = tempRet0; + $292 = (___muldi3(($92|0),0,($20|0),0)|0); + $293 = tempRet0; + $294 = (___muldi3(($86|0),0,($26|0),0)|0); + $295 = tempRet0; + $296 = (___muldi3(($80|0),0,($32|0),0)|0); + $297 = tempRet0; + $298 = (___muldi3(($74|0),0,($38|0),0)|0); + $299 = tempRet0; + $300 = (___muldi3(($68|0),0,($44|0),0)|0); + $301 = tempRet0; + $302 = (___muldi3(($114|0),0,($2|0),0)|0); + $303 = tempRet0; + $304 = (___muldi3(($110|0),0,($8|0),0)|0); + $305 = tempRet0; + $306 = (___muldi3(($104|0),0,($14|0),0)|0); + $307 = tempRet0; + $308 = (___muldi3(($98|0),0,($20|0),0)|0); + $309 = tempRet0; + $310 = (___muldi3(($92|0),0,($26|0),0)|0); + $311 = tempRet0; + $312 = (___muldi3(($86|0),0,($32|0),0)|0); + $313 = tempRet0; + $314 = (___muldi3(($80|0),0,($38|0),0)|0); + $315 = tempRet0; + $316 = (___muldi3(($74|0),0,($44|0),0)|0); + $317 = tempRet0; + $318 = (___muldi3(($68|0),0,($48|0),0)|0); + $319 = tempRet0; + $320 = (_i64Add(($316|0),($317|0),($318|0),($319|0))|0); + $321 = tempRet0; + $322 = (_i64Add(($320|0),($321|0),($314|0),($315|0))|0); + $323 = tempRet0; + $324 = (_i64Add(($322|0),($323|0),($312|0),($313|0))|0); + $325 = tempRet0; + $326 = (_i64Add(($324|0),($325|0),($310|0),($311|0))|0); + $327 = tempRet0; + $328 = (_i64Add(($326|0),($327|0),($308|0),($309|0))|0); + $329 = tempRet0; + $330 = (_i64Add(($328|0),($329|0),($306|0),($307|0))|0); + $331 = tempRet0; + $332 = (_i64Add(($330|0),($331|0),($302|0),($303|0))|0); + $333 = tempRet0; + $334 = (_i64Add(($332|0),($333|0),($304|0),($305|0))|0); + $335 = tempRet0; + $336 = (_i64Add(($334|0),($335|0),($180|0),0)|0); + $337 = tempRet0; + $338 = (___muldi3(($120|0),0,($2|0),0)|0); + $339 = tempRet0; + $340 = (___muldi3(($114|0),0,($8|0),0)|0); + $341 = tempRet0; + $342 = (___muldi3(($110|0),0,($14|0),0)|0); + $343 = tempRet0; + $344 = (___muldi3(($104|0),0,($20|0),0)|0); + $345 = tempRet0; + $346 = (___muldi3(($98|0),0,($26|0),0)|0); + $347 = tempRet0; + $348 = (___muldi3(($92|0),0,($32|0),0)|0); + $349 = tempRet0; + $350 = (___muldi3(($86|0),0,($38|0),0)|0); + $351 = tempRet0; + $352 = (___muldi3(($80|0),0,($44|0),0)|0); + $353 = tempRet0; + $354 = (___muldi3(($74|0),0,($48|0),0)|0); + $355 = tempRet0; + $356 = (___muldi3(($68|0),0,($54|0),0)|0); + $357 = tempRet0; + $358 = (___muldi3(($126|0),0,($2|0),0)|0); + $359 = tempRet0; + $360 = (___muldi3(($120|0),0,($8|0),0)|0); + $361 = tempRet0; + $362 = (___muldi3(($114|0),0,($14|0),0)|0); + $363 = tempRet0; + $364 = (___muldi3(($110|0),0,($20|0),0)|0); + $365 = tempRet0; + $366 = (___muldi3(($104|0),0,($26|0),0)|0); + $367 = tempRet0; + $368 = (___muldi3(($98|0),0,($32|0),0)|0); + $369 = tempRet0; + $370 = (___muldi3(($92|0),0,($38|0),0)|0); + $371 = tempRet0; + $372 = (___muldi3(($86|0),0,($44|0),0)|0); + $373 = tempRet0; + $374 = (___muldi3(($80|0),0,($48|0),0)|0); + $375 = tempRet0; + $376 = (___muldi3(($74|0),0,($54|0),0)|0); + $377 = tempRet0; + $378 = (___muldi3(($68|0),0,($60|0),0)|0); + $379 = tempRet0; + $380 = (_i64Add(($376|0),($377|0),($378|0),($379|0))|0); + $381 = tempRet0; + $382 = (_i64Add(($380|0),($381|0),($374|0),($375|0))|0); + $383 = tempRet0; + $384 = (_i64Add(($382|0),($383|0),($372|0),($373|0))|0); + $385 = tempRet0; + $386 = (_i64Add(($384|0),($385|0),($370|0),($371|0))|0); + $387 = tempRet0; + $388 = (_i64Add(($386|0),($387|0),($368|0),($369|0))|0); + $389 = tempRet0; + $390 = (_i64Add(($388|0),($389|0),($366|0),($367|0))|0); + $391 = tempRet0; + $392 = (_i64Add(($390|0),($391|0),($362|0),($363|0))|0); + $393 = tempRet0; + $394 = (_i64Add(($392|0),($393|0),($364|0),($365|0))|0); + $395 = tempRet0; + $396 = (_i64Add(($394|0),($395|0),($360|0),($361|0))|0); + $397 = tempRet0; + $398 = (_i64Add(($396|0),($397|0),($358|0),($359|0))|0); + $399 = tempRet0; + $400 = (_i64Add(($398|0),($399|0),($192|0),0)|0); + $401 = tempRet0; + $402 = (___muldi3(($130|0),($131|0),($2|0),0)|0); + $403 = tempRet0; + $404 = (___muldi3(($126|0),0,($8|0),0)|0); + $405 = tempRet0; + $406 = (___muldi3(($120|0),0,($14|0),0)|0); + $407 = tempRet0; + $408 = (___muldi3(($114|0),0,($20|0),0)|0); + $409 = tempRet0; + $410 = (___muldi3(($110|0),0,($26|0),0)|0); + $411 = tempRet0; + $412 = (___muldi3(($104|0),0,($32|0),0)|0); + $413 = tempRet0; + $414 = (___muldi3(($98|0),0,($38|0),0)|0); + $415 = tempRet0; + $416 = (___muldi3(($92|0),0,($44|0),0)|0); + $417 = tempRet0; + $418 = (___muldi3(($86|0),0,($48|0),0)|0); + $419 = tempRet0; + $420 = (___muldi3(($80|0),0,($54|0),0)|0); + $421 = tempRet0; + $422 = (___muldi3(($74|0),0,($60|0),0)|0); + $423 = tempRet0; + $424 = (___muldi3(($68|0),0,($64|0),($65|0))|0); + $425 = tempRet0; + $426 = (___muldi3(($130|0),($131|0),($8|0),0)|0); + $427 = tempRet0; + $428 = (___muldi3(($126|0),0,($14|0),0)|0); + $429 = tempRet0; + $430 = (___muldi3(($120|0),0,($20|0),0)|0); + $431 = tempRet0; + $432 = (___muldi3(($114|0),0,($26|0),0)|0); + $433 = tempRet0; + $434 = (___muldi3(($110|0),0,($32|0),0)|0); + $435 = tempRet0; + $436 = (___muldi3(($104|0),0,($38|0),0)|0); + $437 = tempRet0; + $438 = (___muldi3(($98|0),0,($44|0),0)|0); + $439 = tempRet0; + $440 = (___muldi3(($92|0),0,($48|0),0)|0); + $441 = tempRet0; + $442 = (___muldi3(($86|0),0,($54|0),0)|0); + $443 = tempRet0; + $444 = (___muldi3(($80|0),0,($60|0),0)|0); + $445 = tempRet0; + $446 = (___muldi3(($74|0),0,($64|0),($65|0))|0); + $447 = tempRet0; + $448 = (_i64Add(($444|0),($445|0),($446|0),($447|0))|0); + $449 = tempRet0; + $450 = (_i64Add(($448|0),($449|0),($442|0),($443|0))|0); + $451 = tempRet0; + $452 = (_i64Add(($450|0),($451|0),($440|0),($441|0))|0); + $453 = tempRet0; + $454 = (_i64Add(($452|0),($453|0),($438|0),($439|0))|0); + $455 = tempRet0; + $456 = (_i64Add(($454|0),($455|0),($436|0),($437|0))|0); + $457 = tempRet0; + $458 = (_i64Add(($456|0),($457|0),($432|0),($433|0))|0); + $459 = tempRet0; + $460 = (_i64Add(($458|0),($459|0),($434|0),($435|0))|0); + $461 = tempRet0; + $462 = (_i64Add(($460|0),($461|0),($430|0),($431|0))|0); + $463 = tempRet0; + $464 = (_i64Add(($462|0),($463|0),($428|0),($429|0))|0); + $465 = tempRet0; + $466 = (_i64Add(($464|0),($465|0),($426|0),($427|0))|0); + $467 = tempRet0; + $468 = (___muldi3(($130|0),($131|0),($14|0),0)|0); + $469 = tempRet0; + $470 = (___muldi3(($126|0),0,($20|0),0)|0); + $471 = tempRet0; + $472 = (___muldi3(($120|0),0,($26|0),0)|0); + $473 = tempRet0; + $474 = (___muldi3(($114|0),0,($32|0),0)|0); + $475 = tempRet0; + $476 = (___muldi3(($110|0),0,($38|0),0)|0); + $477 = tempRet0; + $478 = (___muldi3(($104|0),0,($44|0),0)|0); + $479 = tempRet0; + $480 = (___muldi3(($98|0),0,($48|0),0)|0); + $481 = tempRet0; + $482 = (___muldi3(($92|0),0,($54|0),0)|0); + $483 = tempRet0; + $484 = (___muldi3(($86|0),0,($60|0),0)|0); + $485 = tempRet0; + $486 = (___muldi3(($80|0),0,($64|0),($65|0))|0); + $487 = tempRet0; + $488 = (___muldi3(($130|0),($131|0),($20|0),0)|0); + $489 = tempRet0; + $490 = (___muldi3(($126|0),0,($26|0),0)|0); + $491 = tempRet0; + $492 = (___muldi3(($120|0),0,($32|0),0)|0); + $493 = tempRet0; + $494 = (___muldi3(($114|0),0,($38|0),0)|0); + $495 = tempRet0; + $496 = (___muldi3(($110|0),0,($44|0),0)|0); + $497 = tempRet0; + $498 = (___muldi3(($104|0),0,($48|0),0)|0); + $499 = tempRet0; + $500 = (___muldi3(($98|0),0,($54|0),0)|0); + $501 = tempRet0; + $502 = (___muldi3(($92|0),0,($60|0),0)|0); + $503 = tempRet0; + $504 = (___muldi3(($86|0),0,($64|0),($65|0))|0); + $505 = tempRet0; + $506 = (_i64Add(($502|0),($503|0),($504|0),($505|0))|0); + $507 = tempRet0; + $508 = (_i64Add(($506|0),($507|0),($500|0),($501|0))|0); + $509 = tempRet0; + $510 = (_i64Add(($508|0),($509|0),($498|0),($499|0))|0); + $511 = tempRet0; + $512 = (_i64Add(($510|0),($511|0),($494|0),($495|0))|0); + $513 = tempRet0; + $514 = (_i64Add(($512|0),($513|0),($496|0),($497|0))|0); + $515 = tempRet0; + $516 = (_i64Add(($514|0),($515|0),($492|0),($493|0))|0); + $517 = tempRet0; + $518 = (_i64Add(($516|0),($517|0),($490|0),($491|0))|0); + $519 = tempRet0; + $520 = (_i64Add(($518|0),($519|0),($488|0),($489|0))|0); + $521 = tempRet0; + $522 = (___muldi3(($130|0),($131|0),($26|0),0)|0); + $523 = tempRet0; + $524 = (___muldi3(($126|0),0,($32|0),0)|0); + $525 = tempRet0; + $526 = (___muldi3(($120|0),0,($38|0),0)|0); + $527 = tempRet0; + $528 = (___muldi3(($114|0),0,($44|0),0)|0); + $529 = tempRet0; + $530 = (___muldi3(($110|0),0,($48|0),0)|0); + $531 = tempRet0; + $532 = (___muldi3(($104|0),0,($54|0),0)|0); + $533 = tempRet0; + $534 = (___muldi3(($98|0),0,($60|0),0)|0); + $535 = tempRet0; + $536 = (___muldi3(($92|0),0,($64|0),($65|0))|0); + $537 = tempRet0; + $538 = (___muldi3(($130|0),($131|0),($32|0),0)|0); + $539 = tempRet0; + $540 = (___muldi3(($126|0),0,($38|0),0)|0); + $541 = tempRet0; + $542 = (___muldi3(($120|0),0,($44|0),0)|0); + $543 = tempRet0; + $544 = (___muldi3(($114|0),0,($48|0),0)|0); + $545 = tempRet0; + $546 = (___muldi3(($110|0),0,($54|0),0)|0); + $547 = tempRet0; + $548 = (___muldi3(($104|0),0,($60|0),0)|0); + $549 = tempRet0; + $550 = (___muldi3(($98|0),0,($64|0),($65|0))|0); + $551 = tempRet0; + $552 = (_i64Add(($548|0),($549|0),($550|0),($551|0))|0); + $553 = tempRet0; + $554 = (_i64Add(($552|0),($553|0),($544|0),($545|0))|0); + $555 = tempRet0; + $556 = (_i64Add(($554|0),($555|0),($546|0),($547|0))|0); + $557 = tempRet0; + $558 = (_i64Add(($556|0),($557|0),($542|0),($543|0))|0); + $559 = tempRet0; + $560 = (_i64Add(($558|0),($559|0),($540|0),($541|0))|0); + $561 = tempRet0; + $562 = (_i64Add(($560|0),($561|0),($538|0),($539|0))|0); + $563 = tempRet0; + $564 = (___muldi3(($130|0),($131|0),($38|0),0)|0); + $565 = tempRet0; + $566 = (___muldi3(($126|0),0,($44|0),0)|0); + $567 = tempRet0; + $568 = (___muldi3(($120|0),0,($48|0),0)|0); + $569 = tempRet0; + $570 = (___muldi3(($114|0),0,($54|0),0)|0); + $571 = tempRet0; + $572 = (___muldi3(($110|0),0,($60|0),0)|0); + $573 = tempRet0; + $574 = (___muldi3(($104|0),0,($64|0),($65|0))|0); + $575 = tempRet0; + $576 = (___muldi3(($130|0),($131|0),($44|0),0)|0); + $577 = tempRet0; + $578 = (___muldi3(($126|0),0,($48|0),0)|0); + $579 = tempRet0; + $580 = (___muldi3(($120|0),0,($54|0),0)|0); + $581 = tempRet0; + $582 = (___muldi3(($114|0),0,($60|0),0)|0); + $583 = tempRet0; + $584 = (___muldi3(($110|0),0,($64|0),($65|0))|0); + $585 = tempRet0; + $586 = (_i64Add(($584|0),($585|0),($582|0),($583|0))|0); + $587 = tempRet0; + $588 = (_i64Add(($586|0),($587|0),($580|0),($581|0))|0); + $589 = tempRet0; + $590 = (_i64Add(($588|0),($589|0),($578|0),($579|0))|0); + $591 = tempRet0; + $592 = (_i64Add(($590|0),($591|0),($576|0),($577|0))|0); + $593 = tempRet0; + $594 = (___muldi3(($130|0),($131|0),($48|0),0)|0); + $595 = tempRet0; + $596 = (___muldi3(($126|0),0,($54|0),0)|0); + $597 = tempRet0; + $598 = (___muldi3(($120|0),0,($60|0),0)|0); + $599 = tempRet0; + $600 = (___muldi3(($114|0),0,($64|0),($65|0))|0); + $601 = tempRet0; + $602 = (___muldi3(($130|0),($131|0),($54|0),0)|0); + $603 = tempRet0; + $604 = (___muldi3(($126|0),0,($60|0),0)|0); + $605 = tempRet0; + $606 = (___muldi3(($120|0),0,($64|0),($65|0))|0); + $607 = tempRet0; + $608 = (_i64Add(($604|0),($605|0),($606|0),($607|0))|0); + $609 = tempRet0; + $610 = (_i64Add(($608|0),($609|0),($602|0),($603|0))|0); + $611 = tempRet0; + $612 = (___muldi3(($130|0),($131|0),($60|0),0)|0); + $613 = tempRet0; + $614 = (___muldi3(($126|0),0,($64|0),($65|0))|0); + $615 = tempRet0; + $616 = (_i64Add(($612|0),($613|0),($614|0),($615|0))|0); + $617 = tempRet0; + $618 = (___muldi3(($130|0),($131|0),($64|0),($65|0))|0); + $619 = tempRet0; + $620 = (_i64Add(($200|0),($201|0),1048576,0)|0); + $621 = tempRet0; + $622 = (_bitshift64Lshr(($620|0),($621|0),21)|0); + $623 = tempRet0; + $624 = (_i64Add(($202|0),($203|0),($204|0),($205|0))|0); + $625 = tempRet0; + $626 = (_i64Add(($624|0),($625|0),($140|0),0)|0); + $627 = tempRet0; + $628 = (_i64Add(($626|0),($627|0),($622|0),($623|0))|0); + $629 = tempRet0; + $630 = (_bitshift64Shl(($622|0),($623|0),21)|0); + $631 = tempRet0; + $632 = (_i64Subtract(($200|0),($201|0),($630|0),($631|0))|0); + $633 = tempRet0; + $634 = (_i64Add(($216|0),($217|0),1048576,0)|0); + $635 = tempRet0; + $636 = (_bitshift64Lshr(($634|0),($635|0),21)|0); + $637 = tempRet0; + $638 = (_i64Add(($222|0),($223|0),($224|0),($225|0))|0); + $639 = tempRet0; + $640 = (_i64Add(($638|0),($639|0),($220|0),($221|0))|0); + $641 = tempRet0; + $642 = (_i64Add(($640|0),($641|0),($218|0),($219|0))|0); + $643 = tempRet0; + $644 = (_i64Add(($642|0),($643|0),($152|0),0)|0); + $645 = tempRet0; + $646 = (_i64Add(($644|0),($645|0),($636|0),($637|0))|0); + $647 = tempRet0; + $648 = (_bitshift64Shl(($636|0),($637|0),21)|0); + $649 = tempRet0; + $650 = (_i64Add(($244|0),($245|0),1048576,0)|0); + $651 = tempRet0; + $652 = (_bitshift64Ashr(($650|0),($651|0),21)|0); + $653 = tempRet0; + $654 = (_i64Add(($254|0),($255|0),($256|0),($257|0))|0); + $655 = tempRet0; + $656 = (_i64Add(($654|0),($655|0),($252|0),($253|0))|0); + $657 = tempRet0; + $658 = (_i64Add(($656|0),($657|0),($250|0),($251|0))|0); + $659 = tempRet0; + $660 = (_i64Add(($658|0),($659|0),($248|0),($249|0))|0); + $661 = tempRet0; + $662 = (_i64Add(($660|0),($661|0),($246|0),($247|0))|0); + $663 = tempRet0; + $664 = (_i64Add(($662|0),($663|0),($164|0),0)|0); + $665 = tempRet0; + $666 = (_i64Add(($664|0),($665|0),($652|0),($653|0))|0); + $667 = tempRet0; + $668 = (_bitshift64Shl(($652|0),($653|0),21)|0); + $669 = tempRet0; + $670 = (_i64Subtract(($244|0),($245|0),($668|0),($669|0))|0); + $671 = tempRet0; + $672 = (_i64Add(($284|0),($285|0),1048576,0)|0); + $673 = tempRet0; + $674 = (_bitshift64Ashr(($672|0),($673|0),21)|0); + $675 = tempRet0; + $676 = (_i64Add(($298|0),($299|0),($300|0),($301|0))|0); + $677 = tempRet0; + $678 = (_i64Add(($676|0),($677|0),($296|0),($297|0))|0); + $679 = tempRet0; + $680 = (_i64Add(($678|0),($679|0),($294|0),($295|0))|0); + $681 = tempRet0; + $682 = (_i64Add(($680|0),($681|0),($292|0),($293|0))|0); + $683 = tempRet0; + $684 = (_i64Add(($682|0),($683|0),($290|0),($291|0))|0); + $685 = tempRet0; + $686 = (_i64Add(($684|0),($685|0),($288|0),($289|0))|0); + $687 = tempRet0; + $688 = (_i64Add(($686|0),($687|0),($286|0),($287|0))|0); + $689 = tempRet0; + $690 = (_i64Add(($688|0),($689|0),($176|0),0)|0); + $691 = tempRet0; + $692 = (_i64Add(($690|0),($691|0),($674|0),($675|0))|0); + $693 = tempRet0; + $694 = (_bitshift64Shl(($674|0),($675|0),21)|0); + $695 = tempRet0; + $696 = (_i64Add(($336|0),($337|0),1048576,0)|0); + $697 = tempRet0; + $698 = (_bitshift64Ashr(($696|0),($697|0),21)|0); + $699 = tempRet0; + $700 = (_i64Add(($354|0),($355|0),($356|0),($357|0))|0); + $701 = tempRet0; + $702 = (_i64Add(($700|0),($701|0),($352|0),($353|0))|0); + $703 = tempRet0; + $704 = (_i64Add(($702|0),($703|0),($350|0),($351|0))|0); + $705 = tempRet0; + $706 = (_i64Add(($704|0),($705|0),($348|0),($349|0))|0); + $707 = tempRet0; + $708 = (_i64Add(($706|0),($707|0),($346|0),($347|0))|0); + $709 = tempRet0; + $710 = (_i64Add(($708|0),($709|0),($344|0),($345|0))|0); + $711 = tempRet0; + $712 = (_i64Add(($710|0),($711|0),($340|0),($341|0))|0); + $713 = tempRet0; + $714 = (_i64Add(($712|0),($713|0),($342|0),($343|0))|0); + $715 = tempRet0; + $716 = (_i64Add(($714|0),($715|0),($338|0),($339|0))|0); + $717 = tempRet0; + $718 = (_i64Add(($716|0),($717|0),($186|0),0)|0); + $719 = tempRet0; + $720 = (_i64Add(($718|0),($719|0),($698|0),($699|0))|0); + $721 = tempRet0; + $722 = (_bitshift64Shl(($698|0),($699|0),21)|0); + $723 = tempRet0; + $724 = (_i64Add(($400|0),($401|0),1048576,0)|0); + $725 = tempRet0; + $726 = (_bitshift64Ashr(($724|0),($725|0),21)|0); + $727 = tempRet0; + $728 = (_i64Add(($422|0),($423|0),($424|0),($425|0))|0); + $729 = tempRet0; + $730 = (_i64Add(($728|0),($729|0),($420|0),($421|0))|0); + $731 = tempRet0; + $732 = (_i64Add(($730|0),($731|0),($418|0),($419|0))|0); + $733 = tempRet0; + $734 = (_i64Add(($732|0),($733|0),($416|0),($417|0))|0); + $735 = tempRet0; + $736 = (_i64Add(($734|0),($735|0),($414|0),($415|0))|0); + $737 = tempRet0; + $738 = (_i64Add(($736|0),($737|0),($412|0),($413|0))|0); + $739 = tempRet0; + $740 = (_i64Add(($738|0),($739|0),($408|0),($409|0))|0); + $741 = tempRet0; + $742 = (_i64Add(($740|0),($741|0),($410|0),($411|0))|0); + $743 = tempRet0; + $744 = (_i64Add(($742|0),($743|0),($406|0),($407|0))|0); + $745 = tempRet0; + $746 = (_i64Add(($744|0),($745|0),($402|0),($403|0))|0); + $747 = tempRet0; + $748 = (_i64Add(($746|0),($747|0),($404|0),($405|0))|0); + $749 = tempRet0; + $750 = (_i64Add(($748|0),($749|0),($196|0),($197|0))|0); + $751 = tempRet0; + $752 = (_i64Add(($750|0),($751|0),($726|0),($727|0))|0); + $753 = tempRet0; + $754 = (_bitshift64Shl(($726|0),($727|0),21)|0); + $755 = tempRet0; + $756 = (_i64Add(($466|0),($467|0),1048576,0)|0); + $757 = tempRet0; + $758 = (_bitshift64Ashr(($756|0),($757|0),21)|0); + $759 = tempRet0; + $760 = (_i64Add(($484|0),($485|0),($486|0),($487|0))|0); + $761 = tempRet0; + $762 = (_i64Add(($760|0),($761|0),($482|0),($483|0))|0); + $763 = tempRet0; + $764 = (_i64Add(($762|0),($763|0),($480|0),($481|0))|0); + $765 = tempRet0; + $766 = (_i64Add(($764|0),($765|0),($478|0),($479|0))|0); + $767 = tempRet0; + $768 = (_i64Add(($766|0),($767|0),($474|0),($475|0))|0); + $769 = tempRet0; + $770 = (_i64Add(($768|0),($769|0),($476|0),($477|0))|0); + $771 = tempRet0; + $772 = (_i64Add(($770|0),($771|0),($472|0),($473|0))|0); + $773 = tempRet0; + $774 = (_i64Add(($772|0),($773|0),($470|0),($471|0))|0); + $775 = tempRet0; + $776 = (_i64Add(($774|0),($775|0),($468|0),($469|0))|0); + $777 = tempRet0; + $778 = (_i64Add(($776|0),($777|0),($758|0),($759|0))|0); + $779 = tempRet0; + $780 = (_bitshift64Shl(($758|0),($759|0),21)|0); + $781 = tempRet0; + $782 = (_i64Add(($520|0),($521|0),1048576,0)|0); + $783 = tempRet0; + $784 = (_bitshift64Ashr(($782|0),($783|0),21)|0); + $785 = tempRet0; + $786 = (_i64Add(($534|0),($535|0),($536|0),($537|0))|0); + $787 = tempRet0; + $788 = (_i64Add(($786|0),($787|0),($532|0),($533|0))|0); + $789 = tempRet0; + $790 = (_i64Add(($788|0),($789|0),($528|0),($529|0))|0); + $791 = tempRet0; + $792 = (_i64Add(($790|0),($791|0),($530|0),($531|0))|0); + $793 = tempRet0; + $794 = (_i64Add(($792|0),($793|0),($526|0),($527|0))|0); + $795 = tempRet0; + $796 = (_i64Add(($794|0),($795|0),($524|0),($525|0))|0); + $797 = tempRet0; + $798 = (_i64Add(($796|0),($797|0),($522|0),($523|0))|0); + $799 = tempRet0; + $800 = (_i64Add(($798|0),($799|0),($784|0),($785|0))|0); + $801 = tempRet0; + $802 = (_bitshift64Shl(($784|0),($785|0),21)|0); + $803 = tempRet0; + $804 = (_i64Add(($562|0),($563|0),1048576,0)|0); + $805 = tempRet0; + $806 = (_bitshift64Ashr(($804|0),($805|0),21)|0); + $807 = tempRet0; + $808 = (_i64Add(($570|0),($571|0),($574|0),($575|0))|0); + $809 = tempRet0; + $810 = (_i64Add(($808|0),($809|0),($572|0),($573|0))|0); + $811 = tempRet0; + $812 = (_i64Add(($810|0),($811|0),($568|0),($569|0))|0); + $813 = tempRet0; + $814 = (_i64Add(($812|0),($813|0),($566|0),($567|0))|0); + $815 = tempRet0; + $816 = (_i64Add(($814|0),($815|0),($564|0),($565|0))|0); + $817 = tempRet0; + $818 = (_i64Add(($816|0),($817|0),($806|0),($807|0))|0); + $819 = tempRet0; + $820 = (_bitshift64Shl(($806|0),($807|0),21)|0); + $821 = tempRet0; + $822 = (_i64Add(($592|0),($593|0),1048576,0)|0); + $823 = tempRet0; + $824 = (_bitshift64Ashr(($822|0),($823|0),21)|0); + $825 = tempRet0; + $826 = (_i64Add(($598|0),($599|0),($600|0),($601|0))|0); + $827 = tempRet0; + $828 = (_i64Add(($826|0),($827|0),($596|0),($597|0))|0); + $829 = tempRet0; + $830 = (_i64Add(($828|0),($829|0),($594|0),($595|0))|0); + $831 = tempRet0; + $832 = (_i64Add(($830|0),($831|0),($824|0),($825|0))|0); + $833 = tempRet0; + $834 = (_bitshift64Shl(($824|0),($825|0),21)|0); + $835 = tempRet0; + $836 = (_i64Subtract(($592|0),($593|0),($834|0),($835|0))|0); + $837 = tempRet0; + $838 = (_i64Add(($610|0),($611|0),1048576,0)|0); + $839 = tempRet0; + $840 = (_bitshift64Lshr(($838|0),($839|0),21)|0); + $841 = tempRet0; + $842 = (_i64Add(($616|0),($617|0),($840|0),($841|0))|0); + $843 = tempRet0; + $844 = (_bitshift64Shl(($840|0),($841|0),21)|0); + $845 = tempRet0; + $846 = (_i64Subtract(($610|0),($611|0),($844|0),($845|0))|0); + $847 = tempRet0; + $848 = (_i64Add(($618|0),($619|0),1048576,0)|0); + $849 = tempRet0; + $850 = (_bitshift64Lshr(($848|0),($849|0),21)|0); + $851 = tempRet0; + $852 = (_bitshift64Shl(($850|0),($851|0),21)|0); + $853 = tempRet0; + $854 = (_i64Subtract(($618|0),($619|0),($852|0),($853|0))|0); + $855 = tempRet0; + $856 = (_i64Add(($628|0),($629|0),1048576,0)|0); + $857 = tempRet0; + $858 = (_bitshift64Lshr(($856|0),($857|0),21)|0); + $859 = tempRet0; + $860 = (_bitshift64Shl(($858|0),($859|0),21)|0); + $861 = tempRet0; + $862 = (_i64Subtract(($628|0),($629|0),($860|0),($861|0))|0); + $863 = tempRet0; + $864 = (_i64Add(($646|0),($647|0),1048576,0)|0); + $865 = tempRet0; + $866 = (_bitshift64Ashr(($864|0),($865|0),21)|0); + $867 = tempRet0; + $868 = (_i64Add(($670|0),($671|0),($866|0),($867|0))|0); + $869 = tempRet0; + $870 = (_bitshift64Shl(($866|0),($867|0),21)|0); + $871 = tempRet0; + $872 = (_i64Subtract(($646|0),($647|0),($870|0),($871|0))|0); + $873 = tempRet0; + $874 = (_i64Add(($666|0),($667|0),1048576,0)|0); + $875 = tempRet0; + $876 = (_bitshift64Ashr(($874|0),($875|0),21)|0); + $877 = tempRet0; + $878 = (_bitshift64Shl(($876|0),($877|0),21)|0); + $879 = tempRet0; + $880 = (_i64Subtract(($666|0),($667|0),($878|0),($879|0))|0); + $881 = tempRet0; + $882 = (_i64Add(($692|0),($693|0),1048576,0)|0); + $883 = tempRet0; + $884 = (_bitshift64Ashr(($882|0),($883|0),21)|0); + $885 = tempRet0; + $886 = (_bitshift64Shl(($884|0),($885|0),21)|0); + $887 = tempRet0; + $888 = (_i64Add(($720|0),($721|0),1048576,0)|0); + $889 = tempRet0; + $890 = (_bitshift64Ashr(($888|0),($889|0),21)|0); + $891 = tempRet0; + $892 = (_bitshift64Shl(($890|0),($891|0),21)|0); + $893 = tempRet0; + $894 = (_i64Add(($752|0),($753|0),1048576,0)|0); + $895 = tempRet0; + $896 = (_bitshift64Ashr(($894|0),($895|0),21)|0); + $897 = tempRet0; + $898 = (_bitshift64Shl(($896|0),($897|0),21)|0); + $899 = tempRet0; + $900 = (_i64Add(($778|0),($779|0),1048576,0)|0); + $901 = tempRet0; + $902 = (_bitshift64Ashr(($900|0),($901|0),21)|0); + $903 = tempRet0; + $904 = (_bitshift64Shl(($902|0),($903|0),21)|0); + $905 = tempRet0; + $906 = (_i64Add(($800|0),($801|0),1048576,0)|0); + $907 = tempRet0; + $908 = (_bitshift64Ashr(($906|0),($907|0),21)|0); + $909 = tempRet0; + $910 = (_bitshift64Shl(($908|0),($909|0),21)|0); + $911 = tempRet0; + $912 = (_i64Add(($818|0),($819|0),1048576,0)|0); + $913 = tempRet0; + $914 = (_bitshift64Ashr(($912|0),($913|0),21)|0); + $915 = tempRet0; + $916 = (_i64Add(($914|0),($915|0),($836|0),($837|0))|0); + $917 = tempRet0; + $918 = (_bitshift64Shl(($914|0),($915|0),21)|0); + $919 = tempRet0; + $920 = (_i64Subtract(($818|0),($819|0),($918|0),($919|0))|0); + $921 = tempRet0; + $922 = (_i64Add(($832|0),($833|0),1048576,0)|0); + $923 = tempRet0; + $924 = (_bitshift64Ashr(($922|0),($923|0),21)|0); + $925 = tempRet0; + $926 = (_i64Add(($924|0),($925|0),($846|0),($847|0))|0); + $927 = tempRet0; + $928 = (_bitshift64Shl(($924|0),($925|0),21)|0); + $929 = tempRet0; + $930 = (_i64Subtract(($832|0),($833|0),($928|0),($929|0))|0); + $931 = tempRet0; + $932 = (_i64Add(($842|0),($843|0),1048576,0)|0); + $933 = tempRet0; + $934 = (_bitshift64Lshr(($932|0),($933|0),21)|0); + $935 = tempRet0; + $936 = (_i64Add(($934|0),($935|0),($854|0),($855|0))|0); + $937 = tempRet0; + $938 = (_bitshift64Shl(($934|0),($935|0),21)|0); + $939 = tempRet0; + $940 = (_i64Subtract(($842|0),($843|0),($938|0),($939|0))|0); + $941 = tempRet0; + $942 = (___muldi3(($850|0),($851|0),666643,0)|0); + $943 = tempRet0; + $944 = (___muldi3(($850|0),($851|0),470296,0)|0); + $945 = tempRet0; + $946 = (___muldi3(($850|0),($851|0),654183,0)|0); + $947 = tempRet0; + $948 = (___muldi3(($850|0),($851|0),-997805,-1)|0); + $949 = tempRet0; + $950 = (___muldi3(($850|0),($851|0),136657,0)|0); + $951 = tempRet0; + $952 = (___muldi3(($850|0),($851|0),-683901,-1)|0); + $953 = tempRet0; + $954 = (_i64Add(($952|0),($953|0),($562|0),($563|0))|0); + $955 = tempRet0; + $956 = (_i64Subtract(($954|0),($955|0),($820|0),($821|0))|0); + $957 = tempRet0; + $958 = (_i64Add(($956|0),($957|0),($908|0),($909|0))|0); + $959 = tempRet0; + $960 = (___muldi3(($936|0),($937|0),666643,0)|0); + $961 = tempRet0; + $962 = (___muldi3(($936|0),($937|0),470296,0)|0); + $963 = tempRet0; + $964 = (___muldi3(($936|0),($937|0),654183,0)|0); + $965 = tempRet0; + $966 = (___muldi3(($936|0),($937|0),-997805,-1)|0); + $967 = tempRet0; + $968 = (___muldi3(($936|0),($937|0),136657,0)|0); + $969 = tempRet0; + $970 = (___muldi3(($936|0),($937|0),-683901,-1)|0); + $971 = tempRet0; + $972 = (___muldi3(($940|0),($941|0),666643,0)|0); + $973 = tempRet0; + $974 = (___muldi3(($940|0),($941|0),470296,0)|0); + $975 = tempRet0; + $976 = (___muldi3(($940|0),($941|0),654183,0)|0); + $977 = tempRet0; + $978 = (___muldi3(($940|0),($941|0),-997805,-1)|0); + $979 = tempRet0; + $980 = (___muldi3(($940|0),($941|0),136657,0)|0); + $981 = tempRet0; + $982 = (___muldi3(($940|0),($941|0),-683901,-1)|0); + $983 = tempRet0; + $984 = (_i64Add(($948|0),($949|0),($520|0),($521|0))|0); + $985 = tempRet0; + $986 = (_i64Subtract(($984|0),($985|0),($802|0),($803|0))|0); + $987 = tempRet0; + $988 = (_i64Add(($986|0),($987|0),($902|0),($903|0))|0); + $989 = tempRet0; + $990 = (_i64Add(($988|0),($989|0),($968|0),($969|0))|0); + $991 = tempRet0; + $992 = (_i64Add(($990|0),($991|0),($982|0),($983|0))|0); + $993 = tempRet0; + $994 = (___muldi3(($926|0),($927|0),666643,0)|0); + $995 = tempRet0; + $996 = (___muldi3(($926|0),($927|0),470296,0)|0); + $997 = tempRet0; + $998 = (___muldi3(($926|0),($927|0),654183,0)|0); + $999 = tempRet0; + $1000 = (___muldi3(($926|0),($927|0),-997805,-1)|0); + $1001 = tempRet0; + $1002 = (___muldi3(($926|0),($927|0),136657,0)|0); + $1003 = tempRet0; + $1004 = (___muldi3(($926|0),($927|0),-683901,-1)|0); + $1005 = tempRet0; + $1006 = (___muldi3(($930|0),($931|0),666643,0)|0); + $1007 = tempRet0; + $1008 = (___muldi3(($930|0),($931|0),470296,0)|0); + $1009 = tempRet0; + $1010 = (___muldi3(($930|0),($931|0),654183,0)|0); + $1011 = tempRet0; + $1012 = (___muldi3(($930|0),($931|0),-997805,-1)|0); + $1013 = tempRet0; + $1014 = (___muldi3(($930|0),($931|0),136657,0)|0); + $1015 = tempRet0; + $1016 = (___muldi3(($930|0),($931|0),-683901,-1)|0); + $1017 = tempRet0; + $1018 = (_i64Add(($944|0),($945|0),($466|0),($467|0))|0); + $1019 = tempRet0; + $1020 = (_i64Subtract(($1018|0),($1019|0),($780|0),($781|0))|0); + $1021 = tempRet0; + $1022 = (_i64Add(($1020|0),($1021|0),($964|0),($965|0))|0); + $1023 = tempRet0; + $1024 = (_i64Add(($1022|0),($1023|0),($1002|0),($1003|0))|0); + $1025 = tempRet0; + $1026 = (_i64Add(($1024|0),($1025|0),($978|0),($979|0))|0); + $1027 = tempRet0; + $1028 = (_i64Add(($1026|0),($1027|0),($1016|0),($1017|0))|0); + $1029 = tempRet0; + $1030 = (_i64Add(($1028|0),($1029|0),($896|0),($897|0))|0); + $1031 = tempRet0; + $1032 = (___muldi3(($916|0),($917|0),666643,0)|0); + $1033 = tempRet0; + $1034 = (_i64Add(($1032|0),($1033|0),($284|0),($285|0))|0); + $1035 = tempRet0; + $1036 = (_i64Subtract(($1034|0),($1035|0),($694|0),($695|0))|0); + $1037 = tempRet0; + $1038 = (_i64Add(($1036|0),($1037|0),($876|0),($877|0))|0); + $1039 = tempRet0; + $1040 = (___muldi3(($916|0),($917|0),470296,0)|0); + $1041 = tempRet0; + $1042 = (___muldi3(($916|0),($917|0),654183,0)|0); + $1043 = tempRet0; + $1044 = (_i64Add(($994|0),($995|0),($336|0),($337|0))|0); + $1045 = tempRet0; + $1046 = (_i64Add(($1044|0),($1045|0),($1042|0),($1043|0))|0); + $1047 = tempRet0; + $1048 = (_i64Add(($1046|0),($1047|0),($1008|0),($1009|0))|0); + $1049 = tempRet0; + $1050 = (_i64Subtract(($1048|0),($1049|0),($722|0),($723|0))|0); + $1051 = tempRet0; + $1052 = (_i64Add(($1050|0),($1051|0),($884|0),($885|0))|0); + $1053 = tempRet0; + $1054 = (___muldi3(($916|0),($917|0),-997805,-1)|0); + $1055 = tempRet0; + $1056 = (___muldi3(($916|0),($917|0),136657,0)|0); + $1057 = tempRet0; + $1058 = (_i64Add(($998|0),($999|0),($960|0),($961|0))|0); + $1059 = tempRet0; + $1060 = (_i64Add(($1058|0),($1059|0),($1056|0),($1057|0))|0); + $1061 = tempRet0; + $1062 = (_i64Add(($1060|0),($1061|0),($974|0),($975|0))|0); + $1063 = tempRet0; + $1064 = (_i64Add(($1062|0),($1063|0),($1012|0),($1013|0))|0); + $1065 = tempRet0; + $1066 = (_i64Add(($1064|0),($1065|0),($400|0),($401|0))|0); + $1067 = tempRet0; + $1068 = (_i64Add(($1066|0),($1067|0),($890|0),($891|0))|0); + $1069 = tempRet0; + $1070 = (_i64Subtract(($1068|0),($1069|0),($754|0),($755|0))|0); + $1071 = tempRet0; + $1072 = (___muldi3(($916|0),($917|0),-683901,-1)|0); + $1073 = tempRet0; + $1074 = (_i64Add(($1038|0),($1039|0),1048576,0)|0); + $1075 = tempRet0; + $1076 = (_bitshift64Ashr(($1074|0),($1075|0),21)|0); + $1077 = tempRet0; + $1078 = (_i64Add(($1006|0),($1007|0),($1040|0),($1041|0))|0); + $1079 = tempRet0; + $1080 = (_i64Add(($1078|0),($1079|0),($692|0),($693|0))|0); + $1081 = tempRet0; + $1082 = (_i64Subtract(($1080|0),($1081|0),($886|0),($887|0))|0); + $1083 = tempRet0; + $1084 = (_i64Add(($1082|0),($1083|0),($1076|0),($1077|0))|0); + $1085 = tempRet0; + $1086 = (_bitshift64Shl(($1076|0),($1077|0),21)|0); + $1087 = tempRet0; + $1088 = (_i64Add(($1052|0),($1053|0),1048576,0)|0); + $1089 = tempRet0; + $1090 = (_bitshift64Ashr(($1088|0),($1089|0),21)|0); + $1091 = tempRet0; + $1092 = (_i64Add(($1054|0),($1055|0),($996|0),($997|0))|0); + $1093 = tempRet0; + $1094 = (_i64Add(($1092|0),($1093|0),($972|0),($973|0))|0); + $1095 = tempRet0; + $1096 = (_i64Add(($1094|0),($1095|0),($1010|0),($1011|0))|0); + $1097 = tempRet0; + $1098 = (_i64Add(($1096|0),($1097|0),($720|0),($721|0))|0); + $1099 = tempRet0; + $1100 = (_i64Subtract(($1098|0),($1099|0),($892|0),($893|0))|0); + $1101 = tempRet0; + $1102 = (_i64Add(($1100|0),($1101|0),($1090|0),($1091|0))|0); + $1103 = tempRet0; + $1104 = (_bitshift64Shl(($1090|0),($1091|0),21)|0); + $1105 = tempRet0; + $1106 = (_i64Add(($1070|0),($1071|0),1048576,0)|0); + $1107 = tempRet0; + $1108 = (_bitshift64Ashr(($1106|0),($1107|0),21)|0); + $1109 = tempRet0; + $1110 = (_i64Add(($962|0),($963|0),($942|0),($943|0))|0); + $1111 = tempRet0; + $1112 = (_i64Add(($1110|0),($1111|0),($1000|0),($1001|0))|0); + $1113 = tempRet0; + $1114 = (_i64Add(($1112|0),($1113|0),($1072|0),($1073|0))|0); + $1115 = tempRet0; + $1116 = (_i64Add(($1114|0),($1115|0),($976|0),($977|0))|0); + $1117 = tempRet0; + $1118 = (_i64Add(($1116|0),($1117|0),($1014|0),($1015|0))|0); + $1119 = tempRet0; + $1120 = (_i64Add(($1118|0),($1119|0),($752|0),($753|0))|0); + $1121 = tempRet0; + $1122 = (_i64Subtract(($1120|0),($1121|0),($898|0),($899|0))|0); + $1123 = tempRet0; + $1124 = (_i64Add(($1122|0),($1123|0),($1108|0),($1109|0))|0); + $1125 = tempRet0; + $1126 = (_bitshift64Shl(($1108|0),($1109|0),21)|0); + $1127 = tempRet0; + $1128 = (_i64Add(($1030|0),($1031|0),1048576,0)|0); + $1129 = tempRet0; + $1130 = (_bitshift64Ashr(($1128|0),($1129|0),21)|0); + $1131 = tempRet0; + $1132 = (_i64Add(($778|0),($779|0),($946|0),($947|0))|0); + $1133 = tempRet0; + $1134 = (_i64Subtract(($1132|0),($1133|0),($904|0),($905|0))|0); + $1135 = tempRet0; + $1136 = (_i64Add(($1134|0),($1135|0),($966|0),($967|0))|0); + $1137 = tempRet0; + $1138 = (_i64Add(($1136|0),($1137|0),($1004|0),($1005|0))|0); + $1139 = tempRet0; + $1140 = (_i64Add(($1138|0),($1139|0),($980|0),($981|0))|0); + $1141 = tempRet0; + $1142 = (_i64Add(($1140|0),($1141|0),($1130|0),($1131|0))|0); + $1143 = tempRet0; + $1144 = (_bitshift64Shl(($1130|0),($1131|0),21)|0); + $1145 = tempRet0; + $1146 = (_i64Subtract(($1030|0),($1031|0),($1144|0),($1145|0))|0); + $1147 = tempRet0; + $1148 = (_i64Add(($992|0),($993|0),1048576,0)|0); + $1149 = tempRet0; + $1150 = (_bitshift64Ashr(($1148|0),($1149|0),21)|0); + $1151 = tempRet0; + $1152 = (_i64Add(($800|0),($801|0),($950|0),($951|0))|0); + $1153 = tempRet0; + $1154 = (_i64Subtract(($1152|0),($1153|0),($910|0),($911|0))|0); + $1155 = tempRet0; + $1156 = (_i64Add(($1154|0),($1155|0),($970|0),($971|0))|0); + $1157 = tempRet0; + $1158 = (_i64Add(($1156|0),($1157|0),($1150|0),($1151|0))|0); + $1159 = tempRet0; + $1160 = (_bitshift64Shl(($1150|0),($1151|0),21)|0); + $1161 = tempRet0; + $1162 = (_i64Subtract(($992|0),($993|0),($1160|0),($1161|0))|0); + $1163 = tempRet0; + $1164 = (_i64Add(($958|0),($959|0),1048576,0)|0); + $1165 = tempRet0; + $1166 = (_bitshift64Ashr(($1164|0),($1165|0),21)|0); + $1167 = tempRet0; + $1168 = (_i64Add(($1166|0),($1167|0),($920|0),($921|0))|0); + $1169 = tempRet0; + $1170 = (_bitshift64Shl(($1166|0),($1167|0),21)|0); + $1171 = tempRet0; + $1172 = (_i64Subtract(($958|0),($959|0),($1170|0),($1171|0))|0); + $1173 = tempRet0; + $1174 = (_i64Add(($1084|0),($1085|0),1048576,0)|0); + $1175 = tempRet0; + $1176 = (_bitshift64Ashr(($1174|0),($1175|0),21)|0); + $1177 = tempRet0; + $1178 = (_bitshift64Shl(($1176|0),($1177|0),21)|0); + $1179 = tempRet0; + $1180 = (_i64Add(($1102|0),($1103|0),1048576,0)|0); + $1181 = tempRet0; + $1182 = (_bitshift64Ashr(($1180|0),($1181|0),21)|0); + $1183 = tempRet0; + $1184 = (_bitshift64Shl(($1182|0),($1183|0),21)|0); + $1185 = tempRet0; + $1186 = (_i64Add(($1124|0),($1125|0),1048576,0)|0); + $1187 = tempRet0; + $1188 = (_bitshift64Ashr(($1186|0),($1187|0),21)|0); + $1189 = tempRet0; + $1190 = (_i64Add(($1146|0),($1147|0),($1188|0),($1189|0))|0); + $1191 = tempRet0; + $1192 = (_bitshift64Shl(($1188|0),($1189|0),21)|0); + $1193 = tempRet0; + $1194 = (_i64Subtract(($1124|0),($1125|0),($1192|0),($1193|0))|0); + $1195 = tempRet0; + $1196 = (_i64Add(($1142|0),($1143|0),1048576,0)|0); + $1197 = tempRet0; + $1198 = (_bitshift64Ashr(($1196|0),($1197|0),21)|0); + $1199 = tempRet0; + $1200 = (_i64Add(($1198|0),($1199|0),($1162|0),($1163|0))|0); + $1201 = tempRet0; + $1202 = (_bitshift64Shl(($1198|0),($1199|0),21)|0); + $1203 = tempRet0; + $1204 = (_i64Subtract(($1142|0),($1143|0),($1202|0),($1203|0))|0); + $1205 = tempRet0; + $1206 = (_i64Add(($1158|0),($1159|0),1048576,0)|0); + $1207 = tempRet0; + $1208 = (_bitshift64Ashr(($1206|0),($1207|0),21)|0); + $1209 = tempRet0; + $1210 = (_i64Add(($1208|0),($1209|0),($1172|0),($1173|0))|0); + $1211 = tempRet0; + $1212 = (_bitshift64Shl(($1208|0),($1209|0),21)|0); + $1213 = tempRet0; + $1214 = (_i64Subtract(($1158|0),($1159|0),($1212|0),($1213|0))|0); + $1215 = tempRet0; + $1216 = (___muldi3(($1168|0),($1169|0),666643,0)|0); + $1217 = tempRet0; + $1218 = (_i64Add(($880|0),($881|0),($1216|0),($1217|0))|0); + $1219 = tempRet0; + $1220 = (___muldi3(($1168|0),($1169|0),470296,0)|0); + $1221 = tempRet0; + $1222 = (___muldi3(($1168|0),($1169|0),654183,0)|0); + $1223 = tempRet0; + $1224 = (___muldi3(($1168|0),($1169|0),-997805,-1)|0); + $1225 = tempRet0; + $1226 = (___muldi3(($1168|0),($1169|0),136657,0)|0); + $1227 = tempRet0; + $1228 = (___muldi3(($1168|0),($1169|0),-683901,-1)|0); + $1229 = tempRet0; + $1230 = (_i64Add(($1070|0),($1071|0),($1228|0),($1229|0))|0); + $1231 = tempRet0; + $1232 = (_i64Subtract(($1230|0),($1231|0),($1126|0),($1127|0))|0); + $1233 = tempRet0; + $1234 = (_i64Add(($1232|0),($1233|0),($1182|0),($1183|0))|0); + $1235 = tempRet0; + $1236 = (___muldi3(($1210|0),($1211|0),666643,0)|0); + $1237 = tempRet0; + $1238 = (_i64Add(($868|0),($869|0),($1236|0),($1237|0))|0); + $1239 = tempRet0; + $1240 = (___muldi3(($1210|0),($1211|0),470296,0)|0); + $1241 = tempRet0; + $1242 = (_i64Add(($1218|0),($1219|0),($1240|0),($1241|0))|0); + $1243 = tempRet0; + $1244 = (___muldi3(($1210|0),($1211|0),654183,0)|0); + $1245 = tempRet0; + $1246 = (___muldi3(($1210|0),($1211|0),-997805,-1)|0); + $1247 = tempRet0; + $1248 = (___muldi3(($1210|0),($1211|0),136657,0)|0); + $1249 = tempRet0; + $1250 = (___muldi3(($1210|0),($1211|0),-683901,-1)|0); + $1251 = tempRet0; + $1252 = (___muldi3(($1214|0),($1215|0),666643,0)|0); + $1253 = tempRet0; + $1254 = (_i64Add(($872|0),($873|0),($1252|0),($1253|0))|0); + $1255 = tempRet0; + $1256 = (___muldi3(($1214|0),($1215|0),470296,0)|0); + $1257 = tempRet0; + $1258 = (_i64Add(($1238|0),($1239|0),($1256|0),($1257|0))|0); + $1259 = tempRet0; + $1260 = (___muldi3(($1214|0),($1215|0),654183,0)|0); + $1261 = tempRet0; + $1262 = (_i64Add(($1242|0),($1243|0),($1260|0),($1261|0))|0); + $1263 = tempRet0; + $1264 = (___muldi3(($1214|0),($1215|0),-997805,-1)|0); + $1265 = tempRet0; + $1266 = (___muldi3(($1214|0),($1215|0),136657,0)|0); + $1267 = tempRet0; + $1268 = (___muldi3(($1214|0),($1215|0),-683901,-1)|0); + $1269 = tempRet0; + $1270 = (_i64Add(($1052|0),($1053|0),($1224|0),($1225|0))|0); + $1271 = tempRet0; + $1272 = (_i64Subtract(($1270|0),($1271|0),($1104|0),($1105|0))|0); + $1273 = tempRet0; + $1274 = (_i64Add(($1272|0),($1273|0),($1176|0),($1177|0))|0); + $1275 = tempRet0; + $1276 = (_i64Add(($1274|0),($1275|0),($1248|0),($1249|0))|0); + $1277 = tempRet0; + $1278 = (_i64Add(($1276|0),($1277|0),($1268|0),($1269|0))|0); + $1279 = tempRet0; + $1280 = (___muldi3(($1200|0),($1201|0),666643,0)|0); + $1281 = tempRet0; + $1282 = (___muldi3(($1200|0),($1201|0),470296,0)|0); + $1283 = tempRet0; + $1284 = (___muldi3(($1200|0),($1201|0),654183,0)|0); + $1285 = tempRet0; + $1286 = (___muldi3(($1200|0),($1201|0),-997805,-1)|0); + $1287 = tempRet0; + $1288 = (___muldi3(($1200|0),($1201|0),136657,0)|0); + $1289 = tempRet0; + $1290 = (___muldi3(($1200|0),($1201|0),-683901,-1)|0); + $1291 = tempRet0; + $1292 = (___muldi3(($1204|0),($1205|0),666643,0)|0); + $1293 = tempRet0; + $1294 = (___muldi3(($1204|0),($1205|0),470296,0)|0); + $1295 = tempRet0; + $1296 = (___muldi3(($1204|0),($1205|0),654183,0)|0); + $1297 = tempRet0; + $1298 = (___muldi3(($1204|0),($1205|0),-997805,-1)|0); + $1299 = tempRet0; + $1300 = (___muldi3(($1204|0),($1205|0),136657,0)|0); + $1301 = tempRet0; + $1302 = (___muldi3(($1204|0),($1205|0),-683901,-1)|0); + $1303 = tempRet0; + $1304 = (_i64Add(($1038|0),($1039|0),($1220|0),($1221|0))|0); + $1305 = tempRet0; + $1306 = (_i64Subtract(($1304|0),($1305|0),($1086|0),($1087|0))|0); + $1307 = tempRet0; + $1308 = (_i64Add(($1306|0),($1307|0),($1244|0),($1245|0))|0); + $1309 = tempRet0; + $1310 = (_i64Add(($1308|0),($1309|0),($1264|0),($1265|0))|0); + $1311 = tempRet0; + $1312 = (_i64Add(($1310|0),($1311|0),($1288|0),($1289|0))|0); + $1313 = tempRet0; + $1314 = (_i64Add(($1312|0),($1313|0),($1302|0),($1303|0))|0); + $1315 = tempRet0; + $1316 = (___muldi3(($1190|0),($1191|0),666643,0)|0); + $1317 = tempRet0; + $1318 = (_i64Add(($1316|0),($1317|0),($632|0),($633|0))|0); + $1319 = tempRet0; + $1320 = (___muldi3(($1190|0),($1191|0),470296,0)|0); + $1321 = tempRet0; + $1322 = (___muldi3(($1190|0),($1191|0),654183,0)|0); + $1323 = tempRet0; + $1324 = (_i64Add(($858|0),($859|0),($216|0),($217|0))|0); + $1325 = tempRet0; + $1326 = (_i64Subtract(($1324|0),($1325|0),($648|0),($649|0))|0); + $1327 = tempRet0; + $1328 = (_i64Add(($1326|0),($1327|0),($1322|0),($1323|0))|0); + $1329 = tempRet0; + $1330 = (_i64Add(($1328|0),($1329|0),($1280|0),($1281|0))|0); + $1331 = tempRet0; + $1332 = (_i64Add(($1330|0),($1331|0),($1294|0),($1295|0))|0); + $1333 = tempRet0; + $1334 = (___muldi3(($1190|0),($1191|0),-997805,-1)|0); + $1335 = tempRet0; + $1336 = (___muldi3(($1190|0),($1191|0),136657,0)|0); + $1337 = tempRet0; + $1338 = (_i64Add(($1258|0),($1259|0),($1336|0),($1337|0))|0); + $1339 = tempRet0; + $1340 = (_i64Add(($1338|0),($1339|0),($1284|0),($1285|0))|0); + $1341 = tempRet0; + $1342 = (_i64Add(($1340|0),($1341|0),($1298|0),($1299|0))|0); + $1343 = tempRet0; + $1344 = (___muldi3(($1190|0),($1191|0),-683901,-1)|0); + $1345 = tempRet0; + $1346 = (_i64Add(($1318|0),($1319|0),1048576,0)|0); + $1347 = tempRet0; + $1348 = (_bitshift64Ashr(($1346|0),($1347|0),21)|0); + $1349 = tempRet0; + $1350 = (_i64Add(($862|0),($863|0),($1320|0),($1321|0))|0); + $1351 = tempRet0; + $1352 = (_i64Add(($1350|0),($1351|0),($1292|0),($1293|0))|0); + $1353 = tempRet0; + $1354 = (_i64Add(($1352|0),($1353|0),($1348|0),($1349|0))|0); + $1355 = tempRet0; + $1356 = (_bitshift64Shl(($1348|0),($1349|0),21)|0); + $1357 = tempRet0; + $1358 = (_i64Subtract(($1318|0),($1319|0),($1356|0),($1357|0))|0); + $1359 = tempRet0; + $1360 = (_i64Add(($1332|0),($1333|0),1048576,0)|0); + $1361 = tempRet0; + $1362 = (_bitshift64Ashr(($1360|0),($1361|0),21)|0); + $1363 = tempRet0; + $1364 = (_i64Add(($1254|0),($1255|0),($1334|0),($1335|0))|0); + $1365 = tempRet0; + $1366 = (_i64Add(($1364|0),($1365|0),($1282|0),($1283|0))|0); + $1367 = tempRet0; + $1368 = (_i64Add(($1366|0),($1367|0),($1296|0),($1297|0))|0); + $1369 = tempRet0; + $1370 = (_i64Add(($1368|0),($1369|0),($1362|0),($1363|0))|0); + $1371 = tempRet0; + $1372 = (_bitshift64Shl(($1362|0),($1363|0),21)|0); + $1373 = tempRet0; + $1374 = (_i64Add(($1342|0),($1343|0),1048576,0)|0); + $1375 = tempRet0; + $1376 = (_bitshift64Ashr(($1374|0),($1375|0),21)|0); + $1377 = tempRet0; + $1378 = (_i64Add(($1262|0),($1263|0),($1344|0),($1345|0))|0); + $1379 = tempRet0; + $1380 = (_i64Add(($1378|0),($1379|0),($1286|0),($1287|0))|0); + $1381 = tempRet0; + $1382 = (_i64Add(($1380|0),($1381|0),($1300|0),($1301|0))|0); + $1383 = tempRet0; + $1384 = (_i64Add(($1382|0),($1383|0),($1376|0),($1377|0))|0); + $1385 = tempRet0; + $1386 = (_bitshift64Shl(($1376|0),($1377|0),21)|0); + $1387 = tempRet0; + $1388 = (_i64Add(($1314|0),($1315|0),1048576,0)|0); + $1389 = tempRet0; + $1390 = (_bitshift64Ashr(($1388|0),($1389|0),21)|0); + $1391 = tempRet0; + $1392 = (_i64Add(($1084|0),($1085|0),($1222|0),($1223|0))|0); + $1393 = tempRet0; + $1394 = (_i64Add(($1392|0),($1393|0),($1246|0),($1247|0))|0); + $1395 = tempRet0; + $1396 = (_i64Subtract(($1394|0),($1395|0),($1178|0),($1179|0))|0); + $1397 = tempRet0; + $1398 = (_i64Add(($1396|0),($1397|0),($1266|0),($1267|0))|0); + $1399 = tempRet0; + $1400 = (_i64Add(($1398|0),($1399|0),($1290|0),($1291|0))|0); + $1401 = tempRet0; + $1402 = (_i64Add(($1400|0),($1401|0),($1390|0),($1391|0))|0); + $1403 = tempRet0; + $1404 = (_bitshift64Shl(($1390|0),($1391|0),21)|0); + $1405 = tempRet0; + $1406 = (_i64Subtract(($1314|0),($1315|0),($1404|0),($1405|0))|0); + $1407 = tempRet0; + $1408 = (_i64Add(($1278|0),($1279|0),1048576,0)|0); + $1409 = tempRet0; + $1410 = (_bitshift64Ashr(($1408|0),($1409|0),21)|0); + $1411 = tempRet0; + $1412 = (_i64Add(($1102|0),($1103|0),($1226|0),($1227|0))|0); + $1413 = tempRet0; + $1414 = (_i64Add(($1412|0),($1413|0),($1250|0),($1251|0))|0); + $1415 = tempRet0; + $1416 = (_i64Subtract(($1414|0),($1415|0),($1184|0),($1185|0))|0); + $1417 = tempRet0; + $1418 = (_i64Add(($1416|0),($1417|0),($1410|0),($1411|0))|0); + $1419 = tempRet0; + $1420 = (_bitshift64Shl(($1410|0),($1411|0),21)|0); + $1421 = tempRet0; + $1422 = (_i64Subtract(($1278|0),($1279|0),($1420|0),($1421|0))|0); + $1423 = tempRet0; + $1424 = (_i64Add(($1234|0),($1235|0),1048576,0)|0); + $1425 = tempRet0; + $1426 = (_bitshift64Ashr(($1424|0),($1425|0),21)|0); + $1427 = tempRet0; + $1428 = (_i64Add(($1194|0),($1195|0),($1426|0),($1427|0))|0); + $1429 = tempRet0; + $1430 = (_bitshift64Shl(($1426|0),($1427|0),21)|0); + $1431 = tempRet0; + $1432 = (_i64Subtract(($1234|0),($1235|0),($1430|0),($1431|0))|0); + $1433 = tempRet0; + $1434 = (_i64Add(($1354|0),($1355|0),1048576,0)|0); + $1435 = tempRet0; + $1436 = (_bitshift64Ashr(($1434|0),($1435|0),21)|0); + $1437 = tempRet0; + $1438 = (_bitshift64Shl(($1436|0),($1437|0),21)|0); + $1439 = tempRet0; + $1440 = (_i64Add(($1370|0),($1371|0),1048576,0)|0); + $1441 = tempRet0; + $1442 = (_bitshift64Ashr(($1440|0),($1441|0),21)|0); + $1443 = tempRet0; + $1444 = (_bitshift64Shl(($1442|0),($1443|0),21)|0); + $1445 = tempRet0; + $1446 = (_i64Add(($1384|0),($1385|0),1048576,0)|0); + $1447 = tempRet0; + $1448 = (_bitshift64Ashr(($1446|0),($1447|0),21)|0); + $1449 = tempRet0; + $1450 = (_i64Add(($1406|0),($1407|0),($1448|0),($1449|0))|0); + $1451 = tempRet0; + $1452 = (_bitshift64Shl(($1448|0),($1449|0),21)|0); + $1453 = tempRet0; + $1454 = (_i64Add(($1402|0),($1403|0),1048576,0)|0); + $1455 = tempRet0; + $1456 = (_bitshift64Ashr(($1454|0),($1455|0),21)|0); + $1457 = tempRet0; + $1458 = (_i64Add(($1422|0),($1423|0),($1456|0),($1457|0))|0); + $1459 = tempRet0; + $1460 = (_bitshift64Shl(($1456|0),($1457|0),21)|0); + $1461 = tempRet0; + $1462 = (_i64Subtract(($1402|0),($1403|0),($1460|0),($1461|0))|0); + $1463 = tempRet0; + $1464 = (_i64Add(($1418|0),($1419|0),1048576,0)|0); + $1465 = tempRet0; + $1466 = (_bitshift64Ashr(($1464|0),($1465|0),21)|0); + $1467 = tempRet0; + $1468 = (_i64Add(($1432|0),($1433|0),($1466|0),($1467|0))|0); + $1469 = tempRet0; + $1470 = (_bitshift64Shl(($1466|0),($1467|0),21)|0); + $1471 = tempRet0; + $1472 = (_i64Subtract(($1418|0),($1419|0),($1470|0),($1471|0))|0); + $1473 = tempRet0; + $1474 = (_i64Add(($1428|0),($1429|0),1048576,0)|0); + $1475 = tempRet0; + $1476 = (_bitshift64Ashr(($1474|0),($1475|0),21)|0); + $1477 = tempRet0; + $1478 = (_bitshift64Shl(($1476|0),($1477|0),21)|0); + $1479 = tempRet0; + $1480 = (_i64Subtract(($1428|0),($1429|0),($1478|0),($1479|0))|0); + $1481 = tempRet0; + $1482 = (___muldi3(($1476|0),($1477|0),666643,0)|0); + $1483 = tempRet0; + $1484 = (_i64Add(($1358|0),($1359|0),($1482|0),($1483|0))|0); + $1485 = tempRet0; + $1486 = (___muldi3(($1476|0),($1477|0),470296,0)|0); + $1487 = tempRet0; + $1488 = (___muldi3(($1476|0),($1477|0),654183,0)|0); + $1489 = tempRet0; + $1490 = (___muldi3(($1476|0),($1477|0),-997805,-1)|0); + $1491 = tempRet0; + $1492 = (___muldi3(($1476|0),($1477|0),136657,0)|0); + $1493 = tempRet0; + $1494 = (___muldi3(($1476|0),($1477|0),-683901,-1)|0); + $1495 = tempRet0; + $1496 = (_bitshift64Ashr(($1484|0),($1485|0),21)|0); + $1497 = tempRet0; + $1498 = (_i64Add(($1486|0),($1487|0),($1354|0),($1355|0))|0); + $1499 = tempRet0; + $1500 = (_i64Subtract(($1498|0),($1499|0),($1438|0),($1439|0))|0); + $1501 = tempRet0; + $1502 = (_i64Add(($1500|0),($1501|0),($1496|0),($1497|0))|0); + $1503 = tempRet0; + $1504 = (_bitshift64Shl(($1496|0),($1497|0),21)|0); + $1505 = tempRet0; + $1506 = (_i64Subtract(($1484|0),($1485|0),($1504|0),($1505|0))|0); + $1507 = tempRet0; + $1508 = (_bitshift64Ashr(($1502|0),($1503|0),21)|0); + $1509 = tempRet0; + $1510 = (_i64Add(($1488|0),($1489|0),($1332|0),($1333|0))|0); + $1511 = tempRet0; + $1512 = (_i64Subtract(($1510|0),($1511|0),($1372|0),($1373|0))|0); + $1513 = tempRet0; + $1514 = (_i64Add(($1512|0),($1513|0),($1436|0),($1437|0))|0); + $1515 = tempRet0; + $1516 = (_i64Add(($1514|0),($1515|0),($1508|0),($1509|0))|0); + $1517 = tempRet0; + $1518 = (_bitshift64Shl(($1508|0),($1509|0),21)|0); + $1519 = tempRet0; + $1520 = (_i64Subtract(($1502|0),($1503|0),($1518|0),($1519|0))|0); + $1521 = tempRet0; + $1522 = (_bitshift64Ashr(($1516|0),($1517|0),21)|0); + $1523 = tempRet0; + $1524 = (_i64Add(($1370|0),($1371|0),($1490|0),($1491|0))|0); + $1525 = tempRet0; + $1526 = (_i64Subtract(($1524|0),($1525|0),($1444|0),($1445|0))|0); + $1527 = tempRet0; + $1528 = (_i64Add(($1526|0),($1527|0),($1522|0),($1523|0))|0); + $1529 = tempRet0; + $1530 = (_bitshift64Shl(($1522|0),($1523|0),21)|0); + $1531 = tempRet0; + $1532 = (_i64Subtract(($1516|0),($1517|0),($1530|0),($1531|0))|0); + $1533 = tempRet0; + $1534 = (_bitshift64Ashr(($1528|0),($1529|0),21)|0); + $1535 = tempRet0; + $1536 = (_i64Add(($1492|0),($1493|0),($1342|0),($1343|0))|0); + $1537 = tempRet0; + $1538 = (_i64Subtract(($1536|0),($1537|0),($1386|0),($1387|0))|0); + $1539 = tempRet0; + $1540 = (_i64Add(($1538|0),($1539|0),($1442|0),($1443|0))|0); + $1541 = tempRet0; + $1542 = (_i64Add(($1540|0),($1541|0),($1534|0),($1535|0))|0); + $1543 = tempRet0; + $1544 = (_bitshift64Shl(($1534|0),($1535|0),21)|0); + $1545 = tempRet0; + $1546 = (_i64Subtract(($1528|0),($1529|0),($1544|0),($1545|0))|0); + $1547 = tempRet0; + $1548 = (_bitshift64Ashr(($1542|0),($1543|0),21)|0); + $1549 = tempRet0; + $1550 = (_i64Add(($1384|0),($1385|0),($1494|0),($1495|0))|0); + $1551 = tempRet0; + $1552 = (_i64Subtract(($1550|0),($1551|0),($1452|0),($1453|0))|0); + $1553 = tempRet0; + $1554 = (_i64Add(($1552|0),($1553|0),($1548|0),($1549|0))|0); + $1555 = tempRet0; + $1556 = (_bitshift64Shl(($1548|0),($1549|0),21)|0); + $1557 = tempRet0; + $1558 = (_i64Subtract(($1542|0),($1543|0),($1556|0),($1557|0))|0); + $1559 = tempRet0; + $1560 = (_bitshift64Ashr(($1554|0),($1555|0),21)|0); + $1561 = tempRet0; + $1562 = (_i64Add(($1450|0),($1451|0),($1560|0),($1561|0))|0); + $1563 = tempRet0; + $1564 = (_bitshift64Shl(($1560|0),($1561|0),21)|0); + $1565 = tempRet0; + $1566 = (_i64Subtract(($1554|0),($1555|0),($1564|0),($1565|0))|0); + $1567 = tempRet0; + $1568 = (_bitshift64Ashr(($1562|0),($1563|0),21)|0); + $1569 = tempRet0; + $1570 = (_i64Add(($1568|0),($1569|0),($1462|0),($1463|0))|0); + $1571 = tempRet0; + $1572 = (_bitshift64Shl(($1568|0),($1569|0),21)|0); + $1573 = tempRet0; + $1574 = (_i64Subtract(($1562|0),($1563|0),($1572|0),($1573|0))|0); + $1575 = tempRet0; + $1576 = (_bitshift64Ashr(($1570|0),($1571|0),21)|0); + $1577 = tempRet0; + $1578 = (_i64Add(($1458|0),($1459|0),($1576|0),($1577|0))|0); + $1579 = tempRet0; + $1580 = (_bitshift64Shl(($1576|0),($1577|0),21)|0); + $1581 = tempRet0; + $1582 = (_i64Subtract(($1570|0),($1571|0),($1580|0),($1581|0))|0); + $1583 = tempRet0; + $1584 = (_bitshift64Ashr(($1578|0),($1579|0),21)|0); + $1585 = tempRet0; + $1586 = (_i64Add(($1584|0),($1585|0),($1472|0),($1473|0))|0); + $1587 = tempRet0; + $1588 = (_bitshift64Shl(($1584|0),($1585|0),21)|0); + $1589 = tempRet0; + $1590 = (_i64Subtract(($1578|0),($1579|0),($1588|0),($1589|0))|0); + $1591 = tempRet0; + $1592 = (_bitshift64Ashr(($1586|0),($1587|0),21)|0); + $1593 = tempRet0; + $1594 = (_i64Add(($1468|0),($1469|0),($1592|0),($1593|0))|0); + $1595 = tempRet0; + $1596 = (_bitshift64Shl(($1592|0),($1593|0),21)|0); + $1597 = tempRet0; + $1598 = (_i64Subtract(($1586|0),($1587|0),($1596|0),($1597|0))|0); + $1599 = tempRet0; + $1600 = (_bitshift64Ashr(($1594|0),($1595|0),21)|0); + $1601 = tempRet0; + $1602 = (_i64Add(($1600|0),($1601|0),($1480|0),($1481|0))|0); + $1603 = tempRet0; + $1604 = (_bitshift64Shl(($1600|0),($1601|0),21)|0); + $1605 = tempRet0; + $1606 = (_i64Subtract(($1594|0),($1595|0),($1604|0),($1605|0))|0); + $1607 = tempRet0; + $1608 = (_bitshift64Ashr(($1602|0),($1603|0),21)|0); + $1609 = tempRet0; + $1610 = (_bitshift64Shl(($1608|0),($1609|0),21)|0); + $1611 = tempRet0; + $1612 = (_i64Subtract(($1602|0),($1603|0),($1610|0),($1611|0))|0); + $1613 = tempRet0; + $1614 = (___muldi3(($1608|0),($1609|0),666643,0)|0); + $1615 = tempRet0; + $1616 = (_i64Add(($1614|0),($1615|0),($1506|0),($1507|0))|0); + $1617 = tempRet0; + $1618 = (___muldi3(($1608|0),($1609|0),470296,0)|0); + $1619 = tempRet0; + $1620 = (_i64Add(($1520|0),($1521|0),($1618|0),($1619|0))|0); + $1621 = tempRet0; + $1622 = (___muldi3(($1608|0),($1609|0),654183,0)|0); + $1623 = tempRet0; + $1624 = (_i64Add(($1532|0),($1533|0),($1622|0),($1623|0))|0); + $1625 = tempRet0; + $1626 = (___muldi3(($1608|0),($1609|0),-997805,-1)|0); + $1627 = tempRet0; + $1628 = (_i64Add(($1546|0),($1547|0),($1626|0),($1627|0))|0); + $1629 = tempRet0; + $1630 = (___muldi3(($1608|0),($1609|0),136657,0)|0); + $1631 = tempRet0; + $1632 = (_i64Add(($1558|0),($1559|0),($1630|0),($1631|0))|0); + $1633 = tempRet0; + $1634 = (___muldi3(($1608|0),($1609|0),-683901,-1)|0); + $1635 = tempRet0; + $1636 = (_i64Add(($1566|0),($1567|0),($1634|0),($1635|0))|0); + $1637 = tempRet0; + $1638 = (_bitshift64Ashr(($1616|0),($1617|0),21)|0); + $1639 = tempRet0; + $1640 = (_i64Add(($1620|0),($1621|0),($1638|0),($1639|0))|0); + $1641 = tempRet0; + $1642 = (_bitshift64Shl(($1638|0),($1639|0),21)|0); + $1643 = tempRet0; + $1644 = (_i64Subtract(($1616|0),($1617|0),($1642|0),($1643|0))|0); + $1645 = tempRet0; + $1646 = (_bitshift64Ashr(($1640|0),($1641|0),21)|0); + $1647 = tempRet0; + $1648 = (_i64Add(($1624|0),($1625|0),($1646|0),($1647|0))|0); + $1649 = tempRet0; + $1650 = (_bitshift64Shl(($1646|0),($1647|0),21)|0); + $1651 = tempRet0; + $1652 = (_i64Subtract(($1640|0),($1641|0),($1650|0),($1651|0))|0); + $1653 = tempRet0; + $1654 = (_bitshift64Ashr(($1648|0),($1649|0),21)|0); + $1655 = tempRet0; + $1656 = (_i64Add(($1628|0),($1629|0),($1654|0),($1655|0))|0); + $1657 = tempRet0; + $1658 = (_bitshift64Shl(($1654|0),($1655|0),21)|0); + $1659 = tempRet0; + $1660 = (_i64Subtract(($1648|0),($1649|0),($1658|0),($1659|0))|0); + $1661 = tempRet0; + $1662 = (_bitshift64Ashr(($1656|0),($1657|0),21)|0); + $1663 = tempRet0; + $1664 = (_i64Add(($1632|0),($1633|0),($1662|0),($1663|0))|0); + $1665 = tempRet0; + $1666 = (_bitshift64Shl(($1662|0),($1663|0),21)|0); + $1667 = tempRet0; + $1668 = (_i64Subtract(($1656|0),($1657|0),($1666|0),($1667|0))|0); + $1669 = tempRet0; + $1670 = (_bitshift64Ashr(($1664|0),($1665|0),21)|0); + $1671 = tempRet0; + $1672 = (_i64Add(($1636|0),($1637|0),($1670|0),($1671|0))|0); + $1673 = tempRet0; + $1674 = (_bitshift64Shl(($1670|0),($1671|0),21)|0); + $1675 = tempRet0; + $1676 = (_i64Subtract(($1664|0),($1665|0),($1674|0),($1675|0))|0); + $1677 = tempRet0; + $1678 = (_bitshift64Ashr(($1672|0),($1673|0),21)|0); + $1679 = tempRet0; + $1680 = (_i64Add(($1678|0),($1679|0),($1574|0),($1575|0))|0); + $1681 = tempRet0; + $1682 = (_bitshift64Shl(($1678|0),($1679|0),21)|0); + $1683 = tempRet0; + $1684 = (_i64Subtract(($1672|0),($1673|0),($1682|0),($1683|0))|0); + $1685 = tempRet0; + $1686 = (_bitshift64Ashr(($1680|0),($1681|0),21)|0); + $1687 = tempRet0; + $1688 = (_i64Add(($1686|0),($1687|0),($1582|0),($1583|0))|0); + $1689 = tempRet0; + $1690 = (_bitshift64Shl(($1686|0),($1687|0),21)|0); + $1691 = tempRet0; + $1692 = (_i64Subtract(($1680|0),($1681|0),($1690|0),($1691|0))|0); + $1693 = tempRet0; + $1694 = (_bitshift64Ashr(($1688|0),($1689|0),21)|0); + $1695 = tempRet0; + $1696 = (_i64Add(($1694|0),($1695|0),($1590|0),($1591|0))|0); + $1697 = tempRet0; + $1698 = (_bitshift64Shl(($1694|0),($1695|0),21)|0); + $1699 = tempRet0; + $1700 = (_i64Subtract(($1688|0),($1689|0),($1698|0),($1699|0))|0); + $1701 = tempRet0; + $1702 = (_bitshift64Ashr(($1696|0),($1697|0),21)|0); + $1703 = tempRet0; + $1704 = (_i64Add(($1702|0),($1703|0),($1598|0),($1599|0))|0); + $1705 = tempRet0; + $1706 = (_bitshift64Shl(($1702|0),($1703|0),21)|0); + $1707 = tempRet0; + $1708 = (_i64Subtract(($1696|0),($1697|0),($1706|0),($1707|0))|0); + $1709 = tempRet0; + $1710 = (_bitshift64Ashr(($1704|0),($1705|0),21)|0); + $1711 = tempRet0; + $1712 = (_i64Add(($1710|0),($1711|0),($1606|0),($1607|0))|0); + $1713 = tempRet0; + $1714 = (_bitshift64Shl(($1710|0),($1711|0),21)|0); + $1715 = tempRet0; + $1716 = (_i64Subtract(($1704|0),($1705|0),($1714|0),($1715|0))|0); + $1717 = tempRet0; + $1718 = (_bitshift64Ashr(($1712|0),($1713|0),21)|0); + $1719 = tempRet0; + $1720 = (_i64Add(($1718|0),($1719|0),($1612|0),($1613|0))|0); + $1721 = tempRet0; + $1722 = (_bitshift64Shl(($1718|0),($1719|0),21)|0); + $1723 = tempRet0; + $1724 = (_i64Subtract(($1712|0),($1713|0),($1722|0),($1723|0))|0); + $1725 = tempRet0; + $1726 = $1644&255; + HEAP8[$s>>0] = $1726; + $1727 = (_bitshift64Lshr(($1644|0),($1645|0),8)|0); + $1728 = tempRet0; + $1729 = $1727&255; + $1730 = (($s) + 1|0); + HEAP8[$1730>>0] = $1729; + $1731 = (_bitshift64Lshr(($1644|0),($1645|0),16)|0); + $1732 = tempRet0; + $1733 = (_bitshift64Shl(($1652|0),($1653|0),5)|0); + $1734 = tempRet0; + $1735 = $1733 | $1731; + $1734 | $1732; + $1736 = $1735&255; + $1737 = (($s) + 2|0); + HEAP8[$1737>>0] = $1736; + $1738 = (_bitshift64Lshr(($1652|0),($1653|0),3)|0); + $1739 = tempRet0; + $1740 = $1738&255; + $1741 = (($s) + 3|0); + HEAP8[$1741>>0] = $1740; + $1742 = (_bitshift64Lshr(($1652|0),($1653|0),11)|0); + $1743 = tempRet0; + $1744 = $1742&255; + $1745 = (($s) + 4|0); + HEAP8[$1745>>0] = $1744; + $1746 = (_bitshift64Lshr(($1652|0),($1653|0),19)|0); + $1747 = tempRet0; + $1748 = (_bitshift64Shl(($1660|0),($1661|0),2)|0); + $1749 = tempRet0; + $1750 = $1748 | $1746; + $1749 | $1747; + $1751 = $1750&255; + $1752 = (($s) + 5|0); + HEAP8[$1752>>0] = $1751; + $1753 = (_bitshift64Lshr(($1660|0),($1661|0),6)|0); + $1754 = tempRet0; + $1755 = $1753&255; + $1756 = (($s) + 6|0); + HEAP8[$1756>>0] = $1755; + $1757 = (_bitshift64Lshr(($1660|0),($1661|0),14)|0); + $1758 = tempRet0; + $1759 = (_bitshift64Shl(($1668|0),($1669|0),7)|0); + $1760 = tempRet0; + $1761 = $1759 | $1757; + $1760 | $1758; + $1762 = $1761&255; + $1763 = (($s) + 7|0); + HEAP8[$1763>>0] = $1762; + $1764 = (_bitshift64Lshr(($1668|0),($1669|0),1)|0); + $1765 = tempRet0; + $1766 = $1764&255; + $1767 = (($s) + 8|0); + HEAP8[$1767>>0] = $1766; + $1768 = (_bitshift64Lshr(($1668|0),($1669|0),9)|0); + $1769 = tempRet0; + $1770 = $1768&255; + $1771 = (($s) + 9|0); + HEAP8[$1771>>0] = $1770; + $1772 = (_bitshift64Lshr(($1668|0),($1669|0),17)|0); + $1773 = tempRet0; + $1774 = (_bitshift64Shl(($1676|0),($1677|0),4)|0); + $1775 = tempRet0; + $1776 = $1774 | $1772; + $1775 | $1773; + $1777 = $1776&255; + $1778 = (($s) + 10|0); + HEAP8[$1778>>0] = $1777; + $1779 = (_bitshift64Lshr(($1676|0),($1677|0),4)|0); + $1780 = tempRet0; + $1781 = $1779&255; + $1782 = (($s) + 11|0); + HEAP8[$1782>>0] = $1781; + $1783 = (_bitshift64Lshr(($1676|0),($1677|0),12)|0); + $1784 = tempRet0; + $1785 = $1783&255; + $1786 = (($s) + 12|0); + HEAP8[$1786>>0] = $1785; + $1787 = (_bitshift64Lshr(($1676|0),($1677|0),20)|0); + $1788 = tempRet0; + $1789 = (_bitshift64Shl(($1684|0),($1685|0),1)|0); + $1790 = tempRet0; + $1791 = $1789 | $1787; + $1790 | $1788; + $1792 = $1791&255; + $1793 = (($s) + 13|0); + HEAP8[$1793>>0] = $1792; + $1794 = (_bitshift64Lshr(($1684|0),($1685|0),7)|0); + $1795 = tempRet0; + $1796 = $1794&255; + $1797 = (($s) + 14|0); + HEAP8[$1797>>0] = $1796; + $1798 = (_bitshift64Lshr(($1684|0),($1685|0),15)|0); + $1799 = tempRet0; + $1800 = (_bitshift64Shl(($1692|0),($1693|0),6)|0); + $1801 = tempRet0; + $1802 = $1800 | $1798; + $1801 | $1799; + $1803 = $1802&255; + $1804 = (($s) + 15|0); + HEAP8[$1804>>0] = $1803; + $1805 = (_bitshift64Lshr(($1692|0),($1693|0),2)|0); + $1806 = tempRet0; + $1807 = $1805&255; + $1808 = (($s) + 16|0); + HEAP8[$1808>>0] = $1807; + $1809 = (_bitshift64Lshr(($1692|0),($1693|0),10)|0); + $1810 = tempRet0; + $1811 = $1809&255; + $1812 = (($s) + 17|0); + HEAP8[$1812>>0] = $1811; + $1813 = (_bitshift64Lshr(($1692|0),($1693|0),18)|0); + $1814 = tempRet0; + $1815 = (_bitshift64Shl(($1700|0),($1701|0),3)|0); + $1816 = tempRet0; + $1817 = $1815 | $1813; + $1816 | $1814; + $1818 = $1817&255; + $1819 = (($s) + 18|0); + HEAP8[$1819>>0] = $1818; + $1820 = (_bitshift64Lshr(($1700|0),($1701|0),5)|0); + $1821 = tempRet0; + $1822 = $1820&255; + $1823 = (($s) + 19|0); + HEAP8[$1823>>0] = $1822; + $1824 = (_bitshift64Lshr(($1700|0),($1701|0),13)|0); + $1825 = tempRet0; + $1826 = $1824&255; + $1827 = (($s) + 20|0); + HEAP8[$1827>>0] = $1826; + $1828 = $1708&255; + $1829 = (($s) + 21|0); + HEAP8[$1829>>0] = $1828; + $1830 = (_bitshift64Lshr(($1708|0),($1709|0),8)|0); + $1831 = tempRet0; + $1832 = $1830&255; + $1833 = (($s) + 22|0); + HEAP8[$1833>>0] = $1832; + $1834 = (_bitshift64Lshr(($1708|0),($1709|0),16)|0); + $1835 = tempRet0; + $1836 = (_bitshift64Shl(($1716|0),($1717|0),5)|0); + $1837 = tempRet0; + $1838 = $1836 | $1834; + $1837 | $1835; + $1839 = $1838&255; + $1840 = (($s) + 23|0); + HEAP8[$1840>>0] = $1839; + $1841 = (_bitshift64Lshr(($1716|0),($1717|0),3)|0); + $1842 = tempRet0; + $1843 = $1841&255; + $1844 = (($s) + 24|0); + HEAP8[$1844>>0] = $1843; + $1845 = (_bitshift64Lshr(($1716|0),($1717|0),11)|0); + $1846 = tempRet0; + $1847 = $1845&255; + $1848 = (($s) + 25|0); + HEAP8[$1848>>0] = $1847; + $1849 = (_bitshift64Lshr(($1716|0),($1717|0),19)|0); + $1850 = tempRet0; + $1851 = (_bitshift64Shl(($1724|0),($1725|0),2)|0); + $1852 = tempRet0; + $1853 = $1851 | $1849; + $1852 | $1850; + $1854 = $1853&255; + $1855 = (($s) + 26|0); + HEAP8[$1855>>0] = $1854; + $1856 = (_bitshift64Lshr(($1724|0),($1725|0),6)|0); + $1857 = tempRet0; + $1858 = $1856&255; + $1859 = (($s) + 27|0); + HEAP8[$1859>>0] = $1858; + $1860 = (_bitshift64Lshr(($1724|0),($1725|0),14)|0); + $1861 = tempRet0; + $1862 = (_bitshift64Shl(($1720|0),($1721|0),7)|0); + $1863 = tempRet0; + $1864 = $1860 | $1862; + $1861 | $1863; + $1865 = $1864&255; + $1866 = (($s) + 28|0); + HEAP8[$1866>>0] = $1865; + $1867 = (_bitshift64Lshr(($1720|0),($1721|0),1)|0); + $1868 = tempRet0; + $1869 = $1867&255; + $1870 = (($s) + 29|0); + HEAP8[$1870>>0] = $1869; + $1871 = (_bitshift64Lshr(($1720|0),($1721|0),9)|0); + $1872 = tempRet0; + $1873 = $1871&255; + $1874 = (($s) + 30|0); + HEAP8[$1874>>0] = $1873; + $1875 = (_bitshift64Lshr(($1720|0),($1721|0),17)|0); + $1876 = tempRet0; + $1877 = $1875&255; + $1878 = (($s) + 31|0); + HEAP8[$1878>>0] = $1877; + STACKTOP = sp;return; +} +function _load_347($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + tempRet0 = $14; + STACKTOP = sp;return ($13|0); +} +function _load_448($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + $15 = (($in) + 3|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16&255; + $18 = (_bitshift64Shl(($17|0),0,24)|0); + $19 = tempRet0; + $20 = $13 | $18; + $21 = $14 | $19; + tempRet0 = $21; + STACKTOP = sp;return ($20|0); +} +function _crypto_sign_ed25519_ref10_sc_reduce($s) { + $s = $s|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; + var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0; + var $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0; + var $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0; + var $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0; + var $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0; + var $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0; + var $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0; + var $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0; + var $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0; + var $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0; + var $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0; + var $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0; + var $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0; + var $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0; + var $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0; + var $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0; + var $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0; + var $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0; + var $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0; + var $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0; + var $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0; + var $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0; + var $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0; + var $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0; + var $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0; + var $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0; + var $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0; + var $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0; + var $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0; + var $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0; + var $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0; + var $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0; + var $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0; + var $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0; + var $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0; + var $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0; + var $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0; + var $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0; + var $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0; + var $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0; + var $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0; + var $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0; + var $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0; + var $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0; + var $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0; + var $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0; + var $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0; + var $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0; + var $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0; + var $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0; + var $997 = 0, $998 = 0, $999 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (_load_351($s)|0); + $1 = tempRet0; + $2 = $0 & 2097151; + $3 = (($s) + 2|0); + $4 = (_load_452($3)|0); + $5 = tempRet0; + $6 = (_bitshift64Lshr(($4|0),($5|0),5)|0); + $7 = tempRet0; + $8 = $6 & 2097151; + $9 = (($s) + 5|0); + $10 = (_load_351($9)|0); + $11 = tempRet0; + $12 = (_bitshift64Lshr(($10|0),($11|0),2)|0); + $13 = tempRet0; + $14 = $12 & 2097151; + $15 = (($s) + 7|0); + $16 = (_load_452($15)|0); + $17 = tempRet0; + $18 = (_bitshift64Lshr(($16|0),($17|0),7)|0); + $19 = tempRet0; + $20 = $18 & 2097151; + $21 = (($s) + 10|0); + $22 = (_load_452($21)|0); + $23 = tempRet0; + $24 = (_bitshift64Lshr(($22|0),($23|0),4)|0); + $25 = tempRet0; + $26 = $24 & 2097151; + $27 = (($s) + 13|0); + $28 = (_load_351($27)|0); + $29 = tempRet0; + $30 = (_bitshift64Lshr(($28|0),($29|0),1)|0); + $31 = tempRet0; + $32 = $30 & 2097151; + $33 = (($s) + 15|0); + $34 = (_load_452($33)|0); + $35 = tempRet0; + $36 = (_bitshift64Lshr(($34|0),($35|0),6)|0); + $37 = tempRet0; + $38 = $36 & 2097151; + $39 = (($s) + 18|0); + $40 = (_load_351($39)|0); + $41 = tempRet0; + $42 = (_bitshift64Lshr(($40|0),($41|0),3)|0); + $43 = tempRet0; + $44 = $42 & 2097151; + $45 = (($s) + 21|0); + $46 = (_load_351($45)|0); + $47 = tempRet0; + $48 = $46 & 2097151; + $49 = (($s) + 23|0); + $50 = (_load_452($49)|0); + $51 = tempRet0; + $52 = (_bitshift64Lshr(($50|0),($51|0),5)|0); + $53 = tempRet0; + $54 = $52 & 2097151; + $55 = (($s) + 26|0); + $56 = (_load_351($55)|0); + $57 = tempRet0; + $58 = (_bitshift64Lshr(($56|0),($57|0),2)|0); + $59 = tempRet0; + $60 = $58 & 2097151; + $61 = (($s) + 28|0); + $62 = (_load_452($61)|0); + $63 = tempRet0; + $64 = (_bitshift64Lshr(($62|0),($63|0),7)|0); + $65 = tempRet0; + $66 = $64 & 2097151; + $67 = (($s) + 31|0); + $68 = (_load_452($67)|0); + $69 = tempRet0; + $70 = (_bitshift64Lshr(($68|0),($69|0),4)|0); + $71 = tempRet0; + $72 = $70 & 2097151; + $73 = (($s) + 34|0); + $74 = (_load_351($73)|0); + $75 = tempRet0; + $76 = (_bitshift64Lshr(($74|0),($75|0),1)|0); + $77 = tempRet0; + $78 = $76 & 2097151; + $79 = (($s) + 36|0); + $80 = (_load_452($79)|0); + $81 = tempRet0; + $82 = (_bitshift64Lshr(($80|0),($81|0),6)|0); + $83 = tempRet0; + $84 = $82 & 2097151; + $85 = (($s) + 39|0); + $86 = (_load_351($85)|0); + $87 = tempRet0; + $88 = (_bitshift64Lshr(($86|0),($87|0),3)|0); + $89 = tempRet0; + $90 = $88 & 2097151; + $91 = (($s) + 42|0); + $92 = (_load_351($91)|0); + $93 = tempRet0; + $94 = $92 & 2097151; + $95 = (($s) + 44|0); + $96 = (_load_452($95)|0); + $97 = tempRet0; + $98 = (_bitshift64Lshr(($96|0),($97|0),5)|0); + $99 = tempRet0; + $100 = $98 & 2097151; + $101 = (($s) + 47|0); + $102 = (_load_351($101)|0); + $103 = tempRet0; + $104 = (_bitshift64Lshr(($102|0),($103|0),2)|0); + $105 = tempRet0; + $106 = $104 & 2097151; + $107 = (($s) + 49|0); + $108 = (_load_452($107)|0); + $109 = tempRet0; + $110 = (_bitshift64Lshr(($108|0),($109|0),7)|0); + $111 = tempRet0; + $112 = $110 & 2097151; + $113 = (($s) + 52|0); + $114 = (_load_452($113)|0); + $115 = tempRet0; + $116 = (_bitshift64Lshr(($114|0),($115|0),4)|0); + $117 = tempRet0; + $118 = $116 & 2097151; + $119 = (($s) + 55|0); + $120 = (_load_351($119)|0); + $121 = tempRet0; + $122 = (_bitshift64Lshr(($120|0),($121|0),1)|0); + $123 = tempRet0; + $124 = $122 & 2097151; + $125 = (($s) + 57|0); + $126 = (_load_452($125)|0); + $127 = tempRet0; + $128 = (_bitshift64Lshr(($126|0),($127|0),6)|0); + $129 = tempRet0; + $130 = $128 & 2097151; + $131 = (($s) + 60|0); + $132 = (_load_452($131)|0); + $133 = tempRet0; + $134 = (_bitshift64Lshr(($132|0),($133|0),3)|0); + $135 = tempRet0; + $136 = (___muldi3(($134|0),($135|0),666643,0)|0); + $137 = tempRet0; + $138 = (___muldi3(($134|0),($135|0),470296,0)|0); + $139 = tempRet0; + $140 = (___muldi3(($134|0),($135|0),654183,0)|0); + $141 = tempRet0; + $142 = (___muldi3(($134|0),($135|0),-997805,-1)|0); + $143 = tempRet0; + $144 = (___muldi3(($134|0),($135|0),136657,0)|0); + $145 = tempRet0; + $146 = (_i64Add(($144|0),($145|0),($90|0),0)|0); + $147 = tempRet0; + $148 = (___muldi3(($134|0),($135|0),-683901,-1)|0); + $149 = tempRet0; + $150 = (_i64Add(($148|0),($149|0),($94|0),0)|0); + $151 = tempRet0; + $152 = (___muldi3(($130|0),0,666643,0)|0); + $153 = tempRet0; + $154 = (___muldi3(($130|0),0,470296,0)|0); + $155 = tempRet0; + $156 = (___muldi3(($130|0),0,654183,0)|0); + $157 = tempRet0; + $158 = (___muldi3(($130|0),0,-997805,-1)|0); + $159 = tempRet0; + $160 = (___muldi3(($130|0),0,136657,0)|0); + $161 = tempRet0; + $162 = (___muldi3(($130|0),0,-683901,-1)|0); + $163 = tempRet0; + $164 = (_i64Add(($146|0),($147|0),($162|0),($163|0))|0); + $165 = tempRet0; + $166 = (___muldi3(($124|0),0,666643,0)|0); + $167 = tempRet0; + $168 = (___muldi3(($124|0),0,470296,0)|0); + $169 = tempRet0; + $170 = (___muldi3(($124|0),0,654183,0)|0); + $171 = tempRet0; + $172 = (___muldi3(($124|0),0,-997805,-1)|0); + $173 = tempRet0; + $174 = (___muldi3(($124|0),0,136657,0)|0); + $175 = tempRet0; + $176 = (___muldi3(($124|0),0,-683901,-1)|0); + $177 = tempRet0; + $178 = (_i64Add(($176|0),($177|0),($84|0),0)|0); + $179 = tempRet0; + $180 = (_i64Add(($178|0),($179|0),($142|0),($143|0))|0); + $181 = tempRet0; + $182 = (_i64Add(($180|0),($181|0),($160|0),($161|0))|0); + $183 = tempRet0; + $184 = (___muldi3(($118|0),0,666643,0)|0); + $185 = tempRet0; + $186 = (___muldi3(($118|0),0,470296,0)|0); + $187 = tempRet0; + $188 = (___muldi3(($118|0),0,654183,0)|0); + $189 = tempRet0; + $190 = (___muldi3(($118|0),0,-997805,-1)|0); + $191 = tempRet0; + $192 = (___muldi3(($118|0),0,136657,0)|0); + $193 = tempRet0; + $194 = (___muldi3(($118|0),0,-683901,-1)|0); + $195 = tempRet0; + $196 = (___muldi3(($112|0),0,666643,0)|0); + $197 = tempRet0; + $198 = (___muldi3(($112|0),0,470296,0)|0); + $199 = tempRet0; + $200 = (___muldi3(($112|0),0,654183,0)|0); + $201 = tempRet0; + $202 = (___muldi3(($112|0),0,-997805,-1)|0); + $203 = tempRet0; + $204 = (___muldi3(($112|0),0,136657,0)|0); + $205 = tempRet0; + $206 = (___muldi3(($112|0),0,-683901,-1)|0); + $207 = tempRet0; + $208 = (_i64Add(($206|0),($207|0),($72|0),0)|0); + $209 = tempRet0; + $210 = (_i64Add(($208|0),($209|0),($192|0),($193|0))|0); + $211 = tempRet0; + $212 = (_i64Add(($210|0),($211|0),($172|0),($173|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($212|0),($213|0),($138|0),($139|0))|0); + $215 = tempRet0; + $216 = (_i64Add(($214|0),($215|0),($156|0),($157|0))|0); + $217 = tempRet0; + $218 = (___muldi3(($106|0),0,666643,0)|0); + $219 = tempRet0; + $220 = (_i64Add(($218|0),($219|0),($38|0),0)|0); + $221 = tempRet0; + $222 = (___muldi3(($106|0),0,470296,0)|0); + $223 = tempRet0; + $224 = (___muldi3(($106|0),0,654183,0)|0); + $225 = tempRet0; + $226 = (_i64Add(($224|0),($225|0),($48|0),0)|0); + $227 = tempRet0; + $228 = (_i64Add(($226|0),($227|0),($198|0),($199|0))|0); + $229 = tempRet0; + $230 = (_i64Add(($228|0),($229|0),($184|0),($185|0))|0); + $231 = tempRet0; + $232 = (___muldi3(($106|0),0,-997805,-1)|0); + $233 = tempRet0; + $234 = (___muldi3(($106|0),0,136657,0)|0); + $235 = tempRet0; + $236 = (_i64Add(($234|0),($235|0),($60|0),0)|0); + $237 = tempRet0; + $238 = (_i64Add(($236|0),($237|0),($202|0),($203|0))|0); + $239 = tempRet0; + $240 = (_i64Add(($238|0),($239|0),($188|0),($189|0))|0); + $241 = tempRet0; + $242 = (_i64Add(($240|0),($241|0),($168|0),($169|0))|0); + $243 = tempRet0; + $244 = (_i64Add(($242|0),($243|0),($152|0),($153|0))|0); + $245 = tempRet0; + $246 = (___muldi3(($106|0),0,-683901,-1)|0); + $247 = tempRet0; + $248 = (_i64Add(($220|0),($221|0),1048576,0)|0); + $249 = tempRet0; + $250 = (_bitshift64Lshr(($248|0),($249|0),21)|0); + $251 = tempRet0; + $252 = (_i64Add(($222|0),($223|0),($44|0),0)|0); + $253 = tempRet0; + $254 = (_i64Add(($252|0),($253|0),($196|0),($197|0))|0); + $255 = tempRet0; + $256 = (_i64Add(($254|0),($255|0),($250|0),($251|0))|0); + $257 = tempRet0; + $258 = (_bitshift64Shl(($250|0),($251|0),21)|0); + $259 = tempRet0; + $260 = (_i64Subtract(($220|0),($221|0),($258|0),($259|0))|0); + $261 = tempRet0; + $262 = (_i64Add(($230|0),($231|0),1048576,0)|0); + $263 = tempRet0; + $264 = (_bitshift64Lshr(($262|0),($263|0),21)|0); + $265 = tempRet0; + $266 = (_i64Add(($232|0),($233|0),($54|0),0)|0); + $267 = tempRet0; + $268 = (_i64Add(($266|0),($267|0),($200|0),($201|0))|0); + $269 = tempRet0; + $270 = (_i64Add(($268|0),($269|0),($186|0),($187|0))|0); + $271 = tempRet0; + $272 = (_i64Add(($270|0),($271|0),($166|0),($167|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($264|0),($265|0))|0); + $275 = tempRet0; + $276 = (_bitshift64Shl(($264|0),($265|0),21)|0); + $277 = tempRet0; + $278 = (_i64Subtract(($230|0),($231|0),($276|0),($277|0))|0); + $279 = tempRet0; + $280 = (_i64Add(($244|0),($245|0),1048576,0)|0); + $281 = tempRet0; + $282 = (_bitshift64Ashr(($280|0),($281|0),21)|0); + $283 = tempRet0; + $284 = (_i64Add(($246|0),($247|0),($66|0),0)|0); + $285 = tempRet0; + $286 = (_i64Add(($284|0),($285|0),($204|0),($205|0))|0); + $287 = tempRet0; + $288 = (_i64Add(($286|0),($287|0),($190|0),($191|0))|0); + $289 = tempRet0; + $290 = (_i64Add(($288|0),($289|0),($170|0),($171|0))|0); + $291 = tempRet0; + $292 = (_i64Add(($290|0),($291|0),($136|0),($137|0))|0); + $293 = tempRet0; + $294 = (_i64Add(($292|0),($293|0),($154|0),($155|0))|0); + $295 = tempRet0; + $296 = (_i64Add(($294|0),($295|0),($282|0),($283|0))|0); + $297 = tempRet0; + $298 = (_bitshift64Shl(($282|0),($283|0),21)|0); + $299 = tempRet0; + $300 = (_i64Subtract(($244|0),($245|0),($298|0),($299|0))|0); + $301 = tempRet0; + $302 = (_i64Add(($216|0),($217|0),1048576,0)|0); + $303 = tempRet0; + $304 = (_bitshift64Ashr(($302|0),($303|0),21)|0); + $305 = tempRet0; + $306 = (_i64Add(($194|0),($195|0),($78|0),0)|0); + $307 = tempRet0; + $308 = (_i64Add(($306|0),($307|0),($174|0),($175|0))|0); + $309 = tempRet0; + $310 = (_i64Add(($308|0),($309|0),($140|0),($141|0))|0); + $311 = tempRet0; + $312 = (_i64Add(($310|0),($311|0),($158|0),($159|0))|0); + $313 = tempRet0; + $314 = (_i64Add(($312|0),($313|0),($304|0),($305|0))|0); + $315 = tempRet0; + $316 = (_bitshift64Shl(($304|0),($305|0),21)|0); + $317 = tempRet0; + $318 = (_i64Subtract(($216|0),($217|0),($316|0),($317|0))|0); + $319 = tempRet0; + $320 = (_i64Add(($182|0),($183|0),1048576,0)|0); + $321 = tempRet0; + $322 = (_bitshift64Ashr(($320|0),($321|0),21)|0); + $323 = tempRet0; + $324 = (_i64Add(($164|0),($165|0),($322|0),($323|0))|0); + $325 = tempRet0; + $326 = (_bitshift64Shl(($322|0),($323|0),21)|0); + $327 = tempRet0; + $328 = (_i64Subtract(($182|0),($183|0),($326|0),($327|0))|0); + $329 = tempRet0; + $330 = (_i64Add(($150|0),($151|0),1048576,0)|0); + $331 = tempRet0; + $332 = (_bitshift64Ashr(($330|0),($331|0),21)|0); + $333 = tempRet0; + $334 = (_i64Add(($332|0),($333|0),($100|0),0)|0); + $335 = tempRet0; + $336 = (_bitshift64Shl(($332|0),($333|0),21)|0); + $337 = tempRet0; + $338 = (_i64Subtract(($150|0),($151|0),($336|0),($337|0))|0); + $339 = tempRet0; + $340 = (_i64Add(($256|0),($257|0),1048576,0)|0); + $341 = tempRet0; + $342 = (_bitshift64Lshr(($340|0),($341|0),21)|0); + $343 = tempRet0; + $344 = (_i64Add(($278|0),($279|0),($342|0),($343|0))|0); + $345 = tempRet0; + $346 = (_bitshift64Shl(($342|0),($343|0),21)|0); + $347 = tempRet0; + $348 = (_i64Subtract(($256|0),($257|0),($346|0),($347|0))|0); + $349 = tempRet0; + $350 = (_i64Add(($274|0),($275|0),1048576,0)|0); + $351 = tempRet0; + $352 = (_bitshift64Ashr(($350|0),($351|0),21)|0); + $353 = tempRet0; + $354 = (_i64Add(($300|0),($301|0),($352|0),($353|0))|0); + $355 = tempRet0; + $356 = (_bitshift64Shl(($352|0),($353|0),21)|0); + $357 = tempRet0; + $358 = (_i64Subtract(($274|0),($275|0),($356|0),($357|0))|0); + $359 = tempRet0; + $360 = (_i64Add(($296|0),($297|0),1048576,0)|0); + $361 = tempRet0; + $362 = (_bitshift64Ashr(($360|0),($361|0),21)|0); + $363 = tempRet0; + $364 = (_i64Add(($318|0),($319|0),($362|0),($363|0))|0); + $365 = tempRet0; + $366 = (_bitshift64Shl(($362|0),($363|0),21)|0); + $367 = tempRet0; + $368 = (_i64Subtract(($296|0),($297|0),($366|0),($367|0))|0); + $369 = tempRet0; + $370 = (_i64Add(($314|0),($315|0),1048576,0)|0); + $371 = tempRet0; + $372 = (_bitshift64Ashr(($370|0),($371|0),21)|0); + $373 = tempRet0; + $374 = (_i64Add(($372|0),($373|0),($328|0),($329|0))|0); + $375 = tempRet0; + $376 = (_bitshift64Shl(($372|0),($373|0),21)|0); + $377 = tempRet0; + $378 = (_i64Subtract(($314|0),($315|0),($376|0),($377|0))|0); + $379 = tempRet0; + $380 = (_i64Add(($324|0),($325|0),1048576,0)|0); + $381 = tempRet0; + $382 = (_bitshift64Ashr(($380|0),($381|0),21)|0); + $383 = tempRet0; + $384 = (_i64Add(($382|0),($383|0),($338|0),($339|0))|0); + $385 = tempRet0; + $386 = (_bitshift64Shl(($382|0),($383|0),21)|0); + $387 = tempRet0; + $388 = (_i64Subtract(($324|0),($325|0),($386|0),($387|0))|0); + $389 = tempRet0; + $390 = (___muldi3(($334|0),($335|0),666643,0)|0); + $391 = tempRet0; + $392 = (_i64Add(($390|0),($391|0),($32|0),0)|0); + $393 = tempRet0; + $394 = (___muldi3(($334|0),($335|0),470296,0)|0); + $395 = tempRet0; + $396 = (_i64Add(($260|0),($261|0),($394|0),($395|0))|0); + $397 = tempRet0; + $398 = (___muldi3(($334|0),($335|0),654183,0)|0); + $399 = tempRet0; + $400 = (_i64Add(($348|0),($349|0),($398|0),($399|0))|0); + $401 = tempRet0; + $402 = (___muldi3(($334|0),($335|0),-997805,-1)|0); + $403 = tempRet0; + $404 = (_i64Add(($344|0),($345|0),($402|0),($403|0))|0); + $405 = tempRet0; + $406 = (___muldi3(($334|0),($335|0),136657,0)|0); + $407 = tempRet0; + $408 = (_i64Add(($358|0),($359|0),($406|0),($407|0))|0); + $409 = tempRet0; + $410 = (___muldi3(($334|0),($335|0),-683901,-1)|0); + $411 = tempRet0; + $412 = (_i64Add(($354|0),($355|0),($410|0),($411|0))|0); + $413 = tempRet0; + $414 = (___muldi3(($384|0),($385|0),666643,0)|0); + $415 = tempRet0; + $416 = (___muldi3(($384|0),($385|0),470296,0)|0); + $417 = tempRet0; + $418 = (___muldi3(($384|0),($385|0),654183,0)|0); + $419 = tempRet0; + $420 = (_i64Add(($396|0),($397|0),($418|0),($419|0))|0); + $421 = tempRet0; + $422 = (___muldi3(($384|0),($385|0),-997805,-1)|0); + $423 = tempRet0; + $424 = (_i64Add(($400|0),($401|0),($422|0),($423|0))|0); + $425 = tempRet0; + $426 = (___muldi3(($384|0),($385|0),136657,0)|0); + $427 = tempRet0; + $428 = (_i64Add(($404|0),($405|0),($426|0),($427|0))|0); + $429 = tempRet0; + $430 = (___muldi3(($384|0),($385|0),-683901,-1)|0); + $431 = tempRet0; + $432 = (_i64Add(($408|0),($409|0),($430|0),($431|0))|0); + $433 = tempRet0; + $434 = (___muldi3(($388|0),($389|0),666643,0)|0); + $435 = tempRet0; + $436 = (___muldi3(($388|0),($389|0),470296,0)|0); + $437 = tempRet0; + $438 = (___muldi3(($388|0),($389|0),654183,0)|0); + $439 = tempRet0; + $440 = (___muldi3(($388|0),($389|0),-997805,-1)|0); + $441 = tempRet0; + $442 = (___muldi3(($388|0),($389|0),136657,0)|0); + $443 = tempRet0; + $444 = (___muldi3(($388|0),($389|0),-683901,-1)|0); + $445 = tempRet0; + $446 = (_i64Add(($428|0),($429|0),($444|0),($445|0))|0); + $447 = tempRet0; + $448 = (___muldi3(($374|0),($375|0),666643,0)|0); + $449 = tempRet0; + $450 = (___muldi3(($374|0),($375|0),470296,0)|0); + $451 = tempRet0; + $452 = (___muldi3(($374|0),($375|0),654183,0)|0); + $453 = tempRet0; + $454 = (___muldi3(($374|0),($375|0),-997805,-1)|0); + $455 = tempRet0; + $456 = (___muldi3(($374|0),($375|0),136657,0)|0); + $457 = tempRet0; + $458 = (___muldi3(($374|0),($375|0),-683901,-1)|0); + $459 = tempRet0; + $460 = (___muldi3(($378|0),($379|0),666643,0)|0); + $461 = tempRet0; + $462 = (___muldi3(($378|0),($379|0),470296,0)|0); + $463 = tempRet0; + $464 = (___muldi3(($378|0),($379|0),654183,0)|0); + $465 = tempRet0; + $466 = (___muldi3(($378|0),($379|0),-997805,-1)|0); + $467 = tempRet0; + $468 = (___muldi3(($378|0),($379|0),136657,0)|0); + $469 = tempRet0; + $470 = (___muldi3(($378|0),($379|0),-683901,-1)|0); + $471 = tempRet0; + $472 = (_i64Add(($420|0),($421|0),($456|0),($457|0))|0); + $473 = tempRet0; + $474 = (_i64Add(($472|0),($473|0),($440|0),($441|0))|0); + $475 = tempRet0; + $476 = (_i64Add(($474|0),($475|0),($470|0),($471|0))|0); + $477 = tempRet0; + $478 = (___muldi3(($364|0),($365|0),666643,0)|0); + $479 = tempRet0; + $480 = (_i64Add(($478|0),($479|0),($2|0),0)|0); + $481 = tempRet0; + $482 = (___muldi3(($364|0),($365|0),470296,0)|0); + $483 = tempRet0; + $484 = (___muldi3(($364|0),($365|0),654183,0)|0); + $485 = tempRet0; + $486 = (_i64Add(($484|0),($485|0),($14|0),0)|0); + $487 = tempRet0; + $488 = (_i64Add(($486|0),($487|0),($448|0),($449|0))|0); + $489 = tempRet0; + $490 = (_i64Add(($488|0),($489|0),($462|0),($463|0))|0); + $491 = tempRet0; + $492 = (___muldi3(($364|0),($365|0),-997805,-1)|0); + $493 = tempRet0; + $494 = (___muldi3(($364|0),($365|0),136657,0)|0); + $495 = tempRet0; + $496 = (_i64Add(($494|0),($495|0),($26|0),0)|0); + $497 = tempRet0; + $498 = (_i64Add(($496|0),($497|0),($414|0),($415|0))|0); + $499 = tempRet0; + $500 = (_i64Add(($498|0),($499|0),($452|0),($453|0))|0); + $501 = tempRet0; + $502 = (_i64Add(($500|0),($501|0),($436|0),($437|0))|0); + $503 = tempRet0; + $504 = (_i64Add(($502|0),($503|0),($466|0),($467|0))|0); + $505 = tempRet0; + $506 = (___muldi3(($364|0),($365|0),-683901,-1)|0); + $507 = tempRet0; + $508 = (_i64Add(($480|0),($481|0),1048576,0)|0); + $509 = tempRet0; + $510 = (_bitshift64Ashr(($508|0),($509|0),21)|0); + $511 = tempRet0; + $512 = (_i64Add(($482|0),($483|0),($8|0),0)|0); + $513 = tempRet0; + $514 = (_i64Add(($512|0),($513|0),($460|0),($461|0))|0); + $515 = tempRet0; + $516 = (_i64Add(($514|0),($515|0),($510|0),($511|0))|0); + $517 = tempRet0; + $518 = (_bitshift64Shl(($510|0),($511|0),21)|0); + $519 = tempRet0; + $520 = (_i64Subtract(($480|0),($481|0),($518|0),($519|0))|0); + $521 = tempRet0; + $522 = (_i64Add(($490|0),($491|0),1048576,0)|0); + $523 = tempRet0; + $524 = (_bitshift64Ashr(($522|0),($523|0),21)|0); + $525 = tempRet0; + $526 = (_i64Add(($492|0),($493|0),($20|0),0)|0); + $527 = tempRet0; + $528 = (_i64Add(($526|0),($527|0),($450|0),($451|0))|0); + $529 = tempRet0; + $530 = (_i64Add(($528|0),($529|0),($434|0),($435|0))|0); + $531 = tempRet0; + $532 = (_i64Add(($530|0),($531|0),($464|0),($465|0))|0); + $533 = tempRet0; + $534 = (_i64Add(($532|0),($533|0),($524|0),($525|0))|0); + $535 = tempRet0; + $536 = (_bitshift64Shl(($524|0),($525|0),21)|0); + $537 = tempRet0; + $538 = (_i64Add(($504|0),($505|0),1048576,0)|0); + $539 = tempRet0; + $540 = (_bitshift64Ashr(($538|0),($539|0),21)|0); + $541 = tempRet0; + $542 = (_i64Add(($392|0),($393|0),($506|0),($507|0))|0); + $543 = tempRet0; + $544 = (_i64Add(($542|0),($543|0),($416|0),($417|0))|0); + $545 = tempRet0; + $546 = (_i64Add(($544|0),($545|0),($454|0),($455|0))|0); + $547 = tempRet0; + $548 = (_i64Add(($546|0),($547|0),($438|0),($439|0))|0); + $549 = tempRet0; + $550 = (_i64Add(($548|0),($549|0),($468|0),($469|0))|0); + $551 = tempRet0; + $552 = (_i64Add(($550|0),($551|0),($540|0),($541|0))|0); + $553 = tempRet0; + $554 = (_bitshift64Shl(($540|0),($541|0),21)|0); + $555 = tempRet0; + $556 = (_i64Add(($476|0),($477|0),1048576,0)|0); + $557 = tempRet0; + $558 = (_bitshift64Ashr(($556|0),($557|0),21)|0); + $559 = tempRet0; + $560 = (_i64Add(($424|0),($425|0),($458|0),($459|0))|0); + $561 = tempRet0; + $562 = (_i64Add(($560|0),($561|0),($442|0),($443|0))|0); + $563 = tempRet0; + $564 = (_i64Add(($562|0),($563|0),($558|0),($559|0))|0); + $565 = tempRet0; + $566 = (_bitshift64Shl(($558|0),($559|0),21)|0); + $567 = tempRet0; + $568 = (_i64Subtract(($476|0),($477|0),($566|0),($567|0))|0); + $569 = tempRet0; + $570 = (_i64Add(($446|0),($447|0),1048576,0)|0); + $571 = tempRet0; + $572 = (_bitshift64Ashr(($570|0),($571|0),21)|0); + $573 = tempRet0; + $574 = (_i64Add(($432|0),($433|0),($572|0),($573|0))|0); + $575 = tempRet0; + $576 = (_bitshift64Shl(($572|0),($573|0),21)|0); + $577 = tempRet0; + $578 = (_i64Subtract(($446|0),($447|0),($576|0),($577|0))|0); + $579 = tempRet0; + $580 = (_i64Add(($412|0),($413|0),1048576,0)|0); + $581 = tempRet0; + $582 = (_bitshift64Ashr(($580|0),($581|0),21)|0); + $583 = tempRet0; + $584 = (_i64Add(($582|0),($583|0),($368|0),($369|0))|0); + $585 = tempRet0; + $586 = (_bitshift64Shl(($582|0),($583|0),21)|0); + $587 = tempRet0; + $588 = (_i64Subtract(($412|0),($413|0),($586|0),($587|0))|0); + $589 = tempRet0; + $590 = (_i64Add(($516|0),($517|0),1048576,0)|0); + $591 = tempRet0; + $592 = (_bitshift64Ashr(($590|0),($591|0),21)|0); + $593 = tempRet0; + $594 = (_bitshift64Shl(($592|0),($593|0),21)|0); + $595 = tempRet0; + $596 = (_i64Add(($534|0),($535|0),1048576,0)|0); + $597 = tempRet0; + $598 = (_bitshift64Ashr(($596|0),($597|0),21)|0); + $599 = tempRet0; + $600 = (_bitshift64Shl(($598|0),($599|0),21)|0); + $601 = tempRet0; + $602 = (_i64Add(($552|0),($553|0),1048576,0)|0); + $603 = tempRet0; + $604 = (_bitshift64Ashr(($602|0),($603|0),21)|0); + $605 = tempRet0; + $606 = (_i64Add(($568|0),($569|0),($604|0),($605|0))|0); + $607 = tempRet0; + $608 = (_bitshift64Shl(($604|0),($605|0),21)|0); + $609 = tempRet0; + $610 = (_i64Add(($564|0),($565|0),1048576,0)|0); + $611 = tempRet0; + $612 = (_bitshift64Ashr(($610|0),($611|0),21)|0); + $613 = tempRet0; + $614 = (_i64Add(($578|0),($579|0),($612|0),($613|0))|0); + $615 = tempRet0; + $616 = (_bitshift64Shl(($612|0),($613|0),21)|0); + $617 = tempRet0; + $618 = (_i64Subtract(($564|0),($565|0),($616|0),($617|0))|0); + $619 = tempRet0; + $620 = (_i64Add(($574|0),($575|0),1048576,0)|0); + $621 = tempRet0; + $622 = (_bitshift64Ashr(($620|0),($621|0),21)|0); + $623 = tempRet0; + $624 = (_i64Add(($588|0),($589|0),($622|0),($623|0))|0); + $625 = tempRet0; + $626 = (_bitshift64Shl(($622|0),($623|0),21)|0); + $627 = tempRet0; + $628 = (_i64Subtract(($574|0),($575|0),($626|0),($627|0))|0); + $629 = tempRet0; + $630 = (_i64Add(($584|0),($585|0),1048576,0)|0); + $631 = tempRet0; + $632 = (_bitshift64Ashr(($630|0),($631|0),21)|0); + $633 = tempRet0; + $634 = (_bitshift64Shl(($632|0),($633|0),21)|0); + $635 = tempRet0; + $636 = (_i64Subtract(($584|0),($585|0),($634|0),($635|0))|0); + $637 = tempRet0; + $638 = (___muldi3(($632|0),($633|0),666643,0)|0); + $639 = tempRet0; + $640 = (_i64Add(($520|0),($521|0),($638|0),($639|0))|0); + $641 = tempRet0; + $642 = (___muldi3(($632|0),($633|0),470296,0)|0); + $643 = tempRet0; + $644 = (___muldi3(($632|0),($633|0),654183,0)|0); + $645 = tempRet0; + $646 = (___muldi3(($632|0),($633|0),-997805,-1)|0); + $647 = tempRet0; + $648 = (___muldi3(($632|0),($633|0),136657,0)|0); + $649 = tempRet0; + $650 = (___muldi3(($632|0),($633|0),-683901,-1)|0); + $651 = tempRet0; + $652 = (_bitshift64Ashr(($640|0),($641|0),21)|0); + $653 = tempRet0; + $654 = (_i64Add(($642|0),($643|0),($516|0),($517|0))|0); + $655 = tempRet0; + $656 = (_i64Subtract(($654|0),($655|0),($594|0),($595|0))|0); + $657 = tempRet0; + $658 = (_i64Add(($656|0),($657|0),($652|0),($653|0))|0); + $659 = tempRet0; + $660 = (_bitshift64Shl(($652|0),($653|0),21)|0); + $661 = tempRet0; + $662 = (_i64Subtract(($640|0),($641|0),($660|0),($661|0))|0); + $663 = tempRet0; + $664 = (_bitshift64Ashr(($658|0),($659|0),21)|0); + $665 = tempRet0; + $666 = (_i64Add(($644|0),($645|0),($490|0),($491|0))|0); + $667 = tempRet0; + $668 = (_i64Subtract(($666|0),($667|0),($536|0),($537|0))|0); + $669 = tempRet0; + $670 = (_i64Add(($668|0),($669|0),($592|0),($593|0))|0); + $671 = tempRet0; + $672 = (_i64Add(($670|0),($671|0),($664|0),($665|0))|0); + $673 = tempRet0; + $674 = (_bitshift64Shl(($664|0),($665|0),21)|0); + $675 = tempRet0; + $676 = (_i64Subtract(($658|0),($659|0),($674|0),($675|0))|0); + $677 = tempRet0; + $678 = (_bitshift64Ashr(($672|0),($673|0),21)|0); + $679 = tempRet0; + $680 = (_i64Add(($534|0),($535|0),($646|0),($647|0))|0); + $681 = tempRet0; + $682 = (_i64Subtract(($680|0),($681|0),($600|0),($601|0))|0); + $683 = tempRet0; + $684 = (_i64Add(($682|0),($683|0),($678|0),($679|0))|0); + $685 = tempRet0; + $686 = (_bitshift64Shl(($678|0),($679|0),21)|0); + $687 = tempRet0; + $688 = (_i64Subtract(($672|0),($673|0),($686|0),($687|0))|0); + $689 = tempRet0; + $690 = (_bitshift64Ashr(($684|0),($685|0),21)|0); + $691 = tempRet0; + $692 = (_i64Add(($648|0),($649|0),($504|0),($505|0))|0); + $693 = tempRet0; + $694 = (_i64Subtract(($692|0),($693|0),($554|0),($555|0))|0); + $695 = tempRet0; + $696 = (_i64Add(($694|0),($695|0),($598|0),($599|0))|0); + $697 = tempRet0; + $698 = (_i64Add(($696|0),($697|0),($690|0),($691|0))|0); + $699 = tempRet0; + $700 = (_bitshift64Shl(($690|0),($691|0),21)|0); + $701 = tempRet0; + $702 = (_i64Subtract(($684|0),($685|0),($700|0),($701|0))|0); + $703 = tempRet0; + $704 = (_bitshift64Ashr(($698|0),($699|0),21)|0); + $705 = tempRet0; + $706 = (_i64Add(($552|0),($553|0),($650|0),($651|0))|0); + $707 = tempRet0; + $708 = (_i64Subtract(($706|0),($707|0),($608|0),($609|0))|0); + $709 = tempRet0; + $710 = (_i64Add(($708|0),($709|0),($704|0),($705|0))|0); + $711 = tempRet0; + $712 = (_bitshift64Shl(($704|0),($705|0),21)|0); + $713 = tempRet0; + $714 = (_i64Subtract(($698|0),($699|0),($712|0),($713|0))|0); + $715 = tempRet0; + $716 = (_bitshift64Ashr(($710|0),($711|0),21)|0); + $717 = tempRet0; + $718 = (_i64Add(($606|0),($607|0),($716|0),($717|0))|0); + $719 = tempRet0; + $720 = (_bitshift64Shl(($716|0),($717|0),21)|0); + $721 = tempRet0; + $722 = (_i64Subtract(($710|0),($711|0),($720|0),($721|0))|0); + $723 = tempRet0; + $724 = (_bitshift64Ashr(($718|0),($719|0),21)|0); + $725 = tempRet0; + $726 = (_i64Add(($724|0),($725|0),($618|0),($619|0))|0); + $727 = tempRet0; + $728 = (_bitshift64Shl(($724|0),($725|0),21)|0); + $729 = tempRet0; + $730 = (_i64Subtract(($718|0),($719|0),($728|0),($729|0))|0); + $731 = tempRet0; + $732 = (_bitshift64Ashr(($726|0),($727|0),21)|0); + $733 = tempRet0; + $734 = (_i64Add(($614|0),($615|0),($732|0),($733|0))|0); + $735 = tempRet0; + $736 = (_bitshift64Shl(($732|0),($733|0),21)|0); + $737 = tempRet0; + $738 = (_i64Subtract(($726|0),($727|0),($736|0),($737|0))|0); + $739 = tempRet0; + $740 = (_bitshift64Ashr(($734|0),($735|0),21)|0); + $741 = tempRet0; + $742 = (_i64Add(($740|0),($741|0),($628|0),($629|0))|0); + $743 = tempRet0; + $744 = (_bitshift64Shl(($740|0),($741|0),21)|0); + $745 = tempRet0; + $746 = (_i64Subtract(($734|0),($735|0),($744|0),($745|0))|0); + $747 = tempRet0; + $748 = (_bitshift64Ashr(($742|0),($743|0),21)|0); + $749 = tempRet0; + $750 = (_i64Add(($624|0),($625|0),($748|0),($749|0))|0); + $751 = tempRet0; + $752 = (_bitshift64Shl(($748|0),($749|0),21)|0); + $753 = tempRet0; + $754 = (_i64Subtract(($742|0),($743|0),($752|0),($753|0))|0); + $755 = tempRet0; + $756 = (_bitshift64Ashr(($750|0),($751|0),21)|0); + $757 = tempRet0; + $758 = (_i64Add(($756|0),($757|0),($636|0),($637|0))|0); + $759 = tempRet0; + $760 = (_bitshift64Shl(($756|0),($757|0),21)|0); + $761 = tempRet0; + $762 = (_i64Subtract(($750|0),($751|0),($760|0),($761|0))|0); + $763 = tempRet0; + $764 = (_bitshift64Ashr(($758|0),($759|0),21)|0); + $765 = tempRet0; + $766 = (_bitshift64Shl(($764|0),($765|0),21)|0); + $767 = tempRet0; + $768 = (_i64Subtract(($758|0),($759|0),($766|0),($767|0))|0); + $769 = tempRet0; + $770 = (___muldi3(($764|0),($765|0),666643,0)|0); + $771 = tempRet0; + $772 = (_i64Add(($770|0),($771|0),($662|0),($663|0))|0); + $773 = tempRet0; + $774 = (___muldi3(($764|0),($765|0),470296,0)|0); + $775 = tempRet0; + $776 = (_i64Add(($676|0),($677|0),($774|0),($775|0))|0); + $777 = tempRet0; + $778 = (___muldi3(($764|0),($765|0),654183,0)|0); + $779 = tempRet0; + $780 = (_i64Add(($688|0),($689|0),($778|0),($779|0))|0); + $781 = tempRet0; + $782 = (___muldi3(($764|0),($765|0),-997805,-1)|0); + $783 = tempRet0; + $784 = (_i64Add(($702|0),($703|0),($782|0),($783|0))|0); + $785 = tempRet0; + $786 = (___muldi3(($764|0),($765|0),136657,0)|0); + $787 = tempRet0; + $788 = (_i64Add(($714|0),($715|0),($786|0),($787|0))|0); + $789 = tempRet0; + $790 = (___muldi3(($764|0),($765|0),-683901,-1)|0); + $791 = tempRet0; + $792 = (_i64Add(($722|0),($723|0),($790|0),($791|0))|0); + $793 = tempRet0; + $794 = (_bitshift64Ashr(($772|0),($773|0),21)|0); + $795 = tempRet0; + $796 = (_i64Add(($776|0),($777|0),($794|0),($795|0))|0); + $797 = tempRet0; + $798 = (_bitshift64Shl(($794|0),($795|0),21)|0); + $799 = tempRet0; + $800 = (_i64Subtract(($772|0),($773|0),($798|0),($799|0))|0); + $801 = tempRet0; + $802 = (_bitshift64Ashr(($796|0),($797|0),21)|0); + $803 = tempRet0; + $804 = (_i64Add(($780|0),($781|0),($802|0),($803|0))|0); + $805 = tempRet0; + $806 = (_bitshift64Shl(($802|0),($803|0),21)|0); + $807 = tempRet0; + $808 = (_i64Subtract(($796|0),($797|0),($806|0),($807|0))|0); + $809 = tempRet0; + $810 = (_bitshift64Ashr(($804|0),($805|0),21)|0); + $811 = tempRet0; + $812 = (_i64Add(($784|0),($785|0),($810|0),($811|0))|0); + $813 = tempRet0; + $814 = (_bitshift64Shl(($810|0),($811|0),21)|0); + $815 = tempRet0; + $816 = (_i64Subtract(($804|0),($805|0),($814|0),($815|0))|0); + $817 = tempRet0; + $818 = (_bitshift64Ashr(($812|0),($813|0),21)|0); + $819 = tempRet0; + $820 = (_i64Add(($788|0),($789|0),($818|0),($819|0))|0); + $821 = tempRet0; + $822 = (_bitshift64Shl(($818|0),($819|0),21)|0); + $823 = tempRet0; + $824 = (_i64Subtract(($812|0),($813|0),($822|0),($823|0))|0); + $825 = tempRet0; + $826 = (_bitshift64Ashr(($820|0),($821|0),21)|0); + $827 = tempRet0; + $828 = (_i64Add(($792|0),($793|0),($826|0),($827|0))|0); + $829 = tempRet0; + $830 = (_bitshift64Shl(($826|0),($827|0),21)|0); + $831 = tempRet0; + $832 = (_i64Subtract(($820|0),($821|0),($830|0),($831|0))|0); + $833 = tempRet0; + $834 = (_bitshift64Ashr(($828|0),($829|0),21)|0); + $835 = tempRet0; + $836 = (_i64Add(($834|0),($835|0),($730|0),($731|0))|0); + $837 = tempRet0; + $838 = (_bitshift64Shl(($834|0),($835|0),21)|0); + $839 = tempRet0; + $840 = (_i64Subtract(($828|0),($829|0),($838|0),($839|0))|0); + $841 = tempRet0; + $842 = (_bitshift64Ashr(($836|0),($837|0),21)|0); + $843 = tempRet0; + $844 = (_i64Add(($842|0),($843|0),($738|0),($739|0))|0); + $845 = tempRet0; + $846 = (_bitshift64Shl(($842|0),($843|0),21)|0); + $847 = tempRet0; + $848 = (_i64Subtract(($836|0),($837|0),($846|0),($847|0))|0); + $849 = tempRet0; + $850 = (_bitshift64Ashr(($844|0),($845|0),21)|0); + $851 = tempRet0; + $852 = (_i64Add(($850|0),($851|0),($746|0),($747|0))|0); + $853 = tempRet0; + $854 = (_bitshift64Shl(($850|0),($851|0),21)|0); + $855 = tempRet0; + $856 = (_i64Subtract(($844|0),($845|0),($854|0),($855|0))|0); + $857 = tempRet0; + $858 = (_bitshift64Ashr(($852|0),($853|0),21)|0); + $859 = tempRet0; + $860 = (_i64Add(($858|0),($859|0),($754|0),($755|0))|0); + $861 = tempRet0; + $862 = (_bitshift64Shl(($858|0),($859|0),21)|0); + $863 = tempRet0; + $864 = (_i64Subtract(($852|0),($853|0),($862|0),($863|0))|0); + $865 = tempRet0; + $866 = (_bitshift64Ashr(($860|0),($861|0),21)|0); + $867 = tempRet0; + $868 = (_i64Add(($866|0),($867|0),($762|0),($763|0))|0); + $869 = tempRet0; + $870 = (_bitshift64Shl(($866|0),($867|0),21)|0); + $871 = tempRet0; + $872 = (_i64Subtract(($860|0),($861|0),($870|0),($871|0))|0); + $873 = tempRet0; + $874 = (_bitshift64Ashr(($868|0),($869|0),21)|0); + $875 = tempRet0; + $876 = (_i64Add(($874|0),($875|0),($768|0),($769|0))|0); + $877 = tempRet0; + $878 = (_bitshift64Shl(($874|0),($875|0),21)|0); + $879 = tempRet0; + $880 = (_i64Subtract(($868|0),($869|0),($878|0),($879|0))|0); + $881 = tempRet0; + $882 = $800&255; + HEAP8[$s>>0] = $882; + $883 = (_bitshift64Lshr(($800|0),($801|0),8)|0); + $884 = tempRet0; + $885 = $883&255; + $886 = (($s) + 1|0); + HEAP8[$886>>0] = $885; + $887 = (_bitshift64Lshr(($800|0),($801|0),16)|0); + $888 = tempRet0; + $889 = (_bitshift64Shl(($808|0),($809|0),5)|0); + $890 = tempRet0; + $891 = $889 | $887; + $890 | $888; + $892 = $891&255; + HEAP8[$3>>0] = $892; + $893 = (_bitshift64Lshr(($808|0),($809|0),3)|0); + $894 = tempRet0; + $895 = $893&255; + $896 = (($s) + 3|0); + HEAP8[$896>>0] = $895; + $897 = (_bitshift64Lshr(($808|0),($809|0),11)|0); + $898 = tempRet0; + $899 = $897&255; + $900 = (($s) + 4|0); + HEAP8[$900>>0] = $899; + $901 = (_bitshift64Lshr(($808|0),($809|0),19)|0); + $902 = tempRet0; + $903 = (_bitshift64Shl(($816|0),($817|0),2)|0); + $904 = tempRet0; + $905 = $903 | $901; + $904 | $902; + $906 = $905&255; + HEAP8[$9>>0] = $906; + $907 = (_bitshift64Lshr(($816|0),($817|0),6)|0); + $908 = tempRet0; + $909 = $907&255; + $910 = (($s) + 6|0); + HEAP8[$910>>0] = $909; + $911 = (_bitshift64Lshr(($816|0),($817|0),14)|0); + $912 = tempRet0; + $913 = (_bitshift64Shl(($824|0),($825|0),7)|0); + $914 = tempRet0; + $915 = $913 | $911; + $914 | $912; + $916 = $915&255; + HEAP8[$15>>0] = $916; + $917 = (_bitshift64Lshr(($824|0),($825|0),1)|0); + $918 = tempRet0; + $919 = $917&255; + $920 = (($s) + 8|0); + HEAP8[$920>>0] = $919; + $921 = (_bitshift64Lshr(($824|0),($825|0),9)|0); + $922 = tempRet0; + $923 = $921&255; + $924 = (($s) + 9|0); + HEAP8[$924>>0] = $923; + $925 = (_bitshift64Lshr(($824|0),($825|0),17)|0); + $926 = tempRet0; + $927 = (_bitshift64Shl(($832|0),($833|0),4)|0); + $928 = tempRet0; + $929 = $927 | $925; + $928 | $926; + $930 = $929&255; + HEAP8[$21>>0] = $930; + $931 = (_bitshift64Lshr(($832|0),($833|0),4)|0); + $932 = tempRet0; + $933 = $931&255; + $934 = (($s) + 11|0); + HEAP8[$934>>0] = $933; + $935 = (_bitshift64Lshr(($832|0),($833|0),12)|0); + $936 = tempRet0; + $937 = $935&255; + $938 = (($s) + 12|0); + HEAP8[$938>>0] = $937; + $939 = (_bitshift64Lshr(($832|0),($833|0),20)|0); + $940 = tempRet0; + $941 = (_bitshift64Shl(($840|0),($841|0),1)|0); + $942 = tempRet0; + $943 = $941 | $939; + $942 | $940; + $944 = $943&255; + HEAP8[$27>>0] = $944; + $945 = (_bitshift64Lshr(($840|0),($841|0),7)|0); + $946 = tempRet0; + $947 = $945&255; + $948 = (($s) + 14|0); + HEAP8[$948>>0] = $947; + $949 = (_bitshift64Lshr(($840|0),($841|0),15)|0); + $950 = tempRet0; + $951 = (_bitshift64Shl(($848|0),($849|0),6)|0); + $952 = tempRet0; + $953 = $951 | $949; + $952 | $950; + $954 = $953&255; + HEAP8[$33>>0] = $954; + $955 = (_bitshift64Lshr(($848|0),($849|0),2)|0); + $956 = tempRet0; + $957 = $955&255; + $958 = (($s) + 16|0); + HEAP8[$958>>0] = $957; + $959 = (_bitshift64Lshr(($848|0),($849|0),10)|0); + $960 = tempRet0; + $961 = $959&255; + $962 = (($s) + 17|0); + HEAP8[$962>>0] = $961; + $963 = (_bitshift64Lshr(($848|0),($849|0),18)|0); + $964 = tempRet0; + $965 = (_bitshift64Shl(($856|0),($857|0),3)|0); + $966 = tempRet0; + $967 = $965 | $963; + $966 | $964; + $968 = $967&255; + HEAP8[$39>>0] = $968; + $969 = (_bitshift64Lshr(($856|0),($857|0),5)|0); + $970 = tempRet0; + $971 = $969&255; + $972 = (($s) + 19|0); + HEAP8[$972>>0] = $971; + $973 = (_bitshift64Lshr(($856|0),($857|0),13)|0); + $974 = tempRet0; + $975 = $973&255; + $976 = (($s) + 20|0); + HEAP8[$976>>0] = $975; + $977 = $864&255; + HEAP8[$45>>0] = $977; + $978 = (_bitshift64Lshr(($864|0),($865|0),8)|0); + $979 = tempRet0; + $980 = $978&255; + $981 = (($s) + 22|0); + HEAP8[$981>>0] = $980; + $982 = (_bitshift64Lshr(($864|0),($865|0),16)|0); + $983 = tempRet0; + $984 = (_bitshift64Shl(($872|0),($873|0),5)|0); + $985 = tempRet0; + $986 = $984 | $982; + $985 | $983; + $987 = $986&255; + HEAP8[$49>>0] = $987; + $988 = (_bitshift64Lshr(($872|0),($873|0),3)|0); + $989 = tempRet0; + $990 = $988&255; + $991 = (($s) + 24|0); + HEAP8[$991>>0] = $990; + $992 = (_bitshift64Lshr(($872|0),($873|0),11)|0); + $993 = tempRet0; + $994 = $992&255; + $995 = (($s) + 25|0); + HEAP8[$995>>0] = $994; + $996 = (_bitshift64Lshr(($872|0),($873|0),19)|0); + $997 = tempRet0; + $998 = (_bitshift64Shl(($880|0),($881|0),2)|0); + $999 = tempRet0; + $1000 = $998 | $996; + $999 | $997; + $1001 = $1000&255; + HEAP8[$55>>0] = $1001; + $1002 = (_bitshift64Lshr(($880|0),($881|0),6)|0); + $1003 = tempRet0; + $1004 = $1002&255; + $1005 = (($s) + 27|0); + HEAP8[$1005>>0] = $1004; + $1006 = (_bitshift64Lshr(($880|0),($881|0),14)|0); + $1007 = tempRet0; + $1008 = (_bitshift64Shl(($876|0),($877|0),7)|0); + $1009 = tempRet0; + $1010 = $1006 | $1008; + $1007 | $1009; + $1011 = $1010&255; + HEAP8[$61>>0] = $1011; + $1012 = (_bitshift64Lshr(($876|0),($877|0),1)|0); + $1013 = tempRet0; + $1014 = $1012&255; + $1015 = (($s) + 29|0); + HEAP8[$1015>>0] = $1014; + $1016 = (_bitshift64Lshr(($876|0),($877|0),9)|0); + $1017 = tempRet0; + $1018 = $1016&255; + $1019 = (($s) + 30|0); + HEAP8[$1019>>0] = $1018; + $1020 = (_bitshift64Lshr(($876|0),($877|0),17)|0); + $1021 = tempRet0; + $1022 = $1020&255; + HEAP8[$67>>0] = $1022; + STACKTOP = sp;return; +} +function _load_351($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + tempRet0 = $14; + STACKTOP = sp;return ($13|0); +} +function _load_452($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + $15 = (($in) + 3|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16&255; + $18 = (_bitshift64Shl(($17|0),0,24)|0); + $19 = tempRet0; + $20 = $13 | $18; + $21 = $14 | $19; + tempRet0 = $21; + STACKTOP = sp;return ($20|0); +} +function _sph_sha512_init($cc) { + $cc = $cc|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + $0 = (($cc) + 128|0); + dest=$0+0|0; src=31840+0|0; stop=dest+64|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + $1 = (($cc) + 192|0); + $2 = $1; + $3 = $2; + HEAP32[$3>>2] = 0; + $4 = (($2) + 4)|0; + $5 = $4; + HEAP32[$5>>2] = 0; + STACKTOP = sp;return; +} +function _sph_sha384($cc,$data,$len) { + $cc = $cc|0; + $data = $data|0; + $len = $len|0; + var $$01$ = 0, $$012 = 0, $$03 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0; + var $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $current$04 = 0, $current$1 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($cc) + 192|0); + $1 = ($len|0)==(0); + if ($1) { + STACKTOP = sp;return; + } + $2 = $0; + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = $4 & 127; + $9 = (($cc) + 128|0); + $$012 = $len;$$03 = $data;$current$04 = $8; + while(1) { + $10 = (128 - ($current$04))|0; + $11 = ($10>>>0)>($$012>>>0); + $$01$ = $11 ? $$012 : $10; + $12 = (($cc) + ($current$04)|0); + _memcpy(($12|0),($$03|0),($$01$|0))|0; + $13 = (($$03) + ($$01$)|0); + $14 = (($$01$) + ($current$04))|0; + $15 = (($$012) - ($$01$))|0; + $16 = ($14|0)==(128); + if ($16) { + _sha3_round($cc,$9); + $current$1 = 0; + } else { + $current$1 = $14; + } + $17 = $0; + $18 = $17; + $19 = HEAP32[$18>>2]|0; + $20 = (($17) + 4)|0; + $21 = $20; + $22 = HEAP32[$21>>2]|0; + $23 = (_i64Add(($19|0),($22|0),($$01$|0),0)|0); + $24 = tempRet0; + $25 = $0; + $26 = $25; + HEAP32[$26>>2] = $23; + $27 = (($25) + 4)|0; + $28 = $27; + HEAP32[$28>>2] = $24; + $29 = ($$012|0)==($$01$|0); + if ($29) { + break; + } else { + $$012 = $15;$$03 = $13;$current$04 = $current$1; + } + } + STACKTOP = sp;return; +} +function _sph_sha512_close($cc,$dst) { + $cc = $cc|0; + $dst = $dst|0; + var label = 0, sp = 0; + sp = STACKTOP; + _sha384_close($cc,$dst,8); + _sph_sha512_init($cc); + STACKTOP = sp;return; +} +function _sha3_round($data,$r) { + $data = $data|0; + $r = $r|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; + var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; + var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; + var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; + var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; + var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; + var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; + var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0; + var $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0; + var $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0; + var $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0; + var $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0; + var $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0; + var $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0; + var $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0; + var $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0; + var $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0; + var $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0; + var $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0; + var $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0; + var $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0; + var $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0; + var $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0; + var $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0; + var $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0; + var $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0; + var $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0; + var $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0; + var $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0; + var $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0; + var $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0; + var $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0; + var $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0; + var $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0; + var $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0; + var $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0; + var $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $W = 0, $exitcond = 0, $exitcond19 = 0, $i$011 = 0, $i$110 = 0, $i$29 = 0; + var label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 640|0; + $W = sp; + $i$011 = 0; + while(1) { + $0 = $i$011 << 3; + $1 = (($data) + ($0)|0); + $2 = (_sph_dec64be_aligned($1)|0); + $3 = tempRet0; + $4 = (($W) + ($i$011<<3)|0); + $5 = $4; + $6 = $5; + HEAP32[$6>>2] = $2; + $7 = (($5) + 4)|0; + $8 = $7; + HEAP32[$8>>2] = $3; + $9 = (($i$011) + 1)|0; + $exitcond19 = ($9|0)==(16); + if ($exitcond19) { + $i$110 = 16; + break; + } else { + $i$011 = $9; + } + } + while(1) { + $10 = (($i$110) + -2)|0; + $11 = (($W) + ($10<<3)|0); + $12 = $11; + $13 = $12; + $14 = HEAP32[$13>>2]|0; + $15 = (($12) + 4)|0; + $16 = $15; + $17 = HEAP32[$16>>2]|0; + $18 = (_bitshift64Shl(($14|0),($17|0),45)|0); + $19 = tempRet0; + $20 = (_bitshift64Lshr(($14|0),($17|0),19)|0); + $21 = tempRet0; + $22 = $18 | $20; + $23 = $19 | $21; + $24 = (_bitshift64Shl(($14|0),($17|0),3)|0); + $25 = tempRet0; + $26 = (_bitshift64Lshr(($14|0),($17|0),61)|0); + $27 = tempRet0; + $28 = $24 | $26; + $29 = $25 | $27; + $30 = (_bitshift64Lshr(($14|0),($17|0),6)|0); + $31 = tempRet0; + $32 = $28 ^ $30; + $33 = $29 ^ $31; + $34 = $32 ^ $22; + $35 = $33 ^ $23; + $36 = (($i$110) + -7)|0; + $37 = (($W) + ($36<<3)|0); + $38 = $37; + $39 = $38; + $40 = HEAP32[$39>>2]|0; + $41 = (($38) + 4)|0; + $42 = $41; + $43 = HEAP32[$42>>2]|0; + $44 = (($i$110) + -15)|0; + $45 = (($W) + ($44<<3)|0); + $46 = $45; + $47 = $46; + $48 = HEAP32[$47>>2]|0; + $49 = (($46) + 4)|0; + $50 = $49; + $51 = HEAP32[$50>>2]|0; + $52 = (_bitshift64Shl(($48|0),($51|0),63)|0); + $53 = tempRet0; + $54 = (_bitshift64Lshr(($48|0),($51|0),1)|0); + $55 = tempRet0; + $56 = $52 | $54; + $57 = $53 | $55; + $58 = (_bitshift64Shl(($48|0),($51|0),56)|0); + $59 = tempRet0; + $60 = (_bitshift64Lshr(($48|0),($51|0),8)|0); + $61 = tempRet0; + $62 = $58 | $60; + $63 = $59 | $61; + $64 = (_bitshift64Lshr(($48|0),($51|0),7)|0); + $65 = tempRet0; + $66 = $62 ^ $64; + $67 = $63 ^ $65; + $68 = $66 ^ $56; + $69 = $67 ^ $57; + $70 = (($i$110) + -16)|0; + $71 = (($W) + ($70<<3)|0); + $72 = $71; + $73 = $72; + $74 = HEAP32[$73>>2]|0; + $75 = (($72) + 4)|0; + $76 = $75; + $77 = HEAP32[$76>>2]|0; + $78 = (_i64Add(($74|0),($77|0),($40|0),($43|0))|0); + $79 = tempRet0; + $80 = (_i64Add(($78|0),($79|0),($34|0),($35|0))|0); + $81 = tempRet0; + $82 = (_i64Add(($80|0),($81|0),($68|0),($69|0))|0); + $83 = tempRet0; + $84 = (($W) + ($i$110<<3)|0); + $85 = $84; + $86 = $85; + HEAP32[$86>>2] = $82; + $87 = (($85) + 4)|0; + $88 = $87; + HEAP32[$88>>2] = $83; + $89 = (($i$110) + 1)|0; + $exitcond = ($89|0)==(80); + if ($exitcond) { + break; + } else { + $i$110 = $89; + } + } + $90 = $r; + $91 = $90; + $92 = HEAP32[$91>>2]|0; + $93 = (($90) + 4)|0; + $94 = $93; + $95 = HEAP32[$94>>2]|0; + $96 = (($r) + 8|0); + $97 = $96; + $98 = $97; + $99 = HEAP32[$98>>2]|0; + $100 = (($97) + 4)|0; + $101 = $100; + $102 = HEAP32[$101>>2]|0; + $103 = (($r) + 16|0); + $104 = $103; + $105 = $104; + $106 = HEAP32[$105>>2]|0; + $107 = (($104) + 4)|0; + $108 = $107; + $109 = HEAP32[$108>>2]|0; + $110 = (($r) + 24|0); + $111 = $110; + $112 = $111; + $113 = HEAP32[$112>>2]|0; + $114 = (($111) + 4)|0; + $115 = $114; + $116 = HEAP32[$115>>2]|0; + $117 = (($r) + 32|0); + $118 = $117; + $119 = $118; + $120 = HEAP32[$119>>2]|0; + $121 = (($118) + 4)|0; + $122 = $121; + $123 = HEAP32[$122>>2]|0; + $124 = (($r) + 40|0); + $125 = $124; + $126 = $125; + $127 = HEAP32[$126>>2]|0; + $128 = (($125) + 4)|0; + $129 = $128; + $130 = HEAP32[$129>>2]|0; + $131 = (($r) + 48|0); + $132 = $131; + $133 = $132; + $134 = HEAP32[$133>>2]|0; + $135 = (($132) + 4)|0; + $136 = $135; + $137 = HEAP32[$136>>2]|0; + $138 = (($r) + 56|0); + $139 = $138; + $140 = $139; + $141 = HEAP32[$140>>2]|0; + $142 = (($139) + 4)|0; + $143 = $142; + $144 = HEAP32[$143>>2]|0; + $145 = $120;$146 = $123;$170 = $134;$171 = $127;$173 = $137;$174 = $130;$193 = $141;$194 = $144;$203 = $92;$204 = $95;$228 = $99;$230 = $102;$234 = $106;$236 = $109;$241 = $113;$242 = $116;$i$29 = 0; + while(1) { + $147 = (_bitshift64Shl(($145|0),($146|0),50)|0); + $148 = tempRet0; + $149 = (_bitshift64Lshr(($145|0),($146|0),14)|0); + $150 = tempRet0; + $151 = $147 | $149; + $152 = $148 | $150; + $153 = (_bitshift64Shl(($145|0),($146|0),46)|0); + $154 = tempRet0; + $155 = (_bitshift64Lshr(($145|0),($146|0),18)|0); + $156 = tempRet0; + $157 = $153 | $155; + $158 = $154 | $156; + $159 = $151 ^ $157; + $160 = $152 ^ $158; + $161 = (_bitshift64Shl(($145|0),($146|0),23)|0); + $162 = tempRet0; + $163 = (_bitshift64Lshr(($145|0),($146|0),41)|0); + $164 = tempRet0; + $165 = $161 | $163; + $166 = $162 | $164; + $167 = $159 ^ $165; + $168 = $160 ^ $166; + $169 = $171 ^ $170; + $172 = $174 ^ $173; + $175 = $169 & $145; + $176 = $172 & $146; + $177 = $175 ^ $170; + $178 = $176 ^ $173; + $179 = (31904 + ($i$29<<3)|0); + $180 = $179; + $181 = $180; + $182 = HEAP32[$181>>2]|0; + $183 = (($180) + 4)|0; + $184 = $183; + $185 = HEAP32[$184>>2]|0; + $186 = (($W) + ($i$29<<3)|0); + $187 = $186; + $188 = $187; + $189 = HEAP32[$188>>2]|0; + $190 = (($187) + 4)|0; + $191 = $190; + $192 = HEAP32[$191>>2]|0; + $195 = (_i64Add(($177|0),($178|0),($193|0),($194|0))|0); + $196 = tempRet0; + $197 = (_i64Add(($195|0),($196|0),($167|0),($168|0))|0); + $198 = tempRet0; + $199 = (_i64Add(($197|0),($198|0),($182|0),($185|0))|0); + $200 = tempRet0; + $201 = (_i64Add(($199|0),($200|0),($189|0),($192|0))|0); + $202 = tempRet0; + $205 = (_bitshift64Shl(($203|0),($204|0),36)|0); + $206 = tempRet0; + $207 = (_bitshift64Lshr(($203|0),($204|0),28)|0); + $208 = tempRet0; + $209 = $205 | $207; + $210 = $206 | $208; + $211 = (_bitshift64Shl(($203|0),($204|0),30)|0); + $212 = tempRet0; + $213 = (_bitshift64Lshr(($203|0),($204|0),34)|0); + $214 = tempRet0; + $215 = $211 | $213; + $216 = $212 | $214; + $217 = $209 ^ $215; + $218 = $210 ^ $216; + $219 = (_bitshift64Shl(($203|0),($204|0),25)|0); + $220 = tempRet0; + $221 = (_bitshift64Lshr(($203|0),($204|0),39)|0); + $222 = tempRet0; + $223 = $219 | $221; + $224 = $220 | $222; + $225 = $217 ^ $223; + $226 = $218 ^ $224; + $227 = $203 & $228; + $229 = $204 & $230; + $231 = $203 | $228; + $232 = $204 | $230; + $233 = $231 & $234; + $235 = $232 & $236; + $237 = $233 | $227; + $238 = $235 | $229; + $239 = (_i64Add(($225|0),($226|0),($237|0),($238|0))|0); + $240 = tempRet0; + $243 = (_i64Add(($201|0),($202|0),($241|0),($242|0))|0); + $244 = tempRet0; + $245 = (_i64Add(($239|0),($240|0),($201|0),($202|0))|0); + $246 = tempRet0; + $247 = (_bitshift64Shl(($243|0),($244|0),50)|0); + $248 = tempRet0; + $249 = (_bitshift64Lshr(($243|0),($244|0),14)|0); + $250 = tempRet0; + $251 = $247 | $249; + $252 = $248 | $250; + $253 = (_bitshift64Shl(($243|0),($244|0),46)|0); + $254 = tempRet0; + $255 = (_bitshift64Lshr(($243|0),($244|0),18)|0); + $256 = tempRet0; + $257 = $253 | $255; + $258 = $254 | $256; + $259 = $251 ^ $257; + $260 = $252 ^ $258; + $261 = (_bitshift64Shl(($243|0),($244|0),23)|0); + $262 = tempRet0; + $263 = (_bitshift64Lshr(($243|0),($244|0),41)|0); + $264 = tempRet0; + $265 = $261 | $263; + $266 = $262 | $264; + $267 = $259 ^ $265; + $268 = $260 ^ $266; + $269 = $145 ^ $171; + $270 = $146 ^ $174; + $271 = $243 & $269; + $272 = $244 & $270; + $273 = $271 ^ $171; + $274 = $272 ^ $174; + $275 = $i$29 | 1; + $276 = (31904 + ($275<<3)|0); + $277 = $276; + $278 = $277; + $279 = HEAP32[$278>>2]|0; + $280 = (($277) + 4)|0; + $281 = $280; + $282 = HEAP32[$281>>2]|0; + $283 = (($W) + ($275<<3)|0); + $284 = $283; + $285 = $284; + $286 = HEAP32[$285>>2]|0; + $287 = (($284) + 4)|0; + $288 = $287; + $289 = HEAP32[$288>>2]|0; + $290 = (_i64Add(($279|0),($282|0),($170|0),($173|0))|0); + $291 = tempRet0; + $292 = (_i64Add(($290|0),($291|0),($286|0),($289|0))|0); + $293 = tempRet0; + $294 = (_i64Add(($292|0),($293|0),($273|0),($274|0))|0); + $295 = tempRet0; + $296 = (_i64Add(($294|0),($295|0),($267|0),($268|0))|0); + $297 = tempRet0; + $298 = (_bitshift64Shl(($245|0),($246|0),36)|0); + $299 = tempRet0; + $300 = (_bitshift64Lshr(($245|0),($246|0),28)|0); + $301 = tempRet0; + $302 = $298 | $300; + $303 = $299 | $301; + $304 = (_bitshift64Shl(($245|0),($246|0),30)|0); + $305 = tempRet0; + $306 = (_bitshift64Lshr(($245|0),($246|0),34)|0); + $307 = tempRet0; + $308 = $304 | $306; + $309 = $305 | $307; + $310 = $302 ^ $308; + $311 = $303 ^ $309; + $312 = (_bitshift64Shl(($245|0),($246|0),25)|0); + $313 = tempRet0; + $314 = (_bitshift64Lshr(($245|0),($246|0),39)|0); + $315 = tempRet0; + $316 = $312 | $314; + $317 = $313 | $315; + $318 = $310 ^ $316; + $319 = $311 ^ $317; + $320 = $245 & $203; + $321 = $246 & $204; + $322 = $245 | $203; + $323 = $246 | $204; + $324 = $322 & $228; + $325 = $323 & $230; + $326 = $324 | $320; + $327 = $325 | $321; + $328 = (_i64Add(($318|0),($319|0),($326|0),($327|0))|0); + $329 = tempRet0; + $330 = (_i64Add(($296|0),($297|0),($234|0),($236|0))|0); + $331 = tempRet0; + $332 = (_i64Add(($328|0),($329|0),($296|0),($297|0))|0); + $333 = tempRet0; + $334 = (_bitshift64Shl(($330|0),($331|0),50)|0); + $335 = tempRet0; + $336 = (_bitshift64Lshr(($330|0),($331|0),14)|0); + $337 = tempRet0; + $338 = $334 | $336; + $339 = $335 | $337; + $340 = (_bitshift64Shl(($330|0),($331|0),46)|0); + $341 = tempRet0; + $342 = (_bitshift64Lshr(($330|0),($331|0),18)|0); + $343 = tempRet0; + $344 = $340 | $342; + $345 = $341 | $343; + $346 = $338 ^ $344; + $347 = $339 ^ $345; + $348 = (_bitshift64Shl(($330|0),($331|0),23)|0); + $349 = tempRet0; + $350 = (_bitshift64Lshr(($330|0),($331|0),41)|0); + $351 = tempRet0; + $352 = $348 | $350; + $353 = $349 | $351; + $354 = $346 ^ $352; + $355 = $347 ^ $353; + $356 = $243 ^ $145; + $357 = $244 ^ $146; + $358 = $330 & $356; + $359 = $331 & $357; + $360 = $358 ^ $145; + $361 = $359 ^ $146; + $362 = $i$29 | 2; + $363 = (31904 + ($362<<3)|0); + $364 = $363; + $365 = $364; + $366 = HEAP32[$365>>2]|0; + $367 = (($364) + 4)|0; + $368 = $367; + $369 = HEAP32[$368>>2]|0; + $370 = (($W) + ($362<<3)|0); + $371 = $370; + $372 = $371; + $373 = HEAP32[$372>>2]|0; + $374 = (($371) + 4)|0; + $375 = $374; + $376 = HEAP32[$375>>2]|0; + $377 = (_i64Add(($366|0),($369|0),($171|0),($174|0))|0); + $378 = tempRet0; + $379 = (_i64Add(($377|0),($378|0),($373|0),($376|0))|0); + $380 = tempRet0; + $381 = (_i64Add(($379|0),($380|0),($360|0),($361|0))|0); + $382 = tempRet0; + $383 = (_i64Add(($381|0),($382|0),($354|0),($355|0))|0); + $384 = tempRet0; + $385 = (_bitshift64Shl(($332|0),($333|0),36)|0); + $386 = tempRet0; + $387 = (_bitshift64Lshr(($332|0),($333|0),28)|0); + $388 = tempRet0; + $389 = $385 | $387; + $390 = $386 | $388; + $391 = (_bitshift64Shl(($332|0),($333|0),30)|0); + $392 = tempRet0; + $393 = (_bitshift64Lshr(($332|0),($333|0),34)|0); + $394 = tempRet0; + $395 = $391 | $393; + $396 = $392 | $394; + $397 = $389 ^ $395; + $398 = $390 ^ $396; + $399 = (_bitshift64Shl(($332|0),($333|0),25)|0); + $400 = tempRet0; + $401 = (_bitshift64Lshr(($332|0),($333|0),39)|0); + $402 = tempRet0; + $403 = $399 | $401; + $404 = $400 | $402; + $405 = $397 ^ $403; + $406 = $398 ^ $404; + $407 = $332 & $245; + $408 = $333 & $246; + $409 = $332 | $245; + $410 = $333 | $246; + $411 = $409 & $203; + $412 = $410 & $204; + $413 = $411 | $407; + $414 = $412 | $408; + $415 = (_i64Add(($405|0),($406|0),($413|0),($414|0))|0); + $416 = tempRet0; + $417 = (_i64Add(($383|0),($384|0),($228|0),($230|0))|0); + $418 = tempRet0; + $419 = (_i64Add(($415|0),($416|0),($383|0),($384|0))|0); + $420 = tempRet0; + $421 = (_bitshift64Shl(($417|0),($418|0),50)|0); + $422 = tempRet0; + $423 = (_bitshift64Lshr(($417|0),($418|0),14)|0); + $424 = tempRet0; + $425 = $421 | $423; + $426 = $422 | $424; + $427 = (_bitshift64Shl(($417|0),($418|0),46)|0); + $428 = tempRet0; + $429 = (_bitshift64Lshr(($417|0),($418|0),18)|0); + $430 = tempRet0; + $431 = $427 | $429; + $432 = $428 | $430; + $433 = $425 ^ $431; + $434 = $426 ^ $432; + $435 = (_bitshift64Shl(($417|0),($418|0),23)|0); + $436 = tempRet0; + $437 = (_bitshift64Lshr(($417|0),($418|0),41)|0); + $438 = tempRet0; + $439 = $435 | $437; + $440 = $436 | $438; + $441 = $433 ^ $439; + $442 = $434 ^ $440; + $443 = $330 ^ $243; + $444 = $331 ^ $244; + $445 = $417 & $443; + $446 = $418 & $444; + $447 = $445 ^ $243; + $448 = $446 ^ $244; + $449 = $i$29 | 3; + $450 = (31904 + ($449<<3)|0); + $451 = $450; + $452 = $451; + $453 = HEAP32[$452>>2]|0; + $454 = (($451) + 4)|0; + $455 = $454; + $456 = HEAP32[$455>>2]|0; + $457 = (($W) + ($449<<3)|0); + $458 = $457; + $459 = $458; + $460 = HEAP32[$459>>2]|0; + $461 = (($458) + 4)|0; + $462 = $461; + $463 = HEAP32[$462>>2]|0; + $464 = (_i64Add(($453|0),($456|0),($145|0),($146|0))|0); + $465 = tempRet0; + $466 = (_i64Add(($464|0),($465|0),($460|0),($463|0))|0); + $467 = tempRet0; + $468 = (_i64Add(($466|0),($467|0),($447|0),($448|0))|0); + $469 = tempRet0; + $470 = (_i64Add(($468|0),($469|0),($441|0),($442|0))|0); + $471 = tempRet0; + $472 = (_bitshift64Shl(($419|0),($420|0),36)|0); + $473 = tempRet0; + $474 = (_bitshift64Lshr(($419|0),($420|0),28)|0); + $475 = tempRet0; + $476 = $472 | $474; + $477 = $473 | $475; + $478 = (_bitshift64Shl(($419|0),($420|0),30)|0); + $479 = tempRet0; + $480 = (_bitshift64Lshr(($419|0),($420|0),34)|0); + $481 = tempRet0; + $482 = $478 | $480; + $483 = $479 | $481; + $484 = $476 ^ $482; + $485 = $477 ^ $483; + $486 = (_bitshift64Shl(($419|0),($420|0),25)|0); + $487 = tempRet0; + $488 = (_bitshift64Lshr(($419|0),($420|0),39)|0); + $489 = tempRet0; + $490 = $486 | $488; + $491 = $487 | $489; + $492 = $484 ^ $490; + $493 = $485 ^ $491; + $494 = $419 & $332; + $495 = $420 & $333; + $496 = $419 | $332; + $497 = $420 | $333; + $498 = $496 & $245; + $499 = $497 & $246; + $500 = $498 | $494; + $501 = $499 | $495; + $502 = (_i64Add(($492|0),($493|0),($500|0),($501|0))|0); + $503 = tempRet0; + $504 = (_i64Add(($470|0),($471|0),($203|0),($204|0))|0); + $505 = tempRet0; + $506 = (_i64Add(($502|0),($503|0),($470|0),($471|0))|0); + $507 = tempRet0; + $508 = (_bitshift64Shl(($504|0),($505|0),50)|0); + $509 = tempRet0; + $510 = (_bitshift64Lshr(($504|0),($505|0),14)|0); + $511 = tempRet0; + $512 = $508 | $510; + $513 = $509 | $511; + $514 = (_bitshift64Shl(($504|0),($505|0),46)|0); + $515 = tempRet0; + $516 = (_bitshift64Lshr(($504|0),($505|0),18)|0); + $517 = tempRet0; + $518 = $514 | $516; + $519 = $515 | $517; + $520 = $512 ^ $518; + $521 = $513 ^ $519; + $522 = (_bitshift64Shl(($504|0),($505|0),23)|0); + $523 = tempRet0; + $524 = (_bitshift64Lshr(($504|0),($505|0),41)|0); + $525 = tempRet0; + $526 = $522 | $524; + $527 = $523 | $525; + $528 = $520 ^ $526; + $529 = $521 ^ $527; + $530 = $417 ^ $330; + $531 = $418 ^ $331; + $532 = $504 & $530; + $533 = $505 & $531; + $534 = $532 ^ $330; + $535 = $533 ^ $331; + $536 = $i$29 | 4; + $537 = (31904 + ($536<<3)|0); + $538 = $537; + $539 = $538; + $540 = HEAP32[$539>>2]|0; + $541 = (($538) + 4)|0; + $542 = $541; + $543 = HEAP32[$542>>2]|0; + $544 = (($W) + ($536<<3)|0); + $545 = $544; + $546 = $545; + $547 = HEAP32[$546>>2]|0; + $548 = (($545) + 4)|0; + $549 = $548; + $550 = HEAP32[$549>>2]|0; + $551 = (_i64Add(($540|0),($543|0),($243|0),($244|0))|0); + $552 = tempRet0; + $553 = (_i64Add(($551|0),($552|0),($547|0),($550|0))|0); + $554 = tempRet0; + $555 = (_i64Add(($553|0),($554|0),($534|0),($535|0))|0); + $556 = tempRet0; + $557 = (_i64Add(($555|0),($556|0),($528|0),($529|0))|0); + $558 = tempRet0; + $559 = (_bitshift64Shl(($506|0),($507|0),36)|0); + $560 = tempRet0; + $561 = (_bitshift64Lshr(($506|0),($507|0),28)|0); + $562 = tempRet0; + $563 = $559 | $561; + $564 = $560 | $562; + $565 = (_bitshift64Shl(($506|0),($507|0),30)|0); + $566 = tempRet0; + $567 = (_bitshift64Lshr(($506|0),($507|0),34)|0); + $568 = tempRet0; + $569 = $565 | $567; + $570 = $566 | $568; + $571 = $563 ^ $569; + $572 = $564 ^ $570; + $573 = (_bitshift64Shl(($506|0),($507|0),25)|0); + $574 = tempRet0; + $575 = (_bitshift64Lshr(($506|0),($507|0),39)|0); + $576 = tempRet0; + $577 = $573 | $575; + $578 = $574 | $576; + $579 = $571 ^ $577; + $580 = $572 ^ $578; + $581 = $506 & $419; + $582 = $507 & $420; + $583 = $506 | $419; + $584 = $507 | $420; + $585 = $583 & $332; + $586 = $584 & $333; + $587 = $585 | $581; + $588 = $586 | $582; + $589 = (_i64Add(($579|0),($580|0),($587|0),($588|0))|0); + $590 = tempRet0; + $591 = (_i64Add(($557|0),($558|0),($245|0),($246|0))|0); + $592 = tempRet0; + $593 = (_i64Add(($589|0),($590|0),($557|0),($558|0))|0); + $594 = tempRet0; + $595 = (_bitshift64Shl(($591|0),($592|0),50)|0); + $596 = tempRet0; + $597 = (_bitshift64Lshr(($591|0),($592|0),14)|0); + $598 = tempRet0; + $599 = $595 | $597; + $600 = $596 | $598; + $601 = (_bitshift64Shl(($591|0),($592|0),46)|0); + $602 = tempRet0; + $603 = (_bitshift64Lshr(($591|0),($592|0),18)|0); + $604 = tempRet0; + $605 = $601 | $603; + $606 = $602 | $604; + $607 = $599 ^ $605; + $608 = $600 ^ $606; + $609 = (_bitshift64Shl(($591|0),($592|0),23)|0); + $610 = tempRet0; + $611 = (_bitshift64Lshr(($591|0),($592|0),41)|0); + $612 = tempRet0; + $613 = $609 | $611; + $614 = $610 | $612; + $615 = $607 ^ $613; + $616 = $608 ^ $614; + $617 = $504 ^ $417; + $618 = $505 ^ $418; + $619 = $591 & $617; + $620 = $592 & $618; + $621 = $619 ^ $417; + $622 = $620 ^ $418; + $623 = $i$29 | 5; + $624 = (31904 + ($623<<3)|0); + $625 = $624; + $626 = $625; + $627 = HEAP32[$626>>2]|0; + $628 = (($625) + 4)|0; + $629 = $628; + $630 = HEAP32[$629>>2]|0; + $631 = (($W) + ($623<<3)|0); + $632 = $631; + $633 = $632; + $634 = HEAP32[$633>>2]|0; + $635 = (($632) + 4)|0; + $636 = $635; + $637 = HEAP32[$636>>2]|0; + $638 = (_i64Add(($627|0),($630|0),($330|0),($331|0))|0); + $639 = tempRet0; + $640 = (_i64Add(($638|0),($639|0),($634|0),($637|0))|0); + $641 = tempRet0; + $642 = (_i64Add(($640|0),($641|0),($621|0),($622|0))|0); + $643 = tempRet0; + $644 = (_i64Add(($642|0),($643|0),($615|0),($616|0))|0); + $645 = tempRet0; + $646 = (_bitshift64Shl(($593|0),($594|0),36)|0); + $647 = tempRet0; + $648 = (_bitshift64Lshr(($593|0),($594|0),28)|0); + $649 = tempRet0; + $650 = $646 | $648; + $651 = $647 | $649; + $652 = (_bitshift64Shl(($593|0),($594|0),30)|0); + $653 = tempRet0; + $654 = (_bitshift64Lshr(($593|0),($594|0),34)|0); + $655 = tempRet0; + $656 = $652 | $654; + $657 = $653 | $655; + $658 = $650 ^ $656; + $659 = $651 ^ $657; + $660 = (_bitshift64Shl(($593|0),($594|0),25)|0); + $661 = tempRet0; + $662 = (_bitshift64Lshr(($593|0),($594|0),39)|0); + $663 = tempRet0; + $664 = $660 | $662; + $665 = $661 | $663; + $666 = $658 ^ $664; + $667 = $659 ^ $665; + $668 = $593 & $506; + $669 = $594 & $507; + $670 = $593 | $506; + $671 = $594 | $507; + $672 = $670 & $419; + $673 = $671 & $420; + $674 = $672 | $668; + $675 = $673 | $669; + $676 = (_i64Add(($666|0),($667|0),($674|0),($675|0))|0); + $677 = tempRet0; + $678 = (_i64Add(($644|0),($645|0),($332|0),($333|0))|0); + $679 = tempRet0; + $680 = (_i64Add(($676|0),($677|0),($644|0),($645|0))|0); + $681 = tempRet0; + $682 = (_bitshift64Shl(($678|0),($679|0),50)|0); + $683 = tempRet0; + $684 = (_bitshift64Lshr(($678|0),($679|0),14)|0); + $685 = tempRet0; + $686 = $682 | $684; + $687 = $683 | $685; + $688 = (_bitshift64Shl(($678|0),($679|0),46)|0); + $689 = tempRet0; + $690 = (_bitshift64Lshr(($678|0),($679|0),18)|0); + $691 = tempRet0; + $692 = $688 | $690; + $693 = $689 | $691; + $694 = $686 ^ $692; + $695 = $687 ^ $693; + $696 = (_bitshift64Shl(($678|0),($679|0),23)|0); + $697 = tempRet0; + $698 = (_bitshift64Lshr(($678|0),($679|0),41)|0); + $699 = tempRet0; + $700 = $696 | $698; + $701 = $697 | $699; + $702 = $694 ^ $700; + $703 = $695 ^ $701; + $704 = $591 ^ $504; + $705 = $592 ^ $505; + $706 = $678 & $704; + $707 = $679 & $705; + $708 = $706 ^ $504; + $709 = $707 ^ $505; + $710 = $i$29 | 6; + $711 = (31904 + ($710<<3)|0); + $712 = $711; + $713 = $712; + $714 = HEAP32[$713>>2]|0; + $715 = (($712) + 4)|0; + $716 = $715; + $717 = HEAP32[$716>>2]|0; + $718 = (($W) + ($710<<3)|0); + $719 = $718; + $720 = $719; + $721 = HEAP32[$720>>2]|0; + $722 = (($719) + 4)|0; + $723 = $722; + $724 = HEAP32[$723>>2]|0; + $725 = (_i64Add(($721|0),($724|0),($714|0),($717|0))|0); + $726 = tempRet0; + $727 = (_i64Add(($725|0),($726|0),($417|0),($418|0))|0); + $728 = tempRet0; + $729 = (_i64Add(($727|0),($728|0),($708|0),($709|0))|0); + $730 = tempRet0; + $731 = (_i64Add(($729|0),($730|0),($702|0),($703|0))|0); + $732 = tempRet0; + $733 = (_bitshift64Shl(($680|0),($681|0),36)|0); + $734 = tempRet0; + $735 = (_bitshift64Lshr(($680|0),($681|0),28)|0); + $736 = tempRet0; + $737 = $733 | $735; + $738 = $734 | $736; + $739 = (_bitshift64Shl(($680|0),($681|0),30)|0); + $740 = tempRet0; + $741 = (_bitshift64Lshr(($680|0),($681|0),34)|0); + $742 = tempRet0; + $743 = $739 | $741; + $744 = $740 | $742; + $745 = $737 ^ $743; + $746 = $738 ^ $744; + $747 = (_bitshift64Shl(($680|0),($681|0),25)|0); + $748 = tempRet0; + $749 = (_bitshift64Lshr(($680|0),($681|0),39)|0); + $750 = tempRet0; + $751 = $747 | $749; + $752 = $748 | $750; + $753 = $745 ^ $751; + $754 = $746 ^ $752; + $755 = $680 & $593; + $756 = $681 & $594; + $757 = $680 | $593; + $758 = $681 | $594; + $759 = $757 & $506; + $760 = $758 & $507; + $761 = $759 | $755; + $762 = $760 | $756; + $763 = (_i64Add(($753|0),($754|0),($761|0),($762|0))|0); + $764 = tempRet0; + $765 = (_i64Add(($731|0),($732|0),($419|0),($420|0))|0); + $766 = tempRet0; + $767 = (_i64Add(($763|0),($764|0),($731|0),($732|0))|0); + $768 = tempRet0; + $769 = (_bitshift64Shl(($765|0),($766|0),50)|0); + $770 = tempRet0; + $771 = (_bitshift64Lshr(($765|0),($766|0),14)|0); + $772 = tempRet0; + $773 = $769 | $771; + $774 = $770 | $772; + $775 = (_bitshift64Shl(($765|0),($766|0),46)|0); + $776 = tempRet0; + $777 = (_bitshift64Lshr(($765|0),($766|0),18)|0); + $778 = tempRet0; + $779 = $775 | $777; + $780 = $776 | $778; + $781 = $773 ^ $779; + $782 = $774 ^ $780; + $783 = (_bitshift64Shl(($765|0),($766|0),23)|0); + $784 = tempRet0; + $785 = (_bitshift64Lshr(($765|0),($766|0),41)|0); + $786 = tempRet0; + $787 = $783 | $785; + $788 = $784 | $786; + $789 = $781 ^ $787; + $790 = $782 ^ $788; + $791 = $678 ^ $591; + $792 = $679 ^ $592; + $793 = $765 & $791; + $794 = $766 & $792; + $795 = $793 ^ $591; + $796 = $794 ^ $592; + $797 = $i$29 | 7; + $798 = (31904 + ($797<<3)|0); + $799 = $798; + $800 = $799; + $801 = HEAP32[$800>>2]|0; + $802 = (($799) + 4)|0; + $803 = $802; + $804 = HEAP32[$803>>2]|0; + $805 = (($W) + ($797<<3)|0); + $806 = $805; + $807 = $806; + $808 = HEAP32[$807>>2]|0; + $809 = (($806) + 4)|0; + $810 = $809; + $811 = HEAP32[$810>>2]|0; + $812 = (_i64Add(($808|0),($811|0),($801|0),($804|0))|0); + $813 = tempRet0; + $814 = (_i64Add(($812|0),($813|0),($504|0),($505|0))|0); + $815 = tempRet0; + $816 = (_i64Add(($814|0),($815|0),($795|0),($796|0))|0); + $817 = tempRet0; + $818 = (_i64Add(($816|0),($817|0),($789|0),($790|0))|0); + $819 = tempRet0; + $820 = (_bitshift64Shl(($767|0),($768|0),36)|0); + $821 = tempRet0; + $822 = (_bitshift64Lshr(($767|0),($768|0),28)|0); + $823 = tempRet0; + $824 = $820 | $822; + $825 = $821 | $823; + $826 = (_bitshift64Shl(($767|0),($768|0),30)|0); + $827 = tempRet0; + $828 = (_bitshift64Lshr(($767|0),($768|0),34)|0); + $829 = tempRet0; + $830 = $826 | $828; + $831 = $827 | $829; + $832 = $824 ^ $830; + $833 = $825 ^ $831; + $834 = (_bitshift64Shl(($767|0),($768|0),25)|0); + $835 = tempRet0; + $836 = (_bitshift64Lshr(($767|0),($768|0),39)|0); + $837 = tempRet0; + $838 = $834 | $836; + $839 = $835 | $837; + $840 = $832 ^ $838; + $841 = $833 ^ $839; + $842 = $767 & $680; + $843 = $768 & $681; + $844 = $767 | $680; + $845 = $768 | $681; + $846 = $844 & $593; + $847 = $845 & $594; + $848 = $846 | $842; + $849 = $847 | $843; + $850 = (_i64Add(($840|0),($841|0),($848|0),($849|0))|0); + $851 = tempRet0; + $852 = (_i64Add(($818|0),($819|0),($506|0),($507|0))|0); + $853 = tempRet0; + $854 = (_i64Add(($850|0),($851|0),($818|0),($819|0))|0); + $855 = tempRet0; + $856 = (($i$29) + 8)|0; + $857 = ($856|0)<(80); + if ($857) { + $145 = $852;$146 = $853;$170 = $678;$171 = $765;$173 = $679;$174 = $766;$193 = $591;$194 = $592;$203 = $854;$204 = $855;$228 = $767;$230 = $768;$234 = $680;$236 = $681;$241 = $593;$242 = $594;$i$29 = $856; + } else { + break; + } + } + $858 = $r; + $859 = $858; + $860 = HEAP32[$859>>2]|0; + $861 = (($858) + 4)|0; + $862 = $861; + $863 = HEAP32[$862>>2]|0; + $864 = (_i64Add(($860|0),($863|0),($854|0),($855|0))|0); + $865 = tempRet0; + $866 = $r; + $867 = $866; + HEAP32[$867>>2] = $864; + $868 = (($866) + 4)|0; + $869 = $868; + HEAP32[$869>>2] = $865; + $870 = $96; + $871 = $870; + $872 = HEAP32[$871>>2]|0; + $873 = (($870) + 4)|0; + $874 = $873; + $875 = HEAP32[$874>>2]|0; + $876 = (_i64Add(($872|0),($875|0),($767|0),($768|0))|0); + $877 = tempRet0; + $878 = $96; + $879 = $878; + HEAP32[$879>>2] = $876; + $880 = (($878) + 4)|0; + $881 = $880; + HEAP32[$881>>2] = $877; + $882 = $103; + $883 = $882; + $884 = HEAP32[$883>>2]|0; + $885 = (($882) + 4)|0; + $886 = $885; + $887 = HEAP32[$886>>2]|0; + $888 = (_i64Add(($884|0),($887|0),($680|0),($681|0))|0); + $889 = tempRet0; + $890 = $103; + $891 = $890; + HEAP32[$891>>2] = $888; + $892 = (($890) + 4)|0; + $893 = $892; + HEAP32[$893>>2] = $889; + $894 = $110; + $895 = $894; + $896 = HEAP32[$895>>2]|0; + $897 = (($894) + 4)|0; + $898 = $897; + $899 = HEAP32[$898>>2]|0; + $900 = (_i64Add(($896|0),($899|0),($593|0),($594|0))|0); + $901 = tempRet0; + $902 = $110; + $903 = $902; + HEAP32[$903>>2] = $900; + $904 = (($902) + 4)|0; + $905 = $904; + HEAP32[$905>>2] = $901; + $906 = $117; + $907 = $906; + $908 = HEAP32[$907>>2]|0; + $909 = (($906) + 4)|0; + $910 = $909; + $911 = HEAP32[$910>>2]|0; + $912 = (_i64Add(($908|0),($911|0),($852|0),($853|0))|0); + $913 = tempRet0; + $914 = $117; + $915 = $914; + HEAP32[$915>>2] = $912; + $916 = (($914) + 4)|0; + $917 = $916; + HEAP32[$917>>2] = $913; + $918 = $124; + $919 = $918; + $920 = HEAP32[$919>>2]|0; + $921 = (($918) + 4)|0; + $922 = $921; + $923 = HEAP32[$922>>2]|0; + $924 = (_i64Add(($920|0),($923|0),($765|0),($766|0))|0); + $925 = tempRet0; + $926 = $124; + $927 = $926; + HEAP32[$927>>2] = $924; + $928 = (($926) + 4)|0; + $929 = $928; + HEAP32[$929>>2] = $925; + $930 = $131; + $931 = $930; + $932 = HEAP32[$931>>2]|0; + $933 = (($930) + 4)|0; + $934 = $933; + $935 = HEAP32[$934>>2]|0; + $936 = (_i64Add(($932|0),($935|0),($678|0),($679|0))|0); + $937 = tempRet0; + $938 = $131; + $939 = $938; + HEAP32[$939>>2] = $936; + $940 = (($938) + 4)|0; + $941 = $940; + HEAP32[$941>>2] = $937; + $942 = $138; + $943 = $942; + $944 = HEAP32[$943>>2]|0; + $945 = (($942) + 4)|0; + $946 = $945; + $947 = HEAP32[$946>>2]|0; + $948 = (_i64Add(($944|0),($947|0),($591|0),($592|0))|0); + $949 = tempRet0; + $950 = $138; + $951 = $950; + HEAP32[$951>>2] = $948; + $952 = (($950) + 4)|0; + $953 = $952; + HEAP32[$953>>2] = $949; + STACKTOP = sp;return; +} +function _sha384_close($cc,$dst,$rnum) { + $cc = $cc|0; + $dst = $dst|0; + $rnum = $rnum|0; + var label = 0, sp = 0; + sp = STACKTOP; + _sha384_addbits_and_close($cc,0,0,$dst,$rnum); + STACKTOP = sp;return; +} +function _sha384_addbits_and_close($cc,$ub,$n,$dst,$rnum) { + $cc = $cc|0; + $ub = $ub|0; + $n = $n|0; + $dst = $dst|0; + $rnum = $rnum|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $exitcond = 0, $u$01 = 0, dest = 0, label = 0, sp = 0, stop = 0; + sp = STACKTOP; + $0 = (($cc) + 192|0); + $1 = $0; + $2 = $1; + $3 = HEAP32[$2>>2]|0; + $4 = (($1) + 4)|0; + $5 = $4; + $6 = HEAP32[$5>>2]|0; + $7 = $3 & 127; + $8 = 128 >>> $n; + $9 = (0 - ($8))|0; + $10 = $9 & $ub; + $11 = $10 | $8; + $12 = $11&255; + $13 = (($7) + 1)|0; + $14 = (($cc) + ($7)|0); + HEAP8[$14>>0] = $12; + $15 = ($13>>>0)>(112); + $16 = (($cc) + ($13)|0); + if ($15) { + $17 = $7 ^ 127; + _memset(($16|0),0,($17|0))|0; + $18 = (($cc) + 128|0); + _sha3_round($cc,$18); + dest=$cc+0|0; stop=dest+112|0; do { HEAP8[dest>>0]=0|0; dest=dest+1|0; } while ((dest|0) < (stop|0)); + } else { + $19 = (111 - ($7))|0; + _memset(($16|0),0,($19|0))|0; + } + $20 = (($cc) + 112|0); + $21 = $0; + $22 = $21; + $23 = HEAP32[$22>>2]|0; + $24 = (($21) + 4)|0; + $25 = $24; + $26 = HEAP32[$25>>2]|0; + $27 = (_bitshift64Lshr(($23|0),($26|0),61)|0); + $28 = tempRet0; + _sph_enc64be_aligned($20,$27,$28); + $29 = (($cc) + 120|0); + $30 = $0; + $31 = $30; + $32 = HEAP32[$31>>2]|0; + $33 = (($30) + 4)|0; + $34 = $33; + $35 = HEAP32[$34>>2]|0; + $36 = (_bitshift64Shl(($32|0),($35|0),3)|0); + $37 = tempRet0; + $38 = (_i64Add(($36|0),($37|0),($n|0),0)|0); + $39 = tempRet0; + _sph_enc64be_aligned($29,$38,$39); + $40 = (($cc) + 128|0); + _sha3_round($cc,$40); + $41 = ($rnum|0)==(0); + if ($41) { + STACKTOP = sp;return; + } else { + $u$01 = 0; + } + while(1) { + $42 = $u$01 << 3; + $43 = (($dst) + ($42)|0); + $44 = (($40) + ($u$01<<3)|0); + $45 = $44; + $46 = $45; + $47 = HEAP32[$46>>2]|0; + $48 = (($45) + 4)|0; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + _sph_enc64be($43,$47,$50); + $51 = (($u$01) + 1)|0; + $exitcond = ($51|0)==($rnum|0); + if ($exitcond) { + break; + } else { + $u$01 = $51; + } + } + STACKTOP = sp;return; +} +function _sph_dec64be_aligned($src) { + $src = $src|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$src>>0]|0; + $1 = $0&255; + $2 = (_bitshift64Shl(($1|0),0,56)|0); + $3 = tempRet0; + $4 = (($src) + 1|0); + $5 = HEAP8[$4>>0]|0; + $6 = $5&255; + $7 = (_bitshift64Shl(($6|0),0,48)|0); + $8 = tempRet0; + $9 = $7 | $2; + $10 = $8 | $3; + $11 = (($src) + 2|0); + $12 = HEAP8[$11>>0]|0; + $13 = $12&255; + $14 = (_bitshift64Shl(($13|0),0,40)|0); + $15 = tempRet0; + $16 = $9 | $14; + $17 = $10 | $15; + $18 = (($src) + 3|0); + $19 = HEAP8[$18>>0]|0; + $20 = $19&255; + $21 = $17 | $20; + $22 = (($src) + 4|0); + $23 = HEAP8[$22>>0]|0; + $24 = $23&255; + $25 = (_bitshift64Shl(($24|0),0,24)|0); + $26 = tempRet0; + $27 = $16 | $25; + $28 = $21 | $26; + $29 = (($src) + 5|0); + $30 = HEAP8[$29>>0]|0; + $31 = $30&255; + $32 = (_bitshift64Shl(($31|0),0,16)|0); + $33 = tempRet0; + $34 = $27 | $32; + $35 = $28 | $33; + $36 = (($src) + 6|0); + $37 = HEAP8[$36>>0]|0; + $38 = $37&255; + $39 = (_bitshift64Shl(($38|0),0,8)|0); + $40 = tempRet0; + $41 = $34 | $39; + $42 = $35 | $40; + $43 = (($src) + 7|0); + $44 = HEAP8[$43>>0]|0; + $45 = $44&255; + $46 = $41 | $45; + tempRet0 = $42; + STACKTOP = sp;return ($46|0); +} +function _sph_enc64be_aligned($dst,$0,$1) { + $dst = $dst|0; + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = (_bitshift64Lshr(($0|0),($1|0),56)|0); + $3 = tempRet0; + $4 = $2&255; + HEAP8[$dst>>0] = $4; + $5 = (_bitshift64Lshr(($0|0),($1|0),48)|0); + $6 = tempRet0; + $7 = $5&255; + $8 = (($dst) + 1|0); + HEAP8[$8>>0] = $7; + $9 = (_bitshift64Lshr(($0|0),($1|0),40)|0); + $10 = tempRet0; + $11 = $9&255; + $12 = (($dst) + 2|0); + HEAP8[$12>>0] = $11; + $13 = $1&255; + $14 = (($dst) + 3|0); + HEAP8[$14>>0] = $13; + $15 = (_bitshift64Lshr(($0|0),($1|0),24)|0); + $16 = tempRet0; + $17 = $15&255; + $18 = (($dst) + 4|0); + HEAP8[$18>>0] = $17; + $19 = (_bitshift64Lshr(($0|0),($1|0),16)|0); + $20 = tempRet0; + $21 = $19&255; + $22 = (($dst) + 5|0); + HEAP8[$22>>0] = $21; + $23 = (_bitshift64Lshr(($0|0),($1|0),8)|0); + $24 = tempRet0; + $25 = $23&255; + $26 = (($dst) + 6|0); + HEAP8[$26>>0] = $25; + $27 = $0&255; + $28 = (($dst) + 7|0); + HEAP8[$28>>0] = $27; + STACKTOP = sp;return; +} +function _sph_enc64be($dst,$0,$1) { + $dst = $dst|0; + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = (_bitshift64Lshr(($0|0),($1|0),56)|0); + $3 = tempRet0; + $4 = $2&255; + HEAP8[$dst>>0] = $4; + $5 = (_bitshift64Lshr(($0|0),($1|0),48)|0); + $6 = tempRet0; + $7 = $5&255; + $8 = (($dst) + 1|0); + HEAP8[$8>>0] = $7; + $9 = (_bitshift64Lshr(($0|0),($1|0),40)|0); + $10 = tempRet0; + $11 = $9&255; + $12 = (($dst) + 2|0); + HEAP8[$12>>0] = $11; + $13 = $1&255; + $14 = (($dst) + 3|0); + HEAP8[$14>>0] = $13; + $15 = (_bitshift64Lshr(($0|0),($1|0),24)|0); + $16 = tempRet0; + $17 = $15&255; + $18 = (($dst) + 4|0); + HEAP8[$18>>0] = $17; + $19 = (_bitshift64Lshr(($0|0),($1|0),16)|0); + $20 = tempRet0; + $21 = $19&255; + $22 = (($dst) + 5|0); + HEAP8[$22>>0] = $21; + $23 = (_bitshift64Lshr(($0|0),($1|0),8)|0); + $24 = tempRet0; + $25 = $23&255; + $26 = (($dst) + 6|0); + HEAP8[$26>>0] = $25; + $27 = $0&255; + $28 = (($dst) + 7|0); + HEAP8[$28>>0] = $27; + STACKTOP = sp;return; +} +function _malloc($bytes) { + $bytes = $bytes|0; + var $$pre = 0, $$pre$i = 0, $$pre$i$i = 0, $$pre$i23$i = 0, $$pre$i25 = 0, $$pre$phi$i$iZ2D = 0, $$pre$phi$i24$iZ2D = 0, $$pre$phi$i26Z2D = 0, $$pre$phi$iZ2D = 0, $$pre$phi59$i$iZ2D = 0, $$pre$phiZ2D = 0, $$pre105 = 0, $$pre58$i$i = 0, $$rsize$0$i = 0, $$rsize$3$i = 0, $$sum = 0, $$sum$i$i = 0, $$sum$i$i$i = 0, $$sum$i12$i = 0, $$sum$i13$i = 0; + var $$sum$i16$i = 0, $$sum$i19$i = 0, $$sum$i2338 = 0, $$sum$i32 = 0, $$sum$i39 = 0, $$sum1 = 0, $$sum1$i = 0, $$sum1$i$i = 0, $$sum1$i14$i = 0, $$sum1$i20$i = 0, $$sum1$i24 = 0, $$sum10 = 0, $$sum10$i = 0, $$sum10$i$i = 0, $$sum10$pre$i$i = 0, $$sum102$i = 0, $$sum103$i = 0, $$sum104$i = 0, $$sum105$i = 0, $$sum106$i = 0; + var $$sum107$i = 0, $$sum108$i = 0, $$sum109$i = 0, $$sum11$i = 0, $$sum11$i$i = 0, $$sum11$i22$i = 0, $$sum110$i = 0, $$sum111$i = 0, $$sum1112 = 0, $$sum112$i = 0, $$sum113$i = 0, $$sum114$i = 0, $$sum115$i = 0, $$sum12$i = 0, $$sum12$i$i = 0, $$sum13$i = 0, $$sum13$i$i = 0, $$sum14$i$i = 0, $$sum14$pre$i = 0, $$sum15$i = 0; + var $$sum15$i$i = 0, $$sum16$i = 0, $$sum16$i$i = 0, $$sum17$i = 0, $$sum17$i$i = 0, $$sum18$i = 0, $$sum1819$i$i = 0, $$sum2 = 0, $$sum2$i = 0, $$sum2$i$i = 0, $$sum2$i$i$i = 0, $$sum2$i15$i = 0, $$sum2$i17$i = 0, $$sum2$i21$i = 0, $$sum2$pre$i = 0, $$sum20$i$i = 0, $$sum21$i$i = 0, $$sum22$i$i = 0, $$sum23$i$i = 0, $$sum24$i$i = 0; + var $$sum25$i$i = 0, $$sum26$pre$i$i = 0, $$sum27$i$i = 0, $$sum28$i$i = 0, $$sum29$i$i = 0, $$sum3$i = 0, $$sum3$i$i = 0, $$sum3$i27 = 0, $$sum30$i$i = 0, $$sum3132$i$i = 0, $$sum34$i$i = 0, $$sum3536$i$i = 0, $$sum3738$i$i = 0, $$sum39$i$i = 0, $$sum4 = 0, $$sum4$i = 0, $$sum4$i28 = 0, $$sum40$i$i = 0, $$sum41$i$i = 0, $$sum42$i$i = 0; + var $$sum5$i = 0, $$sum5$i$i = 0, $$sum56 = 0, $$sum6$i = 0, $$sum67$i$i = 0, $$sum7$i = 0, $$sum8$i = 0, $$sum8$pre = 0, $$sum9 = 0, $$sum9$i = 0, $$sum9$i$i = 0, $$tsize$1$i = 0, $$v$0$i = 0, $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0; + var $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0; + var $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0; + var $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0; + var $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0, $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $108 = 0; + var $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0; + var $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0; + var $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0; + var $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0; + var $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0; + var $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0; + var $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0; + var $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0; + var $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0; + var $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0; + var $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0; + var $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0; + var $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0; + var $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0; + var $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0; + var $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0; + var $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0; + var $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0; + var $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0; + var $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0; + var $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0; + var $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0; + var $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0; + var $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0; + var $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0; + var $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0; + var $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0; + var $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0; + var $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0; + var $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0; + var $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0; + var $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0; + var $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0; + var $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0; + var $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0; + var $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0; + var $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0; + var $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0; + var $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0; + var $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0; + var $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0; + var $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0; + var $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0; + var $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0; + var $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0; + var $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0; + var $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0; + var $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0; + var $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0; + var $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, $F$0$i$i = 0, $F1$0$i = 0, $F4$0 = 0, $F4$0$i$i = 0, $F5$0$i = 0, $I1$0$c$i$i = 0, $I1$0$i$i = 0, $I7$0$i = 0, $I7$0$i$i = 0, $K12$027$i = 0, $K2$015$i$i = 0, $K8$053$i$i = 0; + var $R$0$i = 0, $R$0$i$i = 0, $R$0$i18 = 0, $R$1$i = 0, $R$1$i$i = 0, $R$1$i20 = 0, $RP$0$i = 0, $RP$0$i$i = 0, $RP$0$i17 = 0, $T$0$lcssa$i = 0, $T$0$lcssa$i$i = 0, $T$0$lcssa$i26$i = 0, $T$014$i$i = 0, $T$026$i = 0, $T$052$i$i = 0, $br$0$i = 0, $br$030$i = 0, $cond$i = 0, $cond$i$i = 0, $cond$i21 = 0; + var $exitcond$i$i = 0, $i$02$i$i = 0, $idx$0$i = 0, $mem$0 = 0, $nb$0 = 0, $oldfirst$0$i$i = 0, $or$cond$i = 0, $or$cond$i$i = 0, $or$cond$i27$i = 0, $or$cond$i29 = 0, $or$cond1$i = 0, $or$cond19$i = 0, $or$cond2$i = 0, $or$cond24$i = 0, $or$cond3$i = 0, $or$cond4$i = 0, $or$cond47$i = 0, $or$cond5$i = 0, $or$cond6$i = 0, $or$cond8$i = 0; + var $qsize$0$i$i = 0, $rsize$0$i = 0, $rsize$0$i15 = 0, $rsize$1$i = 0, $rsize$2$i = 0, $rsize$3$lcssa$i = 0, $rsize$331$i = 0, $rst$0$i = 0, $rst$1$i = 0, $sizebits$0$i = 0, $sp$0$i$i = 0, $sp$0$i$i$i = 0, $sp$073$i = 0, $sp$166$i = 0, $ssize$0$i = 0, $ssize$1$i = 0, $ssize$129$i = 0, $ssize$2$i = 0, $t$0$i = 0, $t$0$i14 = 0; + var $t$1$i = 0, $t$2$ph$i = 0, $t$2$v$3$i = 0, $t$230$i = 0, $tbase$245$i = 0, $tsize$03141$i = 0, $tsize$1$i = 0, $tsize$244$i = 0, $v$0$i = 0, $v$0$i16 = 0, $v$1$i = 0, $v$2$i = 0, $v$3$lcssa$i = 0, $v$332$i = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = ($bytes>>>0)<(245); + do { + if ($0) { + $1 = ($bytes>>>0)<(11); + if ($1) { + $5 = 16; + } else { + $2 = (($bytes) + 11)|0; + $3 = $2 & -8; + $5 = $3; + } + $4 = $5 >>> 3; + $6 = HEAP32[32544>>2]|0; + $7 = $6 >>> $4; + $8 = $7 & 3; + $9 = ($8|0)==(0); + if (!($9)) { + $10 = $7 & 1; + $11 = $10 ^ 1; + $12 = (($11) + ($4))|0; + $13 = $12 << 1; + $14 = ((32544 + ($13<<2)|0) + 40|0); + $$sum10 = (($13) + 2)|0; + $15 = ((32544 + ($$sum10<<2)|0) + 40|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($16) + 8|0); + $18 = HEAP32[$17>>2]|0; + $19 = ($14|0)==($18|0); + do { + if ($19) { + $20 = 1 << $12; + $21 = $20 ^ -1; + $22 = $6 & $21; + HEAP32[32544>>2] = $22; + } else { + $23 = HEAP32[((32544 + 16|0))>>2]|0; + $24 = ($18>>>0)<($23>>>0); + if ($24) { + _abort(); + // unreachable; + } + $25 = (($18) + 12|0); + $26 = HEAP32[$25>>2]|0; + $27 = ($26|0)==($16|0); + if ($27) { + HEAP32[$25>>2] = $14; + HEAP32[$15>>2] = $18; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $28 = $12 << 3; + $29 = $28 | 3; + $30 = (($16) + 4|0); + HEAP32[$30>>2] = $29; + $$sum1112 = $28 | 4; + $31 = (($16) + ($$sum1112)|0); + $32 = HEAP32[$31>>2]|0; + $33 = $32 | 1; + HEAP32[$31>>2] = $33; + $mem$0 = $17; + STACKTOP = sp;return ($mem$0|0); + } + $34 = HEAP32[((32544 + 8|0))>>2]|0; + $35 = ($5>>>0)>($34>>>0); + if ($35) { + $36 = ($7|0)==(0); + if (!($36)) { + $37 = $7 << $4; + $38 = 2 << $4; + $39 = (0 - ($38))|0; + $40 = $38 | $39; + $41 = $37 & $40; + $42 = (0 - ($41))|0; + $43 = $41 & $42; + $44 = (($43) + -1)|0; + $45 = $44 >>> 12; + $46 = $45 & 16; + $47 = $44 >>> $46; + $48 = $47 >>> 5; + $49 = $48 & 8; + $50 = $49 | $46; + $51 = $47 >>> $49; + $52 = $51 >>> 2; + $53 = $52 & 4; + $54 = $50 | $53; + $55 = $51 >>> $53; + $56 = $55 >>> 1; + $57 = $56 & 2; + $58 = $54 | $57; + $59 = $55 >>> $57; + $60 = $59 >>> 1; + $61 = $60 & 1; + $62 = $58 | $61; + $63 = $59 >>> $61; + $64 = (($62) + ($63))|0; + $65 = $64 << 1; + $66 = ((32544 + ($65<<2)|0) + 40|0); + $$sum4 = (($65) + 2)|0; + $67 = ((32544 + ($$sum4<<2)|0) + 40|0); + $68 = HEAP32[$67>>2]|0; + $69 = (($68) + 8|0); + $70 = HEAP32[$69>>2]|0; + $71 = ($66|0)==($70|0); + do { + if ($71) { + $72 = 1 << $64; + $73 = $72 ^ -1; + $74 = $6 & $73; + HEAP32[32544>>2] = $74; + $88 = $34; + } else { + $75 = HEAP32[((32544 + 16|0))>>2]|0; + $76 = ($70>>>0)<($75>>>0); + if ($76) { + _abort(); + // unreachable; + } + $77 = (($70) + 12|0); + $78 = HEAP32[$77>>2]|0; + $79 = ($78|0)==($68|0); + if ($79) { + HEAP32[$77>>2] = $66; + HEAP32[$67>>2] = $70; + $$pre = HEAP32[((32544 + 8|0))>>2]|0; + $88 = $$pre; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $80 = $64 << 3; + $81 = (($80) - ($5))|0; + $82 = $5 | 3; + $83 = (($68) + 4|0); + HEAP32[$83>>2] = $82; + $84 = (($68) + ($5)|0); + $85 = $81 | 1; + $$sum56 = $5 | 4; + $86 = (($68) + ($$sum56)|0); + HEAP32[$86>>2] = $85; + $87 = (($68) + ($80)|0); + HEAP32[$87>>2] = $81; + $89 = ($88|0)==(0); + if (!($89)) { + $90 = HEAP32[((32544 + 20|0))>>2]|0; + $91 = $88 >>> 3; + $92 = $91 << 1; + $93 = ((32544 + ($92<<2)|0) + 40|0); + $94 = HEAP32[32544>>2]|0; + $95 = 1 << $91; + $96 = $94 & $95; + $97 = ($96|0)==(0); + if ($97) { + $98 = $94 | $95; + HEAP32[32544>>2] = $98; + $$sum8$pre = (($92) + 2)|0; + $$pre105 = ((32544 + ($$sum8$pre<<2)|0) + 40|0); + $$pre$phiZ2D = $$pre105;$F4$0 = $93; + } else { + $$sum9 = (($92) + 2)|0; + $99 = ((32544 + ($$sum9<<2)|0) + 40|0); + $100 = HEAP32[$99>>2]|0; + $101 = HEAP32[((32544 + 16|0))>>2]|0; + $102 = ($100>>>0)<($101>>>0); + if ($102) { + _abort(); + // unreachable; + } else { + $$pre$phiZ2D = $99;$F4$0 = $100; + } + } + HEAP32[$$pre$phiZ2D>>2] = $90; + $103 = (($F4$0) + 12|0); + HEAP32[$103>>2] = $90; + $104 = (($90) + 8|0); + HEAP32[$104>>2] = $F4$0; + $105 = (($90) + 12|0); + HEAP32[$105>>2] = $93; + } + HEAP32[((32544 + 8|0))>>2] = $81; + HEAP32[((32544 + 20|0))>>2] = $84; + $mem$0 = $69; + STACKTOP = sp;return ($mem$0|0); + } + $106 = HEAP32[((32544 + 4|0))>>2]|0; + $107 = ($106|0)==(0); + if ($107) { + $nb$0 = $5; + } else { + $108 = (0 - ($106))|0; + $109 = $106 & $108; + $110 = (($109) + -1)|0; + $111 = $110 >>> 12; + $112 = $111 & 16; + $113 = $110 >>> $112; + $114 = $113 >>> 5; + $115 = $114 & 8; + $116 = $115 | $112; + $117 = $113 >>> $115; + $118 = $117 >>> 2; + $119 = $118 & 4; + $120 = $116 | $119; + $121 = $117 >>> $119; + $122 = $121 >>> 1; + $123 = $122 & 2; + $124 = $120 | $123; + $125 = $121 >>> $123; + $126 = $125 >>> 1; + $127 = $126 & 1; + $128 = $124 | $127; + $129 = $125 >>> $127; + $130 = (($128) + ($129))|0; + $131 = ((32544 + ($130<<2)|0) + 304|0); + $132 = HEAP32[$131>>2]|0; + $133 = (($132) + 4|0); + $134 = HEAP32[$133>>2]|0; + $135 = $134 & -8; + $136 = (($135) - ($5))|0; + $rsize$0$i = $136;$t$0$i = $132;$v$0$i = $132; + while(1) { + $137 = (($t$0$i) + 16|0); + $138 = HEAP32[$137>>2]|0; + $139 = ($138|0)==(0|0); + if ($139) { + $140 = (($t$0$i) + 20|0); + $141 = HEAP32[$140>>2]|0; + $142 = ($141|0)==(0|0); + if ($142) { + break; + } else { + $144 = $141; + } + } else { + $144 = $138; + } + $143 = (($144) + 4|0); + $145 = HEAP32[$143>>2]|0; + $146 = $145 & -8; + $147 = (($146) - ($5))|0; + $148 = ($147>>>0)<($rsize$0$i>>>0); + $$rsize$0$i = $148 ? $147 : $rsize$0$i; + $$v$0$i = $148 ? $144 : $v$0$i; + $rsize$0$i = $$rsize$0$i;$t$0$i = $144;$v$0$i = $$v$0$i; + } + $149 = HEAP32[((32544 + 16|0))>>2]|0; + $150 = ($v$0$i>>>0)<($149>>>0); + if ($150) { + _abort(); + // unreachable; + } + $151 = (($v$0$i) + ($5)|0); + $152 = ($v$0$i>>>0)<($151>>>0); + if (!($152)) { + _abort(); + // unreachable; + } + $153 = (($v$0$i) + 24|0); + $154 = HEAP32[$153>>2]|0; + $155 = (($v$0$i) + 12|0); + $156 = HEAP32[$155>>2]|0; + $157 = ($156|0)==($v$0$i|0); + do { + if ($157) { + $167 = (($v$0$i) + 20|0); + $168 = HEAP32[$167>>2]|0; + $169 = ($168|0)==(0|0); + if ($169) { + $170 = (($v$0$i) + 16|0); + $171 = HEAP32[$170>>2]|0; + $172 = ($171|0)==(0|0); + if ($172) { + $R$1$i = 0; + break; + } else { + $R$0$i = $171;$RP$0$i = $170; + } + } else { + $R$0$i = $168;$RP$0$i = $167; + } + while(1) { + $173 = (($R$0$i) + 20|0); + $174 = HEAP32[$173>>2]|0; + $175 = ($174|0)==(0|0); + if (!($175)) { + $R$0$i = $174;$RP$0$i = $173; + continue; + } + $176 = (($R$0$i) + 16|0); + $177 = HEAP32[$176>>2]|0; + $178 = ($177|0)==(0|0); + if ($178) { + break; + } else { + $R$0$i = $177;$RP$0$i = $176; + } + } + $179 = ($RP$0$i>>>0)<($149>>>0); + if ($179) { + _abort(); + // unreachable; + } else { + HEAP32[$RP$0$i>>2] = 0; + $R$1$i = $R$0$i; + break; + } + } else { + $158 = (($v$0$i) + 8|0); + $159 = HEAP32[$158>>2]|0; + $160 = ($159>>>0)<($149>>>0); + if ($160) { + _abort(); + // unreachable; + } + $161 = (($159) + 12|0); + $162 = HEAP32[$161>>2]|0; + $163 = ($162|0)==($v$0$i|0); + if (!($163)) { + _abort(); + // unreachable; + } + $164 = (($156) + 8|0); + $165 = HEAP32[$164>>2]|0; + $166 = ($165|0)==($v$0$i|0); + if ($166) { + HEAP32[$161>>2] = $156; + HEAP32[$164>>2] = $159; + $R$1$i = $156; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $180 = ($154|0)==(0|0); + do { + if (!($180)) { + $181 = (($v$0$i) + 28|0); + $182 = HEAP32[$181>>2]|0; + $183 = ((32544 + ($182<<2)|0) + 304|0); + $184 = HEAP32[$183>>2]|0; + $185 = ($v$0$i|0)==($184|0); + if ($185) { + HEAP32[$183>>2] = $R$1$i; + $cond$i = ($R$1$i|0)==(0|0); + if ($cond$i) { + $186 = 1 << $182; + $187 = $186 ^ -1; + $188 = HEAP32[((32544 + 4|0))>>2]|0; + $189 = $188 & $187; + HEAP32[((32544 + 4|0))>>2] = $189; + break; + } + } else { + $190 = HEAP32[((32544 + 16|0))>>2]|0; + $191 = ($154>>>0)<($190>>>0); + if ($191) { + _abort(); + // unreachable; + } + $192 = (($154) + 16|0); + $193 = HEAP32[$192>>2]|0; + $194 = ($193|0)==($v$0$i|0); + if ($194) { + HEAP32[$192>>2] = $R$1$i; + } else { + $195 = (($154) + 20|0); + HEAP32[$195>>2] = $R$1$i; + } + $196 = ($R$1$i|0)==(0|0); + if ($196) { + break; + } + } + $197 = HEAP32[((32544 + 16|0))>>2]|0; + $198 = ($R$1$i>>>0)<($197>>>0); + if ($198) { + _abort(); + // unreachable; + } + $199 = (($R$1$i) + 24|0); + HEAP32[$199>>2] = $154; + $200 = (($v$0$i) + 16|0); + $201 = HEAP32[$200>>2]|0; + $202 = ($201|0)==(0|0); + do { + if (!($202)) { + $203 = ($201>>>0)<($197>>>0); + if ($203) { + _abort(); + // unreachable; + } else { + $204 = (($R$1$i) + 16|0); + HEAP32[$204>>2] = $201; + $205 = (($201) + 24|0); + HEAP32[$205>>2] = $R$1$i; + break; + } + } + } while(0); + $206 = (($v$0$i) + 20|0); + $207 = HEAP32[$206>>2]|0; + $208 = ($207|0)==(0|0); + if (!($208)) { + $209 = HEAP32[((32544 + 16|0))>>2]|0; + $210 = ($207>>>0)<($209>>>0); + if ($210) { + _abort(); + // unreachable; + } else { + $211 = (($R$1$i) + 20|0); + HEAP32[$211>>2] = $207; + $212 = (($207) + 24|0); + HEAP32[$212>>2] = $R$1$i; + break; + } + } + } + } while(0); + $213 = ($rsize$0$i>>>0)<(16); + if ($213) { + $214 = (($rsize$0$i) + ($5))|0; + $215 = $214 | 3; + $216 = (($v$0$i) + 4|0); + HEAP32[$216>>2] = $215; + $$sum4$i = (($214) + 4)|0; + $217 = (($v$0$i) + ($$sum4$i)|0); + $218 = HEAP32[$217>>2]|0; + $219 = $218 | 1; + HEAP32[$217>>2] = $219; + } else { + $220 = $5 | 3; + $221 = (($v$0$i) + 4|0); + HEAP32[$221>>2] = $220; + $222 = $rsize$0$i | 1; + $$sum$i39 = $5 | 4; + $223 = (($v$0$i) + ($$sum$i39)|0); + HEAP32[$223>>2] = $222; + $$sum1$i = (($rsize$0$i) + ($5))|0; + $224 = (($v$0$i) + ($$sum1$i)|0); + HEAP32[$224>>2] = $rsize$0$i; + $225 = HEAP32[((32544 + 8|0))>>2]|0; + $226 = ($225|0)==(0); + if (!($226)) { + $227 = HEAP32[((32544 + 20|0))>>2]|0; + $228 = $225 >>> 3; + $229 = $228 << 1; + $230 = ((32544 + ($229<<2)|0) + 40|0); + $231 = HEAP32[32544>>2]|0; + $232 = 1 << $228; + $233 = $231 & $232; + $234 = ($233|0)==(0); + if ($234) { + $235 = $231 | $232; + HEAP32[32544>>2] = $235; + $$sum2$pre$i = (($229) + 2)|0; + $$pre$i = ((32544 + ($$sum2$pre$i<<2)|0) + 40|0); + $$pre$phi$iZ2D = $$pre$i;$F1$0$i = $230; + } else { + $$sum3$i = (($229) + 2)|0; + $236 = ((32544 + ($$sum3$i<<2)|0) + 40|0); + $237 = HEAP32[$236>>2]|0; + $238 = HEAP32[((32544 + 16|0))>>2]|0; + $239 = ($237>>>0)<($238>>>0); + if ($239) { + _abort(); + // unreachable; + } else { + $$pre$phi$iZ2D = $236;$F1$0$i = $237; + } + } + HEAP32[$$pre$phi$iZ2D>>2] = $227; + $240 = (($F1$0$i) + 12|0); + HEAP32[$240>>2] = $227; + $241 = (($227) + 8|0); + HEAP32[$241>>2] = $F1$0$i; + $242 = (($227) + 12|0); + HEAP32[$242>>2] = $230; + } + HEAP32[((32544 + 8|0))>>2] = $rsize$0$i; + HEAP32[((32544 + 20|0))>>2] = $151; + } + $243 = (($v$0$i) + 8|0); + $mem$0 = $243; + STACKTOP = sp;return ($mem$0|0); + } + } else { + $nb$0 = $5; + } + } else { + $244 = ($bytes>>>0)>(4294967231); + if ($244) { + $nb$0 = -1; + } else { + $245 = (($bytes) + 11)|0; + $246 = $245 & -8; + $247 = HEAP32[((32544 + 4|0))>>2]|0; + $248 = ($247|0)==(0); + if ($248) { + $nb$0 = $246; + } else { + $249 = (0 - ($246))|0; + $250 = $245 >>> 8; + $251 = ($250|0)==(0); + if ($251) { + $idx$0$i = 0; + } else { + $252 = ($246>>>0)>(16777215); + if ($252) { + $idx$0$i = 31; + } else { + $253 = (($250) + 1048320)|0; + $254 = $253 >>> 16; + $255 = $254 & 8; + $256 = $250 << $255; + $257 = (($256) + 520192)|0; + $258 = $257 >>> 16; + $259 = $258 & 4; + $260 = $259 | $255; + $261 = $256 << $259; + $262 = (($261) + 245760)|0; + $263 = $262 >>> 16; + $264 = $263 & 2; + $265 = $260 | $264; + $266 = (14 - ($265))|0; + $267 = $261 << $264; + $268 = $267 >>> 15; + $269 = (($266) + ($268))|0; + $270 = $269 << 1; + $271 = (($269) + 7)|0; + $272 = $246 >>> $271; + $273 = $272 & 1; + $274 = $273 | $270; + $idx$0$i = $274; + } + } + $275 = ((32544 + ($idx$0$i<<2)|0) + 304|0); + $276 = HEAP32[$275>>2]|0; + $277 = ($276|0)==(0|0); + L126: do { + if ($277) { + $rsize$2$i = $249;$t$1$i = 0;$v$2$i = 0; + } else { + $278 = ($idx$0$i|0)==(31); + if ($278) { + $282 = 0; + } else { + $279 = $idx$0$i >>> 1; + $280 = (25 - ($279))|0; + $282 = $280; + } + $281 = $246 << $282; + $rsize$0$i15 = $249;$rst$0$i = 0;$sizebits$0$i = $281;$t$0$i14 = $276;$v$0$i16 = 0; + while(1) { + $283 = (($t$0$i14) + 4|0); + $284 = HEAP32[$283>>2]|0; + $285 = $284 & -8; + $286 = (($285) - ($246))|0; + $287 = ($286>>>0)<($rsize$0$i15>>>0); + if ($287) { + $288 = ($285|0)==($246|0); + if ($288) { + $rsize$2$i = $286;$t$1$i = $t$0$i14;$v$2$i = $t$0$i14; + break L126; + } else { + $rsize$1$i = $286;$v$1$i = $t$0$i14; + } + } else { + $rsize$1$i = $rsize$0$i15;$v$1$i = $v$0$i16; + } + $289 = (($t$0$i14) + 20|0); + $290 = HEAP32[$289>>2]|0; + $291 = $sizebits$0$i >>> 31; + $292 = ((($t$0$i14) + ($291<<2)|0) + 16|0); + $293 = HEAP32[$292>>2]|0; + $294 = ($290|0)==(0|0); + $295 = ($290|0)==($293|0); + $or$cond19$i = $294 | $295; + $rst$1$i = $or$cond19$i ? $rst$0$i : $290; + $296 = ($293|0)==(0|0); + $297 = $sizebits$0$i << 1; + if ($296) { + $rsize$2$i = $rsize$1$i;$t$1$i = $rst$1$i;$v$2$i = $v$1$i; + break; + } else { + $rsize$0$i15 = $rsize$1$i;$rst$0$i = $rst$1$i;$sizebits$0$i = $297;$t$0$i14 = $293;$v$0$i16 = $v$1$i; + } + } + } + } while(0); + $298 = ($t$1$i|0)==(0|0); + $299 = ($v$2$i|0)==(0|0); + $or$cond$i = $298 & $299; + if ($or$cond$i) { + $300 = 2 << $idx$0$i; + $301 = (0 - ($300))|0; + $302 = $300 | $301; + $303 = $247 & $302; + $304 = ($303|0)==(0); + if ($304) { + $nb$0 = $246; + break; + } + $305 = (0 - ($303))|0; + $306 = $303 & $305; + $307 = (($306) + -1)|0; + $308 = $307 >>> 12; + $309 = $308 & 16; + $310 = $307 >>> $309; + $311 = $310 >>> 5; + $312 = $311 & 8; + $313 = $312 | $309; + $314 = $310 >>> $312; + $315 = $314 >>> 2; + $316 = $315 & 4; + $317 = $313 | $316; + $318 = $314 >>> $316; + $319 = $318 >>> 1; + $320 = $319 & 2; + $321 = $317 | $320; + $322 = $318 >>> $320; + $323 = $322 >>> 1; + $324 = $323 & 1; + $325 = $321 | $324; + $326 = $322 >>> $324; + $327 = (($325) + ($326))|0; + $328 = ((32544 + ($327<<2)|0) + 304|0); + $329 = HEAP32[$328>>2]|0; + $t$2$ph$i = $329; + } else { + $t$2$ph$i = $t$1$i; + } + $330 = ($t$2$ph$i|0)==(0|0); + if ($330) { + $rsize$3$lcssa$i = $rsize$2$i;$v$3$lcssa$i = $v$2$i; + } else { + $rsize$331$i = $rsize$2$i;$t$230$i = $t$2$ph$i;$v$332$i = $v$2$i; + while(1) { + $331 = (($t$230$i) + 4|0); + $332 = HEAP32[$331>>2]|0; + $333 = $332 & -8; + $334 = (($333) - ($246))|0; + $335 = ($334>>>0)<($rsize$331$i>>>0); + $$rsize$3$i = $335 ? $334 : $rsize$331$i; + $t$2$v$3$i = $335 ? $t$230$i : $v$332$i; + $336 = (($t$230$i) + 16|0); + $337 = HEAP32[$336>>2]|0; + $338 = ($337|0)==(0|0); + if (!($338)) { + $rsize$331$i = $$rsize$3$i;$t$230$i = $337;$v$332$i = $t$2$v$3$i; + continue; + } + $339 = (($t$230$i) + 20|0); + $340 = HEAP32[$339>>2]|0; + $341 = ($340|0)==(0|0); + if ($341) { + $rsize$3$lcssa$i = $$rsize$3$i;$v$3$lcssa$i = $t$2$v$3$i; + break; + } else { + $rsize$331$i = $$rsize$3$i;$t$230$i = $340;$v$332$i = $t$2$v$3$i; + } + } + } + $342 = ($v$3$lcssa$i|0)==(0|0); + if ($342) { + $nb$0 = $246; + } else { + $343 = HEAP32[((32544 + 8|0))>>2]|0; + $344 = (($343) - ($246))|0; + $345 = ($rsize$3$lcssa$i>>>0)<($344>>>0); + if ($345) { + $346 = HEAP32[((32544 + 16|0))>>2]|0; + $347 = ($v$3$lcssa$i>>>0)<($346>>>0); + if ($347) { + _abort(); + // unreachable; + } + $348 = (($v$3$lcssa$i) + ($246)|0); + $349 = ($v$3$lcssa$i>>>0)<($348>>>0); + if (!($349)) { + _abort(); + // unreachable; + } + $350 = (($v$3$lcssa$i) + 24|0); + $351 = HEAP32[$350>>2]|0; + $352 = (($v$3$lcssa$i) + 12|0); + $353 = HEAP32[$352>>2]|0; + $354 = ($353|0)==($v$3$lcssa$i|0); + do { + if ($354) { + $364 = (($v$3$lcssa$i) + 20|0); + $365 = HEAP32[$364>>2]|0; + $366 = ($365|0)==(0|0); + if ($366) { + $367 = (($v$3$lcssa$i) + 16|0); + $368 = HEAP32[$367>>2]|0; + $369 = ($368|0)==(0|0); + if ($369) { + $R$1$i20 = 0; + break; + } else { + $R$0$i18 = $368;$RP$0$i17 = $367; + } + } else { + $R$0$i18 = $365;$RP$0$i17 = $364; + } + while(1) { + $370 = (($R$0$i18) + 20|0); + $371 = HEAP32[$370>>2]|0; + $372 = ($371|0)==(0|0); + if (!($372)) { + $R$0$i18 = $371;$RP$0$i17 = $370; + continue; + } + $373 = (($R$0$i18) + 16|0); + $374 = HEAP32[$373>>2]|0; + $375 = ($374|0)==(0|0); + if ($375) { + break; + } else { + $R$0$i18 = $374;$RP$0$i17 = $373; + } + } + $376 = ($RP$0$i17>>>0)<($346>>>0); + if ($376) { + _abort(); + // unreachable; + } else { + HEAP32[$RP$0$i17>>2] = 0; + $R$1$i20 = $R$0$i18; + break; + } + } else { + $355 = (($v$3$lcssa$i) + 8|0); + $356 = HEAP32[$355>>2]|0; + $357 = ($356>>>0)<($346>>>0); + if ($357) { + _abort(); + // unreachable; + } + $358 = (($356) + 12|0); + $359 = HEAP32[$358>>2]|0; + $360 = ($359|0)==($v$3$lcssa$i|0); + if (!($360)) { + _abort(); + // unreachable; + } + $361 = (($353) + 8|0); + $362 = HEAP32[$361>>2]|0; + $363 = ($362|0)==($v$3$lcssa$i|0); + if ($363) { + HEAP32[$358>>2] = $353; + HEAP32[$361>>2] = $356; + $R$1$i20 = $353; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $377 = ($351|0)==(0|0); + do { + if (!($377)) { + $378 = (($v$3$lcssa$i) + 28|0); + $379 = HEAP32[$378>>2]|0; + $380 = ((32544 + ($379<<2)|0) + 304|0); + $381 = HEAP32[$380>>2]|0; + $382 = ($v$3$lcssa$i|0)==($381|0); + if ($382) { + HEAP32[$380>>2] = $R$1$i20; + $cond$i21 = ($R$1$i20|0)==(0|0); + if ($cond$i21) { + $383 = 1 << $379; + $384 = $383 ^ -1; + $385 = HEAP32[((32544 + 4|0))>>2]|0; + $386 = $385 & $384; + HEAP32[((32544 + 4|0))>>2] = $386; + break; + } + } else { + $387 = HEAP32[((32544 + 16|0))>>2]|0; + $388 = ($351>>>0)<($387>>>0); + if ($388) { + _abort(); + // unreachable; + } + $389 = (($351) + 16|0); + $390 = HEAP32[$389>>2]|0; + $391 = ($390|0)==($v$3$lcssa$i|0); + if ($391) { + HEAP32[$389>>2] = $R$1$i20; + } else { + $392 = (($351) + 20|0); + HEAP32[$392>>2] = $R$1$i20; + } + $393 = ($R$1$i20|0)==(0|0); + if ($393) { + break; + } + } + $394 = HEAP32[((32544 + 16|0))>>2]|0; + $395 = ($R$1$i20>>>0)<($394>>>0); + if ($395) { + _abort(); + // unreachable; + } + $396 = (($R$1$i20) + 24|0); + HEAP32[$396>>2] = $351; + $397 = (($v$3$lcssa$i) + 16|0); + $398 = HEAP32[$397>>2]|0; + $399 = ($398|0)==(0|0); + do { + if (!($399)) { + $400 = ($398>>>0)<($394>>>0); + if ($400) { + _abort(); + // unreachable; + } else { + $401 = (($R$1$i20) + 16|0); + HEAP32[$401>>2] = $398; + $402 = (($398) + 24|0); + HEAP32[$402>>2] = $R$1$i20; + break; + } + } + } while(0); + $403 = (($v$3$lcssa$i) + 20|0); + $404 = HEAP32[$403>>2]|0; + $405 = ($404|0)==(0|0); + if (!($405)) { + $406 = HEAP32[((32544 + 16|0))>>2]|0; + $407 = ($404>>>0)<($406>>>0); + if ($407) { + _abort(); + // unreachable; + } else { + $408 = (($R$1$i20) + 20|0); + HEAP32[$408>>2] = $404; + $409 = (($404) + 24|0); + HEAP32[$409>>2] = $R$1$i20; + break; + } + } + } + } while(0); + $410 = ($rsize$3$lcssa$i>>>0)<(16); + L204: do { + if ($410) { + $411 = (($rsize$3$lcssa$i) + ($246))|0; + $412 = $411 | 3; + $413 = (($v$3$lcssa$i) + 4|0); + HEAP32[$413>>2] = $412; + $$sum18$i = (($411) + 4)|0; + $414 = (($v$3$lcssa$i) + ($$sum18$i)|0); + $415 = HEAP32[$414>>2]|0; + $416 = $415 | 1; + HEAP32[$414>>2] = $416; + } else { + $417 = $246 | 3; + $418 = (($v$3$lcssa$i) + 4|0); + HEAP32[$418>>2] = $417; + $419 = $rsize$3$lcssa$i | 1; + $$sum$i2338 = $246 | 4; + $420 = (($v$3$lcssa$i) + ($$sum$i2338)|0); + HEAP32[$420>>2] = $419; + $$sum1$i24 = (($rsize$3$lcssa$i) + ($246))|0; + $421 = (($v$3$lcssa$i) + ($$sum1$i24)|0); + HEAP32[$421>>2] = $rsize$3$lcssa$i; + $422 = $rsize$3$lcssa$i >>> 3; + $423 = ($rsize$3$lcssa$i>>>0)<(256); + if ($423) { + $424 = $422 << 1; + $425 = ((32544 + ($424<<2)|0) + 40|0); + $426 = HEAP32[32544>>2]|0; + $427 = 1 << $422; + $428 = $426 & $427; + $429 = ($428|0)==(0); + do { + if ($429) { + $430 = $426 | $427; + HEAP32[32544>>2] = $430; + $$sum14$pre$i = (($424) + 2)|0; + $$pre$i25 = ((32544 + ($$sum14$pre$i<<2)|0) + 40|0); + $$pre$phi$i26Z2D = $$pre$i25;$F5$0$i = $425; + } else { + $$sum17$i = (($424) + 2)|0; + $431 = ((32544 + ($$sum17$i<<2)|0) + 40|0); + $432 = HEAP32[$431>>2]|0; + $433 = HEAP32[((32544 + 16|0))>>2]|0; + $434 = ($432>>>0)<($433>>>0); + if (!($434)) { + $$pre$phi$i26Z2D = $431;$F5$0$i = $432; + break; + } + _abort(); + // unreachable; + } + } while(0); + HEAP32[$$pre$phi$i26Z2D>>2] = $348; + $435 = (($F5$0$i) + 12|0); + HEAP32[$435>>2] = $348; + $$sum15$i = (($246) + 8)|0; + $436 = (($v$3$lcssa$i) + ($$sum15$i)|0); + HEAP32[$436>>2] = $F5$0$i; + $$sum16$i = (($246) + 12)|0; + $437 = (($v$3$lcssa$i) + ($$sum16$i)|0); + HEAP32[$437>>2] = $425; + break; + } + $438 = $rsize$3$lcssa$i >>> 8; + $439 = ($438|0)==(0); + if ($439) { + $I7$0$i = 0; + } else { + $440 = ($rsize$3$lcssa$i>>>0)>(16777215); + if ($440) { + $I7$0$i = 31; + } else { + $441 = (($438) + 1048320)|0; + $442 = $441 >>> 16; + $443 = $442 & 8; + $444 = $438 << $443; + $445 = (($444) + 520192)|0; + $446 = $445 >>> 16; + $447 = $446 & 4; + $448 = $447 | $443; + $449 = $444 << $447; + $450 = (($449) + 245760)|0; + $451 = $450 >>> 16; + $452 = $451 & 2; + $453 = $448 | $452; + $454 = (14 - ($453))|0; + $455 = $449 << $452; + $456 = $455 >>> 15; + $457 = (($454) + ($456))|0; + $458 = $457 << 1; + $459 = (($457) + 7)|0; + $460 = $rsize$3$lcssa$i >>> $459; + $461 = $460 & 1; + $462 = $461 | $458; + $I7$0$i = $462; + } + } + $463 = ((32544 + ($I7$0$i<<2)|0) + 304|0); + $$sum2$i = (($246) + 28)|0; + $464 = (($v$3$lcssa$i) + ($$sum2$i)|0); + HEAP32[$464>>2] = $I7$0$i; + $$sum3$i27 = (($246) + 16)|0; + $465 = (($v$3$lcssa$i) + ($$sum3$i27)|0); + $$sum4$i28 = (($246) + 20)|0; + $466 = (($v$3$lcssa$i) + ($$sum4$i28)|0); + HEAP32[$466>>2] = 0; + HEAP32[$465>>2] = 0; + $467 = HEAP32[((32544 + 4|0))>>2]|0; + $468 = 1 << $I7$0$i; + $469 = $467 & $468; + $470 = ($469|0)==(0); + if ($470) { + $471 = $467 | $468; + HEAP32[((32544 + 4|0))>>2] = $471; + HEAP32[$463>>2] = $348; + $$sum5$i = (($246) + 24)|0; + $472 = (($v$3$lcssa$i) + ($$sum5$i)|0); + HEAP32[$472>>2] = $463; + $$sum6$i = (($246) + 12)|0; + $473 = (($v$3$lcssa$i) + ($$sum6$i)|0); + HEAP32[$473>>2] = $348; + $$sum7$i = (($246) + 8)|0; + $474 = (($v$3$lcssa$i) + ($$sum7$i)|0); + HEAP32[$474>>2] = $348; + break; + } + $475 = HEAP32[$463>>2]|0; + $476 = ($I7$0$i|0)==(31); + if ($476) { + $484 = 0; + } else { + $477 = $I7$0$i >>> 1; + $478 = (25 - ($477))|0; + $484 = $478; + } + $479 = (($475) + 4|0); + $480 = HEAP32[$479>>2]|0; + $481 = $480 & -8; + $482 = ($481|0)==($rsize$3$lcssa$i|0); + L225: do { + if ($482) { + $T$0$lcssa$i = $475; + } else { + $483 = $rsize$3$lcssa$i << $484; + $K12$027$i = $483;$T$026$i = $475; + while(1) { + $491 = $K12$027$i >>> 31; + $492 = ((($T$026$i) + ($491<<2)|0) + 16|0); + $487 = HEAP32[$492>>2]|0; + $493 = ($487|0)==(0|0); + if ($493) { + break; + } + $485 = $K12$027$i << 1; + $486 = (($487) + 4|0); + $488 = HEAP32[$486>>2]|0; + $489 = $488 & -8; + $490 = ($489|0)==($rsize$3$lcssa$i|0); + if ($490) { + $T$0$lcssa$i = $487; + break L225; + } else { + $K12$027$i = $485;$T$026$i = $487; + } + } + $494 = HEAP32[((32544 + 16|0))>>2]|0; + $495 = ($492>>>0)<($494>>>0); + if ($495) { + _abort(); + // unreachable; + } else { + HEAP32[$492>>2] = $348; + $$sum11$i = (($246) + 24)|0; + $496 = (($v$3$lcssa$i) + ($$sum11$i)|0); + HEAP32[$496>>2] = $T$026$i; + $$sum12$i = (($246) + 12)|0; + $497 = (($v$3$lcssa$i) + ($$sum12$i)|0); + HEAP32[$497>>2] = $348; + $$sum13$i = (($246) + 8)|0; + $498 = (($v$3$lcssa$i) + ($$sum13$i)|0); + HEAP32[$498>>2] = $348; + break L204; + } + } + } while(0); + $499 = (($T$0$lcssa$i) + 8|0); + $500 = HEAP32[$499>>2]|0; + $501 = HEAP32[((32544 + 16|0))>>2]|0; + $502 = ($T$0$lcssa$i>>>0)>=($501>>>0); + $503 = ($500>>>0)>=($501>>>0); + $or$cond24$i = $502 & $503; + if ($or$cond24$i) { + $504 = (($500) + 12|0); + HEAP32[$504>>2] = $348; + HEAP32[$499>>2] = $348; + $$sum8$i = (($246) + 8)|0; + $505 = (($v$3$lcssa$i) + ($$sum8$i)|0); + HEAP32[$505>>2] = $500; + $$sum9$i = (($246) + 12)|0; + $506 = (($v$3$lcssa$i) + ($$sum9$i)|0); + HEAP32[$506>>2] = $T$0$lcssa$i; + $$sum10$i = (($246) + 24)|0; + $507 = (($v$3$lcssa$i) + ($$sum10$i)|0); + HEAP32[$507>>2] = 0; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $508 = (($v$3$lcssa$i) + 8|0); + $mem$0 = $508; + STACKTOP = sp;return ($mem$0|0); + } else { + $nb$0 = $246; + } + } + } + } + } + } while(0); + $509 = HEAP32[((32544 + 8|0))>>2]|0; + $510 = ($509>>>0)<($nb$0>>>0); + if (!($510)) { + $511 = (($509) - ($nb$0))|0; + $512 = HEAP32[((32544 + 20|0))>>2]|0; + $513 = ($511>>>0)>(15); + if ($513) { + $514 = (($512) + ($nb$0)|0); + HEAP32[((32544 + 20|0))>>2] = $514; + HEAP32[((32544 + 8|0))>>2] = $511; + $515 = $511 | 1; + $$sum2 = (($nb$0) + 4)|0; + $516 = (($512) + ($$sum2)|0); + HEAP32[$516>>2] = $515; + $517 = (($512) + ($509)|0); + HEAP32[$517>>2] = $511; + $518 = $nb$0 | 3; + $519 = (($512) + 4|0); + HEAP32[$519>>2] = $518; + } else { + HEAP32[((32544 + 8|0))>>2] = 0; + HEAP32[((32544 + 20|0))>>2] = 0; + $520 = $509 | 3; + $521 = (($512) + 4|0); + HEAP32[$521>>2] = $520; + $$sum1 = (($509) + 4)|0; + $522 = (($512) + ($$sum1)|0); + $523 = HEAP32[$522>>2]|0; + $524 = $523 | 1; + HEAP32[$522>>2] = $524; + } + $525 = (($512) + 8|0); + $mem$0 = $525; + STACKTOP = sp;return ($mem$0|0); + } + $526 = HEAP32[((32544 + 12|0))>>2]|0; + $527 = ($526>>>0)>($nb$0>>>0); + if ($527) { + $528 = (($526) - ($nb$0))|0; + HEAP32[((32544 + 12|0))>>2] = $528; + $529 = HEAP32[((32544 + 24|0))>>2]|0; + $530 = (($529) + ($nb$0)|0); + HEAP32[((32544 + 24|0))>>2] = $530; + $531 = $528 | 1; + $$sum = (($nb$0) + 4)|0; + $532 = (($529) + ($$sum)|0); + HEAP32[$532>>2] = $531; + $533 = $nb$0 | 3; + $534 = (($529) + 4|0); + HEAP32[$534>>2] = $533; + $535 = (($529) + 8|0); + $mem$0 = $535; + STACKTOP = sp;return ($mem$0|0); + } + $536 = HEAP32[33016>>2]|0; + $537 = ($536|0)==(0); + do { + if ($537) { + $538 = (_sysconf(30)|0); + $539 = (($538) + -1)|0; + $540 = $539 & $538; + $541 = ($540|0)==(0); + if ($541) { + HEAP32[((33016 + 8|0))>>2] = $538; + HEAP32[((33016 + 4|0))>>2] = $538; + HEAP32[((33016 + 12|0))>>2] = -1; + HEAP32[((33016 + 16|0))>>2] = -1; + HEAP32[((33016 + 20|0))>>2] = 0; + HEAP32[((32544 + 444|0))>>2] = 0; + $542 = (_time((0|0))|0); + $543 = $542 & -16; + $544 = $543 ^ 1431655768; + HEAP32[33016>>2] = $544; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $545 = (($nb$0) + 48)|0; + $546 = HEAP32[((33016 + 8|0))>>2]|0; + $547 = (($nb$0) + 47)|0; + $548 = (($546) + ($547))|0; + $549 = (0 - ($546))|0; + $550 = $548 & $549; + $551 = ($550>>>0)>($nb$0>>>0); + if (!($551)) { + $mem$0 = 0; + STACKTOP = sp;return ($mem$0|0); + } + $552 = HEAP32[((32544 + 440|0))>>2]|0; + $553 = ($552|0)==(0); + if (!($553)) { + $554 = HEAP32[((32544 + 432|0))>>2]|0; + $555 = (($554) + ($550))|0; + $556 = ($555>>>0)<=($554>>>0); + $557 = ($555>>>0)>($552>>>0); + $or$cond1$i = $556 | $557; + if ($or$cond1$i) { + $mem$0 = 0; + STACKTOP = sp;return ($mem$0|0); + } + } + $558 = HEAP32[((32544 + 444|0))>>2]|0; + $559 = $558 & 4; + $560 = ($559|0)==(0); + L266: do { + if ($560) { + $561 = HEAP32[((32544 + 24|0))>>2]|0; + $562 = ($561|0)==(0|0); + L268: do { + if ($562) { + label = 181; + } else { + $sp$0$i$i = ((32544 + 448|0)); + while(1) { + $563 = HEAP32[$sp$0$i$i>>2]|0; + $564 = ($563>>>0)>($561>>>0); + if (!($564)) { + $565 = (($sp$0$i$i) + 4|0); + $566 = HEAP32[$565>>2]|0; + $567 = (($563) + ($566)|0); + $568 = ($567>>>0)>($561>>>0); + if ($568) { + break; + } + } + $569 = (($sp$0$i$i) + 8|0); + $570 = HEAP32[$569>>2]|0; + $571 = ($570|0)==(0|0); + if ($571) { + label = 181; + break L268; + } else { + $sp$0$i$i = $570; + } + } + $572 = ($sp$0$i$i|0)==(0|0); + if ($572) { + label = 181; + } else { + $595 = HEAP32[((32544 + 12|0))>>2]|0; + $596 = (($548) - ($595))|0; + $597 = $596 & $549; + $598 = ($597>>>0)<(2147483647); + if ($598) { + $599 = (_sbrk(($597|0))|0); + $600 = HEAP32[$sp$0$i$i>>2]|0; + $601 = HEAP32[$565>>2]|0; + $602 = (($600) + ($601)|0); + $603 = ($599|0)==($602|0); + if ($603) { + $br$0$i = $599;$ssize$1$i = $597; + label = 190; + } else { + $br$030$i = $599;$ssize$129$i = $597; + label = 191; + } + } else { + $tsize$03141$i = 0; + } + } + } + } while(0); + do { + if ((label|0) == 181) { + $573 = (_sbrk(0)|0); + $574 = ($573|0)==((-1)|0); + if ($574) { + $tsize$03141$i = 0; + } else { + $575 = $573; + $576 = HEAP32[((33016 + 4|0))>>2]|0; + $577 = (($576) + -1)|0; + $578 = $577 & $575; + $579 = ($578|0)==(0); + if ($579) { + $ssize$0$i = $550; + } else { + $580 = (($577) + ($575))|0; + $581 = (0 - ($576))|0; + $582 = $580 & $581; + $583 = (($550) - ($575))|0; + $584 = (($583) + ($582))|0; + $ssize$0$i = $584; + } + $585 = HEAP32[((32544 + 432|0))>>2]|0; + $586 = (($585) + ($ssize$0$i))|0; + $587 = ($ssize$0$i>>>0)>($nb$0>>>0); + $588 = ($ssize$0$i>>>0)<(2147483647); + $or$cond$i29 = $587 & $588; + if ($or$cond$i29) { + $589 = HEAP32[((32544 + 440|0))>>2]|0; + $590 = ($589|0)==(0); + if (!($590)) { + $591 = ($586>>>0)<=($585>>>0); + $592 = ($586>>>0)>($589>>>0); + $or$cond2$i = $591 | $592; + if ($or$cond2$i) { + $tsize$03141$i = 0; + break; + } + } + $593 = (_sbrk(($ssize$0$i|0))|0); + $594 = ($593|0)==($573|0); + if ($594) { + $br$0$i = $573;$ssize$1$i = $ssize$0$i; + label = 190; + } else { + $br$030$i = $593;$ssize$129$i = $ssize$0$i; + label = 191; + } + } else { + $tsize$03141$i = 0; + } + } + } + } while(0); + L288: do { + if ((label|0) == 190) { + $604 = ($br$0$i|0)==((-1)|0); + if ($604) { + $tsize$03141$i = $ssize$1$i; + } else { + $tbase$245$i = $br$0$i;$tsize$244$i = $ssize$1$i; + label = 201; + break L266; + } + } + else if ((label|0) == 191) { + $605 = (0 - ($ssize$129$i))|0; + $606 = ($br$030$i|0)!=((-1)|0); + $607 = ($ssize$129$i>>>0)<(2147483647); + $or$cond5$i = $606 & $607; + $608 = ($545>>>0)>($ssize$129$i>>>0); + $or$cond4$i = $or$cond5$i & $608; + do { + if ($or$cond4$i) { + $609 = HEAP32[((33016 + 8|0))>>2]|0; + $610 = (($547) - ($ssize$129$i))|0; + $611 = (($610) + ($609))|0; + $612 = (0 - ($609))|0; + $613 = $611 & $612; + $614 = ($613>>>0)<(2147483647); + if ($614) { + $615 = (_sbrk(($613|0))|0); + $616 = ($615|0)==((-1)|0); + if ($616) { + (_sbrk(($605|0))|0); + $tsize$03141$i = 0; + break L288; + } else { + $617 = (($613) + ($ssize$129$i))|0; + $ssize$2$i = $617; + break; + } + } else { + $ssize$2$i = $ssize$129$i; + } + } else { + $ssize$2$i = $ssize$129$i; + } + } while(0); + $618 = ($br$030$i|0)==((-1)|0); + if ($618) { + $tsize$03141$i = 0; + } else { + $tbase$245$i = $br$030$i;$tsize$244$i = $ssize$2$i; + label = 201; + break L266; + } + } + } while(0); + $619 = HEAP32[((32544 + 444|0))>>2]|0; + $620 = $619 | 4; + HEAP32[((32544 + 444|0))>>2] = $620; + $tsize$1$i = $tsize$03141$i; + label = 198; + } else { + $tsize$1$i = 0; + label = 198; + } + } while(0); + if ((label|0) == 198) { + $621 = ($550>>>0)<(2147483647); + if ($621) { + $622 = (_sbrk(($550|0))|0); + $623 = (_sbrk(0)|0); + $624 = ($622|0)!=((-1)|0); + $625 = ($623|0)!=((-1)|0); + $or$cond3$i = $624 & $625; + $626 = ($622>>>0)<($623>>>0); + $or$cond6$i = $or$cond3$i & $626; + if ($or$cond6$i) { + $627 = $623; + $628 = $622; + $629 = (($627) - ($628))|0; + $630 = (($nb$0) + 40)|0; + $631 = ($629>>>0)>($630>>>0); + $$tsize$1$i = $631 ? $629 : $tsize$1$i; + if ($631) { + $tbase$245$i = $622;$tsize$244$i = $$tsize$1$i; + label = 201; + } + } + } + } + if ((label|0) == 201) { + $632 = HEAP32[((32544 + 432|0))>>2]|0; + $633 = (($632) + ($tsize$244$i))|0; + HEAP32[((32544 + 432|0))>>2] = $633; + $634 = HEAP32[((32544 + 436|0))>>2]|0; + $635 = ($633>>>0)>($634>>>0); + if ($635) { + HEAP32[((32544 + 436|0))>>2] = $633; + } + $636 = HEAP32[((32544 + 24|0))>>2]|0; + $637 = ($636|0)==(0|0); + L308: do { + if ($637) { + $638 = HEAP32[((32544 + 16|0))>>2]|0; + $639 = ($638|0)==(0|0); + $640 = ($tbase$245$i>>>0)<($638>>>0); + $or$cond8$i = $639 | $640; + if ($or$cond8$i) { + HEAP32[((32544 + 16|0))>>2] = $tbase$245$i; + } + HEAP32[((32544 + 448|0))>>2] = $tbase$245$i; + HEAP32[((32544 + 452|0))>>2] = $tsize$244$i; + HEAP32[((32544 + 460|0))>>2] = 0; + $641 = HEAP32[33016>>2]|0; + HEAP32[((32544 + 36|0))>>2] = $641; + HEAP32[((32544 + 32|0))>>2] = -1; + $i$02$i$i = 0; + while(1) { + $642 = $i$02$i$i << 1; + $643 = ((32544 + ($642<<2)|0) + 40|0); + $$sum$i$i = (($642) + 3)|0; + $644 = ((32544 + ($$sum$i$i<<2)|0) + 40|0); + HEAP32[$644>>2] = $643; + $$sum1$i$i = (($642) + 2)|0; + $645 = ((32544 + ($$sum1$i$i<<2)|0) + 40|0); + HEAP32[$645>>2] = $643; + $646 = (($i$02$i$i) + 1)|0; + $exitcond$i$i = ($646|0)==(32); + if ($exitcond$i$i) { + break; + } else { + $i$02$i$i = $646; + } + } + $647 = (($tsize$244$i) + -40)|0; + $648 = (($tbase$245$i) + 8|0); + $649 = $648; + $650 = $649 & 7; + $651 = ($650|0)==(0); + if ($651) { + $655 = 0; + } else { + $652 = (0 - ($649))|0; + $653 = $652 & 7; + $655 = $653; + } + $654 = (($tbase$245$i) + ($655)|0); + $656 = (($647) - ($655))|0; + HEAP32[((32544 + 24|0))>>2] = $654; + HEAP32[((32544 + 12|0))>>2] = $656; + $657 = $656 | 1; + $$sum$i12$i = (($655) + 4)|0; + $658 = (($tbase$245$i) + ($$sum$i12$i)|0); + HEAP32[$658>>2] = $657; + $$sum2$i$i = (($tsize$244$i) + -36)|0; + $659 = (($tbase$245$i) + ($$sum2$i$i)|0); + HEAP32[$659>>2] = 40; + $660 = HEAP32[((33016 + 16|0))>>2]|0; + HEAP32[((32544 + 28|0))>>2] = $660; + } else { + $sp$073$i = ((32544 + 448|0)); + while(1) { + $661 = HEAP32[$sp$073$i>>2]|0; + $662 = (($sp$073$i) + 4|0); + $663 = HEAP32[$662>>2]|0; + $664 = (($661) + ($663)|0); + $665 = ($tbase$245$i|0)==($664|0); + if ($665) { + label = 213; + break; + } + $666 = (($sp$073$i) + 8|0); + $667 = HEAP32[$666>>2]|0; + $668 = ($667|0)==(0|0); + if ($668) { + break; + } else { + $sp$073$i = $667; + } + } + if ((label|0) == 213) { + $669 = (($sp$073$i) + 12|0); + $670 = HEAP32[$669>>2]|0; + $671 = $670 & 8; + $672 = ($671|0)==(0); + if ($672) { + $673 = ($636>>>0)>=($661>>>0); + $674 = ($636>>>0)<($tbase$245$i>>>0); + $or$cond47$i = $673 & $674; + if ($or$cond47$i) { + $675 = (($663) + ($tsize$244$i))|0; + HEAP32[$662>>2] = $675; + $676 = HEAP32[((32544 + 12|0))>>2]|0; + $677 = (($676) + ($tsize$244$i))|0; + $678 = (($636) + 8|0); + $679 = $678; + $680 = $679 & 7; + $681 = ($680|0)==(0); + if ($681) { + $685 = 0; + } else { + $682 = (0 - ($679))|0; + $683 = $682 & 7; + $685 = $683; + } + $684 = (($636) + ($685)|0); + $686 = (($677) - ($685))|0; + HEAP32[((32544 + 24|0))>>2] = $684; + HEAP32[((32544 + 12|0))>>2] = $686; + $687 = $686 | 1; + $$sum$i16$i = (($685) + 4)|0; + $688 = (($636) + ($$sum$i16$i)|0); + HEAP32[$688>>2] = $687; + $$sum2$i17$i = (($677) + 4)|0; + $689 = (($636) + ($$sum2$i17$i)|0); + HEAP32[$689>>2] = 40; + $690 = HEAP32[((33016 + 16|0))>>2]|0; + HEAP32[((32544 + 28|0))>>2] = $690; + break; + } + } + } + $691 = HEAP32[((32544 + 16|0))>>2]|0; + $692 = ($tbase$245$i>>>0)<($691>>>0); + if ($692) { + HEAP32[((32544 + 16|0))>>2] = $tbase$245$i; + $756 = $tbase$245$i; + } else { + $756 = $691; + } + $693 = (($tbase$245$i) + ($tsize$244$i)|0); + $sp$166$i = ((32544 + 448|0)); + while(1) { + $694 = HEAP32[$sp$166$i>>2]|0; + $695 = ($694|0)==($693|0); + if ($695) { + label = 223; + break; + } + $696 = (($sp$166$i) + 8|0); + $697 = HEAP32[$696>>2]|0; + $698 = ($697|0)==(0|0); + if ($698) { + break; + } else { + $sp$166$i = $697; + } + } + if ((label|0) == 223) { + $699 = (($sp$166$i) + 12|0); + $700 = HEAP32[$699>>2]|0; + $701 = $700 & 8; + $702 = ($701|0)==(0); + if ($702) { + HEAP32[$sp$166$i>>2] = $tbase$245$i; + $703 = (($sp$166$i) + 4|0); + $704 = HEAP32[$703>>2]|0; + $705 = (($704) + ($tsize$244$i))|0; + HEAP32[$703>>2] = $705; + $706 = (($tbase$245$i) + 8|0); + $707 = $706; + $708 = $707 & 7; + $709 = ($708|0)==(0); + if ($709) { + $713 = 0; + } else { + $710 = (0 - ($707))|0; + $711 = $710 & 7; + $713 = $711; + } + $712 = (($tbase$245$i) + ($713)|0); + $$sum102$i = (($tsize$244$i) + 8)|0; + $714 = (($tbase$245$i) + ($$sum102$i)|0); + $715 = $714; + $716 = $715 & 7; + $717 = ($716|0)==(0); + if ($717) { + $720 = 0; + } else { + $718 = (0 - ($715))|0; + $719 = $718 & 7; + $720 = $719; + } + $$sum103$i = (($720) + ($tsize$244$i))|0; + $721 = (($tbase$245$i) + ($$sum103$i)|0); + $722 = $721; + $723 = $712; + $724 = (($722) - ($723))|0; + $$sum$i19$i = (($713) + ($nb$0))|0; + $725 = (($tbase$245$i) + ($$sum$i19$i)|0); + $726 = (($724) - ($nb$0))|0; + $727 = $nb$0 | 3; + $$sum1$i20$i = (($713) + 4)|0; + $728 = (($tbase$245$i) + ($$sum1$i20$i)|0); + HEAP32[$728>>2] = $727; + $729 = ($721|0)==($636|0); + L345: do { + if ($729) { + $730 = HEAP32[((32544 + 12|0))>>2]|0; + $731 = (($730) + ($726))|0; + HEAP32[((32544 + 12|0))>>2] = $731; + HEAP32[((32544 + 24|0))>>2] = $725; + $732 = $731 | 1; + $$sum42$i$i = (($$sum$i19$i) + 4)|0; + $733 = (($tbase$245$i) + ($$sum42$i$i)|0); + HEAP32[$733>>2] = $732; + } else { + $734 = HEAP32[((32544 + 20|0))>>2]|0; + $735 = ($721|0)==($734|0); + if ($735) { + $736 = HEAP32[((32544 + 8|0))>>2]|0; + $737 = (($736) + ($726))|0; + HEAP32[((32544 + 8|0))>>2] = $737; + HEAP32[((32544 + 20|0))>>2] = $725; + $738 = $737 | 1; + $$sum40$i$i = (($$sum$i19$i) + 4)|0; + $739 = (($tbase$245$i) + ($$sum40$i$i)|0); + HEAP32[$739>>2] = $738; + $$sum41$i$i = (($737) + ($$sum$i19$i))|0; + $740 = (($tbase$245$i) + ($$sum41$i$i)|0); + HEAP32[$740>>2] = $737; + break; + } + $$sum2$i21$i = (($tsize$244$i) + 4)|0; + $$sum104$i = (($$sum2$i21$i) + ($720))|0; + $741 = (($tbase$245$i) + ($$sum104$i)|0); + $742 = HEAP32[$741>>2]|0; + $743 = $742 & 3; + $744 = ($743|0)==(1); + if ($744) { + $745 = $742 & -8; + $746 = $742 >>> 3; + $747 = ($742>>>0)<(256); + L353: do { + if ($747) { + $$sum3738$i$i = $720 | 8; + $$sum114$i = (($$sum3738$i$i) + ($tsize$244$i))|0; + $748 = (($tbase$245$i) + ($$sum114$i)|0); + $749 = HEAP32[$748>>2]|0; + $$sum39$i$i = (($tsize$244$i) + 12)|0; + $$sum115$i = (($$sum39$i$i) + ($720))|0; + $750 = (($tbase$245$i) + ($$sum115$i)|0); + $751 = HEAP32[$750>>2]|0; + $752 = $746 << 1; + $753 = ((32544 + ($752<<2)|0) + 40|0); + $754 = ($749|0)==($753|0); + do { + if (!($754)) { + $755 = ($749>>>0)<($756>>>0); + if ($755) { + _abort(); + // unreachable; + } + $757 = (($749) + 12|0); + $758 = HEAP32[$757>>2]|0; + $759 = ($758|0)==($721|0); + if ($759) { + break; + } + _abort(); + // unreachable; + } + } while(0); + $760 = ($751|0)==($749|0); + if ($760) { + $761 = 1 << $746; + $762 = $761 ^ -1; + $763 = HEAP32[32544>>2]|0; + $764 = $763 & $762; + HEAP32[32544>>2] = $764; + break; + } + $765 = ($751|0)==($753|0); + do { + if ($765) { + $$pre58$i$i = (($751) + 8|0); + $$pre$phi59$i$iZ2D = $$pre58$i$i; + } else { + $766 = ($751>>>0)<($756>>>0); + if ($766) { + _abort(); + // unreachable; + } + $767 = (($751) + 8|0); + $768 = HEAP32[$767>>2]|0; + $769 = ($768|0)==($721|0); + if ($769) { + $$pre$phi59$i$iZ2D = $767; + break; + } + _abort(); + // unreachable; + } + } while(0); + $770 = (($749) + 12|0); + HEAP32[$770>>2] = $751; + HEAP32[$$pre$phi59$i$iZ2D>>2] = $749; + } else { + $$sum34$i$i = $720 | 24; + $$sum105$i = (($$sum34$i$i) + ($tsize$244$i))|0; + $771 = (($tbase$245$i) + ($$sum105$i)|0); + $772 = HEAP32[$771>>2]|0; + $$sum5$i$i = (($tsize$244$i) + 12)|0; + $$sum106$i = (($$sum5$i$i) + ($720))|0; + $773 = (($tbase$245$i) + ($$sum106$i)|0); + $774 = HEAP32[$773>>2]|0; + $775 = ($774|0)==($721|0); + do { + if ($775) { + $$sum67$i$i = $720 | 16; + $$sum112$i = (($$sum2$i21$i) + ($$sum67$i$i))|0; + $785 = (($tbase$245$i) + ($$sum112$i)|0); + $786 = HEAP32[$785>>2]|0; + $787 = ($786|0)==(0|0); + if ($787) { + $$sum113$i = (($$sum67$i$i) + ($tsize$244$i))|0; + $788 = (($tbase$245$i) + ($$sum113$i)|0); + $789 = HEAP32[$788>>2]|0; + $790 = ($789|0)==(0|0); + if ($790) { + $R$1$i$i = 0; + break; + } else { + $R$0$i$i = $789;$RP$0$i$i = $788; + } + } else { + $R$0$i$i = $786;$RP$0$i$i = $785; + } + while(1) { + $791 = (($R$0$i$i) + 20|0); + $792 = HEAP32[$791>>2]|0; + $793 = ($792|0)==(0|0); + if (!($793)) { + $R$0$i$i = $792;$RP$0$i$i = $791; + continue; + } + $794 = (($R$0$i$i) + 16|0); + $795 = HEAP32[$794>>2]|0; + $796 = ($795|0)==(0|0); + if ($796) { + break; + } else { + $R$0$i$i = $795;$RP$0$i$i = $794; + } + } + $797 = ($RP$0$i$i>>>0)<($756>>>0); + if ($797) { + _abort(); + // unreachable; + } else { + HEAP32[$RP$0$i$i>>2] = 0; + $R$1$i$i = $R$0$i$i; + break; + } + } else { + $$sum3536$i$i = $720 | 8; + $$sum107$i = (($$sum3536$i$i) + ($tsize$244$i))|0; + $776 = (($tbase$245$i) + ($$sum107$i)|0); + $777 = HEAP32[$776>>2]|0; + $778 = ($777>>>0)<($756>>>0); + if ($778) { + _abort(); + // unreachable; + } + $779 = (($777) + 12|0); + $780 = HEAP32[$779>>2]|0; + $781 = ($780|0)==($721|0); + if (!($781)) { + _abort(); + // unreachable; + } + $782 = (($774) + 8|0); + $783 = HEAP32[$782>>2]|0; + $784 = ($783|0)==($721|0); + if ($784) { + HEAP32[$779>>2] = $774; + HEAP32[$782>>2] = $777; + $R$1$i$i = $774; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $798 = ($772|0)==(0|0); + if ($798) { + break; + } + $$sum30$i$i = (($tsize$244$i) + 28)|0; + $$sum108$i = (($$sum30$i$i) + ($720))|0; + $799 = (($tbase$245$i) + ($$sum108$i)|0); + $800 = HEAP32[$799>>2]|0; + $801 = ((32544 + ($800<<2)|0) + 304|0); + $802 = HEAP32[$801>>2]|0; + $803 = ($721|0)==($802|0); + do { + if ($803) { + HEAP32[$801>>2] = $R$1$i$i; + $cond$i$i = ($R$1$i$i|0)==(0|0); + if (!($cond$i$i)) { + break; + } + $804 = 1 << $800; + $805 = $804 ^ -1; + $806 = HEAP32[((32544 + 4|0))>>2]|0; + $807 = $806 & $805; + HEAP32[((32544 + 4|0))>>2] = $807; + break L353; + } else { + $808 = HEAP32[((32544 + 16|0))>>2]|0; + $809 = ($772>>>0)<($808>>>0); + if ($809) { + _abort(); + // unreachable; + } + $810 = (($772) + 16|0); + $811 = HEAP32[$810>>2]|0; + $812 = ($811|0)==($721|0); + if ($812) { + HEAP32[$810>>2] = $R$1$i$i; + } else { + $813 = (($772) + 20|0); + HEAP32[$813>>2] = $R$1$i$i; + } + $814 = ($R$1$i$i|0)==(0|0); + if ($814) { + break L353; + } + } + } while(0); + $815 = HEAP32[((32544 + 16|0))>>2]|0; + $816 = ($R$1$i$i>>>0)<($815>>>0); + if ($816) { + _abort(); + // unreachable; + } + $817 = (($R$1$i$i) + 24|0); + HEAP32[$817>>2] = $772; + $$sum3132$i$i = $720 | 16; + $$sum109$i = (($$sum3132$i$i) + ($tsize$244$i))|0; + $818 = (($tbase$245$i) + ($$sum109$i)|0); + $819 = HEAP32[$818>>2]|0; + $820 = ($819|0)==(0|0); + do { + if (!($820)) { + $821 = ($819>>>0)<($815>>>0); + if ($821) { + _abort(); + // unreachable; + } else { + $822 = (($R$1$i$i) + 16|0); + HEAP32[$822>>2] = $819; + $823 = (($819) + 24|0); + HEAP32[$823>>2] = $R$1$i$i; + break; + } + } + } while(0); + $$sum110$i = (($$sum2$i21$i) + ($$sum3132$i$i))|0; + $824 = (($tbase$245$i) + ($$sum110$i)|0); + $825 = HEAP32[$824>>2]|0; + $826 = ($825|0)==(0|0); + if ($826) { + break; + } + $827 = HEAP32[((32544 + 16|0))>>2]|0; + $828 = ($825>>>0)<($827>>>0); + if ($828) { + _abort(); + // unreachable; + } else { + $829 = (($R$1$i$i) + 20|0); + HEAP32[$829>>2] = $825; + $830 = (($825) + 24|0); + HEAP32[$830>>2] = $R$1$i$i; + break; + } + } + } while(0); + $$sum9$i$i = $745 | $720; + $$sum111$i = (($$sum9$i$i) + ($tsize$244$i))|0; + $831 = (($tbase$245$i) + ($$sum111$i)|0); + $832 = (($745) + ($726))|0; + $oldfirst$0$i$i = $831;$qsize$0$i$i = $832; + } else { + $oldfirst$0$i$i = $721;$qsize$0$i$i = $726; + } + $833 = (($oldfirst$0$i$i) + 4|0); + $834 = HEAP32[$833>>2]|0; + $835 = $834 & -2; + HEAP32[$833>>2] = $835; + $836 = $qsize$0$i$i | 1; + $$sum10$i$i = (($$sum$i19$i) + 4)|0; + $837 = (($tbase$245$i) + ($$sum10$i$i)|0); + HEAP32[$837>>2] = $836; + $$sum11$i22$i = (($qsize$0$i$i) + ($$sum$i19$i))|0; + $838 = (($tbase$245$i) + ($$sum11$i22$i)|0); + HEAP32[$838>>2] = $qsize$0$i$i; + $839 = $qsize$0$i$i >>> 3; + $840 = ($qsize$0$i$i>>>0)<(256); + if ($840) { + $841 = $839 << 1; + $842 = ((32544 + ($841<<2)|0) + 40|0); + $843 = HEAP32[32544>>2]|0; + $844 = 1 << $839; + $845 = $843 & $844; + $846 = ($845|0)==(0); + do { + if ($846) { + $847 = $843 | $844; + HEAP32[32544>>2] = $847; + $$sum26$pre$i$i = (($841) + 2)|0; + $$pre$i23$i = ((32544 + ($$sum26$pre$i$i<<2)|0) + 40|0); + $$pre$phi$i24$iZ2D = $$pre$i23$i;$F4$0$i$i = $842; + } else { + $$sum29$i$i = (($841) + 2)|0; + $848 = ((32544 + ($$sum29$i$i<<2)|0) + 40|0); + $849 = HEAP32[$848>>2]|0; + $850 = HEAP32[((32544 + 16|0))>>2]|0; + $851 = ($849>>>0)<($850>>>0); + if (!($851)) { + $$pre$phi$i24$iZ2D = $848;$F4$0$i$i = $849; + break; + } + _abort(); + // unreachable; + } + } while(0); + HEAP32[$$pre$phi$i24$iZ2D>>2] = $725; + $852 = (($F4$0$i$i) + 12|0); + HEAP32[$852>>2] = $725; + $$sum27$i$i = (($$sum$i19$i) + 8)|0; + $853 = (($tbase$245$i) + ($$sum27$i$i)|0); + HEAP32[$853>>2] = $F4$0$i$i; + $$sum28$i$i = (($$sum$i19$i) + 12)|0; + $854 = (($tbase$245$i) + ($$sum28$i$i)|0); + HEAP32[$854>>2] = $842; + break; + } + $855 = $qsize$0$i$i >>> 8; + $856 = ($855|0)==(0); + do { + if ($856) { + $I7$0$i$i = 0; + } else { + $857 = ($qsize$0$i$i>>>0)>(16777215); + if ($857) { + $I7$0$i$i = 31; + break; + } + $858 = (($855) + 1048320)|0; + $859 = $858 >>> 16; + $860 = $859 & 8; + $861 = $855 << $860; + $862 = (($861) + 520192)|0; + $863 = $862 >>> 16; + $864 = $863 & 4; + $865 = $864 | $860; + $866 = $861 << $864; + $867 = (($866) + 245760)|0; + $868 = $867 >>> 16; + $869 = $868 & 2; + $870 = $865 | $869; + $871 = (14 - ($870))|0; + $872 = $866 << $869; + $873 = $872 >>> 15; + $874 = (($871) + ($873))|0; + $875 = $874 << 1; + $876 = (($874) + 7)|0; + $877 = $qsize$0$i$i >>> $876; + $878 = $877 & 1; + $879 = $878 | $875; + $I7$0$i$i = $879; + } + } while(0); + $880 = ((32544 + ($I7$0$i$i<<2)|0) + 304|0); + $$sum12$i$i = (($$sum$i19$i) + 28)|0; + $881 = (($tbase$245$i) + ($$sum12$i$i)|0); + HEAP32[$881>>2] = $I7$0$i$i; + $$sum13$i$i = (($$sum$i19$i) + 16)|0; + $882 = (($tbase$245$i) + ($$sum13$i$i)|0); + $$sum14$i$i = (($$sum$i19$i) + 20)|0; + $883 = (($tbase$245$i) + ($$sum14$i$i)|0); + HEAP32[$883>>2] = 0; + HEAP32[$882>>2] = 0; + $884 = HEAP32[((32544 + 4|0))>>2]|0; + $885 = 1 << $I7$0$i$i; + $886 = $884 & $885; + $887 = ($886|0)==(0); + if ($887) { + $888 = $884 | $885; + HEAP32[((32544 + 4|0))>>2] = $888; + HEAP32[$880>>2] = $725; + $$sum15$i$i = (($$sum$i19$i) + 24)|0; + $889 = (($tbase$245$i) + ($$sum15$i$i)|0); + HEAP32[$889>>2] = $880; + $$sum16$i$i = (($$sum$i19$i) + 12)|0; + $890 = (($tbase$245$i) + ($$sum16$i$i)|0); + HEAP32[$890>>2] = $725; + $$sum17$i$i = (($$sum$i19$i) + 8)|0; + $891 = (($tbase$245$i) + ($$sum17$i$i)|0); + HEAP32[$891>>2] = $725; + break; + } + $892 = HEAP32[$880>>2]|0; + $893 = ($I7$0$i$i|0)==(31); + if ($893) { + $901 = 0; + } else { + $894 = $I7$0$i$i >>> 1; + $895 = (25 - ($894))|0; + $901 = $895; + } + $896 = (($892) + 4|0); + $897 = HEAP32[$896>>2]|0; + $898 = $897 & -8; + $899 = ($898|0)==($qsize$0$i$i|0); + L442: do { + if ($899) { + $T$0$lcssa$i26$i = $892; + } else { + $900 = $qsize$0$i$i << $901; + $K8$053$i$i = $900;$T$052$i$i = $892; + while(1) { + $908 = $K8$053$i$i >>> 31; + $909 = ((($T$052$i$i) + ($908<<2)|0) + 16|0); + $904 = HEAP32[$909>>2]|0; + $910 = ($904|0)==(0|0); + if ($910) { + break; + } + $902 = $K8$053$i$i << 1; + $903 = (($904) + 4|0); + $905 = HEAP32[$903>>2]|0; + $906 = $905 & -8; + $907 = ($906|0)==($qsize$0$i$i|0); + if ($907) { + $T$0$lcssa$i26$i = $904; + break L442; + } else { + $K8$053$i$i = $902;$T$052$i$i = $904; + } + } + $911 = HEAP32[((32544 + 16|0))>>2]|0; + $912 = ($909>>>0)<($911>>>0); + if ($912) { + _abort(); + // unreachable; + } else { + HEAP32[$909>>2] = $725; + $$sum23$i$i = (($$sum$i19$i) + 24)|0; + $913 = (($tbase$245$i) + ($$sum23$i$i)|0); + HEAP32[$913>>2] = $T$052$i$i; + $$sum24$i$i = (($$sum$i19$i) + 12)|0; + $914 = (($tbase$245$i) + ($$sum24$i$i)|0); + HEAP32[$914>>2] = $725; + $$sum25$i$i = (($$sum$i19$i) + 8)|0; + $915 = (($tbase$245$i) + ($$sum25$i$i)|0); + HEAP32[$915>>2] = $725; + break L345; + } + } + } while(0); + $916 = (($T$0$lcssa$i26$i) + 8|0); + $917 = HEAP32[$916>>2]|0; + $918 = HEAP32[((32544 + 16|0))>>2]|0; + $919 = ($T$0$lcssa$i26$i>>>0)>=($918>>>0); + $920 = ($917>>>0)>=($918>>>0); + $or$cond$i27$i = $919 & $920; + if ($or$cond$i27$i) { + $921 = (($917) + 12|0); + HEAP32[$921>>2] = $725; + HEAP32[$916>>2] = $725; + $$sum20$i$i = (($$sum$i19$i) + 8)|0; + $922 = (($tbase$245$i) + ($$sum20$i$i)|0); + HEAP32[$922>>2] = $917; + $$sum21$i$i = (($$sum$i19$i) + 12)|0; + $923 = (($tbase$245$i) + ($$sum21$i$i)|0); + HEAP32[$923>>2] = $T$0$lcssa$i26$i; + $$sum22$i$i = (($$sum$i19$i) + 24)|0; + $924 = (($tbase$245$i) + ($$sum22$i$i)|0); + HEAP32[$924>>2] = 0; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $$sum1819$i$i = $713 | 8; + $925 = (($tbase$245$i) + ($$sum1819$i$i)|0); + $mem$0 = $925; + STACKTOP = sp;return ($mem$0|0); + } + } + $sp$0$i$i$i = ((32544 + 448|0)); + while(1) { + $926 = HEAP32[$sp$0$i$i$i>>2]|0; + $927 = ($926>>>0)>($636>>>0); + if (!($927)) { + $928 = (($sp$0$i$i$i) + 4|0); + $929 = HEAP32[$928>>2]|0; + $930 = (($926) + ($929)|0); + $931 = ($930>>>0)>($636>>>0); + if ($931) { + break; + } + } + $932 = (($sp$0$i$i$i) + 8|0); + $933 = HEAP32[$932>>2]|0; + $sp$0$i$i$i = $933; + } + $$sum$i13$i = (($929) + -47)|0; + $$sum1$i14$i = (($929) + -39)|0; + $934 = (($926) + ($$sum1$i14$i)|0); + $935 = $934; + $936 = $935 & 7; + $937 = ($936|0)==(0); + if ($937) { + $940 = 0; + } else { + $938 = (0 - ($935))|0; + $939 = $938 & 7; + $940 = $939; + } + $$sum2$i15$i = (($$sum$i13$i) + ($940))|0; + $941 = (($926) + ($$sum2$i15$i)|0); + $942 = (($636) + 16|0); + $943 = ($941>>>0)<($942>>>0); + $944 = $943 ? $636 : $941; + $945 = (($944) + 8|0); + $946 = (($tsize$244$i) + -40)|0; + $947 = (($tbase$245$i) + 8|0); + $948 = $947; + $949 = $948 & 7; + $950 = ($949|0)==(0); + if ($950) { + $954 = 0; + } else { + $951 = (0 - ($948))|0; + $952 = $951 & 7; + $954 = $952; + } + $953 = (($tbase$245$i) + ($954)|0); + $955 = (($946) - ($954))|0; + HEAP32[((32544 + 24|0))>>2] = $953; + HEAP32[((32544 + 12|0))>>2] = $955; + $956 = $955 | 1; + $$sum$i$i$i = (($954) + 4)|0; + $957 = (($tbase$245$i) + ($$sum$i$i$i)|0); + HEAP32[$957>>2] = $956; + $$sum2$i$i$i = (($tsize$244$i) + -36)|0; + $958 = (($tbase$245$i) + ($$sum2$i$i$i)|0); + HEAP32[$958>>2] = 40; + $959 = HEAP32[((33016 + 16|0))>>2]|0; + HEAP32[((32544 + 28|0))>>2] = $959; + $960 = (($944) + 4|0); + HEAP32[$960>>2] = 27; + ;HEAP32[$945+0>>2]=HEAP32[((32544 + 448|0))+0>>2]|0;HEAP32[$945+4>>2]=HEAP32[((32544 + 448|0))+4>>2]|0;HEAP32[$945+8>>2]=HEAP32[((32544 + 448|0))+8>>2]|0;HEAP32[$945+12>>2]=HEAP32[((32544 + 448|0))+12>>2]|0; + HEAP32[((32544 + 448|0))>>2] = $tbase$245$i; + HEAP32[((32544 + 452|0))>>2] = $tsize$244$i; + HEAP32[((32544 + 460|0))>>2] = 0; + HEAP32[((32544 + 456|0))>>2] = $945; + $961 = (($944) + 28|0); + HEAP32[$961>>2] = 7; + $962 = (($944) + 32|0); + $963 = ($962>>>0)<($930>>>0); + if ($963) { + $965 = $961; + while(1) { + $964 = (($965) + 4|0); + HEAP32[$964>>2] = 7; + $966 = (($965) + 8|0); + $967 = ($966>>>0)<($930>>>0); + if ($967) { + $965 = $964; + } else { + break; + } + } + } + $968 = ($944|0)==($636|0); + if (!($968)) { + $969 = $944; + $970 = $636; + $971 = (($969) - ($970))|0; + $972 = (($636) + ($971)|0); + $$sum3$i$i = (($971) + 4)|0; + $973 = (($636) + ($$sum3$i$i)|0); + $974 = HEAP32[$973>>2]|0; + $975 = $974 & -2; + HEAP32[$973>>2] = $975; + $976 = $971 | 1; + $977 = (($636) + 4|0); + HEAP32[$977>>2] = $976; + HEAP32[$972>>2] = $971; + $978 = $971 >>> 3; + $979 = ($971>>>0)<(256); + if ($979) { + $980 = $978 << 1; + $981 = ((32544 + ($980<<2)|0) + 40|0); + $982 = HEAP32[32544>>2]|0; + $983 = 1 << $978; + $984 = $982 & $983; + $985 = ($984|0)==(0); + do { + if ($985) { + $986 = $982 | $983; + HEAP32[32544>>2] = $986; + $$sum10$pre$i$i = (($980) + 2)|0; + $$pre$i$i = ((32544 + ($$sum10$pre$i$i<<2)|0) + 40|0); + $$pre$phi$i$iZ2D = $$pre$i$i;$F$0$i$i = $981; + } else { + $$sum11$i$i = (($980) + 2)|0; + $987 = ((32544 + ($$sum11$i$i<<2)|0) + 40|0); + $988 = HEAP32[$987>>2]|0; + $989 = HEAP32[((32544 + 16|0))>>2]|0; + $990 = ($988>>>0)<($989>>>0); + if (!($990)) { + $$pre$phi$i$iZ2D = $987;$F$0$i$i = $988; + break; + } + _abort(); + // unreachable; + } + } while(0); + HEAP32[$$pre$phi$i$iZ2D>>2] = $636; + $991 = (($F$0$i$i) + 12|0); + HEAP32[$991>>2] = $636; + $992 = (($636) + 8|0); + HEAP32[$992>>2] = $F$0$i$i; + $993 = (($636) + 12|0); + HEAP32[$993>>2] = $981; + break; + } + $994 = $971 >>> 8; + $995 = ($994|0)==(0); + if ($995) { + $I1$0$i$i = 0; + } else { + $996 = ($971>>>0)>(16777215); + if ($996) { + $I1$0$i$i = 31; + } else { + $997 = (($994) + 1048320)|0; + $998 = $997 >>> 16; + $999 = $998 & 8; + $1000 = $994 << $999; + $1001 = (($1000) + 520192)|0; + $1002 = $1001 >>> 16; + $1003 = $1002 & 4; + $1004 = $1003 | $999; + $1005 = $1000 << $1003; + $1006 = (($1005) + 245760)|0; + $1007 = $1006 >>> 16; + $1008 = $1007 & 2; + $1009 = $1004 | $1008; + $1010 = (14 - ($1009))|0; + $1011 = $1005 << $1008; + $1012 = $1011 >>> 15; + $1013 = (($1010) + ($1012))|0; + $1014 = $1013 << 1; + $1015 = (($1013) + 7)|0; + $1016 = $971 >>> $1015; + $1017 = $1016 & 1; + $1018 = $1017 | $1014; + $I1$0$i$i = $1018; + } + } + $1019 = ((32544 + ($I1$0$i$i<<2)|0) + 304|0); + $1020 = (($636) + 28|0); + $I1$0$c$i$i = $I1$0$i$i; + HEAP32[$1020>>2] = $I1$0$c$i$i; + $1021 = (($636) + 20|0); + HEAP32[$1021>>2] = 0; + $1022 = (($636) + 16|0); + HEAP32[$1022>>2] = 0; + $1023 = HEAP32[((32544 + 4|0))>>2]|0; + $1024 = 1 << $I1$0$i$i; + $1025 = $1023 & $1024; + $1026 = ($1025|0)==(0); + if ($1026) { + $1027 = $1023 | $1024; + HEAP32[((32544 + 4|0))>>2] = $1027; + HEAP32[$1019>>2] = $636; + $1028 = (($636) + 24|0); + HEAP32[$1028>>2] = $1019; + $1029 = (($636) + 12|0); + HEAP32[$1029>>2] = $636; + $1030 = (($636) + 8|0); + HEAP32[$1030>>2] = $636; + break; + } + $1031 = HEAP32[$1019>>2]|0; + $1032 = ($I1$0$i$i|0)==(31); + if ($1032) { + $1040 = 0; + } else { + $1033 = $I1$0$i$i >>> 1; + $1034 = (25 - ($1033))|0; + $1040 = $1034; + } + $1035 = (($1031) + 4|0); + $1036 = HEAP32[$1035>>2]|0; + $1037 = $1036 & -8; + $1038 = ($1037|0)==($971|0); + L493: do { + if ($1038) { + $T$0$lcssa$i$i = $1031; + } else { + $1039 = $971 << $1040; + $K2$015$i$i = $1039;$T$014$i$i = $1031; + while(1) { + $1047 = $K2$015$i$i >>> 31; + $1048 = ((($T$014$i$i) + ($1047<<2)|0) + 16|0); + $1043 = HEAP32[$1048>>2]|0; + $1049 = ($1043|0)==(0|0); + if ($1049) { + break; + } + $1041 = $K2$015$i$i << 1; + $1042 = (($1043) + 4|0); + $1044 = HEAP32[$1042>>2]|0; + $1045 = $1044 & -8; + $1046 = ($1045|0)==($971|0); + if ($1046) { + $T$0$lcssa$i$i = $1043; + break L493; + } else { + $K2$015$i$i = $1041;$T$014$i$i = $1043; + } + } + $1050 = HEAP32[((32544 + 16|0))>>2]|0; + $1051 = ($1048>>>0)<($1050>>>0); + if ($1051) { + _abort(); + // unreachable; + } else { + HEAP32[$1048>>2] = $636; + $1052 = (($636) + 24|0); + HEAP32[$1052>>2] = $T$014$i$i; + $1053 = (($636) + 12|0); + HEAP32[$1053>>2] = $636; + $1054 = (($636) + 8|0); + HEAP32[$1054>>2] = $636; + break L308; + } + } + } while(0); + $1055 = (($T$0$lcssa$i$i) + 8|0); + $1056 = HEAP32[$1055>>2]|0; + $1057 = HEAP32[((32544 + 16|0))>>2]|0; + $1058 = ($T$0$lcssa$i$i>>>0)>=($1057>>>0); + $1059 = ($1056>>>0)>=($1057>>>0); + $or$cond$i$i = $1058 & $1059; + if ($or$cond$i$i) { + $1060 = (($1056) + 12|0); + HEAP32[$1060>>2] = $636; + HEAP32[$1055>>2] = $636; + $1061 = (($636) + 8|0); + HEAP32[$1061>>2] = $1056; + $1062 = (($636) + 12|0); + HEAP32[$1062>>2] = $T$0$lcssa$i$i; + $1063 = (($636) + 24|0); + HEAP32[$1063>>2] = 0; + break; + } else { + _abort(); + // unreachable; + } + } + } + } while(0); + $1064 = HEAP32[((32544 + 12|0))>>2]|0; + $1065 = ($1064>>>0)>($nb$0>>>0); + if ($1065) { + $1066 = (($1064) - ($nb$0))|0; + HEAP32[((32544 + 12|0))>>2] = $1066; + $1067 = HEAP32[((32544 + 24|0))>>2]|0; + $1068 = (($1067) + ($nb$0)|0); + HEAP32[((32544 + 24|0))>>2] = $1068; + $1069 = $1066 | 1; + $$sum$i32 = (($nb$0) + 4)|0; + $1070 = (($1067) + ($$sum$i32)|0); + HEAP32[$1070>>2] = $1069; + $1071 = $nb$0 | 3; + $1072 = (($1067) + 4|0); + HEAP32[$1072>>2] = $1071; + $1073 = (($1067) + 8|0); + $mem$0 = $1073; + STACKTOP = sp;return ($mem$0|0); + } + } + $1074 = (___errno_location()|0); + HEAP32[$1074>>2] = 12; + $mem$0 = 0; + STACKTOP = sp;return ($mem$0|0); +} +function _free($mem) { + $mem = $mem|0; + var $$pre = 0, $$pre$phi66Z2D = 0, $$pre$phi68Z2D = 0, $$pre$phiZ2D = 0, $$pre65 = 0, $$pre67 = 0, $$sum = 0, $$sum16$pre = 0, $$sum17 = 0, $$sum18 = 0, $$sum19 = 0, $$sum2 = 0, $$sum20 = 0, $$sum2324 = 0, $$sum25 = 0, $$sum26 = 0, $$sum28 = 0, $$sum29 = 0, $$sum3 = 0, $$sum30 = 0; + var $$sum31 = 0, $$sum32 = 0, $$sum33 = 0, $$sum34 = 0, $$sum35 = 0, $$sum36 = 0, $$sum37 = 0, $$sum5 = 0, $$sum67 = 0, $$sum8 = 0, $$sum9 = 0, $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0; + var $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0; + var $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0; + var $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0; + var $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0; + var $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0; + var $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0; + var $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0; + var $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0; + var $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0; + var $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0; + var $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0; + var $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0; + var $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0; + var $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0; + var $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0; + var $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $F16$0 = 0, $I18$0 = 0, $I18$0$c = 0, $K19$058 = 0, $R$0 = 0, $R$1 = 0, $R7$0 = 0; + var $R7$1 = 0, $RP$0 = 0, $RP9$0 = 0, $T$0$lcssa = 0, $T$057 = 0, $cond = 0, $cond54 = 0, $or$cond = 0, $p$0 = 0, $psize$0 = 0, $psize$1 = 0, $sp$0$i = 0, $sp$0$in$i = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = ($mem|0)==(0|0); + if ($0) { + STACKTOP = sp;return; + } + $1 = (($mem) + -8|0); + $2 = HEAP32[((32544 + 16|0))>>2]|0; + $3 = ($1>>>0)<($2>>>0); + if ($3) { + _abort(); + // unreachable; + } + $4 = (($mem) + -4|0); + $5 = HEAP32[$4>>2]|0; + $6 = $5 & 3; + $7 = ($6|0)==(1); + if ($7) { + _abort(); + // unreachable; + } + $8 = $5 & -8; + $$sum = (($8) + -8)|0; + $9 = (($mem) + ($$sum)|0); + $10 = $5 & 1; + $11 = ($10|0)==(0); + do { + if ($11) { + $12 = HEAP32[$1>>2]|0; + $13 = ($6|0)==(0); + if ($13) { + STACKTOP = sp;return; + } + $$sum2 = (-8 - ($12))|0; + $14 = (($mem) + ($$sum2)|0); + $15 = (($12) + ($8))|0; + $16 = ($14>>>0)<($2>>>0); + if ($16) { + _abort(); + // unreachable; + } + $17 = HEAP32[((32544 + 20|0))>>2]|0; + $18 = ($14|0)==($17|0); + if ($18) { + $$sum3 = (($8) + -4)|0; + $103 = (($mem) + ($$sum3)|0); + $104 = HEAP32[$103>>2]|0; + $105 = $104 & 3; + $106 = ($105|0)==(3); + if (!($106)) { + $p$0 = $14;$psize$0 = $15; + break; + } + HEAP32[((32544 + 8|0))>>2] = $15; + $107 = $104 & -2; + HEAP32[$103>>2] = $107; + $108 = $15 | 1; + $$sum26 = (($$sum2) + 4)|0; + $109 = (($mem) + ($$sum26)|0); + HEAP32[$109>>2] = $108; + HEAP32[$9>>2] = $15; + STACKTOP = sp;return; + } + $19 = $12 >>> 3; + $20 = ($12>>>0)<(256); + if ($20) { + $$sum36 = (($$sum2) + 8)|0; + $21 = (($mem) + ($$sum36)|0); + $22 = HEAP32[$21>>2]|0; + $$sum37 = (($$sum2) + 12)|0; + $23 = (($mem) + ($$sum37)|0); + $24 = HEAP32[$23>>2]|0; + $25 = $19 << 1; + $26 = ((32544 + ($25<<2)|0) + 40|0); + $27 = ($22|0)==($26|0); + if (!($27)) { + $28 = ($22>>>0)<($2>>>0); + if ($28) { + _abort(); + // unreachable; + } + $29 = (($22) + 12|0); + $30 = HEAP32[$29>>2]|0; + $31 = ($30|0)==($14|0); + if (!($31)) { + _abort(); + // unreachable; + } + } + $32 = ($24|0)==($22|0); + if ($32) { + $33 = 1 << $19; + $34 = $33 ^ -1; + $35 = HEAP32[32544>>2]|0; + $36 = $35 & $34; + HEAP32[32544>>2] = $36; + $p$0 = $14;$psize$0 = $15; + break; + } + $37 = ($24|0)==($26|0); + if ($37) { + $$pre67 = (($24) + 8|0); + $$pre$phi68Z2D = $$pre67; + } else { + $38 = ($24>>>0)<($2>>>0); + if ($38) { + _abort(); + // unreachable; + } + $39 = (($24) + 8|0); + $40 = HEAP32[$39>>2]|0; + $41 = ($40|0)==($14|0); + if ($41) { + $$pre$phi68Z2D = $39; + } else { + _abort(); + // unreachable; + } + } + $42 = (($22) + 12|0); + HEAP32[$42>>2] = $24; + HEAP32[$$pre$phi68Z2D>>2] = $22; + $p$0 = $14;$psize$0 = $15; + break; + } + $$sum28 = (($$sum2) + 24)|0; + $43 = (($mem) + ($$sum28)|0); + $44 = HEAP32[$43>>2]|0; + $$sum29 = (($$sum2) + 12)|0; + $45 = (($mem) + ($$sum29)|0); + $46 = HEAP32[$45>>2]|0; + $47 = ($46|0)==($14|0); + do { + if ($47) { + $$sum31 = (($$sum2) + 20)|0; + $57 = (($mem) + ($$sum31)|0); + $58 = HEAP32[$57>>2]|0; + $59 = ($58|0)==(0|0); + if ($59) { + $$sum30 = (($$sum2) + 16)|0; + $60 = (($mem) + ($$sum30)|0); + $61 = HEAP32[$60>>2]|0; + $62 = ($61|0)==(0|0); + if ($62) { + $R$1 = 0; + break; + } else { + $R$0 = $61;$RP$0 = $60; + } + } else { + $R$0 = $58;$RP$0 = $57; + } + while(1) { + $63 = (($R$0) + 20|0); + $64 = HEAP32[$63>>2]|0; + $65 = ($64|0)==(0|0); + if (!($65)) { + $R$0 = $64;$RP$0 = $63; + continue; + } + $66 = (($R$0) + 16|0); + $67 = HEAP32[$66>>2]|0; + $68 = ($67|0)==(0|0); + if ($68) { + break; + } else { + $R$0 = $67;$RP$0 = $66; + } + } + $69 = ($RP$0>>>0)<($2>>>0); + if ($69) { + _abort(); + // unreachable; + } else { + HEAP32[$RP$0>>2] = 0; + $R$1 = $R$0; + break; + } + } else { + $$sum35 = (($$sum2) + 8)|0; + $48 = (($mem) + ($$sum35)|0); + $49 = HEAP32[$48>>2]|0; + $50 = ($49>>>0)<($2>>>0); + if ($50) { + _abort(); + // unreachable; + } + $51 = (($49) + 12|0); + $52 = HEAP32[$51>>2]|0; + $53 = ($52|0)==($14|0); + if (!($53)) { + _abort(); + // unreachable; + } + $54 = (($46) + 8|0); + $55 = HEAP32[$54>>2]|0; + $56 = ($55|0)==($14|0); + if ($56) { + HEAP32[$51>>2] = $46; + HEAP32[$54>>2] = $49; + $R$1 = $46; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $70 = ($44|0)==(0|0); + if ($70) { + $p$0 = $14;$psize$0 = $15; + } else { + $$sum32 = (($$sum2) + 28)|0; + $71 = (($mem) + ($$sum32)|0); + $72 = HEAP32[$71>>2]|0; + $73 = ((32544 + ($72<<2)|0) + 304|0); + $74 = HEAP32[$73>>2]|0; + $75 = ($14|0)==($74|0); + if ($75) { + HEAP32[$73>>2] = $R$1; + $cond = ($R$1|0)==(0|0); + if ($cond) { + $76 = 1 << $72; + $77 = $76 ^ -1; + $78 = HEAP32[((32544 + 4|0))>>2]|0; + $79 = $78 & $77; + HEAP32[((32544 + 4|0))>>2] = $79; + $p$0 = $14;$psize$0 = $15; + break; + } + } else { + $80 = HEAP32[((32544 + 16|0))>>2]|0; + $81 = ($44>>>0)<($80>>>0); + if ($81) { + _abort(); + // unreachable; + } + $82 = (($44) + 16|0); + $83 = HEAP32[$82>>2]|0; + $84 = ($83|0)==($14|0); + if ($84) { + HEAP32[$82>>2] = $R$1; + } else { + $85 = (($44) + 20|0); + HEAP32[$85>>2] = $R$1; + } + $86 = ($R$1|0)==(0|0); + if ($86) { + $p$0 = $14;$psize$0 = $15; + break; + } + } + $87 = HEAP32[((32544 + 16|0))>>2]|0; + $88 = ($R$1>>>0)<($87>>>0); + if ($88) { + _abort(); + // unreachable; + } + $89 = (($R$1) + 24|0); + HEAP32[$89>>2] = $44; + $$sum33 = (($$sum2) + 16)|0; + $90 = (($mem) + ($$sum33)|0); + $91 = HEAP32[$90>>2]|0; + $92 = ($91|0)==(0|0); + do { + if (!($92)) { + $93 = ($91>>>0)<($87>>>0); + if ($93) { + _abort(); + // unreachable; + } else { + $94 = (($R$1) + 16|0); + HEAP32[$94>>2] = $91; + $95 = (($91) + 24|0); + HEAP32[$95>>2] = $R$1; + break; + } + } + } while(0); + $$sum34 = (($$sum2) + 20)|0; + $96 = (($mem) + ($$sum34)|0); + $97 = HEAP32[$96>>2]|0; + $98 = ($97|0)==(0|0); + if ($98) { + $p$0 = $14;$psize$0 = $15; + } else { + $99 = HEAP32[((32544 + 16|0))>>2]|0; + $100 = ($97>>>0)<($99>>>0); + if ($100) { + _abort(); + // unreachable; + } else { + $101 = (($R$1) + 20|0); + HEAP32[$101>>2] = $97; + $102 = (($97) + 24|0); + HEAP32[$102>>2] = $R$1; + $p$0 = $14;$psize$0 = $15; + break; + } + } + } + } else { + $p$0 = $1;$psize$0 = $8; + } + } while(0); + $110 = ($p$0>>>0)<($9>>>0); + if (!($110)) { + _abort(); + // unreachable; + } + $$sum25 = (($8) + -4)|0; + $111 = (($mem) + ($$sum25)|0); + $112 = HEAP32[$111>>2]|0; + $113 = $112 & 1; + $114 = ($113|0)==(0); + if ($114) { + _abort(); + // unreachable; + } + $115 = $112 & 2; + $116 = ($115|0)==(0); + if ($116) { + $117 = HEAP32[((32544 + 24|0))>>2]|0; + $118 = ($9|0)==($117|0); + if ($118) { + $119 = HEAP32[((32544 + 12|0))>>2]|0; + $120 = (($119) + ($psize$0))|0; + HEAP32[((32544 + 12|0))>>2] = $120; + HEAP32[((32544 + 24|0))>>2] = $p$0; + $121 = $120 | 1; + $122 = (($p$0) + 4|0); + HEAP32[$122>>2] = $121; + $123 = HEAP32[((32544 + 20|0))>>2]|0; + $124 = ($p$0|0)==($123|0); + if (!($124)) { + STACKTOP = sp;return; + } + HEAP32[((32544 + 20|0))>>2] = 0; + HEAP32[((32544 + 8|0))>>2] = 0; + STACKTOP = sp;return; + } + $125 = HEAP32[((32544 + 20|0))>>2]|0; + $126 = ($9|0)==($125|0); + if ($126) { + $127 = HEAP32[((32544 + 8|0))>>2]|0; + $128 = (($127) + ($psize$0))|0; + HEAP32[((32544 + 8|0))>>2] = $128; + HEAP32[((32544 + 20|0))>>2] = $p$0; + $129 = $128 | 1; + $130 = (($p$0) + 4|0); + HEAP32[$130>>2] = $129; + $131 = (($p$0) + ($128)|0); + HEAP32[$131>>2] = $128; + STACKTOP = sp;return; + } + $132 = $112 & -8; + $133 = (($132) + ($psize$0))|0; + $134 = $112 >>> 3; + $135 = ($112>>>0)<(256); + do { + if ($135) { + $136 = (($mem) + ($8)|0); + $137 = HEAP32[$136>>2]|0; + $$sum2324 = $8 | 4; + $138 = (($mem) + ($$sum2324)|0); + $139 = HEAP32[$138>>2]|0; + $140 = $134 << 1; + $141 = ((32544 + ($140<<2)|0) + 40|0); + $142 = ($137|0)==($141|0); + if (!($142)) { + $143 = HEAP32[((32544 + 16|0))>>2]|0; + $144 = ($137>>>0)<($143>>>0); + if ($144) { + _abort(); + // unreachable; + } + $145 = (($137) + 12|0); + $146 = HEAP32[$145>>2]|0; + $147 = ($146|0)==($9|0); + if (!($147)) { + _abort(); + // unreachable; + } + } + $148 = ($139|0)==($137|0); + if ($148) { + $149 = 1 << $134; + $150 = $149 ^ -1; + $151 = HEAP32[32544>>2]|0; + $152 = $151 & $150; + HEAP32[32544>>2] = $152; + break; + } + $153 = ($139|0)==($141|0); + if ($153) { + $$pre65 = (($139) + 8|0); + $$pre$phi66Z2D = $$pre65; + } else { + $154 = HEAP32[((32544 + 16|0))>>2]|0; + $155 = ($139>>>0)<($154>>>0); + if ($155) { + _abort(); + // unreachable; + } + $156 = (($139) + 8|0); + $157 = HEAP32[$156>>2]|0; + $158 = ($157|0)==($9|0); + if ($158) { + $$pre$phi66Z2D = $156; + } else { + _abort(); + // unreachable; + } + } + $159 = (($137) + 12|0); + HEAP32[$159>>2] = $139; + HEAP32[$$pre$phi66Z2D>>2] = $137; + } else { + $$sum5 = (($8) + 16)|0; + $160 = (($mem) + ($$sum5)|0); + $161 = HEAP32[$160>>2]|0; + $$sum67 = $8 | 4; + $162 = (($mem) + ($$sum67)|0); + $163 = HEAP32[$162>>2]|0; + $164 = ($163|0)==($9|0); + do { + if ($164) { + $$sum9 = (($8) + 12)|0; + $175 = (($mem) + ($$sum9)|0); + $176 = HEAP32[$175>>2]|0; + $177 = ($176|0)==(0|0); + if ($177) { + $$sum8 = (($8) + 8)|0; + $178 = (($mem) + ($$sum8)|0); + $179 = HEAP32[$178>>2]|0; + $180 = ($179|0)==(0|0); + if ($180) { + $R7$1 = 0; + break; + } else { + $R7$0 = $179;$RP9$0 = $178; + } + } else { + $R7$0 = $176;$RP9$0 = $175; + } + while(1) { + $181 = (($R7$0) + 20|0); + $182 = HEAP32[$181>>2]|0; + $183 = ($182|0)==(0|0); + if (!($183)) { + $R7$0 = $182;$RP9$0 = $181; + continue; + } + $184 = (($R7$0) + 16|0); + $185 = HEAP32[$184>>2]|0; + $186 = ($185|0)==(0|0); + if ($186) { + break; + } else { + $R7$0 = $185;$RP9$0 = $184; + } + } + $187 = HEAP32[((32544 + 16|0))>>2]|0; + $188 = ($RP9$0>>>0)<($187>>>0); + if ($188) { + _abort(); + // unreachable; + } else { + HEAP32[$RP9$0>>2] = 0; + $R7$1 = $R7$0; + break; + } + } else { + $165 = (($mem) + ($8)|0); + $166 = HEAP32[$165>>2]|0; + $167 = HEAP32[((32544 + 16|0))>>2]|0; + $168 = ($166>>>0)<($167>>>0); + if ($168) { + _abort(); + // unreachable; + } + $169 = (($166) + 12|0); + $170 = HEAP32[$169>>2]|0; + $171 = ($170|0)==($9|0); + if (!($171)) { + _abort(); + // unreachable; + } + $172 = (($163) + 8|0); + $173 = HEAP32[$172>>2]|0; + $174 = ($173|0)==($9|0); + if ($174) { + HEAP32[$169>>2] = $163; + HEAP32[$172>>2] = $166; + $R7$1 = $163; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $189 = ($161|0)==(0|0); + if (!($189)) { + $$sum18 = (($8) + 20)|0; + $190 = (($mem) + ($$sum18)|0); + $191 = HEAP32[$190>>2]|0; + $192 = ((32544 + ($191<<2)|0) + 304|0); + $193 = HEAP32[$192>>2]|0; + $194 = ($9|0)==($193|0); + if ($194) { + HEAP32[$192>>2] = $R7$1; + $cond54 = ($R7$1|0)==(0|0); + if ($cond54) { + $195 = 1 << $191; + $196 = $195 ^ -1; + $197 = HEAP32[((32544 + 4|0))>>2]|0; + $198 = $197 & $196; + HEAP32[((32544 + 4|0))>>2] = $198; + break; + } + } else { + $199 = HEAP32[((32544 + 16|0))>>2]|0; + $200 = ($161>>>0)<($199>>>0); + if ($200) { + _abort(); + // unreachable; + } + $201 = (($161) + 16|0); + $202 = HEAP32[$201>>2]|0; + $203 = ($202|0)==($9|0); + if ($203) { + HEAP32[$201>>2] = $R7$1; + } else { + $204 = (($161) + 20|0); + HEAP32[$204>>2] = $R7$1; + } + $205 = ($R7$1|0)==(0|0); + if ($205) { + break; + } + } + $206 = HEAP32[((32544 + 16|0))>>2]|0; + $207 = ($R7$1>>>0)<($206>>>0); + if ($207) { + _abort(); + // unreachable; + } + $208 = (($R7$1) + 24|0); + HEAP32[$208>>2] = $161; + $$sum19 = (($8) + 8)|0; + $209 = (($mem) + ($$sum19)|0); + $210 = HEAP32[$209>>2]|0; + $211 = ($210|0)==(0|0); + do { + if (!($211)) { + $212 = ($210>>>0)<($206>>>0); + if ($212) { + _abort(); + // unreachable; + } else { + $213 = (($R7$1) + 16|0); + HEAP32[$213>>2] = $210; + $214 = (($210) + 24|0); + HEAP32[$214>>2] = $R7$1; + break; + } + } + } while(0); + $$sum20 = (($8) + 12)|0; + $215 = (($mem) + ($$sum20)|0); + $216 = HEAP32[$215>>2]|0; + $217 = ($216|0)==(0|0); + if (!($217)) { + $218 = HEAP32[((32544 + 16|0))>>2]|0; + $219 = ($216>>>0)<($218>>>0); + if ($219) { + _abort(); + // unreachable; + } else { + $220 = (($R7$1) + 20|0); + HEAP32[$220>>2] = $216; + $221 = (($216) + 24|0); + HEAP32[$221>>2] = $R7$1; + break; + } + } + } + } + } while(0); + $222 = $133 | 1; + $223 = (($p$0) + 4|0); + HEAP32[$223>>2] = $222; + $224 = (($p$0) + ($133)|0); + HEAP32[$224>>2] = $133; + $225 = HEAP32[((32544 + 20|0))>>2]|0; + $226 = ($p$0|0)==($225|0); + if ($226) { + HEAP32[((32544 + 8|0))>>2] = $133; + STACKTOP = sp;return; + } else { + $psize$1 = $133; + } + } else { + $227 = $112 & -2; + HEAP32[$111>>2] = $227; + $228 = $psize$0 | 1; + $229 = (($p$0) + 4|0); + HEAP32[$229>>2] = $228; + $230 = (($p$0) + ($psize$0)|0); + HEAP32[$230>>2] = $psize$0; + $psize$1 = $psize$0; + } + $231 = $psize$1 >>> 3; + $232 = ($psize$1>>>0)<(256); + if ($232) { + $233 = $231 << 1; + $234 = ((32544 + ($233<<2)|0) + 40|0); + $235 = HEAP32[32544>>2]|0; + $236 = 1 << $231; + $237 = $235 & $236; + $238 = ($237|0)==(0); + if ($238) { + $239 = $235 | $236; + HEAP32[32544>>2] = $239; + $$sum16$pre = (($233) + 2)|0; + $$pre = ((32544 + ($$sum16$pre<<2)|0) + 40|0); + $$pre$phiZ2D = $$pre;$F16$0 = $234; + } else { + $$sum17 = (($233) + 2)|0; + $240 = ((32544 + ($$sum17<<2)|0) + 40|0); + $241 = HEAP32[$240>>2]|0; + $242 = HEAP32[((32544 + 16|0))>>2]|0; + $243 = ($241>>>0)<($242>>>0); + if ($243) { + _abort(); + // unreachable; + } else { + $$pre$phiZ2D = $240;$F16$0 = $241; + } + } + HEAP32[$$pre$phiZ2D>>2] = $p$0; + $244 = (($F16$0) + 12|0); + HEAP32[$244>>2] = $p$0; + $245 = (($p$0) + 8|0); + HEAP32[$245>>2] = $F16$0; + $246 = (($p$0) + 12|0); + HEAP32[$246>>2] = $234; + STACKTOP = sp;return; + } + $247 = $psize$1 >>> 8; + $248 = ($247|0)==(0); + if ($248) { + $I18$0 = 0; + } else { + $249 = ($psize$1>>>0)>(16777215); + if ($249) { + $I18$0 = 31; + } else { + $250 = (($247) + 1048320)|0; + $251 = $250 >>> 16; + $252 = $251 & 8; + $253 = $247 << $252; + $254 = (($253) + 520192)|0; + $255 = $254 >>> 16; + $256 = $255 & 4; + $257 = $256 | $252; + $258 = $253 << $256; + $259 = (($258) + 245760)|0; + $260 = $259 >>> 16; + $261 = $260 & 2; + $262 = $257 | $261; + $263 = (14 - ($262))|0; + $264 = $258 << $261; + $265 = $264 >>> 15; + $266 = (($263) + ($265))|0; + $267 = $266 << 1; + $268 = (($266) + 7)|0; + $269 = $psize$1 >>> $268; + $270 = $269 & 1; + $271 = $270 | $267; + $I18$0 = $271; + } + } + $272 = ((32544 + ($I18$0<<2)|0) + 304|0); + $273 = (($p$0) + 28|0); + $I18$0$c = $I18$0; + HEAP32[$273>>2] = $I18$0$c; + $274 = (($p$0) + 20|0); + HEAP32[$274>>2] = 0; + $275 = (($p$0) + 16|0); + HEAP32[$275>>2] = 0; + $276 = HEAP32[((32544 + 4|0))>>2]|0; + $277 = 1 << $I18$0; + $278 = $276 & $277; + $279 = ($278|0)==(0); + L199: do { + if ($279) { + $280 = $276 | $277; + HEAP32[((32544 + 4|0))>>2] = $280; + HEAP32[$272>>2] = $p$0; + $281 = (($p$0) + 24|0); + HEAP32[$281>>2] = $272; + $282 = (($p$0) + 12|0); + HEAP32[$282>>2] = $p$0; + $283 = (($p$0) + 8|0); + HEAP32[$283>>2] = $p$0; + } else { + $284 = HEAP32[$272>>2]|0; + $285 = ($I18$0|0)==(31); + if ($285) { + $293 = 0; + } else { + $286 = $I18$0 >>> 1; + $287 = (25 - ($286))|0; + $293 = $287; + } + $288 = (($284) + 4|0); + $289 = HEAP32[$288>>2]|0; + $290 = $289 & -8; + $291 = ($290|0)==($psize$1|0); + L205: do { + if ($291) { + $T$0$lcssa = $284; + } else { + $292 = $psize$1 << $293; + $K19$058 = $292;$T$057 = $284; + while(1) { + $300 = $K19$058 >>> 31; + $301 = ((($T$057) + ($300<<2)|0) + 16|0); + $296 = HEAP32[$301>>2]|0; + $302 = ($296|0)==(0|0); + if ($302) { + break; + } + $294 = $K19$058 << 1; + $295 = (($296) + 4|0); + $297 = HEAP32[$295>>2]|0; + $298 = $297 & -8; + $299 = ($298|0)==($psize$1|0); + if ($299) { + $T$0$lcssa = $296; + break L205; + } else { + $K19$058 = $294;$T$057 = $296; + } + } + $303 = HEAP32[((32544 + 16|0))>>2]|0; + $304 = ($301>>>0)<($303>>>0); + if ($304) { + _abort(); + // unreachable; + } else { + HEAP32[$301>>2] = $p$0; + $305 = (($p$0) + 24|0); + HEAP32[$305>>2] = $T$057; + $306 = (($p$0) + 12|0); + HEAP32[$306>>2] = $p$0; + $307 = (($p$0) + 8|0); + HEAP32[$307>>2] = $p$0; + break L199; + } + } + } while(0); + $308 = (($T$0$lcssa) + 8|0); + $309 = HEAP32[$308>>2]|0; + $310 = HEAP32[((32544 + 16|0))>>2]|0; + $311 = ($T$0$lcssa>>>0)>=($310>>>0); + $312 = ($309>>>0)>=($310>>>0); + $or$cond = $311 & $312; + if ($or$cond) { + $313 = (($309) + 12|0); + HEAP32[$313>>2] = $p$0; + HEAP32[$308>>2] = $p$0; + $314 = (($p$0) + 8|0); + HEAP32[$314>>2] = $309; + $315 = (($p$0) + 12|0); + HEAP32[$315>>2] = $T$0$lcssa; + $316 = (($p$0) + 24|0); + HEAP32[$316>>2] = 0; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $317 = HEAP32[((32544 + 32|0))>>2]|0; + $318 = (($317) + -1)|0; + HEAP32[((32544 + 32|0))>>2] = $318; + $319 = ($318|0)==(0); + if ($319) { + $sp$0$in$i = ((32544 + 456|0)); + } else { + STACKTOP = sp;return; + } + while(1) { + $sp$0$i = HEAP32[$sp$0$in$i>>2]|0; + $320 = ($sp$0$i|0)==(0|0); + $321 = (($sp$0$i) + 8|0); + if ($320) { + break; + } else { + $sp$0$in$i = $321; + } + } + HEAP32[((32544 + 32|0))>>2] = -1; + STACKTOP = sp;return; +} +function runPostSets() { + +} +function _bitshift64Ashr(low, high, bits) { + low = low|0; high = high|0; bits = bits|0; + var ander = 0; + if ((bits|0) < 32) { + ander = ((1 << bits) - 1)|0; + tempRet0 = high >> bits; + return (low >>> bits) | ((high&ander) << (32 - bits)); + } + tempRet0 = (high|0) < 0 ? -1 : 0; + return (high >> (bits - 32))|0; +} +function _i64Subtract(a, b, c, d) { + a = a|0; b = b|0; c = c|0; d = d|0; + var l = 0, h = 0; + l = (a - c)>>>0; + h = (b - d)>>>0; + h = (b - d - (((c>>>0) > (a>>>0))|0))>>>0; // Borrow one from high word to low word on underflow. + return ((tempRet0 = h,l|0)|0); +} +function _i64Add(a, b, c, d) { + /* + x = a + b*2^32 + y = c + d*2^32 + result = l + h*2^32 + */ + a = a|0; b = b|0; c = c|0; d = d|0; + var l = 0, h = 0; + l = (a + c)>>>0; + h = (b + d + (((l>>>0) < (a>>>0))|0))>>>0; // Add carry from low word to high word on overflow. + return ((tempRet0 = h,l|0)|0); +} +function _memset(ptr, value, num) { + ptr = ptr|0; value = value|0; num = num|0; + var stop = 0, value4 = 0, stop4 = 0, unaligned = 0; + stop = (ptr + num)|0; + if ((num|0) >= 20) { + // This is unaligned, but quite large, so work hard to get to aligned settings + value = value & 0xff; + unaligned = ptr & 3; + value4 = value | (value << 8) | (value << 16) | (value << 24); + stop4 = stop & ~3; + if (unaligned) { + unaligned = (ptr + 4 - unaligned)|0; + while ((ptr|0) < (unaligned|0)) { // no need to check for stop, since we have large num + HEAP8[((ptr)>>0)]=value; + ptr = (ptr+1)|0; + } + } + while ((ptr|0) < (stop4|0)) { + HEAP32[((ptr)>>2)]=value4; + ptr = (ptr+4)|0; + } + } + while ((ptr|0) < (stop|0)) { + HEAP8[((ptr)>>0)]=value; + ptr = (ptr+1)|0; + } + return (ptr-num)|0; +} +function _bitshift64Lshr(low, high, bits) { + low = low|0; high = high|0; bits = bits|0; + var ander = 0; + if ((bits|0) < 32) { + ander = ((1 << bits) - 1)|0; + tempRet0 = high >>> bits; + return (low >>> bits) | ((high&ander) << (32 - bits)); + } + tempRet0 = 0; + return (high >>> (bits - 32))|0; +} +function _bitshift64Shl(low, high, bits) { + low = low|0; high = high|0; bits = bits|0; + var ander = 0; + if ((bits|0) < 32) { + ander = ((1 << bits) - 1)|0; + tempRet0 = (high << bits) | ((low&(ander << (32 - bits))) >>> (32 - bits)); + return low << bits; + } + tempRet0 = low << (bits - 32); + return 0; +} +function _strlen(ptr) { + ptr = ptr|0; + var curr = 0; + curr = ptr; + while (((HEAP8[((curr)>>0)])|0)) { + curr = (curr + 1)|0; + } + return (curr - ptr)|0; +} +function _memcpy(dest, src, num) { + + dest = dest|0; src = src|0; num = num|0; + var ret = 0; + if ((num|0) >= 4096) return _emscripten_memcpy_big(dest|0, src|0, num|0)|0; + ret = dest|0; + if ((dest&3) == (src&3)) { + while (dest & 3) { + if ((num|0) == 0) return ret|0; + HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); + dest = (dest+1)|0; + src = (src+1)|0; + num = (num-1)|0; + } + while ((num|0) >= 4) { + HEAP32[((dest)>>2)]=((HEAP32[((src)>>2)])|0); + dest = (dest+4)|0; + src = (src+4)|0; + num = (num-4)|0; + } + } + while ((num|0) > 0) { + HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); + dest = (dest+1)|0; + src = (src+1)|0; + num = (num-1)|0; + } + return ret|0; +} +function _memmove(dest, src, num) { + dest = dest|0; src = src|0; num = num|0; + var ret = 0; + if (((src|0) < (dest|0)) & ((dest|0) < ((src + num)|0))) { + // Unlikely case: Copy backwards in a safe manner + ret = dest; + src = (src + num)|0; + dest = (dest + num)|0; + while ((num|0) > 0) { + dest = (dest - 1)|0; + src = (src - 1)|0; + num = (num - 1)|0; + HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); + } + dest = ret; + } else { + _memcpy(dest, src, num) | 0; + } + return dest | 0; +} +function _llvm_ctlz_i32(x) { + x = x|0; + var ret = 0; + ret = ((HEAP8[(((ctlz_i8)+(x >>> 24))>>0)])|0); + if ((ret|0) < 8) return ret|0; + ret = ((HEAP8[(((ctlz_i8)+((x >> 16)&0xff))>>0)])|0); + if ((ret|0) < 8) return (ret + 8)|0; + ret = ((HEAP8[(((ctlz_i8)+((x >> 8)&0xff))>>0)])|0); + if ((ret|0) < 8) return (ret + 16)|0; + return (((HEAP8[(((ctlz_i8)+(x&0xff))>>0)])|0) + 24)|0; + } + +function _llvm_cttz_i32(x) { + x = x|0; + var ret = 0; + ret = ((HEAP8[(((cttz_i8)+(x & 0xff))>>0)])|0); + if ((ret|0) < 8) return ret|0; + ret = ((HEAP8[(((cttz_i8)+((x >> 8)&0xff))>>0)])|0); + if ((ret|0) < 8) return (ret + 8)|0; + ret = ((HEAP8[(((cttz_i8)+((x >> 16)&0xff))>>0)])|0); + if ((ret|0) < 8) return (ret + 16)|0; + return (((HEAP8[(((cttz_i8)+(x >>> 24))>>0)])|0) + 24)|0; + } + +// ======== compiled code from system/lib/compiler-rt , see readme therein +function ___muldsi3($a, $b) { + $a = $a | 0; + $b = $b | 0; + var $1 = 0, $2 = 0, $3 = 0, $6 = 0, $8 = 0, $11 = 0, $12 = 0; + $1 = $a & 65535; + $2 = $b & 65535; + $3 = Math_imul($2, $1) | 0; + $6 = $a >>> 16; + $8 = ($3 >>> 16) + (Math_imul($2, $6) | 0) | 0; + $11 = $b >>> 16; + $12 = Math_imul($11, $1) | 0; + return (tempRet0 = (($8 >>> 16) + (Math_imul($11, $6) | 0) | 0) + ((($8 & 65535) + $12 | 0) >>> 16) | 0, 0 | ($8 + $12 << 16 | $3 & 65535)) | 0; +} +function ___divdi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $1$0 = 0, $1$1 = 0, $2$0 = 0, $2$1 = 0, $4$0 = 0, $4$1 = 0, $6$0 = 0, $7$0 = 0, $7$1 = 0, $8$0 = 0, $10$0 = 0; + $1$0 = $a$1 >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; + $1$1 = (($a$1 | 0) < 0 ? -1 : 0) >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; + $2$0 = $b$1 >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; + $2$1 = (($b$1 | 0) < 0 ? -1 : 0) >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; + $4$0 = _i64Subtract($1$0 ^ $a$0, $1$1 ^ $a$1, $1$0, $1$1) | 0; + $4$1 = tempRet0; + $6$0 = _i64Subtract($2$0 ^ $b$0, $2$1 ^ $b$1, $2$0, $2$1) | 0; + $7$0 = $2$0 ^ $1$0; + $7$1 = $2$1 ^ $1$1; + $8$0 = ___udivmoddi4($4$0, $4$1, $6$0, tempRet0, 0) | 0; + $10$0 = _i64Subtract($8$0 ^ $7$0, tempRet0 ^ $7$1, $7$0, $7$1) | 0; + return (tempRet0 = tempRet0, $10$0) | 0; +} +function ___remdi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $rem = 0, $1$0 = 0, $1$1 = 0, $2$0 = 0, $2$1 = 0, $4$0 = 0, $4$1 = 0, $6$0 = 0, $10$0 = 0, $10$1 = 0, __stackBase__ = 0; + __stackBase__ = STACKTOP; + STACKTOP = STACKTOP + 8 | 0; + $rem = __stackBase__ | 0; + $1$0 = $a$1 >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; + $1$1 = (($a$1 | 0) < 0 ? -1 : 0) >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; + $2$0 = $b$1 >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; + $2$1 = (($b$1 | 0) < 0 ? -1 : 0) >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; + $4$0 = _i64Subtract($1$0 ^ $a$0, $1$1 ^ $a$1, $1$0, $1$1) | 0; + $4$1 = tempRet0; + $6$0 = _i64Subtract($2$0 ^ $b$0, $2$1 ^ $b$1, $2$0, $2$1) | 0; + ___udivmoddi4($4$0, $4$1, $6$0, tempRet0, $rem) | 0; + $10$0 = _i64Subtract(HEAP32[$rem >> 2] ^ $1$0, HEAP32[$rem + 4 >> 2] ^ $1$1, $1$0, $1$1) | 0; + $10$1 = tempRet0; + STACKTOP = __stackBase__; + return (tempRet0 = $10$1, $10$0) | 0; +} +function ___muldi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $x_sroa_0_0_extract_trunc = 0, $y_sroa_0_0_extract_trunc = 0, $1$0 = 0, $1$1 = 0, $2 = 0; + $x_sroa_0_0_extract_trunc = $a$0; + $y_sroa_0_0_extract_trunc = $b$0; + $1$0 = ___muldsi3($x_sroa_0_0_extract_trunc, $y_sroa_0_0_extract_trunc) | 0; + $1$1 = tempRet0; + $2 = Math_imul($a$1, $y_sroa_0_0_extract_trunc) | 0; + return (tempRet0 = ((Math_imul($b$1, $x_sroa_0_0_extract_trunc) | 0) + $2 | 0) + $1$1 | $1$1 & 0, 0 | $1$0 & -1) | 0; +} +function ___udivdi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $1$0 = 0; + $1$0 = ___udivmoddi4($a$0, $a$1, $b$0, $b$1, 0) | 0; + return (tempRet0 = tempRet0, $1$0) | 0; +} +function ___uremdi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $rem = 0, __stackBase__ = 0; + __stackBase__ = STACKTOP; + STACKTOP = STACKTOP + 8 | 0; + $rem = __stackBase__ | 0; + ___udivmoddi4($a$0, $a$1, $b$0, $b$1, $rem) | 0; + STACKTOP = __stackBase__; + return (tempRet0 = HEAP32[$rem + 4 >> 2] | 0, HEAP32[$rem >> 2] | 0) | 0; +} +function ___udivmoddi4($a$0, $a$1, $b$0, $b$1, $rem) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + $rem = $rem | 0; + var $n_sroa_0_0_extract_trunc = 0, $n_sroa_1_4_extract_shift$0 = 0, $n_sroa_1_4_extract_trunc = 0, $d_sroa_0_0_extract_trunc = 0, $d_sroa_1_4_extract_shift$0 = 0, $d_sroa_1_4_extract_trunc = 0, $4 = 0, $17 = 0, $37 = 0, $49 = 0, $51 = 0, $57 = 0, $58 = 0, $66 = 0, $78 = 0, $86 = 0, $88 = 0, $89 = 0, $91 = 0, $92 = 0, $95 = 0, $105 = 0, $117 = 0, $119 = 0, $125 = 0, $126 = 0, $130 = 0, $q_sroa_1_1_ph = 0, $q_sroa_0_1_ph = 0, $r_sroa_1_1_ph = 0, $r_sroa_0_1_ph = 0, $sr_1_ph = 0, $d_sroa_0_0_insert_insert99$0 = 0, $d_sroa_0_0_insert_insert99$1 = 0, $137$0 = 0, $137$1 = 0, $carry_0203 = 0, $sr_1202 = 0, $r_sroa_0_1201 = 0, $r_sroa_1_1200 = 0, $q_sroa_0_1199 = 0, $q_sroa_1_1198 = 0, $147 = 0, $149 = 0, $r_sroa_0_0_insert_insert42$0 = 0, $r_sroa_0_0_insert_insert42$1 = 0, $150$1 = 0, $151$0 = 0, $152 = 0, $154$0 = 0, $r_sroa_0_0_extract_trunc = 0, $r_sroa_1_4_extract_trunc = 0, $155 = 0, $carry_0_lcssa$0 = 0, $carry_0_lcssa$1 = 0, $r_sroa_0_1_lcssa = 0, $r_sroa_1_1_lcssa = 0, $q_sroa_0_1_lcssa = 0, $q_sroa_1_1_lcssa = 0, $q_sroa_0_0_insert_ext75$0 = 0, $q_sroa_0_0_insert_ext75$1 = 0, $q_sroa_0_0_insert_insert77$1 = 0, $_0$0 = 0, $_0$1 = 0; + $n_sroa_0_0_extract_trunc = $a$0; + $n_sroa_1_4_extract_shift$0 = $a$1; + $n_sroa_1_4_extract_trunc = $n_sroa_1_4_extract_shift$0; + $d_sroa_0_0_extract_trunc = $b$0; + $d_sroa_1_4_extract_shift$0 = $b$1; + $d_sroa_1_4_extract_trunc = $d_sroa_1_4_extract_shift$0; + if (($n_sroa_1_4_extract_trunc | 0) == 0) { + $4 = ($rem | 0) != 0; + if (($d_sroa_1_4_extract_trunc | 0) == 0) { + if ($4) { + HEAP32[$rem >> 2] = ($n_sroa_0_0_extract_trunc >>> 0) % ($d_sroa_0_0_extract_trunc >>> 0); + HEAP32[$rem + 4 >> 2] = 0; + } + $_0$1 = 0; + $_0$0 = ($n_sroa_0_0_extract_trunc >>> 0) / ($d_sroa_0_0_extract_trunc >>> 0) >>> 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } else { + if (!$4) { + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + HEAP32[$rem >> 2] = $a$0 & -1; + HEAP32[$rem + 4 >> 2] = $a$1 & 0; + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + } + $17 = ($d_sroa_1_4_extract_trunc | 0) == 0; + do { + if (($d_sroa_0_0_extract_trunc | 0) == 0) { + if ($17) { + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = ($n_sroa_1_4_extract_trunc >>> 0) % ($d_sroa_0_0_extract_trunc >>> 0); + HEAP32[$rem + 4 >> 2] = 0; + } + $_0$1 = 0; + $_0$0 = ($n_sroa_1_4_extract_trunc >>> 0) / ($d_sroa_0_0_extract_trunc >>> 0) >>> 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + if (($n_sroa_0_0_extract_trunc | 0) == 0) { + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = 0; + HEAP32[$rem + 4 >> 2] = ($n_sroa_1_4_extract_trunc >>> 0) % ($d_sroa_1_4_extract_trunc >>> 0); + } + $_0$1 = 0; + $_0$0 = ($n_sroa_1_4_extract_trunc >>> 0) / ($d_sroa_1_4_extract_trunc >>> 0) >>> 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + $37 = $d_sroa_1_4_extract_trunc - 1 | 0; + if (($37 & $d_sroa_1_4_extract_trunc | 0) == 0) { + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = 0 | $a$0 & -1; + HEAP32[$rem + 4 >> 2] = $37 & $n_sroa_1_4_extract_trunc | $a$1 & 0; + } + $_0$1 = 0; + $_0$0 = $n_sroa_1_4_extract_trunc >>> ((_llvm_cttz_i32($d_sroa_1_4_extract_trunc | 0) | 0) >>> 0); + return (tempRet0 = $_0$1, $_0$0) | 0; + } + $49 = _llvm_ctlz_i32($d_sroa_1_4_extract_trunc | 0) | 0; + $51 = $49 - (_llvm_ctlz_i32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; + if ($51 >>> 0 <= 30) { + $57 = $51 + 1 | 0; + $58 = 31 - $51 | 0; + $sr_1_ph = $57; + $r_sroa_0_1_ph = $n_sroa_1_4_extract_trunc << $58 | $n_sroa_0_0_extract_trunc >>> ($57 >>> 0); + $r_sroa_1_1_ph = $n_sroa_1_4_extract_trunc >>> ($57 >>> 0); + $q_sroa_0_1_ph = 0; + $q_sroa_1_1_ph = $n_sroa_0_0_extract_trunc << $58; + break; + } + if (($rem | 0) == 0) { + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + HEAP32[$rem >> 2] = 0 | $a$0 & -1; + HEAP32[$rem + 4 >> 2] = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } else { + if (!$17) { + $117 = _llvm_ctlz_i32($d_sroa_1_4_extract_trunc | 0) | 0; + $119 = $117 - (_llvm_ctlz_i32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; + if ($119 >>> 0 <= 31) { + $125 = $119 + 1 | 0; + $126 = 31 - $119 | 0; + $130 = $119 - 31 >> 31; + $sr_1_ph = $125; + $r_sroa_0_1_ph = $n_sroa_0_0_extract_trunc >>> ($125 >>> 0) & $130 | $n_sroa_1_4_extract_trunc << $126; + $r_sroa_1_1_ph = $n_sroa_1_4_extract_trunc >>> ($125 >>> 0) & $130; + $q_sroa_0_1_ph = 0; + $q_sroa_1_1_ph = $n_sroa_0_0_extract_trunc << $126; + break; + } + if (($rem | 0) == 0) { + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + HEAP32[$rem >> 2] = 0 | $a$0 & -1; + HEAP32[$rem + 4 >> 2] = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + $66 = $d_sroa_0_0_extract_trunc - 1 | 0; + if (($66 & $d_sroa_0_0_extract_trunc | 0) != 0) { + $86 = (_llvm_ctlz_i32($d_sroa_0_0_extract_trunc | 0) | 0) + 33 | 0; + $88 = $86 - (_llvm_ctlz_i32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; + $89 = 64 - $88 | 0; + $91 = 32 - $88 | 0; + $92 = $91 >> 31; + $95 = $88 - 32 | 0; + $105 = $95 >> 31; + $sr_1_ph = $88; + $r_sroa_0_1_ph = $91 - 1 >> 31 & $n_sroa_1_4_extract_trunc >>> ($95 >>> 0) | ($n_sroa_1_4_extract_trunc << $91 | $n_sroa_0_0_extract_trunc >>> ($88 >>> 0)) & $105; + $r_sroa_1_1_ph = $105 & $n_sroa_1_4_extract_trunc >>> ($88 >>> 0); + $q_sroa_0_1_ph = $n_sroa_0_0_extract_trunc << $89 & $92; + $q_sroa_1_1_ph = ($n_sroa_1_4_extract_trunc << $89 | $n_sroa_0_0_extract_trunc >>> ($95 >>> 0)) & $92 | $n_sroa_0_0_extract_trunc << $91 & $88 - 33 >> 31; + break; + } + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = $66 & $n_sroa_0_0_extract_trunc; + HEAP32[$rem + 4 >> 2] = 0; + } + if (($d_sroa_0_0_extract_trunc | 0) == 1) { + $_0$1 = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; + $_0$0 = 0 | $a$0 & -1; + return (tempRet0 = $_0$1, $_0$0) | 0; + } else { + $78 = _llvm_cttz_i32($d_sroa_0_0_extract_trunc | 0) | 0; + $_0$1 = 0 | $n_sroa_1_4_extract_trunc >>> ($78 >>> 0); + $_0$0 = $n_sroa_1_4_extract_trunc << 32 - $78 | $n_sroa_0_0_extract_trunc >>> ($78 >>> 0) | 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + } + } while (0); + if (($sr_1_ph | 0) == 0) { + $q_sroa_1_1_lcssa = $q_sroa_1_1_ph; + $q_sroa_0_1_lcssa = $q_sroa_0_1_ph; + $r_sroa_1_1_lcssa = $r_sroa_1_1_ph; + $r_sroa_0_1_lcssa = $r_sroa_0_1_ph; + $carry_0_lcssa$1 = 0; + $carry_0_lcssa$0 = 0; + } else { + $d_sroa_0_0_insert_insert99$0 = 0 | $b$0 & -1; + $d_sroa_0_0_insert_insert99$1 = $d_sroa_1_4_extract_shift$0 | $b$1 & 0; + $137$0 = _i64Add($d_sroa_0_0_insert_insert99$0, $d_sroa_0_0_insert_insert99$1, -1, -1) | 0; + $137$1 = tempRet0; + $q_sroa_1_1198 = $q_sroa_1_1_ph; + $q_sroa_0_1199 = $q_sroa_0_1_ph; + $r_sroa_1_1200 = $r_sroa_1_1_ph; + $r_sroa_0_1201 = $r_sroa_0_1_ph; + $sr_1202 = $sr_1_ph; + $carry_0203 = 0; + while (1) { + $147 = $q_sroa_0_1199 >>> 31 | $q_sroa_1_1198 << 1; + $149 = $carry_0203 | $q_sroa_0_1199 << 1; + $r_sroa_0_0_insert_insert42$0 = 0 | ($r_sroa_0_1201 << 1 | $q_sroa_1_1198 >>> 31); + $r_sroa_0_0_insert_insert42$1 = $r_sroa_0_1201 >>> 31 | $r_sroa_1_1200 << 1 | 0; + _i64Subtract($137$0, $137$1, $r_sroa_0_0_insert_insert42$0, $r_sroa_0_0_insert_insert42$1) | 0; + $150$1 = tempRet0; + $151$0 = $150$1 >> 31 | (($150$1 | 0) < 0 ? -1 : 0) << 1; + $152 = $151$0 & 1; + $154$0 = _i64Subtract($r_sroa_0_0_insert_insert42$0, $r_sroa_0_0_insert_insert42$1, $151$0 & $d_sroa_0_0_insert_insert99$0, ((($150$1 | 0) < 0 ? -1 : 0) >> 31 | (($150$1 | 0) < 0 ? -1 : 0) << 1) & $d_sroa_0_0_insert_insert99$1) | 0; + $r_sroa_0_0_extract_trunc = $154$0; + $r_sroa_1_4_extract_trunc = tempRet0; + $155 = $sr_1202 - 1 | 0; + if (($155 | 0) == 0) { + break; + } else { + $q_sroa_1_1198 = $147; + $q_sroa_0_1199 = $149; + $r_sroa_1_1200 = $r_sroa_1_4_extract_trunc; + $r_sroa_0_1201 = $r_sroa_0_0_extract_trunc; + $sr_1202 = $155; + $carry_0203 = $152; + } + } + $q_sroa_1_1_lcssa = $147; + $q_sroa_0_1_lcssa = $149; + $r_sroa_1_1_lcssa = $r_sroa_1_4_extract_trunc; + $r_sroa_0_1_lcssa = $r_sroa_0_0_extract_trunc; + $carry_0_lcssa$1 = 0; + $carry_0_lcssa$0 = $152; + } + $q_sroa_0_0_insert_ext75$0 = $q_sroa_0_1_lcssa; + $q_sroa_0_0_insert_ext75$1 = 0; + $q_sroa_0_0_insert_insert77$1 = $q_sroa_1_1_lcssa | $q_sroa_0_0_insert_ext75$1; + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = 0 | $r_sroa_0_1_lcssa; + HEAP32[$rem + 4 >> 2] = $r_sroa_1_1_lcssa | 0; + } + $_0$1 = (0 | $q_sroa_0_0_insert_ext75$0) >>> 31 | $q_sroa_0_0_insert_insert77$1 << 1 | ($q_sroa_0_0_insert_ext75$1 << 1 | $q_sroa_0_0_insert_ext75$0 >>> 31) & 0 | $carry_0_lcssa$1; + $_0$0 = ($q_sroa_0_0_insert_ext75$0 << 1 | 0 >>> 31) & -2 | $carry_0_lcssa$0; + return (tempRet0 = $_0$1, $_0$0) | 0; +} +// ======================================================================= + + + +// EMSCRIPTEN_END_FUNCS + + + + // EMSCRIPTEN_END_FUNCS + + + return { _curve25519_verify: _curve25519_verify, _crypto_sign_ed25519_ref10_ge_scalarmult_base: _crypto_sign_ed25519_ref10_ge_scalarmult_base, _curve25519_sign: _curve25519_sign, _free: _free, _i64Add: _i64Add, _memmove: _memmove, _bitshift64Ashr: _bitshift64Ashr, _sph_sha512_init: _sph_sha512_init, _curve25519_donna: _curve25519_donna, _memset: _memset, _malloc: _malloc, _memcpy: _memcpy, _strlen: _strlen, _bitshift64Lshr: _bitshift64Lshr, _i64Subtract: _i64Subtract, _bitshift64Shl: _bitshift64Shl, runPostSets: runPostSets, stackAlloc: stackAlloc, stackSave: stackSave, stackRestore: stackRestore, setThrew: setThrew, setTempRet0: setTempRet0, getTempRet0: getTempRet0 }; +}) +// EMSCRIPTEN_END_ASM +(Module.asmGlobalArg, Module.asmLibraryArg, buffer); +var _curve25519_verify = Module["_curve25519_verify"] = asm["_curve25519_verify"]; +var _crypto_sign_ed25519_ref10_ge_scalarmult_base = Module["_crypto_sign_ed25519_ref10_ge_scalarmult_base"] = asm["_crypto_sign_ed25519_ref10_ge_scalarmult_base"]; +var _curve25519_sign = Module["_curve25519_sign"] = asm["_curve25519_sign"]; +var _free = Module["_free"] = asm["_free"]; +var _i64Add = Module["_i64Add"] = asm["_i64Add"]; +var _memmove = Module["_memmove"] = asm["_memmove"]; +var _bitshift64Ashr = Module["_bitshift64Ashr"] = asm["_bitshift64Ashr"]; +var _sph_sha512_init = Module["_sph_sha512_init"] = asm["_sph_sha512_init"]; +var _curve25519_donna = Module["_curve25519_donna"] = asm["_curve25519_donna"]; +var _memset = Module["_memset"] = asm["_memset"]; +var _malloc = Module["_malloc"] = asm["_malloc"]; +var _memcpy = Module["_memcpy"] = asm["_memcpy"]; +var _strlen = Module["_strlen"] = asm["_strlen"]; +var _bitshift64Lshr = Module["_bitshift64Lshr"] = asm["_bitshift64Lshr"]; +var _i64Subtract = Module["_i64Subtract"] = asm["_i64Subtract"]; +var _bitshift64Shl = Module["_bitshift64Shl"] = asm["_bitshift64Shl"]; +var runPostSets = Module["runPostSets"] = asm["runPostSets"]; + +Runtime.stackAlloc = asm['stackAlloc']; +Runtime.stackSave = asm['stackSave']; +Runtime.stackRestore = asm['stackRestore']; +Runtime.setTempRet0 = asm['setTempRet0']; +Runtime.getTempRet0 = asm['getTempRet0']; + + +// TODO: strip out parts of this we do not need + +//======= begin closure i64 code ======= + +// Copyright 2009 The Closure Library Authors. All Rights Reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS-IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +/** + * @fileoverview Defines a Long class for representing a 64-bit two's-complement + * integer value, which faithfully simulates the behavior of a Java "long". This + * implementation is derived from LongLib in GWT. + * + */ + +var i64Math = (function() { // Emscripten wrapper + var goog = { math: {} }; + + + /** + * Constructs a 64-bit two's-complement integer, given its low and high 32-bit + * values as *signed* integers. See the from* functions below for more + * convenient ways of constructing Longs. + * + * The internal representation of a long is the two given signed, 32-bit values. + * We use 32-bit pieces because these are the size of integers on which + * Javascript performs bit-operations. For operations like addition and + * multiplication, we split each number into 16-bit pieces, which can easily be + * multiplied within Javascript's floating-point representation without overflow + * or change in sign. + * + * In the algorithms below, we frequently reduce the negative case to the + * positive case by negating the input(s) and then post-processing the result. + * Note that we must ALWAYS check specially whether those values are MIN_VALUE + * (-2^63) because -MIN_VALUE == MIN_VALUE (since 2^63 cannot be represented as + * a positive number, it overflows back into a negative). Not handling this + * case would often result in infinite recursion. + * + * @param {number} low The low (signed) 32 bits of the long. + * @param {number} high The high (signed) 32 bits of the long. + * @constructor + */ + goog.math.Long = function(low, high) { + /** + * @type {number} + * @private + */ + this.low_ = low | 0; // force into 32 signed bits. + + /** + * @type {number} + * @private + */ + this.high_ = high | 0; // force into 32 signed bits. + }; + + + // NOTE: Common constant values ZERO, ONE, NEG_ONE, etc. are defined below the + // from* methods on which they depend. + + + /** + * A cache of the Long representations of small integer values. + * @type {!Object} + * @private + */ + goog.math.Long.IntCache_ = {}; + + + /** + * Returns a Long representing the given (32-bit) integer value. + * @param {number} value The 32-bit integer in question. + * @return {!goog.math.Long} The corresponding Long value. + */ + goog.math.Long.fromInt = function(value) { + if (-128 <= value && value < 128) { + var cachedObj = goog.math.Long.IntCache_[value]; + if (cachedObj) { + return cachedObj; + } + } + + var obj = new goog.math.Long(value | 0, value < 0 ? -1 : 0); + if (-128 <= value && value < 128) { + goog.math.Long.IntCache_[value] = obj; + } + return obj; + }; + + + /** + * Returns a Long representing the given value, provided that it is a finite + * number. Otherwise, zero is returned. + * @param {number} value The number in question. + * @return {!goog.math.Long} The corresponding Long value. + */ + goog.math.Long.fromNumber = function(value) { + if (isNaN(value) || !isFinite(value)) { + return goog.math.Long.ZERO; + } else if (value <= -goog.math.Long.TWO_PWR_63_DBL_) { + return goog.math.Long.MIN_VALUE; + } else if (value + 1 >= goog.math.Long.TWO_PWR_63_DBL_) { + return goog.math.Long.MAX_VALUE; + } else if (value < 0) { + return goog.math.Long.fromNumber(-value).negate(); + } else { + return new goog.math.Long( + (value % goog.math.Long.TWO_PWR_32_DBL_) | 0, + (value / goog.math.Long.TWO_PWR_32_DBL_) | 0); + } + }; + + + /** + * Returns a Long representing the 64-bit integer that comes by concatenating + * the given high and low bits. Each is assumed to use 32 bits. + * @param {number} lowBits The low 32-bits. + * @param {number} highBits The high 32-bits. + * @return {!goog.math.Long} The corresponding Long value. + */ + goog.math.Long.fromBits = function(lowBits, highBits) { + return new goog.math.Long(lowBits, highBits); + }; + + + /** + * Returns a Long representation of the given string, written using the given + * radix. + * @param {string} str The textual representation of the Long. + * @param {number=} opt_radix The radix in which the text is written. + * @return {!goog.math.Long} The corresponding Long value. + */ + goog.math.Long.fromString = function(str, opt_radix) { + if (str.length == 0) { + throw Error('number format error: empty string'); + } + + var radix = opt_radix || 10; + if (radix < 2 || 36 < radix) { + throw Error('radix out of range: ' + radix); + } + + if (str.charAt(0) == '-') { + return goog.math.Long.fromString(str.substring(1), radix).negate(); + } else if (str.indexOf('-') >= 0) { + throw Error('number format error: interior "-" character: ' + str); + } + + // Do several (8) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + var radixToPower = goog.math.Long.fromNumber(Math.pow(radix, 8)); + + var result = goog.math.Long.ZERO; + for (var i = 0; i < str.length; i += 8) { + var size = Math.min(8, str.length - i); + var value = parseInt(str.substring(i, i + size), radix); + if (size < 8) { + var power = goog.math.Long.fromNumber(Math.pow(radix, size)); + result = result.multiply(power).add(goog.math.Long.fromNumber(value)); + } else { + result = result.multiply(radixToPower); + result = result.add(goog.math.Long.fromNumber(value)); + } + } + return result; + }; + + + // NOTE: the compiler should inline these constant values below and then remove + // these variables, so there should be no runtime penalty for these. + + + /** + * Number used repeated below in calculations. This must appear before the + * first call to any from* function below. + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_16_DBL_ = 1 << 16; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_24_DBL_ = 1 << 24; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_32_DBL_ = + goog.math.Long.TWO_PWR_16_DBL_ * goog.math.Long.TWO_PWR_16_DBL_; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_31_DBL_ = + goog.math.Long.TWO_PWR_32_DBL_ / 2; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_48_DBL_ = + goog.math.Long.TWO_PWR_32_DBL_ * goog.math.Long.TWO_PWR_16_DBL_; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_64_DBL_ = + goog.math.Long.TWO_PWR_32_DBL_ * goog.math.Long.TWO_PWR_32_DBL_; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_63_DBL_ = + goog.math.Long.TWO_PWR_64_DBL_ / 2; + + + /** @type {!goog.math.Long} */ + goog.math.Long.ZERO = goog.math.Long.fromInt(0); + + + /** @type {!goog.math.Long} */ + goog.math.Long.ONE = goog.math.Long.fromInt(1); + + + /** @type {!goog.math.Long} */ + goog.math.Long.NEG_ONE = goog.math.Long.fromInt(-1); + + + /** @type {!goog.math.Long} */ + goog.math.Long.MAX_VALUE = + goog.math.Long.fromBits(0xFFFFFFFF | 0, 0x7FFFFFFF | 0); + + + /** @type {!goog.math.Long} */ + goog.math.Long.MIN_VALUE = goog.math.Long.fromBits(0, 0x80000000 | 0); + + + /** + * @type {!goog.math.Long} + * @private + */ + goog.math.Long.TWO_PWR_24_ = goog.math.Long.fromInt(1 << 24); + + + /** @return {number} The value, assuming it is a 32-bit integer. */ + goog.math.Long.prototype.toInt = function() { + return this.low_; + }; + + + /** @return {number} The closest floating-point representation to this value. */ + goog.math.Long.prototype.toNumber = function() { + return this.high_ * goog.math.Long.TWO_PWR_32_DBL_ + + this.getLowBitsUnsigned(); + }; + + + /** + * @param {number=} opt_radix The radix in which the text should be written. + * @return {string} The textual representation of this value. + */ + goog.math.Long.prototype.toString = function(opt_radix) { + var radix = opt_radix || 10; + if (radix < 2 || 36 < radix) { + throw Error('radix out of range: ' + radix); + } + + if (this.isZero()) { + return '0'; + } + + if (this.isNegative()) { + if (this.equals(goog.math.Long.MIN_VALUE)) { + // We need to change the Long value before it can be negated, so we remove + // the bottom-most digit in this base and then recurse to do the rest. + var radixLong = goog.math.Long.fromNumber(radix); + var div = this.div(radixLong); + var rem = div.multiply(radixLong).subtract(this); + return div.toString(radix) + rem.toInt().toString(radix); + } else { + return '-' + this.negate().toString(radix); + } + } + + // Do several (6) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + var radixToPower = goog.math.Long.fromNumber(Math.pow(radix, 6)); + + var rem = this; + var result = ''; + while (true) { + var remDiv = rem.div(radixToPower); + var intval = rem.subtract(remDiv.multiply(radixToPower)).toInt(); + var digits = intval.toString(radix); + + rem = remDiv; + if (rem.isZero()) { + return digits + result; + } else { + while (digits.length < 6) { + digits = '0' + digits; + } + result = '' + digits + result; + } + } + }; + + + /** @return {number} The high 32-bits as a signed value. */ + goog.math.Long.prototype.getHighBits = function() { + return this.high_; + }; + + + /** @return {number} The low 32-bits as a signed value. */ + goog.math.Long.prototype.getLowBits = function() { + return this.low_; + }; + + + /** @return {number} The low 32-bits as an unsigned value. */ + goog.math.Long.prototype.getLowBitsUnsigned = function() { + return (this.low_ >= 0) ? + this.low_ : goog.math.Long.TWO_PWR_32_DBL_ + this.low_; + }; + + + /** + * @return {number} Returns the number of bits needed to represent the absolute + * value of this Long. + */ + goog.math.Long.prototype.getNumBitsAbs = function() { + if (this.isNegative()) { + if (this.equals(goog.math.Long.MIN_VALUE)) { + return 64; + } else { + return this.negate().getNumBitsAbs(); + } + } else { + var val = this.high_ != 0 ? this.high_ : this.low_; + for (var bit = 31; bit > 0; bit--) { + if ((val & (1 << bit)) != 0) { + break; + } + } + return this.high_ != 0 ? bit + 33 : bit + 1; + } + }; + + + /** @return {boolean} Whether this value is zero. */ + goog.math.Long.prototype.isZero = function() { + return this.high_ == 0 && this.low_ == 0; + }; + + + /** @return {boolean} Whether this value is negative. */ + goog.math.Long.prototype.isNegative = function() { + return this.high_ < 0; + }; + + + /** @return {boolean} Whether this value is odd. */ + goog.math.Long.prototype.isOdd = function() { + return (this.low_ & 1) == 1; + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long equals the other. + */ + goog.math.Long.prototype.equals = function(other) { + return (this.high_ == other.high_) && (this.low_ == other.low_); + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long does not equal the other. + */ + goog.math.Long.prototype.notEquals = function(other) { + return (this.high_ != other.high_) || (this.low_ != other.low_); + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long is less than the other. + */ + goog.math.Long.prototype.lessThan = function(other) { + return this.compare(other) < 0; + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long is less than or equal to the other. + */ + goog.math.Long.prototype.lessThanOrEqual = function(other) { + return this.compare(other) <= 0; + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long is greater than the other. + */ + goog.math.Long.prototype.greaterThan = function(other) { + return this.compare(other) > 0; + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long is greater than or equal to the other. + */ + goog.math.Long.prototype.greaterThanOrEqual = function(other) { + return this.compare(other) >= 0; + }; + + + /** + * Compares this Long with the given one. + * @param {goog.math.Long} other Long to compare against. + * @return {number} 0 if they are the same, 1 if the this is greater, and -1 + * if the given one is greater. + */ + goog.math.Long.prototype.compare = function(other) { + if (this.equals(other)) { + return 0; + } + + var thisNeg = this.isNegative(); + var otherNeg = other.isNegative(); + if (thisNeg && !otherNeg) { + return -1; + } + if (!thisNeg && otherNeg) { + return 1; + } + + // at this point, the signs are the same, so subtraction will not overflow + if (this.subtract(other).isNegative()) { + return -1; + } else { + return 1; + } + }; + + + /** @return {!goog.math.Long} The negation of this value. */ + goog.math.Long.prototype.negate = function() { + if (this.equals(goog.math.Long.MIN_VALUE)) { + return goog.math.Long.MIN_VALUE; + } else { + return this.not().add(goog.math.Long.ONE); + } + }; + + + /** + * Returns the sum of this and the given Long. + * @param {goog.math.Long} other Long to add to this one. + * @return {!goog.math.Long} The sum of this and the given Long. + */ + goog.math.Long.prototype.add = function(other) { + // Divide each number into 4 chunks of 16 bits, and then sum the chunks. + + var a48 = this.high_ >>> 16; + var a32 = this.high_ & 0xFFFF; + var a16 = this.low_ >>> 16; + var a00 = this.low_ & 0xFFFF; + + var b48 = other.high_ >>> 16; + var b32 = other.high_ & 0xFFFF; + var b16 = other.low_ >>> 16; + var b00 = other.low_ & 0xFFFF; + + var c48 = 0, c32 = 0, c16 = 0, c00 = 0; + c00 += a00 + b00; + c16 += c00 >>> 16; + c00 &= 0xFFFF; + c16 += a16 + b16; + c32 += c16 >>> 16; + c16 &= 0xFFFF; + c32 += a32 + b32; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c48 += a48 + b48; + c48 &= 0xFFFF; + return goog.math.Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32); + }; + + + /** + * Returns the difference of this and the given Long. + * @param {goog.math.Long} other Long to subtract from this. + * @return {!goog.math.Long} The difference of this and the given Long. + */ + goog.math.Long.prototype.subtract = function(other) { + return this.add(other.negate()); + }; + + + /** + * Returns the product of this and the given long. + * @param {goog.math.Long} other Long to multiply with this. + * @return {!goog.math.Long} The product of this and the other. + */ + goog.math.Long.prototype.multiply = function(other) { + if (this.isZero()) { + return goog.math.Long.ZERO; + } else if (other.isZero()) { + return goog.math.Long.ZERO; + } + + if (this.equals(goog.math.Long.MIN_VALUE)) { + return other.isOdd() ? goog.math.Long.MIN_VALUE : goog.math.Long.ZERO; + } else if (other.equals(goog.math.Long.MIN_VALUE)) { + return this.isOdd() ? goog.math.Long.MIN_VALUE : goog.math.Long.ZERO; + } + + if (this.isNegative()) { + if (other.isNegative()) { + return this.negate().multiply(other.negate()); + } else { + return this.negate().multiply(other).negate(); + } + } else if (other.isNegative()) { + return this.multiply(other.negate()).negate(); + } + + // If both longs are small, use float multiplication + if (this.lessThan(goog.math.Long.TWO_PWR_24_) && + other.lessThan(goog.math.Long.TWO_PWR_24_)) { + return goog.math.Long.fromNumber(this.toNumber() * other.toNumber()); + } + + // Divide each long into 4 chunks of 16 bits, and then add up 4x4 products. + // We can skip products that would overflow. + + var a48 = this.high_ >>> 16; + var a32 = this.high_ & 0xFFFF; + var a16 = this.low_ >>> 16; + var a00 = this.low_ & 0xFFFF; + + var b48 = other.high_ >>> 16; + var b32 = other.high_ & 0xFFFF; + var b16 = other.low_ >>> 16; + var b00 = other.low_ & 0xFFFF; + + var c48 = 0, c32 = 0, c16 = 0, c00 = 0; + c00 += a00 * b00; + c16 += c00 >>> 16; + c00 &= 0xFFFF; + c16 += a16 * b00; + c32 += c16 >>> 16; + c16 &= 0xFFFF; + c16 += a00 * b16; + c32 += c16 >>> 16; + c16 &= 0xFFFF; + c32 += a32 * b00; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c32 += a16 * b16; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c32 += a00 * b32; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c48 += a48 * b00 + a32 * b16 + a16 * b32 + a00 * b48; + c48 &= 0xFFFF; + return goog.math.Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32); + }; + + + /** + * Returns this Long divided by the given one. + * @param {goog.math.Long} other Long by which to divide. + * @return {!goog.math.Long} This Long divided by the given one. + */ + goog.math.Long.prototype.div = function(other) { + if (other.isZero()) { + throw Error('division by zero'); + } else if (this.isZero()) { + return goog.math.Long.ZERO; + } + + if (this.equals(goog.math.Long.MIN_VALUE)) { + if (other.equals(goog.math.Long.ONE) || + other.equals(goog.math.Long.NEG_ONE)) { + return goog.math.Long.MIN_VALUE; // recall that -MIN_VALUE == MIN_VALUE + } else if (other.equals(goog.math.Long.MIN_VALUE)) { + return goog.math.Long.ONE; + } else { + // At this point, we have |other| >= 2, so |this/other| < |MIN_VALUE|. + var halfThis = this.shiftRight(1); + var approx = halfThis.div(other).shiftLeft(1); + if (approx.equals(goog.math.Long.ZERO)) { + return other.isNegative() ? goog.math.Long.ONE : goog.math.Long.NEG_ONE; + } else { + var rem = this.subtract(other.multiply(approx)); + var result = approx.add(rem.div(other)); + return result; + } + } + } else if (other.equals(goog.math.Long.MIN_VALUE)) { + return goog.math.Long.ZERO; + } + + if (this.isNegative()) { + if (other.isNegative()) { + return this.negate().div(other.negate()); + } else { + return this.negate().div(other).negate(); + } + } else if (other.isNegative()) { + return this.div(other.negate()).negate(); + } + + // Repeat the following until the remainder is less than other: find a + // floating-point that approximates remainder / other *from below*, add this + // into the result, and subtract it from the remainder. It is critical that + // the approximate value is less than or equal to the real value so that the + // remainder never becomes negative. + var res = goog.math.Long.ZERO; + var rem = this; + while (rem.greaterThanOrEqual(other)) { + // Approximate the result of division. This may be a little greater or + // smaller than the actual value. + var approx = Math.max(1, Math.floor(rem.toNumber() / other.toNumber())); + + // We will tweak the approximate result by changing it in the 48-th digit or + // the smallest non-fractional digit, whichever is larger. + var log2 = Math.ceil(Math.log(approx) / Math.LN2); + var delta = (log2 <= 48) ? 1 : Math.pow(2, log2 - 48); + + // Decrease the approximation until it is smaller than the remainder. Note + // that if it is too large, the product overflows and is negative. + var approxRes = goog.math.Long.fromNumber(approx); + var approxRem = approxRes.multiply(other); + while (approxRem.isNegative() || approxRem.greaterThan(rem)) { + approx -= delta; + approxRes = goog.math.Long.fromNumber(approx); + approxRem = approxRes.multiply(other); + } + + // We know the answer can't be zero... and actually, zero would cause + // infinite recursion since we would make no progress. + if (approxRes.isZero()) { + approxRes = goog.math.Long.ONE; + } + + res = res.add(approxRes); + rem = rem.subtract(approxRem); + } + return res; + }; + + + /** + * Returns this Long modulo the given one. + * @param {goog.math.Long} other Long by which to mod. + * @return {!goog.math.Long} This Long modulo the given one. + */ + goog.math.Long.prototype.modulo = function(other) { + return this.subtract(this.div(other).multiply(other)); + }; + + + /** @return {!goog.math.Long} The bitwise-NOT of this value. */ + goog.math.Long.prototype.not = function() { + return goog.math.Long.fromBits(~this.low_, ~this.high_); + }; + + + /** + * Returns the bitwise-AND of this Long and the given one. + * @param {goog.math.Long} other The Long with which to AND. + * @return {!goog.math.Long} The bitwise-AND of this and the other. + */ + goog.math.Long.prototype.and = function(other) { + return goog.math.Long.fromBits(this.low_ & other.low_, + this.high_ & other.high_); + }; + + + /** + * Returns the bitwise-OR of this Long and the given one. + * @param {goog.math.Long} other The Long with which to OR. + * @return {!goog.math.Long} The bitwise-OR of this and the other. + */ + goog.math.Long.prototype.or = function(other) { + return goog.math.Long.fromBits(this.low_ | other.low_, + this.high_ | other.high_); + }; + + + /** + * Returns the bitwise-XOR of this Long and the given one. + * @param {goog.math.Long} other The Long with which to XOR. + * @return {!goog.math.Long} The bitwise-XOR of this and the other. + */ + goog.math.Long.prototype.xor = function(other) { + return goog.math.Long.fromBits(this.low_ ^ other.low_, + this.high_ ^ other.high_); + }; + + + /** + * Returns this Long with bits shifted to the left by the given amount. + * @param {number} numBits The number of bits by which to shift. + * @return {!goog.math.Long} This shifted to the left by the given amount. + */ + goog.math.Long.prototype.shiftLeft = function(numBits) { + numBits &= 63; + if (numBits == 0) { + return this; + } else { + var low = this.low_; + if (numBits < 32) { + var high = this.high_; + return goog.math.Long.fromBits( + low << numBits, + (high << numBits) | (low >>> (32 - numBits))); + } else { + return goog.math.Long.fromBits(0, low << (numBits - 32)); + } + } + }; + + + /** + * Returns this Long with bits shifted to the right by the given amount. + * @param {number} numBits The number of bits by which to shift. + * @return {!goog.math.Long} This shifted to the right by the given amount. + */ + goog.math.Long.prototype.shiftRight = function(numBits) { + numBits &= 63; + if (numBits == 0) { + return this; + } else { + var high = this.high_; + if (numBits < 32) { + var low = this.low_; + return goog.math.Long.fromBits( + (low >>> numBits) | (high << (32 - numBits)), + high >> numBits); + } else { + return goog.math.Long.fromBits( + high >> (numBits - 32), + high >= 0 ? 0 : -1); + } + } + }; + + + /** + * Returns this Long with bits shifted to the right by the given amount, with + * the new top bits matching the current sign bit. + * @param {number} numBits The number of bits by which to shift. + * @return {!goog.math.Long} This shifted to the right by the given amount, with + * zeros placed into the new leading bits. + */ + goog.math.Long.prototype.shiftRightUnsigned = function(numBits) { + numBits &= 63; + if (numBits == 0) { + return this; + } else { + var high = this.high_; + if (numBits < 32) { + var low = this.low_; + return goog.math.Long.fromBits( + (low >>> numBits) | (high << (32 - numBits)), + high >>> numBits); + } else if (numBits == 32) { + return goog.math.Long.fromBits(high, 0); + } else { + return goog.math.Long.fromBits(high >>> (numBits - 32), 0); + } + } + }; + + //======= begin jsbn ======= + + var navigator = { appName: 'Modern Browser' }; // polyfill a little + + // Copyright (c) 2005 Tom Wu + // All Rights Reserved. + // http://www-cs-students.stanford.edu/~tjw/jsbn/ + + /* + * Copyright (c) 2003-2005 Tom Wu + * All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, + * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY + * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + * + * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, + * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER + * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF + * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT + * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * In addition, the following condition applies: + * + * All redistributions must retain an intact copy of this copyright notice + * and disclaimer. + */ + + // Basic JavaScript BN library - subset useful for RSA encryption. + + // Bits per digit + var dbits; + + // JavaScript engine analysis + var canary = 0xdeadbeefcafe; + var j_lm = ((canary&0xffffff)==0xefcafe); + + // (public) Constructor + function BigInteger(a,b,c) { + if(a != null) + if("number" == typeof a) this.fromNumber(a,b,c); + else if(b == null && "string" != typeof a) this.fromString(a,256); + else this.fromString(a,b); + } + + // return new, unset BigInteger + function nbi() { return new BigInteger(null); } + + // am: Compute w_j += (x*this_i), propagate carries, + // c is initial carry, returns final carry. + // c < 3*dvalue, x < 2*dvalue, this_i < dvalue + // We need to select the fastest one that works in this environment. + + // am1: use a single mult and divide to get the high bits, + // max digit bits should be 26 because + // max internal value = 2*dvalue^2-2*dvalue (< 2^53) + function am1(i,x,w,j,c,n) { + while(--n >= 0) { + var v = x*this[i++]+w[j]+c; + c = Math.floor(v/0x4000000); + w[j++] = v&0x3ffffff; + } + return c; + } + // am2 avoids a big mult-and-extract completely. + // Max digit bits should be <= 30 because we do bitwise ops + // on values up to 2*hdvalue^2-hdvalue-1 (< 2^31) + function am2(i,x,w,j,c,n) { + var xl = x&0x7fff, xh = x>>15; + while(--n >= 0) { + var l = this[i]&0x7fff; + var h = this[i++]>>15; + var m = xh*l+h*xl; + l = xl*l+((m&0x7fff)<<15)+w[j]+(c&0x3fffffff); + c = (l>>>30)+(m>>>15)+xh*h+(c>>>30); + w[j++] = l&0x3fffffff; + } + return c; + } + // Alternately, set max digit bits to 28 since some + // browsers slow down when dealing with 32-bit numbers. + function am3(i,x,w,j,c,n) { + var xl = x&0x3fff, xh = x>>14; + while(--n >= 0) { + var l = this[i]&0x3fff; + var h = this[i++]>>14; + var m = xh*l+h*xl; + l = xl*l+((m&0x3fff)<<14)+w[j]+c; + c = (l>>28)+(m>>14)+xh*h; + w[j++] = l&0xfffffff; + } + return c; + } + if(j_lm && (navigator.appName == "Microsoft Internet Explorer")) { + BigInteger.prototype.am = am2; + dbits = 30; + } + else if(j_lm && (navigator.appName != "Netscape")) { + BigInteger.prototype.am = am1; + dbits = 26; + } + else { // Mozilla/Netscape seems to prefer am3 + BigInteger.prototype.am = am3; + dbits = 28; + } + + BigInteger.prototype.DB = dbits; + BigInteger.prototype.DM = ((1<= 0; --i) r[i] = this[i]; + r.t = this.t; + r.s = this.s; + } + + // (protected) set from integer value x, -DV <= x < DV + function bnpFromInt(x) { + this.t = 1; + this.s = (x<0)?-1:0; + if(x > 0) this[0] = x; + else if(x < -1) this[0] = x+DV; + else this.t = 0; + } + + // return bigint initialized to value + function nbv(i) { var r = nbi(); r.fromInt(i); return r; } + + // (protected) set from string and radix + function bnpFromString(s,b) { + var k; + if(b == 16) k = 4; + else if(b == 8) k = 3; + else if(b == 256) k = 8; // byte array + else if(b == 2) k = 1; + else if(b == 32) k = 5; + else if(b == 4) k = 2; + else { this.fromRadix(s,b); return; } + this.t = 0; + this.s = 0; + var i = s.length, mi = false, sh = 0; + while(--i >= 0) { + var x = (k==8)?s[i]&0xff:intAt(s,i); + if(x < 0) { + if(s.charAt(i) == "-") mi = true; + continue; + } + mi = false; + if(sh == 0) + this[this.t++] = x; + else if(sh+k > this.DB) { + this[this.t-1] |= (x&((1<<(this.DB-sh))-1))<>(this.DB-sh)); + } + else + this[this.t-1] |= x<= this.DB) sh -= this.DB; + } + if(k == 8 && (s[0]&0x80) != 0) { + this.s = -1; + if(sh > 0) this[this.t-1] |= ((1<<(this.DB-sh))-1)< 0 && this[this.t-1] == c) --this.t; + } + + // (public) return string representation in given radix + function bnToString(b) { + if(this.s < 0) return "-"+this.negate().toString(b); + var k; + if(b == 16) k = 4; + else if(b == 8) k = 3; + else if(b == 2) k = 1; + else if(b == 32) k = 5; + else if(b == 4) k = 2; + else return this.toRadix(b); + var km = (1< 0) { + if(p < this.DB && (d = this[i]>>p) > 0) { m = true; r = int2char(d); } + while(i >= 0) { + if(p < k) { + d = (this[i]&((1<>(p+=this.DB-k); + } + else { + d = (this[i]>>(p-=k))&km; + if(p <= 0) { p += this.DB; --i; } + } + if(d > 0) m = true; + if(m) r += int2char(d); + } + } + return m?r:"0"; + } + + // (public) -this + function bnNegate() { var r = nbi(); BigInteger.ZERO.subTo(this,r); return r; } + + // (public) |this| + function bnAbs() { return (this.s<0)?this.negate():this; } + + // (public) return + if this > a, - if this < a, 0 if equal + function bnCompareTo(a) { + var r = this.s-a.s; + if(r != 0) return r; + var i = this.t; + r = i-a.t; + if(r != 0) return (this.s<0)?-r:r; + while(--i >= 0) if((r=this[i]-a[i]) != 0) return r; + return 0; + } + + // returns bit length of the integer x + function nbits(x) { + var r = 1, t; + if((t=x>>>16) != 0) { x = t; r += 16; } + if((t=x>>8) != 0) { x = t; r += 8; } + if((t=x>>4) != 0) { x = t; r += 4; } + if((t=x>>2) != 0) { x = t; r += 2; } + if((t=x>>1) != 0) { x = t; r += 1; } + return r; + } + + // (public) return the number of bits in "this" + function bnBitLength() { + if(this.t <= 0) return 0; + return this.DB*(this.t-1)+nbits(this[this.t-1]^(this.s&this.DM)); + } + + // (protected) r = this << n*DB + function bnpDLShiftTo(n,r) { + var i; + for(i = this.t-1; i >= 0; --i) r[i+n] = this[i]; + for(i = n-1; i >= 0; --i) r[i] = 0; + r.t = this.t+n; + r.s = this.s; + } + + // (protected) r = this >> n*DB + function bnpDRShiftTo(n,r) { + for(var i = n; i < this.t; ++i) r[i-n] = this[i]; + r.t = Math.max(this.t-n,0); + r.s = this.s; + } + + // (protected) r = this << n + function bnpLShiftTo(n,r) { + var bs = n%this.DB; + var cbs = this.DB-bs; + var bm = (1<= 0; --i) { + r[i+ds+1] = (this[i]>>cbs)|c; + c = (this[i]&bm)<= 0; --i) r[i] = 0; + r[ds] = c; + r.t = this.t+ds+1; + r.s = this.s; + r.clamp(); + } + + // (protected) r = this >> n + function bnpRShiftTo(n,r) { + r.s = this.s; + var ds = Math.floor(n/this.DB); + if(ds >= this.t) { r.t = 0; return; } + var bs = n%this.DB; + var cbs = this.DB-bs; + var bm = (1<>bs; + for(var i = ds+1; i < this.t; ++i) { + r[i-ds-1] |= (this[i]&bm)<>bs; + } + if(bs > 0) r[this.t-ds-1] |= (this.s&bm)<>= this.DB; + } + if(a.t < this.t) { + c -= a.s; + while(i < this.t) { + c += this[i]; + r[i++] = c&this.DM; + c >>= this.DB; + } + c += this.s; + } + else { + c += this.s; + while(i < a.t) { + c -= a[i]; + r[i++] = c&this.DM; + c >>= this.DB; + } + c -= a.s; + } + r.s = (c<0)?-1:0; + if(c < -1) r[i++] = this.DV+c; + else if(c > 0) r[i++] = c; + r.t = i; + r.clamp(); + } + + // (protected) r = this * a, r != this,a (HAC 14.12) + // "this" should be the larger one if appropriate. + function bnpMultiplyTo(a,r) { + var x = this.abs(), y = a.abs(); + var i = x.t; + r.t = i+y.t; + while(--i >= 0) r[i] = 0; + for(i = 0; i < y.t; ++i) r[i+x.t] = x.am(0,y[i],r,i,0,x.t); + r.s = 0; + r.clamp(); + if(this.s != a.s) BigInteger.ZERO.subTo(r,r); + } + + // (protected) r = this^2, r != this (HAC 14.16) + function bnpSquareTo(r) { + var x = this.abs(); + var i = r.t = 2*x.t; + while(--i >= 0) r[i] = 0; + for(i = 0; i < x.t-1; ++i) { + var c = x.am(i,x[i],r,2*i,0,1); + if((r[i+x.t]+=x.am(i+1,2*x[i],r,2*i+1,c,x.t-i-1)) >= x.DV) { + r[i+x.t] -= x.DV; + r[i+x.t+1] = 1; + } + } + if(r.t > 0) r[r.t-1] += x.am(i,x[i],r,2*i,0,1); + r.s = 0; + r.clamp(); + } + + // (protected) divide this by m, quotient and remainder to q, r (HAC 14.20) + // r != q, this != m. q or r may be null. + function bnpDivRemTo(m,q,r) { + var pm = m.abs(); + if(pm.t <= 0) return; + var pt = this.abs(); + if(pt.t < pm.t) { + if(q != null) q.fromInt(0); + if(r != null) this.copyTo(r); + return; + } + if(r == null) r = nbi(); + var y = nbi(), ts = this.s, ms = m.s; + var nsh = this.DB-nbits(pm[pm.t-1]); // normalize modulus + if(nsh > 0) { pm.lShiftTo(nsh,y); pt.lShiftTo(nsh,r); } + else { pm.copyTo(y); pt.copyTo(r); } + var ys = y.t; + var y0 = y[ys-1]; + if(y0 == 0) return; + var yt = y0*(1<1)?y[ys-2]>>this.F2:0); + var d1 = this.FV/yt, d2 = (1<= 0) { + r[r.t++] = 1; + r.subTo(t,r); + } + BigInteger.ONE.dlShiftTo(ys,t); + t.subTo(y,y); // "negative" y so we can replace sub with am later + while(y.t < ys) y[y.t++] = 0; + while(--j >= 0) { + // Estimate quotient digit + var qd = (r[--i]==y0)?this.DM:Math.floor(r[i]*d1+(r[i-1]+e)*d2); + if((r[i]+=y.am(0,qd,r,j,0,ys)) < qd) { // Try it out + y.dlShiftTo(j,t); + r.subTo(t,r); + while(r[i] < --qd) r.subTo(t,r); + } + } + if(q != null) { + r.drShiftTo(ys,q); + if(ts != ms) BigInteger.ZERO.subTo(q,q); + } + r.t = ys; + r.clamp(); + if(nsh > 0) r.rShiftTo(nsh,r); // Denormalize remainder + if(ts < 0) BigInteger.ZERO.subTo(r,r); + } + + // (public) this mod a + function bnMod(a) { + var r = nbi(); + this.abs().divRemTo(a,null,r); + if(this.s < 0 && r.compareTo(BigInteger.ZERO) > 0) a.subTo(r,r); + return r; + } + + // Modular reduction using "classic" algorithm + function Classic(m) { this.m = m; } + function cConvert(x) { + if(x.s < 0 || x.compareTo(this.m) >= 0) return x.mod(this.m); + else return x; + } + function cRevert(x) { return x; } + function cReduce(x) { x.divRemTo(this.m,null,x); } + function cMulTo(x,y,r) { x.multiplyTo(y,r); this.reduce(r); } + function cSqrTo(x,r) { x.squareTo(r); this.reduce(r); } + + Classic.prototype.convert = cConvert; + Classic.prototype.revert = cRevert; + Classic.prototype.reduce = cReduce; + Classic.prototype.mulTo = cMulTo; + Classic.prototype.sqrTo = cSqrTo; + + // (protected) return "-1/this % 2^DB"; useful for Mont. reduction + // justification: + // xy == 1 (mod m) + // xy = 1+km + // xy(2-xy) = (1+km)(1-km) + // x[y(2-xy)] = 1-k^2m^2 + // x[y(2-xy)] == 1 (mod m^2) + // if y is 1/x mod m, then y(2-xy) is 1/x mod m^2 + // should reduce x and y(2-xy) by m^2 at each step to keep size bounded. + // JS multiply "overflows" differently from C/C++, so care is needed here. + function bnpInvDigit() { + if(this.t < 1) return 0; + var x = this[0]; + if((x&1) == 0) return 0; + var y = x&3; // y == 1/x mod 2^2 + y = (y*(2-(x&0xf)*y))&0xf; // y == 1/x mod 2^4 + y = (y*(2-(x&0xff)*y))&0xff; // y == 1/x mod 2^8 + y = (y*(2-(((x&0xffff)*y)&0xffff)))&0xffff; // y == 1/x mod 2^16 + // last step - calculate inverse mod DV directly; + // assumes 16 < DB <= 32 and assumes ability to handle 48-bit ints + y = (y*(2-x*y%this.DV))%this.DV; // y == 1/x mod 2^dbits + // we really want the negative inverse, and -DV < y < DV + return (y>0)?this.DV-y:-y; + } + + // Montgomery reduction + function Montgomery(m) { + this.m = m; + this.mp = m.invDigit(); + this.mpl = this.mp&0x7fff; + this.mph = this.mp>>15; + this.um = (1<<(m.DB-15))-1; + this.mt2 = 2*m.t; + } + + // xR mod m + function montConvert(x) { + var r = nbi(); + x.abs().dlShiftTo(this.m.t,r); + r.divRemTo(this.m,null,r); + if(x.s < 0 && r.compareTo(BigInteger.ZERO) > 0) this.m.subTo(r,r); + return r; + } + + // x/R mod m + function montRevert(x) { + var r = nbi(); + x.copyTo(r); + this.reduce(r); + return r; + } + + // x = x/R mod m (HAC 14.32) + function montReduce(x) { + while(x.t <= this.mt2) // pad x so am has enough room later + x[x.t++] = 0; + for(var i = 0; i < this.m.t; ++i) { + // faster way of calculating u0 = x[i]*mp mod DV + var j = x[i]&0x7fff; + var u0 = (j*this.mpl+(((j*this.mph+(x[i]>>15)*this.mpl)&this.um)<<15))&x.DM; + // use am to combine the multiply-shift-add into one call + j = i+this.m.t; + x[j] += this.m.am(0,u0,x,i,0,this.m.t); + // propagate carry + while(x[j] >= x.DV) { x[j] -= x.DV; x[++j]++; } + } + x.clamp(); + x.drShiftTo(this.m.t,x); + if(x.compareTo(this.m) >= 0) x.subTo(this.m,x); + } + + // r = "x^2/R mod m"; x != r + function montSqrTo(x,r) { x.squareTo(r); this.reduce(r); } + + // r = "xy/R mod m"; x,y != r + function montMulTo(x,y,r) { x.multiplyTo(y,r); this.reduce(r); } + + Montgomery.prototype.convert = montConvert; + Montgomery.prototype.revert = montRevert; + Montgomery.prototype.reduce = montReduce; + Montgomery.prototype.mulTo = montMulTo; + Montgomery.prototype.sqrTo = montSqrTo; + + // (protected) true iff this is even + function bnpIsEven() { return ((this.t>0)?(this[0]&1):this.s) == 0; } + + // (protected) this^e, e < 2^32, doing sqr and mul with "r" (HAC 14.79) + function bnpExp(e,z) { + if(e > 0xffffffff || e < 1) return BigInteger.ONE; + var r = nbi(), r2 = nbi(), g = z.convert(this), i = nbits(e)-1; + g.copyTo(r); + while(--i >= 0) { + z.sqrTo(r,r2); + if((e&(1< 0) z.mulTo(r2,g,r); + else { var t = r; r = r2; r2 = t; } + } + return z.revert(r); + } + + // (public) this^e % m, 0 <= e < 2^32 + function bnModPowInt(e,m) { + var z; + if(e < 256 || m.isEven()) z = new Classic(m); else z = new Montgomery(m); + return this.exp(e,z); + } + + // protected + BigInteger.prototype.copyTo = bnpCopyTo; + BigInteger.prototype.fromInt = bnpFromInt; + BigInteger.prototype.fromString = bnpFromString; + BigInteger.prototype.clamp = bnpClamp; + BigInteger.prototype.dlShiftTo = bnpDLShiftTo; + BigInteger.prototype.drShiftTo = bnpDRShiftTo; + BigInteger.prototype.lShiftTo = bnpLShiftTo; + BigInteger.prototype.rShiftTo = bnpRShiftTo; + BigInteger.prototype.subTo = bnpSubTo; + BigInteger.prototype.multiplyTo = bnpMultiplyTo; + BigInteger.prototype.squareTo = bnpSquareTo; + BigInteger.prototype.divRemTo = bnpDivRemTo; + BigInteger.prototype.invDigit = bnpInvDigit; + BigInteger.prototype.isEven = bnpIsEven; + BigInteger.prototype.exp = bnpExp; + + // public + BigInteger.prototype.toString = bnToString; + BigInteger.prototype.negate = bnNegate; + BigInteger.prototype.abs = bnAbs; + BigInteger.prototype.compareTo = bnCompareTo; + BigInteger.prototype.bitLength = bnBitLength; + BigInteger.prototype.mod = bnMod; + BigInteger.prototype.modPowInt = bnModPowInt; + + // "constants" + BigInteger.ZERO = nbv(0); + BigInteger.ONE = nbv(1); + + // jsbn2 stuff + + // (protected) convert from radix string + function bnpFromRadix(s,b) { + this.fromInt(0); + if(b == null) b = 10; + var cs = this.chunkSize(b); + var d = Math.pow(b,cs), mi = false, j = 0, w = 0; + for(var i = 0; i < s.length; ++i) { + var x = intAt(s,i); + if(x < 0) { + if(s.charAt(i) == "-" && this.signum() == 0) mi = true; + continue; + } + w = b*w+x; + if(++j >= cs) { + this.dMultiply(d); + this.dAddOffset(w,0); + j = 0; + w = 0; + } + } + if(j > 0) { + this.dMultiply(Math.pow(b,j)); + this.dAddOffset(w,0); + } + if(mi) BigInteger.ZERO.subTo(this,this); + } + + // (protected) return x s.t. r^x < DV + function bnpChunkSize(r) { return Math.floor(Math.LN2*this.DB/Math.log(r)); } + + // (public) 0 if this == 0, 1 if this > 0 + function bnSigNum() { + if(this.s < 0) return -1; + else if(this.t <= 0 || (this.t == 1 && this[0] <= 0)) return 0; + else return 1; + } + + // (protected) this *= n, this >= 0, 1 < n < DV + function bnpDMultiply(n) { + this[this.t] = this.am(0,n-1,this,0,0,this.t); + ++this.t; + this.clamp(); + } + + // (protected) this += n << w words, this >= 0 + function bnpDAddOffset(n,w) { + if(n == 0) return; + while(this.t <= w) this[this.t++] = 0; + this[w] += n; + while(this[w] >= this.DV) { + this[w] -= this.DV; + if(++w >= this.t) this[this.t++] = 0; + ++this[w]; + } + } + + // (protected) convert to radix string + function bnpToRadix(b) { + if(b == null) b = 10; + if(this.signum() == 0 || b < 2 || b > 36) return "0"; + var cs = this.chunkSize(b); + var a = Math.pow(b,cs); + var d = nbv(a), y = nbi(), z = nbi(), r = ""; + this.divRemTo(d,y,z); + while(y.signum() > 0) { + r = (a+z.intValue()).toString(b).substr(1) + r; + y.divRemTo(d,y,z); + } + return z.intValue().toString(b) + r; + } + + // (public) return value as integer + function bnIntValue() { + if(this.s < 0) { + if(this.t == 1) return this[0]-this.DV; + else if(this.t == 0) return -1; + } + else if(this.t == 1) return this[0]; + else if(this.t == 0) return 0; + // assumes 16 < DB < 32 + return ((this[1]&((1<<(32-this.DB))-1))<>= this.DB; + } + if(a.t < this.t) { + c += a.s; + while(i < this.t) { + c += this[i]; + r[i++] = c&this.DM; + c >>= this.DB; + } + c += this.s; + } + else { + c += this.s; + while(i < a.t) { + c += a[i]; + r[i++] = c&this.DM; + c >>= this.DB; + } + c += a.s; + } + r.s = (c<0)?-1:0; + if(c > 0) r[i++] = c; + else if(c < -1) r[i++] = this.DV+c; + r.t = i; + r.clamp(); + } + + BigInteger.prototype.fromRadix = bnpFromRadix; + BigInteger.prototype.chunkSize = bnpChunkSize; + BigInteger.prototype.signum = bnSigNum; + BigInteger.prototype.dMultiply = bnpDMultiply; + BigInteger.prototype.dAddOffset = bnpDAddOffset; + BigInteger.prototype.toRadix = bnpToRadix; + BigInteger.prototype.intValue = bnIntValue; + BigInteger.prototype.addTo = bnpAddTo; + + //======= end jsbn ======= + + // Emscripten wrapper + var Wrapper = { + abs: function(l, h) { + var x = new goog.math.Long(l, h); + var ret; + if (x.isNegative()) { + ret = x.negate(); + } else { + ret = x; + } + HEAP32[tempDoublePtr>>2] = ret.low_; + HEAP32[tempDoublePtr+4>>2] = ret.high_; + }, + ensureTemps: function() { + if (Wrapper.ensuredTemps) return; + Wrapper.ensuredTemps = true; + Wrapper.two32 = new BigInteger(); + Wrapper.two32.fromString('4294967296', 10); + Wrapper.two64 = new BigInteger(); + Wrapper.two64.fromString('18446744073709551616', 10); + Wrapper.temp1 = new BigInteger(); + Wrapper.temp2 = new BigInteger(); + }, + lh2bignum: function(l, h) { + var a = new BigInteger(); + a.fromString(h.toString(), 10); + var b = new BigInteger(); + a.multiplyTo(Wrapper.two32, b); + var c = new BigInteger(); + c.fromString(l.toString(), 10); + var d = new BigInteger(); + c.addTo(b, d); + return d; + }, + stringify: function(l, h, unsigned) { + var ret = new goog.math.Long(l, h).toString(); + if (unsigned && ret[0] == '-') { + // unsign slowly using jsbn bignums + Wrapper.ensureTemps(); + var bignum = new BigInteger(); + bignum.fromString(ret, 10); + ret = new BigInteger(); + Wrapper.two64.addTo(bignum, ret); + ret = ret.toString(10); + } + return ret; + }, + fromString: function(str, base, min, max, unsigned) { + Wrapper.ensureTemps(); + var bignum = new BigInteger(); + bignum.fromString(str, base); + var bigmin = new BigInteger(); + bigmin.fromString(min, 10); + var bigmax = new BigInteger(); + bigmax.fromString(max, 10); + if (unsigned && bignum.compareTo(BigInteger.ZERO) < 0) { + var temp = new BigInteger(); + bignum.addTo(Wrapper.two64, temp); + bignum = temp; + } + var error = false; + if (bignum.compareTo(bigmin) < 0) { + bignum = bigmin; + error = true; + } else if (bignum.compareTo(bigmax) > 0) { + bignum = bigmax; + error = true; + } + var ret = goog.math.Long.fromString(bignum.toString()); // min-max checks should have clamped this to a range goog.math.Long can handle well + HEAP32[tempDoublePtr>>2] = ret.low_; + HEAP32[tempDoublePtr+4>>2] = ret.high_; + if (error) throw 'range error'; + } + }; + return Wrapper; +})(); + +//======= end closure i64 code ======= + + + +// === Auto-generated postamble setup entry stuff === + +if (memoryInitializer) { + if (typeof Module['locateFile'] === 'function') { + memoryInitializer = Module['locateFile'](memoryInitializer); + } else if (Module['memoryInitializerPrefixURL']) { + memoryInitializer = Module['memoryInitializerPrefixURL'] + memoryInitializer; + } + if (ENVIRONMENT_IS_NODE || ENVIRONMENT_IS_SHELL) { + var data = Module['readBinary'](memoryInitializer); + HEAPU8.set(data, STATIC_BASE); + } else { + addRunDependency('memory initializer'); + Browser.asyncLoad(memoryInitializer, function(data) { + HEAPU8.set(data, STATIC_BASE); + removeRunDependency('memory initializer'); + }, function(data) { + throw 'could not load memory initializer ' + memoryInitializer; + }); + } +} + +function ExitStatus(status) { + this.name = "ExitStatus"; + this.message = "Program terminated with exit(" + status + ")"; + this.status = status; +}; +ExitStatus.prototype = new Error(); +ExitStatus.prototype.constructor = ExitStatus; + +var initialStackTop; +var preloadStartTime = null; +var calledMain = false; + +dependenciesFulfilled = function runCaller() { + // If run has never been called, and we should call run (INVOKE_RUN is true, and Module.noInitialRun is not false) + if (!Module['calledRun'] && shouldRunNow) run(); + if (!Module['calledRun']) dependenciesFulfilled = runCaller; // try this again later, after new deps are fulfilled +} + +Module['callMain'] = Module.callMain = function callMain(args) { + assert(runDependencies == 0, 'cannot call main when async dependencies remain! (listen on __ATMAIN__)'); + assert(__ATPRERUN__.length == 0, 'cannot call main when preRun functions remain to be called'); + + args = args || []; + + ensureInitRuntime(); + + var argc = args.length+1; + function pad() { + for (var i = 0; i < 4-1; i++) { + argv.push(0); + } + } + var argv = [allocate(intArrayFromString(Module['thisProgram']), 'i8', ALLOC_NORMAL) ]; + pad(); + for (var i = 0; i < argc-1; i = i + 1) { + argv.push(allocate(intArrayFromString(args[i]), 'i8', ALLOC_NORMAL)); + pad(); + } + argv.push(0); + argv = allocate(argv, 'i32', ALLOC_NORMAL); + + initialStackTop = STACKTOP; + + try { + + var ret = Module['_main'](argc, argv, 0); + + + // if we're not running an evented main loop, it's time to exit + exit(ret); + } + catch(e) { + if (e instanceof ExitStatus) { + // exit() throws this once it's done to make sure execution + // has been stopped completely + return; + } else if (e == 'SimulateInfiniteLoop') { + // running an evented main loop, don't immediately exit + Module['noExitRuntime'] = true; + return; + } else { + if (e && typeof e === 'object' && e.stack) Module.printErr('exception thrown: ' + [e, e.stack]); + throw e; + } + } finally { + calledMain = true; + } +} + + + + +function run(args) { + args = args || Module['arguments']; + + if (preloadStartTime === null) preloadStartTime = Date.now(); + + if (runDependencies > 0) { + return; + } + + preRun(); + + if (runDependencies > 0) return; // a preRun added a dependency, run will be called later + if (Module['calledRun']) return; // run may have just been called through dependencies being fulfilled just in this very frame + + function doRun() { + if (Module['calledRun']) return; // run may have just been called while the async setStatus time below was happening + Module['calledRun'] = true; + + if (ABORT) return; + + ensureInitRuntime(); + + preMain(); + + if (ENVIRONMENT_IS_WEB && preloadStartTime !== null) { + Module.printErr('pre-main prep time: ' + (Date.now() - preloadStartTime) + ' ms'); + } + + if (Module['onRuntimeInitialized']) Module['onRuntimeInitialized'](); + + if (Module['_main'] && shouldRunNow) Module['callMain'](args); + + postRun(); + } + + if (Module['setStatus']) { + Module['setStatus']('Running...'); + setTimeout(function() { + setTimeout(function() { + Module['setStatus'](''); + }, 1); + doRun(); + }, 1); + } else { + doRun(); + } +} +Module['run'] = Module.run = run; + +function exit(status) { + if (Module['noExitRuntime']) { + return; + } + + ABORT = true; + EXITSTATUS = status; + STACKTOP = initialStackTop; + + // exit the runtime + exitRuntime(); + + if (ENVIRONMENT_IS_NODE) { + // Work around a node.js bug where stdout buffer is not flushed at process exit: + // Instead of process.exit() directly, wait for stdout flush event. + // See https://github.com/joyent/node/issues/1669 and https://github.com/kripken/emscripten/issues/2582 + // Workaround is based on https://github.com/RReverser/acorn/commit/50ab143cecc9ed71a2d66f78b4aec3bb2e9844f6 + process['stdout']['once']('drain', function () { + process['exit'](status); + }); + console.log(' '); // Make sure to print something to force the drain event to occur, in case the stdout buffer was empty. + // Work around another node bug where sometimes 'drain' is never fired - make another effort + // to emit the exit status, after a significant delay (if node hasn't fired drain by then, give up) + setTimeout(function() { + process['exit'](status); + }, 500); + } else + if (ENVIRONMENT_IS_SHELL && typeof quit === 'function') { + quit(status); + } + // if we reach here, we must throw an exception to halt the current execution + throw new ExitStatus(status); +} +Module['exit'] = Module.exit = exit; + +function abort(text) { + if (text) { + Module.print(text); + Module.printErr(text); + } + + ABORT = true; + EXITSTATUS = 1; + + var extra = '\nIf this abort() is unexpected, build with -s ASSERTIONS=1 which can give more information.'; + + throw 'abort() at ' + stackTrace() + extra; +} +Module['abort'] = Module.abort = abort; + +// {{PRE_RUN_ADDITIONS}} + +if (Module['preInit']) { + if (typeof Module['preInit'] == 'function') Module['preInit'] = [Module['preInit']]; + while (Module['preInit'].length > 0) { + Module['preInit'].pop()(); + } +} + +// shouldRunNow refers to calling main(), not run(). +var shouldRunNow = true; +if (Module['noInitialRun']) { + shouldRunNow = false; +} + + +run(); + +// {{POST_RUN_ADDITIONS}} + + + + + + +// {{MODULE_ADDITIONS}} + + + + +/* vim: ts=4:sw=4:expandtab */ +var Internal = Internal || {}; + +(function() { + 'use strict'; + + // Insert some bytes into the emscripten memory and return a pointer + function _allocate(bytes) { + var address = Module._malloc(bytes.length); + Module.HEAPU8.set(bytes, address); + + return address; + } + + function _readBytes(address, length, array) { + array.set(Module.HEAPU8.subarray(address, address + length)); + } + + var basepoint = new Uint8Array(32); + basepoint[0] = 9; + + Internal.curve25519 = { + keyPair: function(privKey) { + var priv = new Uint8Array(privKey); + priv[0] &= 248; + priv[31] &= 127; + priv[31] |= 64; + + // Where to store the result + var publicKey_ptr = Module._malloc(32); + + // Get a pointer to the private key + var privateKey_ptr = _allocate(priv); + + // The basepoint for generating public keys + var basepoint_ptr = _allocate(basepoint); + + // The return value is just 0, the operation is done in place + var err = Module._curve25519_donna(publicKey_ptr, + privateKey_ptr, + basepoint_ptr); + + var res = new Uint8Array(32); + _readBytes(publicKey_ptr, 32, res); + + Module._free(publicKey_ptr); + Module._free(privateKey_ptr); + Module._free(basepoint_ptr); + + return { pubKey: res.buffer, privKey: priv.buffer }; + }, + sharedSecret: function(pubKey, privKey) { + // Where to store the result + var sharedKey_ptr = Module._malloc(32); + + // Get a pointer to our private key + var privateKey_ptr = _allocate(new Uint8Array(privKey)); + + // Get a pointer to their public key, the basepoint when you're + // generating a shared secret + var basepoint_ptr = _allocate(new Uint8Array(pubKey)); + + // Return value is 0 here too of course + var err = Module._curve25519_donna(sharedKey_ptr, + privateKey_ptr, + basepoint_ptr); + + var res = new Uint8Array(32); + _readBytes(sharedKey_ptr, 32, res); + + Module._free(sharedKey_ptr); + Module._free(privateKey_ptr); + Module._free(basepoint_ptr); + + return res.buffer; + }, + sign: function(privKey, message) { + // Where to store the result + var signature_ptr = Module._malloc(64); + + // Get a pointer to our private key + var privateKey_ptr = _allocate(new Uint8Array(privKey)); + + // Get a pointer to the message + var message_ptr = _allocate(new Uint8Array(message)); + + var err = Module._curve25519_sign(signature_ptr, + privateKey_ptr, + message_ptr, + message.byteLength); + + var res = new Uint8Array(64); + _readBytes(signature_ptr, 64, res); + + Module._free(signature_ptr); + Module._free(privateKey_ptr); + Module._free(message_ptr); + + return res.buffer; + }, + verify: function(pubKey, message, sig) { + // Get a pointer to their public key + var publicKey_ptr = _allocate(new Uint8Array(pubKey)); + + // Get a pointer to the signature + var signature_ptr = _allocate(new Uint8Array(sig)); + + // Get a pointer to the message + var message_ptr = _allocate(new Uint8Array(message)); + + var res = Module._curve25519_verify(signature_ptr, + publicKey_ptr, + message_ptr, + message.byteLength); + + Module._free(publicKey_ptr); + Module._free(signature_ptr); + Module._free(message_ptr); + + return res !== 0; + } + }; + + Internal.curve25519_async = { + keyPair: function(privKey) { + return new Promise(function(resolve) { + resolve(Internal.curve25519.keyPair(privKey)); + }); + }, + sharedSecret: function(pubKey, privKey) { + return new Promise(function(resolve) { + resolve(Internal.curve25519.sharedSecret(pubKey, privKey)); + }); + }, + sign: function(privKey, message) { + return new Promise(function(resolve) { + resolve(Internal.curve25519.sign(privKey, message)); + }); + }, + verify: function(pubKey, message, sig) { + return new Promise(function(resolve, reject) { + if (Internal.curve25519.verify(pubKey, message, sig)) { + reject(new Error("Invalid signature")); + } else { + resolve(); + } + }); + }, + }; + +})(); + +var Internal = Internal || {}; +// I am the worker +this.onmessage = function(e) { + Internal.curve25519_async[e.data.methodName].apply(null, e.data.args).then(function(result) { + postMessage({ id: e.data.id, result: result }); + }).catch(function(error) { + postMessage({ id: e.data.id, error: error.message }); + }); +}; + +})(); \ No newline at end of file diff --git a/dist/libsignal-protocol.js b/dist/libsignal-protocol.js new file mode 100644 index 0000000..424d69c --- /dev/null +++ b/dist/libsignal-protocol.js @@ -0,0 +1,36426 @@ +;(function(){ +var Internal = {}; +window.libsignal = {}; +// The Module object: Our interface to the outside world. We import +// and export values on it, and do the work to get that through +// closure compiler if necessary. There are various ways Module can be used: +// 1. Not defined. We create it here +// 2. A function parameter, function(Module) { ..generated code.. } +// 3. pre-run appended it, var Module = {}; ..generated code.. +// 4. External script tag defines var Module. +// We need to do an eval in order to handle the closure compiler +// case, where this code here is minified but Module was defined +// elsewhere (e.g. case 4 above). We also need to check if Module +// already exists (e.g. case 3 above). +// Note that if you want to run closure, and also to use Module +// after the generated code, you will need to define var Module = {}; +// before the code. Then that object will be used in the code, and you +// can continue to use Module afterwards as well. +var Module; +if (!Module) Module = (typeof Module !== 'undefined' ? Module : null) || {}; + +// Sometimes an existing Module object exists with properties +// meant to overwrite the default module functionality. Here +// we collect those properties and reapply _after_ we configure +// the current environment's defaults to avoid having to be so +// defensive during initialization. +var moduleOverrides = {}; +for (var key in Module) { + if (Module.hasOwnProperty(key)) { + moduleOverrides[key] = Module[key]; + } +} + +// The environment setup code below is customized to use Module. +// *** Environment setup code *** +var ENVIRONMENT_IS_NODE = typeof process === 'object' && typeof require === 'function'; +var ENVIRONMENT_IS_WEB = typeof window === 'object'; +var ENVIRONMENT_IS_WORKER = typeof importScripts === 'function'; +var ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER; + +if (ENVIRONMENT_IS_NODE) { + // Expose functionality in the same simple way that the shells work + // Note that we pollute the global namespace here, otherwise we break in node + if (!Module['print']) Module['print'] = function print(x) { + process['stdout'].write(x + '\n'); + }; + if (!Module['printErr']) Module['printErr'] = function printErr(x) { + process['stderr'].write(x + '\n'); + }; + + var nodeFS = require('fs'); + var nodePath = require('path'); + + Module['read'] = function read(filename, binary) { + filename = nodePath['normalize'](filename); + var ret = nodeFS['readFileSync'](filename); + // The path is absolute if the normalized version is the same as the resolved. + if (!ret && filename != nodePath['resolve'](filename)) { + filename = path.join(__dirname, '..', 'src', filename); + ret = nodeFS['readFileSync'](filename); + } + if (ret && !binary) ret = ret.toString(); + return ret; + }; + + Module['readBinary'] = function readBinary(filename) { return Module['read'](filename, true) }; + + Module['load'] = function load(f) { + globalEval(read(f)); + }; + + if (process['argv'].length > 1) { + Module['thisProgram'] = process['argv'][1].replace(/\\/g, '/'); + } else { + Module['thisProgram'] = 'unknown-program'; + } + + Module['arguments'] = process['argv'].slice(2); + + if (typeof module !== 'undefined') { + module['exports'] = Module; + } + + process['on']('uncaughtException', function(ex) { + // suppress ExitStatus exceptions from showing an error + if (!(ex instanceof ExitStatus)) { + throw ex; + } + }); +} +else if (ENVIRONMENT_IS_SHELL) { + if (!Module['print']) Module['print'] = print; + if (typeof printErr != 'undefined') Module['printErr'] = printErr; // not present in v8 or older sm + + if (typeof read != 'undefined') { + Module['read'] = read; + } else { + Module['read'] = function read() { throw 'no read() available (jsc?)' }; + } + + Module['readBinary'] = function readBinary(f) { + if (typeof readbuffer === 'function') { + return new Uint8Array(readbuffer(f)); + } + var data = read(f, 'binary'); + assert(typeof data === 'object'); + return data; + }; + + if (typeof scriptArgs != 'undefined') { + Module['arguments'] = scriptArgs; + } else if (typeof arguments != 'undefined') { + Module['arguments'] = arguments; + } + + this['Module'] = Module; + +} +else if (ENVIRONMENT_IS_WEB || ENVIRONMENT_IS_WORKER) { + Module['read'] = function read(url) { + var xhr = new XMLHttpRequest(); + xhr.open('GET', url, false); + xhr.send(null); + return xhr.responseText; + }; + + if (typeof arguments != 'undefined') { + Module['arguments'] = arguments; + } + + if (typeof console !== 'undefined') { + if (!Module['print']) Module['print'] = function print(x) { + console.log(x); + }; + if (!Module['printErr']) Module['printErr'] = function printErr(x) { + console.log(x); + }; + } else { + // Probably a worker, and without console.log. We can do very little here... + var TRY_USE_DUMP = false; + if (!Module['print']) Module['print'] = (TRY_USE_DUMP && (typeof(dump) !== "undefined") ? (function(x) { + dump(x); + }) : (function(x) { + // self.postMessage(x); // enable this if you want stdout to be sent as messages + })); + } + + if (ENVIRONMENT_IS_WEB) { + window['Module'] = Module; + } else { + Module['load'] = importScripts; + } +} +else { + // Unreachable because SHELL is dependant on the others + throw 'Unknown runtime environment. Where are we?'; +} + +function globalEval(x) { + eval.call(null, x); +} +if (!Module['load'] && Module['read']) { + Module['load'] = function load(f) { + globalEval(Module['read'](f)); + }; +} +if (!Module['print']) { + Module['print'] = function(){}; +} +if (!Module['printErr']) { + Module['printErr'] = Module['print']; +} +if (!Module['arguments']) { + Module['arguments'] = []; +} +if (!Module['thisProgram']) { + Module['thisProgram'] = './this.program'; +} + +// *** Environment setup code *** + +// Closure helpers +Module.print = Module['print']; +Module.printErr = Module['printErr']; + +// Callbacks +Module['preRun'] = []; +Module['postRun'] = []; + +// Merge back in the overrides +for (var key in moduleOverrides) { + if (moduleOverrides.hasOwnProperty(key)) { + Module[key] = moduleOverrides[key]; + } +} + + + +// === Preamble library stuff === + +// Documentation for the public APIs defined in this file must be updated in: +// site/source/docs/api_reference/preamble.js.rst +// A prebuilt local version of the documentation is available at: +// site/build/text/docs/api_reference/preamble.js.txt +// You can also build docs locally as HTML or other formats in site/ +// An online HTML version (which may be of a different version of Emscripten) +// is up at http://kripken.github.io/emscripten-site/docs/api_reference/preamble.js.html + +//======================================== +// Runtime code shared with compiler +//======================================== + +var Runtime = { + setTempRet0: function (value) { + tempRet0 = value; + }, + getTempRet0: function () { + return tempRet0; + }, + stackSave: function () { + return STACKTOP; + }, + stackRestore: function (stackTop) { + STACKTOP = stackTop; + }, + getNativeTypeSize: function (type) { + switch (type) { + case 'i1': case 'i8': return 1; + case 'i16': return 2; + case 'i32': return 4; + case 'i64': return 8; + case 'float': return 4; + case 'double': return 8; + default: { + if (type[type.length-1] === '*') { + return Runtime.QUANTUM_SIZE; // A pointer + } else if (type[0] === 'i') { + var bits = parseInt(type.substr(1)); + assert(bits % 8 === 0); + return bits/8; + } else { + return 0; + } + } + } + }, + getNativeFieldSize: function (type) { + return Math.max(Runtime.getNativeTypeSize(type), Runtime.QUANTUM_SIZE); + }, + STACK_ALIGN: 16, + getAlignSize: function (type, size, vararg) { + // we align i64s and doubles on 64-bit boundaries, unlike x86 + if (!vararg && (type == 'i64' || type == 'double')) return 8; + if (!type) return Math.min(size, 8); // align structures internally to 64 bits + return Math.min(size || (type ? Runtime.getNativeFieldSize(type) : 0), Runtime.QUANTUM_SIZE); + }, + dynCall: function (sig, ptr, args) { + if (args && args.length) { + if (!args.splice) args = Array.prototype.slice.call(args); + args.splice(0, 0, ptr); + return Module['dynCall_' + sig].apply(null, args); + } else { + return Module['dynCall_' + sig].call(null, ptr); + } + }, + functionPointers: [], + addFunction: function (func) { + for (var i = 0; i < Runtime.functionPointers.length; i++) { + if (!Runtime.functionPointers[i]) { + Runtime.functionPointers[i] = func; + return 2*(1 + i); + } + } + throw 'Finished up all reserved function pointers. Use a higher value for RESERVED_FUNCTION_POINTERS.'; + }, + removeFunction: function (index) { + Runtime.functionPointers[(index-2)/2] = null; + }, + getAsmConst: function (code, numArgs) { + // code is a constant string on the heap, so we can cache these + if (!Runtime.asmConstCache) Runtime.asmConstCache = {}; + var func = Runtime.asmConstCache[code]; + if (func) return func; + var args = []; + for (var i = 0; i < numArgs; i++) { + args.push(String.fromCharCode(36) + i); // $0, $1 etc + } + var source = Pointer_stringify(code); + if (source[0] === '"') { + // tolerate EM_ASM("..code..") even though EM_ASM(..code..) is correct + if (source.indexOf('"', 1) === source.length-1) { + source = source.substr(1, source.length-2); + } else { + // something invalid happened, e.g. EM_ASM("..code($0)..", input) + abort('invalid EM_ASM input |' + source + '|. Please use EM_ASM(..code..) (no quotes) or EM_ASM({ ..code($0).. }, input) (to input values)'); + } + } + try { + // Module is the only 'upvar', which we provide directly. We also provide FS for legacy support. + var evalled = eval('(function(Module, FS) { return function(' + args.join(',') + '){ ' + source + ' } })')(Module, typeof FS !== 'undefined' ? FS : null); + } catch(e) { + Module.printErr('error in executing inline EM_ASM code: ' + e + ' on: \n\n' + source + '\n\nwith args |' + args + '| (make sure to use the right one out of EM_ASM, EM_ASM_ARGS, etc.)'); + throw e; + } + return Runtime.asmConstCache[code] = evalled; + }, + warnOnce: function (text) { + if (!Runtime.warnOnce.shown) Runtime.warnOnce.shown = {}; + if (!Runtime.warnOnce.shown[text]) { + Runtime.warnOnce.shown[text] = 1; + Module.printErr(text); + } + }, + funcWrappers: {}, + getFuncWrapper: function (func, sig) { + assert(sig); + if (!Runtime.funcWrappers[sig]) { + Runtime.funcWrappers[sig] = {}; + } + var sigCache = Runtime.funcWrappers[sig]; + if (!sigCache[func]) { + sigCache[func] = function dynCall_wrapper() { + return Runtime.dynCall(sig, func, arguments); + }; + } + return sigCache[func]; + }, + UTF8Processor: function () { + var buffer = []; + var needed = 0; + this.processCChar = function (code) { + code = code & 0xFF; + + if (buffer.length == 0) { + if ((code & 0x80) == 0x00) { // 0xxxxxxx + return String.fromCharCode(code); + } + buffer.push(code); + if ((code & 0xE0) == 0xC0) { // 110xxxxx + needed = 1; + } else if ((code & 0xF0) == 0xE0) { // 1110xxxx + needed = 2; + } else { // 11110xxx + needed = 3; + } + return ''; + } + + if (needed) { + buffer.push(code); + needed--; + if (needed > 0) return ''; + } + + var c1 = buffer[0]; + var c2 = buffer[1]; + var c3 = buffer[2]; + var c4 = buffer[3]; + var ret; + if (buffer.length == 2) { + ret = String.fromCharCode(((c1 & 0x1F) << 6) | (c2 & 0x3F)); + } else if (buffer.length == 3) { + ret = String.fromCharCode(((c1 & 0x0F) << 12) | ((c2 & 0x3F) << 6) | (c3 & 0x3F)); + } else { + // http://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae + var codePoint = ((c1 & 0x07) << 18) | ((c2 & 0x3F) << 12) | + ((c3 & 0x3F) << 6) | (c4 & 0x3F); + ret = String.fromCharCode( + (((codePoint - 0x10000) / 0x400)|0) + 0xD800, + (codePoint - 0x10000) % 0x400 + 0xDC00); + } + buffer.length = 0; + return ret; + } + this.processJSString = function processJSString(string) { + /* TODO: use TextEncoder when present, + var encoder = new TextEncoder(); + encoder['encoding'] = "utf-8"; + var utf8Array = encoder['encode'](aMsg.data); + */ + string = unescape(encodeURIComponent(string)); + var ret = []; + for (var i = 0; i < string.length; i++) { + ret.push(string.charCodeAt(i)); + } + return ret; + } + }, + getCompilerSetting: function (name) { + throw 'You must build with -s RETAIN_COMPILER_SETTINGS=1 for Runtime.getCompilerSetting or emscripten_get_compiler_setting to work'; + }, + stackAlloc: function (size) { var ret = STACKTOP;STACKTOP = (STACKTOP + size)|0;STACKTOP = (((STACKTOP)+15)&-16); return ret; }, + staticAlloc: function (size) { var ret = STATICTOP;STATICTOP = (STATICTOP + size)|0;STATICTOP = (((STATICTOP)+15)&-16); return ret; }, + dynamicAlloc: function (size) { var ret = DYNAMICTOP;DYNAMICTOP = (DYNAMICTOP + size)|0;DYNAMICTOP = (((DYNAMICTOP)+15)&-16); if (DYNAMICTOP >= TOTAL_MEMORY) enlargeMemory();; return ret; }, + alignMemory: function (size,quantum) { var ret = size = Math.ceil((size)/(quantum ? quantum : 16))*(quantum ? quantum : 16); return ret; }, + makeBigInt: function (low,high,unsigned) { var ret = (unsigned ? ((+((low>>>0)))+((+((high>>>0)))*4294967296.0)) : ((+((low>>>0)))+((+((high|0)))*4294967296.0))); return ret; }, + GLOBAL_BASE: 8, + QUANTUM_SIZE: 4, + __dummy__: 0 +} + + +Module['Runtime'] = Runtime; + + + + + + + + + +//======================================== +// Runtime essentials +//======================================== + +var __THREW__ = 0; // Used in checking for thrown exceptions. + +var ABORT = false; // whether we are quitting the application. no code should run after this. set in exit() and abort() +var EXITSTATUS = 0; + +var undef = 0; +// tempInt is used for 32-bit signed values or smaller. tempBigInt is used +// for 32-bit unsigned values or more than 32 bits. TODO: audit all uses of tempInt +var tempValue, tempInt, tempBigInt, tempInt2, tempBigInt2, tempPair, tempBigIntI, tempBigIntR, tempBigIntS, tempBigIntP, tempBigIntD, tempDouble, tempFloat; +var tempI64, tempI64b; +var tempRet0, tempRet1, tempRet2, tempRet3, tempRet4, tempRet5, tempRet6, tempRet7, tempRet8, tempRet9; + +function assert(condition, text) { + if (!condition) { + abort('Assertion failed: ' + text); + } +} + +var globalScope = this; + +// Returns the C function with a specified identifier (for C++, you need to do manual name mangling) +function getCFunc(ident) { + var func = Module['_' + ident]; // closure exported function + if (!func) { + try { + func = eval('_' + ident); // explicit lookup + } catch(e) {} + } + assert(func, 'Cannot call unknown function ' + ident + ' (perhaps LLVM optimizations or closure removed it?)'); + return func; +} + +var cwrap, ccall; +(function(){ + var JSfuncs = { + // Helpers for cwrap -- it can't refer to Runtime directly because it might + // be renamed by closure, instead it calls JSfuncs['stackSave'].body to find + // out what the minified function name is. + 'stackSave': function() { + Runtime.stackSave() + }, + 'stackRestore': function() { + Runtime.stackRestore() + }, + // type conversion from js to c + 'arrayToC' : function(arr) { + var ret = Runtime.stackAlloc(arr.length); + writeArrayToMemory(arr, ret); + return ret; + }, + 'stringToC' : function(str) { + var ret = 0; + if (str !== null && str !== undefined && str !== 0) { // null string + // at most 4 bytes per UTF-8 code point, +1 for the trailing '\0' + ret = Runtime.stackAlloc((str.length << 2) + 1); + writeStringToMemory(str, ret); + } + return ret; + } + }; + // For fast lookup of conversion functions + var toC = {'string' : JSfuncs['stringToC'], 'array' : JSfuncs['arrayToC']}; + + // C calling interface. + ccall = function ccallFunc(ident, returnType, argTypes, args) { + var func = getCFunc(ident); + var cArgs = []; + var stack = 0; + if (args) { + for (var i = 0; i < args.length; i++) { + var converter = toC[argTypes[i]]; + if (converter) { + if (stack === 0) stack = Runtime.stackSave(); + cArgs[i] = converter(args[i]); + } else { + cArgs[i] = args[i]; + } + } + } + var ret = func.apply(null, cArgs); + if (returnType === 'string') ret = Pointer_stringify(ret); + if (stack !== 0) Runtime.stackRestore(stack); + return ret; + } + + var sourceRegex = /^function\s*\(([^)]*)\)\s*{\s*([^*]*?)[\s;]*(?:return\s*(.*?)[;\s]*)?}$/; + function parseJSFunc(jsfunc) { + // Match the body and the return value of a javascript function source + var parsed = jsfunc.toString().match(sourceRegex).slice(1); + return {arguments : parsed[0], body : parsed[1], returnValue: parsed[2]} + } + var JSsource = {}; + for (var fun in JSfuncs) { + if (JSfuncs.hasOwnProperty(fun)) { + // Elements of toCsource are arrays of three items: + // the code, and the return value + JSsource[fun] = parseJSFunc(JSfuncs[fun]); + } + } + + + cwrap = function cwrap(ident, returnType, argTypes) { + argTypes = argTypes || []; + var cfunc = getCFunc(ident); + // When the function takes numbers and returns a number, we can just return + // the original function + var numericArgs = argTypes.every(function(type){ return type === 'number'}); + var numericRet = (returnType !== 'string'); + if ( numericRet && numericArgs) { + return cfunc; + } + // Creation of the arguments list (["$1","$2",...,"$nargs"]) + var argNames = argTypes.map(function(x,i){return '$'+i}); + var funcstr = "(function(" + argNames.join(',') + ") {"; + var nargs = argTypes.length; + if (!numericArgs) { + // Generate the code needed to convert the arguments from javascript + // values to pointers + funcstr += 'var stack = ' + JSsource['stackSave'].body + ';'; + for (var i = 0; i < nargs; i++) { + var arg = argNames[i], type = argTypes[i]; + if (type === 'number') continue; + var convertCode = JSsource[type + 'ToC']; // [code, return] + funcstr += 'var ' + convertCode.arguments + ' = ' + arg + ';'; + funcstr += convertCode.body + ';'; + funcstr += arg + '=' + convertCode.returnValue + ';'; + } + } + + // When the code is compressed, the name of cfunc is not literally 'cfunc' anymore + var cfuncname = parseJSFunc(function(){return cfunc}).returnValue; + // Call the function + funcstr += 'var ret = ' + cfuncname + '(' + argNames.join(',') + ');'; + if (!numericRet) { // Return type can only by 'string' or 'number' + // Convert the result to a string + var strgfy = parseJSFunc(function(){return Pointer_stringify}).returnValue; + funcstr += 'ret = ' + strgfy + '(ret);'; + } + if (!numericArgs) { + // If we had a stack, restore it + funcstr += JSsource['stackRestore'].body.replace('()', '(stack)') + ';'; + } + funcstr += 'return ret})'; + return eval(funcstr); + }; +})(); +Module["cwrap"] = cwrap; +Module["ccall"] = ccall; + + +function setValue(ptr, value, type, noSafe) { + type = type || 'i8'; + if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit + switch(type) { + case 'i1': HEAP8[((ptr)>>0)]=value; break; + case 'i8': HEAP8[((ptr)>>0)]=value; break; + case 'i16': HEAP16[((ptr)>>1)]=value; break; + case 'i32': HEAP32[((ptr)>>2)]=value; break; + case 'i64': (tempI64 = [value>>>0,(tempDouble=value,(+(Math_abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math_min((+(Math_floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math_ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[((ptr)>>2)]=tempI64[0],HEAP32[(((ptr)+(4))>>2)]=tempI64[1]); break; + case 'float': HEAPF32[((ptr)>>2)]=value; break; + case 'double': HEAPF64[((ptr)>>3)]=value; break; + default: abort('invalid type for setValue: ' + type); + } +} +Module['setValue'] = setValue; + + +function getValue(ptr, type, noSafe) { + type = type || 'i8'; + if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit + switch(type) { + case 'i1': return HEAP8[((ptr)>>0)]; + case 'i8': return HEAP8[((ptr)>>0)]; + case 'i16': return HEAP16[((ptr)>>1)]; + case 'i32': return HEAP32[((ptr)>>2)]; + case 'i64': return HEAP32[((ptr)>>2)]; + case 'float': return HEAPF32[((ptr)>>2)]; + case 'double': return HEAPF64[((ptr)>>3)]; + default: abort('invalid type for setValue: ' + type); + } + return null; +} +Module['getValue'] = getValue; + +var ALLOC_NORMAL = 0; // Tries to use _malloc() +var ALLOC_STACK = 1; // Lives for the duration of the current function call +var ALLOC_STATIC = 2; // Cannot be freed +var ALLOC_DYNAMIC = 3; // Cannot be freed except through sbrk +var ALLOC_NONE = 4; // Do not allocate +Module['ALLOC_NORMAL'] = ALLOC_NORMAL; +Module['ALLOC_STACK'] = ALLOC_STACK; +Module['ALLOC_STATIC'] = ALLOC_STATIC; +Module['ALLOC_DYNAMIC'] = ALLOC_DYNAMIC; +Module['ALLOC_NONE'] = ALLOC_NONE; + +// allocate(): This is for internal use. You can use it yourself as well, but the interface +// is a little tricky (see docs right below). The reason is that it is optimized +// for multiple syntaxes to save space in generated code. So you should +// normally not use allocate(), and instead allocate memory using _malloc(), +// initialize it with setValue(), and so forth. +// @slab: An array of data, or a number. If a number, then the size of the block to allocate, +// in *bytes* (note that this is sometimes confusing: the next parameter does not +// affect this!) +// @types: Either an array of types, one for each byte (or 0 if no type at that position), +// or a single type which is used for the entire block. This only matters if there +// is initial data - if @slab is a number, then this does not matter at all and is +// ignored. +// @allocator: How to allocate memory, see ALLOC_* +function allocate(slab, types, allocator, ptr) { + var zeroinit, size; + if (typeof slab === 'number') { + zeroinit = true; + size = slab; + } else { + zeroinit = false; + size = slab.length; + } + + var singleType = typeof types === 'string' ? types : null; + + var ret; + if (allocator == ALLOC_NONE) { + ret = ptr; + } else { + ret = [_malloc, Runtime.stackAlloc, Runtime.staticAlloc, Runtime.dynamicAlloc][allocator === undefined ? ALLOC_STATIC : allocator](Math.max(size, singleType ? 1 : types.length)); + } + + if (zeroinit) { + var ptr = ret, stop; + assert((ret & 3) == 0); + stop = ret + (size & ~3); + for (; ptr < stop; ptr += 4) { + HEAP32[((ptr)>>2)]=0; + } + stop = ret + size; + while (ptr < stop) { + HEAP8[((ptr++)>>0)]=0; + } + return ret; + } + + if (singleType === 'i8') { + if (slab.subarray || slab.slice) { + HEAPU8.set(slab, ret); + } else { + HEAPU8.set(new Uint8Array(slab), ret); + } + return ret; + } + + var i = 0, type, typeSize, previousType; + while (i < size) { + var curr = slab[i]; + + if (typeof curr === 'function') { + curr = Runtime.getFunctionIndex(curr); + } + + type = singleType || types[i]; + if (type === 0) { + i++; + continue; + } + + if (type == 'i64') type = 'i32'; // special case: we have one i32 here, and one i32 later + + setValue(ret+i, curr, type); + + // no need to look up size unless type changes, so cache it + if (previousType !== type) { + typeSize = Runtime.getNativeTypeSize(type); + previousType = type; + } + i += typeSize; + } + + return ret; +} +Module['allocate'] = allocate; + +function Pointer_stringify(ptr, /* optional */ length) { + if (length === 0 || !ptr) return ''; + // TODO: use TextDecoder + // Find the length, and check for UTF while doing so + var hasUtf = false; + var t; + var i = 0; + while (1) { + t = HEAPU8[(((ptr)+(i))>>0)]; + if (t >= 128) hasUtf = true; + else if (t == 0 && !length) break; + i++; + if (length && i == length) break; + } + if (!length) length = i; + + var ret = ''; + + if (!hasUtf) { + var MAX_CHUNK = 1024; // split up into chunks, because .apply on a huge string can overflow the stack + var curr; + while (length > 0) { + curr = String.fromCharCode.apply(String, HEAPU8.subarray(ptr, ptr + Math.min(length, MAX_CHUNK))); + ret = ret ? ret + curr : curr; + ptr += MAX_CHUNK; + length -= MAX_CHUNK; + } + return ret; + } + + var utf8 = new Runtime.UTF8Processor(); + for (i = 0; i < length; i++) { + t = HEAPU8[(((ptr)+(i))>>0)]; + ret += utf8.processCChar(t); + } + return ret; +} +Module['Pointer_stringify'] = Pointer_stringify; + +function UTF16ToString(ptr) { + var i = 0; + + var str = ''; + while (1) { + var codeUnit = HEAP16[(((ptr)+(i*2))>>1)]; + if (codeUnit == 0) + return str; + ++i; + // fromCharCode constructs a character from a UTF-16 code unit, so we can pass the UTF16 string right through. + str += String.fromCharCode(codeUnit); + } +} +Module['UTF16ToString'] = UTF16ToString; + + +function stringToUTF16(str, outPtr) { + for(var i = 0; i < str.length; ++i) { + // charCodeAt returns a UTF-16 encoded code unit, so it can be directly written to the HEAP. + var codeUnit = str.charCodeAt(i); // possibly a lead surrogate + HEAP16[(((outPtr)+(i*2))>>1)]=codeUnit; + } + // Null-terminate the pointer to the HEAP. + HEAP16[(((outPtr)+(str.length*2))>>1)]=0; +} +Module['stringToUTF16'] = stringToUTF16; + + +function UTF32ToString(ptr) { + var i = 0; + + var str = ''; + while (1) { + var utf32 = HEAP32[(((ptr)+(i*4))>>2)]; + if (utf32 == 0) + return str; + ++i; + // Gotcha: fromCharCode constructs a character from a UTF-16 encoded code (pair), not from a Unicode code point! So encode the code point to UTF-16 for constructing. + if (utf32 >= 0x10000) { + var ch = utf32 - 0x10000; + str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF)); + } else { + str += String.fromCharCode(utf32); + } + } +} +Module['UTF32ToString'] = UTF32ToString; + + +function stringToUTF32(str, outPtr) { + var iChar = 0; + for(var iCodeUnit = 0; iCodeUnit < str.length; ++iCodeUnit) { + // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! We must decode the string to UTF-32 to the heap. + var codeUnit = str.charCodeAt(iCodeUnit); // possibly a lead surrogate + if (codeUnit >= 0xD800 && codeUnit <= 0xDFFF) { + var trailSurrogate = str.charCodeAt(++iCodeUnit); + codeUnit = 0x10000 + ((codeUnit & 0x3FF) << 10) | (trailSurrogate & 0x3FF); + } + HEAP32[(((outPtr)+(iChar*4))>>2)]=codeUnit; + ++iChar; + } + // Null-terminate the pointer to the HEAP. + HEAP32[(((outPtr)+(iChar*4))>>2)]=0; +} +Module['stringToUTF32'] = stringToUTF32; + +function demangle(func) { + var hasLibcxxabi = !!Module['___cxa_demangle']; + if (hasLibcxxabi) { + try { + var buf = _malloc(func.length); + writeStringToMemory(func.substr(1), buf); + var status = _malloc(4); + var ret = Module['___cxa_demangle'](buf, 0, 0, status); + if (getValue(status, 'i32') === 0 && ret) { + return Pointer_stringify(ret); + } + // otherwise, libcxxabi failed, we can try ours which may return a partial result + } catch(e) { + // failure when using libcxxabi, we can try ours which may return a partial result + } finally { + if (buf) _free(buf); + if (status) _free(status); + if (ret) _free(ret); + } + } + var i = 3; + // params, etc. + var basicTypes = { + 'v': 'void', + 'b': 'bool', + 'c': 'char', + 's': 'short', + 'i': 'int', + 'l': 'long', + 'f': 'float', + 'd': 'double', + 'w': 'wchar_t', + 'a': 'signed char', + 'h': 'unsigned char', + 't': 'unsigned short', + 'j': 'unsigned int', + 'm': 'unsigned long', + 'x': 'long long', + 'y': 'unsigned long long', + 'z': '...' + }; + var subs = []; + var first = true; + function dump(x) { + //return; + if (x) Module.print(x); + Module.print(func); + var pre = ''; + for (var a = 0; a < i; a++) pre += ' '; + Module.print (pre + '^'); + } + function parseNested() { + i++; + if (func[i] === 'K') i++; // ignore const + var parts = []; + while (func[i] !== 'E') { + if (func[i] === 'S') { // substitution + i++; + var next = func.indexOf('_', i); + var num = func.substring(i, next) || 0; + parts.push(subs[num] || '?'); + i = next+1; + continue; + } + if (func[i] === 'C') { // constructor + parts.push(parts[parts.length-1]); + i += 2; + continue; + } + var size = parseInt(func.substr(i)); + var pre = size.toString().length; + if (!size || !pre) { i--; break; } // counter i++ below us + var curr = func.substr(i + pre, size); + parts.push(curr); + subs.push(curr); + i += pre + size; + } + i++; // skip E + return parts; + } + function parse(rawList, limit, allowVoid) { // main parser + limit = limit || Infinity; + var ret = '', list = []; + function flushList() { + return '(' + list.join(', ') + ')'; + } + var name; + if (func[i] === 'N') { + // namespaced N-E + name = parseNested().join('::'); + limit--; + if (limit === 0) return rawList ? [name] : name; + } else { + // not namespaced + if (func[i] === 'K' || (first && func[i] === 'L')) i++; // ignore const and first 'L' + var size = parseInt(func.substr(i)); + if (size) { + var pre = size.toString().length; + name = func.substr(i + pre, size); + i += pre + size; + } + } + first = false; + if (func[i] === 'I') { + i++; + var iList = parse(true); + var iRet = parse(true, 1, true); + ret += iRet[0] + ' ' + name + '<' + iList.join(', ') + '>'; + } else { + ret = name; + } + paramLoop: while (i < func.length && limit-- > 0) { + //dump('paramLoop'); + var c = func[i++]; + if (c in basicTypes) { + list.push(basicTypes[c]); + } else { + switch (c) { + case 'P': list.push(parse(true, 1, true)[0] + '*'); break; // pointer + case 'R': list.push(parse(true, 1, true)[0] + '&'); break; // reference + case 'L': { // literal + i++; // skip basic type + var end = func.indexOf('E', i); + var size = end - i; + list.push(func.substr(i, size)); + i += size + 2; // size + 'EE' + break; + } + case 'A': { // array + var size = parseInt(func.substr(i)); + i += size.toString().length; + if (func[i] !== '_') throw '?'; + i++; // skip _ + list.push(parse(true, 1, true)[0] + ' [' + size + ']'); + break; + } + case 'E': break paramLoop; + default: ret += '?' + c; break paramLoop; + } + } + } + if (!allowVoid && list.length === 1 && list[0] === 'void') list = []; // avoid (void) + if (rawList) { + if (ret) { + list.push(ret + '?'); + } + return list; + } else { + return ret + flushList(); + } + } + var parsed = func; + try { + // Special-case the entry point, since its name differs from other name mangling. + if (func == 'Object._main' || func == '_main') { + return 'main()'; + } + if (typeof func === 'number') func = Pointer_stringify(func); + if (func[0] !== '_') return func; + if (func[1] !== '_') return func; // C function + if (func[2] !== 'Z') return func; + switch (func[3]) { + case 'n': return 'operator new()'; + case 'd': return 'operator delete()'; + } + parsed = parse(); + } catch(e) { + parsed += '?'; + } + if (parsed.indexOf('?') >= 0 && !hasLibcxxabi) { + Runtime.warnOnce('warning: a problem occurred in builtin C++ name demangling; build with -s DEMANGLE_SUPPORT=1 to link in libcxxabi demangling'); + } + return parsed; +} + +function demangleAll(text) { + return text.replace(/__Z[\w\d_]+/g, function(x) { var y = demangle(x); return x === y ? x : (x + ' [' + y + ']') }); +} + +function jsStackTrace() { + var err = new Error(); + if (!err.stack) { + // IE10+ special cases: It does have callstack info, but it is only populated if an Error object is thrown, + // so try that as a special-case. + try { + throw new Error(0); + } catch(e) { + err = e; + } + if (!err.stack) { + return '(no stack trace available)'; + } + } + return err.stack.toString(); +} + +function stackTrace() { + return demangleAll(jsStackTrace()); +} +Module['stackTrace'] = stackTrace; + +// Memory management + +var PAGE_SIZE = 4096; +function alignMemoryPage(x) { + return (x+4095)&-4096; +} + +var HEAP; +var HEAP8, HEAPU8, HEAP16, HEAPU16, HEAP32, HEAPU32, HEAPF32, HEAPF64; + +var STATIC_BASE = 0, STATICTOP = 0, staticSealed = false; // static area +var STACK_BASE = 0, STACKTOP = 0, STACK_MAX = 0; // stack area +var DYNAMIC_BASE = 0, DYNAMICTOP = 0; // dynamic area handled by sbrk + +function enlargeMemory() { + abort('Cannot enlarge memory arrays. Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value ' + TOTAL_MEMORY + ', (2) compile with ALLOW_MEMORY_GROWTH which adjusts the size at runtime but prevents some optimizations, or (3) set Module.TOTAL_MEMORY before the program runs.'); +} + + +var TOTAL_STACK = Module['TOTAL_STACK'] || 5242880; +var TOTAL_MEMORY = Module['TOTAL_MEMORY'] || 16777216; +var FAST_MEMORY = Module['FAST_MEMORY'] || 2097152; + +var totalMemory = 64*1024; +while (totalMemory < TOTAL_MEMORY || totalMemory < 2*TOTAL_STACK) { + if (totalMemory < 16*1024*1024) { + totalMemory *= 2; + } else { + totalMemory += 16*1024*1024 + } +} +if (totalMemory !== TOTAL_MEMORY) { + Module.printErr('increasing TOTAL_MEMORY to ' + totalMemory + ' to be compliant with the asm.js spec'); + TOTAL_MEMORY = totalMemory; +} + +// Initialize the runtime's memory +// check for full engine support (use string 'subarray' to avoid closure compiler confusion) +assert(typeof Int32Array !== 'undefined' && typeof Float64Array !== 'undefined' && !!(new Int32Array(1)['subarray']) && !!(new Int32Array(1)['set']), + 'JS engine does not provide full typed array support'); + +var buffer = new ArrayBuffer(TOTAL_MEMORY); +HEAP8 = new Int8Array(buffer); +HEAP16 = new Int16Array(buffer); +HEAP32 = new Int32Array(buffer); +HEAPU8 = new Uint8Array(buffer); +HEAPU16 = new Uint16Array(buffer); +HEAPU32 = new Uint32Array(buffer); +HEAPF32 = new Float32Array(buffer); +HEAPF64 = new Float64Array(buffer); + +// Endianness check (note: assumes compiler arch was little-endian) +HEAP32[0] = 255; +assert(HEAPU8[0] === 255 && HEAPU8[3] === 0, 'Typed arrays 2 must be run on a little-endian system'); + +Module['HEAP'] = HEAP; +Module['buffer'] = buffer; +Module['HEAP8'] = HEAP8; +Module['HEAP16'] = HEAP16; +Module['HEAP32'] = HEAP32; +Module['HEAPU8'] = HEAPU8; +Module['HEAPU16'] = HEAPU16; +Module['HEAPU32'] = HEAPU32; +Module['HEAPF32'] = HEAPF32; +Module['HEAPF64'] = HEAPF64; + +function callRuntimeCallbacks(callbacks) { + while(callbacks.length > 0) { + var callback = callbacks.shift(); + if (typeof callback == 'function') { + callback(); + continue; + } + var func = callback.func; + if (typeof func === 'number') { + if (callback.arg === undefined) { + Runtime.dynCall('v', func); + } else { + Runtime.dynCall('vi', func, [callback.arg]); + } + } else { + func(callback.arg === undefined ? null : callback.arg); + } + } +} + +var __ATPRERUN__ = []; // functions called before the runtime is initialized +var __ATINIT__ = []; // functions called during startup +var __ATMAIN__ = []; // functions called when main() is to be run +var __ATEXIT__ = []; // functions called during shutdown +var __ATPOSTRUN__ = []; // functions called after the runtime has exited + +var runtimeInitialized = false; +var runtimeExited = false; + +function preRun() { + // compatibility - merge in anything from Module['preRun'] at this time + if (Module['preRun']) { + if (typeof Module['preRun'] == 'function') Module['preRun'] = [Module['preRun']]; + while (Module['preRun'].length) { + addOnPreRun(Module['preRun'].shift()); + } + } + callRuntimeCallbacks(__ATPRERUN__); +} + +function ensureInitRuntime() { + if (runtimeInitialized) return; + runtimeInitialized = true; + callRuntimeCallbacks(__ATINIT__); +} + +function preMain() { + callRuntimeCallbacks(__ATMAIN__); +} + +function exitRuntime() { + callRuntimeCallbacks(__ATEXIT__); + runtimeExited = true; +} + +function postRun() { + // compatibility - merge in anything from Module['postRun'] at this time + if (Module['postRun']) { + if (typeof Module['postRun'] == 'function') Module['postRun'] = [Module['postRun']]; + while (Module['postRun'].length) { + addOnPostRun(Module['postRun'].shift()); + } + } + callRuntimeCallbacks(__ATPOSTRUN__); +} + +function addOnPreRun(cb) { + __ATPRERUN__.unshift(cb); +} +Module['addOnPreRun'] = Module.addOnPreRun = addOnPreRun; + +function addOnInit(cb) { + __ATINIT__.unshift(cb); +} +Module['addOnInit'] = Module.addOnInit = addOnInit; + +function addOnPreMain(cb) { + __ATMAIN__.unshift(cb); +} +Module['addOnPreMain'] = Module.addOnPreMain = addOnPreMain; + +function addOnExit(cb) { + __ATEXIT__.unshift(cb); +} +Module['addOnExit'] = Module.addOnExit = addOnExit; + +function addOnPostRun(cb) { + __ATPOSTRUN__.unshift(cb); +} +Module['addOnPostRun'] = Module.addOnPostRun = addOnPostRun; + +// Tools + + +function intArrayFromString(stringy, dontAddNull, length /* optional */) { + var ret = (new Runtime.UTF8Processor()).processJSString(stringy); + if (length) { + ret.length = length; + } + if (!dontAddNull) { + ret.push(0); + } + return ret; +} +Module['intArrayFromString'] = intArrayFromString; + +function intArrayToString(array) { + var ret = []; + for (var i = 0; i < array.length; i++) { + var chr = array[i]; + if (chr > 0xFF) { + chr &= 0xFF; + } + ret.push(String.fromCharCode(chr)); + } + return ret.join(''); +} +Module['intArrayToString'] = intArrayToString; + +function writeStringToMemory(string, buffer, dontAddNull) { + var array = intArrayFromString(string, dontAddNull); + var i = 0; + while (i < array.length) { + var chr = array[i]; + HEAP8[(((buffer)+(i))>>0)]=chr; + i = i + 1; + } +} +Module['writeStringToMemory'] = writeStringToMemory; + +function writeArrayToMemory(array, buffer) { + for (var i = 0; i < array.length; i++) { + HEAP8[(((buffer)+(i))>>0)]=array[i]; + } +} +Module['writeArrayToMemory'] = writeArrayToMemory; + +function writeAsciiToMemory(str, buffer, dontAddNull) { + for (var i = 0; i < str.length; i++) { + HEAP8[(((buffer)+(i))>>0)]=str.charCodeAt(i); + } + if (!dontAddNull) HEAP8[(((buffer)+(str.length))>>0)]=0; +} +Module['writeAsciiToMemory'] = writeAsciiToMemory; + +function unSign(value, bits, ignore) { + if (value >= 0) { + return value; + } + return bits <= 32 ? 2*Math.abs(1 << (bits-1)) + value // Need some trickery, since if bits == 32, we are right at the limit of the bits JS uses in bitshifts + : Math.pow(2, bits) + value; +} +function reSign(value, bits, ignore) { + if (value <= 0) { + return value; + } + var half = bits <= 32 ? Math.abs(1 << (bits-1)) // abs is needed if bits == 32 + : Math.pow(2, bits-1); + if (value >= half && (bits <= 32 || value > half)) { // for huge values, we can hit the precision limit and always get true here. so don't do that + // but, in general there is no perfect solution here. With 64-bit ints, we get rounding and errors + // TODO: In i64 mode 1, resign the two parts separately and safely + value = -2*half + value; // Cannot bitshift half, as it may be at the limit of the bits JS uses in bitshifts + } + return value; +} + +// check for imul support, and also for correctness ( https://bugs.webkit.org/show_bug.cgi?id=126345 ) +if (!Math['imul'] || Math['imul'](0xffffffff, 5) !== -5) Math['imul'] = function imul(a, b) { + var ah = a >>> 16; + var al = a & 0xffff; + var bh = b >>> 16; + var bl = b & 0xffff; + return (al*bl + ((ah*bl + al*bh) << 16))|0; +}; +Math.imul = Math['imul']; + + +var Math_abs = Math.abs; +var Math_cos = Math.cos; +var Math_sin = Math.sin; +var Math_tan = Math.tan; +var Math_acos = Math.acos; +var Math_asin = Math.asin; +var Math_atan = Math.atan; +var Math_atan2 = Math.atan2; +var Math_exp = Math.exp; +var Math_log = Math.log; +var Math_sqrt = Math.sqrt; +var Math_ceil = Math.ceil; +var Math_floor = Math.floor; +var Math_pow = Math.pow; +var Math_imul = Math.imul; +var Math_fround = Math.fround; +var Math_min = Math.min; + +// A counter of dependencies for calling run(). If we need to +// do asynchronous work before running, increment this and +// decrement it. Incrementing must happen in a place like +// PRE_RUN_ADDITIONS (used by emcc to add file preloading). +// Note that you can add dependencies in preRun, even though +// it happens right before run - run will be postponed until +// the dependencies are met. +var runDependencies = 0; +var runDependencyWatcher = null; +var dependenciesFulfilled = null; // overridden to take different actions when all run dependencies are fulfilled + +function addRunDependency(id) { + runDependencies++; + if (Module['monitorRunDependencies']) { + Module['monitorRunDependencies'](runDependencies); + } +} +Module['addRunDependency'] = addRunDependency; +function removeRunDependency(id) { + runDependencies--; + if (Module['monitorRunDependencies']) { + Module['monitorRunDependencies'](runDependencies); + } + if (runDependencies == 0) { + if (runDependencyWatcher !== null) { + clearInterval(runDependencyWatcher); + runDependencyWatcher = null; + } + if (dependenciesFulfilled) { + var callback = dependenciesFulfilled; + dependenciesFulfilled = null; + callback(); // can add another dependenciesFulfilled + } + } +} +Module['removeRunDependency'] = removeRunDependency; + +Module["preloadedImages"] = {}; // maps url to image data +Module["preloadedAudios"] = {}; // maps url to audio data + + +var memoryInitializer = null; + +// === Body === + + + + + +STATIC_BASE = 8; + +STATICTOP = STATIC_BASE + 33040; + /* global initializers */ __ATINIT__.push(); + + +/* memory initializer */ allocate([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,59,140,1,189,241,36,255,248,37,195,1,96,220,55,0,183,76,62,255,195,66,61,0,50,76,164,1,225,164,76,255,76,61,163,255,117,62,31,0,81,145,64,255,118,65,14,0,162,115,214,255,6,138,46,0,124,230,244,255,10,138,143,0,52,26,194,0,184,244,76,0,129,143,41,1,190,244,19,255,123,170,122,255,98,129,68,0,121,213,147,0,86,101,30,255,161,103,155,0,140,89,67,255,239,229,190,1,67,11,181,0,198,240,137,254,238,69,188,255,67,151,238,0,19,42,108,255,229,85,113,1,50,68,135,255,17,106,9,0,50,103,1,255,80,1,168,1,35,152,30,255,16,168,185,1,56,89,232,255,101,210,252,0,41,250,71,0,204,170,79,255,14,46,239,255,80,77,239,0,189,214,75,255,17,141,249,0,38,80,76,255,190,85,117,0,86,228,170,0,156,216,208,1,195,207,164,255,150,66,76,255,175,225,16,255,141,80,98,1,76,219,242,0,198,162,114,0,46,218,152,0,155,43,241,254,155,160,104,255,51,187,165,0,2,17,175,0,66,84,160,1,247,58,30,0,35,65,53,254,69,236,191,0,45,134,245,1,163,123,221,0,32,110,20,255,52,23,165,0,186,214,71,0,233,176,96,0,242,239,54,1,57,89,138,0,83,0,84,255,136,160,100,0,92,142,120,254,104,124,190,0,181,177,62,255,250,41,85,0,152,130,42,1,96,252,246,0,151,151,63,254,239,133,62,0,32,56,156,0,45,167,189,255,142,133,179,1,131,86,211,0,187,179,150,254,250,170,14,255,210,163,78,0,37,52,151,0,99,77,26,0,238,156,213,255,213,192,209,1,73,46,84,0,20,65,41,1,54,206,79,0,201,131,146,254,170,111,24,255,177,33,50,254,171,38,203,255,78,247,116,0,209,221,153,0,133,128,178,1,58,44,25,0,201,39,59,1,189,19,252,0,49,229,210,1,117,187,117,0,181,179,184,1,0,114,219,0,48,94,147,0,245,41,56,0,125,13,204,254,244,173,119,0,44,221,32,254,84,234,20,0,249,160,198,1,236,126,234,255,47,99,168,254,170,226,153,255,102,179,216,0,226,141,122,255,122,66,153,254,182,245,134,0,227,228,25,1,214,57,235,255,216,173,56,255,181,231,210,0,119,128,157,255,129,95,136,255,110,126,51,0,2,169,183,255,7,130,98,254,69,176,94,255,116,4,227,1,217,242,145,255,202,173,31,1,105,1,39,255,46,175,69,0,228,47,58,255,215,224,69,254,207,56,69,255,16,254,139,255,23,207,212,255,202,20,126,255,95,213,96,255,9,176,33,0,200,5,207,255,241,42,128,254,35,33,192,255,248,229,196,1,129,17,120,0,251,103,151,255,7,52,112,255,140,56,66,255,40,226,245,255,217,70,37,254,172,214,9,255,72,67,134,1,146,192,214,255,44,38,112,0,68,184,75,255,206,90,251,0,149,235,141,0,181,170,58,0,116,244,239,0,92,157,2,0,102,173,98,0,233,137,96,1,127,49,203,0,5,155,148,0,23,148,9,255,211,122,12,0,34,134,26,255,219,204,136,0,134,8,41,255,224,83,43,254,85,25,247,0,109,127,0,254,169,136,48,0,238,119,219,255,231,173,213,0,206,18,254,254,8,186,7,255,126,9,7,1,111,42,72,0,111,52,236,254,96,63,141,0,147,191,127,254,205,78,192,255,14,106,237,1,187,219,76,0,175,243,187,254,105,89,173,0,85,25,89,1,162,243,148,0,2,118,209,254,33,158,9,0,139,163,46,255,93,70,40,0,108,42,142,254,111,252,142,255,155,223,144,0,51,229,167,255,73,252,155,255,94,116,12,255,152,160,218,255,156,238,37,255,179,234,207,255,197,0,179,255,154,164,141,0,225,196,104,0,10,35,25,254,209,212,242,255,97,253,222,254,184,101,229,0,222,18,127,1,164,136,135,255,30,207,140,254,146,97,243,0,129,192,26,254,201,84,33,255,111,10,78,255,147,81,178,255,4,4,24,0,161,238,215,255,6,141,33,0,53,215,14,255,41,181,208,255,231,139,157,0,179,203,221,255,255,185,113,0,189,226,172,255,113,66,214,255,202,62,45,255,102,64,8,255,78,174,16,254,133,117,68,255,182,120,89,255,133,114,211,0,189,110,21,255,15,10,106,0,41,192,1,0,152,232,121,255,188,60,160,255,153,113,206,255,0,183,226,254,180,13,72,255,176,160,14,254,211,201,134,255,158,24,143,0,127,105,53,0,96,12,189,0,167,215,251,255,159,76,128,254,106,101,225,255,30,252,4,0,146,12,174,0,89,241,178,254,10,229,166,255,123,221,42,254,30,20,212,0,82,128,3,0,48,209,243,0,119,121,64,255,50,227,156,255,0,110,197,1,103,27,144,0,133,59,140,1,189,241,36,255,248,37,195,1,96,220,55,0,183,76,62,255,195,66,61,0,50,76,164,1,225,164,76,255,76,61,163,255,117,62,31,0,81,145,64,255,118,65,14,0,162,115,214,255,6,138,46,0,124,230,244,255,10,138,143,0,52,26,194,0,184,244,76,0,129,143,41,1,190,244,19,255,123,170,122,255,98,129,68,0,121,213,147,0,86,101,30,255,161,103,155,0,140,89,67,255,239,229,190,1,67,11,181,0,198,240,137,254,238,69,188,255,234,113,60,255,37,255,57,255,69,178,182,254,128,208,179,0,118,26,125,254,3,7,214,255,241,50,77,255,85,203,197,255,211,135,250,255,25,48,100,255,187,213,180,254,17,88,105,0,83,209,158,1,5,115,98,0,4,174,60,254,171,55,110,255,217,181,17,255,20,188,170,0,146,156,102,254,87,214,174,255,114,122,155,1,233,44,170,0,127,8,239,1,214,236,234,0,175,5,219,0,49,106,61,255,6,66,208,255,2,106,110,255,81,234,19,255,215,107,192,255,67,151,238,0,19,42,108,255,229,85,113,1,50,68,135,255,17,106,9,0,50,103,1,255,80,1,168,1,35,152,30,255,16,168,185,1,56,89,232,255,101,210,252,0,41,250,71,0,204,170,79,255,14,46,239,255,80,77,239,0,189,214,75,255,17,141,249,0,38,80,76,255,190,85,117,0,86,228,170,0,156,216,208,1,195,207,164,255,150,66,76,255,175,225,16,255,141,80,98,1,76,219,242,0,198,162,114,0,46,218,152,0,155,43,241,254,155,160,104,255,178,9,252,254,100,110,212,0,14,5,167,0,233,239,163,255,28,151,157,1,101,146,10,255,254,158,70,254,71,249,228,0,88,30,50,0,68,58,160,255,191,24,104,1,129,66,129,255,192,50,85,255,8,179,138,255,38,250,201,0,115,80,160,0,131,230,113,0,125,88,147,0,90,68,199,0,253,76,158,0,28,255,118,0,113,250,254,0,66,75,46,0,230,218,43,0,229,120,186,1,148,68,43,0,136,124,238,1,187,107,197,255,84,53,246,255,51,116,254,255,51,187,165,0,2,17,175,0,66,84,160,1,247,58,30,0,35,65,53,254,69,236,191,0,45,134,245,1,163,123,221,0,32,110,20,255,52,23,165,0,186,214,71,0,233,176,96,0,242,239,54,1,57,89,138,0,83,0,84,255,136,160,100,0,92,142,120,254,104,124,190,0,181,177,62,255,250,41,85,0,152,130,42,1,96,252,246,0,151,151,63,254,239,133,62,0,32,56,156,0,45,167,189,255,142,133,179,1,131,86,211,0,187,179,150,254,250,170,14,255,68,113,21,255,222,186,59,255,66,7,241,1,69,6,72,0,86,156,108,254,55,167,89,0,109,52,219,254,13,176,23,255,196,44,106,255,239,149,71,255,164,140,125,255,159,173,1,0,51,41,231,0,145,62,33,0,138,111,93,1,185,83,69,0,144,115,46,0,97,151,16,255,24,228,26,0,49,217,226,0,113,75,234,254,193,153,12,255,182,48,96,255,14,13,26,0,128,195,249,254,69,193,59,0,132,37,81,254,125,106,60,0,214,240,169,1,164,227,66,0,210,163,78,0,37,52,151,0,99,77,26,0,238,156,213,255,213,192,209,1,73,46,84,0,20,65,41,1,54,206,79,0,201,131,146,254,170,111,24,255,177,33,50,254,171,38,203,255,78,247,116,0,209,221,153,0,133,128,178,1,58,44,25,0,201,39,59,1,189,19,252,0,49,229,210,1,117,187,117,0,181,179,184,1,0,114,219,0,48,94,147,0,245,41,56,0,125,13,204,254,244,173,119,0,44,221,32,254,84,234,20,0,249,160,198,1,236,126,234,255,143,62,221,0,129,89,214,255,55,139,5,254,68,20,191,255,14,204,178,1,35,195,217,0,47,51,206,1,38,246,165,0,206,27,6,254,158,87,36,0,217,52,146,255,125,123,215,255,85,60,31,255,171,13,7,0,218,245,88,254,252,35,60,0,55,214,160,255,133,101,56,0,224,32,19,254,147,64,234,0,26,145,162,1,114,118,125,0,248,252,250,0,101,94,196,255,198,141,226,254,51,42,182,0,135,12,9,254,109,172,210,255,197,236,194,1,241,65,154,0,48,156,47,255,153,67,55,255,218,165,34,254,74,180,179,0,218,66,71,1,88,122,99,0,212,181,219,255,92,42,231,255,239,0,154,0,245,77,183,255,94,81,170,1,18,213,216,0,171,93,71,0,52,94,248,0,18,151,161,254,197,209,66,255,174,244,15,254,162,48,183,0,49,61,240,254,182,93,195,0,199,228,6,1,200,5,17,255,137,45,237,255,108,148,4,0,90,79,237,255,39,63,77,255,53,82,207,1,142,22,118,255,101,232,18,1,92,26,67,0,5,200,88,255,33,168,138,255,149,225,72,0,2,209,27,255,44,245,168,1,220,237,17,255,30,211,105,254,141,238,221,0,128,80,245,254,111,254,14,0,222,95,190,1,223,9,241,0,146,76,212,255,108,205,104,255,63,117,153,0,144,69,48,0,35,228,111,0,192,33,193,255,112,214,190,254,115,152,151,0,23,102,88,0,51,74,248,0,226,199,143,254,204,162,101,255,208,97,189,1,245,104,18,0,230,246,30,255,23,148,69,0,110,88,52,254,226,181,89,255,208,47,90,254,114,161,80,255,33,116,248,0,179,152,87,255,69,144,177,1,88,238,26,255,58,32,113,1,1,77,69,0,59,121,52,255,152,238,83,0,52,8,193,0,231,39,233,255,199,34,138,0,222,68,173,0,91,57,242,254,220,210,127,255,192,7,246,254,151,35,187,0,195,236,165,0,111,93,206,0,212,247,133,1,154,133,209,255,155,231,10,0,64,78,38,0,122,249,100,1,30,19,97,255,62,91,249,1,248,133,77,0,197,63,168,254,116,10,82,0,184,236,113,254,212,203,194,255,61,100,252,254,36,5,202,255,119,91,153,255,129,79,29,0,103,103,171,254,237,215,111,255,216,53,69,0,239,240,23,0,194,149,221,255,38,225,222,0,232,255,180,254,118,82,133,255,57,209,177,1,139,232,133,0,158,176,46,254,194,115,46,0,88,247,229,1,28,103,191,0,221,222,175,254,149,235,44,0,151,228,25,254,218,105,103,0,142,85,210,0,149,129,190,255,213,65,94,254,117,134,224,255,82,198,117,0,157,221,220,0,163,101,36,0,197,114,37,0,104,172,166,254,11,182,0,0,81,72,188,255,97,188,16,255,69,6,10,0,199,147,145,255,8,9,115,1,65,214,175,255,217,173,209,0,80,127,166,0,247,229,4,254,167,183,124,255,90,28,204,254,175,59,240,255,11,41,248,1,108,40,51,255,144,177,195,254,150,250,126,0,138,91,65,1,120,60,222,255,245,193,239,0,29,214,189,255,128,2,25,0,80,154,162,0,77,220,107,1,234,205,74,255,54,166,103,255,116,72,9,0,228,94,47,255,30,200,25,255,35,214,89,255,61,176,140,255,83,226,163,255,75,130,172,0,128,38,17,0,95,137,152,255,215,124,159,1,79,93,0,0,148,82,157,254,195,130,251,255,40,202,76,255,251,126,224,0,157,99,62,254,207,7,225,255,96,68,195,0,140,186,157,255,131,19,231,255,42,128,254,0,52,219,61,254,102,203,72,0,141,7,11,255,186,164,213,0,31,122,119,0,133,242,145,0,208,252,232,255,91,213,182,255,143,4,250,254,249,215,74,0,165,30,111,1,171,9,223,0,229,123,34,1,92,130,26,255,77,155,45,1,195,139,28,255,59,224,78,0,136,17,247,0,108,121,32,0,79,250,189,255,96,227,252,254,38,241,62,0,62,174,125,255,155,111,93,255,10,230,206,1,97,197,40,255,0,49,57,254,65,250,13,0,18,251,150,255,220,109,210,255,5,174,166,254,44,129,189,0,235,35,147,255,37,247,141,255,72,141,4,255,103,107,255,0,247,90,4,0,53,44,42,0,2,30,240,0,4,59,63,0,88,78,36,0,113,167,180,0,190,71,193,255,199,158,164,255,58,8,172,0,77,33,12,0,65,63,3,0,153,77,33,255,172,254,102,1,228,221,4,255,87,30,254,1,146,41,86,255,138,204,239,254,108,141,17,255,187,242,135,0,210,208,127,0,68,45,14,254,73,96,62,0,81,60,24,255,170,6,36,255,3,249,26,0,35,213,109,0,22,129,54,255,21,35,225,255,234,61,56,255,58,217,6,0,143,124,88,0,236,126,66,0,209,38,183,255,34,238,6,255,174,145,102,0,95,22,211,0,196,15,153,254,46,84,232,255,117,34,146,1,231,250,74,255,27,134,100,1,92,187,195,255,170,198,112,0,120,28,42,0,209,70,67,0,29,81,31,0,29,168,100,1,169,173,160,0,107,35,117,0,62,96,59,255,81,12,69,1,135,239,190,255,220,252,18,0,163,220,58,255,137,137,188,255,83,102,109,0,96,6,76,0,234,222,210,255,185,174,205,1,60,158,213,255,13,241,214,0,172,129,140,0,93,104,242,0,192,156,251,0,43,117,30,0,225,81,158,0,127,232,218,0,226,28,203,0,233,27,151,255,117,43,5,255,242,14,47,255,33,20,6,0,137,251,44,254,27,31,245,255,183,214,125,254,40,121,149,0,186,158,213,255,89,8,227,0,69,88,0,254,203,135,225,0,201,174,203,0,147,71,184,0,18,121,41,254,94,5,78,0,224,214,240,254,36,5,180,0,251,135,231,1,163,138,212,0,210,249,116,254,88,129,187,0,19,8,49,254,62,14,144,255,159,76,211,0,214,51,82,0,109,117,228,254,103,223,203,255,75,252,15,1,154,71,220,255,23,13,91,1,141,168,96,255,181,182,133,0,250,51,55,0,234,234,212,254,175,63,158,0,39,240,52,1,158,189,36,255,213,40,85,1,32,180,247,255,19,102,26,1,84,24,97,255,69,21,222,0,148,139,122,255,220,213,235,1,232,203,255,0,121,57,147,0,227,7,154,0,53,22,147,1,72,1,225,0,82,134,48,254,83,60,157,255,145,72,169,0,34,103,239,0,198,233,47,0,116,19,4,255,184,106,9,255,183,129,83,0,36,176,230,1,34,103,72,0,219,162,134,0,245,42,158,0,32,149,96,254,165,44,144,0,202,239,72,254,215,150,5,0,42,66,36,1,132,215,175,0,86,174,86,255,26,197,156,255,49,232,135,254,103,182,82,0,253,128,176,1,153,178,122,0,245,250,10,0,236,24,178,0,137,106,132,0,40,29,41,0,50,30,152,255,124,105,38,0,230,191,75,0,143,43,170,0,44,131,20,255,44,13,23,255,237,255,155,1,159,109,100,255,112,181,24,255,104,220,108,0,55,211,131,0,99,12,213,255,152,151,145,255,238,5,159,0,97,155,8,0,33,108,81,0,1,3,103,0,62,109,34,255,250,155,180,0,32,71,195,255,38,70,145,1,159,95,245,0,69,229,101,1,136,28,240,0,79,224,25,0,78,110,121,255,248,168,124,0,187,128,247,0,2,147,235,254,79,11,132,0,70,58,12,1,181,8,163,255,79,137,133,255,37,170,11,255,141,243,85,255,176,231,215,255,204,150,164,255,239,215,39,255,46,87,156,254,8,163,88,255,172,34,232,0,66,44,102,255,27,54,41,254,236,99,87,255,41,123,169,1,52,114,43,0,117,134,40,0,155,134,26,0,231,207,91,254,35,132,38,255,19,102,125,254,36,227,133,255,118,3,113,255,29,13,124,0,152,96,74,1,88,146,206,255,167,191,220,254,162,18,88,255,182,100,23,0,31,117,52,0,81,46,106,1,12,2,7,0,69,80,201,1,209,246,172,0,12,48,141,1,224,211,88,0,116,226,159,0,122,98,130,0,65,236,234,1,225,226,9,255,207,226,123,1,89,214,59,0,112,135,88,1,90,244,203,255,49,11,38,1,129,108,186,0,89,112,15,1,101,46,204,255,127,204,45,254,79,255,221,255,51,73,18,255,127,42,101,255,241,21,202,0,160,227,7,0,105,50,236,0,79,52,197,255,104,202,208,1,180,15,16,0,101,197,78,255,98,77,203,0,41,185,241,1,35,193,124,0,35,155,23,255,207,53,192,0,11,125,163,1,249,158,185,255,4,131,48,0,21,93,111,255,61,121,231,1,69,200,36,255,185,48,185,255,111,238,21,255,39,50,25,255,99,215,163,255,87,212,30,255,164,147,5,255,128,6,35,1,108,223,110,255,194,76,178,0,74,101,180,0,243,47,48,0,174,25,43,255,82,173,253,1,54,114,192,255,40,55,91,0,215,108,176,255,11,56,7,0,224,233,76,0,209,98,202,254,242,25,125,0,44,193,93,254,203,8,177,0,135,176,19,0,112,71,213,255,206,59,176,1,4,67,26,0,14,143,213,254,42,55,208,255,60,67,120,0,193,21,163,0,99,164,115,0,10,20,118,0,156,212,222,254,160,7,217,255,114,245,76,1,117,59,123,0,176,194,86,254,213,15,176,0,78,206,207,254,213,129,59,0,233,251,22,1,96,55,152,255,236,255,15,255,197,89,84,255,93,149,133,0,174,160,113,0,234,99,169,255,152,116,88,0,144,164,83,255,95,29,198,255,34,47,15,255,99,120,134,255,5,236,193,0,249,247,126,255,147,187,30,0,50,230,117,255,108,217,219,255,163,81,166,255,72,25,169,254,155,121,79,255,28,155,89,254,7,126,17,0,147,65,33,1,47,234,253,0,26,51,18,0,105,83,199,255,163,196,230,0,113,248,164,0,226,254,218,0,189,209,203,255,164,247,222,254,255,35,165,0,4,188,243,1,127,179,71,0,37,237,254,255,100,186,240,0,5,57,71,254,103,72,73,255,244,18,81,254,229,210,132,255,238,6,180,255,11,229,174,255,227,221,192,1,17,49,28,0,163,215,196,254,9,118,4,255,51,240,71,0,113,129,109,255,76,240,231,0,188,177,127,0,125,71,44,1,26,175,243,0,94,169,25,254,27,230,29,0,15,139,119,1,168,170,186,255,172,197,76,255,252,75,188,0,137,124,196,0,72,22,96,255,45,151,249,1,220,145,100,0,64,192,159,255,120,239,226,0,129,178,146,0,0,192,125,0,235,138,234,0,183,157,146,0,83,199,192,255,184,172,72,255,73,225,128,0,77,6,250,255,186,65,67,0,104,246,207,0,188,32,138,255,218,24,242,0,67,138,81,254,237,129,121,255,20,207,150,1,41,199,16,255,6,20,128,0,159,118,5,0,181,16,143,255,220,38,15,0,23,64,147,254,73,26,13,0,87,228,57,1,204,124,128,0,43,24,223,0,219,99,199,0,22,75,20,255,19,27,126,0,157,62,215,0,110,29,230,0,179,167,255,1,54,252,190,0,221,204,182,254,179,158,65,255,81,157,3,0,194,218,159,0,170,223,0,0,224,11,32,255,38,197,98,0,168,164,37,0,23,88,7,1,164,186,110,0,96,36,134,0,234,242,229,0,250,121,19,0,242,254,112,255,3,47,94,1,9,239,6,255,81,134,153,254,214,253,168,255,67,124,224,0,245,95,74,0,28,30,44,254,1,109,220,255,178,89,89,0,252,36,76,0,24,198,46,255,76,77,111,0,134,234,136,255,39,94,29,0,185,72,234,255,70,68,135,255,231,102,7,254,77,231,140,0,167,47,58,1,148,97,118,255,16,27,225,1,166,206,143,255,110,178,214,255,180,131,162,0,143,141,225,1,13,218,78,255,114,153,33,1,98,104,204,0,175,114,117,1,167,206,75,0,202,196,83,1,58,64,67,0,138,47,111,1,196,247,128,255,137,224,224,254,158,112,207,0,154,100,255,1,134,37,107,0,198,128,79,255,127,209,155,255,163,254,185,254,60,14,243,0,31,219,112,254,29,217,65,0,200,13,116,254,123,60,196,255,224,59,184,254,242,89,196,0,123,16,75,254,149,16,206,0,69,254,48,1,231,116,223,255,209,160,65,1,200,80,98,0,37,194,184,254,148,63,34,0,139,240,65,255,217,144,132,255,56,38,45,254,199,120,210,0,108,177,166,255,160,222,4,0,220,126,119,254,165,107,160,255,82,220,248,1,241,175,136,0,144,141,23,255,169,138,84,0,160,137,78,255,226,118,80,255,52,27,132,255,63,96,139,255,152,250,39,0,188,155,15,0,232,51,150,254,40,15,232,255,240,229,9,255,137,175,27,255,75,73,97,1,218,212,11,0,135,5,162,1,107,185,213,0,2,249,107,255,40,242,70,0,219,200,25,0,25,157,13,0,67,82,80,255,196,249,23,255,145,20,149,0,50,72,146,0,94,76,148,1,24,251,65,0,31,192,23,0,184,212,201,255,123,233,162,1,247,173,72,0,162,87,219,254,126,134,89,0,159,11,12,254,166,105,29,0,73,27,228,1,113,120,183,255,66,163,109,1,212,143,11,255,159,231,168,1,255,128,90,0,57,14,58,254,89,52,10,255,253,8,163,1,0,145,210,255,10,129,85,1,46,181,27,0,103,136,160,254,126,188,209,255,34,35,111,0,215,219,24,255,212,11,214,254,101,5,118,0,232,197,133,255,223,167,109,255,237,80,86,255,70,139,94,0,158,193,191,1,155,15,51,255,15,190,115,0,78,135,207,255,249,10,27,1,181,125,233,0,95,172,13,254,170,213,161,255,39,236,138,255,95,93,87,255,190,128,95,0,125,15,206,0,166,150,159,0,227,15,158,255,206,158,120,255,42,141,128,0,101,178,120,1,156,109,131,0,218,14,44,254,247,168,206,255,212,112,28,0,112,17,228,255,90,16,37,1,197,222,108,0,254,207,83,255,9,90,243,255,243,244,172,0,26,88,115,255,205,116,122,0,191,230,193,0,180,100,11,1,217,37,96,255,154,78,156,0,235,234,31,255,206,178,178,255,149,192,251,0,182,250,135,0,246,22,105,0,124,193,109,255,2,210,149,255,169,17,170,0,0,96,110,255,117,9,8,1,50,123,40,255,193,189,99,0,34,227,160,0,48,80,70,254,211,51,236,0,45,122,245,254,44,174,8,0,173,37,233,255,158,65,171,0,122,69,215,255,90,80,2,255,131,106,96,254,227,114,135,0,205,49,119,254,176,62,64,255,82,51,17,255,241,20,243,255,130,13,8,254,128,217,243,255,162,27,1,254,90,118,241,0,246,198,246,255,55,16,118,255,200,159,157,0,163,17,1,0,140,107,121,0,85,161,118,255,38,0,149,0,156,47,238,0,9,166,166,1,75,98,181,255,50,74,25,0,66,15,47,0,139,225,159,0,76,3,142,255,14,238,184,0,11,207,53,255,183,192,186,1,171,32,174,255,191,76,221,1,247,170,219,0,25,172,50,254,217,9,233,0,203,126,68,255,183,92,48,0,127,167,183,1,65,49,254,0,16,63,127,1,254,21,170,255,59,224,127,254,22,48,63,255,27,78,130,254,40,195,29,0,250,132,112,254,35,203,144,0,104,169,168,0,207,253,30,255,104,40,38,254,94,228,88,0,206,16,128,255,212,55,122,255,223,22,234,0,223,197,127,0,253,181,181,1,145,102,118,0,236,153,36,255,212,217,72,255,20,38,24,254,138,62,62,0,152,140,4,0,230,220,99,255,1,21,212,255,148,201,231,0,244,123,9,254,0,171,210,0,51,58,37,255,1,255,14,255,244,183,145,254,0,242,166,0,22,74,132,0,121,216,41,0,95,195,114,254,133,24,151,255,156,226,231,255,247,5,77,255,246,148,115,254,225,92,81,255,222,80,246,254,170,123,89,255,74,199,141,0,29,20,8,255,138,136,70,255,93,75,92,0,221,147,49,254,52,126,226,0,229,124,23,0,46,9,181,0,205,64,52,1,131,254,28,0,151,158,212,0,131,64,78,0,206,25,171,0,0,230,139,0,191,253,110,254,103,247,167,0,64,40,40,1,42,165,241,255,59,75,228,254,124,243,189,255,196,92,178,255,130,140,86,255,141,89,56,1,147,198,5,255,203,248,158,254,144,162,141,0,11,172,226,0,130,42,21,255,1,167,143,255,144,36,36,255,48,88,164,254,168,170,220,0,98,71,214,0,91,208,79,0,159,76,201,1,166,42,214,255,69,255,0,255,6,128,125,255,190,1,140,0,146,83,218,255,215,238,72,1,122,127,53,0,189,116,165,255,84,8,66,255,214,3,208,255,213,110,133,0,195,168,44,1,158,231,69,0,162,64,200,254,91,58,104,0,182,58,187,254,249,228,136,0,203,134,76,254,99,221,233,0,75,254,214,254,80,69,154,0,64,152,248,254,236,136,202,255,157,105,153,254,149,175,20,0,22,35,19,255,124,121,233,0,186,250,198,254,132,229,139,0,137,80,174,255,165,125,68,0,144,202,148,254,235,239,248,0,135,184,118,0,101,94,17,255,122,72,70,254,69,130,146,0,127,222,248,1,69,127,118,255,30,82,215,254,188,74,19,255,229,167,194,254,117,25,66,255,65,234,56,254,213,22,156,0,151,59,93,254,45,28,27,255,186,126,164,255,32,6,239,0,127,114,99,1,219,52,2,255,99,96,166,254,62,190,126,255,108,222,168,1,75,226,174,0,230,226,199,0,60,117,218,255,252,248,20,1,214,188,204,0,31,194,134,254,123,69,192,255,169,173,36,254,55,98,91,0,223,42,102,254,137,1,102,0,157,90,25,0,239,122,64,255,252,6,233,0,7,54,20,255,82,116,174,0,135,37,54,255,15,186,125,0,227,112,175,255,100,180,225,255,42,237,244,255,244,173,226,254,248,18,33,0,171,99,150,255,74,235,50,255,117,82,32,254,106,168,237,0,207,109,208,1,228,9,186,0,135,60,169,254,179,92,143,0,244,170,104,255,235,45,124,255,70,99,186,0,117,137,183,0,224,31,215,0,40,9,100,0,26,16,95,1,68,217,87,0,8,151,20,255,26,100,58,255,176,165,203,1,52,118,70,0,7,32,254,254,244,254,245,255,167,144,194,255,125,113,23,255,176,121,181,0,136,84,209,0,138,6,30,255,89,48,28,0,33,155,14,255,25,240,154,0,141,205,109,1,70,115,62,255,20,40,107,254,138,154,199,255,94,223,226,255,157,171,38,0,163,177,25,254,45,118,3,255,14,222,23,1,209,190,81,255,118,123,232,1,13,213,101,255,123,55,123,254,27,246,165,0,50,99,76,255,140,214,32,255,97,65,67,255,24,12,28,0,174,86,78,1,64,247,96,0,160,135,67,0,66,55,243,255,147,204,96,255,26,6,33,255,98,51,83,1,153,213,208,255,2,184,54,255,25,218,11,0,49,67,246,254,18,149,72,255,13,25,72,0,42,79,214,0,42,4,38,1,27,139,144,255,149,187,23,0,18,164,132,0,245,84,184,254,120,198,104,255,126,218,96,0,56,117,234,255,13,29,214,254,68,47,10,255,167,154,132,254,152,38,198,0,66,178,89,255,200,46,171,255,13,99,83,255,210,187,253,255,170,45,42,1,138,209,124,0,214,162,141,0,12,230,156,0,102,36,112,254,3,147,67,0,52,215,123,255,233,171,54,255,98,137,62,0,247,218,39,255,231,218,236,0,247,191,127,0,195,146,84,0,165,176,92,255,19,212,94,255,17,74,227,0,88,40,153,1,198,147,1,255,206,67,245,254,240,3,218,255,61,141,213,255,97,183,106,0,195,232,235,254,95,86,154,0,209,48,205,254,118,209,241,255,240,120,223,1,213,29,159,0,163,127,147,255,13,218,93,0,85,24,68,254,70,20,80,255,189,5,140,1,82,97,254,255,99,99,191,255,132,84,133,255,107,218,116,255,112,122,46,0,105,17,32,0,194,160,63,255,68,222,39,1,216,253,92,0,177,105,205,255,149,201,195,0,42,225,11,255,40,162,115,0,9,7,81,0,165,218,219,0,180,22,0,254,29,146,252,255,146,207,225,1,180,135,96,0,31,163,112,0,177,11,219,255,133,12,193,254,43,78,50,0,65,113,121,1,59,217,6,255,110,94,24,1,112,172,111,0,7,15,96,0,36,85,123,0,71,150,21,255,208,73,188,0,192,11,167,1,213,245,34,0,9,230,92,0,162,142,39,255,215,90,27,0,98,97,89,0,94,79,211,0,90,157,240,0,95,220,126,1,102,176,226,0,36,30,224,254,35,31,127,0,231,232,115,1,85,83,130,0,210,73,245,255,47,143,114,255,68,65,197,0,59,72,62,255,183,133,173,254,93,121,118,255,59,177,81,255,234,69,173,255,205,128,177,0,220,244,51,0,26,244,209,1,73,222,77,255,163,8,96,254,150,149,211,0,158,254,203,1,54,127,139,0,161,224,59,0,4,109,22,255,222,42,45,255,208,146,102,255,236,142,187,0,50,205,245,255,10,74,89,254,48,79,142,0,222,76,130,255,30,166,63,0,236,12,13,255,49,184,244,0,187,113,102,0,218,101,253,0,153,57,182,254,32,150,42,0,25,198,146,1,237,241,56,0,140,68,5,0,91,164,172,255,78,145,186,254,67,52,205,0,219,207,129,1,109,115,17,0,54,143,58,1,21,248,120,255,179,255,30,0,193,236,66,255,1,255,7,255,253,192,48,255,19,69,217,1,3,214,0,255,64,101,146,1,223,125,35,255,235,73,179,255,249,167,226,0,225,175,10,1,97,162,58,0,106,112,171,1,84,172,5,255,133,140,178,255,134,245,142,0,97,90,125,255,186,203,185,255,223,77,23,255,192,92,106,0,15,198,115,255,217,152,248,0,171,178,120,255,228,134,53,0,176,54,193,1,250,251,53,0,213,10,100,1,34,199,106,0,151,31,244,254,172,224,87,255,14,237,23,255,253,85,26,255,127,39,116,255,172,104,100,0,251,14,70,255,212,208,138,255,253,211,250,0,176,49,165,0,15,76,123,255,37,218,160,255,92,135,16,1,10,126,114,255,70,5,224,255,247,249,141,0,68,20,60,1,241,210,189,255,195,217,187,1,151,3,113,0,151,92,174,0,231,62,178,255,219,183,225,0,23,23,33,255,205,181,80,0,57,184,248,255,67,180,1,255,90,123,93,255,39,0,162,255,96,248,52,255,84,66,140,0,34,127,228,255,194,138,7,1,166,110,188,0,21,17,155,1,154,190,198,255,214,80,59,255,18,7,143,0,72,29,226,1,199,217,249,0,232,161,71,1,149,190,201,0,217,175,95,254,113,147,67,255,138,143,199,255,127,204,1,0,29,182,83,1,206,230,155,255,186,204,60,0,10,125,85,255,232,96,25,255,255,89,247,255,213,254,175,1,232,193,81,0,28,43,156,254,12,69,8,0,147,24,248,0,18,198,49,0,134,60,35,0,118,246,18,255,49,88,254,254,228,21,186,255,182,65,112,1,219,22,1,255,22,126,52,255,189,53,49,255,112,25,143,0,38,127,55,255,226,101,163,254,208,133,61,255,137,69,174,1,190,118,145,255,60,98,219,255,217,13,245,255,250,136,10,0,84,254,226,0,201,31,125,1,240,51,251,255,31,131,130,255,2,138,50,255,215,215,177,1,223,12,238,255,252,149,56,255,124,91,68,255,72,126,170,254,119,255,100,0,130,135,232,255,14,79,178,0,250,131,197,0,138,198,208,0,121,216,139,254,119,18,36,255,29,193,122,0,16,42,45,255,213,240,235,1,230,190,169,255,198,35,228,254,110,173,72,0,214,221,241,255,56,148,135,0,192,117,78,254,141,93,207,255,143,65,149,0,21,18,98,255,95,44,244,1,106,191,77,0,254,85,8,254,214,110,176,255,73,173,19,254,160,196,199,255,237,90,144,0,193,172,113,255,200,155,136,254,228,90,221,0,137,49,74,1,164,221,215,255,209,189,5,255,105,236,55,255,42,31,129,1,193,255,236,0,46,217,60,0,138,88,187,255,226,82,236,255,81,69,151,255,142,190,16,1,13,134,8,0,127,122,48,255,81,64,156,0,171,243,139,0,237,35,246,0,122,143,193,254,212,122,146,0,95,41,255,1,87,132,77,0,4,212,31,0,17,31,78,0,39,45,173,254,24,142,217,255,95,9,6,255,227,83,6,0,98,59,130,254,62,30,33,0,8,115,211,1,162,97,128,255,7,184,23,254,116,28,168,255,248,138,151,255,98,244,240,0,186,118,130,0,114,248,235,255,105,173,200,1,160,124,71,255,94,36,164,1,175,65,146,255,238,241,170,254,202,198,197,0,228,71,138,254,45,246,109,255,194,52,158,0,133,187,176,0,83,252,154,254,89,189,221,255,170,73,252,0,148,58,125,0,36,68,51,254,42,69,177,255,168,76,86,255,38,100,204,255,38,53,35,0,175,19,97,0,225,238,253,255,81,81,135,0,210,27,255,254,235,73,107,0,8,207,115,0,82,127,136,0,84,99,21,254,207,19,136,0,100,164,101,0,80,208,77,255,132,207,237,255,15,3,15,255,33,166,110,0,156,95,85,255,37,185,111,1,150,106,35,255,166,151,76,0,114,87,135,255,159,194,64,0,12,122,31,255,232,7,101,254,173,119,98,0,154,71,220,254,191,57,53,255,168,232,160,255,224,32,99,255,218,156,165,0,151,153,163,0,217,13,148,1,197,113,89,0,149,28,161,254,207,23,30,0,105,132,227,255,54,230,94,255,133,173,204,255,92,183,157,255,88,144,252,254,102,33,90,0,159,97,3,0,181,218,155,255,240,114,119,0,106,214,53,255,165,190,115,1,152,91,225,255,88,106,44,255,208,61,113,0,151,52,124,0,191,27,156,255,110,54,236,1,14,30,166,255,39,127,207,1,229,199,28,0,188,228,188,254,100,157,235,0,246,218,183,1,107,22,193,255,206,160,95,0,76,239,147,0,207,161,117,0,51,166,2,255,52,117,10,254,73,56,227,255,152,193,225,0,132,94,136,255,101,191,209,0,32,107,229,255,198,43,180,1,100,210,118,0,114,67,153,255,23,88,26,255,89,154,92,1,220,120,140,255,144,114,207,255,252,115,250,255,34,206,72,0,138,133,127,255,8,178,124,1,87,75,97,0,15,229,92,254,240,67,131,255,118,123,227,254,146,120,104,255,145,213,255,1,129,187,70,255,219,119,54,0,1,19,173,0,45,150,148,1,248,83,72,0,203,233,169,1,142,107,56,0,247,249,38,1,45,242,80,255,30,233,103,0,96,82,70,0,23,201,111,0,81,39,30,255,161,183,78,255,194,234,33,255,68,227,140,254,216,206,116,0,70,27,235,255,104,144,79,0,164,230,93,254,214,135,156,0,154,187,242,254,188,20,131,255,36,109,174,0,159,112,241,0,5,110,149,1,36,165,218,0,166,29,19,1,178,46,73,0,93,43,32,254,248,189,237,0,102,155,141,0,201,93,195,255,241,139,253,255,15,111,98,255,108,65,163,254,155,79,190,255,73,174,193,254,246,40,48,255,107,88,11,254,202,97,85,255,253,204,18,255,113,242,66,0,110,160,194,254,208,18,186,0,81,21,60,0,188,104,167,255,124,166,97,254,210,133,142,0,56,242,137,254,41,111,130,0,111,151,58,1,111,213,141,255,183,172,241,255,38,6,196,255,185,7,123,255,46,11,246,0,245,105,119,1,15,2,161,255,8,206,45,255,18,202,74,255,83,124,115,1,212,141,157,0,83,8,209,254,139,15,232,255,172,54,173,254,50,247,132,0,214,189,213,0,144,184,105,0,223,254,248,0,255,147,240,255,23,188,72,0,7,51,54,0,188,25,180,254,220,180,0,255,83,160,20,0,163,189,243,255,58,209,194,255,87,73,60,0,106,24,49,0,245,249,220,0,22,173,167,0,118,11,195,255,19,126,237,0,110,159,37,255,59,82,47,0,180,187,86,0,188,148,208,1,100,37,133,255,7,112,193,0,129,188,156,255,84,106,129,255,133,225,202,0,14,236,111,255,40,20,101,0,172,172,49,254,51,54,74,255,251,185,184,255,93,155,224,255,180,249,224,1,230,178,146,0,72,57,54,254,178,62,184,0,119,205,72,0,185,239,253,255,61,15,218,0,196,67,56,255,234,32,171,1,46,219,228,0,208,108,234,255,20,63,232,255,165,53,199,1,133,228,5,255,52,205,107,0,74,238,140,255,150,156,219,254,239,172,178,255,251,189,223,254,32,142,211,255,218,15,138,1,241,196,80,0,28,36,98,254,22,234,199,0,61,237,220,255,246,57,37,0,142,17,142,255,157,62,26,0,43,238,95,254,3,217,6,255,213,25,240,1,39,220,174,255,154,205,48,254,19,13,192,255,244,34,54,254,140,16,155,0,240,181,5,254,155,193,60,0,166,128,4,255,36,145,56,255,150,240,219,0,120,51,145,0,82,153,42,1,140,236,146,0,107,92,248,1,189,10,3,0,63,136,242,0,211,39,24,0,19,202,161,1,173,27,186,255,210,204,239,254,41,209,162,255,182,254,159,255,172,116,52,0,195,103,222,254,205,69,59,0,53,22,41,1,218,48,194,0,80,210,242,0,210,188,207,0,187,161,161,254,216,17,1,0,136,225,113,0,250,184,63,0,223,30,98,254,77,168,162,0,59,53,175,0,19,201,10,255,139,224,194,0,147,193,154,255,212,189,12,254,1,200,174,255,50,133,113,1,94,179,90,0,173,182,135,0,94,177,113,0,43,89,215,255,136,252,106,255,123,134,83,254,5,245,66,255,82,49,39,1,220,2,224,0,97,129,177,0,77,59,89,0,61,29,155,1,203,171,220,255,92,78,139,0,145,33,181,255,169,24,141,1,55,150,179,0,139,60,80,255,218,39,97,0,2,147,107,255,60,248,72,0,173,230,47,1,6,83,182,255,16,105,162,254,137,212,81,255,180,184,134,1,39,222,164,255,221,105,251,1,239,112,125,0,63,7,97,0,63,104,227,255,148,58,12,0,90,60,224,255,84,212,252,0,79,215,168,0,248,221,199,1,115,121,1,0,36,172,120,0,32,162,187,255,57,107,49,255,147,42,21,0,106,198,43,1,57,74,87,0,126,203,81,255,129,135,195,0,140,31,177,0,221,139,194,0,3,222,215,0,131,68,231,0,177,86,178,254,124,151,180,0,184,124,38,1,70,163,17,0,249,251,181,1,42,55,227,0,226,161,44,0,23,236,110,0,51,149,142,1,93,5,236,0,218,183,106,254,67,24,77,0,40,245,209,255,222,121,153,0,165,57,30,0,83,125,60,0,70,38,82,1,229,6,188,0,109,222,157,255,55,118,63,255,205,151,186,0,227,33,149,255,254,176,246,1,227,177,227,0,34,106,163,254,176,43,79,0,106,95,78,1,185,241,122,255,185,14,61,0,36,1,202,0,13,178,162,255,247,11,132,0,161,230,92,1,65,1,185,255,212,50,165,1,141,146,64,255,158,242,218,0,21,164,125,0,213,139,122,1,67,71,87,0,203,158,178,1,151,92,43,0,152,111,5,255,39,3,239,255,217,255,250,255,176,63,71,255,74,245,77,1,250,174,18,255,34,49,227,255,246,46,251,255,154,35,48,1,125,157,61,255,106,36,78,255,97,236,153,0,136,187,120,255,113,134,171,255,19,213,217,254,216,94,209,255,252,5,61,0,94,3,202,0,3,26,183,255,64,191,43,255,30,23,21,0,129,141,77,255,102,120,7,1,194,76,140,0,188,175,52,255,17,81,148,0,232,86,55,1,225,48,172,0,134,42,42,255,238,50,47,0,169,18,254,0,20,147,87,255,14,195,239,255,69,247,23,0,238,229,128,255,177,49,112,0,168,98,251,255,121,71,248,0,243,8,145,254,246,227,153,255,219,169,177,254,251,139,165,255,12,163,185,255,164,40,171,255,153,159,27,254,243,109,91,255,222,24,112,1,18,214,231,0,107,157,181,254,195,147,0,255,194,99,104,255,89,140,190,255,177,66,126,254,106,185,66,0,49,218,31,0,252,174,158,0,188,79,230,1,238,41,224,0,212,234,8,1,136,11,181,0,166,117,83,255,68,195,94,0,46,132,201,0,240,152,88,0,164,57,69,254,160,224,42,255,59,215,67,255,119,195,141,255,36,180,121,254,207,47,8,255,174,210,223,0,101,197,68,255,255,82,141,1,250,137,233,0,97,86,133,1,16,80,69,0,132,131,159,0,116,93,100,0,45,141,139,0,152,172,157,255,90,43,91,0,71,153,46,0,39,16,112,255,217,136,97,255,220,198,25,254,177,53,49,0,222,88,134,255,128,15,60,0,207,192,169,255,192,116,209,255,106,78,211,1,200,213,183,255,7,12,122,254,222,203,60,255,33,110,199,254,251,106,117,0,228,225,4,1,120,58,7,255,221,193,84,254,112,133,27,0,189,200,201,255,139,135,150,0,234,55,176,255,61,50,65,0,152,108,169,255,220,85,1,255,112,135,227,0,162,26,186,0,207,96,185,254,244,136,107,0,93,153,50,1,198,97,151,0,110,11,86,255,143,117,174,255,115,212,200,0,5,202,183,0,237,164,10,254,185,239,62,0,236,120,18,254,98,123,99,255,168,201,194,254,46,234,214,0,191,133,49,255,99,169,119,0,190,187,35,1,115,21,45,255,249,131,72,0,112,6,123,255,214,49,181,254,166,233,34,0,92,197,102,254,253,228,205,255,3,59,201,1,42,98,46,0,219,37,35,255,169,195,38,0,94,124,193,1,156,43,223,0,95,72,133,254,120,206,191,0,122,197,239,255,177,187,79,255,254,46,2,1,250,167,190,0,84,129,19,0,203,113,166,255,249,31,189,254,72,157,202,255,208,71,73,255,207,24,72,0,10,16,18,1,210,81,76,255,88,208,192,255,126,243,107,255,238,141,120,255,199,121,234,255,137,12,59,255,36,220,123,255,148,179,60,254,240,12,29,0,66,0,97,1,36,30,38,255,115,1,93,255,96,103,231,255,197,158,59,1,192,164,240,0,202,202,57,255,24,174,48,0,89,77,155,1,42,76,215,0,244,151,233,0,23,48,81,0,239,127,52,254,227,130,37,255,248,116,93,1,124,132,118,0,173,254,192,1,6,235,83,255,110,175,231,1,251,28,182,0,129,249,93,254,84,184,128,0,76,181,62,0,175,128,186,0,100,53,136,254,109,29,226,0,221,233,58,1,20,99,74,0,0,22,160,0,134,13,21,0,9,52,55,255,17,89,140,0,175,34,59,0,84,165,119,255,224,226,234,255,7,72,166,255,123,115,255,1,18,214,246,0,250,7,71,1,217,220,185,0,212,35,76,255,38,125,175,0,189,97,210,0,114,238,44,255,41,188,169,254,45,186,154,0,81,92,22,0,132,160,193,0,121,208,98,255,13,81,44,255,203,156,82,0,71,58,21,255,208,114,191,254,50,38,147,0,154,216,195,0,101,25,18,0,60,250,215,255,233,132,235,255,103,175,142,1,16,14,92,0,141,31,110,254,238,241,45,255,153,217,239,1,97,168,47,255,249,85,16,1,28,175,62,255,57,254,54,0,222,231,126,0,166,45,117,254,18,189,96,255,228,76,50,0,200,244,94,0,198,152,120,1,68,34,69,255,12,65,160,254,101,19,90,0,167,197,120,255,68,54,185,255,41,218,188,0,113,168,48,0,88,105,189,1,26,82,32,255,185,93,164,1,228,240,237,255,66,182,53,0,171,197,92,255,107,9,233,1,199,120,144,255,78,49,10,255,109,170,105,255,90,4,31,255,28,244,113,255,74,58,11,0,62,220,246,255,121,154,200,254,144,210,178,255,126,57,129,1,43,250,14,255,101,111,28,1,47,86,241,255,61,70,150,255,53,73,5,255,30,26,158,0,209,26,86,0,138,237,74,0,164,95,188,0,142,60,29,254,162,116,248,255,187,175,160,0,151,18,16,0,209,111,65,254,203,134,39,255,88,108,49,255,131,26,71,255,221,27,215,254,104,105,93,255,31,236,31,254,135,0,211,255,143,127,110,1,212,73,229,0,233,67,167,254,195,1,208,255,132,17,221,255,51,217,90,0,67,235,50,255,223,210,143,0,179,53,130,1,233,106,198,0,217,173,220,255,112,229,24,255,175,154,93,254,71,203,246,255,48,66,133,255,3,136,230,255,23,221,113,254,235,111,213,0,170,120,95,254,251,221,2,0,45,130,158,254,105,94,217,255,242,52,180,254,213,68,45,255,104,38,28,0,244,158,76,0,161,200,96,255,207,53,13,255,187,67,148,0,170,54,248,0,119,162,178,255,83,20,11,0,42,42,192,1,146,159,163,255,183,232,111,0,77,229,21,255,71,53,143,0,27,76,34,0,246,136,47,255,219,39,182,255,92,224,201,1,19,142,14,255,69,182,241,255,163,118,245,0,9,109,106,1,170,181,247,255,78,47,238,255,84,210,176,255,213,107,139,0,39,38,11,0,72,21,150,0,72,130,69,0,205,77,155,254,142,133,21], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE); +/* memory initializer */ allocate([71,111,172,254,226,42,59,255,179,0,215,1,33,128,241,0,234,252,13,1,184,79,8,0,110,30,73,255,246,141,189,0,170,207,218,1,74,154,69,255,138,246,49,255,155,32,100,0,125,74,105,255,90,85,61,255,35,229,177,255,62,125,193,255,153,86,188,1,73,120,212,0,209,123,246,254,135,209,38,255,151,58,44,1,92,69,214,255,14,12,88,255,252,153,166,255,253,207,112,255,60,78,83,255,227,124,110,0,180,96,252,255,53,117,33,254,164,220,82,255,41,1,27,255,38,164,166,255,164,99,169,254,61,144,70,255,192,166,18,0,107,250,66,0,197,65,50,0,1,179,18,255,255,104,1,255,43,153,35,255,80,111,168,0,110,175,168,0,41,105,45,255,219,14,205,255,164,233,140,254,43,1,118,0,233,67,195,0,178,82,159,255,138,87,122,255,212,238,90,255,144,35,124,254,25,140,164,0,251,215,44,254,133,70,107,255,101,227,80,254,92,169,55,0,215,42,49,0,114,180,85,255,33,232,27,1,172,213,25,0,62,176,123,254,32,133,24,255,225,191,62,0,93,70,153,0,181,42,104,1,22,191,224,255,200,200,140,255,249,234,37,0,149,57,141,0,195,56,208,255,254,130,70,255,32,173,240,255,29,220,199,0,110,100,115,255,132,229,249,0,228,233,223,255,37,216,209,254,178,177,209,255,183,45,165,254,224,97,114,0,137,97,168,255,225,222,172,0,165,13,49,1,210,235,204,255,252,4,28,254,70,160,151,0,232,190,52,254,83,248,93,255,62,215,77,1,175,175,179,255,160,50,66,0,121,48,208,0,63,169,209,255,0,210,200,0,224,187,44,1,73,162,82,0,9,176,143,255,19,76,193,255,29,59,167,1,24,43,154,0,28,190,190,0,141,188,129,0,232,235,203,255,234,0,109,255,54,65,159,0,60,88,232,255,121,253,150,254,252,233,131,255,198,110,41,1,83,77,71,255,200,22,59,254,106,253,242,255,21,12,207,255,237,66,189,0,90,198,202,1,225,172,127,0,53,22,202,0,56,230,132,0,1,86,183,0,109,190,42,0,243,68,174,1,109,228,154,0,200,177,122,1,35,160,183,255,177,48,85,255,90,218,169,255,248,152,78,0,202,254,110,0,6,52,43,0,142,98,65,255,63,145,22,0,70,106,93,0,232,138,107,1,110,179,61,255,211,129,218,1,242,209,92,0,35,90,217,1,182,143,106,255,116,101,217,255,114,250,221,255,173,204,6,0,60,150,163,0,73,172,44,255,239,110,80,255,237,76,153,254,161,140,249,0,149,232,229,0,133,31,40,255,174,164,119,0,113,51,214,0,129,228,2,254,64,34,243,0,107,227,244,255,174,106,200,255,84,153,70,1,50,35,16,0,250,74,216,254,236,189,66,255,153,249,13,0,230,178,4,255,221,41,238,0,118,227,121,255,94,87,140,254,254,119,92,0,73,239,246,254,117,87,128,0,19,211,145,255,177,46,252,0,229,91,246,1,69,128,247,255,202,77,54,1,8,11,9,255,153,96,166,0,217,214,173,255,134,192,2,1,0,207,0,0,189,174,107,1,140,134,100,0,158,193,243,1,182,102,171,0,235,154,51,0,142,5,123,255,60,168,89,1,217,14,92,255,19,214,5,1,211,167,254,0,44,6,202,254,120,18,236,255,15,113,184,255,184,223,139,0,40,177,119,254,182,123,90,255,176,165,176,0,247,77,194,0,27,234,120,0,231,0,214,255,59,39,30,0,125,99,145,255,150,68,68,1,141,222,248,0,153,123,210,255,110,127,152,255,229,33,214,1,135,221,197,0,137,97,2,0,12,143,204,255,81,41,188,0,115,79,130,255,94,3,132,0,152,175,187,255,124,141,10,255,126,192,179,255,11,103,198,0,149,6,45,0,219,85,187,1,230,18,178,255,72,182,152,0,3,198,184,255,128,112,224,1,97,161,230,0,254,99,38,255,58,159,197,0,151,66,219,0,59,69,143,255,185,112,249,0,119,136,47,255,123,130,132,0,168,71,95,255,113,176,40,1,232,185,173,0,207,93,117,1,68,157,108,255,102,5,147,254,49,97,33,0,89,65,111,254,247,30,163,255,124,217,221,1,102,250,216,0,198,174,75,254,57,55,18,0,227,5,236,1,229,213,173,0,201,109,218,1,49,233,239,0,30,55,158,1,25,178,106,0,155,111,188,1,94,126,140,0,215,31,238,1,77,240,16,0,213,242,25,1,38,71,168,0,205,186,93,254,49,211,140,255,219,0,180,255,134,118,165,0,160,147,134,255,110,186,35,255,198,243,42,0,243,146,119,0,134,235,163,1,4,241,135,255,193,46,193,254,103,180,79,255,225,4,184,254,242,118,130,0,146,135,176,1,234,111,30,0,69,66,213,254,41,96,123,0,121,94,42,255,178,191,195,255,46,130,42,0,117,84,8,255,233,49,214,254,238,122,109,0,6,71,89,1,236,211,123,0,244,13,48,254,119,148,14,0,114,28,86,255,75,237,25,255,145,229,16,254,129,100,53,255,134,150,120,254,168,157,50,0,23,72,104,255,224,49,14,0,255,123,22,255,151,185,151,255,170,80,184,1,134,182,20,0,41,100,101,1,153,33,16,0,76,154,111,1,86,206,234,255,192,160,164,254,165,123,93,255,1,216,164,254,67,17,175,255,169,11,59,255,158,41,61,255,73,188,14,255,195,6,137,255,22,147,29,255,20,103,3,255,246,130,227,255,122,40,128,0,226,47,24,254,35,36,32,0,152,186,183,255,69,202,20,0,195,133,195,0,222,51,247,0,169,171,94,1,183,0,160,255,64,205,18,1,156,83,15,255,197,58,249,254,251,89,110,255,50,10,88,254,51,43,216,0,98,242,198,1,245,151,113,0,171,236,194,1,197,31,199,255,229,81,38,1,41,59,20,0,253,104,230,0,152,93,14,255,246,242,146,254,214,169,240,255,240,102,108,254,160,167,236,0,154,218,188,0,150,233,202,255,27,19,250,1,2,71,133,255,175,12,63,1,145,183,198,0,104,120,115,255,130,251,247,0,17,212,167,255,62,123,132,255,247,100,189,0,155,223,152,0,143,197,33,0,155,59,44,255,150,93,240,1,127,3,87,255,95,71,207,1,167,85,1,255,188,152,116,255,10,23,23,0,137,195,93,1,54,98,97,0,240,0,168,255,148,188,127,0,134,107,151,0,76,253,171,0,90,132,192,0,146,22,54,0,224,66,54,254,230,186,229,255,39,182,196,0,148,251,130,255,65,131,108,254,128,1,160,0,169,49,167,254,199,254,148,255,251,6,131,0,187,254,129,255,85,82,62,0,178,23,58,255,254,132,5,0,164,213,39,0,134,252,146,254,37,53,81,255,155,134,82,0,205,167,238,255,94,45,180,255,132,40,161,0,254,111,112,1,54,75,217,0,179,230,221,1,235,94,191,255,23,243,48,1,202,145,203,255,39,118,42,255,117,141,253,0,254,0,222,0,43,251,50,0,54,169,234,1,80,68,208,0,148,203,243,254,145,7,135,0,6,254,0,0,252,185,127,0,98,8,129,255,38,35,72,255,211,36,220,1,40,26,89,0,168,64,197,254,3,222,239,255,2,83,215,254,180,159,105,0,58,115,194,0,186,116,106,255,229,247,219,255,129,118,193,0,202,174,183,1,166,161,72,0,201,107,147,254,237,136,74,0,233,230,106,1,105,111,168,0,64,224,30,1,1,229,3,0,102,151,175,255,194,238,228,255,254,250,212,0,187,237,121,0,67,251,96,1,197,30,11,0,183,95,204,0,205,89,138,0,64,221,37,1,255,223,30,255,178,48,211,255,241,200,90,255,167,209,96,255,57,130,221,0,46,114,200,255,61,184,66,0,55,182,24,254,110,182,33,0,171,190,232,255,114,94,31,0,18,221,8,0,47,231,254,0,255,112,83,0,118,15,215,255,173,25,40,254,192,193,31,255,238,21,146,255,171,193,118,255,101,234,53,254,131,212,112,0,89,192,107,1,8,208,27,0,181,217,15,255,231,149,232,0,140,236,126,0,144,9,199,255,12,79,181,254,147,182,202,255,19,109,182,255,49,212,225,0,74,163,203,0,175,233,148,0,26,112,51,0,193,193,9,255,15,135,249,0,150,227,130,0,204,0,219,1,24,242,205,0,238,208,117,255,22,244,112,0,26,229,34,0,37,80,188,255,38,45,206,254,240,90,225,255,29,3,47,255,42,224,76,0,186,243,167,0,32,132,15,255,5,51,125,0,139,135,24,0,6,241,219,0,172,229,133,255,246,214,50,0,231,11,207,255,191,126,83,1,180,163,170,255,245,56,24,1,178,164,211,255,3,16,202,1,98,57,118,255,141,131,89,254,33,51,24,0,243,149,91,255,253,52,14,0,35,169,67,254,49,30,88,255,179,27,36,255,165,140,183,0,58,189,151,0,88,31,0,0,75,169,66,0,66,101,199,255,24,216,199,1,121,196,26,255,14,79,203,254,240,226,81,255,94,28,10,255,83,193,240,255,204,193,131,255,94,15,86,0,218,40,157,0,51,193,209,0,0,242,177,0,102,185,247,0,158,109,116,0,38,135,91,0,223,175,149,0,220,66,1,255,86,60,232,0,25,96,37,255,225,122,162,1,215,187,168,255,158,157,46,0,56,171,162,0,232,240,101,1,122,22,9,0,51,9,21,255,53,25,238,255,217,30,232,254,125,169,148,0,13,232,102,0,148,9,37,0,165,97,141,1,228,131,41,0,222,15,243,255,254,18,17,0,6,60,237,1,106,3,113,0,59,132,189,0,92,112,30,0,105,208,213,0,48,84,179,255,187,121,231,254,27,216,109,255,162,221,107,254,73,239,195,255,250,31,57,255,149,135,89,255,185,23,115,1,3,163,157,255,18,112,250,0,25,57,187,255,161,96,164,0,47,16,243,0,12,141,251,254,67,234,184,255,41,18,161,0,175,6,96,255,160,172,52,254,24,176,183,255,198,193,85,1,124,121,137,255,151,50,114,255,220,203,60,255,207,239,5,1,0,38,107,255,55,238,94,254,70,152,94,0,213,220,77,1,120,17,69,255,85,164,190,255,203,234,81,0,38,49,37,254,61,144,124,0,137,78,49,254,168,247,48,0,95,164,252,0,105,169,135,0,253,228,134,0,64,166,75,0,81,73,20,255,207,210,10,0,234,106,150,255,94,34,90,255,254,159,57,254,220,133,99,0,139,147,180,254,24,23,185,0,41,57,30,255,189,97,76,0,65,187,223,255,224,172,37,255,34,62,95,1,231,144,240,0,77,106,126,254,64,152,91,0,29,98,155,0,226,251,53,255,234,211,5,255,144,203,222,255,164,176,221,254,5,231,24,0,179,122,205,0,36,1,134,255,125,70,151,254,97,228,252,0,172,129,23,254,48,90,209,255,150,224,82,1,84,134,30,0,241,196,46,0,103,113,234,255,46,101,121,254,40,124,250,255,135,45,242,254,9,249,168,255,140,108,131,255,143,163,171,0,50,173,199,255,88,222,142,255,200,95,158,0,142,192,163,255,7,117,135,0,111,124,22,0,236,12,65,254,68,38,65,255,227,174,254,0,244,245,38,0,240,50,208,255,161,63,250,0,60,209,239,0,122,35,19,0,14,33,230,254,2,159,113,0,106,20,127,255,228,205,96,0,137,210,174,254,180,212,144,255,89,98,154,1,34,88,139,0,167,162,112,1,65,110,197,0,241,37,169,0,66,56,131,255,10,201,83,254,133,253,187,255,177,112,45,254,196,251,0,0,196,250,151,255,238,232,214,255,150,209,205,0,28,240,118,0,71,76,83,1,236,99,91,0,42,250,131,1,96,18,64,255,118,222,35,0,113,214,203,255,122,119,184,255,66,19,36,0,204,64,249,0,146,89,139,0,134,62,135,1,104,233,101,0,188,84,26,0,49,249,129,0,208,214,75,255,207,130,77,255,115,175,235,0,171,2,137,255,175,145,186,1,55,245,135,255,154,86,181,1,100,58,246,255,109,199,60,255,82,204,134,255,215,49,230,1,140,229,192,255,222,193,251,255,81,136,15,255,179,149,162,255,23,39,29,255,7,95,75,254,191,81,222,0,241,81,90,255,107,49,201,255,244,211,157,0,222,140,149,255,65,219,56,254,189,246,90,255,178,59,157,1,48,219,52,0,98,34,215,0,28,17,187,255,175,169,24,0,92,79,161,255,236,200,194,1,147,143,234,0,229,225,7,1,197,168,14,0,235,51,53,1,253,120,174,0,197,6,168,255,202,117,171,0,163,21,206,0,114,85,90,255,15,41,10,255,194,19,99,0,65,55,216,254,162,146,116,0,50,206,212,255,64,146,29,255,158,158,131,1,100,165,130,255,172,23,129,255,125,53,9,255,15,193,18,1,26,49,11,255,181,174,201,1,135,201,14,255,100,19,149,0,219,98,79,0,42,99,143,254,96,0,48,255,197,249,83,254,104,149,79,255,235,110,136,254,82,128,44,255,65,41,36,254,88,211,10,0,187,121,187,0,98,134,199,0,171,188,179,254,210,11,238,255,66,123,130,254,52,234,61,0,48,113,23,254,6,86,120,255,119,178,245,0,87,129,201,0,242,141,209,0,202,114,85,0,148,22,161,0,103,195,48,0,25,49,171,255,138,67,130,0,182,73,122,254,148,24,130,0,211,229,154,0,32,155,158,0,84,105,61,0,177,194,9,255,166,89,86,1,54,83,187,0,249,40,117,255,109,3,215,255,53,146,44,1,63,47,179,0,194,216,3,254,14,84,136,0,136,177,13,255,72,243,186,255,117,17,125,255,211,58,211,255,93,79,223,0,90,88,245,255,139,209,111,255,70,222,47,0,10,246,79,255,198,217,178,0,227,225,11,1,78,126,179,255,62,43,126,0,103,148,35,0,129,8,165,254,245,240,148,0,61,51,142,0,81,208,134,0,15,137,115,255,211,119,236,255,159,245,248,255,2,134,136,255,230,139,58,1,160,164,254,0,114,85,141,255,49,166,182,255,144,70,84,1,85,182,7,0,46,53,93,0,9,166,161,255,55,162,178,255,45,184,188,0,146,28,44,254,169,90,49,0,120,178,241,1,14,123,127,255,7,241,199,1,189,66,50,255,198,143,101,254,189,243,135,255,141,24,24,254,75,97,87,0,118,251,154,1,237,54,156,0,171,146,207,255,131,196,246,255,136,64,113,1,151,232,57,0,240,218,115,0,49,61,27,255,64,129,73,1,252,169,27,255,40,132,10,1,90,201,193,255,252,121,240,1,186,206,41,0,43,198,97,0,145,100,183,0,204,216,80,254,172,150,65,0,249,229,196,254,104,123,73,255,77,104,96,254,130,180,8,0,104,123,57,0,220,202,229,255,102,249,211,0,86,14,232,255,182,78,209,0,239,225,164,0,106,13,32,255,120,73,17,255,134,67,233,0,83,254,181,0,183,236,112,1,48,64,131,255,241,216,243,255,65,193,226,0,206,241,100,254,100,134,166,255,237,202,197,0,55,13,81,0,32,124,102,255,40,228,177,0,118,181,31,1,231,160,134,255,119,187,202,0,0,142,60,255,128,38,189,255,166,201,150,0,207,120,26,1,54,184,172,0,12,242,204,254,133,66,230,0,34,38,31,1,184,112,80,0,32,51,165,254,191,243,55,0,58,73,146,254,155,167,205,255,100,104,152,255,197,254,207,255,173,19,247,0,238,10,202,0,239,151,242,0,94,59,39,255,240,29,102,255,10,92,154,255,229,84,219,255,161,129,80,0,208,90,204,1,240,219,174,255,158,102,145,1,53,178,76,255,52,108,168,1,83,222,107,0,211,36,109,0,118,58,56,0,8,29,22,0,237,160,199,0,170,209,157,0,137,71,47,0,143,86,32,0,198,242,2,0,212,48,136,1,92,172,186,0,230,151,105,1,96,191,229,0,138,80,191,254,240,216,130,255,98,43,6,254,168,196,49,0,253,18,91,1,144,73,121,0,61,146,39,1,63,104,24,255,184,165,112,254,126,235,98,0,80,213,98,255,123,60,87,255,82,140,245,1,223,120,173,255,15,198,134,1,206,60,239,0,231,234,92,255,33,238,19,255,165,113,142,1,176,119,38,0,160,43,166,254,239,91,105,0,107,61,194,1,25,4,68,0,15,139,51,0,164,132,106,255,34,116,46,254,168,95,197,0,137,212,23,0,72,156,58,0,137,112,69,254,150,105,154,255,236,201,157,0,23,212,154,255,136,82,227,254,226,59,221,255,95,149,192,0,81,118,52,255,33,43,215,1,14,147,75,255,89,156,121,254,14,18,79,0,147,208,139,1,151,218,62,255,156,88,8,1,210,184,98,255,20,175,123,255,102,83,229,0,220,65,116,1,150,250,4,255,92,142,220,255,34,247,66,255,204,225,179,254,151,81,151,0,71,40,236,255,138,63,62,0,6,79,240,255,183,185,181,0,118,50,27,0,63,227,192,0,123,99,58,1,50,224,155,255,17,225,223,254,220,224,77,255,14,44,123,1,141,128,175,0,248,212,200,0,150,59,183,255,147,97,29,0,150,204,181,0,253,37,71,0,145,85,119,0,154,200,186,0,2,128,249,255,83,24,124,0,14,87,143,0,168,51,245,1,124,151,231,255,208,240,197,1,124,190,185,0,48,58,246,0,20,233,232,0,125,18,98,255,13,254,31,255,245,177,130,255,108,142,35,0,171,125,242,254,140,12,34,255,165,161,162,0,206,205,101,0,247,25,34,1,100,145,57,0,39,70,57,0,118,204,203,255,242,0,162,0,165,244,30,0,198,116,226,0,128,111,153,255,140,54,182,1,60,122,15,255,155,58,57,1,54,50,198,0,171,211,29,255,107,138,167,255,173,107,199,255,109,161,193,0,89,72,242,255,206,115,89,255,250,254,142,254,177,202,94,255,81,89,50,0,7,105,66,255,25,254,255,254,203,64,23,255,79,222,108,255,39,249,75,0,241,124,50,0,239,152,133,0,221,241,105,0,147,151,98,0,213,161,121,254,242,49,137,0,233,37,249,254,42,183,27,0,184,119,230,255,217,32,163,255,208,251,228,1,137,62,131,255,79,64,9,254,94,48,113,0,17,138,50,254,193,255,22,0,247,18,197,1,67,55,104,0,16,205,95,255,48,37,66,0,55,156,63,1,64,82,74,255,200,53,71,254,239,67,125,0,26,224,222,0,223,137,93,255,30,224,202,255,9,220,132,0,198,38,235,1,102,141,86,0,60,43,81,1,136,28,26,0,233,36,8,254,207,242,148,0,164,162,63,0,51,46,224,255,114,48,79,255,9,175,226,0,222,3,193,255,47,160,232,255,255,93,105,254,14,42,230,0,26,138,82,1,208,43,244,0,27,39,38,255,98,208,127,255,64,149,182,255,5,250,209,0,187,60,28,254,49,25,218,255,169,116,205,255,119,18,120,0,156,116,147,255,132,53,109,255,13,10,202,0,110,83,167,0,157,219,137,255,6,3,130,255,50,167,30,255,60,159,47,255,129,128,157,254,94,3,189,0,3,166,68,0,83,223,215,0,150,90,194,1,15,168,65,0,227,83,51,255,205,171,66,255,54,187,60,1,152,102,45,255,119,154,225,0,240,247,136,0,100,197,178,255,139,71,223,255,204,82,16,1,41,206,42,255,156,192,221,255,216,123,244,255,218,218,185,255,187,186,239,255,252,172,160,255,195,52,22,0,144,174,181,254,187,100,115,255,211,78,176,255,27,7,193,0,147,213,104,255,90,201,10,255,80,123,66,1,22,33,186,0,1,7,99,254,30,206,10,0,229,234,5,0,53,30,210,0,138,8,220,254,71,55,167,0,72,225,86,1,118,190,188,0,254,193,101,1,171,249,172,255,94,158,183,254,93,2,108,255,176,93,76,255,73,99,79,255,74,64,129,254,246,46,65,0,99,241,127,254,246,151,102,255,44,53,208,254,59,102,234,0,154,175,164,255,88,242,32,0,111,38,1,0,255,182,190,255,115,176,15,254,169,60,129,0,122,237,241,0,90,76,63,0,62,74,120,255,122,195,110,0,119,4,178,0,222,242,210,0,130,33,46,254,156,40,41,0,167,146,112,1,49,163,111,255,121,176,235,0,76,207,14,255,3,25,198,1,41,235,213,0,85,36,214,1,49,92,109,255,200,24,30,254,168,236,195,0,145,39,124,1,236,195,149,0,90,36,184,255,67,85,170,255,38,35,26,254,131,124,68,255,239,155,35,255,54,201,164,0,196,22,117,255,49,15,205,0,24,224,29,1,126,113,144,0,117,21,182,0,203,159,141,0,223,135,77,0,176,230,176,255,190,229,215,255,99,37,181,255,51,21,138,255,25,189,89,255,49,48,165,254,152,45,247,0,170,108,222,0,80,202,5,0,27,69,103,254,204,22,129,255,180,252,62,254,210,1,91,255,146,110,254,255,219,162,28,0,223,252,213,1,59,8,33,0,206,16,244,0,129,211,48,0,107,160,208,0,112,59,209,0,109,77,216,254,34,21,185,255,246,99,56,255,179,139,19,255,185,29,50,255,84,89,19,0,74,250,98,255,225,42,200,255,192,217,205,255,210,16,167,0,99,132,95,1,43,230,57,0,254,11,203,255,99,188,63,255,119,193,251,254,80,105,54,0,232,181,189,1,183,69,112,255,208,171,165,255,47,109,180,255,123,83,165,0,146,162,52,255,154,11,4,255,151,227,90,255,146,137,97,254,61,233,41,255,94,42,55,255,108,164,236,0,152,68,254,0,10,140,131,255,10,106,79,254,243,158,137,0,67,178,66,254,177,123,198,255,15,62,34,0,197,88,42,255,149,95,177,255,152,0,198,255,149,254,113,255,225,90,163,255,125,217,247,0,18,17,224,0,128,66,120,254,192,25,9,255,50,221,205,0,49,212,70,0,233,255,164,0,2,209,9,0,221,52,219,254,172,224,244,255,94,56,206,1,242,179,2,255,31,91,164,1,230,46,138,255,189,230,220,0,57,47,61,255,111,11,157,0,177,91,152,0,28,230,98,0,97,87,126,0,198,89,145,255,167,79,107,0,249,77,160,1,29,233,230,255,150,21,86,254,60,11,193,0,151,37,36,254,185,150,243,255,228,212,83,1,172,151,180,0,201,169,155,0,244,60,234,0,142,235,4,1,67,218,60,0,192,113,75,1,116,243,207,255,65,172,155,0,81,30,156,255,80,72,33,254,18,231,109,255,142,107,21,254,125,26,132,255,176,16,59,255,150,201,58,0,206,169,201,0,208,121,226,0,40,172,14,255,150,61,94,255,56,57,156,255,141,60,145,255,45,108,149,255,238,145,155,255,209,85,31,254,192,12,210,0,99,98,93,254,152,16,151,0,225,185,220,0,141,235,44,255,160,172,21,254,71,26,31,255,13,64,93,254,28,56,198,0,177,62,248,1,182,8,241,0,166,101,148,255,78,81,133,255,129,222,215,1,188,169,129,255,232,7,97,0,49,112,60,255,217,229,251,0,119,108,138,0,39,19,123,254,131,49,235,0,132,84,145,0,130,230,148,255,25,74,187,0,5,245,54,255,185,219,241,1,18,194,228,255,241,202,102,0,105,113,202,0,155,235,79,0,21,9,178,255,156,1,239,0,200,148,61,0,115,247,210,255,49,221,135,0,58,189,8,1,35,46,9,0,81,65,5,255,52,158,185,255,125,116,46,255,74,140,13,255,210,92,172,254,147,23,71,0,217,224,253,254,115,108,180,255,145,58,48,254,219,177,24,255,156,255,60,1,154,147,242,0,253,134,87,0,53,75,229,0,48,195,222,255,31,175,50,255,156,210,120,255,208,35,222,255,18,248,179,1,2,10,101,255,157,194,248,255,158,204,101,255,104,254,197,255,79,62,4,0,178,172,101,1,96,146,251,255,65,10,156,0,2,137,165,255,116,4,231,0,242,215,1,0,19,35,29,255,43,161,79,0,59,149,246,1,251,66,176,0,200,33,3,255,80,110,142,255,195,161,17,1,228,56,66,255,123,47,145,254,132,4,164,0,67,174,172,0,25,253,114,0,87,97,87,1,250,220,84,0,96,91,200,255,37,125,59,0,19,65,118,0,161,52,241,255,237,172,6,255,176,191,255,255,1,65,130,254,223,190,230,0,101,253,231,255,146,35,109,0,250,29,77,1,49,0,19,0,123,90,155,1,22,86,32,255,218,213,65,0,111,93,127,0,60,93,169,255,8,127,182,0,17,186,14,254,253,137,246,255,213,25,48,254,76,238,0,255,248,92,70,255,99,224,139,0,184,9,255,1,7,164,208,0,205,131,198,1,87,214,199,0,130,214,95,0,221,149,222,0,23,38,171,254,197,110,213,0,43,115,140,254,215,177,118,0,96,52,66,1,117,158,237,0,14,64,182,255,46,63,174,255,158,95,190,255,225,205,177,255,43,5,142,255,172,99,212,255,244,187,147,0,29,51,153,255,228,116,24,254,30,101,207,0,19,246,150,255,134,231,5,0,125,134,226,1,77,65,98,0,236,130,33,255,5,110,62,0,69,108,127,255,7,113,22,0,145,20,83,254,194,161,231,255,131,181,60,0,217,209,177,255,229,148,212,254,3,131,184,0,117,177,187,1,28,14,31,255,176,102,80,0,50,84,151,255,125,31,54,255,21,157,133,255,19,179,139,1,224,232,26,0,34,117,170,255,167,252,171,255,73,141,206,254,129,250,35,0,72,79,236,1,220,229,20,255,41,202,173,255,99,76,238,255,198,22,224,255,108,198,195,255,36,141,96,1,236,158,59,255,106,100,87,0,110,226,2,0,227,234,222,0,154,93,119,255,74,112,164,255,67,91,2,255,21,145,33,255,102,214,137,255,175,230,103,254,163,246,166,0,93,247,116,254,167,224,28,255,220,2,57,1,171,206,84,0,123,228,17,255,27,120,119,0,119,11,147,1,180,47,225,255,104,200,185,254,165,2,114,0,77,78,212,0,45,154,177,255,24,196,121,254,82,157,182,0,90,16,190,1,12,147,197,0,95,239,152,255,11,235,71,0,86,146,119,255,172,134,214,0,60,131,196,0,161,225,129,0,31,130,120,254,95,200,51,0,105,231,210,255,58,9,148,255,43,168,221,255,124,237,142,0,198,211,50,254,46,245,103,0,164,248,84,0,152,70,208,255,180,117,177,0,70,79,185,0,243,74,32,0,149,156,207,0,197,196,161,1,245,53,239,0,15,93,246,254,139,240,49,255,196,88,36,255,162,38,123,0,128,200,157,1,174,76,103,255,173,169,34,254,216,1,171,255,114,51,17,0,136,228,194,0,110,150,56,254,106,246,159,0,19,184,79,255,150,77,240,255,155,80,162,0,0,53,169,255,29,151,86,0,68,94,16,0,92,7,110,254,98,117,149,255,249,77,230,255,253,10,140,0,214,124,92,254,35,118,235,0,89,48,57,1,22,53,166,0,184,144,61,255,179,255,194,0,214,248,61,254,59,110,246,0,121,21,81,254,166,3,228,0,106,64,26,255,69,232,134,255,242,220,53,254,46,220,85,0,113,149,247,255,97,179,103,255,190,127,11,0,135,209,182,0,95,52,129,1,170,144,206,255,122,200,204,255,168,100,146,0,60,144,149,254,70,60,40,0,122,52,177,255,246,211,101,255,174,237,8,0,7,51,120,0,19,31,173,0,126,239,156,255,143,189,203,0,196,128,88,255,233,133,226,255,30,125,173,255,201,108,50,0,123,100,59,255,254,163,3,1,221,148,181,255,214,136,57,254,222,180,137,255,207,88,54,255,28,33,251,255,67,214,52,1,210,208,100,0,81,170,94,0,145,40,53,0,224,111,231,254,35,28,244,255,226,199,195,254,238,17,230,0,217,217,164,254,169,157,221,0,218,46,162,1,199,207,163,255,108,115,162,1,14,96,187,255,118,60,76,0,184,159,152,0,209,231,71,254,42,164,186,255,186,153,51,254,221,171,182,255,162,142,173,0,235,47,193,0,7,139,16,1,95,164,64,255,16,221,166,0,219,197,16,0,132,29,44,255,100,69,117,255,60,235,88,254,40,81,173,0,71,190,61,255,187,88,157,0,231,11,23,0,237,117,164,0,225,168,223,255,154,114,116,255,163,152,242,1,24,32,170,0,125,98,113,254,168,19,76,0,17,157,220,254,155,52,5,0,19,111,161,255,71,90,252,255,173,110,240,0,10,198,121,255,253,255,240,255,66,123,210,0,221,194,215,254,121,163,17,255,225,7,99,0,190,49,182,0,115,9,133,1,232,26,138,255,213,68,132,0,44,119,122,255,179,98,51,0,149,90,106,0,71,50,230,255,10,153,118,255,177,70,25,0,165,87,205,0,55,138,234,0,238,30,97,0,113,155,207,0,98,153,127,0,34,107,219,254,117,114,172,255,76,180,255,254,242,57,179,255,221,34,172,254,56,162,49,255,83,3,255,255,113,221,189,255,188,25,228,254,16,88,89,255,71,28,198,254,22,17,149,255,243,121,254,255,107,202,99,255,9,206,14,1,220,47,153,0,107,137,39,1,97,49,194,255,149,51,197,254,186,58,11,255,107,43,232,1,200,6,14,255,181,133,65,254,221,228,171,255,123,62,231,1,227,234,179,255,34,189,212,254,244,187,249,0,190,13,80,1,130,89,1,0,223,133,173,0,9,222,198,255,66,127,74,0,167,216,93,255,155,168,198,1,66,145,0,0,68,102,46,1,172,90,154,0,216,128,75,255,160,40,51,0,158,17,27,1,124,240,49,0,236,202,176,255,151,124,192,255,38,193,190,0,95,182,61,0,163,147,124,255,255,165,51,255,28,40,17,254,215,96,78,0,86,145,218,254,31,36,202,255,86,9,5,0,111,41,200,255,237,108,97,0,57,62,44,0,117,184,15,1,45,241,116,0,152,1,220,255,157,165,188,0,250,15,131,1,60,44,125,255,65,220,251,255,75,50,184,0,53,90,128,255,231,80,194,255,136,129,127,1,21,18,187,255,45,58,161,255,71,147,34,0,174,249,11,254,35,141,29,0,239,68,177,255,115,110,58,0,238,190,177,1,87,245,166,255,190,49,247,255,146,83,184,255,173,14,39,255,146,215,104,0,142,223,120,0,149,200,155,255,212,207,145,1,16,181,217,0,173,32,87,255,255,35,181,0,119,223,161,1,200,223,94,255,70,6,186,255,192,67,85,255,50,169,152,0,144,26,123,255,56,243,179,254,20,68,136,0,39,140,188,254,253,208,5,255,200,115,135,1,43,172,229,255,156,104,187,0,151,251,167,0,52,135,23,0,151,153,72,0,147,197,107,254,148,158,5,255,238,143,206,0,126,153,137,255,88,152,197,254,7,68,167,0,252,159,165,255,239,78,54,255,24,63,55,255,38,222,94,0,237,183,12,255,206,204,210,0,19,39,246,254,30,74,231,0,135,108,29,1,179,115,0,0,117,118,116,1,132,6,252,255,145,129,161,1,105,67,141,0,82,37,226,255,238,226,228,255,204,214,129,254,162,123,100,255,185,121,234,0,45,108,231,0,66,8,56,255,132,136,128,0,172,224,66,254,175,157,188,0,230,223,226,254,242,219,69,0,184,14,119,1,82,162,56,0,114,123,20,0,162,103,85,255,49,239,99,254,156,135,215,0,111,255,167,254,39,196,214,0,144,38,79,1,249,168,125,0,155,97,156,255,23,52,219,255,150,22,144,0,44,149,165,255,40,127,183,0,196,77,233,255,118,129,210,255,170,135,230,255,214,119,198,0,233,240,35,0,253,52,7,255,117,102,48,255,21,204,154,255,179,136,177,255,23,2,3,1,149,130,89,255,252,17,159,1,70,60,26,0,144,107,17,0,180,190,60,255,56,182,59,255,110,71,54,255,198,18,129,255,149,224,87,255,223,21,152,255,138,22,182,255,250,156,205,0,236,45,208,255,79,148,242,1,101,70,209,0,103,78,174,0,101,144,172,255,152,136,237,1,191,194,136,0,113,80,125,1,152,4,141,0,155,150,53,255,196,116,245,0,239,114,73,254,19,82,17,255,124,125,234,255,40,52,191,0,42,210,158,255,155,132,165,0,178,5,42,1,64,92,40,255,36,85,77,255,178,228,118,0,137,66,96,254,115,226,66,0,110,240,69,254,151,111,80,0,167,174,236,255,227,108,107,255,188,242,65,255,183,81,255,0,57,206,181,255,47,34,181,255,213,240,158,1,71,75,95,0,156,40,24,255,102,210,81,0,171,199,228,255,154,34,41,0,227,175,75,0,21,239,195,0,138,229,95,1,76,192,49,0,117,123,87,1,227,225,130,0,125,62,63,255,2,198,171,0,254,36,13,254,145,186,206,0,148,255,244,255,35,0,166,0,30,150,219,1,92,228,212,0,92,198,60,254,62,133,200,255,201,41,59,0,125,238,109,255,180,163,238,1,140,122,82,0,9,22,88,255,197,157,47,255,153,94,57,0,88,30,182,0,84,161,85,0,178,146,124,0,166,166,7,255,21,208,223,0,156,182,242,0,155,121,185,0,83,156,174,254,154,16,118,255,186,83,232,1,223,58,121,255,29,23,88,0,35,125,127,255,170,5,149,254,164,12,130,255,155,196,29,0,161,96,136,0,7,35,29,1,162,37,251,0,3,46,242,255,0,217,188,0,57,174,226,1,206,233,2,0,57,187,136,254,123,189,9,255,201,117,127,255,186,36,204,0,231,25,216,0,80,78,105,0,19,134,129,255,148,203,68,0,141,81,125,254,248,165,200,255,214,144,135,0,151,55,166,255,38,235,91,0,21,46,154,0,223,254,150,255,35,153,180,255,125,176,29,1,43,98,30,255,216,122,230,255,233,160,12,0,57,185,12,254,240,113,7,255,5,9,16,254,26,91,108,0,109,198,203,0,8,147,40,0,129,134,228,255,124,186,40,255,114,98,132,254,166,132,23,0,99,69,44,0,9,242,238,255,184,53,59,0,132,129,102,255,52,32,243,254,147,223,200,255,123,83,179,254,135,144,201,255,141,37,56,1,151,60,227,255,90,73,156,1,203,172,187,0,80,151,47,255,94,137,231,255,36,191,59,255,225,209,181,255,74,215,213,254,6,118,179,255,153,54,193,1,50,0,231,0,104,157,72,1,140,227,154,255,182,226,16,254,96,225,92,255,115,20,170,254,6,250,78,0,248,75,173,255,53,89,6,255,0,180,118,0,72,173,1,0,64,8,206,1,174,133,223,0,185,62,133,255,214,11,98,0,197,31,208,0,171,167,244,255,22,231,181,1,150,218,185,0,247,169,97,1,165,139,247,255,47,120,149,1,103,248,51,0,60,69,28,254,25,179,196,0,124,7,218,254,58,107,81,0,184,233,156,255,252,74,36,0,118,188,67,0,141,95,53,255,222,94,165,254,46,61,53,0,206,59,115,255,47,236,250,255,74,5,32,1,129,154,238,255,106,32,226,0,121,187,61,255,3,166,241,254,67,170,172,255,29,216,178,255,23,201,252,0,253,110,243,0,200,125,57,0,109,192,96,255,52,115,238,0,38,121,243,255,201,56,33,0,194,118,130,0,75,96,25,255,170,30,230,254,39,63,253,0,36,45,250,255,251,1,239,0,160,212,92,1,45,209,237,0,243,33,87,254,237,84,201,255,212,18,157,254,212,99,127,255,217,98,16,254,139,172,239,0,168,201,130,255,143,193,169,255,238,151,193,1,215,104,41,0,239,61,165,254,2,3,242,0,22,203,177,254,177,204,22,0,149,129,213,254,31,11,41,255,0,159,121,254,160,25,114,255,162,80,200,0,157,151,11,0,154,134,78,1,216,54,252,0,48,103,133,0,105,220,197,0,253,168,77,254,53,179,23,0,24,121,240,1,255,46,96,255,107,60,135,254,98,205,249,255,63,249,119,255,120,59,211,255,114,180,55,254,91,85,237,0,149,212,77,1,56,73,49,0,86,198,150,0,93,209,160,0,69,205,182,255,244,90,43,0,20,36,176,0,122,116,221,0,51,167,39,1,231,1,63,255,13,197,134,0,3,209,34,255,135,59,202,0,167,100,78,0,47,223,76,0,185,60,62,0,178,166,123,1,132,12,161,255,61,174,43,0,195,69,144,0,127,47,191,1,34,44,78,0,57,234,52,1,255,22,40,255,246,94,146,0,83,228,128,0,60,78,224,255,0,96,210,255,153,175,236,0,159,21,73,0,180,115,196,254,131,225,106,0,255,167,134,0,159,8,112,255,120,68,194,255,176,196,198,255,118,48,168,255,93,169,1,0,112,200,102,1,74,24,254,0,19,141,4,254,142,62,63,0,131,179,187,255,77,156,155,255,119,86,164,0,170,208,146,255,208,133,154,255,148,155,58,255,162,120,232,254,252,213,155,0,241,13,42,0,94,50,131,0,179,170,112,0,140,83,151,255,55,119,84,1,140,35,239,255,153,45,67,1,236,175,39,0,54,151,103,255,158,42,65,255,196,239,135,254,86,53,203,0,149,97,47,254,216,35,17,255,70,3,70,1,103,36,90,255,40,26,173,0,184,48,13,0,163,219,217,255,81,6,1,255,221,170,108,254,233,208,93,0,100,201,249,254,86,36,35,255,209,154,30,1,227,201,251,255,2,189,167,254,100,57,3,0,13,128,41,0,197,100,75,0,150,204,235,255,145,174,59,0,120,248,149,255,85,55,225,0,114,210,53,254,199,204,119,0,14,247,74,1,63,251,129,0,67,104,151,1,135,130,80,0,79,89,55,255,117,230,157,255,25,96,143,0,213,145,5,0,69,241,120,1,149,243,95,255,114,42,20,0,131,72,2,0,154,53,20,255,73,62,109,0,196,102,152,0,41,12,204,255,122,38,11,1,250,10,145,0,207,125,148,0,246,244,222,255,41,32,85,1,112,213,126,0,162,249,86,1,71,198,127,255,81,9,21,1,98,39,4,255,204,71,45,1,75,111,137,0,234,59,231,0,32,48,95,255,204,31,114,1,29,196,181,255,51,241,167,254,93,109,142,0,104,144,45,0,235,12,181,255,52,112,164,0,76,254,202,255,174,14,162,0,61,235,147,255,43,64,185,254,233,125,217,0,243,88,167,254,74,49,8,0,156,204,66,0,124,214,123,0,38,221,118,1,146,112,236,0,114,98,177,0,151,89,199,0,87,197,112,0,185,149,161,0,44,96,165,0,248,179,20,255,188,219,216,254,40,62,13,0,243,142,141,0,229,227,206,255,172,202,35,255,117,176,225,255,82,110,38,1,42,245,14,255,20,83,97,0,49,171,10,0,242,119,120,0,25,232,61,0,212,240,147,255,4,115,56,255,145,17,239,254,202,17,251,255,249,18,245,255,99,117,239,0,184,4,179,255,246,237,51,255,37,239,137,255,166,112,166,255,81,188,33,255,185,250,142,255,54,187,173,0,208,112,201,0,246,43,228,1,104,184,88,255,212,52,196,255,51,117,108,255,254,117,155,0,46,91,15,255,87,14,144,255,87,227,204,0,83,26,83,1,159,76,227,0,159,27,213,1,24,151,108,0,117,144,179,254,137,209,82,0,38,159,10,0,115,133,201,0,223,182,156,1,110,196,93,255,57,60,233,0,5,167,105,255,154,197,164,0,96,34,186,255,147,133,37,1,220,99,190,0,1,167,84,255,20,145,171,0,194,197,251,254,95,78,133,255,252,248,243,255,225,93,131,255,187,134,196,255,216,153,170,0,20,118,158,254,140,1,118,0,86,158,15,1,45,211,41,255,147,1,100,254,113,116,76,255,211,127,108,1,103,15,48,0,193,16,102,1,69,51,95,255,107,128,157,0,137,171,233,0,90,124,144,1,106,161,182,0,175,76,236,1,200,141,172,255,163,58,104,0,233,180,52,255,240,253,14,255,162,113,254,255,38,239,138,254,52,46,166,0,241,101,33,254,131,186,156,0,111,208,62,255,124,94,160,255,31,172,254,0,112,174,56,255,188,99,27,255,67,138,251,0,125,58,128,1,156,152,174,255,178,12,247,255,252,84,158,0,82,197,14,254,172,200,83,255,37,39,46,1,106,207,167,0,24,189,34,0,131,178,144,0,206,213,4,0,161,226,210,0,72,51,105,255,97,45,187,255,78,184,223,255,176,29,251,0,79,160,86,255,116,37,178,0,82,77,213,1,82,84,141,255,226,101,212,1,175,88,199,255,245,94,247,1,172,118,109,255,166,185,190,0,131,181,120,0,87,254,93,255,134,240,73,255,32,245,143,255,139,162,103,255,179,98,18,254,217,204,112,0,147,223,120,255,53,10,243,0,166,140,150,0,125,80,200,255,14,109,219,255,91,218,1,255,252,252,47,254,109,156,116,255,115,49,127,1,204,87,211,255,148,202,217,255,26,85,249,255,14,245,134,1,76,89,169,255,242,45,230,0,59,98,172,255,114,73,132,254,78,155,49,255,158,126,84,0,49,175,43,255,16,182,84,255,157,103,35,0,104,193,109,255,67,221,154,0,201,172,1,254,8,162,88,0,165,1,29,255,125,155,229,255,30,154,220,1,103,239,92,0,220,1,109,255,202,198,1,0,94,2,142,1,36,54,44,0,235,226,158,255,170,251,214,255,185,77,9,0,97,74,242,0,219,163,149,255,240,35,118,255,223,114,88,254,192,199,3,0,106,37,24,255,201,161,118,255,97,89,99,1,224,58,103,255,101,199,147,254,222,60,99,0,234,25,59,1,52,135,27,0,102,3,91,254,168,216,235,0,229,232,136,0,104,60,129,0,46,168,238,0,39,191,67,0,75,163,47,0,143,97,98,255,56,216,168,1,168,233,252,255,35,111,22,255,92,84,43,0,26,200,87,1,91,253,152,0,202,56,70,0,142,8,77,0,80,10,175,1,252,199,76,0,22,110,82,255,129,1,194,0,11,128,61,1,87,14,145,255,253,222,190,1,15,72,174,0,85,163,86,254,58,99,44,255,45,24,188,254,26,205,15,0,19,229,210,254,248,67,195,0,99,71,184,0,154,199,37,255,151,243,121,255,38,51,75,255,201,85,130,254,44,65,250,0,57,147,243,254,146,43,59,255,89,28,53,0,33,84,24,255,179,51,18,254,189,70,83,0,11,156,179,1,98,134,119,0,158,111,111,0,119,154,73,255,200,63,140,254,45,13,13,255,154,192,2,254,81,72,42,0,46,160,185,254,44,112,6,0,146,215,149,1,26,176,104,0,68,28,87,1,236,50,153,255,179,128,250,254,206,193,191,255,166,92,137,254,53,40,239,0,210,1,204,254,168,173,35,0,141,243,45,1,36,50,109,255,15,242,194,255,227,159,122,255,176,175,202,254,70,57,72,0,40,223,56,0,208,162,58,255,183,98,93,0,15,111,12,0,30,8,76,255,132,127,246,255,45,242,103,0,69,181,15,255,10,209,30,0,3,179,121,0,241,232,218,1,123,199,88,255,2,210,202,1,188,130,81,255,94,101,208,1,103,36,45,0,76,193,24,1,95,26,241,255,165,162,187,0,36,114,140,0,202,66,5,255,37,56,147,0,152,11,243,1,127,85,232,255,250,135,212,1,185,177,113,0,90,220,75,255,69,248,146,0,50,111,50,0,92,22,80,0,244,36,115,254,163,100,82,255,25,193,6,1,127,61,36,0,253,67,30,254,65,236,170,255,161,17,215,254,63,175,140,0,55,127,4,0,79,112,233,0,109,160,40,0,143,83,7,255,65,26,238,255,217,169,140,255,78,94,189,255,0,147,190,255,147,71,186,254,106,77,127,255,233,157,233,1,135,87,237,255,208,13,236,1,155,109,36,255,180,100,218,0,180,163,18,0,190,110,9,1,17,63,123,255,179,136,180,255,165,123,123,255,144,188,81,254,71,240,108,255,25,112,11,255,227,218,51,255,167,50,234,255,114,79,108,255,31,19,115,255,183,240,99,0,227,87,143,255,72,217,248,255,102,169,95,1,129,149,149,0,238,133,12,1,227,204,35,0,208,115,26,1,102,8,234,0,112,88,143,1,144,249,14,0,240,158,172,254,100,112,119,0,194,141,153,254,40,56,83,255,121,176,46,0,42,53,76,255,158,191,154,0,91,209,92,0,173,13,16,1,5,72,226,255,204,254,149,0,80,184,207,0,100,9,122,254,118,101,171,255,252,203,0,254,160,207,54,0,56,72,249,1,56,140,13,255,10,64,107,254,91,101,52,255,225,181,248,1,139,255,132,0,230,145,17,0,233,56,23,0,119,1,241,255,213,169,151,255,99,99,9,254,185,15,191,255,173,103,109,1,174,13,251,255,178,88,7,254,27,59,68,255,10,33,2,255,248,97,59,0,26,30,146,1,176,147,10,0,95,121,207,1,188,88,24,0,185,94,254,254,115,55,201,0,24,50,70,0,120,53,6,0,142,66,146,0,228,226,249,255,104,192,222,1,173,68,219,0,162,184,36,255,143,102,137,255,157,11,23,0,125,45,98,0,235,93,225,254,56,112,160,255,70,116,243,1,153,249,55,255,129,39,17,1,241,80,244,0,87,69,21,1,94,228,73,255,78,66,65,255,194,227,231,0,61,146,87,255,173,155,23,255,112,116,219,254,216,38,11,255,131,186,133,0,94,212,187,0,100,47,91,0,204,254,175,255,222,18,215,254,173,68,108,255,227,228,79,255,38,221,213,0,163,227,150,254,31,190,18,0,160,179,11,1,10,90,94,255,220,174,88,0,163,211,229,255,199,136,52,0,130,95,221,255,140,188,231,254,139,113,128,255,117,171,236,254,49,220,20,255,59,20,171,255,228,109,188,0,20,225,32,254,195,16,174,0,227,254,136,1,135,39,105,0,150,77,206,255,210,238,226,0,55,212,132,254,239,57,124,0,170,194,93,255,249,16,247,255,24,151,62,255,10,151,10,0,79,139,178,255,120,242,202,0,26,219,213,0,62,125,35,255,144,2,108,255,230,33,83,255,81,45,216,1,224,62,17,0,214,217,125,0,98,153,153,255], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+10240); +/* memory initializer */ allocate([179,176,106,254,131,93,138,255,109,62,36,255,178,121,32,255,120,252,70,0,220,248,37,0,204,88,103,1,128,220,251,255,236,227,7,1,106,49,198,255,60,56,107,0,99,114,238,0,220,204,94,1,73,187,1,0,89,154,34,0,78,217,165,255,14,195,249,255,9,230,253,255,205,135,245,0,26,252,7,255,84,205,27,1,134,2,112,0,37,158,32,0,231,91,237,255,191,170,204,255,152,7,222,0,109,192,49,0,193,166,146,255,232,19,181,255,105,142,52,255,103,16,27,1,253,200,165,0,195,217,4,255,52,189,144,255,123,155,160,254,87,130,54,255,78,120,61,255,14,56,41,0,25,41,125,255,87,168,245,0,214,165,70,0,212,169,6,255,219,211,194,254,72,93,164,255,197,33,103,255,43,142,141,0,131,225,172,0,244,105,28,0,68,68,225,0,136,84,13,255,130,57,40,254,139,77,56,0,84,150,53,0,54,95,157,0,144,13,177,254,95,115,186,0,117,23,118,255,244,166,241,255,11,186,135,0,178,106,203,255,97,218,93,0,43,253,45,0,164,152,4,0,139,118,239,0,96,1,24,254,235,153,211,255,168,110,20,255,50,239,176,0,114,41,232,0,193,250,53,0,254,160,111,254,136,122,41,255,97,108,67,0,215,152,23,255,140,209,212,0,42,189,163,0,202,42,50,255,106,106,189,255,190,68,217,255,233,58,117,0,229,220,243,1,197,3,4,0,37,120,54,254,4,156,134,255,36,61,171,254,165,136,100,255,212,232,14,0,90,174,10,0,216,198,65,255,12,3,64,0,116,113,115,255,248,103,8,0,231,125,18,255,160,28,197,0,30,184,35,1,223,73,249,255,123,20,46,254,135,56,37,255,173,13,229,1,119,161,34,255,245,61,73,0,205,125,112,0,137,104,134,0,217,246,30,255,237,142,143,0,65,159,102,255,108,164,190,0,219,117,173,255,34,37,120,254,200,69,80,0,31,124,218,254,74,27,160,255,186,154,199,255,71,199,252,0,104,81,159,1,17,200,39,0,211,61,192,1,26,238,91,0,148,217,12,0,59,91,213,255,11,81,183,255,129,230,122,255,114,203,145,1,119,180,66,255,72,138,180,0,224,149,106,0,119,82,104,255,208,140,43,0,98,9,182,255,205,101,134,255,18,101,38,0,95,197,166,255,203,241,147,0,62,208,145,255,133,246,251,0,2,169,14,0,13,247,184,0,142,7,254,0,36,200,23,255,88,205,223,0,91,129,52,255,21,186,30,0,143,228,210,1,247,234,248,255,230,69,31,254,176,186,135,255,238,205,52,1,139,79,43,0,17,176,217,254,32,243,67,0,242,111,233,0,44,35,9,255,227,114,81,1,4,71,12,255,38,105,191,0,7,117,50,255,81,79,16,0,63,68,65,255,157,36,110,255,77,241,3,255,226,45,251,1,142,25,206,0,120,123,209,1,28,254,238,255,5,128,126,255,91,222,215,255,162,15,191,0,86,240,73,0,135,185,81,254,44,241,163,0,212,219,210,255,112,162,155,0,207,101,118,0,168,72,56,255,196,5,52,0,72,172,242,255,126,22,157,255,146,96,59,255,162,121,152,254,140,16,95,0,195,254,200,254,82,150,162,0,119,43,145,254,204,172,78,255,166,224,159,0,104,19,237,255,245,126,208,255,226,59,213,0,117,217,197,0,152,72,237,0,220,31,23,254,14,90,231,255,188,212,64,1,60,101,246,255,85,24,86,0,1,177,109,0,146,83,32,1,75,182,192,0,119,241,224,0,185,237,27,255,184,101,82,1,235,37,77,255,253,134,19,0,232,246,122,0,60,106,179,0,195,11,12,0,109,66,235,1,125,113,59,0,61,40,164,0,175,104,240,0,2,47,187,255,50,12,141,0,194,139,181,255,135,250,104,0,97,92,222,255,217,149,201,255,203,241,118,255,79,151,67,0,122,142,218,255,149,245,239,0,138,42,200,254,80,37,97,255,124,112,167,255,36,138,87,255,130,29,147,255,241,87,78,255,204,97,19,1,177,209,22,255,247,227,127,254,99,119,83,255,212,25,198,1,16,179,179,0,145,77,172,254,89,153,14,255,218,189,167,0,107,233,59,255,35,33,243,254,44,112,112,255,161,127,79,1,204,175,10,0,40,21,138,254,104,116,228,0,199,95,137,255,133,190,168,255,146,165,234,1,183,99,39,0,183,220,54,254,255,222,133,0,162,219,121,254,63,239,6,0,225,102,54,255,251,18,246,0,4,34,129,1,135,36,131,0,206,50,59,1,15,97,183,0,171,216,135,255,101,152,43,255,150,251,91,0,38,145,95,0,34,204,38,254,178,140,83,255,25,129,243,255,76,144,37,0,106,36,26,254,118,144,172,255,68,186,229,255,107,161,213,255,46,163,68,255,149,170,253,0,187,17,15,0,218,160,165,255,171,35,246,1,96,13,19,0,165,203,117,0,214,107,192,255,244,123,177,1,100,3,104,0,178,242,97,255,251,76,130,255,211,77,42,1,250,79,70,255,63,244,80,1,105,101,246,0,61,136,58,1,238,91,213,0,14,59,98,255,167,84,77,0,17,132,46,254,57,175,197,255,185,62,184,0,76,64,207,0,172,175,208,254,175,74,37,0,138,27,211,254,148,125,194,0,10,89,81,0,168,203,101,255,43,213,209,1,235,245,54,0,30,35,226,255,9,126,70,0,226,125,94,254,156,117,20,255,57,248,112,1,230,48,64,255,164,92,166,1,224,214,230,255,36,120,143,0,55,8,43,255,251,1,245,1,106,98,165,0,74,107,106,254,53,4,54,255,90,178,150,1,3,120,123,255,244,5,89,1,114,250,61,255,254,153,82,1,77,15,17,0,57,238,90,1,95,223,230,0,236,52,47,254,103,148,164,255,121,207,36,1,18,16,185,255,75,20,74,0,187,11,101,0,46,48,129,255,22,239,210,255,77,236,129,255,111,77,204,255,61,72,97,255,199,217,251,255,42,215,204,0,133,145,201,255,57,230,146,1,235,100,198,0,146,73,35,254,108,198,20,255,182,79,210,255,82,103,136,0,246,108,176,0,34,17,60,255,19,74,114,254,168,170,78,255,157,239,20,255,149,41,168,0,58,121,28,0,79,179,134,255,231,121,135,255,174,209,98,255,243,122,190,0,171,166,205,0,212,116,48,0,29,108,66,255,162,222,182,1,14,119,21,0,213,39,249,255,254,223,228,255,183,165,198,0,133,190,48,0,124,208,109,255,119,175,85,255,9,209,121,1,48,171,189,255,195,71,134,1,136,219,51,255,182,91,141,254,49,159,72,0,35,118,245,255,112,186,227,255,59,137,31,0,137,44,163,0,114,103,60,254,8,213,150,0,162,10,113,255,194,104,72,0,220,131,116,255,178,79,92,0,203,250,213,254,93,193,189,255,130,255,34,254,212,188,151,0,136,17,20,255,20,101,83,255,212,206,166,0,229,238,73,255,151,74,3,255,168,87,215,0,155,188,133,255,166,129,73,0,240,79,133,255,178,211,81,255,203,72,163,254,193,168,165,0,14,164,199,254,30,255,204,0,65,72,91,1,166,74,102,255,200,42,0,255,194,113,227,255,66,23,208,0,229,216,100,255,24,239,26,0,10,233,62,255,123,10,178,1,26,36,174,255,119,219,199,1,45,163,190,0,16,168,42,0,166,57,198,255,28,26,26,0,126,165,231,0,251,108,100,255,61,229,121,255,58,118,138,0,76,207,17,0,13,34,112,254,89,16,168,0,37,208,105,255,35,201,215,255,40,106,101,254,6,239,114,0,40,103,226,254,246,127,110,255,63,167,58,0,132,240,142,0,5,158,88,255,129,73,158,255,94,89,146,0,230,54,146,0,8,45,173,0,79,169,1,0,115,186,247,0,84,64,131,0,67,224,253,255,207,189,64,0,154,28,81,1,45,184,54,255,87,212,224,255,0,96,73,255,129,33,235,1,52,66,80,255,251,174,155,255,4,179,37,0,234,164,93,254,93,175,253,0,198,69,87,255,224,106,46,0,99,29,210,0,62,188,114,255,44,234,8,0,169,175,247,255,23,109,137,255,229,182,39,0,192,165,94,254,245,101,217,0,191,88,96,0,196,94,99,255,106,238,11,254,53,126,243,0,94,1,101,255,46,147,2,0,201,124,124,255,141,12,218,0,13,166,157,1,48,251,237,255,155,250,124,255,106,148,146,255,182,13,202,0,28,61,167,0,217,152,8,254,220,130,45,255,200,230,255,1,55,65,87,255,93,191,97,254,114,251,14,0,32,105,92,1,26,207,141,0,24,207,13,254,21,50,48,255,186,148,116,255,211,43,225,0,37,34,162,254,164,210,42,255,68,23,96,255,182,214,8,255,245,117,137,255,66,195,50,0,75,12,83,254,80,140,164,0,9,165,36,1,228,110,227,0,241,17,90,1,25,52,212,0,6,223,12,255,139,243,57,0,12,113,75,1,246,183,191,255,213,191,69,255,230,15,142,0,1,195,196,255,138,171,47,255,64,63,106,1,16,169,214,255,207,174,56,1,88,73,133,255,182,133,140,0,177,14,25,255,147,184,53,255,10,227,161,255,120,216,244,255,73,77,233,0,157,238,139,1,59,65,233,0,70,251,216,1,41,184,153,255,32,203,112,0,146,147,253,0,87,101,109,1,44,82,133,255,244,150,53,255,94,152,232,255,59,93,39,255,88,147,220,255,78,81,13,1,32,47,252,255,160,19,114,255,93,107,39,255,118,16,211,1,185,119,209,255,227,219,127,254,88,105,236,255,162,110,23,255,36,166,110,255,91,236,221,255,66,234,116,0,111,19,244,254,10,233,26,0,32,183,6,254,2,191,242,0,218,156,53,254,41,60,70,255,168,236,111,0,121,185,126,255,238,142,207,255,55,126,52,0,220,129,208,254,80,204,164,255,67,23,144,254,218,40,108,255,127,202,164,0,203,33,3,255,2,158,0,0,37,96,188,255,192,49,74,0,109,4,0,0,111,167,10,254,91,218,135,255,203,66,173,255,150,194,226,0,201,253,6,255,174,102,121,0,205,191,110,0,53,194,4,0,81,40,45,254,35,102,143,255,12,108,198,255,16,27,232,255,252,71,186,1,176,110,114,0,142,3,117,1,113,77,142,0,19,156,197,1,92,47,252,0,53,232,22,1,54,18,235,0,46,35,189,255,236,212,129,0,2,96,208,254,200,238,199,255,59,175,164,255,146,43,231,0,194,217,52,255,3,223,12,0,138,54,178,254,85,235,207,0,232,207,34,0,49,52,50,255,166,113,89,255,10,45,216,255,62,173,28,0,111,165,246,0,118,115,91,255,128,84,60,0,167,144,203,0,87,13,243,0,22,30,228,1,177,113,146,255,129,170,230,254,252,153,129,255,145,225,43,0,70,231,5,255,122,105,126,254,86,246,148,255,110,37,154,254,209,3,91,0,68,145,62,0,228,16,165,255,55,221,249,254,178,210,91,0,83,146,226,254,69,146,186,0,93,210,104,254,16,25,173,0,231,186,38,0,189,122,140,255,251,13,112,255,105,110,93,0,251,72,170,0,192,23,223,255,24,3,202,1,225,93,228,0,153,147,199,254,109,170,22,0,248,101,246,255,178,124,12,255,178,254,102,254,55,4,65,0,125,214,180,0,183,96,147,0,45,117,23,254,132,191,249,0,143,176,203,254,136,183,54,255,146,234,177,0,146,101,86,255,44,123,143,1,33,209,152,0,192,90,41,254,83,15,125,255,213,172,82,0,215,169,144,0,16,13,34,0,32,209,100,255,84,18,249,1,197,17,236,255,217,186,230,0,49,160,176,255,111,118,97,255,237,104,235,0,79,59,92,254,69,249,11,255,35,172,74,1,19,118,68,0,222,124,165,255,180,66,35,255,86,174,246,0,43,74,111,255,126,144,86,255,228,234,91,0,242,213,24,254,69,44,235,255,220,180,35,0,8,248,7,255,102,47,92,255,240,205,102,255,113,230,171,1,31,185,201,255,194,246,70,255,122,17,187,0,134,70,199,255,149,3,150,255,117,63,103,0,65,104,123,255,212,54,19,1,6,141,88,0,83,134,243,255,136,53,103,0,169,27,180,0,177,49,24,0,111,54,167,0,195,61,215,255,31,1,108,1,60,42,70,0,185,3,162,255,194,149,40,255,246,127,38,254,190,119,38,255,61,119,8,1,96,161,219,255,42,203,221,1,177,242,164,255,245,159,10,0,116,196,0,0,5,93,205,254,128,127,179,0,125,237,246,255,149,162,217,255,87,37,20,254,140,238,192,0,9,9,193,0,97,1,226,0,29,38,10,0,0,136,63,255,229,72,210,254,38,134,92,255,78,218,208,1,104,36,84,255,12,5,193,255,242,175,61,255,191,169,46,1,179,147,147,255,113,190,139,254,125,172,31,0,3,75,252,254,215,36,15,0,193,27,24,1,255,69,149,255,110,129,118,0,203,93,249,0,138,137,64,254,38,70,6,0,153,116,222,0,161,74,123,0,193,99,79,255,118,59,94,255,61,12,43,1,146,177,157,0,46,147,191,0,16,255,38,0,11,51,31,1,60,58,98,255,111,194,77,1,154,91,244,0,140,40,144,1,173,10,251,0,203,209,50,254,108,130,78,0,228,180,90,0,174,7,250,0,31,174,60,0,41,171,30,0,116,99,82,255,118,193,139,255,187,173,198,254,218,111,56,0,185,123,216,0,249,158,52,0,52,180,93,255,201,9,91,255,56,45,166,254,132,155,203,255,58,232,110,0,52,211,89,255,253,0,162,1,9,87,183,0,145,136,44,1,94,122,245,0,85,188,171,1,147,92,198,0,0,8,104,0,30,95,174,0,221,230,52,1,247,247,235,255,137,174,53,255,35,21,204,255,71,227,214,1,232,82,194,0,11,48,227,255,170,73,184,255,198,251,252,254,44,112,34,0,131,101,131,255,72,168,187,0,132,135,125,255,138,104,97,255,238,184,168,255,243,104,84,255,135,216,226,255,139,144,237,0,188,137,150,1,80,56,140,255,86,169,167,255,194,78,25,255,220,17,180,255,17,13,193,0,117,137,212,255,141,224,151,0,49,244,175,0,193,99,175,255,19,99,154,1,255,65,62,255,156,210,55,255,242,244,3,255,250,14,149,0,158,88,217,255,157,207,134,254,251,232,28,0,46,156,251,255,171,56,184,255,239,51,234,0,142,138,131,255,25,254,243,1,10,201,194,0,63,97,75,0,210,239,162,0,192,200,31,1,117,214,243,0,24,71,222,254,54,40,232,255,76,183,111,254,144,14,87,255,214,79,136,255,216,196,212,0,132,27,140,254,131,5,253,0,124,108,19,255,28,215,75,0,76,222,55,254,233,182,63,0,68,171,191,254,52,111,222,255,10,105,77,255,80,170,235,0,143,24,88,255,45,231,121,0,148,129,224,1,61,246,84,0,253,46,219,255,239,76,33,0,49,148,18,254,230,37,69,0,67,134,22,254,142,155,94,0,31,157,211,254,213,42,30,255,4,228,247,254,252,176,13,255,39,0,31,254,241,244,255,255,170,45,10,254,253,222,249,0,222,114,132,0,255,47,6,255,180,163,179,1,84,94,151,255,89,209,82,254,229,52,169,255,213,236,0,1,214,56,228,255,135,119,151,255,112,201,193,0,83,160,53,254,6,151,66,0,18,162,17,0,233,97,91,0,131,5,78,1,181,120,53,255,117,95,63,255,237,117,185,0,191,126,136,255,144,119,233,0,183,57,97,1,47,201,187,255,167,165,119,1,45,100,126,0,21,98,6,254,145,150,95,255,120,54,152,0,209,98,104,0,143,111,30,254,184,148,249,0,235,216,46,0,248,202,148,255,57,95,22,0,242,225,163,0,233,247,232,255,71,171,19,255,103,244,49,255,84,103,93,255,68,121,244,1,82,224,13,0,41,79,43,255,249,206,167,255,215,52,21,254,192,32,22,255,247,111,60,0,101,74,38,255,22,91,84,254,29,28,13,255,198,231,215,254,244,154,200,0,223,137,237,0,211,132,14,0,95,64,206,255,17,62,247,255,233,131,121,1,93,23,77,0,205,204,52,254,81,189,136,0,180,219,138,1,143,18,94,0,204,43,140,254,188,175,219,0,111,98,143,255,151,63,162,255,211,50,71,254,19,146,53,0,146,45,83,254,178,82,238,255,16,133,84,255,226,198,93,255,201,97,20,255,120,118,35,255,114,50,231,255,162,229,156,255,211,26,12,0,114,39,115,255,206,212,134,0,197,217,160,255,116,129,94,254,199,215,219,255,75,223,249,1,253,116,181,255,232,215,104,255,228,130,246,255,185,117,86,0,14,5,8,0,239,29,61,1,237,87,133,255,125,146,137,254,204,168,223,0,46,168,245,0,154,105,22,0,220,212,161,255,107,69,24,255,137,218,181,255,241,84,198,255,130,122,211,255,141,8,153,255,190,177,118,0,96,89,178,0,255,16,48,254,122,96,105,255,117,54,232,255,34,126,105,255,204,67,166,0,232,52,138,255,211,147,12,0,25,54,7,0,44,15,215,254,51,236,45,0,190,68,129,1,106,147,225,0,28,93,45,254,236,141,15,255,17,61,161,0,220,115,192,0,236,145,24,254,111,168,169,0,224,58,63,255,127,164,188,0,82,234,75,1,224,158,134,0,209,68,110,1,217,166,217,0,70,225,166,1,187,193,143,255,16,7,88,255,10,205,140,0,117,192,156,1,17,56,38,0,27,124,108,1,171,215,55,255,95,253,212,0,155,135,168,255,246,178,153,254,154,68,74,0,232,61,96,254,105,132,59,0,33,76,199,1,189,176,130,255,9,104,25,254,75,198,102,255,233,1,112,0,108,220,20,255,114,230,70,0,140,194,133,255,57,158,164,254,146,6,80,255,169,196,97,1,85,183,130,0,70,158,222,1,59,237,234,255,96,25,26,255,232,175,97,255,11,121,248,254,88,35,194,0,219,180,252,254,74,8,227,0,195,227,73,1,184,110,161,255,49,233,164,1,128,53,47,0,82,14,121,255,193,190,58,0,48,174,117,255,132,23,32,0,40,10,134,1,22,51,25,255,240,11,176,255,110,57,146,0,117,143,239,1,157,101,118,255,54,84,76,0,205,184,18,255,47,4,72,255,78,112,85,255,193,50,66,1,93,16,52,255,8,105,134,0,12,109,72,255,58,156,251,0,144,35,204,0,44,160,117,254,50,107,194,0,1,68,165,255,111,110,162,0,158,83,40,254,76,214,234,0,58,216,205,255,171,96,147,255,40,227,114,1,176,227,241,0,70,249,183,1,136,84,139,255,60,122,247,254,143,9,117,255,177,174,137,254,73,247,143,0,236,185,126,255,62,25,247,255,45,64,56,255,161,244,6,0,34,57,56,1,105,202,83,0,128,147,208,0,6,103,10,255,74,138,65,255,97,80,100,255,214,174,33,255,50,134,74,255,110,151,130,254,111,84,172,0,84,199,75,254,248,59,112,255,8,216,178,1,9,183,95,0,238,27,8,254,170,205,220,0,195,229,135,0,98,76,237,255,226,91,26,1,82,219,39,255,225,190,199,1,217,200,121,255,81,179,8,255,140,65,206,0,178,207,87,254,250,252,46,255,104,89,110,1,253,189,158,255,144,214,158,255,160,245,54,255,53,183,92,1,21,200,194,255,146,33,113,1,209,1,255,0,235,106,43,255,167,52,232,0,157,229,221,0,51,30,25,0,250,221,27,1,65,147,87,255,79,123,196,0,65,196,223,255,76,44,17,1,85,241,68,0,202,183,249,255,65,212,212,255,9,33,154,1,71,59,80,0,175,194,59,255,141,72,9,0,100,160,244,0,230,208,56,0,59,25,75,254,80,194,194,0,18,3,200,254,160,159,115,0,132,143,247,1,111,93,57,255,58,237,11,1,134,222,135,255,122,163,108,1,123,43,190,255,251,189,206,254,80,182,72,255,208,246,224,1,17,60,9,0,161,207,38,0,141,109,91,0,216,15,211,255,136,78,110,0,98,163,104,255,21,80,121,255,173,178,183,1,127,143,4,0,104,60,82,254,214,16,13,255,96,238,33,1,158,148,230,255,127,129,62,255,51,255,210,255,62,141,236,254,157,55,224,255,114,39,244,0,192,188,250,255,228,76,53,0,98,84,81,255,173,203,61,254,147,50,55,255,204,235,191,0,52,197,244,0,88,43,211,254,27,191,119,0,188,231,154,0,66,81,161,0,92,193,160,1,250,227,120,0,123,55,226,0,184,17,72,0,133,168,10,254,22,135,156,255,41,25,103,255,48,202,58,0,186,149,81,255,188,134,239,0,235,181,189,254,217,139,188,255,74,48,82,0,46,218,229,0,189,253,251,0,50,229,12,255,211,141,191,1,128,244,25,255,169,231,122,254,86,47,189,255,132,183,23,255,37,178,150,255,51,137,253,0,200,78,31,0,22,105,50,0,130,60,0,0,132,163,91,254,23,231,187,0,192,79,239,0,157,102,164,255,192,82,20,1,24,181,103,255,240,9,234,0,1,123,164,255,133,233,0,255,202,242,242,0,60,186,245,0,241,16,199,255,224,116,158,254,191,125,91,255,224,86,207,0,121,37,231,255,227,9,198,255,15,153,239,255,121,232,217,254,75,112,82,0,95,12,57,254,51,214,105,255,148,220,97,1,199,98,36,0,156,209,12,254,10,212,52,0,217,180,55,254,212,170,232,255,216,20,84,255,157,250,135,0,157,99,127,254,1,206,41,0,149,36,70,1,54,196,201,255,87,116,0,254,235,171,150,0,27,163,234,0,202,135,180,0,208,95,0,254,123,156,93,0,183,62,75,0,137,235,182,0,204,225,255,255,214,139,210,255,2,115,8,255,29,12,111,0,52,156,1,0,253,21,251,255,37,165,31,254,12,130,211,0,106,18,53,254,42,99,154,0,14,217,61,254,216,11,92,255,200,197,112,254,147,38,199,0,36,252,120,254,107,169,77,0,1,123,159,255,207,75,102,0,163,175,196,0,44,1,240,0,120,186,176,254,13,98,76,255,237,124,241,255,232,146,188,255,200,96,224,0,204,31,41,0,208,200,13,0,21,225,96,255,175,156,196,0,247,208,126,0,62,184,244,254,2,171,81,0,85,115,158,0,54,64,45,255,19,138,114,0,135,71,205,0,227,47,147,1,218,231,66,0,253,209,28,0,244,15,173,255,6,15,118,254,16,150,208,255,185,22,50,255,86,112,207,255,75,113,215,1,63,146,43,255,4,225,19,254,227,23,62,255,14,255,214,254,45,8,205,255,87,197,151,254,210,82,215,255,245,248,247,255,128,248,70,0,225,247,87,0,90,120,70,0,213,245,92,0,13,133,226,0,47,181,5,1,92,163,105,255,6,30,133,254,232,178,61,255,230,149,24,255,18,49,158,0,228,100,61,254,116,243,251,255,77,75,92,1,81,219,147,255,76,163,254,254,141,213,246,0,232,37,152,254,97,44,100,0,201,37,50,1,212,244,57,0,174,171,183,255,249,74,112,0,166,156,30,0,222,221,97,255,243,93,73,254,251,101,100,255,216,217,93,255,254,138,187,255,142,190,52,255,59,203,177,255,200,94,52,0,115,114,158,255,165,152,104,1,126,99,226,255,118,157,244,1,107,200,16,0,193,90,229,0,121,6,88,0,156,32,93,254,125,241,211,255,14,237,157,255,165,154,21,255,184,224,22,255,250,24,152,255,113,77,31,0,247,171,23,255,237,177,204,255,52,137,145,255,194,182,114,0,224,234,149,0,10,111,103,1,201,129,4,0,238,142,78,0,52,6,40,255,110,213,165,254,60,207,253,0,62,215,69,0,96,97,0,255,49,45,202,0,120,121,22,255,235,139,48,1,198,45,34,255,182,50,27,1,131,210,91,255,46,54,128,0,175,123,105,255,198,141,78,254,67,244,239,255,245,54,103,254,78,38,242,255,2,92,249,254,251,174,87,255,139,63,144,0,24,108,27,255,34,102,18,1,34,22,152,0,66,229,118,254,50,143,99,0,144,169,149,1,118,30,152,0,178,8,121,1,8,159,18,0,90,101,230,255,129,29,119,0,68,36,11,1,232,183,55,0,23,255,96,255,161,41,193,255,63,139,222,0,15,179,243,0,255,100,15,255,82,53,135,0,137,57,149,1,99,240,170,255,22,230,228,254,49,180,82,255,61,82,43,0,110,245,217,0,199,125,61,0,46,253,52,0,141,197,219,0,211,159,193,0,55,121,105,254,183,20,129,0,169,119,170,255,203,178,139,255,135,40,182,255,172,13,202,255,65,178,148,0,8,207,43,0,122,53,127,1,74,161,48,0,227,214,128,254,86,11,243,255,100,86,7,1,245,68,134,255,61,43,21,1,152,84,94,255,190,60,250,254,239,118,232,255,214,136,37,1,113,76,107,255,93,104,100,1,144,206,23,255,110,150,154,1,228,103,185,0,218,49,50,254,135,77,139,255,185,1,78,0,0,161,148,255,97,29,233,255,207,148,149,255,160,168,0,0,91,128,171,255,6,28,19,254,11,111,247,0,39,187,150,255,138,232,149,0,117,62,68,255,63,216,188,255,235,234,32,254,29,57,160,255,25,12,241,1,169,60,191,0,32,131,141,255,237,159,123,255,94,197,94,254,116,254,3,255,92,179,97,254,121,97,92,255,170,112,14,0,21,149,248,0,248,227,3,0,80,96,109,0,75,192,74,1,12,90,226,255,161,106,68,1,208,114,127,255,114,42,255,254,74,26,74,255,247,179,150,254,121,140,60,0,147,70,200,255,214,40,161,255,161,188,201,255,141,65,135,255,242,115,252,0,62,47,202,0,180,149,255,254,130,55,237,0,165,17,186,255,10,169,194,0,156,109,218,255,112,140,123,255,104,128,223,254,177,142,108,255,121,37,219,255,128,77,18,255,111,108,23,1,91,192,75,0,174,245,22,255,4,236,62,255,43,64,153,1,227,173,254,0,237,122,132,1,127,89,186,255,142,82,128,254,252,84,174,0,90,179,177,1,243,214,87,255,103,60,162,255,208,130,14,255,11,130,139,0,206,129,219,255,94,217,157,255,239,230,230,255,116,115,159,254,164,107,95,0,51,218,2,1,216,125,198,255,140,202,128,254,11,95,68,255,55,9,93,254,174,153,6,255,204,172,96,0,69,160,110,0,213,38,49,254,27,80,213,0,118,125,114,0,70,70,67,255,15,142,73,255,131,122,185,255,243,20,50,254,130,237,40,0,210,159,140,1,197,151,65,255,84,153,66,0,195,126,90,0,16,238,236,1,118,187,102,255,3,24,133,255,187,69,230,0,56,197,92,1,213,69,94,255,80,138,229,1,206,7,230,0,222,111,230,1,91,233,119,255,9,89,7,1,2,98,1,0,148,74,133,255,51,246,180,255,228,177,112,1,58,189,108,255,194,203,237,254,21,209,195,0,147,10,35,1,86,157,226,0,31,163,139,254,56,7,75,255,62,90,116,0,181,60,169,0,138,162,212,254,81,167,31,0,205,90,112,255,33,112,227,0,83,151,117,1,177,224,73,255,174,144,217,255,230,204,79,255,22,77,232,255,114,78,234,0,224,57,126,254,9,49,141,0,242,147,165,1,104,182,140,255,167,132,12,1,123,68,127,0,225,87,39,1,251,108,8,0,198,193,143,1,121,135,207,255,172,22,70,0,50,68,116,255,101,175,40,255,248,105,233,0,166,203,7,0,110,197,218,0,215,254,26,254,168,226,253,0,31,143,96,0,11,103,41,0,183,129,203,254,100,247,74,255,213,126,132,0,210,147,44,0,199,234,27,1,148,47,181,0,155,91,158,1,54,105,175,255,2,78,145,254,102,154,95,0,128,207,127,254,52,124,236,255,130,84,71,0,221,243,211,0,152,170,207,0,222,106,199,0,183,84,94,254,92,200,56,255,138,182,115,1,142,96,146,0,133,136,228,0,97,18,150,0,55,251,66,0,140,102,4,0,202,103,151,0,30,19,248,255,51,184,207,0,202,198,89,0,55,197,225,254,169,95,249,255,66,65,68,255,188,234,126,0,166,223,100,1,112,239,244,0,144,23,194,0,58,39,182,0,244,44,24,254,175,68,179,255,152,118,154,1,176,162,130,0,217,114,204,254,173,126,78,255,33,222,30,255,36,2,91,255,2,143,243,0,9,235,215,0,3,171,151,1,24,215,245,255,168,47,164,254,241,146,207,0,69,129,180,0,68,243,113,0,144,53,72,254,251,45,14,0,23,110,168,0,68,68,79,255,110,70,95,254,174,91,144,255,33,206,95,255,137,41,7,255,19,187,153,254,35,255,112,255,9,145,185,254,50,157,37,0,11,112,49,1,102,8,190,255,234,243,169,1,60,85,23,0,74,39,189,0,116,49,239,0,173,213,210,0,46,161,108,255,159,150,37,0,196,120,185,255,34,98,6,255,153,195,62,255,97,230,71,255,102,61,76,0,26,212,236,255,164,97,16,0,198,59,146,0,163,23,196,0,56,24,61,0,181,98,193,0,251,147,229,255,98,189,24,255,46,54,206,255,234,82,246,0,183,103,38,1,109,62,204,0,10,240,224,0,146,22,117,255,142,154,120,0,69,212,35,0,208,99,118,1,121,255,3,255,72,6,194,0,117,17,197,255,125,15,23,0,154,79,153,0,214,94,197,255,185,55,147,255,62,254,78,254,127,82,153,0,110,102,63,255,108,82,161,255,105,187,212,1,80,138,39,0,60,255,93,255,72,12,186,0,210,251,31,1,190,167,144,255,228,44,19,254,128,67,232,0,214,249,107,254,136,145,86,255,132,46,176,0,189,187,227,255,208,22,140,0,217,211,116,0,50,81,186,254,139,250,31,0,30,64,198,1,135,155,100,0,160,206,23,254,187,162,211,255,16,188,63,0,254,208,49,0,85,84,191,0,241,192,242,255,153,126,145,1,234,162,162,255,230,97,216,1,64,135,126,0,190,148,223,1,52,0,43,255,28,39,189,1,64,136,238,0,175,196,185,0,98,226,213,255,127,159,244,1,226,175,60,0,160,233,142,1,180,243,207,255,69,152,89,1,31,101,21,0,144,25,164,254,139,191,209,0,91,25,121,0,32,147,5,0,39,186,123,255,63,115,230,255,93,167,198,255,143,213,220,255,179,156,19,255,25,66,122,0,214,160,217,255,2,45,62,255,106,79,146,254,51,137,99,255,87,100,231,255,175,145,232,255,101,184,1,255,174,9,125,0,82,37,161,1,36,114,141,255,48,222,142,255,245,186,154,0,5,174,221,254,63,114,155,255,135,55,160,1,80,31,135,0,126,250,179,1,236,218,45,0,20,28,145,1,16,147,73,0,249,189,132,1,17,189,192,255,223,142,198,255,72,20,15,255,250,53,237,254,15,11,18,0,27,211,113,254,213,107,56,255,174,147,146,255,96,126,48,0,23,193,109,1,37,162,94,0,199,157,249,254,24,128,187,255,205,49,178,254,93,164,42,255,43,119,235,1,88,183,237,255,218,210,1,255,107,254,42,0,230,10,99,255,162,0,226,0,219,237,91,0,129,178,203,0,208,50,95,254,206,208,95,255,247,191,89,254,110,234,79,255,165,61,243,0,20,122,112,255,246,246,185,254,103,4,123,0,233,99,230,1,219,91,252,255,199,222,22,255,179,245,233,255,211,241,234,0,111,250,192,255,85,84,136,0,101,58,50,255,131,173,156,254,119,45,51,255,118,233,16,254,242,90,214,0,94,159,219,1,3,3,234,255,98,76,92,254,80,54,230,0,5,228,231,254,53,24,223,255,113,56,118,1,20,132,1,255,171,210,236,0,56,241,158,255,186,115,19,255,8,229,174,0,48,44,0,1,114,114,166,255,6,73,226,255,205,89,244,0,137,227,75,1,248,173,56,0,74,120,246,254,119,3,11,255,81,120,198,255,136,122,98,255,146,241,221,1,109,194,78,255,223,241,70,1,214,200,169,255,97,190,47,255,47,103,174,255,99,92,72,254,118,233,180,255,193,35,233,254,26,229,32,255,222,252,198,0,204,43,71,255,199,84,172,0,134,102,190,0,111,238,97,254,230,40,230,0,227,205,64,254,200,12,225,0,166,25,222,0,113,69,51,255,143,159,24,0,167,184,74,0,29,224,116,254,158,208,233,0,193,116,126,255,212,11,133,255,22,58,140,1,204,36,51,255,232,30,43,0,235,70,181,255,64,56,146,254,169,18,84,255,226,1,13,255,200,50,176,255,52,213,245,254,168,209,97,0,191,71,55,0,34,78,156,0,232,144,58,1,185,74,189,0,186,142,149,254,64,69,127,255,161,203,147,255,176,151,191,0,136,231,203,254,163,182,137,0,161,126,251,254,233,32,66,0,68,207,66,0,30,28,37,0,93,114,96,1,254,92,247,255,44,171,69,0,202,119,11,255,188,118,50,1,255,83,136,255,71,82,26,0,70,227,2,0,32,235,121,1,181,41,154,0,71,134,229,254,202,255,36,0,41,152,5,0,154,63,73,255,34,182,124,0,121,221,150,255,26,204,213,1,41,172,87,0,90,157,146,255,109,130,20,0,71,107,200,255,243,102,189,0,1,195,145,254,46,88,117,0,8,206,227,0,191,110,253,255,109,128,20,254,134,85,51,255,137,177,112,1,216,34,22,255,131,16,208,255,121,149,170,0,114,19,23,1,166,80,31,255,113,240,122,0,232,179,250,0,68,110,180,254,210,170,119,0,223,108,164,255,207,79,233,255,27,229,226,254,209,98,81,255,79,68,7,0,131,185,100,0,170,29,162,255,17,162,107,255,57,21,11,1,100,200,181,255,127,65,166,1,165,134,204,0,104,167,168,0,1,164,79,0,146,135,59,1,70,50,128,255,102,119,13,254,227,6,135,0,162,142,179,255,160,100,222,0,27,224,219,1,158,93,195,255,234,141,137,0,16,24,125,255,238,206,47,255,97,17,98,255,116,110,12,255,96,115,77,0,91,227,232,255,248,254,79,255,92,229,6,254,88,198,139,0,206,75,129,0,250,77,206,255,141,244,123,1,138,69,220,0,32,151,6,1,131,167,22,255,237,68,167,254,199,189,150,0,163,171,138,255,51,188,6,255,95,29,137,254,148,226,179,0,181,107,208,255,134,31,82,255,151,101,45,255,129,202,225,0,224,72,147,0,48,138,151,255,195,64,206,254,237,218,158,0,106,29,137,254,253,189,233,255,103,15,17,255,194,97,255,0,178,45,169,254,198,225,155,0,39,48,117,255,135,106,115,0,97,38,181,0,150,47,65,255,83,130,229,254,246,38,129,0,92,239,154,254,91,99,127,0,161,111,33,255,238,217,242,255,131,185,195,255,213,191,158,255,41,150,218,0,132,169,131,0,89,84,252,1,171,70,128,255,163,248,203,254,1,50,180,255,124,76,85,1,251,111,80,0,99,66,239,255,154,237,182,255,221,126,133,254,74,204,99,255,65,147,119,255,99,56,167,255,79,248,149,255,116,155,228,255,237,43,14,254,69,137,11,255,22,250,241,1,91,122,143,255,205,249,243,0,212,26,60,255,48,182,176,1,48,23,191,255,203,121,152,254,45,74,213,255,62,90,18,254,245,163,230,255,185,106,116,255,83,35,159,0,12,33,2,255,80,34,62,0,16,87,174,255,173,101,85,0,202,36,81,254,160,69,204,255,64,225,187,0,58,206,94,0,86,144,47,0,229,86,245,0,63,145,190,1,37,5,39,0,109,251,26,0,137,147,234,0,162,121,145,255,144,116,206,255,197,232,185,255,183,190,140,255,73,12,254,255,139,20,242,255,170,90,239,255,97,66,187,255,245,181,135,254,222,136,52,0,245,5,51,254,203,47,78,0,152,101,216,0,73,23,125,0,254,96,33,1,235,210,73,255,43,209,88,1,7,129,109,0,122,104,228,254,170,242,203,0,242,204,135,255,202,28,233,255,65,6,127,0,159,144,71,0,100,140,95,0,78,150,13,0,251,107,118,1,182,58,125,255,1,38,108,255,141,189,209,255,8,155,125,1,113,163,91,255,121,79,190,255,134,239,108,255,76,47,248,0,163,228,239,0,17,111,10,0,88,149,75,255,215,235,239,0,167,159,24,255,47,151,108,255,107,209,188,0,233,231,99,254,28,202,148,255,174,35,138,255,110,24,68,255,2,69,181,0,107,102,82,0,102,237,7,0,92,36,237,255,221,162,83,1,55,202,6,255,135,234,135,255,24,250,222,0,65,94,168,254,245,248,210,255,167,108,201,254,255,161,111,0,205,8,254,0,136,13,116,0,100,176,132,255,43,215,126,255,177,133,130,255,158,79,148,0,67,224,37,1,12,206,21,255,62,34,110,1,237,104,175,255,80,132,111,255,142,174,72,0,84,229,180,254,105,179,140,0,64,248,15,255,233,138,16,0,245,67,123,254,218,121,212,255,63,95,218,1,213,133,137,255,143,182,82,255,48,28,11,0,244,114,141,1,209,175,76,255,157,181,150,255,186,229,3,255,164,157,111,1,231,189,139,0,119,202,190,255,218,106,64,255,68,235,63,254,96,26,172,255,187,47,11,1,215,18,251,255,81,84,89,0,68,58,128,0,94,113,5,1,92,129,208,255,97,15,83,254,9,28,188,0,239,9,164,0,60,205,152,0,192,163,98,255,184,18,60,0,217,182,139,0,109,59,120,255,4,192,251,0,169,210,240,255,37,172,92,254,148,211,245,255,179,65,52,0,253,13,115,0,185,174,206,1,114,188,149,255,237,90,173,0,43,199,192,255,88,108,113,0,52,35,76,0,66,25,148,255,221,4,7,255,151,241,114,255,190,209,232,0,98,50,199,0,151,150,213,255,18,74,36,1,53,40,7,0,19,135,65,255,26,172,69,0,174,237,85,0,99,95,41,0,3,56,16,0,39,160,177,255,200,106,218,254,185,68,84,255,91,186,61,254,67,143,141,255,13,244,166,255,99,114,198,0,199,110,163,255,193,18,186,0,124,239,246,1,110,68,22,0,2,235,46,1,212,60,107,0,105,42,105,1,14,230,152,0,7,5,131,0,141,104,154,255,213,3,6,0,131,228,162,255,179,100,28,1,231,123,85,255,206,14,223,1,253,96,230,0,38,152,149,1,98,137,122,0,214,205,3,255,226,152,179,255,6,133,137,0,158,69,140,255,113,162,154,255,180,243,172,255,27,189,115,255,143,46,220,255,213,134,225,255,126,29,69,0,188,43,137,1,242,70,9,0,90,204,255,255,231,170,147,0,23,56,19,254,56,125,157,255,48,179,218,255,79,182,253,255,38,212,191,1,41,235,124,0,96,151,28,0,135,148,190,0,205,249,39,254,52,96,136,255,212,44,136,255,67,209,131,255,252,130,23,255,219,128,20,255,198,129,118,0,108,101,11,0,178,5,146,1,62,7,100,255,181,236,94,254,28,26,164,0,76,22,112,255,120,102,79,0,202,192,229,1,200,176,215,0,41,64,244,255,206,184,78,0,167,45,63,1,160,35,0,255,59,12,142,255,204,9,144,255,219,94,229,1,122,27,112,0,189,105,109,255,64,208,74,255,251,127,55,1,2,226,198,0,44,76,209,0,151,152,77,255,210,23,46,1,201,171,69,255,44,211,231,0,190,37,224,255,245,196,62,255,169,181,222,255,34,211,17,0,119,241,197,255,229,35,152,1,21,69,40,255,178,226,161,0,148,179,193,0,219,194,254,1,40,206,51,255,231,92,250,1,67,153,170,0,21,148,241,0,170,69,82,255,121,18,231,255,92,114,3,0,184,62,230,0,225,201,87,255,146,96,162,255,181,242,220,0,173,187,221,1,226,62,170,255,56,126,217,1,117,13,227,255,179,44,239,0,157,141,155,255,144,221,83,0,235,209,208,0,42,17,165,1,251,81,133,0,124,245,201,254,97,211,24,255,83,214,166,0,154,36,9,255,248,47,127,0,90,219,140,255,161,217,38,254,212,147,63,255,66,84,148,1,207,3,1,0,230,134,89,1,127,78,122,255,224,155,1,255,82,136,74,0,178,156,208,255,186,25,49,255,222,3,210,1,229,150,190,255,85,162,52,255,41,84,141,255,73,123,84,254,93,17,150,0,119,19,28,1,32,22,215,255,28,23,204,255,142,241,52,255,228,52,125,0,29,76,207,0,215,167,250,254,175,164,230,0,55,207,105,1,109,187,245,255,161,44,220,1,41,101,128,255,167,16,94,0,93,214,107,255,118,72,0,254,80,61,234,255,121,175,125,0,139,169,251,0,97,39,147,254,250,196,49,255,165,179,110,254,223,70,187,255,22,142,125,1,154,179,138,255,118,176,42,1,10,174,153,0,156,92,102,0,168,13,161,255,143,16,32,0,250,197,180,255,203,163,44,1,87,32,36,0,161,153,20,255,123,252,15,0,25,227,80,0,60,88,142,0,17,22,201,1,154,205,77,255,39,63,47,0,8,122,141,0,128,23,182,254,204,39,19,255,4,112,29,255,23,36,140,255,210,234,116,254,53,50,63,255,121,171,104,255,160,219,94,0,87,82,14,254,231,42,5,0,165,139,127,254,86,78,38,0,130,60,66,254,203,30,45,255,46,196,122,1,249,53,162,255,136,143,103,254,215,210,114,0,231,7,160,254,169,152,42,255,111,45,246,0,142,131,135,255,131,71,204,255,36,226,11,0,0,28,242,255,225,138,213,255,247,46,216,254,245,3,183,0,108,252,74,1,206,26,48,255,205,54,246,255,211,198,36,255,121,35,50,0,52,216,202,255,38,139,129,254,242,73,148,0,67,231,141,255,42,47,204,0,78,116,25,1,4,225,191,255,6,147,228,0,58,88,177,0,122,165,229,255,252,83,201,255,224,167,96,1,177,184,158,255,242,105,179,1,248,198,240,0,133,66,203,1,254,36,47,0,45,24,115,255,119,62,254,0,196,225,186,254,123,141,172,0,26,85,41,255,226,111,183,0,213,231,151,0,4,59,7,255,238,138,148,0,66,147,33,255,31,246,141,255,209,141,116,255,104,112,31,0,88,161,172,0,83,215,230,254,47,111,151,0,45,38,52,1,132,45,204,0,138,128,109,254,233,117,134,255,243,190,173,254,241,236,240,0,82,127,236,254,40,223,161,255,110,182,225,255,123,174,239,0,135,242,145,1,51,209,154,0,150,3,115,254,217,164,252,255,55,156,69,1,84,94,255,255,232,73,45,1,20,19,212,255,96,197,59,254,96,251,33,0,38,199,73,1,64,172,247,255,117,116,56,255,228,17,18,0,62,138,103,1,246,229,164,255,244,118,201,254,86,32,159,255,109,34,137,1,85,211,186,0,10,193,193,254,122,194,177,0,122,238,102,255,162,218,171,0,108,217,161,1,158,170,34,0,176,47,155,1,181,228,11,255,8,156,0,0,16,75,93,0,206,98,255,1,58,154,35,0,12,243,184,254,67,117,66,255,230,229,123,0,201,42,110,0,134,228,178,254,186,108,118,255,58,19,154,255,82,169,62,255,114,143,115,1,239,196,50,255,173,48,193,255,147,2,84,255,150,134,147,254,95,232,73,0,109,227,52,254,191,137,10,0,40,204,30,254,76,52,97,255,164,235,126,0,254,124,188,0,74,182,21,1,121,29,35,255,241,30,7,254,85,218,214,255,7,84,150,254,81,27,117,255,160,159,152,254,66,24,221,255,227,10,60,1,141,135,102,0,208,189,150,1,117,179,92,0,132,22,136,255,120,199,28,0,21,129,79,254,182,9,65,0,218,163,169,0,246,147,198,255,107,38,144,1,78,175,205,255,214,5,250,254,47,88,29,255,164,47,204,255,43,55,6,255,131,134,207,254,116,100,214,0,96,140,75,1,106,220,144,0,195,32,28,1,172,81,5,255,199,179,52,255,37,84,203,0,170,112,174,0,11,4,91,0,69,244,27,1,117,131,92,0,33,152,175,255,140,153,107,255,251,135,43,254,87,138,4,255,198,234,147,254,121,152,84,255,205,101,155,1,157,9,25,0,72,106,17,254,108,153,0,255,189,229,186,0,193,8,176,255,174,149,209,0,238,130,29,0,233,214,126,1,61,226,102,0,57,163,4,1,198,111,51,255,45,79,78,1,115,210,10,255,218,9,25,255,158,139,198,255,211,82,187,254,80,133,83,0,157,129,230,1,243,133,134,255,40,136,16,0,77,107,79,255,183,85,92,1,177,204,202,0,163,71,147,255,152,69,190,0,172,51,188,1,250,210,172,255,211,242,113,1,89,89,26,255,64,66,111,254,116,152,42,0,161,39,27,255,54,80,254,0,106,209,115,1,103,124,97,0,221,230,98,255,31,231,6,0,178,192,120,254,15,217,203,255,124,158,79,0,112,145,247,0,92,250,48,1,163,181,193,255,37,47,142,254,144,189,165,255,46,146,240,0,6,75,128,0,41,157,200,254,87,121,213,0,1,113,236,0,5,45,250,0,144,12,82,0,31,108,231,0,225,239,119,255,167,7,189,255,187,228,132,255,110,189,34,0,94,44,204,1,162,52,197,0,78,188,241,254,57,20,141,0,244,146,47,1,206,100,51,0,125,107,148,254,27,195,77,0,152,253,90,1,7,143,144,255,51,37,31,0,34,119,38,255,7,197,118,0,153,188,211,0,151,20,116,254,245,65,52,255,180,253,110,1,47,177,209,0,161,99,17,255,118,222,202,0,125,179,252,1,123,54,126,255,145,57,191,0,55,186,121,0,10,243,138,0,205,211,229,255,125,156,241,254,148,156,185,255,227,19,188,255,124,41,32,255,31,34,206,254,17,57,83,0,204,22,37,255,42,96,98,0,119,102,184,1,3,190,28,0,110,82,218,255,200,204,192,255,201,145,118,0,117,204,146,0,132,32,98,1,192,194,121,0,106,161,248,1,237,88,124,0,23,212,26,0,205,171,90,255,248,48,216,1,141,37,230,255,124,203,0,254,158,168,30,255,214,248,21,0,112,187,7,255], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+20480); +/* memory initializer */ allocate([75,133,239,255,74,227,243,255,250,147,70,0,214,120,162,0,167,9,179,255,22,158,18,0,218,77,209,1,97,109,81,255,244,33,179,255,57,52,57,255,65,172,210,255,249,71,209,255,142,169,238,0,158,189,153,255,174,254,103,254,98,33,14,0,141,76,230,255,113,139,52,255,15,58,212,0,168,215,201,255,248,204,215,1,223,68,160,255,57,154,183,254,47,231,121,0,106,166,137,0,81,136,138,0,165,43,51,0,231,139,61,0,57,95,59,254,118,98,25,255,151,63,236,1,94,190,250,255,169,185,114,1,5,250,58,255,75,105,97,1,215,223,134,0,113,99,163,1,128,62,112,0,99,106,147,0,163,195,10,0,33,205,182,0,214,14,174,255,129,38,231,255,53,182,223,0,98,42,159,255,247,13,40,0,188,210,177,1,6,21,0,255,255,61,148,254,137,45,129,255,89,26,116,254,126,38,114,0,251,50,242,254,121,134,128,255,204,249,167,254,165,235,215,0,202,177,243,0,133,141,62,0,240,130,190,1,110,175,255,0,0,20,146,1,37,210,121,255,7,39,130,0,142,250,84,255,141,200,207,0,9,95,104,255,11,244,174,0,134,232,126,0,167,1,123,254,16,193,149,255,232,233,239,1,213,70,112,255,252,116,160,254,242,222,220,255,205,85,227,0,7,185,58,0,118,247,63,1,116,77,177,255,62,245,200,254,63,18,37,255,107,53,232,254,50,221,211,0,162,219,7,254,2,94,43,0,182,62,182,254,160,78,200,255,135,140,170,0,235,184,228,0,175,53,138,254,80,58,77,255,152,201,2,1,63,196,34,0,5,30,184,0,171,176,154,0,121,59,206,0,38,99,39,0,172,80,77,254,0,134,151,0,186,33,241,254,94,253,223,255,44,114,252,0,108,126,57,255,201,40,13,255,39,229,27,255,39,239,23,1,151,121,51,255,153,150,248,0,10,234,174,255,118,246,4,254,200,245,38,0,69,161,242,1,16,178,150,0,113,56,130,0,171,31,105,0,26,88,108,255,49,42,106,0,251,169,66,0,69,93,149,0,20,57,254,0,164,25,111,0,90,188,90,255,204,4,197,0,40,213,50,1,212,96,132,255,88,138,180,254,228,146,124,255,184,246,247,0,65,117,86,255,253,102,210,254,254,121,36,0,137,115,3,255,60,24,216,0,134,18,29,0,59,226,97,0,176,142,71,0,7,209,161,0,189,84,51,254,155,250,72,0,213,84,235,255,45,222,224,0,238,148,143,255,170,42,53,255,78,167,117,0,186,0,40,255,125,177,103,255,69,225,66,0,227,7,88,1,75,172,6,0,169,45,227,1,16,36,70,255,50,2,9,255,139,193,22,0,143,183,231,254,218,69,50,0,236,56,161,1,213,131,42,0,138,145,44,254,136,229,40,255,49,63,35,255,61,145,245,255,101,192,2,254,232,167,113,0,152,104,38,1,121,185,218,0,121,139,211,254,119,240,35,0,65,189,217,254,187,179,162,255,160,187,230,0,62,248,14,255,60,78,97,0,255,247,163,255,225,59,91,255,107,71,58,255,241,47,33,1,50,117,236,0,219,177,63,254,244,90,179,0,35,194,215,255,189,67,50,255,23,135,129,0,104,189,37,255,185,57,194,0,35,62,231,255,220,248,108,0,12,231,178,0,143,80,91,1,131,93,101,255,144,39,2,1,255,250,178,0,5,17,236,254,139,32,46,0,204,188,38,254,245,115,52,255,191,113,73,254,191,108,69,255,22,69,245,1,23,203,178,0,170,99,170,0,65,248,111,0,37,108,153,255,64,37,69,0,0,88,62,254,89,148,144,255,191,68,224,1,241,39,53,0,41,203,237,255,145,126,194,255,221,42,253,255,25,99,151,0,97,253,223,1,74,115,49,255,6,175,72,255,59,176,203,0,124,183,249,1,228,228,99,0,129,12,207,254,168,192,195,255,204,176,16,254,152,234,171,0,77,37,85,255,33,120,135,255,142,194,227,1,31,214,58,0,213,187,125,255,232,46,60,255,190,116,42,254,151,178,19,255,51,62,237,254,204,236,193,0,194,232,60,0,172,34,157,255,189,16,184,254,103,3,95,255,141,233,36,254,41,25,11,255,21,195,166,0,118,245,45,0,67,213,149,255,159,12,18,255,187,164,227,1,160,25,5,0,12,78,195,1,43,197,225,0,48,142,41,254,196,155,60,255,223,199,18,1,145,136,156,0,252,117,169,254,145,226,238,0,239,23,107,0,109,181,188,255,230,112,49,254,73,170,237,255,231,183,227,255,80,220,20,0,194,107,127,1,127,205,101,0,46,52,197,1,210,171,36,255,88,3,90,255,56,151,141,0,96,187,255,255,42,78,200,0,254,70,70,1,244,125,168,0,204,68,138,1,124,215,70,0,102,66,200,254,17,52,228,0,117,220,143,254,203,248,123,0,56,18,174,255,186,151,164,255,51,232,208,1,160,228,43,255,249,29,25,1,68,190,63,0,8,201,188,243,103,230,9,106,59,167,202,132,133,174,103,187,43,248,148,254,114,243,110,60,241,54,29,95,58,245,79,165,209,130,230,173,127,82,14,81,31,108,62,43,140,104,5,155,107,189,65,251,171,217,131,31,121,33,126,19,25,205,224,91,34,174,40,215,152,47,138,66,205,101,239,35,145,68,55,113,47,59,77,236,207,251,192,181,188,219,137,129,165,219,181,233,56,181,72,243,91,194,86,57,25,208,5,182,241,17,241,89,155,79,25,175,164,130,63,146,24,129,109,218,213,94,28,171,66,2,3,163,152,170,7,216,190,111,112,69,1,91,131,18,140,178,228,78,190,133,49,36,226,180,255,213,195,125,12,85,111,137,123,242,116,93,190,114,177,150,22,59,254,177,222,128,53,18,199,37,167,6,220,155,148,38,105,207,116,241,155,193,210,74,241,158,193,105,155,228,227,37,79,56,134,71,190,239,181,213,140,139,198,157,193,15,101,156,172,119,204,161,12,36,117,2,43,89,111,44,233,45,131,228,166,110,170,132,116,74,212,251,65,189,220,169,176,92,181,83,17,131,218,136,249,118,171,223,102,238,82,81,62,152,16,50,180,45,109,198,49,168,63,33,251,152,200,39,3,176,228,14,239,190,199,127,89,191,194,143,168,61,243,11,224,198,37,167,10,147,71,145,167,213,111,130,3,224,81,99,202,6,112,110,14,10,103,41,41,20,252,47,210,70,133,10,183,39,38,201,38,92,56,33,27,46,237,42,196,90,252,109,44,77,223,179,149,157,19,13,56,83,222,99,175,139,84,115,10,101,168,178,119,60,187,10,106,118,230,174,237,71,46,201,194,129,59,53,130,20,133,44,114,146,100,3,241,76,161,232,191,162,1,48,66,188,75,102,26,168,145,151,248,208,112,139,75,194,48,190,84,6,163,81,108,199,24,82,239,214,25,232,146,209,16,169,101,85,36,6,153,214,42,32,113,87,133,53,14,244,184,209,187,50,112,160,106,16,200,208,210,184,22,193,164,25,83,171,65,81,8,108,55,30,153,235,142,223,76,119,72,39,168,72,155,225,181,188,176,52,99,90,201,197,179,12,28,57,203,138,65,227,74,170,216,78,115,227,99,119,79,202,156,91,163,184,178,214,243,111,46,104,252,178,239,93,238,130,143,116,96,47,23,67,111,99,165,120,114,171,240,161,20,120,200,132,236,57,100,26,8,2,199,140,40,30,99,35,250,255,190,144,233,189,130,222,235,108,80,164,21,121,198,178,247,163,249,190,43,83,114,227,242,120,113,198,156,97,38,234,206,62,39,202,7,194,192,33,199,184,134,209,30,235,224,205,214,125,218,234,120,209,110,238,127,79,125,245,186,111,23,114,170,103,240,6,166,152,200,162,197,125,99,10,174,13,249,190,4,152,63,17,27,71,28,19,53,11,113,27,132,125,4,35,245,119,219,40,147,36,199,64,123,171,202,50,188,190,201,21,10,190,158,60,76,13,16,156,196,103,29,67,182,66,62,203,190,212,197,76,42,126,101,252,156,41,127,89,236,250,214,58,171,111,203,95,23,88,71,74,140,25,68,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+30720); + + + + +var tempDoublePtr = Runtime.alignMemory(allocate(12, "i8", ALLOC_STATIC), 8); + +assert(tempDoublePtr % 8 == 0); + +function copyTempFloat(ptr) { // functions, because inlining this code increases code size too much + + HEAP8[tempDoublePtr] = HEAP8[ptr]; + + HEAP8[tempDoublePtr+1] = HEAP8[ptr+1]; + + HEAP8[tempDoublePtr+2] = HEAP8[ptr+2]; + + HEAP8[tempDoublePtr+3] = HEAP8[ptr+3]; + +} + +function copyTempDouble(ptr) { + + HEAP8[tempDoublePtr] = HEAP8[ptr]; + + HEAP8[tempDoublePtr+1] = HEAP8[ptr+1]; + + HEAP8[tempDoublePtr+2] = HEAP8[ptr+2]; + + HEAP8[tempDoublePtr+3] = HEAP8[ptr+3]; + + HEAP8[tempDoublePtr+4] = HEAP8[ptr+4]; + + HEAP8[tempDoublePtr+5] = HEAP8[ptr+5]; + + HEAP8[tempDoublePtr+6] = HEAP8[ptr+6]; + + HEAP8[tempDoublePtr+7] = HEAP8[ptr+7]; + +} + + + + Module["_bitshift64Ashr"] = _bitshift64Ashr; + + + Module["_i64Subtract"] = _i64Subtract; + + + Module["_i64Add"] = _i64Add; + + + Module["_memset"] = _memset; + + + Module["_bitshift64Lshr"] = _bitshift64Lshr; + + + Module["_bitshift64Shl"] = _bitshift64Shl; + + function _abort() { + Module['abort'](); + } + + + Module["_strlen"] = _strlen; + + + function _emscripten_memcpy_big(dest, src, num) { + HEAPU8.set(HEAPU8.subarray(src, src+num), dest); + return dest; + } + Module["_memcpy"] = _memcpy; + + + + var ___errno_state=0;function ___setErrNo(value) { + // For convenient setting and returning of errno. + HEAP32[((___errno_state)>>2)]=value; + return value; + } + + var ERRNO_CODES={EPERM:1,ENOENT:2,ESRCH:3,EINTR:4,EIO:5,ENXIO:6,E2BIG:7,ENOEXEC:8,EBADF:9,ECHILD:10,EAGAIN:11,EWOULDBLOCK:11,ENOMEM:12,EACCES:13,EFAULT:14,ENOTBLK:15,EBUSY:16,EEXIST:17,EXDEV:18,ENODEV:19,ENOTDIR:20,EISDIR:21,EINVAL:22,ENFILE:23,EMFILE:24,ENOTTY:25,ETXTBSY:26,EFBIG:27,ENOSPC:28,ESPIPE:29,EROFS:30,EMLINK:31,EPIPE:32,EDOM:33,ERANGE:34,ENOMSG:42,EIDRM:43,ECHRNG:44,EL2NSYNC:45,EL3HLT:46,EL3RST:47,ELNRNG:48,EUNATCH:49,ENOCSI:50,EL2HLT:51,EDEADLK:35,ENOLCK:37,EBADE:52,EBADR:53,EXFULL:54,ENOANO:55,EBADRQC:56,EBADSLT:57,EDEADLOCK:35,EBFONT:59,ENOSTR:60,ENODATA:61,ETIME:62,ENOSR:63,ENONET:64,ENOPKG:65,EREMOTE:66,ENOLINK:67,EADV:68,ESRMNT:69,ECOMM:70,EPROTO:71,EMULTIHOP:72,EDOTDOT:73,EBADMSG:74,ENOTUNIQ:76,EBADFD:77,EREMCHG:78,ELIBACC:79,ELIBBAD:80,ELIBSCN:81,ELIBMAX:82,ELIBEXEC:83,ENOSYS:38,ENOTEMPTY:39,ENAMETOOLONG:36,ELOOP:40,EOPNOTSUPP:95,EPFNOSUPPORT:96,ECONNRESET:104,ENOBUFS:105,EAFNOSUPPORT:97,EPROTOTYPE:91,ENOTSOCK:88,ENOPROTOOPT:92,ESHUTDOWN:108,ECONNREFUSED:111,EADDRINUSE:98,ECONNABORTED:103,ENETUNREACH:101,ENETDOWN:100,ETIMEDOUT:110,EHOSTDOWN:112,EHOSTUNREACH:113,EINPROGRESS:115,EALREADY:114,EDESTADDRREQ:89,EMSGSIZE:90,EPROTONOSUPPORT:93,ESOCKTNOSUPPORT:94,EADDRNOTAVAIL:99,ENETRESET:102,EISCONN:106,ENOTCONN:107,ETOOMANYREFS:109,EUSERS:87,EDQUOT:122,ESTALE:116,ENOTSUP:95,ENOMEDIUM:123,EILSEQ:84,EOVERFLOW:75,ECANCELED:125,ENOTRECOVERABLE:131,EOWNERDEAD:130,ESTRPIPE:86};function _sysconf(name) { + // long sysconf(int name); + // http://pubs.opengroup.org/onlinepubs/009695399/functions/sysconf.html + switch(name) { + case 30: return PAGE_SIZE; + case 132: + case 133: + case 12: + case 137: + case 138: + case 15: + case 235: + case 16: + case 17: + case 18: + case 19: + case 20: + case 149: + case 13: + case 10: + case 236: + case 153: + case 9: + case 21: + case 22: + case 159: + case 154: + case 14: + case 77: + case 78: + case 139: + case 80: + case 81: + case 79: + case 82: + case 68: + case 67: + case 164: + case 11: + case 29: + case 47: + case 48: + case 95: + case 52: + case 51: + case 46: + return 200809; + case 27: + case 246: + case 127: + case 128: + case 23: + case 24: + case 160: + case 161: + case 181: + case 182: + case 242: + case 183: + case 184: + case 243: + case 244: + case 245: + case 165: + case 178: + case 179: + case 49: + case 50: + case 168: + case 169: + case 175: + case 170: + case 171: + case 172: + case 97: + case 76: + case 32: + case 173: + case 35: + return -1; + case 176: + case 177: + case 7: + case 155: + case 8: + case 157: + case 125: + case 126: + case 92: + case 93: + case 129: + case 130: + case 131: + case 94: + case 91: + return 1; + case 74: + case 60: + case 69: + case 70: + case 4: + return 1024; + case 31: + case 42: + case 72: + return 32; + case 87: + case 26: + case 33: + return 2147483647; + case 34: + case 1: + return 47839; + case 38: + case 36: + return 99; + case 43: + case 37: + return 2048; + case 0: return 2097152; + case 3: return 65536; + case 28: return 32768; + case 44: return 32767; + case 75: return 16384; + case 39: return 1000; + case 89: return 700; + case 71: return 256; + case 40: return 255; + case 2: return 100; + case 180: return 64; + case 25: return 20; + case 5: return 16; + case 6: return 6; + case 73: return 4; + case 84: { + if (typeof navigator === 'object') return navigator['hardwareConcurrency'] || 1; + return 1; + } + } + ___setErrNo(ERRNO_CODES.EINVAL); + return -1; + } + + function _sbrk(bytes) { + // Implement a Linux-like 'memory area' for our 'process'. + // Changes the size of the memory area by |bytes|; returns the + // address of the previous top ('break') of the memory area + // We control the "dynamic" memory - DYNAMIC_BASE to DYNAMICTOP + var self = _sbrk; + if (!self.called) { + DYNAMICTOP = alignMemoryPage(DYNAMICTOP); // make sure we start out aligned + self.called = true; + assert(Runtime.dynamicAlloc); + self.alloc = Runtime.dynamicAlloc; + Runtime.dynamicAlloc = function() { abort('cannot dynamically allocate, sbrk now has control') }; + } + var ret = DYNAMICTOP; + if (bytes != 0) self.alloc(bytes); + return ret; // Previous break location. + } + + + Module["_memmove"] = _memmove; + + function ___errno_location() { + return ___errno_state; + } + + + + + var ERRNO_MESSAGES={0:"Success",1:"Not super-user",2:"No such file or directory",3:"No such process",4:"Interrupted system call",5:"I/O error",6:"No such device or address",7:"Arg list too long",8:"Exec format error",9:"Bad file number",10:"No children",11:"No more processes",12:"Not enough core",13:"Permission denied",14:"Bad address",15:"Block device required",16:"Mount device busy",17:"File exists",18:"Cross-device link",19:"No such device",20:"Not a directory",21:"Is a directory",22:"Invalid argument",23:"Too many open files in system",24:"Too many open files",25:"Not a typewriter",26:"Text file busy",27:"File too large",28:"No space left on device",29:"Illegal seek",30:"Read only file system",31:"Too many links",32:"Broken pipe",33:"Math arg out of domain of func",34:"Math result not representable",35:"File locking deadlock error",36:"File or path name too long",37:"No record locks available",38:"Function not implemented",39:"Directory not empty",40:"Too many symbolic links",42:"No message of desired type",43:"Identifier removed",44:"Channel number out of range",45:"Level 2 not synchronized",46:"Level 3 halted",47:"Level 3 reset",48:"Link number out of range",49:"Protocol driver not attached",50:"No CSI structure available",51:"Level 2 halted",52:"Invalid exchange",53:"Invalid request descriptor",54:"Exchange full",55:"No anode",56:"Invalid request code",57:"Invalid slot",59:"Bad font file fmt",60:"Device not a stream",61:"No data (for no delay io)",62:"Timer expired",63:"Out of streams resources",64:"Machine is not on the network",65:"Package not installed",66:"The object is remote",67:"The link has been severed",68:"Advertise error",69:"Srmount error",70:"Communication error on send",71:"Protocol error",72:"Multihop attempted",73:"Cross mount point (not really error)",74:"Trying to read unreadable message",75:"Value too large for defined data type",76:"Given log. name not unique",77:"f.d. invalid for this operation",78:"Remote address changed",79:"Can access a needed shared lib",80:"Accessing a corrupted shared lib",81:".lib section in a.out corrupted",82:"Attempting to link in too many libs",83:"Attempting to exec a shared library",84:"Illegal byte sequence",86:"Streams pipe error",87:"Too many users",88:"Socket operation on non-socket",89:"Destination address required",90:"Message too long",91:"Protocol wrong type for socket",92:"Protocol not available",93:"Unknown protocol",94:"Socket type not supported",95:"Not supported",96:"Protocol family not supported",97:"Address family not supported by protocol family",98:"Address already in use",99:"Address not available",100:"Network interface is not configured",101:"Network is unreachable",102:"Connection reset by network",103:"Connection aborted",104:"Connection reset by peer",105:"No buffer space available",106:"Socket is already connected",107:"Socket is not connected",108:"Can't send after socket shutdown",109:"Too many references",110:"Connection timed out",111:"Connection refused",112:"Host is down",113:"Host is unreachable",114:"Socket already connected",115:"Connection already in progress",116:"Stale file handle",122:"Quota exceeded",123:"No medium (in tape drive)",125:"Operation canceled",130:"Previous owner died",131:"State not recoverable"}; + + var TTY={ttys:[],init:function () { + // https://github.com/kripken/emscripten/pull/1555 + // if (ENVIRONMENT_IS_NODE) { + // // currently, FS.init does not distinguish if process.stdin is a file or TTY + // // device, it always assumes it's a TTY device. because of this, we're forcing + // // process.stdin to UTF8 encoding to at least make stdin reading compatible + // // with text files until FS.init can be refactored. + // process['stdin']['setEncoding']('utf8'); + // } + },shutdown:function () { + // https://github.com/kripken/emscripten/pull/1555 + // if (ENVIRONMENT_IS_NODE) { + // // inolen: any idea as to why node -e 'process.stdin.read()' wouldn't exit immediately (with process.stdin being a tty)? + // // isaacs: because now it's reading from the stream, you've expressed interest in it, so that read() kicks off a _read() which creates a ReadReq operation + // // inolen: I thought read() in that case was a synchronous operation that just grabbed some amount of buffered data if it exists? + // // isaacs: it is. but it also triggers a _read() call, which calls readStart() on the handle + // // isaacs: do process.stdin.pause() and i'd think it'd probably close the pending call + // process['stdin']['pause'](); + // } + },register:function (dev, ops) { + TTY.ttys[dev] = { input: [], output: [], ops: ops }; + FS.registerDevice(dev, TTY.stream_ops); + },stream_ops:{open:function (stream) { + var tty = TTY.ttys[stream.node.rdev]; + if (!tty) { + throw new FS.ErrnoError(ERRNO_CODES.ENODEV); + } + stream.tty = tty; + stream.seekable = false; + },close:function (stream) { + // flush any pending line data + stream.tty.ops.flush(stream.tty); + },flush:function (stream) { + stream.tty.ops.flush(stream.tty); + },read:function (stream, buffer, offset, length, pos /* ignored */) { + if (!stream.tty || !stream.tty.ops.get_char) { + throw new FS.ErrnoError(ERRNO_CODES.ENXIO); + } + var bytesRead = 0; + for (var i = 0; i < length; i++) { + var result; + try { + result = stream.tty.ops.get_char(stream.tty); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + if (result === undefined && bytesRead === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EAGAIN); + } + if (result === null || result === undefined) break; + bytesRead++; + buffer[offset+i] = result; + } + if (bytesRead) { + stream.node.timestamp = Date.now(); + } + return bytesRead; + },write:function (stream, buffer, offset, length, pos) { + if (!stream.tty || !stream.tty.ops.put_char) { + throw new FS.ErrnoError(ERRNO_CODES.ENXIO); + } + for (var i = 0; i < length; i++) { + try { + stream.tty.ops.put_char(stream.tty, buffer[offset+i]); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + } + if (length) { + stream.node.timestamp = Date.now(); + } + return i; + }},default_tty_ops:{get_char:function (tty) { + if (!tty.input.length) { + var result = null; + if (ENVIRONMENT_IS_NODE) { + result = process['stdin']['read'](); + if (!result) { + if (process['stdin']['_readableState'] && process['stdin']['_readableState']['ended']) { + return null; // EOF + } + return undefined; // no data available + } + } else if (typeof window != 'undefined' && + typeof window.prompt == 'function') { + // Browser. + result = window.prompt('Input: '); // returns null on cancel + if (result !== null) { + result += '\n'; + } + } else if (typeof readline == 'function') { + // Command line. + result = readline(); + if (result !== null) { + result += '\n'; + } + } + if (!result) { + return null; + } + tty.input = intArrayFromString(result, true); + } + return tty.input.shift(); + },flush:function (tty) { + if (tty.output && tty.output.length > 0) { + Module['print'](tty.output.join('')); + tty.output = []; + } + },put_char:function (tty, val) { + if (val === null || val === 10) { + Module['print'](tty.output.join('')); + tty.output = []; + } else { + tty.output.push(TTY.utf8.processCChar(val)); + } + }},default_tty1_ops:{put_char:function (tty, val) { + if (val === null || val === 10) { + Module['printErr'](tty.output.join('')); + tty.output = []; + } else { + tty.output.push(TTY.utf8.processCChar(val)); + } + },flush:function (tty) { + if (tty.output && tty.output.length > 0) { + Module['printErr'](tty.output.join('')); + tty.output = []; + } + }}}; + + var MEMFS={ops_table:null,mount:function (mount) { + return MEMFS.createNode(null, '/', 16384 | 511 /* 0777 */, 0); + },createNode:function (parent, name, mode, dev) { + if (FS.isBlkdev(mode) || FS.isFIFO(mode)) { + // no supported + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + if (!MEMFS.ops_table) { + MEMFS.ops_table = { + dir: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr, + lookup: MEMFS.node_ops.lookup, + mknod: MEMFS.node_ops.mknod, + rename: MEMFS.node_ops.rename, + unlink: MEMFS.node_ops.unlink, + rmdir: MEMFS.node_ops.rmdir, + readdir: MEMFS.node_ops.readdir, + symlink: MEMFS.node_ops.symlink + }, + stream: { + llseek: MEMFS.stream_ops.llseek + } + }, + file: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr + }, + stream: { + llseek: MEMFS.stream_ops.llseek, + read: MEMFS.stream_ops.read, + write: MEMFS.stream_ops.write, + allocate: MEMFS.stream_ops.allocate, + mmap: MEMFS.stream_ops.mmap + } + }, + link: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr, + readlink: MEMFS.node_ops.readlink + }, + stream: {} + }, + chrdev: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr + }, + stream: FS.chrdev_stream_ops + } + }; + } + var node = FS.createNode(parent, name, mode, dev); + if (FS.isDir(node.mode)) { + node.node_ops = MEMFS.ops_table.dir.node; + node.stream_ops = MEMFS.ops_table.dir.stream; + node.contents = {}; + } else if (FS.isFile(node.mode)) { + node.node_ops = MEMFS.ops_table.file.node; + node.stream_ops = MEMFS.ops_table.file.stream; + node.usedBytes = 0; // The actual number of bytes used in the typed array, as opposed to contents.buffer.byteLength which gives the whole capacity. + // When the byte data of the file is populated, this will point to either a typed array, or a normal JS array. Typed arrays are preferred + // for performance, and used by default. However, typed arrays are not resizable like normal JS arrays are, so there is a small disk size + // penalty involved for appending file writes that continuously grow a file similar to std::vector capacity vs used -scheme. + node.contents = null; + } else if (FS.isLink(node.mode)) { + node.node_ops = MEMFS.ops_table.link.node; + node.stream_ops = MEMFS.ops_table.link.stream; + } else if (FS.isChrdev(node.mode)) { + node.node_ops = MEMFS.ops_table.chrdev.node; + node.stream_ops = MEMFS.ops_table.chrdev.stream; + } + node.timestamp = Date.now(); + // add the new node to the parent + if (parent) { + parent.contents[name] = node; + } + return node; + },getFileDataAsRegularArray:function (node) { + if (node.contents && node.contents.subarray) { + var arr = []; + for (var i = 0; i < node.usedBytes; ++i) arr.push(node.contents[i]); + return arr; // Returns a copy of the original data. + } + return node.contents; // No-op, the file contents are already in a JS array. Return as-is. + },getFileDataAsTypedArray:function (node) { + if (!node.contents) return new Uint8Array; + if (node.contents.subarray) return node.contents.subarray(0, node.usedBytes); // Make sure to not return excess unused bytes. + return new Uint8Array(node.contents); + },expandFileStorage:function (node, newCapacity) { + + // If we are asked to expand the size of a file that already exists, revert to using a standard JS array to store the file + // instead of a typed array. This makes resizing the array more flexible because we can just .push() elements at the back to + // increase the size. + if (node.contents && node.contents.subarray && newCapacity > node.contents.length) { + node.contents = MEMFS.getFileDataAsRegularArray(node); + node.usedBytes = node.contents.length; // We might be writing to a lazy-loaded file which had overridden this property, so force-reset it. + } + + if (!node.contents || node.contents.subarray) { // Keep using a typed array if creating a new storage, or if old one was a typed array as well. + var prevCapacity = node.contents ? node.contents.buffer.byteLength : 0; + if (prevCapacity >= newCapacity) return; // No need to expand, the storage was already large enough. + // Don't expand strictly to the given requested limit if it's only a very small increase, but instead geometrically grow capacity. + // For small filesizes (<1MB), perform size*2 geometric increase, but for large sizes, do a much more conservative size*1.125 increase to + // avoid overshooting the allocation cap by a very large margin. + var CAPACITY_DOUBLING_MAX = 1024 * 1024; + newCapacity = Math.max(newCapacity, (prevCapacity * (prevCapacity < CAPACITY_DOUBLING_MAX ? 2.0 : 1.125)) | 0); + if (prevCapacity != 0) newCapacity = Math.max(newCapacity, 256); // At minimum allocate 256b for each file when expanding. + var oldContents = node.contents; + node.contents = new Uint8Array(newCapacity); // Allocate new storage. + if (node.usedBytes > 0) node.contents.set(oldContents.subarray(0, node.usedBytes), 0); // Copy old data over to the new storage. + return; + } + // Not using a typed array to back the file storage. Use a standard JS array instead. + if (!node.contents && newCapacity > 0) node.contents = []; + while (node.contents.length < newCapacity) node.contents.push(0); + },resizeFileStorage:function (node, newSize) { + if (node.usedBytes == newSize) return; + if (newSize == 0) { + node.contents = null; // Fully decommit when requesting a resize to zero. + node.usedBytes = 0; + return; + } + + if (!node.contents || node.contents.subarray) { // Resize a typed array if that is being used as the backing store. + var oldContents = node.contents; + node.contents = new Uint8Array(new ArrayBuffer(newSize)); // Allocate new storage. + if (oldContents) { + node.contents.set(oldContents.subarray(0, Math.min(newSize, node.usedBytes))); // Copy old data over to the new storage. + } + node.usedBytes = newSize; + return; + } + // Backing with a JS array. + if (!node.contents) node.contents = []; + if (node.contents.length > newSize) node.contents.length = newSize; + else while (node.contents.length < newSize) node.contents.push(0); + node.usedBytes = newSize; + },node_ops:{getattr:function (node) { + var attr = {}; + // device numbers reuse inode numbers. + attr.dev = FS.isChrdev(node.mode) ? node.id : 1; + attr.ino = node.id; + attr.mode = node.mode; + attr.nlink = 1; + attr.uid = 0; + attr.gid = 0; + attr.rdev = node.rdev; + if (FS.isDir(node.mode)) { + attr.size = 4096; + } else if (FS.isFile(node.mode)) { + attr.size = node.usedBytes; + } else if (FS.isLink(node.mode)) { + attr.size = node.link.length; + } else { + attr.size = 0; + } + attr.atime = new Date(node.timestamp); + attr.mtime = new Date(node.timestamp); + attr.ctime = new Date(node.timestamp); + // NOTE: In our implementation, st_blocks = Math.ceil(st_size/st_blksize), + // but this is not required by the standard. + attr.blksize = 4096; + attr.blocks = Math.ceil(attr.size / attr.blksize); + return attr; + },setattr:function (node, attr) { + if (attr.mode !== undefined) { + node.mode = attr.mode; + } + if (attr.timestamp !== undefined) { + node.timestamp = attr.timestamp; + } + if (attr.size !== undefined) { + MEMFS.resizeFileStorage(node, attr.size); + } + },lookup:function (parent, name) { + throw FS.genericErrors[ERRNO_CODES.ENOENT]; + },mknod:function (parent, name, mode, dev) { + return MEMFS.createNode(parent, name, mode, dev); + },rename:function (old_node, new_dir, new_name) { + // if we're overwriting a directory at new_name, make sure it's empty. + if (FS.isDir(old_node.mode)) { + var new_node; + try { + new_node = FS.lookupNode(new_dir, new_name); + } catch (e) { + } + if (new_node) { + for (var i in new_node.contents) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); + } + } + } + // do the internal rewiring + delete old_node.parent.contents[old_node.name]; + old_node.name = new_name; + new_dir.contents[new_name] = old_node; + old_node.parent = new_dir; + },unlink:function (parent, name) { + delete parent.contents[name]; + },rmdir:function (parent, name) { + var node = FS.lookupNode(parent, name); + for (var i in node.contents) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); + } + delete parent.contents[name]; + },readdir:function (node) { + var entries = ['.', '..'] + for (var key in node.contents) { + if (!node.contents.hasOwnProperty(key)) { + continue; + } + entries.push(key); + } + return entries; + },symlink:function (parent, newname, oldpath) { + var node = MEMFS.createNode(parent, newname, 511 /* 0777 */ | 40960, 0); + node.link = oldpath; + return node; + },readlink:function (node) { + if (!FS.isLink(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + return node.link; + }},stream_ops:{read:function (stream, buffer, offset, length, position) { + var contents = stream.node.contents; + if (position >= stream.node.usedBytes) return 0; + var size = Math.min(stream.node.usedBytes - position, length); + assert(size >= 0); + if (size > 8 && contents.subarray) { // non-trivial, and typed array + buffer.set(contents.subarray(position, position + size), offset); + } else + { + for (var i = 0; i < size; i++) buffer[offset + i] = contents[position + i]; + } + return size; + },write:function (stream, buffer, offset, length, position, canOwn) { + if (!length) return 0; + var node = stream.node; + node.timestamp = Date.now(); + + if (buffer.subarray && (!node.contents || node.contents.subarray)) { // This write is from a typed array to a typed array? + if (canOwn) { // Can we just reuse the buffer we are given? + node.contents = buffer.subarray(offset, offset + length); + node.usedBytes = length; + return length; + } else if (node.usedBytes === 0 && position === 0) { // If this is a simple first write to an empty file, do a fast set since we don't need to care about old data. + node.contents = new Uint8Array(buffer.subarray(offset, offset + length)); + node.usedBytes = length; + return length; + } else if (position + length <= node.usedBytes) { // Writing to an already allocated and used subrange of the file? + node.contents.set(buffer.subarray(offset, offset + length), position); + return length; + } + } + // Appending to an existing file and we need to reallocate, or source data did not come as a typed array. + MEMFS.expandFileStorage(node, position+length); + if (node.contents.subarray && buffer.subarray) node.contents.set(buffer.subarray(offset, offset + length), position); // Use typed array write if available. + else + for (var i = 0; i < length; i++) { + node.contents[position + i] = buffer[offset + i]; // Or fall back to manual write if not. + } + node.usedBytes = Math.max(node.usedBytes, position+length); + return length; + },llseek:function (stream, offset, whence) { + var position = offset; + if (whence === 1) { // SEEK_CUR. + position += stream.position; + } else if (whence === 2) { // SEEK_END. + if (FS.isFile(stream.node.mode)) { + position += stream.node.usedBytes; + } + } + if (position < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + return position; + },allocate:function (stream, offset, length) { + MEMFS.expandFileStorage(stream.node, offset + length); + stream.node.usedBytes = Math.max(stream.node.usedBytes, offset + length); + },mmap:function (stream, buffer, offset, length, position, prot, flags) { + if (!FS.isFile(stream.node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.ENODEV); + } + var ptr; + var allocated; + var contents = stream.node.contents; + // Only make a new copy when MAP_PRIVATE is specified. + if ( !(flags & 2) && + (contents.buffer === buffer || contents.buffer === buffer.buffer) ) { + // We can't emulate MAP_SHARED when the file is not backed by the buffer + // we're mapping to (e.g. the HEAP buffer). + allocated = false; + ptr = contents.byteOffset; + } else { + // Try to avoid unnecessary slices. + if (position > 0 || position + length < stream.node.usedBytes) { + if (contents.subarray) { + contents = contents.subarray(position, position + length); + } else { + contents = Array.prototype.slice.call(contents, position, position + length); + } + } + allocated = true; + ptr = _malloc(length); + if (!ptr) { + throw new FS.ErrnoError(ERRNO_CODES.ENOMEM); + } + buffer.set(contents, ptr); + } + return { ptr: ptr, allocated: allocated }; + }}}; + + var IDBFS={dbs:{},indexedDB:function () { + if (typeof indexedDB !== 'undefined') return indexedDB; + var ret = null; + if (typeof window === 'object') ret = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; + assert(ret, 'IDBFS used, but indexedDB not supported'); + return ret; + },DB_VERSION:21,DB_STORE_NAME:"FILE_DATA",mount:function (mount) { + // reuse all of the core MEMFS functionality + return MEMFS.mount.apply(null, arguments); + },syncfs:function (mount, populate, callback) { + IDBFS.getLocalSet(mount, function(err, local) { + if (err) return callback(err); + + IDBFS.getRemoteSet(mount, function(err, remote) { + if (err) return callback(err); + + var src = populate ? remote : local; + var dst = populate ? local : remote; + + IDBFS.reconcile(src, dst, callback); + }); + }); + },getDB:function (name, callback) { + // check the cache first + var db = IDBFS.dbs[name]; + if (db) { + return callback(null, db); + } + + var req; + try { + req = IDBFS.indexedDB().open(name, IDBFS.DB_VERSION); + } catch (e) { + return callback(e); + } + req.onupgradeneeded = function(e) { + var db = e.target.result; + var transaction = e.target.transaction; + + var fileStore; + + if (db.objectStoreNames.contains(IDBFS.DB_STORE_NAME)) { + fileStore = transaction.objectStore(IDBFS.DB_STORE_NAME); + } else { + fileStore = db.createObjectStore(IDBFS.DB_STORE_NAME); + } + + fileStore.createIndex('timestamp', 'timestamp', { unique: false }); + }; + req.onsuccess = function() { + db = req.result; + + // add to the cache + IDBFS.dbs[name] = db; + callback(null, db); + }; + req.onerror = function() { + callback(this.error); + }; + },getLocalSet:function (mount, callback) { + var entries = {}; + + function isRealDir(p) { + return p !== '.' && p !== '..'; + }; + function toAbsolute(root) { + return function(p) { + return PATH.join2(root, p); + } + }; + + var check = FS.readdir(mount.mountpoint).filter(isRealDir).map(toAbsolute(mount.mountpoint)); + + while (check.length) { + var path = check.pop(); + var stat; + + try { + stat = FS.stat(path); + } catch (e) { + return callback(e); + } + + if (FS.isDir(stat.mode)) { + check.push.apply(check, FS.readdir(path).filter(isRealDir).map(toAbsolute(path))); + } + + entries[path] = { timestamp: stat.mtime }; + } + + return callback(null, { type: 'local', entries: entries }); + },getRemoteSet:function (mount, callback) { + var entries = {}; + + IDBFS.getDB(mount.mountpoint, function(err, db) { + if (err) return callback(err); + + var transaction = db.transaction([IDBFS.DB_STORE_NAME], 'readonly'); + transaction.onerror = function() { callback(this.error); }; + + var store = transaction.objectStore(IDBFS.DB_STORE_NAME); + var index = store.index('timestamp'); + + index.openKeyCursor().onsuccess = function(event) { + var cursor = event.target.result; + + if (!cursor) { + return callback(null, { type: 'remote', db: db, entries: entries }); + } + + entries[cursor.primaryKey] = { timestamp: cursor.key }; + + cursor.continue(); + }; + }); + },loadLocalEntry:function (path, callback) { + var stat, node; + + try { + var lookup = FS.lookupPath(path); + node = lookup.node; + stat = FS.stat(path); + } catch (e) { + return callback(e); + } + + if (FS.isDir(stat.mode)) { + return callback(null, { timestamp: stat.mtime, mode: stat.mode }); + } else if (FS.isFile(stat.mode)) { + // Performance consideration: storing a normal JavaScript array to a IndexedDB is much slower than storing a typed array. + // Therefore always convert the file contents to a typed array first before writing the data to IndexedDB. + node.contents = MEMFS.getFileDataAsTypedArray(node); + return callback(null, { timestamp: stat.mtime, mode: stat.mode, contents: node.contents }); + } else { + return callback(new Error('node type not supported')); + } + },storeLocalEntry:function (path, entry, callback) { + try { + if (FS.isDir(entry.mode)) { + FS.mkdir(path, entry.mode); + } else if (FS.isFile(entry.mode)) { + FS.writeFile(path, entry.contents, { encoding: 'binary', canOwn: true }); + } else { + return callback(new Error('node type not supported')); + } + + FS.chmod(path, entry.mode); + FS.utime(path, entry.timestamp, entry.timestamp); + } catch (e) { + return callback(e); + } + + callback(null); + },removeLocalEntry:function (path, callback) { + try { + var lookup = FS.lookupPath(path); + var stat = FS.stat(path); + + if (FS.isDir(stat.mode)) { + FS.rmdir(path); + } else if (FS.isFile(stat.mode)) { + FS.unlink(path); + } + } catch (e) { + return callback(e); + } + + callback(null); + },loadRemoteEntry:function (store, path, callback) { + var req = store.get(path); + req.onsuccess = function(event) { callback(null, event.target.result); }; + req.onerror = function() { callback(this.error); }; + },storeRemoteEntry:function (store, path, entry, callback) { + var req = store.put(entry, path); + req.onsuccess = function() { callback(null); }; + req.onerror = function() { callback(this.error); }; + },removeRemoteEntry:function (store, path, callback) { + var req = store.delete(path); + req.onsuccess = function() { callback(null); }; + req.onerror = function() { callback(this.error); }; + },reconcile:function (src, dst, callback) { + var total = 0; + + var create = []; + Object.keys(src.entries).forEach(function (key) { + var e = src.entries[key]; + var e2 = dst.entries[key]; + if (!e2 || e.timestamp > e2.timestamp) { + create.push(key); + total++; + } + }); + + var remove = []; + Object.keys(dst.entries).forEach(function (key) { + var e = dst.entries[key]; + var e2 = src.entries[key]; + if (!e2) { + remove.push(key); + total++; + } + }); + + if (!total) { + return callback(null); + } + + var errored = false; + var completed = 0; + var db = src.type === 'remote' ? src.db : dst.db; + var transaction = db.transaction([IDBFS.DB_STORE_NAME], 'readwrite'); + var store = transaction.objectStore(IDBFS.DB_STORE_NAME); + + function done(err) { + if (err) { + if (!done.errored) { + done.errored = true; + return callback(err); + } + return; + } + if (++completed >= total) { + return callback(null); + } + }; + + transaction.onerror = function() { done(this.error); }; + + // sort paths in ascending order so directory entries are created + // before the files inside them + create.sort().forEach(function (path) { + if (dst.type === 'local') { + IDBFS.loadRemoteEntry(store, path, function (err, entry) { + if (err) return done(err); + IDBFS.storeLocalEntry(path, entry, done); + }); + } else { + IDBFS.loadLocalEntry(path, function (err, entry) { + if (err) return done(err); + IDBFS.storeRemoteEntry(store, path, entry, done); + }); + } + }); + + // sort paths in descending order so files are deleted before their + // parent directories + remove.sort().reverse().forEach(function(path) { + if (dst.type === 'local') { + IDBFS.removeLocalEntry(path, done); + } else { + IDBFS.removeRemoteEntry(store, path, done); + } + }); + }}; + + var NODEFS={isWindows:false,staticInit:function () { + NODEFS.isWindows = !!process.platform.match(/^win/); + },mount:function (mount) { + assert(ENVIRONMENT_IS_NODE); + return NODEFS.createNode(null, '/', NODEFS.getMode(mount.opts.root), 0); + },createNode:function (parent, name, mode, dev) { + if (!FS.isDir(mode) && !FS.isFile(mode) && !FS.isLink(mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + var node = FS.createNode(parent, name, mode); + node.node_ops = NODEFS.node_ops; + node.stream_ops = NODEFS.stream_ops; + return node; + },getMode:function (path) { + var stat; + try { + stat = fs.lstatSync(path); + if (NODEFS.isWindows) { + // On Windows, directories return permission bits 'rw-rw-rw-', even though they have 'rwxrwxrwx', so + // propagate write bits to execute bits. + stat.mode = stat.mode | ((stat.mode & 146) >> 1); + } + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + return stat.mode; + },realPath:function (node) { + var parts = []; + while (node.parent !== node) { + parts.push(node.name); + node = node.parent; + } + parts.push(node.mount.opts.root); + parts.reverse(); + return PATH.join.apply(null, parts); + },flagsToPermissionStringMap:{0:"r",1:"r+",2:"r+",64:"r",65:"r+",66:"r+",129:"rx+",193:"rx+",514:"w+",577:"w",578:"w+",705:"wx",706:"wx+",1024:"a",1025:"a",1026:"a+",1089:"a",1090:"a+",1153:"ax",1154:"ax+",1217:"ax",1218:"ax+",4096:"rs",4098:"rs+"},flagsToPermissionString:function (flags) { + if (flags in NODEFS.flagsToPermissionStringMap) { + return NODEFS.flagsToPermissionStringMap[flags]; + } else { + return flags; + } + },node_ops:{getattr:function (node) { + var path = NODEFS.realPath(node); + var stat; + try { + stat = fs.lstatSync(path); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + // node.js v0.10.20 doesn't report blksize and blocks on Windows. Fake them with default blksize of 4096. + // See http://support.microsoft.com/kb/140365 + if (NODEFS.isWindows && !stat.blksize) { + stat.blksize = 4096; + } + if (NODEFS.isWindows && !stat.blocks) { + stat.blocks = (stat.size+stat.blksize-1)/stat.blksize|0; + } + return { + dev: stat.dev, + ino: stat.ino, + mode: stat.mode, + nlink: stat.nlink, + uid: stat.uid, + gid: stat.gid, + rdev: stat.rdev, + size: stat.size, + atime: stat.atime, + mtime: stat.mtime, + ctime: stat.ctime, + blksize: stat.blksize, + blocks: stat.blocks + }; + },setattr:function (node, attr) { + var path = NODEFS.realPath(node); + try { + if (attr.mode !== undefined) { + fs.chmodSync(path, attr.mode); + // update the common node structure mode as well + node.mode = attr.mode; + } + if (attr.timestamp !== undefined) { + var date = new Date(attr.timestamp); + fs.utimesSync(path, date, date); + } + if (attr.size !== undefined) { + fs.truncateSync(path, attr.size); + } + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },lookup:function (parent, name) { + var path = PATH.join2(NODEFS.realPath(parent), name); + var mode = NODEFS.getMode(path); + return NODEFS.createNode(parent, name, mode); + },mknod:function (parent, name, mode, dev) { + var node = NODEFS.createNode(parent, name, mode, dev); + // create the backing node for this in the fs root as well + var path = NODEFS.realPath(node); + try { + if (FS.isDir(node.mode)) { + fs.mkdirSync(path, node.mode); + } else { + fs.writeFileSync(path, '', { mode: node.mode }); + } + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + return node; + },rename:function (oldNode, newDir, newName) { + var oldPath = NODEFS.realPath(oldNode); + var newPath = PATH.join2(NODEFS.realPath(newDir), newName); + try { + fs.renameSync(oldPath, newPath); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },unlink:function (parent, name) { + var path = PATH.join2(NODEFS.realPath(parent), name); + try { + fs.unlinkSync(path); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },rmdir:function (parent, name) { + var path = PATH.join2(NODEFS.realPath(parent), name); + try { + fs.rmdirSync(path); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },readdir:function (node) { + var path = NODEFS.realPath(node); + try { + return fs.readdirSync(path); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },symlink:function (parent, newName, oldPath) { + var newPath = PATH.join2(NODEFS.realPath(parent), newName); + try { + fs.symlinkSync(oldPath, newPath); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },readlink:function (node) { + var path = NODEFS.realPath(node); + try { + return fs.readlinkSync(path); + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + }},stream_ops:{open:function (stream) { + var path = NODEFS.realPath(stream.node); + try { + if (FS.isFile(stream.node.mode)) { + stream.nfd = fs.openSync(path, NODEFS.flagsToPermissionString(stream.flags)); + } + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },close:function (stream) { + try { + if (FS.isFile(stream.node.mode) && stream.nfd) { + fs.closeSync(stream.nfd); + } + } catch (e) { + if (!e.code) throw e; + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + },read:function (stream, buffer, offset, length, position) { + if (length === 0) return 0; // node errors on 0 length reads + // FIXME this is terrible. + var nbuffer = new Buffer(length); + var res; + try { + res = fs.readSync(stream.nfd, nbuffer, 0, length, position); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + if (res > 0) { + for (var i = 0; i < res; i++) { + buffer[offset + i] = nbuffer[i]; + } + } + return res; + },write:function (stream, buffer, offset, length, position) { + // FIXME this is terrible. + var nbuffer = new Buffer(buffer.subarray(offset, offset + length)); + var res; + try { + res = fs.writeSync(stream.nfd, nbuffer, 0, length, position); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + return res; + },llseek:function (stream, offset, whence) { + var position = offset; + if (whence === 1) { // SEEK_CUR. + position += stream.position; + } else if (whence === 2) { // SEEK_END. + if (FS.isFile(stream.node.mode)) { + try { + var stat = fs.fstatSync(stream.nfd); + position += stat.size; + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES[e.code]); + } + } + } + + if (position < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + + return position; + }}}; + + var _stdin=allocate(1, "i32*", ALLOC_STATIC); + + var _stdout=allocate(1, "i32*", ALLOC_STATIC); + + var _stderr=allocate(1, "i32*", ALLOC_STATIC); + + function _fflush(stream) { + // int fflush(FILE *stream); + // http://pubs.opengroup.org/onlinepubs/000095399/functions/fflush.html + + /* + // Disabled, see https://github.com/kripken/emscripten/issues/2770 + stream = FS.getStreamFromPtr(stream); + if (stream.stream_ops.flush) { + stream.stream_ops.flush(stream); + } + */ + }var FS={root:null,mounts:[],devices:[null],streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,trackingDelegate:{},tracking:{openFlags:{READ:1,WRITE:2}},ErrnoError:null,genericErrors:{},handleFSError:function (e) { + if (!(e instanceof FS.ErrnoError)) throw e + ' : ' + stackTrace(); + return ___setErrNo(e.errno); + },lookupPath:function (path, opts) { + path = PATH.resolve(FS.cwd(), path); + opts = opts || {}; + + if (!path) return { path: '', node: null }; + + var defaults = { + follow_mount: true, + recurse_count: 0 + }; + for (var key in defaults) { + if (opts[key] === undefined) { + opts[key] = defaults[key]; + } + } + + if (opts.recurse_count > 8) { // max recursive lookup of 8 + throw new FS.ErrnoError(ERRNO_CODES.ELOOP); + } + + // split the path + var parts = PATH.normalizeArray(path.split('/').filter(function(p) { + return !!p; + }), false); + + // start at the root + var current = FS.root; + var current_path = '/'; + + for (var i = 0; i < parts.length; i++) { + var islast = (i === parts.length-1); + if (islast && opts.parent) { + // stop resolving + break; + } + + current = FS.lookupNode(current, parts[i]); + current_path = PATH.join2(current_path, parts[i]); + + // jump to the mount's root node if this is a mountpoint + if (FS.isMountpoint(current)) { + if (!islast || (islast && opts.follow_mount)) { + current = current.mounted.root; + } + } + + // by default, lookupPath will not follow a symlink if it is the final path component. + // setting opts.follow = true will override this behavior. + if (!islast || opts.follow) { + var count = 0; + while (FS.isLink(current.mode)) { + var link = FS.readlink(current_path); + current_path = PATH.resolve(PATH.dirname(current_path), link); + + var lookup = FS.lookupPath(current_path, { recurse_count: opts.recurse_count }); + current = lookup.node; + + if (count++ > 40) { // limit max consecutive symlinks to 40 (SYMLOOP_MAX). + throw new FS.ErrnoError(ERRNO_CODES.ELOOP); + } + } + } + } + + return { path: current_path, node: current }; + },getPath:function (node) { + var path; + while (true) { + if (FS.isRoot(node)) { + var mount = node.mount.mountpoint; + if (!path) return mount; + return mount[mount.length-1] !== '/' ? mount + '/' + path : mount + path; + } + path = path ? node.name + '/' + path : node.name; + node = node.parent; + } + },hashName:function (parentid, name) { + var hash = 0; + + + for (var i = 0; i < name.length; i++) { + hash = ((hash << 5) - hash + name.charCodeAt(i)) | 0; + } + return ((parentid + hash) >>> 0) % FS.nameTable.length; + },hashAddNode:function (node) { + var hash = FS.hashName(node.parent.id, node.name); + node.name_next = FS.nameTable[hash]; + FS.nameTable[hash] = node; + },hashRemoveNode:function (node) { + var hash = FS.hashName(node.parent.id, node.name); + if (FS.nameTable[hash] === node) { + FS.nameTable[hash] = node.name_next; + } else { + var current = FS.nameTable[hash]; + while (current) { + if (current.name_next === node) { + current.name_next = node.name_next; + break; + } + current = current.name_next; + } + } + },lookupNode:function (parent, name) { + var err = FS.mayLookup(parent); + if (err) { + throw new FS.ErrnoError(err, parent); + } + var hash = FS.hashName(parent.id, name); + for (var node = FS.nameTable[hash]; node; node = node.name_next) { + var nodeName = node.name; + if (node.parent.id === parent.id && nodeName === name) { + return node; + } + } + // if we failed to find it in the cache, call into the VFS + return FS.lookup(parent, name); + },createNode:function (parent, name, mode, rdev) { + if (!FS.FSNode) { + FS.FSNode = function(parent, name, mode, rdev) { + if (!parent) { + parent = this; // root node sets parent to itself + } + this.parent = parent; + this.mount = parent.mount; + this.mounted = null; + this.id = FS.nextInode++; + this.name = name; + this.mode = mode; + this.node_ops = {}; + this.stream_ops = {}; + this.rdev = rdev; + }; + + FS.FSNode.prototype = {}; + + // compatibility + var readMode = 292 | 73; + var writeMode = 146; + + // NOTE we must use Object.defineProperties instead of individual calls to + // Object.defineProperty in order to make closure compiler happy + Object.defineProperties(FS.FSNode.prototype, { + read: { + get: function() { return (this.mode & readMode) === readMode; }, + set: function(val) { val ? this.mode |= readMode : this.mode &= ~readMode; } + }, + write: { + get: function() { return (this.mode & writeMode) === writeMode; }, + set: function(val) { val ? this.mode |= writeMode : this.mode &= ~writeMode; } + }, + isFolder: { + get: function() { return FS.isDir(this.mode); } + }, + isDevice: { + get: function() { return FS.isChrdev(this.mode); } + } + }); + } + + var node = new FS.FSNode(parent, name, mode, rdev); + + FS.hashAddNode(node); + + return node; + },destroyNode:function (node) { + FS.hashRemoveNode(node); + },isRoot:function (node) { + return node === node.parent; + },isMountpoint:function (node) { + return !!node.mounted; + },isFile:function (mode) { + return (mode & 61440) === 32768; + },isDir:function (mode) { + return (mode & 61440) === 16384; + },isLink:function (mode) { + return (mode & 61440) === 40960; + },isChrdev:function (mode) { + return (mode & 61440) === 8192; + },isBlkdev:function (mode) { + return (mode & 61440) === 24576; + },isFIFO:function (mode) { + return (mode & 61440) === 4096; + },isSocket:function (mode) { + return (mode & 49152) === 49152; + },flagModes:{"r":0,"rs":1052672,"r+":2,"w":577,"wx":705,"xw":705,"w+":578,"wx+":706,"xw+":706,"a":1089,"ax":1217,"xa":1217,"a+":1090,"ax+":1218,"xa+":1218},modeStringToFlags:function (str) { + var flags = FS.flagModes[str]; + if (typeof flags === 'undefined') { + throw new Error('Unknown file open mode: ' + str); + } + return flags; + },flagsToPermissionString:function (flag) { + var accmode = flag & 2097155; + var perms = ['r', 'w', 'rw'][accmode]; + if ((flag & 512)) { + perms += 'w'; + } + return perms; + },nodePermissions:function (node, perms) { + if (FS.ignorePermissions) { + return 0; + } + // return 0 if any user, group or owner bits are set. + if (perms.indexOf('r') !== -1 && !(node.mode & 292)) { + return ERRNO_CODES.EACCES; + } else if (perms.indexOf('w') !== -1 && !(node.mode & 146)) { + return ERRNO_CODES.EACCES; + } else if (perms.indexOf('x') !== -1 && !(node.mode & 73)) { + return ERRNO_CODES.EACCES; + } + return 0; + },mayLookup:function (dir) { + var err = FS.nodePermissions(dir, 'x'); + if (err) return err; + if (!dir.node_ops.lookup) return ERRNO_CODES.EACCES; + return 0; + },mayCreate:function (dir, name) { + try { + var node = FS.lookupNode(dir, name); + return ERRNO_CODES.EEXIST; + } catch (e) { + } + return FS.nodePermissions(dir, 'wx'); + },mayDelete:function (dir, name, isdir) { + var node; + try { + node = FS.lookupNode(dir, name); + } catch (e) { + return e.errno; + } + var err = FS.nodePermissions(dir, 'wx'); + if (err) { + return err; + } + if (isdir) { + if (!FS.isDir(node.mode)) { + return ERRNO_CODES.ENOTDIR; + } + if (FS.isRoot(node) || FS.getPath(node) === FS.cwd()) { + return ERRNO_CODES.EBUSY; + } + } else { + if (FS.isDir(node.mode)) { + return ERRNO_CODES.EISDIR; + } + } + return 0; + },mayOpen:function (node, flags) { + if (!node) { + return ERRNO_CODES.ENOENT; + } + if (FS.isLink(node.mode)) { + return ERRNO_CODES.ELOOP; + } else if (FS.isDir(node.mode)) { + if ((flags & 2097155) !== 0 || // opening for write + (flags & 512)) { + return ERRNO_CODES.EISDIR; + } + } + return FS.nodePermissions(node, FS.flagsToPermissionString(flags)); + },MAX_OPEN_FDS:4096,nextfd:function (fd_start, fd_end) { + fd_start = fd_start || 0; + fd_end = fd_end || FS.MAX_OPEN_FDS; + for (var fd = fd_start; fd <= fd_end; fd++) { + if (!FS.streams[fd]) { + return fd; + } + } + throw new FS.ErrnoError(ERRNO_CODES.EMFILE); + },getStream:function (fd) { + return FS.streams[fd]; + },createStream:function (stream, fd_start, fd_end) { + if (!FS.FSStream) { + FS.FSStream = function(){}; + FS.FSStream.prototype = {}; + // compatibility + Object.defineProperties(FS.FSStream.prototype, { + object: { + get: function() { return this.node; }, + set: function(val) { this.node = val; } + }, + isRead: { + get: function() { return (this.flags & 2097155) !== 1; } + }, + isWrite: { + get: function() { return (this.flags & 2097155) !== 0; } + }, + isAppend: { + get: function() { return (this.flags & 1024); } + } + }); + } + // clone it, so we can return an instance of FSStream + var newStream = new FS.FSStream(); + for (var p in stream) { + newStream[p] = stream[p]; + } + stream = newStream; + var fd = FS.nextfd(fd_start, fd_end); + stream.fd = fd; + FS.streams[fd] = stream; + return stream; + },closeStream:function (fd) { + FS.streams[fd] = null; + },getStreamFromPtr:function (ptr) { + return FS.streams[ptr - 1]; + },getPtrForStream:function (stream) { + return stream ? stream.fd + 1 : 0; + },chrdev_stream_ops:{open:function (stream) { + var device = FS.getDevice(stream.node.rdev); + // override node's stream ops with the device's + stream.stream_ops = device.stream_ops; + // forward the open call + if (stream.stream_ops.open) { + stream.stream_ops.open(stream); + } + },llseek:function () { + throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); + }},major:function (dev) { + return ((dev) >> 8); + },minor:function (dev) { + return ((dev) & 0xff); + },makedev:function (ma, mi) { + return ((ma) << 8 | (mi)); + },registerDevice:function (dev, ops) { + FS.devices[dev] = { stream_ops: ops }; + },getDevice:function (dev) { + return FS.devices[dev]; + },getMounts:function (mount) { + var mounts = []; + var check = [mount]; + + while (check.length) { + var m = check.pop(); + + mounts.push(m); + + check.push.apply(check, m.mounts); + } + + return mounts; + },syncfs:function (populate, callback) { + if (typeof(populate) === 'function') { + callback = populate; + populate = false; + } + + var mounts = FS.getMounts(FS.root.mount); + var completed = 0; + + function done(err) { + if (err) { + if (!done.errored) { + done.errored = true; + return callback(err); + } + return; + } + if (++completed >= mounts.length) { + callback(null); + } + }; + + // sync all mounts + mounts.forEach(function (mount) { + if (!mount.type.syncfs) { + return done(null); + } + mount.type.syncfs(mount, populate, done); + }); + },mount:function (type, opts, mountpoint) { + var root = mountpoint === '/'; + var pseudo = !mountpoint; + var node; + + if (root && FS.root) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } else if (!root && !pseudo) { + var lookup = FS.lookupPath(mountpoint, { follow_mount: false }); + + mountpoint = lookup.path; // use the absolute path + node = lookup.node; + + if (FS.isMountpoint(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } + + if (!FS.isDir(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); + } + } + + var mount = { + type: type, + opts: opts, + mountpoint: mountpoint, + mounts: [] + }; + + // create a root node for the fs + var mountRoot = type.mount(mount); + mountRoot.mount = mount; + mount.root = mountRoot; + + if (root) { + FS.root = mountRoot; + } else if (node) { + // set as a mountpoint + node.mounted = mount; + + // add the new mount to the current mount's children + if (node.mount) { + node.mount.mounts.push(mount); + } + } + + return mountRoot; + },unmount:function (mountpoint) { + var lookup = FS.lookupPath(mountpoint, { follow_mount: false }); + + if (!FS.isMountpoint(lookup.node)) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + + // destroy the nodes for this mount, and all its child mounts + var node = lookup.node; + var mount = node.mounted; + var mounts = FS.getMounts(mount); + + Object.keys(FS.nameTable).forEach(function (hash) { + var current = FS.nameTable[hash]; + + while (current) { + var next = current.name_next; + + if (mounts.indexOf(current.mount) !== -1) { + FS.destroyNode(current); + } + + current = next; + } + }); + + // no longer a mountpoint + node.mounted = null; + + // remove this mount from the child mounts + var idx = node.mount.mounts.indexOf(mount); + assert(idx !== -1); + node.mount.mounts.splice(idx, 1); + },lookup:function (parent, name) { + return parent.node_ops.lookup(parent, name); + },mknod:function (path, mode, dev) { + var lookup = FS.lookupPath(path, { parent: true }); + var parent = lookup.node; + var name = PATH.basename(path); + if (!name || name === '.' || name === '..') { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + var err = FS.mayCreate(parent, name); + if (err) { + throw new FS.ErrnoError(err); + } + if (!parent.node_ops.mknod) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + return parent.node_ops.mknod(parent, name, mode, dev); + },create:function (path, mode) { + mode = mode !== undefined ? mode : 438 /* 0666 */; + mode &= 4095; + mode |= 32768; + return FS.mknod(path, mode, 0); + },mkdir:function (path, mode) { + mode = mode !== undefined ? mode : 511 /* 0777 */; + mode &= 511 | 512; + mode |= 16384; + return FS.mknod(path, mode, 0); + },mkdev:function (path, mode, dev) { + if (typeof(dev) === 'undefined') { + dev = mode; + mode = 438 /* 0666 */; + } + mode |= 8192; + return FS.mknod(path, mode, dev); + },symlink:function (oldpath, newpath) { + if (!PATH.resolve(oldpath)) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + var lookup = FS.lookupPath(newpath, { parent: true }); + var parent = lookup.node; + if (!parent) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + var newname = PATH.basename(newpath); + var err = FS.mayCreate(parent, newname); + if (err) { + throw new FS.ErrnoError(err); + } + if (!parent.node_ops.symlink) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + return parent.node_ops.symlink(parent, newname, oldpath); + },rename:function (old_path, new_path) { + var old_dirname = PATH.dirname(old_path); + var new_dirname = PATH.dirname(new_path); + var old_name = PATH.basename(old_path); + var new_name = PATH.basename(new_path); + // parents must exist + var lookup, old_dir, new_dir; + try { + lookup = FS.lookupPath(old_path, { parent: true }); + old_dir = lookup.node; + lookup = FS.lookupPath(new_path, { parent: true }); + new_dir = lookup.node; + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } + if (!old_dir || !new_dir) throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + // need to be part of the same mount + if (old_dir.mount !== new_dir.mount) { + throw new FS.ErrnoError(ERRNO_CODES.EXDEV); + } + // source must exist + var old_node = FS.lookupNode(old_dir, old_name); + // old path should not be an ancestor of the new path + var relative = PATH.relative(old_path, new_dirname); + if (relative.charAt(0) !== '.') { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + // new path should not be an ancestor of the old path + relative = PATH.relative(new_path, old_dirname); + if (relative.charAt(0) !== '.') { + throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); + } + // see if the new path already exists + var new_node; + try { + new_node = FS.lookupNode(new_dir, new_name); + } catch (e) { + // not fatal + } + // early out if nothing needs to change + if (old_node === new_node) { + return; + } + // we'll need to delete the old entry + var isdir = FS.isDir(old_node.mode); + var err = FS.mayDelete(old_dir, old_name, isdir); + if (err) { + throw new FS.ErrnoError(err); + } + // need delete permissions if we'll be overwriting. + // need create permissions if new doesn't already exist. + err = new_node ? + FS.mayDelete(new_dir, new_name, isdir) : + FS.mayCreate(new_dir, new_name); + if (err) { + throw new FS.ErrnoError(err); + } + if (!old_dir.node_ops.rename) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + if (FS.isMountpoint(old_node) || (new_node && FS.isMountpoint(new_node))) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } + // if we are going to change the parent, check write permissions + if (new_dir !== old_dir) { + err = FS.nodePermissions(old_dir, 'w'); + if (err) { + throw new FS.ErrnoError(err); + } + } + try { + if (FS.trackingDelegate['willMovePath']) { + FS.trackingDelegate['willMovePath'](old_path, new_path); + } + } catch(e) { + console.log("FS.trackingDelegate['willMovePath']('"+old_path+"', '"+new_path+"') threw an exception: " + e.message); + } + // remove the node from the lookup hash + FS.hashRemoveNode(old_node); + // do the underlying fs rename + try { + old_dir.node_ops.rename(old_node, new_dir, new_name); + } catch (e) { + throw e; + } finally { + // add the node back to the hash (in case node_ops.rename + // changed its name) + FS.hashAddNode(old_node); + } + try { + if (FS.trackingDelegate['onMovePath']) FS.trackingDelegate['onMovePath'](old_path, new_path); + } catch(e) { + console.log("FS.trackingDelegate['onMovePath']('"+old_path+"', '"+new_path+"') threw an exception: " + e.message); + } + },rmdir:function (path) { + var lookup = FS.lookupPath(path, { parent: true }); + var parent = lookup.node; + var name = PATH.basename(path); + var node = FS.lookupNode(parent, name); + var err = FS.mayDelete(parent, name, true); + if (err) { + throw new FS.ErrnoError(err); + } + if (!parent.node_ops.rmdir) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + if (FS.isMountpoint(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } + try { + if (FS.trackingDelegate['willDeletePath']) { + FS.trackingDelegate['willDeletePath'](path); + } + } catch(e) { + console.log("FS.trackingDelegate['willDeletePath']('"+path+"') threw an exception: " + e.message); + } + parent.node_ops.rmdir(parent, name); + FS.destroyNode(node); + try { + if (FS.trackingDelegate['onDeletePath']) FS.trackingDelegate['onDeletePath'](path); + } catch(e) { + console.log("FS.trackingDelegate['onDeletePath']('"+path+"') threw an exception: " + e.message); + } + },readdir:function (path) { + var lookup = FS.lookupPath(path, { follow: true }); + var node = lookup.node; + if (!node.node_ops.readdir) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); + } + return node.node_ops.readdir(node); + },unlink:function (path) { + var lookup = FS.lookupPath(path, { parent: true }); + var parent = lookup.node; + var name = PATH.basename(path); + var node = FS.lookupNode(parent, name); + var err = FS.mayDelete(parent, name, false); + if (err) { + // POSIX says unlink should set EPERM, not EISDIR + if (err === ERRNO_CODES.EISDIR) err = ERRNO_CODES.EPERM; + throw new FS.ErrnoError(err); + } + if (!parent.node_ops.unlink) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + if (FS.isMountpoint(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY); + } + try { + if (FS.trackingDelegate['willDeletePath']) { + FS.trackingDelegate['willDeletePath'](path); + } + } catch(e) { + console.log("FS.trackingDelegate['willDeletePath']('"+path+"') threw an exception: " + e.message); + } + parent.node_ops.unlink(parent, name); + FS.destroyNode(node); + try { + if (FS.trackingDelegate['onDeletePath']) FS.trackingDelegate['onDeletePath'](path); + } catch(e) { + console.log("FS.trackingDelegate['onDeletePath']('"+path+"') threw an exception: " + e.message); + } + },readlink:function (path) { + var lookup = FS.lookupPath(path); + var link = lookup.node; + if (!link) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + if (!link.node_ops.readlink) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + return link.node_ops.readlink(link); + },stat:function (path, dontFollow) { + var lookup = FS.lookupPath(path, { follow: !dontFollow }); + var node = lookup.node; + if (!node) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + if (!node.node_ops.getattr) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + return node.node_ops.getattr(node); + },lstat:function (path) { + return FS.stat(path, true); + },chmod:function (path, mode, dontFollow) { + var node; + if (typeof path === 'string') { + var lookup = FS.lookupPath(path, { follow: !dontFollow }); + node = lookup.node; + } else { + node = path; + } + if (!node.node_ops.setattr) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + node.node_ops.setattr(node, { + mode: (mode & 4095) | (node.mode & ~4095), + timestamp: Date.now() + }); + },lchmod:function (path, mode) { + FS.chmod(path, mode, true); + },fchmod:function (fd, mode) { + var stream = FS.getStream(fd); + if (!stream) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + FS.chmod(stream.node, mode); + },chown:function (path, uid, gid, dontFollow) { + var node; + if (typeof path === 'string') { + var lookup = FS.lookupPath(path, { follow: !dontFollow }); + node = lookup.node; + } else { + node = path; + } + if (!node.node_ops.setattr) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + node.node_ops.setattr(node, { + timestamp: Date.now() + // we ignore the uid / gid for now + }); + },lchown:function (path, uid, gid) { + FS.chown(path, uid, gid, true); + },fchown:function (fd, uid, gid) { + var stream = FS.getStream(fd); + if (!stream) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + FS.chown(stream.node, uid, gid); + },truncate:function (path, len) { + if (len < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + var node; + if (typeof path === 'string') { + var lookup = FS.lookupPath(path, { follow: true }); + node = lookup.node; + } else { + node = path; + } + if (!node.node_ops.setattr) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM); + } + if (FS.isDir(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EISDIR); + } + if (!FS.isFile(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + var err = FS.nodePermissions(node, 'w'); + if (err) { + throw new FS.ErrnoError(err); + } + node.node_ops.setattr(node, { + size: len, + timestamp: Date.now() + }); + },ftruncate:function (fd, len) { + var stream = FS.getStream(fd); + if (!stream) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + if ((stream.flags & 2097155) === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + FS.truncate(stream.node, len); + },utime:function (path, atime, mtime) { + var lookup = FS.lookupPath(path, { follow: true }); + var node = lookup.node; + node.node_ops.setattr(node, { + timestamp: Math.max(atime, mtime) + }); + },open:function (path, flags, mode, fd_start, fd_end) { + if (path === "") { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + flags = typeof flags === 'string' ? FS.modeStringToFlags(flags) : flags; + mode = typeof mode === 'undefined' ? 438 /* 0666 */ : mode; + if ((flags & 64)) { + mode = (mode & 4095) | 32768; + } else { + mode = 0; + } + var node; + if (typeof path === 'object') { + node = path; + } else { + path = PATH.normalize(path); + try { + var lookup = FS.lookupPath(path, { + follow: !(flags & 131072) + }); + node = lookup.node; + } catch (e) { + // ignore + } + } + // perhaps we need to create the node + var created = false; + if ((flags & 64)) { + if (node) { + // if O_CREAT and O_EXCL are set, error out if the node already exists + if ((flags & 128)) { + throw new FS.ErrnoError(ERRNO_CODES.EEXIST); + } + } else { + // node doesn't exist, try to create it + node = FS.mknod(path, mode, 0); + created = true; + } + } + if (!node) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT); + } + // can't truncate a device + if (FS.isChrdev(node.mode)) { + flags &= ~512; + } + // check permissions, if this is not a file we just created now (it is ok to + // create and write to a file with read-only permissions; it is read-only + // for later use) + if (!created) { + var err = FS.mayOpen(node, flags); + if (err) { + throw new FS.ErrnoError(err); + } + } + // do truncation if necessary + if ((flags & 512)) { + FS.truncate(node, 0); + } + // we've already handled these, don't pass down to the underlying vfs + flags &= ~(128 | 512); + + // register the stream with the filesystem + var stream = FS.createStream({ + node: node, + path: FS.getPath(node), // we want the absolute path to the node + flags: flags, + seekable: true, + position: 0, + stream_ops: node.stream_ops, + // used by the file family libc calls (fopen, fwrite, ferror, etc.) + ungotten: [], + error: false + }, fd_start, fd_end); + // call the new stream's open function + if (stream.stream_ops.open) { + stream.stream_ops.open(stream); + } + if (Module['logReadFiles'] && !(flags & 1)) { + if (!FS.readFiles) FS.readFiles = {}; + if (!(path in FS.readFiles)) { + FS.readFiles[path] = 1; + Module['printErr']('read file: ' + path); + } + } + try { + if (FS.trackingDelegate['onOpenFile']) { + var trackingFlags = 0; + if ((flags & 2097155) !== 1) { + trackingFlags |= FS.tracking.openFlags.READ; + } + if ((flags & 2097155) !== 0) { + trackingFlags |= FS.tracking.openFlags.WRITE; + } + FS.trackingDelegate['onOpenFile'](path, trackingFlags); + } + } catch(e) { + console.log("FS.trackingDelegate['onOpenFile']('"+path+"', flags) threw an exception: " + e.message); + } + return stream; + },close:function (stream) { + try { + if (stream.stream_ops.close) { + stream.stream_ops.close(stream); + } + } catch (e) { + throw e; + } finally { + FS.closeStream(stream.fd); + } + },llseek:function (stream, offset, whence) { + if (!stream.seekable || !stream.stream_ops.llseek) { + throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); + } + stream.position = stream.stream_ops.llseek(stream, offset, whence); + stream.ungotten = []; + return stream.position; + },read:function (stream, buffer, offset, length, position) { + if (length < 0 || position < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + if ((stream.flags & 2097155) === 1) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + if (FS.isDir(stream.node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EISDIR); + } + if (!stream.stream_ops.read) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + var seeking = true; + if (typeof position === 'undefined') { + position = stream.position; + seeking = false; + } else if (!stream.seekable) { + throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); + } + var bytesRead = stream.stream_ops.read(stream, buffer, offset, length, position); + if (!seeking) stream.position += bytesRead; + return bytesRead; + },write:function (stream, buffer, offset, length, position, canOwn) { + if (length < 0 || position < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + if ((stream.flags & 2097155) === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + if (FS.isDir(stream.node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EISDIR); + } + if (!stream.stream_ops.write) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + if (stream.flags & 1024) { + // seek to the end before writing in append mode + FS.llseek(stream, 0, 2); + } + var seeking = true; + if (typeof position === 'undefined') { + position = stream.position; + seeking = false; + } else if (!stream.seekable) { + throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); + } + var bytesWritten = stream.stream_ops.write(stream, buffer, offset, length, position, canOwn); + if (!seeking) stream.position += bytesWritten; + try { + if (stream.path && FS.trackingDelegate['onWriteToFile']) FS.trackingDelegate['onWriteToFile'](stream.path); + } catch(e) { + console.log("FS.trackingDelegate['onWriteToFile']('"+path+"') threw an exception: " + e.message); + } + return bytesWritten; + },allocate:function (stream, offset, length) { + if (offset < 0 || length <= 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL); + } + if ((stream.flags & 2097155) === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF); + } + if (!FS.isFile(stream.node.mode) && !FS.isDir(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.ENODEV); + } + if (!stream.stream_ops.allocate) { + throw new FS.ErrnoError(ERRNO_CODES.EOPNOTSUPP); + } + stream.stream_ops.allocate(stream, offset, length); + },mmap:function (stream, buffer, offset, length, position, prot, flags) { + // TODO if PROT is PROT_WRITE, make sure we have write access + if ((stream.flags & 2097155) === 1) { + throw new FS.ErrnoError(ERRNO_CODES.EACCES); + } + if (!stream.stream_ops.mmap) { + throw new FS.ErrnoError(ERRNO_CODES.ENODEV); + } + return stream.stream_ops.mmap(stream, buffer, offset, length, position, prot, flags); + },ioctl:function (stream, cmd, arg) { + if (!stream.stream_ops.ioctl) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTTY); + } + return stream.stream_ops.ioctl(stream, cmd, arg); + },readFile:function (path, opts) { + opts = opts || {}; + opts.flags = opts.flags || 'r'; + opts.encoding = opts.encoding || 'binary'; + if (opts.encoding !== 'utf8' && opts.encoding !== 'binary') { + throw new Error('Invalid encoding type "' + opts.encoding + '"'); + } + var ret; + var stream = FS.open(path, opts.flags); + var stat = FS.stat(path); + var length = stat.size; + var buf = new Uint8Array(length); + FS.read(stream, buf, 0, length, 0); + if (opts.encoding === 'utf8') { + ret = ''; + var utf8 = new Runtime.UTF8Processor(); + for (var i = 0; i < length; i++) { + ret += utf8.processCChar(buf[i]); + } + } else if (opts.encoding === 'binary') { + ret = buf; + } + FS.close(stream); + return ret; + },writeFile:function (path, data, opts) { + opts = opts || {}; + opts.flags = opts.flags || 'w'; + opts.encoding = opts.encoding || 'utf8'; + if (opts.encoding !== 'utf8' && opts.encoding !== 'binary') { + throw new Error('Invalid encoding type "' + opts.encoding + '"'); + } + var stream = FS.open(path, opts.flags, opts.mode); + if (opts.encoding === 'utf8') { + var utf8 = new Runtime.UTF8Processor(); + var buf = new Uint8Array(utf8.processJSString(data)); + FS.write(stream, buf, 0, buf.length, 0, opts.canOwn); + } else if (opts.encoding === 'binary') { + FS.write(stream, data, 0, data.length, 0, opts.canOwn); + } + FS.close(stream); + },cwd:function () { + return FS.currentPath; + },chdir:function (path) { + var lookup = FS.lookupPath(path, { follow: true }); + if (!FS.isDir(lookup.node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); + } + var err = FS.nodePermissions(lookup.node, 'x'); + if (err) { + throw new FS.ErrnoError(err); + } + FS.currentPath = lookup.path; + },createDefaultDirectories:function () { + FS.mkdir('/tmp'); + FS.mkdir('/home'); + FS.mkdir('/home/web_user'); + },createDefaultDevices:function () { + // create /dev + FS.mkdir('/dev'); + // setup /dev/null + FS.registerDevice(FS.makedev(1, 3), { + read: function() { return 0; }, + write: function() { return 0; } + }); + FS.mkdev('/dev/null', FS.makedev(1, 3)); + // setup /dev/tty and /dev/tty1 + // stderr needs to print output using Module['printErr'] + // so we register a second tty just for it. + TTY.register(FS.makedev(5, 0), TTY.default_tty_ops); + TTY.register(FS.makedev(6, 0), TTY.default_tty1_ops); + FS.mkdev('/dev/tty', FS.makedev(5, 0)); + FS.mkdev('/dev/tty1', FS.makedev(6, 0)); + // setup /dev/[u]random + var random_device; + if (typeof crypto !== 'undefined') { + // for modern web browsers + var randomBuffer = new Uint8Array(1); + random_device = function() { crypto.getRandomValues(randomBuffer); return randomBuffer[0]; }; + } else if (ENVIRONMENT_IS_NODE) { + // for nodejs + random_device = function() { return require('crypto').randomBytes(1)[0]; }; + } else { + // default for ES5 platforms + random_device = function() { return (Math.random()*256)|0; }; + } + FS.createDevice('/dev', 'random', random_device); + FS.createDevice('/dev', 'urandom', random_device); + // we're not going to emulate the actual shm device, + // just create the tmp dirs that reside in it commonly + FS.mkdir('/dev/shm'); + FS.mkdir('/dev/shm/tmp'); + },createStandardStreams:function () { + // TODO deprecate the old functionality of a single + // input / output callback and that utilizes FS.createDevice + // and instead require a unique set of stream ops + + // by default, we symlink the standard streams to the + // default tty devices. however, if the standard streams + // have been overwritten we create a unique device for + // them instead. + if (Module['stdin']) { + FS.createDevice('/dev', 'stdin', Module['stdin']); + } else { + FS.symlink('/dev/tty', '/dev/stdin'); + } + if (Module['stdout']) { + FS.createDevice('/dev', 'stdout', null, Module['stdout']); + } else { + FS.symlink('/dev/tty', '/dev/stdout'); + } + if (Module['stderr']) { + FS.createDevice('/dev', 'stderr', null, Module['stderr']); + } else { + FS.symlink('/dev/tty1', '/dev/stderr'); + } + + // open default streams for the stdin, stdout and stderr devices + var stdin = FS.open('/dev/stdin', 'r'); + HEAP32[((_stdin)>>2)]=FS.getPtrForStream(stdin); + assert(stdin.fd === 0, 'invalid handle for stdin (' + stdin.fd + ')'); + + var stdout = FS.open('/dev/stdout', 'w'); + HEAP32[((_stdout)>>2)]=FS.getPtrForStream(stdout); + assert(stdout.fd === 1, 'invalid handle for stdout (' + stdout.fd + ')'); + + var stderr = FS.open('/dev/stderr', 'w'); + HEAP32[((_stderr)>>2)]=FS.getPtrForStream(stderr); + assert(stderr.fd === 2, 'invalid handle for stderr (' + stderr.fd + ')'); + },ensureErrnoError:function () { + if (FS.ErrnoError) return; + FS.ErrnoError = function ErrnoError(errno, node) { + this.node = node; + this.setErrno = function(errno) { + this.errno = errno; + for (var key in ERRNO_CODES) { + if (ERRNO_CODES[key] === errno) { + this.code = key; + break; + } + } + }; + this.setErrno(errno); + this.message = ERRNO_MESSAGES[errno]; + }; + FS.ErrnoError.prototype = new Error(); + FS.ErrnoError.prototype.constructor = FS.ErrnoError; + // Some errors may happen quite a bit, to avoid overhead we reuse them (and suffer a lack of stack info) + [ERRNO_CODES.ENOENT].forEach(function(code) { + FS.genericErrors[code] = new FS.ErrnoError(code); + FS.genericErrors[code].stack = ''; + }); + },staticInit:function () { + FS.ensureErrnoError(); + + FS.nameTable = new Array(4096); + + FS.mount(MEMFS, {}, '/'); + + FS.createDefaultDirectories(); + FS.createDefaultDevices(); + },init:function (input, output, error) { + assert(!FS.init.initialized, 'FS.init was previously called. If you want to initialize later with custom parameters, remove any earlier calls (note that one is automatically added to the generated code)'); + FS.init.initialized = true; + + FS.ensureErrnoError(); + + // Allow Module.stdin etc. to provide defaults, if none explicitly passed to us here + Module['stdin'] = input || Module['stdin']; + Module['stdout'] = output || Module['stdout']; + Module['stderr'] = error || Module['stderr']; + + FS.createStandardStreams(); + },quit:function () { + FS.init.initialized = false; + for (var i = 0; i < FS.streams.length; i++) { + var stream = FS.streams[i]; + if (!stream) { + continue; + } + FS.close(stream); + } + },getMode:function (canRead, canWrite) { + var mode = 0; + if (canRead) mode |= 292 | 73; + if (canWrite) mode |= 146; + return mode; + },joinPath:function (parts, forceRelative) { + var path = PATH.join.apply(null, parts); + if (forceRelative && path[0] == '/') path = path.substr(1); + return path; + },absolutePath:function (relative, base) { + return PATH.resolve(base, relative); + },standardizePath:function (path) { + return PATH.normalize(path); + },findObject:function (path, dontResolveLastLink) { + var ret = FS.analyzePath(path, dontResolveLastLink); + if (ret.exists) { + return ret.object; + } else { + ___setErrNo(ret.error); + return null; + } + },analyzePath:function (path, dontResolveLastLink) { + // operate from within the context of the symlink's target + try { + var lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }); + path = lookup.path; + } catch (e) { + } + var ret = { + isRoot: false, exists: false, error: 0, name: null, path: null, object: null, + parentExists: false, parentPath: null, parentObject: null + }; + try { + var lookup = FS.lookupPath(path, { parent: true }); + ret.parentExists = true; + ret.parentPath = lookup.path; + ret.parentObject = lookup.node; + ret.name = PATH.basename(path); + lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }); + ret.exists = true; + ret.path = lookup.path; + ret.object = lookup.node; + ret.name = lookup.node.name; + ret.isRoot = lookup.path === '/'; + } catch (e) { + ret.error = e.errno; + }; + return ret; + },createFolder:function (parent, name, canRead, canWrite) { + var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); + var mode = FS.getMode(canRead, canWrite); + return FS.mkdir(path, mode); + },createPath:function (parent, path, canRead, canWrite) { + parent = typeof parent === 'string' ? parent : FS.getPath(parent); + var parts = path.split('/').reverse(); + while (parts.length) { + var part = parts.pop(); + if (!part) continue; + var current = PATH.join2(parent, part); + try { + FS.mkdir(current); + } catch (e) { + // ignore EEXIST + } + parent = current; + } + return current; + },createFile:function (parent, name, properties, canRead, canWrite) { + var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); + var mode = FS.getMode(canRead, canWrite); + return FS.create(path, mode); + },createDataFile:function (parent, name, data, canRead, canWrite, canOwn) { + var path = name ? PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name) : parent; + var mode = FS.getMode(canRead, canWrite); + var node = FS.create(path, mode); + if (data) { + if (typeof data === 'string') { + var arr = new Array(data.length); + for (var i = 0, len = data.length; i < len; ++i) arr[i] = data.charCodeAt(i); + data = arr; + } + // make sure we can write to the file + FS.chmod(node, mode | 146); + var stream = FS.open(node, 'w'); + FS.write(stream, data, 0, data.length, 0, canOwn); + FS.close(stream); + FS.chmod(node, mode); + } + return node; + },createDevice:function (parent, name, input, output) { + var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); + var mode = FS.getMode(!!input, !!output); + if (!FS.createDevice.major) FS.createDevice.major = 64; + var dev = FS.makedev(FS.createDevice.major++, 0); + // Create a fake device that a set of stream ops to emulate + // the old behavior. + FS.registerDevice(dev, { + open: function(stream) { + stream.seekable = false; + }, + close: function(stream) { + // flush any pending line data + if (output && output.buffer && output.buffer.length) { + output(10); + } + }, + read: function(stream, buffer, offset, length, pos /* ignored */) { + var bytesRead = 0; + for (var i = 0; i < length; i++) { + var result; + try { + result = input(); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + if (result === undefined && bytesRead === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EAGAIN); + } + if (result === null || result === undefined) break; + bytesRead++; + buffer[offset+i] = result; + } + if (bytesRead) { + stream.node.timestamp = Date.now(); + } + return bytesRead; + }, + write: function(stream, buffer, offset, length, pos) { + for (var i = 0; i < length; i++) { + try { + output(buffer[offset+i]); + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + } + if (length) { + stream.node.timestamp = Date.now(); + } + return i; + } + }); + return FS.mkdev(path, mode, dev); + },createLink:function (parent, name, target, canRead, canWrite) { + var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); + return FS.symlink(target, path); + },forceLoadFile:function (obj) { + if (obj.isDevice || obj.isFolder || obj.link || obj.contents) return true; + var success = true; + if (typeof XMLHttpRequest !== 'undefined') { + throw new Error("Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread."); + } else if (Module['read']) { + // Command-line. + try { + // WARNING: Can't read binary files in V8's d8 or tracemonkey's js, as + // read() will try to parse UTF8. + obj.contents = intArrayFromString(Module['read'](obj.url), true); + obj.usedBytes = obj.contents.length; + } catch (e) { + success = false; + } + } else { + throw new Error('Cannot load without read() or XMLHttpRequest.'); + } + if (!success) ___setErrNo(ERRNO_CODES.EIO); + return success; + },createLazyFile:function (parent, name, url, canRead, canWrite) { + // Lazy chunked Uint8Array (implements get and length from Uint8Array). Actual getting is abstracted away for eventual reuse. + function LazyUint8Array() { + this.lengthKnown = false; + this.chunks = []; // Loaded chunks. Index is the chunk number + } + LazyUint8Array.prototype.get = function LazyUint8Array_get(idx) { + if (idx > this.length-1 || idx < 0) { + return undefined; + } + var chunkOffset = idx % this.chunkSize; + var chunkNum = (idx / this.chunkSize)|0; + return this.getter(chunkNum)[chunkOffset]; + } + LazyUint8Array.prototype.setDataGetter = function LazyUint8Array_setDataGetter(getter) { + this.getter = getter; + } + LazyUint8Array.prototype.cacheLength = function LazyUint8Array_cacheLength() { + // Find length + var xhr = new XMLHttpRequest(); + xhr.open('HEAD', url, false); + xhr.send(null); + if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); + var datalength = Number(xhr.getResponseHeader("Content-length")); + var header; + var hasByteServing = (header = xhr.getResponseHeader("Accept-Ranges")) && header === "bytes"; + var chunkSize = 1024*1024; // Chunk size in bytes + + if (!hasByteServing) chunkSize = datalength; + + // Function to get a range from the remote URL. + var doXHR = (function(from, to) { + if (from > to) throw new Error("invalid range (" + from + ", " + to + ") or no bytes requested!"); + if (to > datalength-1) throw new Error("only " + datalength + " bytes available! programmer error!"); + + // TODO: Use mozResponseArrayBuffer, responseStream, etc. if available. + var xhr = new XMLHttpRequest(); + xhr.open('GET', url, false); + if (datalength !== chunkSize) xhr.setRequestHeader("Range", "bytes=" + from + "-" + to); + + // Some hints to the browser that we want binary data. + if (typeof Uint8Array != 'undefined') xhr.responseType = 'arraybuffer'; + if (xhr.overrideMimeType) { + xhr.overrideMimeType('text/plain; charset=x-user-defined'); + } + + xhr.send(null); + if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); + if (xhr.response !== undefined) { + return new Uint8Array(xhr.response || []); + } else { + return intArrayFromString(xhr.responseText || '', true); + } + }); + var lazyArray = this; + lazyArray.setDataGetter(function(chunkNum) { + var start = chunkNum * chunkSize; + var end = (chunkNum+1) * chunkSize - 1; // including this byte + end = Math.min(end, datalength-1); // if datalength-1 is selected, this is the last block + if (typeof(lazyArray.chunks[chunkNum]) === "undefined") { + lazyArray.chunks[chunkNum] = doXHR(start, end); + } + if (typeof(lazyArray.chunks[chunkNum]) === "undefined") throw new Error("doXHR failed!"); + return lazyArray.chunks[chunkNum]; + }); + + this._length = datalength; + this._chunkSize = chunkSize; + this.lengthKnown = true; + } + if (typeof XMLHttpRequest !== 'undefined') { + if (!ENVIRONMENT_IS_WORKER) throw 'Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc'; + var lazyArray = new LazyUint8Array(); + Object.defineProperty(lazyArray, "length", { + get: function() { + if(!this.lengthKnown) { + this.cacheLength(); + } + return this._length; + } + }); + Object.defineProperty(lazyArray, "chunkSize", { + get: function() { + if(!this.lengthKnown) { + this.cacheLength(); + } + return this._chunkSize; + } + }); + + var properties = { isDevice: false, contents: lazyArray }; + } else { + var properties = { isDevice: false, url: url }; + } + + var node = FS.createFile(parent, name, properties, canRead, canWrite); + // This is a total hack, but I want to get this lazy file code out of the + // core of MEMFS. If we want to keep this lazy file concept I feel it should + // be its own thin LAZYFS proxying calls to MEMFS. + if (properties.contents) { + node.contents = properties.contents; + } else if (properties.url) { + node.contents = null; + node.url = properties.url; + } + // Add a function that defers querying the file size until it is asked the first time. + Object.defineProperty(node, "usedBytes", { + get: function() { return this.contents.length; } + }); + // override each stream op with one that tries to force load the lazy file first + var stream_ops = {}; + var keys = Object.keys(node.stream_ops); + keys.forEach(function(key) { + var fn = node.stream_ops[key]; + stream_ops[key] = function forceLoadLazyFile() { + if (!FS.forceLoadFile(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + return fn.apply(null, arguments); + }; + }); + // use a custom read function + stream_ops.read = function stream_ops_read(stream, buffer, offset, length, position) { + if (!FS.forceLoadFile(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EIO); + } + var contents = stream.node.contents; + if (position >= contents.length) + return 0; + var size = Math.min(contents.length - position, length); + assert(size >= 0); + if (contents.slice) { // normal array + for (var i = 0; i < size; i++) { + buffer[offset + i] = contents[position + i]; + } + } else { + for (var i = 0; i < size; i++) { // LazyUint8Array from sync binary XHR + buffer[offset + i] = contents.get(position + i); + } + } + return size; + }; + node.stream_ops = stream_ops; + return node; + },createPreloadedFile:function (parent, name, url, canRead, canWrite, onload, onerror, dontCreateFile, canOwn) { + Browser.init(); + // TODO we should allow people to just pass in a complete filename instead + // of parent and name being that we just join them anyways + var fullname = name ? PATH.resolve(PATH.join2(parent, name)) : parent; + function processData(byteArray) { + function finish(byteArray) { + if (!dontCreateFile) { + FS.createDataFile(parent, name, byteArray, canRead, canWrite, canOwn); + } + if (onload) onload(); + removeRunDependency('cp ' + fullname); + } + var handled = false; + Module['preloadPlugins'].forEach(function(plugin) { + if (handled) return; + if (plugin['canHandle'](fullname)) { + plugin['handle'](byteArray, fullname, finish, function() { + if (onerror) onerror(); + removeRunDependency('cp ' + fullname); + }); + handled = true; + } + }); + if (!handled) finish(byteArray); + } + addRunDependency('cp ' + fullname); + if (typeof url == 'string') { + Browser.asyncLoad(url, function(byteArray) { + processData(byteArray); + }, onerror); + } else { + processData(url); + } + },indexedDB:function () { + return window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; + },DB_NAME:function () { + return 'EM_FS_' + window.location.pathname; + },DB_VERSION:20,DB_STORE_NAME:"FILE_DATA",saveFilesToDB:function (paths, onload, onerror) { + onload = onload || function(){}; + onerror = onerror || function(){}; + var indexedDB = FS.indexedDB(); + try { + var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); + } catch (e) { + return onerror(e); + } + openRequest.onupgradeneeded = function openRequest_onupgradeneeded() { + console.log('creating db'); + var db = openRequest.result; + db.createObjectStore(FS.DB_STORE_NAME); + }; + openRequest.onsuccess = function openRequest_onsuccess() { + var db = openRequest.result; + var transaction = db.transaction([FS.DB_STORE_NAME], 'readwrite'); + var files = transaction.objectStore(FS.DB_STORE_NAME); + var ok = 0, fail = 0, total = paths.length; + function finish() { + if (fail == 0) onload(); else onerror(); + } + paths.forEach(function(path) { + var putRequest = files.put(FS.analyzePath(path).object.contents, path); + putRequest.onsuccess = function putRequest_onsuccess() { ok++; if (ok + fail == total) finish() }; + putRequest.onerror = function putRequest_onerror() { fail++; if (ok + fail == total) finish() }; + }); + transaction.onerror = onerror; + }; + openRequest.onerror = onerror; + },loadFilesFromDB:function (paths, onload, onerror) { + onload = onload || function(){}; + onerror = onerror || function(){}; + var indexedDB = FS.indexedDB(); + try { + var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); + } catch (e) { + return onerror(e); + } + openRequest.onupgradeneeded = onerror; // no database to load from + openRequest.onsuccess = function openRequest_onsuccess() { + var db = openRequest.result; + try { + var transaction = db.transaction([FS.DB_STORE_NAME], 'readonly'); + } catch(e) { + onerror(e); + return; + } + var files = transaction.objectStore(FS.DB_STORE_NAME); + var ok = 0, fail = 0, total = paths.length; + function finish() { + if (fail == 0) onload(); else onerror(); + } + paths.forEach(function(path) { + var getRequest = files.get(path); + getRequest.onsuccess = function getRequest_onsuccess() { + if (FS.analyzePath(path).exists) { + FS.unlink(path); + } + FS.createDataFile(PATH.dirname(path), PATH.basename(path), getRequest.result, true, true, true); + ok++; + if (ok + fail == total) finish(); + }; + getRequest.onerror = function getRequest_onerror() { fail++; if (ok + fail == total) finish() }; + }); + transaction.onerror = onerror; + }; + openRequest.onerror = onerror; + }};var PATH={splitPath:function (filename) { + var splitPathRe = /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; + return splitPathRe.exec(filename).slice(1); + },normalizeArray:function (parts, allowAboveRoot) { + // if the path tries to go above the root, `up` ends up > 0 + var up = 0; + for (var i = parts.length - 1; i >= 0; i--) { + var last = parts[i]; + if (last === '.') { + parts.splice(i, 1); + } else if (last === '..') { + parts.splice(i, 1); + up++; + } else if (up) { + parts.splice(i, 1); + up--; + } + } + // if the path is allowed to go above the root, restore leading ..s + if (allowAboveRoot) { + for (; up--; up) { + parts.unshift('..'); + } + } + return parts; + },normalize:function (path) { + var isAbsolute = path.charAt(0) === '/', + trailingSlash = path.substr(-1) === '/'; + // Normalize the path + path = PATH.normalizeArray(path.split('/').filter(function(p) { + return !!p; + }), !isAbsolute).join('/'); + if (!path && !isAbsolute) { + path = '.'; + } + if (path && trailingSlash) { + path += '/'; + } + return (isAbsolute ? '/' : '') + path; + },dirname:function (path) { + var result = PATH.splitPath(path), + root = result[0], + dir = result[1]; + if (!root && !dir) { + // No dirname whatsoever + return '.'; + } + if (dir) { + // It has a dirname, strip trailing slash + dir = dir.substr(0, dir.length - 1); + } + return root + dir; + },basename:function (path) { + // EMSCRIPTEN return '/'' for '/', not an empty string + if (path === '/') return '/'; + var lastSlash = path.lastIndexOf('/'); + if (lastSlash === -1) return path; + return path.substr(lastSlash+1); + },extname:function (path) { + return PATH.splitPath(path)[3]; + },join:function () { + var paths = Array.prototype.slice.call(arguments, 0); + return PATH.normalize(paths.join('/')); + },join2:function (l, r) { + return PATH.normalize(l + '/' + r); + },resolve:function () { + var resolvedPath = '', + resolvedAbsolute = false; + for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { + var path = (i >= 0) ? arguments[i] : FS.cwd(); + // Skip empty and invalid entries + if (typeof path !== 'string') { + throw new TypeError('Arguments to path.resolve must be strings'); + } else if (!path) { + return ''; // an invalid portion invalidates the whole thing + } + resolvedPath = path + '/' + resolvedPath; + resolvedAbsolute = path.charAt(0) === '/'; + } + // At this point the path should be resolved to a full absolute path, but + // handle relative paths to be safe (might happen when process.cwd() fails) + resolvedPath = PATH.normalizeArray(resolvedPath.split('/').filter(function(p) { + return !!p; + }), !resolvedAbsolute).join('/'); + return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.'; + },relative:function (from, to) { + from = PATH.resolve(from).substr(1); + to = PATH.resolve(to).substr(1); + function trim(arr) { + var start = 0; + for (; start < arr.length; start++) { + if (arr[start] !== '') break; + } + var end = arr.length - 1; + for (; end >= 0; end--) { + if (arr[end] !== '') break; + } + if (start > end) return []; + return arr.slice(start, end - start + 1); + } + var fromParts = trim(from.split('/')); + var toParts = trim(to.split('/')); + var length = Math.min(fromParts.length, toParts.length); + var samePartsLength = length; + for (var i = 0; i < length; i++) { + if (fromParts[i] !== toParts[i]) { + samePartsLength = i; + break; + } + } + var outputParts = []; + for (var i = samePartsLength; i < fromParts.length; i++) { + outputParts.push('..'); + } + outputParts = outputParts.concat(toParts.slice(samePartsLength)); + return outputParts.join('/'); + }}; + + + function _emscripten_set_main_loop_timing(mode, value) { + Browser.mainLoop.timingMode = mode; + Browser.mainLoop.timingValue = value; + + if (!Browser.mainLoop.func) { + return 1; // Return non-zero on failure, can't set timing mode when there is no main loop. + } + + if (mode == 0 /*EM_TIMING_SETTIMEOUT*/) { + Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler() { + setTimeout(Browser.mainLoop.runner, value); // doing this each time means that on exception, we stop + }; + Browser.mainLoop.method = 'timeout'; + } else if (mode == 1 /*EM_TIMING_RAF*/) { + Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler() { + Browser.requestAnimationFrame(Browser.mainLoop.runner); + }; + Browser.mainLoop.method = 'rAF'; + } + return 0; + }function _emscripten_set_main_loop(func, fps, simulateInfiniteLoop, arg) { + Module['noExitRuntime'] = true; + + assert(!Browser.mainLoop.func, 'emscripten_set_main_loop: there can only be one main loop function at once: call emscripten_cancel_main_loop to cancel the previous one before setting a new one with different parameters.'); + + Browser.mainLoop.func = func; + Browser.mainLoop.arg = arg; + + var thisMainLoopId = Browser.mainLoop.currentlyRunningMainloop; + + Browser.mainLoop.runner = function Browser_mainLoop_runner() { + if (ABORT) return; + if (Browser.mainLoop.queue.length > 0) { + var start = Date.now(); + var blocker = Browser.mainLoop.queue.shift(); + blocker.func(blocker.arg); + if (Browser.mainLoop.remainingBlockers) { + var remaining = Browser.mainLoop.remainingBlockers; + var next = remaining%1 == 0 ? remaining-1 : Math.floor(remaining); + if (blocker.counted) { + Browser.mainLoop.remainingBlockers = next; + } else { + // not counted, but move the progress along a tiny bit + next = next + 0.5; // do not steal all the next one's progress + Browser.mainLoop.remainingBlockers = (8*remaining + next)/9; + } + } + console.log('main loop blocker "' + blocker.name + '" took ' + (Date.now() - start) + ' ms'); //, left: ' + Browser.mainLoop.remainingBlockers); + Browser.mainLoop.updateStatus(); + setTimeout(Browser.mainLoop.runner, 0); + return; + } + + // catch pauses from non-main loop sources + if (thisMainLoopId < Browser.mainLoop.currentlyRunningMainloop) return; + + // Implement very basic swap interval control + Browser.mainLoop.currentFrameNumber = Browser.mainLoop.currentFrameNumber + 1 | 0; + if (Browser.mainLoop.timingMode == 1/*EM_TIMING_RAF*/ && Browser.mainLoop.timingValue > 1 && Browser.mainLoop.currentFrameNumber % Browser.mainLoop.timingValue != 0) { + // Not the scheduled time to render this frame - skip. + Browser.mainLoop.scheduler(); + return; + } + + // Signal GL rendering layer that processing of a new frame is about to start. This helps it optimize + // VBO double-buffering and reduce GPU stalls. + + if (Browser.mainLoop.method === 'timeout' && Module.ctx) { + Module.printErr('Looks like you are rendering without using requestAnimationFrame for the main loop. You should use 0 for the frame rate in emscripten_set_main_loop in order to use requestAnimationFrame, as that can greatly improve your frame rates!'); + Browser.mainLoop.method = ''; // just warn once per call to set main loop + } + + Browser.mainLoop.runIter(function() { + if (typeof arg !== 'undefined') { + Runtime.dynCall('vi', func, [arg]); + } else { + Runtime.dynCall('v', func); + } + }); + + // catch pauses from the main loop itself + if (thisMainLoopId < Browser.mainLoop.currentlyRunningMainloop) return; + + // Queue new audio data. This is important to be right after the main loop invocation, so that we will immediately be able + // to queue the newest produced audio samples. + // TODO: Consider adding pre- and post- rAF callbacks so that GL.newRenderingFrameStarted() and SDL.audio.queueNewAudioData() + // do not need to be hardcoded into this function, but can be more generic. + if (typeof SDL === 'object' && SDL.audio && SDL.audio.queueNewAudioData) SDL.audio.queueNewAudioData(); + + Browser.mainLoop.scheduler(); + } + + if (fps && fps > 0) _emscripten_set_main_loop_timing(0/*EM_TIMING_SETTIMEOUT*/, 1000.0 / fps); + else _emscripten_set_main_loop_timing(1/*EM_TIMING_RAF*/, 1); // Do rAF by rendering each frame (no decimating) + + Browser.mainLoop.scheduler(); + + if (simulateInfiniteLoop) { + throw 'SimulateInfiniteLoop'; + } + }var Browser={mainLoop:{scheduler:null,method:"",currentlyRunningMainloop:0,func:null,arg:0,timingMode:0,timingValue:0,currentFrameNumber:0,queue:[],pause:function () { + Browser.mainLoop.scheduler = null; + Browser.mainLoop.currentlyRunningMainloop++; // Incrementing this signals the previous main loop that it's now become old, and it must return. + },resume:function () { + Browser.mainLoop.currentlyRunningMainloop++; + var timingMode = Browser.mainLoop.timingMode; + var timingValue = Browser.mainLoop.timingValue; + var func = Browser.mainLoop.func; + Browser.mainLoop.func = null; + _emscripten_set_main_loop(func, 0, false, Browser.mainLoop.arg); + _emscripten_set_main_loop_timing(timingMode, timingValue); + },updateStatus:function () { + if (Module['setStatus']) { + var message = Module['statusMessage'] || 'Please wait...'; + var remaining = Browser.mainLoop.remainingBlockers; + var expected = Browser.mainLoop.expectedBlockers; + if (remaining) { + if (remaining < expected) { + Module['setStatus'](message + ' (' + (expected - remaining) + '/' + expected + ')'); + } else { + Module['setStatus'](message); + } + } else { + Module['setStatus'](''); + } + } + },runIter:function (func) { + if (ABORT) return; + if (Module['preMainLoop']) { + var preRet = Module['preMainLoop'](); + if (preRet === false) { + return; // |return false| skips a frame + } + } + try { + func(); + } catch (e) { + if (e instanceof ExitStatus) { + return; + } else { + if (e && typeof e === 'object' && e.stack) Module.printErr('exception thrown: ' + [e, e.stack]); + throw e; + } + } + if (Module['postMainLoop']) Module['postMainLoop'](); + }},isFullScreen:false,pointerLock:false,moduleContextCreatedCallbacks:[],workers:[],init:function () { + if (!Module["preloadPlugins"]) Module["preloadPlugins"] = []; // needs to exist even in workers + + if (Browser.initted) return; + Browser.initted = true; + + try { + new Blob(); + Browser.hasBlobConstructor = true; + } catch(e) { + Browser.hasBlobConstructor = false; + console.log("warning: no blob constructor, cannot create blobs with mimetypes"); + } + Browser.BlobBuilder = typeof MozBlobBuilder != "undefined" ? MozBlobBuilder : (typeof WebKitBlobBuilder != "undefined" ? WebKitBlobBuilder : (!Browser.hasBlobConstructor ? console.log("warning: no BlobBuilder") : null)); + Browser.URLObject = typeof window != "undefined" ? (window.URL ? window.URL : window.webkitURL) : undefined; + if (!Module.noImageDecoding && typeof Browser.URLObject === 'undefined') { + console.log("warning: Browser does not support creating object URLs. Built-in browser image decoding will not be available."); + Module.noImageDecoding = true; + } + + // Support for plugins that can process preloaded files. You can add more of these to + // your app by creating and appending to Module.preloadPlugins. + // + // Each plugin is asked if it can handle a file based on the file's name. If it can, + // it is given the file's raw data. When it is done, it calls a callback with the file's + // (possibly modified) data. For example, a plugin might decompress a file, or it + // might create some side data structure for use later (like an Image element, etc.). + + var imagePlugin = {}; + imagePlugin['canHandle'] = function imagePlugin_canHandle(name) { + return !Module.noImageDecoding && /\.(jpg|jpeg|png|bmp)$/i.test(name); + }; + imagePlugin['handle'] = function imagePlugin_handle(byteArray, name, onload, onerror) { + var b = null; + if (Browser.hasBlobConstructor) { + try { + b = new Blob([byteArray], { type: Browser.getMimetype(name) }); + if (b.size !== byteArray.length) { // Safari bug #118630 + // Safari's Blob can only take an ArrayBuffer + b = new Blob([(new Uint8Array(byteArray)).buffer], { type: Browser.getMimetype(name) }); + } + } catch(e) { + Runtime.warnOnce('Blob constructor present but fails: ' + e + '; falling back to blob builder'); + } + } + if (!b) { + var bb = new Browser.BlobBuilder(); + bb.append((new Uint8Array(byteArray)).buffer); // we need to pass a buffer, and must copy the array to get the right data range + b = bb.getBlob(); + } + var url = Browser.URLObject.createObjectURL(b); + var img = new Image(); + img.onload = function img_onload() { + assert(img.complete, 'Image ' + name + ' could not be decoded'); + var canvas = document.createElement('canvas'); + canvas.width = img.width; + canvas.height = img.height; + var ctx = canvas.getContext('2d'); + ctx.drawImage(img, 0, 0); + Module["preloadedImages"][name] = canvas; + Browser.URLObject.revokeObjectURL(url); + if (onload) onload(byteArray); + }; + img.onerror = function img_onerror(event) { + console.log('Image ' + url + ' could not be decoded'); + if (onerror) onerror(); + }; + img.src = url; + }; + Module['preloadPlugins'].push(imagePlugin); + + var audioPlugin = {}; + audioPlugin['canHandle'] = function audioPlugin_canHandle(name) { + return !Module.noAudioDecoding && name.substr(-4) in { '.ogg': 1, '.wav': 1, '.mp3': 1 }; + }; + audioPlugin['handle'] = function audioPlugin_handle(byteArray, name, onload, onerror) { + var done = false; + function finish(audio) { + if (done) return; + done = true; + Module["preloadedAudios"][name] = audio; + if (onload) onload(byteArray); + } + function fail() { + if (done) return; + done = true; + Module["preloadedAudios"][name] = new Audio(); // empty shim + if (onerror) onerror(); + } + if (Browser.hasBlobConstructor) { + try { + var b = new Blob([byteArray], { type: Browser.getMimetype(name) }); + } catch(e) { + return fail(); + } + var url = Browser.URLObject.createObjectURL(b); // XXX we never revoke this! + var audio = new Audio(); + audio.addEventListener('canplaythrough', function() { finish(audio) }, false); // use addEventListener due to chromium bug 124926 + audio.onerror = function audio_onerror(event) { + if (done) return; + console.log('warning: browser could not fully decode audio ' + name + ', trying slower base64 approach'); + function encode64(data) { + var BASE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; + var PAD = '='; + var ret = ''; + var leftchar = 0; + var leftbits = 0; + for (var i = 0; i < data.length; i++) { + leftchar = (leftchar << 8) | data[i]; + leftbits += 8; + while (leftbits >= 6) { + var curr = (leftchar >> (leftbits-6)) & 0x3f; + leftbits -= 6; + ret += BASE[curr]; + } + } + if (leftbits == 2) { + ret += BASE[(leftchar&3) << 4]; + ret += PAD + PAD; + } else if (leftbits == 4) { + ret += BASE[(leftchar&0xf) << 2]; + ret += PAD; + } + return ret; + } + audio.src = 'data:audio/x-' + name.substr(-3) + ';base64,' + encode64(byteArray); + finish(audio); // we don't wait for confirmation this worked - but it's worth trying + }; + audio.src = url; + // workaround for chrome bug 124926 - we do not always get oncanplaythrough or onerror + Browser.safeSetTimeout(function() { + finish(audio); // try to use it even though it is not necessarily ready to play + }, 10000); + } else { + return fail(); + } + }; + Module['preloadPlugins'].push(audioPlugin); + + // Canvas event setup + + var canvas = Module['canvas']; + function pointerLockChange() { + Browser.pointerLock = document['pointerLockElement'] === canvas || + document['mozPointerLockElement'] === canvas || + document['webkitPointerLockElement'] === canvas || + document['msPointerLockElement'] === canvas; + } + if (canvas) { + // forced aspect ratio can be enabled by defining 'forcedAspectRatio' on Module + // Module['forcedAspectRatio'] = 4 / 3; + + canvas.requestPointerLock = canvas['requestPointerLock'] || + canvas['mozRequestPointerLock'] || + canvas['webkitRequestPointerLock'] || + canvas['msRequestPointerLock'] || + function(){}; + canvas.exitPointerLock = document['exitPointerLock'] || + document['mozExitPointerLock'] || + document['webkitExitPointerLock'] || + document['msExitPointerLock'] || + function(){}; // no-op if function does not exist + canvas.exitPointerLock = canvas.exitPointerLock.bind(document); + + + document.addEventListener('pointerlockchange', pointerLockChange, false); + document.addEventListener('mozpointerlockchange', pointerLockChange, false); + document.addEventListener('webkitpointerlockchange', pointerLockChange, false); + document.addEventListener('mspointerlockchange', pointerLockChange, false); + + if (Module['elementPointerLock']) { + canvas.addEventListener("click", function(ev) { + if (!Browser.pointerLock && canvas.requestPointerLock) { + canvas.requestPointerLock(); + ev.preventDefault(); + } + }, false); + } + } + },createContext:function (canvas, useWebGL, setInModule, webGLContextAttributes) { + if (useWebGL && Module.ctx && canvas == Module.canvas) return Module.ctx; // no need to recreate GL context if it's already been created for this canvas. + + var ctx; + var contextHandle; + if (useWebGL) { + // For GLES2/desktop GL compatibility, adjust a few defaults to be different to WebGL defaults, so that they align better with the desktop defaults. + var contextAttributes = { + antialias: false, + alpha: false + }; + + if (webGLContextAttributes) { + for (var attribute in webGLContextAttributes) { + contextAttributes[attribute] = webGLContextAttributes[attribute]; + } + } + + contextHandle = GL.createContext(canvas, contextAttributes); + if (contextHandle) { + ctx = GL.getContext(contextHandle).GLctx; + } + // Set the background of the WebGL canvas to black + canvas.style.backgroundColor = "black"; + } else { + ctx = canvas.getContext('2d'); + } + + if (!ctx) return null; + + if (setInModule) { + if (!useWebGL) assert(typeof GLctx === 'undefined', 'cannot set in module if GLctx is used, but we are a non-GL context that would replace it'); + + Module.ctx = ctx; + if (useWebGL) GL.makeContextCurrent(contextHandle); + Module.useWebGL = useWebGL; + Browser.moduleContextCreatedCallbacks.forEach(function(callback) { callback() }); + Browser.init(); + } + return ctx; + },destroyContext:function (canvas, useWebGL, setInModule) {},fullScreenHandlersInstalled:false,lockPointer:undefined,resizeCanvas:undefined,requestFullScreen:function (lockPointer, resizeCanvas) { + Browser.lockPointer = lockPointer; + Browser.resizeCanvas = resizeCanvas; + if (typeof Browser.lockPointer === 'undefined') Browser.lockPointer = true; + if (typeof Browser.resizeCanvas === 'undefined') Browser.resizeCanvas = false; + + var canvas = Module['canvas']; + function fullScreenChange() { + Browser.isFullScreen = false; + var canvasContainer = canvas.parentNode; + if ((document['webkitFullScreenElement'] || document['webkitFullscreenElement'] || + document['mozFullScreenElement'] || document['mozFullscreenElement'] || + document['fullScreenElement'] || document['fullscreenElement'] || + document['msFullScreenElement'] || document['msFullscreenElement'] || + document['webkitCurrentFullScreenElement']) === canvasContainer) { + canvas.cancelFullScreen = document['cancelFullScreen'] || + document['mozCancelFullScreen'] || + document['webkitCancelFullScreen'] || + document['msExitFullscreen'] || + document['exitFullscreen'] || + function() {}; + canvas.cancelFullScreen = canvas.cancelFullScreen.bind(document); + if (Browser.lockPointer) canvas.requestPointerLock(); + Browser.isFullScreen = true; + if (Browser.resizeCanvas) Browser.setFullScreenCanvasSize(); + } else { + + // remove the full screen specific parent of the canvas again to restore the HTML structure from before going full screen + canvasContainer.parentNode.insertBefore(canvas, canvasContainer); + canvasContainer.parentNode.removeChild(canvasContainer); + + if (Browser.resizeCanvas) Browser.setWindowedCanvasSize(); + } + if (Module['onFullScreen']) Module['onFullScreen'](Browser.isFullScreen); + Browser.updateCanvasDimensions(canvas); + } + + if (!Browser.fullScreenHandlersInstalled) { + Browser.fullScreenHandlersInstalled = true; + document.addEventListener('fullscreenchange', fullScreenChange, false); + document.addEventListener('mozfullscreenchange', fullScreenChange, false); + document.addEventListener('webkitfullscreenchange', fullScreenChange, false); + document.addEventListener('MSFullscreenChange', fullScreenChange, false); + } + + // create a new parent to ensure the canvas has no siblings. this allows browsers to optimize full screen performance when its parent is the full screen root + var canvasContainer = document.createElement("div"); + canvas.parentNode.insertBefore(canvasContainer, canvas); + canvasContainer.appendChild(canvas); + + // use parent of canvas as full screen root to allow aspect ratio correction (Firefox stretches the root to screen size) + canvasContainer.requestFullScreen = canvasContainer['requestFullScreen'] || + canvasContainer['mozRequestFullScreen'] || + canvasContainer['msRequestFullscreen'] || + (canvasContainer['webkitRequestFullScreen'] ? function() { canvasContainer['webkitRequestFullScreen'](Element['ALLOW_KEYBOARD_INPUT']) } : null); + canvasContainer.requestFullScreen(); + },nextRAF:0,fakeRequestAnimationFrame:function (func) { + // try to keep 60fps between calls to here + var now = Date.now(); + if (Browser.nextRAF === 0) { + Browser.nextRAF = now + 1000/60; + } else { + while (now + 2 >= Browser.nextRAF) { // fudge a little, to avoid timer jitter causing us to do lots of delay:0 + Browser.nextRAF += 1000/60; + } + } + var delay = Math.max(Browser.nextRAF - now, 0); + setTimeout(func, delay); + },requestAnimationFrame:function requestAnimationFrame(func) { + if (typeof window === 'undefined') { // Provide fallback to setTimeout if window is undefined (e.g. in Node.js) + Browser.fakeRequestAnimationFrame(func); + } else { + if (!window.requestAnimationFrame) { + window.requestAnimationFrame = window['requestAnimationFrame'] || + window['mozRequestAnimationFrame'] || + window['webkitRequestAnimationFrame'] || + window['msRequestAnimationFrame'] || + window['oRequestAnimationFrame'] || + Browser.fakeRequestAnimationFrame; + } + window.requestAnimationFrame(func); + } + },safeCallback:function (func) { + return function() { + if (!ABORT) return func.apply(null, arguments); + }; + },safeRequestAnimationFrame:function (func) { + return Browser.requestAnimationFrame(function() { + if (!ABORT) func(); + }); + },safeSetTimeout:function (func, timeout) { + Module['noExitRuntime'] = true; + return setTimeout(function() { + if (!ABORT) func(); + }, timeout); + },safeSetInterval:function (func, timeout) { + Module['noExitRuntime'] = true; + return setInterval(function() { + if (!ABORT) func(); + }, timeout); + },getMimetype:function (name) { + return { + 'jpg': 'image/jpeg', + 'jpeg': 'image/jpeg', + 'png': 'image/png', + 'bmp': 'image/bmp', + 'ogg': 'audio/ogg', + 'wav': 'audio/wav', + 'mp3': 'audio/mpeg' + }[name.substr(name.lastIndexOf('.')+1)]; + },getUserMedia:function (func) { + if(!window.getUserMedia) { + window.getUserMedia = navigator['getUserMedia'] || + navigator['mozGetUserMedia']; + } + window.getUserMedia(func); + },getMovementX:function (event) { + return event['movementX'] || + event['mozMovementX'] || + event['webkitMovementX'] || + 0; + },getMovementY:function (event) { + return event['movementY'] || + event['mozMovementY'] || + event['webkitMovementY'] || + 0; + },getMouseWheelDelta:function (event) { + var delta = 0; + switch (event.type) { + case 'DOMMouseScroll': + delta = event.detail; + break; + case 'mousewheel': + delta = event.wheelDelta; + break; + case 'wheel': + delta = event['deltaY']; + break; + default: + throw 'unrecognized mouse wheel event: ' + event.type; + } + return delta; + },mouseX:0,mouseY:0,mouseMovementX:0,mouseMovementY:0,touches:{},lastTouches:{},calculateMouseEvent:function (event) { // event should be mousemove, mousedown or mouseup + if (Browser.pointerLock) { + // When the pointer is locked, calculate the coordinates + // based on the movement of the mouse. + // Workaround for Firefox bug 764498 + if (event.type != 'mousemove' && + ('mozMovementX' in event)) { + Browser.mouseMovementX = Browser.mouseMovementY = 0; + } else { + Browser.mouseMovementX = Browser.getMovementX(event); + Browser.mouseMovementY = Browser.getMovementY(event); + } + + // check if SDL is available + if (typeof SDL != "undefined") { + Browser.mouseX = SDL.mouseX + Browser.mouseMovementX; + Browser.mouseY = SDL.mouseY + Browser.mouseMovementY; + } else { + // just add the mouse delta to the current absolut mouse position + // FIXME: ideally this should be clamped against the canvas size and zero + Browser.mouseX += Browser.mouseMovementX; + Browser.mouseY += Browser.mouseMovementY; + } + } else { + // Otherwise, calculate the movement based on the changes + // in the coordinates. + var rect = Module["canvas"].getBoundingClientRect(); + var cw = Module["canvas"].width; + var ch = Module["canvas"].height; + + // Neither .scrollX or .pageXOffset are defined in a spec, but + // we prefer .scrollX because it is currently in a spec draft. + // (see: http://www.w3.org/TR/2013/WD-cssom-view-20131217/) + var scrollX = ((typeof window.scrollX !== 'undefined') ? window.scrollX : window.pageXOffset); + var scrollY = ((typeof window.scrollY !== 'undefined') ? window.scrollY : window.pageYOffset); + + if (event.type === 'touchstart' || event.type === 'touchend' || event.type === 'touchmove') { + var touch = event.touch; + if (touch === undefined) { + return; // the "touch" property is only defined in SDL + + } + var adjustedX = touch.pageX - (scrollX + rect.left); + var adjustedY = touch.pageY - (scrollY + rect.top); + + adjustedX = adjustedX * (cw / rect.width); + adjustedY = adjustedY * (ch / rect.height); + + var coords = { x: adjustedX, y: adjustedY }; + + if (event.type === 'touchstart') { + Browser.lastTouches[touch.identifier] = coords; + Browser.touches[touch.identifier] = coords; + } else if (event.type === 'touchend' || event.type === 'touchmove') { + Browser.lastTouches[touch.identifier] = Browser.touches[touch.identifier]; + Browser.touches[touch.identifier] = { x: adjustedX, y: adjustedY }; + } + return; + } + + var x = event.pageX - (scrollX + rect.left); + var y = event.pageY - (scrollY + rect.top); + + // the canvas might be CSS-scaled compared to its backbuffer; + // SDL-using content will want mouse coordinates in terms + // of backbuffer units. + x = x * (cw / rect.width); + y = y * (ch / rect.height); + + Browser.mouseMovementX = x - Browser.mouseX; + Browser.mouseMovementY = y - Browser.mouseY; + Browser.mouseX = x; + Browser.mouseY = y; + } + },xhrLoad:function (url, onload, onerror) { + var xhr = new XMLHttpRequest(); + xhr.open('GET', url, true); + xhr.responseType = 'arraybuffer'; + xhr.onload = function xhr_onload() { + if (xhr.status == 200 || (xhr.status == 0 && xhr.response)) { // file URLs can return 0 + onload(xhr.response); + } else { + onerror(); + } + }; + xhr.onerror = onerror; + xhr.send(null); + },asyncLoad:function (url, onload, onerror, noRunDep) { + Browser.xhrLoad(url, function(arrayBuffer) { + assert(arrayBuffer, 'Loading data file "' + url + '" failed (no arrayBuffer).'); + onload(new Uint8Array(arrayBuffer)); + if (!noRunDep) removeRunDependency('al ' + url); + }, function(event) { + if (onerror) { + onerror(); + } else { + throw 'Loading data file "' + url + '" failed.'; + } + }); + if (!noRunDep) addRunDependency('al ' + url); + },resizeListeners:[],updateResizeListeners:function () { + var canvas = Module['canvas']; + Browser.resizeListeners.forEach(function(listener) { + listener(canvas.width, canvas.height); + }); + },setCanvasSize:function (width, height, noUpdates) { + var canvas = Module['canvas']; + Browser.updateCanvasDimensions(canvas, width, height); + if (!noUpdates) Browser.updateResizeListeners(); + },windowedWidth:0,windowedHeight:0,setFullScreenCanvasSize:function () { + // check if SDL is available + if (typeof SDL != "undefined") { + var flags = HEAPU32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]; + flags = flags | 0x00800000; // set SDL_FULLSCREEN flag + HEAP32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]=flags + } + Browser.updateResizeListeners(); + },setWindowedCanvasSize:function () { + // check if SDL is available + if (typeof SDL != "undefined") { + var flags = HEAPU32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]; + flags = flags & ~0x00800000; // clear SDL_FULLSCREEN flag + HEAP32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]=flags + } + Browser.updateResizeListeners(); + },updateCanvasDimensions:function (canvas, wNative, hNative) { + if (wNative && hNative) { + canvas.widthNative = wNative; + canvas.heightNative = hNative; + } else { + wNative = canvas.widthNative; + hNative = canvas.heightNative; + } + var w = wNative; + var h = hNative; + if (Module['forcedAspectRatio'] && Module['forcedAspectRatio'] > 0) { + if (w/h < Module['forcedAspectRatio']) { + w = Math.round(h * Module['forcedAspectRatio']); + } else { + h = Math.round(w / Module['forcedAspectRatio']); + } + } + if (((document['webkitFullScreenElement'] || document['webkitFullscreenElement'] || + document['mozFullScreenElement'] || document['mozFullscreenElement'] || + document['fullScreenElement'] || document['fullscreenElement'] || + document['msFullScreenElement'] || document['msFullscreenElement'] || + document['webkitCurrentFullScreenElement']) === canvas.parentNode) && (typeof screen != 'undefined')) { + var factor = Math.min(screen.width / w, screen.height / h); + w = Math.round(w * factor); + h = Math.round(h * factor); + } + if (Browser.resizeCanvas) { + if (canvas.width != w) canvas.width = w; + if (canvas.height != h) canvas.height = h; + if (typeof canvas.style != 'undefined') { + canvas.style.removeProperty( "width"); + canvas.style.removeProperty("height"); + } + } else { + if (canvas.width != wNative) canvas.width = wNative; + if (canvas.height != hNative) canvas.height = hNative; + if (typeof canvas.style != 'undefined') { + if (w != wNative || h != hNative) { + canvas.style.setProperty( "width", w + "px", "important"); + canvas.style.setProperty("height", h + "px", "important"); + } else { + canvas.style.removeProperty( "width"); + canvas.style.removeProperty("height"); + } + } + } + },wgetRequests:{},nextWgetRequestHandle:0,getNextWgetRequestHandle:function () { + var handle = Browser.nextWgetRequestHandle; + Browser.nextWgetRequestHandle++; + return handle; + }}; + + function _time(ptr) { + var ret = (Date.now()/1000)|0; + if (ptr) { + HEAP32[((ptr)>>2)]=ret; + } + return ret; + } +___errno_state = Runtime.staticAlloc(4); HEAP32[((___errno_state)>>2)]=0; +Module["requestFullScreen"] = function Module_requestFullScreen(lockPointer, resizeCanvas) { Browser.requestFullScreen(lockPointer, resizeCanvas) }; + Module["requestAnimationFrame"] = function Module_requestAnimationFrame(func) { Browser.requestAnimationFrame(func) }; + Module["setCanvasSize"] = function Module_setCanvasSize(width, height, noUpdates) { Browser.setCanvasSize(width, height, noUpdates) }; + Module["pauseMainLoop"] = function Module_pauseMainLoop() { Browser.mainLoop.pause() }; + Module["resumeMainLoop"] = function Module_resumeMainLoop() { Browser.mainLoop.resume() }; + Module["getUserMedia"] = function Module_getUserMedia() { Browser.getUserMedia() } +FS.staticInit();__ATINIT__.unshift({ func: function() { if (!Module["noFSInit"] && !FS.init.initialized) FS.init() } });__ATMAIN__.push({ func: function() { FS.ignorePermissions = false } });__ATEXIT__.push({ func: function() { FS.quit() } });Module["FS_createFolder"] = FS.createFolder;Module["FS_createPath"] = FS.createPath;Module["FS_createDataFile"] = FS.createDataFile;Module["FS_createPreloadedFile"] = FS.createPreloadedFile;Module["FS_createLazyFile"] = FS.createLazyFile;Module["FS_createLink"] = FS.createLink;Module["FS_createDevice"] = FS.createDevice; +__ATINIT__.unshift({ func: function() { TTY.init() } });__ATEXIT__.push({ func: function() { TTY.shutdown() } });TTY.utf8 = new Runtime.UTF8Processor(); +if (ENVIRONMENT_IS_NODE) { var fs = require("fs"); NODEFS.staticInit(); } +STACK_BASE = STACKTOP = Runtime.alignMemory(STATICTOP); + +staticSealed = true; // seal the static portion of memory + +STACK_MAX = STACK_BASE + TOTAL_STACK; + +DYNAMIC_BASE = DYNAMICTOP = Runtime.alignMemory(STACK_MAX); + +assert(DYNAMIC_BASE < TOTAL_MEMORY, "TOTAL_MEMORY not big enough for stack"); + + var ctlz_i8 = allocate([8,7,6,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], "i8", ALLOC_DYNAMIC); + var cttz_i8 = allocate([8,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,7,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0], "i8", ALLOC_DYNAMIC); + + +Module.asmGlobalArg = { "Math": Math, "Int8Array": Int8Array, "Int16Array": Int16Array, "Int32Array": Int32Array, "Uint8Array": Uint8Array, "Uint16Array": Uint16Array, "Uint32Array": Uint32Array, "Float32Array": Float32Array, "Float64Array": Float64Array }; +Module.asmLibraryArg = { "abort": abort, "assert": assert, "min": Math_min, "_fflush": _fflush, "_sysconf": _sysconf, "_abort": _abort, "___setErrNo": ___setErrNo, "_sbrk": _sbrk, "_time": _time, "_emscripten_set_main_loop_timing": _emscripten_set_main_loop_timing, "_emscripten_memcpy_big": _emscripten_memcpy_big, "_emscripten_set_main_loop": _emscripten_set_main_loop, "___errno_location": ___errno_location, "STACKTOP": STACKTOP, "STACK_MAX": STACK_MAX, "tempDoublePtr": tempDoublePtr, "ABORT": ABORT, "cttz_i8": cttz_i8, "ctlz_i8": ctlz_i8, "NaN": NaN, "Infinity": Infinity }; +// EMSCRIPTEN_START_ASM +var asm = (function(global, env, buffer) { + 'use asm'; + + var HEAP8 = new global.Int8Array(buffer); + var HEAP16 = new global.Int16Array(buffer); + var HEAP32 = new global.Int32Array(buffer); + var HEAPU8 = new global.Uint8Array(buffer); + var HEAPU16 = new global.Uint16Array(buffer); + var HEAPU32 = new global.Uint32Array(buffer); + var HEAPF32 = new global.Float32Array(buffer); + var HEAPF64 = new global.Float64Array(buffer); + + + var STACKTOP=env.STACKTOP|0; + var STACK_MAX=env.STACK_MAX|0; + var tempDoublePtr=env.tempDoublePtr|0; + var ABORT=env.ABORT|0; + var cttz_i8=env.cttz_i8|0; + var ctlz_i8=env.ctlz_i8|0; + + var __THREW__ = 0; + var threwValue = 0; + var setjmpId = 0; + var undef = 0; + var nan = +env.NaN, inf = +env.Infinity; + var tempInt = 0, tempBigInt = 0, tempBigIntP = 0, tempBigIntS = 0, tempBigIntR = 0.0, tempBigIntI = 0, tempBigIntD = 0, tempValue = 0, tempDouble = 0.0; + + var tempRet0 = 0; + var tempRet1 = 0; + var tempRet2 = 0; + var tempRet3 = 0; + var tempRet4 = 0; + var tempRet5 = 0; + var tempRet6 = 0; + var tempRet7 = 0; + var tempRet8 = 0; + var tempRet9 = 0; + var Math_floor=global.Math.floor; + var Math_abs=global.Math.abs; + var Math_sqrt=global.Math.sqrt; + var Math_pow=global.Math.pow; + var Math_cos=global.Math.cos; + var Math_sin=global.Math.sin; + var Math_tan=global.Math.tan; + var Math_acos=global.Math.acos; + var Math_asin=global.Math.asin; + var Math_atan=global.Math.atan; + var Math_atan2=global.Math.atan2; + var Math_exp=global.Math.exp; + var Math_log=global.Math.log; + var Math_ceil=global.Math.ceil; + var Math_imul=global.Math.imul; + var abort=env.abort; + var assert=env.assert; + var Math_min=env.min; + var _fflush=env._fflush; + var _sysconf=env._sysconf; + var _abort=env._abort; + var ___setErrNo=env.___setErrNo; + var _sbrk=env._sbrk; + var _time=env._time; + var _emscripten_set_main_loop_timing=env._emscripten_set_main_loop_timing; + var _emscripten_memcpy_big=env._emscripten_memcpy_big; + var _emscripten_set_main_loop=env._emscripten_set_main_loop; + var ___errno_location=env.___errno_location; + var tempFloat = 0.0; + +// EMSCRIPTEN_START_FUNCS +function stackAlloc(size) { + size = size|0; + var ret = 0; + ret = STACKTOP; + STACKTOP = (STACKTOP + size)|0; +STACKTOP = (STACKTOP + 15)&-16; + + return ret|0; +} +function stackSave() { + return STACKTOP|0; +} +function stackRestore(top) { + top = top|0; + STACKTOP = top; +} + +function setThrew(threw, value) { + threw = threw|0; + value = value|0; + if ((__THREW__|0) == 0) { + __THREW__ = threw; + threwValue = value; + } +} +function copyTempFloat(ptr) { + ptr = ptr|0; + HEAP8[tempDoublePtr>>0] = HEAP8[ptr>>0]; + HEAP8[tempDoublePtr+1>>0] = HEAP8[ptr+1>>0]; + HEAP8[tempDoublePtr+2>>0] = HEAP8[ptr+2>>0]; + HEAP8[tempDoublePtr+3>>0] = HEAP8[ptr+3>>0]; +} +function copyTempDouble(ptr) { + ptr = ptr|0; + HEAP8[tempDoublePtr>>0] = HEAP8[ptr>>0]; + HEAP8[tempDoublePtr+1>>0] = HEAP8[ptr+1>>0]; + HEAP8[tempDoublePtr+2>>0] = HEAP8[ptr+2>>0]; + HEAP8[tempDoublePtr+3>>0] = HEAP8[ptr+3>>0]; + HEAP8[tempDoublePtr+4>>0] = HEAP8[ptr+4>>0]; + HEAP8[tempDoublePtr+5>>0] = HEAP8[ptr+5>>0]; + HEAP8[tempDoublePtr+6>>0] = HEAP8[ptr+6>>0]; + HEAP8[tempDoublePtr+7>>0] = HEAP8[ptr+7>>0]; +} +function setTempRet0(value) { + value = value|0; + tempRet0 = value; +} +function getTempRet0() { + return tempRet0|0; +} + +function _crypto_verify_32_ref($x,$y) { + $x = $x|0; + $y = $y|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0; + var $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; + var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; + var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; + var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$x>>0]|0; + $1 = HEAP8[$y>>0]|0; + $2 = $1 ^ $0; + $3 = (($x) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = (($y) + 1|0); + $6 = HEAP8[$5>>0]|0; + $7 = $6 ^ $4; + $8 = $7 | $2; + $9 = (($x) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = (($y) + 2|0); + $12 = HEAP8[$11>>0]|0; + $13 = $12 ^ $10; + $14 = $8 | $13; + $15 = (($x) + 3|0); + $16 = HEAP8[$15>>0]|0; + $17 = (($y) + 3|0); + $18 = HEAP8[$17>>0]|0; + $19 = $18 ^ $16; + $20 = $14 | $19; + $21 = (($x) + 4|0); + $22 = HEAP8[$21>>0]|0; + $23 = (($y) + 4|0); + $24 = HEAP8[$23>>0]|0; + $25 = $24 ^ $22; + $26 = $20 | $25; + $27 = (($x) + 5|0); + $28 = HEAP8[$27>>0]|0; + $29 = (($y) + 5|0); + $30 = HEAP8[$29>>0]|0; + $31 = $30 ^ $28; + $32 = $26 | $31; + $33 = (($x) + 6|0); + $34 = HEAP8[$33>>0]|0; + $35 = (($y) + 6|0); + $36 = HEAP8[$35>>0]|0; + $37 = $36 ^ $34; + $38 = $32 | $37; + $39 = (($x) + 7|0); + $40 = HEAP8[$39>>0]|0; + $41 = (($y) + 7|0); + $42 = HEAP8[$41>>0]|0; + $43 = $42 ^ $40; + $44 = $38 | $43; + $45 = (($x) + 8|0); + $46 = HEAP8[$45>>0]|0; + $47 = (($y) + 8|0); + $48 = HEAP8[$47>>0]|0; + $49 = $48 ^ $46; + $50 = $44 | $49; + $51 = (($x) + 9|0); + $52 = HEAP8[$51>>0]|0; + $53 = (($y) + 9|0); + $54 = HEAP8[$53>>0]|0; + $55 = $54 ^ $52; + $56 = $50 | $55; + $57 = (($x) + 10|0); + $58 = HEAP8[$57>>0]|0; + $59 = (($y) + 10|0); + $60 = HEAP8[$59>>0]|0; + $61 = $60 ^ $58; + $62 = $56 | $61; + $63 = (($x) + 11|0); + $64 = HEAP8[$63>>0]|0; + $65 = (($y) + 11|0); + $66 = HEAP8[$65>>0]|0; + $67 = $66 ^ $64; + $68 = $62 | $67; + $69 = (($x) + 12|0); + $70 = HEAP8[$69>>0]|0; + $71 = (($y) + 12|0); + $72 = HEAP8[$71>>0]|0; + $73 = $72 ^ $70; + $74 = $68 | $73; + $75 = (($x) + 13|0); + $76 = HEAP8[$75>>0]|0; + $77 = (($y) + 13|0); + $78 = HEAP8[$77>>0]|0; + $79 = $78 ^ $76; + $80 = $74 | $79; + $81 = (($x) + 14|0); + $82 = HEAP8[$81>>0]|0; + $83 = (($y) + 14|0); + $84 = HEAP8[$83>>0]|0; + $85 = $84 ^ $82; + $86 = $80 | $85; + $87 = (($x) + 15|0); + $88 = HEAP8[$87>>0]|0; + $89 = (($y) + 15|0); + $90 = HEAP8[$89>>0]|0; + $91 = $90 ^ $88; + $92 = $86 | $91; + $93 = (($x) + 16|0); + $94 = HEAP8[$93>>0]|0; + $95 = (($y) + 16|0); + $96 = HEAP8[$95>>0]|0; + $97 = $96 ^ $94; + $98 = $92 | $97; + $99 = (($x) + 17|0); + $100 = HEAP8[$99>>0]|0; + $101 = (($y) + 17|0); + $102 = HEAP8[$101>>0]|0; + $103 = $102 ^ $100; + $104 = $98 | $103; + $105 = (($x) + 18|0); + $106 = HEAP8[$105>>0]|0; + $107 = (($y) + 18|0); + $108 = HEAP8[$107>>0]|0; + $109 = $108 ^ $106; + $110 = $104 | $109; + $111 = (($x) + 19|0); + $112 = HEAP8[$111>>0]|0; + $113 = (($y) + 19|0); + $114 = HEAP8[$113>>0]|0; + $115 = $114 ^ $112; + $116 = $110 | $115; + $117 = (($x) + 20|0); + $118 = HEAP8[$117>>0]|0; + $119 = (($y) + 20|0); + $120 = HEAP8[$119>>0]|0; + $121 = $120 ^ $118; + $122 = $116 | $121; + $123 = (($x) + 21|0); + $124 = HEAP8[$123>>0]|0; + $125 = (($y) + 21|0); + $126 = HEAP8[$125>>0]|0; + $127 = $126 ^ $124; + $128 = $122 | $127; + $129 = (($x) + 22|0); + $130 = HEAP8[$129>>0]|0; + $131 = (($y) + 22|0); + $132 = HEAP8[$131>>0]|0; + $133 = $132 ^ $130; + $134 = $128 | $133; + $135 = (($x) + 23|0); + $136 = HEAP8[$135>>0]|0; + $137 = (($y) + 23|0); + $138 = HEAP8[$137>>0]|0; + $139 = $138 ^ $136; + $140 = $134 | $139; + $141 = (($x) + 24|0); + $142 = HEAP8[$141>>0]|0; + $143 = (($y) + 24|0); + $144 = HEAP8[$143>>0]|0; + $145 = $144 ^ $142; + $146 = $140 | $145; + $147 = (($x) + 25|0); + $148 = HEAP8[$147>>0]|0; + $149 = (($y) + 25|0); + $150 = HEAP8[$149>>0]|0; + $151 = $150 ^ $148; + $152 = $146 | $151; + $153 = (($x) + 26|0); + $154 = HEAP8[$153>>0]|0; + $155 = (($y) + 26|0); + $156 = HEAP8[$155>>0]|0; + $157 = $156 ^ $154; + $158 = $152 | $157; + $159 = (($x) + 27|0); + $160 = HEAP8[$159>>0]|0; + $161 = (($y) + 27|0); + $162 = HEAP8[$161>>0]|0; + $163 = $162 ^ $160; + $164 = $158 | $163; + $165 = (($x) + 28|0); + $166 = HEAP8[$165>>0]|0; + $167 = (($y) + 28|0); + $168 = HEAP8[$167>>0]|0; + $169 = $168 ^ $166; + $170 = $164 | $169; + $171 = (($x) + 29|0); + $172 = HEAP8[$171>>0]|0; + $173 = (($y) + 29|0); + $174 = HEAP8[$173>>0]|0; + $175 = $174 ^ $172; + $176 = $170 | $175; + $177 = (($x) + 30|0); + $178 = HEAP8[$177>>0]|0; + $179 = (($y) + 30|0); + $180 = HEAP8[$179>>0]|0; + $181 = $180 ^ $178; + $182 = $176 | $181; + $183 = (($x) + 31|0); + $184 = HEAP8[$183>>0]|0; + $185 = (($y) + 31|0); + $186 = HEAP8[$185>>0]|0; + $187 = $186 ^ $184; + $188 = $182 | $187; + $189 = $188&255; + $190 = (($189) + 511)|0; + $191 = $190 >>> 8; + $192 = $191 & 1; + $193 = (($192) + -1)|0; + STACKTOP = sp;return ($193|0); +} +function _curve25519_sign($signature_out,$curve25519_privkey,$msg,$msg_len) { + $signature_out = $signature_out|0; + $curve25519_privkey = $curve25519_privkey|0; + $msg = $msg|0; + $msg_len = $msg_len|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $ed_keypair = 0, $ed_pubkey_point = 0, $sigbuf_out_len = 0, dest = 0; + var label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 240|0; + $ed_pubkey_point = sp + 8|0; + $ed_keypair = sp + 168|0; + $sigbuf_out_len = sp; + $0 = (($msg_len) + 64)|0; + $1 = STACKTOP; STACKTOP = STACKTOP + ((((1*$0)|0)+15)&-16)|0;; + $2 = $sigbuf_out_len; + $3 = $2; + HEAP32[$3>>2] = 0; + $4 = (($2) + 4)|0; + $5 = $4; + HEAP32[$5>>2] = 0; + dest=$ed_keypair+0|0; src=$curve25519_privkey+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _crypto_sign_ed25519_ref10_ge_scalarmult_base($ed_pubkey_point,$curve25519_privkey); + $6 = (($ed_keypair) + 32|0); + _crypto_sign_ed25519_ref10_ge_p3_tobytes($6,$ed_pubkey_point); + $7 = (($ed_keypair) + 63|0); + $8 = HEAP8[$7>>0]|0; + $9 = $8&255; + $10 = $9 & 128; + (_crypto_sign_modified($1,$sigbuf_out_len,$msg,$msg_len,0,$ed_keypair)|0); + dest=$signature_out+0|0; src=$1+0|0; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $11 = (($signature_out) + 63|0); + $12 = HEAP8[$11>>0]|0; + $13 = $12&255; + $14 = $13 | $10; + $15 = $14&255; + HEAP8[$11>>0] = $15; + STACKTOP = sp;return; +} +function _curve25519_verify($signature,$curve25519_pubkey,$msg,$msg_len) { + $signature = $signature|0; + $curve25519_pubkey = $curve25519_pubkey|0; + $msg = $msg|0; + $msg_len = $msg_len|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $ed_pubkey = 0, $ed_y = 0; + var $inv_mont_x_plus_one = 0, $mont_x = 0, $mont_x_minus_one = 0, $mont_x_plus_one = 0, $one = 0, $some_retval = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 288|0; + $mont_x = sp + 208|0; + $mont_x_minus_one = sp + 168|0; + $mont_x_plus_one = sp + 128|0; + $inv_mont_x_plus_one = sp + 88|0; + $one = sp + 48|0; + $ed_y = sp + 8|0; + $ed_pubkey = sp + 248|0; + $some_retval = sp; + $0 = (($msg_len) + 64)|0; + $1 = STACKTOP; STACKTOP = STACKTOP + ((((1*$0)|0)+15)&-16)|0;; + $2 = STACKTOP; STACKTOP = STACKTOP + ((((1*$0)|0)+15)&-16)|0;; + _crypto_sign_ed25519_ref10_fe_frombytes($mont_x,$curve25519_pubkey); + _crypto_sign_ed25519_ref10_fe_1($one); + _crypto_sign_ed25519_ref10_fe_sub($mont_x_minus_one,$mont_x,$one); + _crypto_sign_ed25519_ref10_fe_add($mont_x_plus_one,$mont_x,$one); + _crypto_sign_ed25519_ref10_fe_invert($inv_mont_x_plus_one,$mont_x_plus_one); + _crypto_sign_ed25519_ref10_fe_mul($ed_y,$mont_x_minus_one,$inv_mont_x_plus_one); + _crypto_sign_ed25519_ref10_fe_tobytes($ed_pubkey,$ed_y); + $3 = (($signature) + 63|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = $5 & 128; + $7 = (($ed_pubkey) + 31|0); + $8 = HEAP8[$7>>0]|0; + $9 = $8&255; + $10 = $9 | $6; + $11 = $10&255; + HEAP8[$7>>0] = $11; + $12 = HEAP8[$3>>0]|0; + $13 = $12&255; + $14 = $13 & 127; + $15 = $14&255; + HEAP8[$3>>0] = $15; + dest=$1+0|0; src=$signature+0|0; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $16 = (($1) + 64|0); + _memcpy(($16|0),($msg|0),($msg_len|0))|0; + $17 = (_crypto_sign_edwards25519sha512batch_ref10_open($2,$some_retval,$1,$0,0,$ed_pubkey)|0); + STACKTOP = sp;return ($17|0); +} +function _crypto_hash_sha512_ref($output,$input,$0,$1) { + $output = $output|0; + $input = $input|0; + $0 = $0|0; + $1 = $1|0; + var $ctx = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 208|0; + $ctx = sp; + _sph_sha512_init($ctx); + _sph_sha384($ctx,$input,$0); + _sph_sha512_close($ctx,$output); + STACKTOP = sp;return 0; +} +function _crypto_sign_modified($sm,$smlen,$m,$0,$1,$sk) { + $sm = $sm|0; + $smlen = $smlen|0; + $m = $m|0; + $0 = $0|0; + $1 = $1|0; + $sk = $sk|0; + var $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $R = 0, $hram = 0, $nonce = 0, $pk1 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 320|0; + $pk1 = sp + 288|0; + $nonce = sp + 224|0; + $hram = sp + 160|0; + $R = sp; + $2 = (($sk) + 32|0); + dest=$pk1+0|0; src=$2+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $3 = (_i64Add(($0|0),($1|0),64,0)|0); + $4 = tempRet0; + $5 = $smlen; + $6 = $5; + HEAP32[$6>>2] = $3; + $7 = (($5) + 4)|0; + $8 = $7; + HEAP32[$8>>2] = $4; + $9 = (($sm) + 64|0); + _memmove(($9|0),($m|0),($0|0))|0; + $10 = (($sm) + 32|0); + _memmove(($10|0),($sk|0),32)|0; + $11 = (_i64Add(($0|0),($1|0),32,0)|0); + $12 = tempRet0; + (_crypto_hash_sha512_ref($nonce,$10,$11,$12)|0); + dest=$10+0|0; src=$pk1+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _crypto_sign_ed25519_ref10_sc_reduce($nonce); + _crypto_sign_ed25519_ref10_ge_scalarmult_base($R,$nonce); + _crypto_sign_ed25519_ref10_ge_p3_tobytes($sm,$R); + (_crypto_hash_sha512_ref($hram,$sm,$3,$4)|0); + _crypto_sign_ed25519_ref10_sc_reduce($hram); + _crypto_sign_ed25519_ref10_sc_muladd($10,$hram,$sk,$nonce); + STACKTOP = sp;return 0; +} +function _curve25519_donna($mypublic,$secret,$basepoint) { + $mypublic = $mypublic|0; + $secret = $secret|0; + $basepoint = $basepoint|0; + var $bp = 0, $e = 0, $x = 0, $z = 0, $zmone = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 368|0; + $bp = sp + 248|0; + $x = sp + 168|0; + $z = sp + 80|0; + $zmone = sp; + $e = sp + 328|0; + dest=$e+0|0; src=$secret+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _fexpand($bp,$basepoint); + _cmult($x,$z,$e,$bp); + _crecip($zmone,$z); + _fmul($z,$x,$zmone); + _fcontract($mypublic,$z); + STACKTOP = sp;return 0; +} +function _fexpand($output,$input) { + $output = $output|0; + $input = $input|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $3 = 0, $30 = 0, $31 = 0; + var $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; + var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; + var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; + var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$input>>0]|0; + $1 = $0&255; + $2 = (($input) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($input) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + $15 = (($input) + 3|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16&255; + $18 = (_bitshift64Shl(($17|0),0,24)|0); + $19 = tempRet0; + $20 = $18 & 50331648; + $21 = $13 | $20; + $22 = $output; + $23 = $22; + HEAP32[$23>>2] = $21; + $24 = (($22) + 4)|0; + $25 = $24; + HEAP32[$25>>2] = $14; + $26 = HEAP8[$15>>0]|0; + $27 = $26&255; + $28 = (($input) + 4|0); + $29 = HEAP8[$28>>0]|0; + $30 = $29&255; + $31 = (_bitshift64Shl(($30|0),0,8)|0); + $32 = tempRet0; + $33 = $31 | $27; + $34 = (($input) + 5|0); + $35 = HEAP8[$34>>0]|0; + $36 = $35&255; + $37 = (_bitshift64Shl(($36|0),0,16)|0); + $38 = tempRet0; + $39 = $33 | $37; + $40 = $32 | $38; + $41 = (($input) + 6|0); + $42 = HEAP8[$41>>0]|0; + $43 = $42&255; + $44 = (_bitshift64Shl(($43|0),0,24)|0); + $45 = tempRet0; + $46 = $39 | $44; + $47 = $40 | $45; + $48 = (_bitshift64Lshr(($46|0),($47|0),2)|0); + $49 = tempRet0; + $50 = $48 & 33554431; + $51 = (($output) + 8|0); + $52 = $51; + $53 = $52; + HEAP32[$53>>2] = $50; + $54 = (($52) + 4)|0; + $55 = $54; + HEAP32[$55>>2] = 0; + $56 = HEAP8[$41>>0]|0; + $57 = $56&255; + $58 = (($input) + 7|0); + $59 = HEAP8[$58>>0]|0; + $60 = $59&255; + $61 = (_bitshift64Shl(($60|0),0,8)|0); + $62 = tempRet0; + $63 = $61 | $57; + $64 = (($input) + 8|0); + $65 = HEAP8[$64>>0]|0; + $66 = $65&255; + $67 = (_bitshift64Shl(($66|0),0,16)|0); + $68 = tempRet0; + $69 = $63 | $67; + $70 = $62 | $68; + $71 = (($input) + 9|0); + $72 = HEAP8[$71>>0]|0; + $73 = $72&255; + $74 = (_bitshift64Shl(($73|0),0,24)|0); + $75 = tempRet0; + $76 = $69 | $74; + $77 = $70 | $75; + $78 = (_bitshift64Lshr(($76|0),($77|0),3)|0); + $79 = tempRet0; + $80 = $78 & 67108863; + $81 = (($output) + 16|0); + $82 = $81; + $83 = $82; + HEAP32[$83>>2] = $80; + $84 = (($82) + 4)|0; + $85 = $84; + HEAP32[$85>>2] = 0; + $86 = HEAP8[$71>>0]|0; + $87 = $86&255; + $88 = (($input) + 10|0); + $89 = HEAP8[$88>>0]|0; + $90 = $89&255; + $91 = (_bitshift64Shl(($90|0),0,8)|0); + $92 = tempRet0; + $93 = $91 | $87; + $94 = (($input) + 11|0); + $95 = HEAP8[$94>>0]|0; + $96 = $95&255; + $97 = (_bitshift64Shl(($96|0),0,16)|0); + $98 = tempRet0; + $99 = $93 | $97; + $100 = $92 | $98; + $101 = (($input) + 12|0); + $102 = HEAP8[$101>>0]|0; + $103 = $102&255; + $104 = (_bitshift64Shl(($103|0),0,24)|0); + $105 = tempRet0; + $106 = $99 | $104; + $107 = $100 | $105; + $108 = (_bitshift64Lshr(($106|0),($107|0),5)|0); + $109 = tempRet0; + $110 = $108 & 33554431; + $111 = (($output) + 24|0); + $112 = $111; + $113 = $112; + HEAP32[$113>>2] = $110; + $114 = (($112) + 4)|0; + $115 = $114; + HEAP32[$115>>2] = 0; + $116 = HEAP8[$101>>0]|0; + $117 = $116&255; + $118 = (($input) + 13|0); + $119 = HEAP8[$118>>0]|0; + $120 = $119&255; + $121 = (_bitshift64Shl(($120|0),0,8)|0); + $122 = tempRet0; + $123 = $121 | $117; + $124 = (($input) + 14|0); + $125 = HEAP8[$124>>0]|0; + $126 = $125&255; + $127 = (_bitshift64Shl(($126|0),0,16)|0); + $128 = tempRet0; + $129 = $123 | $127; + $130 = $122 | $128; + $131 = (($input) + 15|0); + $132 = HEAP8[$131>>0]|0; + $133 = $132&255; + $134 = (_bitshift64Shl(($133|0),0,24)|0); + $135 = tempRet0; + $136 = $129 | $134; + $137 = $130 | $135; + $138 = (_bitshift64Lshr(($136|0),($137|0),6)|0); + $139 = tempRet0; + $140 = $138 & 67108863; + $141 = (($output) + 32|0); + $142 = $141; + $143 = $142; + HEAP32[$143>>2] = $140; + $144 = (($142) + 4)|0; + $145 = $144; + HEAP32[$145>>2] = 0; + $146 = (($input) + 16|0); + $147 = HEAP8[$146>>0]|0; + $148 = $147&255; + $149 = (($input) + 17|0); + $150 = HEAP8[$149>>0]|0; + $151 = $150&255; + $152 = (_bitshift64Shl(($151|0),0,8)|0); + $153 = tempRet0; + $154 = $152 | $148; + $155 = (($input) + 18|0); + $156 = HEAP8[$155>>0]|0; + $157 = $156&255; + $158 = (_bitshift64Shl(($157|0),0,16)|0); + $159 = tempRet0; + $160 = $154 | $158; + $161 = $153 | $159; + $162 = (($input) + 19|0); + $163 = HEAP8[$162>>0]|0; + $164 = $163&255; + $165 = (_bitshift64Shl(($164|0),0,24)|0); + $166 = tempRet0; + $167 = $165 & 16777216; + $168 = $160 | $167; + $169 = (($output) + 40|0); + $170 = $169; + $171 = $170; + HEAP32[$171>>2] = $168; + $172 = (($170) + 4)|0; + $173 = $172; + HEAP32[$173>>2] = $161; + $174 = HEAP8[$162>>0]|0; + $175 = $174&255; + $176 = (($input) + 20|0); + $177 = HEAP8[$176>>0]|0; + $178 = $177&255; + $179 = (_bitshift64Shl(($178|0),0,8)|0); + $180 = tempRet0; + $181 = $179 | $175; + $182 = (($input) + 21|0); + $183 = HEAP8[$182>>0]|0; + $184 = $183&255; + $185 = (_bitshift64Shl(($184|0),0,16)|0); + $186 = tempRet0; + $187 = $181 | $185; + $188 = $180 | $186; + $189 = (($input) + 22|0); + $190 = HEAP8[$189>>0]|0; + $191 = $190&255; + $192 = (_bitshift64Shl(($191|0),0,24)|0); + $193 = tempRet0; + $194 = $187 | $192; + $195 = $188 | $193; + $196 = (_bitshift64Lshr(($194|0),($195|0),1)|0); + $197 = tempRet0; + $198 = $196 & 67108863; + $199 = (($output) + 48|0); + $200 = $199; + $201 = $200; + HEAP32[$201>>2] = $198; + $202 = (($200) + 4)|0; + $203 = $202; + HEAP32[$203>>2] = 0; + $204 = HEAP8[$189>>0]|0; + $205 = $204&255; + $206 = (($input) + 23|0); + $207 = HEAP8[$206>>0]|0; + $208 = $207&255; + $209 = (_bitshift64Shl(($208|0),0,8)|0); + $210 = tempRet0; + $211 = $209 | $205; + $212 = (($input) + 24|0); + $213 = HEAP8[$212>>0]|0; + $214 = $213&255; + $215 = (_bitshift64Shl(($214|0),0,16)|0); + $216 = tempRet0; + $217 = $211 | $215; + $218 = $210 | $216; + $219 = (($input) + 25|0); + $220 = HEAP8[$219>>0]|0; + $221 = $220&255; + $222 = (_bitshift64Shl(($221|0),0,24)|0); + $223 = tempRet0; + $224 = $217 | $222; + $225 = $218 | $223; + $226 = (_bitshift64Lshr(($224|0),($225|0),3)|0); + $227 = tempRet0; + $228 = $226 & 33554431; + $229 = (($output) + 56|0); + $230 = $229; + $231 = $230; + HEAP32[$231>>2] = $228; + $232 = (($230) + 4)|0; + $233 = $232; + HEAP32[$233>>2] = 0; + $234 = HEAP8[$219>>0]|0; + $235 = $234&255; + $236 = (($input) + 26|0); + $237 = HEAP8[$236>>0]|0; + $238 = $237&255; + $239 = (_bitshift64Shl(($238|0),0,8)|0); + $240 = tempRet0; + $241 = $239 | $235; + $242 = (($input) + 27|0); + $243 = HEAP8[$242>>0]|0; + $244 = $243&255; + $245 = (_bitshift64Shl(($244|0),0,16)|0); + $246 = tempRet0; + $247 = $241 | $245; + $248 = $240 | $246; + $249 = (($input) + 28|0); + $250 = HEAP8[$249>>0]|0; + $251 = $250&255; + $252 = (_bitshift64Shl(($251|0),0,24)|0); + $253 = tempRet0; + $254 = $247 | $252; + $255 = $248 | $253; + $256 = (_bitshift64Lshr(($254|0),($255|0),4)|0); + $257 = tempRet0; + $258 = $256 & 67108863; + $259 = (($output) + 64|0); + $260 = $259; + $261 = $260; + HEAP32[$261>>2] = $258; + $262 = (($260) + 4)|0; + $263 = $262; + HEAP32[$263>>2] = 0; + $264 = HEAP8[$249>>0]|0; + $265 = $264&255; + $266 = (($input) + 29|0); + $267 = HEAP8[$266>>0]|0; + $268 = $267&255; + $269 = (_bitshift64Shl(($268|0),0,8)|0); + $270 = tempRet0; + $271 = $269 | $265; + $272 = (($input) + 30|0); + $273 = HEAP8[$272>>0]|0; + $274 = $273&255; + $275 = (_bitshift64Shl(($274|0),0,16)|0); + $276 = tempRet0; + $277 = $271 | $275; + $278 = $270 | $276; + $279 = (($input) + 31|0); + $280 = HEAP8[$279>>0]|0; + $281 = $280&255; + $282 = (_bitshift64Shl(($281|0),0,24)|0); + $283 = tempRet0; + $284 = $277 | $282; + $285 = $278 | $283; + $286 = (_bitshift64Lshr(($284|0),($285|0),6)|0); + $287 = tempRet0; + $288 = $286 & 33554431; + $289 = (($output) + 72|0); + $290 = $289; + $291 = $290; + HEAP32[$291>>2] = $288; + $292 = (($290) + 4)|0; + $293 = $292; + HEAP32[$293>>2] = 0; + STACKTOP = sp;return; +} +function _cmult($resultx,$resultz,$n,$q) { + $resultx = $resultx|0; + $resultz = $resultz|0; + $n = $n|0; + $q = $q|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $3 = 0, $4 = 0; + var $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $a = 0, $b = 0, $byte$09 = 0, $c = 0, $d = 0, $e = 0, $exitcond = 0, $exitcond20 = 0, $f = 0, $g = 0, $h = 0, $i$018 = 0, $j$08 = 0, $nqpqx$019 = 0, $nqpqx$110 = 0; + var $nqpqx$110$phi = 0, $nqpqx2$014 = 0, $nqpqx2$14 = 0, $nqpqx2$14$phi = 0, $nqpqz$013 = 0, $nqpqz$13 = 0, $nqpqz$13$phi = 0, $nqpqz2$015 = 0, $nqpqz2$15 = 0, $nqpqz2$15$phi = 0, $nqx$011 = 0, $nqx$11 = 0, $nqx$11$phi = 0, $nqx2$016 = 0, $nqx2$16 = 0, $nqx2$16$phi = 0, $nqz$012 = 0, $nqz$12 = 0, $nqz$12$phi = 0, $nqz2$017 = 0; + var $nqz2$17 = 0, $nqz2$17$phi = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 1216|0; + $a = sp + 1064|0; + $b = sp + 912|0; + $c = sp + 760|0; + $d = sp + 608|0; + $e = sp + 456|0; + $f = sp + 304|0; + $g = sp + 152|0; + $h = sp; + _memset(($a|0),0,152)|0; + _memset(($b|0),0,152)|0; + $0 = $b; + $1 = $0; + HEAP32[$1>>2] = 1; + $2 = (($0) + 4)|0; + $3 = $2; + HEAP32[$3>>2] = 0; + _memset(($c|0),0,152)|0; + $4 = $c; + $5 = $4; + HEAP32[$5>>2] = 1; + $6 = (($4) + 4)|0; + $7 = $6; + HEAP32[$7>>2] = 0; + _memset(($d|0),0,152)|0; + _memset(($e|0),0,152)|0; + _memset(($f|0),0,152)|0; + $8 = $f; + $9 = $8; + HEAP32[$9>>2] = 1; + $10 = (($8) + 4)|0; + $11 = $10; + HEAP32[$11>>2] = 0; + _memset(($g|0),0,152)|0; + _memset(($h|0),0,152)|0; + $12 = $h; + $13 = $12; + HEAP32[$13>>2] = 1; + $14 = (($12) + 4)|0; + $15 = $14; + HEAP32[$15>>2] = 0; + dest=$a+0|0; src=$q+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + $i$018 = 0;$nqpqx$019 = $a;$nqpqx2$014 = $e;$nqpqz$013 = $b;$nqpqz2$015 = $f;$nqx$011 = $c;$nqx2$016 = $g;$nqz$012 = $d;$nqz2$017 = $h; + while(1) { + $16 = (31 - ($i$018))|0; + $17 = (($n) + ($16)|0); + $18 = HEAP8[$17>>0]|0; + $byte$09 = $18;$j$08 = 0;$nqpqx$110 = $nqpqx$019;$nqpqx2$14 = $nqpqx2$014;$nqpqz$13 = $nqpqz$013;$nqpqz2$15 = $nqpqz2$015;$nqx$11 = $nqx$011;$nqx2$16 = $nqx2$016;$nqz$12 = $nqz$012;$nqz2$17 = $nqz2$017; + while(1) { + $19 = $byte$09&255; + $20 = $19 >>> 7; + _swap_conditional($nqx$11,$nqpqx$110,$20,0); + _swap_conditional($nqz$12,$nqpqz$13,$20,0); + _fmonty($nqx2$16,$nqz2$17,$nqpqx2$14,$nqpqz2$15,$nqx$11,$nqz$12,$nqpqx$110,$nqpqz$13,$q); + _swap_conditional($nqx2$16,$nqpqx2$14,$20,0); + _swap_conditional($nqz2$17,$nqpqz2$15,$20,0); + $21 = $19 << 1; + $22 = $21&255; + $23 = (($j$08) + 1)|0; + $exitcond = ($23|0)==(8); + if ($exitcond) { + break; + } else { + $nqz2$17$phi = $nqz$12;$nqz$12$phi = $nqz2$17;$nqx2$16$phi = $nqx$11;$nqx$11$phi = $nqx2$16;$nqpqz2$15$phi = $nqpqz$13;$nqpqz$13$phi = $nqpqz2$15;$nqpqx2$14$phi = $nqpqx$110;$nqpqx$110$phi = $nqpqx2$14;$byte$09 = $22;$j$08 = $23;$nqz2$17 = $nqz2$17$phi;$nqz$12 = $nqz$12$phi;$nqx2$16 = $nqx2$16$phi;$nqx$11 = $nqx$11$phi;$nqpqz2$15 = $nqpqz2$15$phi;$nqpqz$13 = $nqpqz$13$phi;$nqpqx2$14 = $nqpqx2$14$phi;$nqpqx$110 = $nqpqx$110$phi; + } + } + $24 = (($i$018) + 1)|0; + $exitcond20 = ($24|0)==(32); + if ($exitcond20) { + break; + } else { + $i$018 = $24;$nqpqx$019 = $nqpqx2$14;$nqpqx2$014 = $nqpqx$110;$nqpqz$013 = $nqpqz2$15;$nqpqz2$015 = $nqpqz$13;$nqx$011 = $nqx2$16;$nqx2$016 = $nqx$11;$nqz$012 = $nqz2$17;$nqz2$017 = $nqz$12; + } + } + dest=$resultx+0|0; src=$nqx2$16+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + dest=$resultz+0|0; src=$nqz2$17+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _crecip($out,$z) { + $out = $out|0; + $z = $z|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $i$33 = 0, $i$42 = 0, $i$51 = 0, $t0 = 0, $t1 = 0, $z11 = 0, $z2 = 0, $z2_100_0 = 0, $z2_10_0 = 0, $z2_20_0 = 0, $z2_50_0 = 0, $z2_5_0 = 0, $z9 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 800|0; + $z2 = sp + 720|0; + $z9 = sp + 640|0; + $z11 = sp + 560|0; + $z2_5_0 = sp + 480|0; + $z2_10_0 = sp + 400|0; + $z2_20_0 = sp + 320|0; + $z2_50_0 = sp + 240|0; + $z2_100_0 = sp + 160|0; + $t0 = sp + 80|0; + $t1 = sp; + _fsquare($z2,$z); + _fsquare($t1,$z2); + _fsquare($t0,$t1); + _fmul($z9,$t0,$z); + _fmul($z11,$z9,$z2); + _fsquare($t0,$z11); + _fmul($z2_5_0,$t0,$z9); + _fsquare($t0,$z2_5_0); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fmul($z2_10_0,$t0,$z2_5_0); + _fsquare($t0,$z2_10_0); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fmul($z2_20_0,$t1,$z2_10_0); + _fsquare($t0,$z2_20_0); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fmul($t0,$t1,$z2_20_0); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fmul($z2_50_0,$t0,$z2_10_0); + _fsquare($t0,$z2_50_0); + _fsquare($t1,$t0); + $i$33 = 2; + while(1) { + _fsquare($t0,$t1); + _fsquare($t1,$t0); + $0 = (($i$33) + 2)|0; + $1 = ($0|0)<(50); + if ($1) { + $i$33 = $0; + } else { + break; + } + } + _fmul($z2_100_0,$t1,$z2_50_0); + _fsquare($t1,$z2_100_0); + _fsquare($t0,$t1); + $i$42 = 2; + while(1) { + _fsquare($t1,$t0); + _fsquare($t0,$t1); + $2 = (($i$42) + 2)|0; + $3 = ($2|0)<(100); + if ($3) { + $i$42 = $2; + } else { + break; + } + } + _fmul($t1,$t0,$z2_100_0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + $i$51 = 2; + while(1) { + _fsquare($t0,$t1); + _fsquare($t1,$t0); + $4 = (($i$51) + 2)|0; + $5 = ($4|0)<(50); + if ($5) { + $i$51 = $4; + } else { + break; + } + } + _fmul($t0,$t1,$z2_50_0); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fsquare($t0,$t1); + _fsquare($t1,$t0); + _fmul($out,$t1,$z11); + STACKTOP = sp;return; +} +function _fmul($output,$in,$in2) { + $output = $output|0; + $in = $in|0; + $in2 = $in2|0; + var $t = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 160|0; + $t = sp; + _fproduct($t,$in,$in2); + _freduce_degree($t); + _freduce_coefficients($t); + dest=$output+0|0; src=$t+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _fcontract($output,$input_limbs) { + $output = $output|0; + $input_limbs = $input_limbs|0; + var $$pn = 0, $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0; + var $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0; + var $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0; + var $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0; + var $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0; + var $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0; + var $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0; + var $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0; + var $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0; + var $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0; + var $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0; + var $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0; + var $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0; + var $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0; + var $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0; + var $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0; + var $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0; + var $403 = 0, $404 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0; + var $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0; + var $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0; + var $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $exitcond = 0, $exitcond11 = 0, $exitcond11$1 = 0, $exitcond14 = 0, $exitcond14$1 = 0, $i$17 = 0, $i$17$1 = 0, $i$24 = 0, $i$24$1 = 0, $i$33 = 0, $input = 0, $mask$02 = 0, $mask$1 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $input = sp; + $0 = $input_limbs; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + HEAP32[$input>>2] = $2; + $6 = (($input_limbs) + 8|0); + $7 = $6; + $8 = $7; + $9 = HEAP32[$8>>2]|0; + $10 = (($7) + 4)|0; + $11 = $10; + $12 = HEAP32[$11>>2]|0; + $13 = (($input) + 4|0); + HEAP32[$13>>2] = $9; + $14 = (($input_limbs) + 16|0); + $15 = $14; + $16 = $15; + $17 = HEAP32[$16>>2]|0; + $18 = (($15) + 4)|0; + $19 = $18; + $20 = HEAP32[$19>>2]|0; + $21 = (($input) + 8|0); + HEAP32[$21>>2] = $17; + $22 = (($input_limbs) + 24|0); + $23 = $22; + $24 = $23; + $25 = HEAP32[$24>>2]|0; + $26 = (($23) + 4)|0; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (($input) + 12|0); + HEAP32[$29>>2] = $25; + $30 = (($input_limbs) + 32|0); + $31 = $30; + $32 = $31; + $33 = HEAP32[$32>>2]|0; + $34 = (($31) + 4)|0; + $35 = $34; + $36 = HEAP32[$35>>2]|0; + $37 = (($input) + 16|0); + HEAP32[$37>>2] = $33; + $38 = (($input_limbs) + 40|0); + $39 = $38; + $40 = $39; + $41 = HEAP32[$40>>2]|0; + $42 = (($39) + 4)|0; + $43 = $42; + $44 = HEAP32[$43>>2]|0; + $45 = (($input) + 20|0); + HEAP32[$45>>2] = $41; + $46 = (($input_limbs) + 48|0); + $47 = $46; + $48 = $47; + $49 = HEAP32[$48>>2]|0; + $50 = (($47) + 4)|0; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($input) + 24|0); + HEAP32[$53>>2] = $49; + $54 = (($input_limbs) + 56|0); + $55 = $54; + $56 = $55; + $57 = HEAP32[$56>>2]|0; + $58 = (($55) + 4)|0; + $59 = $58; + $60 = HEAP32[$59>>2]|0; + $61 = (($input) + 28|0); + HEAP32[$61>>2] = $57; + $62 = (($input_limbs) + 64|0); + $63 = $62; + $64 = $63; + $65 = HEAP32[$64>>2]|0; + $66 = (($63) + 4)|0; + $67 = $66; + $68 = HEAP32[$67>>2]|0; + $69 = (($input) + 32|0); + HEAP32[$69>>2] = $65; + $70 = (($input_limbs) + 72|0); + $71 = $70; + $72 = $71; + $73 = HEAP32[$72>>2]|0; + $74 = (($71) + 4)|0; + $75 = $74; + $76 = HEAP32[$75>>2]|0; + $77 = (($input) + 36|0); + HEAP32[$77>>2] = $73; + $78 = (($input) + 36|0); + $i$17 = 0; + while(1) { + $79 = $i$17 & 1; + $80 = ($79|0)==(0); + $81 = (($input) + ($i$17<<2)|0); + $82 = HEAP32[$81>>2]|0; + $83 = $82 >> 31; + $84 = $83 & $82; + if ($80) { + $92 = $84 >> 26; + $93 = Math_imul($92, -67108864)|0; + $94 = (($93) + ($82))|0; + HEAP32[$81>>2] = $94; + $95 = (($i$17) + 1)|0; + $96 = (($input) + ($95<<2)|0); + $97 = HEAP32[$96>>2]|0; + $98 = (($97) + ($92))|0; + HEAP32[$96>>2] = $98; + } else { + $85 = $84 >> 25; + $86 = Math_imul($85, -33554432)|0; + $87 = (($86) + ($82))|0; + HEAP32[$81>>2] = $87; + $88 = (($i$17) + 1)|0; + $89 = (($input) + ($88<<2)|0); + $90 = HEAP32[$89>>2]|0; + $91 = (($90) + ($85))|0; + HEAP32[$89>>2] = $91; + } + $99 = (($i$17) + 1)|0; + $exitcond14 = ($99|0)==(9); + if ($exitcond14) { + break; + } else { + $i$17 = $99; + } + } + $100 = HEAP32[$78>>2]|0; + $101 = $100 >> 31; + $102 = $101 & $100; + $103 = $102 >> 25; + $104 = Math_imul($103, -33554432)|0; + $105 = (($104) + ($100))|0; + HEAP32[$78>>2] = $105; + $106 = HEAP32[$input>>2]|0; + $107 = ($103*19)|0; + $108 = (($107) + ($106))|0; + HEAP32[$input>>2] = $108; + $i$17$1 = 0; + while(1) { + $384 = $i$17$1 & 1; + $385 = ($384|0)==(0); + $386 = (($input) + ($i$17$1<<2)|0); + $387 = HEAP32[$386>>2]|0; + $388 = $387 >> 31; + $389 = $388 & $387; + if ($385) { + $397 = $389 >> 26; + $398 = Math_imul($397, -67108864)|0; + $399 = (($398) + ($387))|0; + HEAP32[$386>>2] = $399; + $400 = (($i$17$1) + 1)|0; + $401 = (($input) + ($400<<2)|0); + $402 = HEAP32[$401>>2]|0; + $403 = (($402) + ($397))|0; + HEAP32[$401>>2] = $403; + } else { + $390 = $389 >> 25; + $391 = Math_imul($390, -33554432)|0; + $392 = (($391) + ($387))|0; + HEAP32[$386>>2] = $392; + $393 = (($i$17$1) + 1)|0; + $394 = (($input) + ($393<<2)|0); + $395 = HEAP32[$394>>2]|0; + $396 = (($395) + ($390))|0; + HEAP32[$394>>2] = $396; + } + $404 = (($i$17$1) + 1)|0; + $exitcond14$1 = ($404|0)==(9); + if ($exitcond14$1) { + break; + } else { + $i$17$1 = $404; + } + } + $109 = HEAP32[$78>>2]|0; + $110 = $109 >> 31; + $111 = $110 & $109; + $112 = $111 >> 25; + $113 = Math_imul($112, -33554432)|0; + $114 = (($113) + ($109))|0; + HEAP32[$78>>2] = $114; + $115 = HEAP32[$input>>2]|0; + $116 = ($112*19)|0; + $117 = (($116) + ($115))|0; + $118 = $117 >> 31; + $119 = $118 & $117; + $120 = $119 >> 26; + $121 = Math_imul($120, -67108864)|0; + $122 = (($121) + ($117))|0; + HEAP32[$input>>2] = $122; + $123 = (($input) + 4|0); + $124 = HEAP32[$123>>2]|0; + $125 = (($120) + ($124))|0; + HEAP32[$123>>2] = $125; + $126 = (($input) + 36|0); + $i$24 = 0; + while(1) { + $127 = $i$24 & 1; + $128 = ($127|0)==(0); + $129 = (($input) + ($i$24<<2)|0); + $130 = HEAP32[$129>>2]|0; + if ($128) { + $137 = $130 >> 26; + $138 = $130 & 67108863; + HEAP32[$129>>2] = $138; + $139 = (($i$24) + 1)|0; + $140 = (($input) + ($139<<2)|0); + $141 = HEAP32[$140>>2]|0; + $142 = (($141) + ($137))|0; + HEAP32[$140>>2] = $142; + } else { + $131 = $130 >> 25; + $132 = $130 & 33554431; + HEAP32[$129>>2] = $132; + $133 = (($i$24) + 1)|0; + $134 = (($input) + ($133<<2)|0); + $135 = HEAP32[$134>>2]|0; + $136 = (($135) + ($131))|0; + HEAP32[$134>>2] = $136; + } + $143 = (($i$24) + 1)|0; + $exitcond11 = ($143|0)==(9); + if ($exitcond11) { + break; + } else { + $i$24 = $143; + } + } + $144 = HEAP32[$126>>2]|0; + $145 = $144 >> 25; + $146 = $144 & 33554431; + HEAP32[$126>>2] = $146; + $147 = ($145*19)|0; + $148 = HEAP32[$input>>2]|0; + $149 = (($147) + ($148))|0; + HEAP32[$input>>2] = $149; + $i$24$1 = 0; + while(1) { + $360 = $i$24$1 & 1; + $361 = ($360|0)==(0); + $362 = (($input) + ($i$24$1<<2)|0); + $363 = HEAP32[$362>>2]|0; + if ($361) { + $370 = $363 >> 26; + $371 = $363 & 67108863; + HEAP32[$362>>2] = $371; + $372 = (($i$24$1) + 1)|0; + $373 = (($input) + ($372<<2)|0); + $374 = HEAP32[$373>>2]|0; + $375 = (($374) + ($370))|0; + HEAP32[$373>>2] = $375; + } else { + $364 = $363 >> 25; + $365 = $363 & 33554431; + HEAP32[$362>>2] = $365; + $366 = (($i$24$1) + 1)|0; + $367 = (($input) + ($366<<2)|0); + $368 = HEAP32[$367>>2]|0; + $369 = (($368) + ($364))|0; + HEAP32[$367>>2] = $369; + } + $376 = (($i$24$1) + 1)|0; + $exitcond11$1 = ($376|0)==(9); + if ($exitcond11$1) { + break; + } else { + $i$24$1 = $376; + } + } + $377 = HEAP32[$126>>2]|0; + $378 = $377 >> 25; + $379 = $377 & 33554431; + HEAP32[$126>>2] = $379; + $380 = ($378*19)|0; + $381 = HEAP32[$input>>2]|0; + $382 = (($380) + ($381))|0; + HEAP32[$input>>2] = $382; + $383 = (_s32_gte($382)|0); + $i$33 = 1;$mask$02 = $383; + while(1) { + $150 = $i$33 & 1; + $151 = ($150|0)==(0); + $152 = (($input) + ($i$33<<2)|0); + $153 = HEAP32[$152>>2]|0; + if ($151) { + $155 = (_s32_eq($153,67108863)|0); + $$pn = $155; + } else { + $154 = (_s32_eq($153,33554431)|0); + $$pn = $154; + } + $mask$1 = $$pn & $mask$02; + $156 = (($i$33) + 1)|0; + $exitcond = ($156|0)==(10); + if ($exitcond) { + break; + } else { + $i$33 = $156;$mask$02 = $mask$1; + } + } + $157 = $mask$1 & 67108845; + $158 = HEAP32[$input>>2]|0; + $159 = (($158) - ($157))|0; + HEAP32[$input>>2] = $159; + $160 = $mask$1 & 67108863; + $161 = $mask$1 & 33554431; + $162 = (($input) + 4|0); + $163 = HEAP32[$162>>2]|0; + $164 = (($163) - ($161))|0; + HEAP32[$162>>2] = $164; + $165 = (($input) + 8|0); + $166 = HEAP32[$165>>2]|0; + $167 = (($166) - ($160))|0; + HEAP32[$165>>2] = $167; + $168 = (($input) + 12|0); + $169 = HEAP32[$168>>2]|0; + $170 = (($169) - ($161))|0; + HEAP32[$168>>2] = $170; + $171 = (($input) + 16|0); + $172 = HEAP32[$171>>2]|0; + $173 = (($172) - ($160))|0; + HEAP32[$171>>2] = $173; + $174 = (($input) + 20|0); + $175 = HEAP32[$174>>2]|0; + $176 = (($175) - ($161))|0; + HEAP32[$174>>2] = $176; + $177 = (($input) + 24|0); + $178 = HEAP32[$177>>2]|0; + $179 = (($178) - ($160))|0; + HEAP32[$177>>2] = $179; + $180 = (($input) + 28|0); + $181 = HEAP32[$180>>2]|0; + $182 = (($181) - ($161))|0; + HEAP32[$180>>2] = $182; + $183 = (($input) + 32|0); + $184 = HEAP32[$183>>2]|0; + $185 = (($184) - ($160))|0; + HEAP32[$183>>2] = $185; + $186 = (($input) + 36|0); + $187 = HEAP32[$186>>2]|0; + $188 = (($187) - ($161))|0; + HEAP32[$186>>2] = $188; + $189 = HEAP32[$123>>2]|0; + $190 = $189 << 2; + HEAP32[$123>>2] = $190; + $191 = (($input) + 8|0); + $192 = HEAP32[$191>>2]|0; + $193 = $192 << 3; + HEAP32[$191>>2] = $193; + $194 = (($input) + 12|0); + $195 = HEAP32[$194>>2]|0; + $196 = $195 << 5; + HEAP32[$194>>2] = $196; + $197 = (($input) + 16|0); + $198 = HEAP32[$197>>2]|0; + $199 = $198 << 6; + HEAP32[$197>>2] = $199; + $200 = (($input) + 24|0); + $201 = HEAP32[$200>>2]|0; + $202 = $201 << 1; + HEAP32[$200>>2] = $202; + $203 = (($input) + 28|0); + $204 = HEAP32[$203>>2]|0; + $205 = $204 << 3; + HEAP32[$203>>2] = $205; + $206 = (($input) + 32|0); + $207 = HEAP32[$206>>2]|0; + $208 = $207 << 4; + HEAP32[$206>>2] = $208; + $209 = (($input) + 36|0); + $210 = HEAP32[$209>>2]|0; + $211 = $210 << 6; + HEAP32[$209>>2] = $211; + HEAP8[$output>>0] = 0; + $212 = (($output) + 16|0); + HEAP8[$212>>0] = 0; + $213 = HEAP32[$input>>2]|0; + $214 = HEAP8[$output>>0]|0; + $215 = $214&255; + $216 = $215 | $213; + $217 = $216&255; + HEAP8[$output>>0] = $217; + $218 = HEAP32[$input>>2]|0; + $219 = $218 >>> 8; + $220 = $219&255; + $221 = (($output) + 1|0); + HEAP8[$221>>0] = $220; + $222 = HEAP32[$input>>2]|0; + $223 = $222 >>> 16; + $224 = $223&255; + $225 = (($output) + 2|0); + HEAP8[$225>>0] = $224; + $226 = HEAP32[$input>>2]|0; + $227 = $226 >>> 24; + $228 = (($output) + 3|0); + $229 = HEAP32[$123>>2]|0; + $230 = $227 | $229; + $231 = $230&255; + HEAP8[$228>>0] = $231; + $232 = HEAP32[$123>>2]|0; + $233 = $232 >>> 8; + $234 = $233&255; + $235 = (($output) + 4|0); + HEAP8[$235>>0] = $234; + $236 = HEAP32[$123>>2]|0; + $237 = $236 >>> 16; + $238 = $237&255; + $239 = (($output) + 5|0); + HEAP8[$239>>0] = $238; + $240 = HEAP32[$123>>2]|0; + $241 = $240 >>> 24; + $242 = (($output) + 6|0); + $243 = HEAP32[$191>>2]|0; + $244 = $241 | $243; + $245 = $244&255; + HEAP8[$242>>0] = $245; + $246 = HEAP32[$191>>2]|0; + $247 = $246 >>> 8; + $248 = $247&255; + $249 = (($output) + 7|0); + HEAP8[$249>>0] = $248; + $250 = HEAP32[$191>>2]|0; + $251 = $250 >>> 16; + $252 = $251&255; + $253 = (($output) + 8|0); + HEAP8[$253>>0] = $252; + $254 = HEAP32[$191>>2]|0; + $255 = $254 >>> 24; + $256 = (($output) + 9|0); + $257 = HEAP32[$194>>2]|0; + $258 = $255 | $257; + $259 = $258&255; + HEAP8[$256>>0] = $259; + $260 = HEAP32[$194>>2]|0; + $261 = $260 >>> 8; + $262 = $261&255; + $263 = (($output) + 10|0); + HEAP8[$263>>0] = $262; + $264 = HEAP32[$194>>2]|0; + $265 = $264 >>> 16; + $266 = $265&255; + $267 = (($output) + 11|0); + HEAP8[$267>>0] = $266; + $268 = HEAP32[$194>>2]|0; + $269 = $268 >>> 24; + $270 = (($output) + 12|0); + $271 = HEAP32[$197>>2]|0; + $272 = $269 | $271; + $273 = $272&255; + HEAP8[$270>>0] = $273; + $274 = HEAP32[$197>>2]|0; + $275 = $274 >>> 8; + $276 = $275&255; + $277 = (($output) + 13|0); + HEAP8[$277>>0] = $276; + $278 = HEAP32[$197>>2]|0; + $279 = $278 >>> 16; + $280 = $279&255; + $281 = (($output) + 14|0); + HEAP8[$281>>0] = $280; + $282 = HEAP32[$197>>2]|0; + $283 = $282 >>> 24; + $284 = $283&255; + $285 = (($output) + 15|0); + HEAP8[$285>>0] = $284; + $286 = (($input) + 20|0); + $287 = HEAP32[$286>>2]|0; + $288 = HEAP8[$212>>0]|0; + $289 = $288&255; + $290 = $289 | $287; + $291 = $290&255; + HEAP8[$212>>0] = $291; + $292 = HEAP32[$286>>2]|0; + $293 = $292 >>> 8; + $294 = $293&255; + $295 = (($output) + 17|0); + HEAP8[$295>>0] = $294; + $296 = HEAP32[$286>>2]|0; + $297 = $296 >>> 16; + $298 = $297&255; + $299 = (($output) + 18|0); + HEAP8[$299>>0] = $298; + $300 = HEAP32[$286>>2]|0; + $301 = $300 >>> 24; + $302 = (($output) + 19|0); + $303 = HEAP32[$200>>2]|0; + $304 = $301 | $303; + $305 = $304&255; + HEAP8[$302>>0] = $305; + $306 = HEAP32[$200>>2]|0; + $307 = $306 >>> 8; + $308 = $307&255; + $309 = (($output) + 20|0); + HEAP8[$309>>0] = $308; + $310 = HEAP32[$200>>2]|0; + $311 = $310 >>> 16; + $312 = $311&255; + $313 = (($output) + 21|0); + HEAP8[$313>>0] = $312; + $314 = HEAP32[$200>>2]|0; + $315 = $314 >>> 24; + $316 = (($output) + 22|0); + $317 = HEAP32[$203>>2]|0; + $318 = $315 | $317; + $319 = $318&255; + HEAP8[$316>>0] = $319; + $320 = HEAP32[$203>>2]|0; + $321 = $320 >>> 8; + $322 = $321&255; + $323 = (($output) + 23|0); + HEAP8[$323>>0] = $322; + $324 = HEAP32[$203>>2]|0; + $325 = $324 >>> 16; + $326 = $325&255; + $327 = (($output) + 24|0); + HEAP8[$327>>0] = $326; + $328 = HEAP32[$203>>2]|0; + $329 = $328 >>> 24; + $330 = (($output) + 25|0); + $331 = HEAP32[$206>>2]|0; + $332 = $329 | $331; + $333 = $332&255; + HEAP8[$330>>0] = $333; + $334 = HEAP32[$206>>2]|0; + $335 = $334 >>> 8; + $336 = $335&255; + $337 = (($output) + 26|0); + HEAP8[$337>>0] = $336; + $338 = HEAP32[$206>>2]|0; + $339 = $338 >>> 16; + $340 = $339&255; + $341 = (($output) + 27|0); + HEAP8[$341>>0] = $340; + $342 = HEAP32[$206>>2]|0; + $343 = $342 >>> 24; + $344 = (($output) + 28|0); + $345 = HEAP32[$209>>2]|0; + $346 = $343 | $345; + $347 = $346&255; + HEAP8[$344>>0] = $347; + $348 = HEAP32[$209>>2]|0; + $349 = $348 >>> 8; + $350 = $349&255; + $351 = (($output) + 29|0); + HEAP8[$351>>0] = $350; + $352 = HEAP32[$209>>2]|0; + $353 = $352 >>> 16; + $354 = $353&255; + $355 = (($output) + 30|0); + HEAP8[$355>>0] = $354; + $356 = HEAP32[$209>>2]|0; + $357 = $356 >>> 24; + $358 = $357&255; + $359 = (($output) + 31|0); + HEAP8[$359>>0] = $358; + STACKTOP = sp;return; +} +function _swap_conditional($a,$b,$0,$1) { + $a = $a|0; + $b = $b|0; + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0; + var $9 = 0, $exitcond = 0, $i$02 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = (_i64Subtract(0,0,($0|0),($1|0))|0); + $3 = tempRet0; + $i$02 = 0; + while(1) { + $4 = (($a) + ($i$02<<3)|0); + $5 = $4; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = (($5) + 4)|0; + $9 = $8; + $10 = HEAP32[$9>>2]|0; + $11 = (($b) + ($i$02<<3)|0); + $12 = $11; + $13 = $12; + $14 = HEAP32[$13>>2]|0; + $15 = (($12) + 4)|0; + $16 = $15; + $17 = HEAP32[$16>>2]|0; + $18 = $14 ^ $7; + $19 = $17 ^ $10; + $20 = $18 & $2; + $21 = $19 & $3; + $22 = $20 ^ $7; + $21 ^ $10; + $23 = (_bitshift64Ashr(0,($22|0),32)|0); + $24 = tempRet0; + $25 = $4; + $26 = $25; + HEAP32[$26>>2] = $23; + $27 = (($25) + 4)|0; + $28 = $27; + HEAP32[$28>>2] = $24; + $29 = $11; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = (($29) + 4)|0; + $33 = $32; + $34 = HEAP32[$33>>2]|0; + $35 = $20 ^ $31; + $21 ^ $34; + $36 = (_bitshift64Ashr(0,($35|0),32)|0); + $37 = tempRet0; + $38 = $11; + $39 = $38; + HEAP32[$39>>2] = $36; + $40 = (($38) + 4)|0; + $41 = $40; + HEAP32[$41>>2] = $37; + $42 = (($i$02) + 1)|0; + $exitcond = ($42|0)==(10); + if ($exitcond) { + break; + } else { + $i$02 = $42; + } + } + STACKTOP = sp;return; +} +function _fmonty($x2,$z2,$x3,$z3,$x,$z,$xprime,$zprime,$qmqp) { + $x2 = $x2|0; + $z2 = $z2|0; + $x3 = $x3|0; + $z3 = $z3|0; + $x = $x|0; + $z = $z|0; + $xprime = $xprime|0; + $zprime = $zprime|0; + $qmqp = $qmqp|0; + var $0 = 0, $origx = 0, $origxprime = 0, $xx = 0, $xxprime = 0, $xxxprime = 0, $zz = 0, $zzprime = 0, $zzz = 0, $zzzprime = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 1232|0; + $origx = sp + 1144|0; + $origxprime = sp + 1064|0; + $zzz = sp + 912|0; + $xx = sp + 760|0; + $zz = sp + 608|0; + $xxprime = sp + 456|0; + $zzprime = sp + 304|0; + $zzzprime = sp + 152|0; + $xxxprime = sp; + dest=$origx+0|0; src=$x+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($x,$z); + _fdifference($z,$origx); + dest=$origxprime+0|0; src=$xprime+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($xprime,$zprime); + _fdifference($zprime,$origxprime); + _fproduct($xxprime,$xprime,$z); + _fproduct($zzprime,$x,$zprime); + _freduce_degree($xxprime); + _freduce_coefficients($xxprime); + _freduce_degree($zzprime); + _freduce_coefficients($zzprime); + dest=$origxprime+0|0; src=$xxprime+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($xxprime,$zzprime); + _fdifference($zzprime,$origxprime); + _fsquare($xxxprime,$xxprime); + _fsquare($zzzprime,$zzprime); + _fproduct($zzprime,$zzzprime,$qmqp); + _freduce_degree($zzprime); + _freduce_coefficients($zzprime); + dest=$x3+0|0; src=$xxxprime+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + dest=$z3+0|0; src=$zzprime+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsquare($xx,$x); + _fsquare($zz,$z); + _fproduct($x2,$xx,$zz); + _freduce_degree($x2); + _freduce_coefficients($x2); + _fdifference($zz,$xx); + $0 = (($zzz) + 80|0); + dest=$0+0|0; stop=dest+72|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + _fscalar_product($zzz,$zz); + _freduce_coefficients($zzz); + _fsum($zzz,$xx); + _fproduct($z2,$zz,$zzz); + _freduce_degree($z2); + _freduce_coefficients($z2); + STACKTOP = sp;return; +} +function _fsquare($output,$in) { + $output = $output|0; + $in = $in|0; + var $t = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 160|0; + $t = sp; + _fsquare_inner($t,$in); + _freduce_degree($t); + _freduce_coefficients($t); + dest=$output+0|0; src=$t+0|0; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _fproduct($output,$in2,$in) { + $output = $output|0; + $in2 = $in2|0; + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; + var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; + var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; + var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; + var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; + var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; + var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0; + var $1123 = 0, $1124 = 0, $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0; + var $1141 = 0, $1142 = 0, $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0; + var $116 = 0, $1160 = 0, $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0; + var $1178 = 0, $1179 = 0, $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0; + var $1196 = 0, $1197 = 0, $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0; + var $1213 = 0, $1214 = 0, $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0; + var $1231 = 0, $1232 = 0, $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0; + var $125 = 0, $1250 = 0, $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0; + var $1268 = 0, $1269 = 0, $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0; + var $1286 = 0, $1287 = 0, $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0; + var $1303 = 0, $1304 = 0, $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0; + var $1321 = 0, $1322 = 0, $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0; + var $134 = 0, $1340 = 0, $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0; + var $1358 = 0, $1359 = 0, $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0; + var $1376 = 0, $1377 = 0, $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0; + var $1394 = 0, $1395 = 0, $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0; + var $1411 = 0, $1412 = 0, $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0; + var $143 = 0, $1430 = 0, $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0; + var $1448 = 0, $1449 = 0, $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0; + var $1466 = 0, $1467 = 0, $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0; + var $1484 = 0, $1485 = 0, $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0; + var $1501 = 0, $1502 = 0, $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0; + var $152 = 0, $1520 = 0, $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0; + var $1538 = 0, $1539 = 0, $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0; + var $1556 = 0, $1557 = 0, $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0; + var $1574 = 0, $1575 = 0, $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0; + var $1592 = 0, $1593 = 0, $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0; + var $161 = 0, $1610 = 0, $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0; + var $1628 = 0, $1629 = 0, $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0; + var $1646 = 0, $1647 = 0, $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0; + var $1664 = 0, $1665 = 0, $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0; + var $1682 = 0, $1683 = 0, $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0; + var $170 = 0, $1700 = 0, $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0; + var $1718 = 0, $1719 = 0, $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0; + var $1736 = 0, $1737 = 0, $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0; + var $1754 = 0, $1755 = 0, $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0; + var $1772 = 0, $1773 = 0, $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0; + var $1790 = 0, $1791 = 0, $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0; + var $1808 = 0, $1809 = 0, $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0; + var $1826 = 0, $1827 = 0, $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0; + var $1844 = 0, $1845 = 0, $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0; + var $1862 = 0, $1863 = 0, $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $1879 = 0, $188 = 0; + var $1880 = 0, $1881 = 0, $1882 = 0, $1883 = 0, $1884 = 0, $1885 = 0, $1886 = 0, $1887 = 0, $1888 = 0, $1889 = 0, $189 = 0, $1890 = 0, $1891 = 0, $1892 = 0, $1893 = 0, $1894 = 0, $1895 = 0, $1896 = 0, $1897 = 0, $1898 = 0; + var $1899 = 0, $19 = 0, $190 = 0, $1900 = 0, $1901 = 0, $1902 = 0, $1903 = 0, $1904 = 0, $1905 = 0, $1906 = 0, $1907 = 0, $1908 = 0, $1909 = 0, $191 = 0, $1910 = 0, $1911 = 0, $1912 = 0, $1913 = 0, $1914 = 0, $1915 = 0; + var $1916 = 0, $1917 = 0, $1918 = 0, $1919 = 0, $192 = 0, $1920 = 0, $1921 = 0, $1922 = 0, $1923 = 0, $1924 = 0, $1925 = 0, $1926 = 0, $1927 = 0, $1928 = 0, $1929 = 0, $193 = 0, $1930 = 0, $1931 = 0, $1932 = 0, $1933 = 0; + var $1934 = 0, $1935 = 0, $1936 = 0, $1937 = 0, $1938 = 0, $1939 = 0, $194 = 0, $1940 = 0, $1941 = 0, $1942 = 0, $1943 = 0, $1944 = 0, $1945 = 0, $1946 = 0, $1947 = 0, $1948 = 0, $1949 = 0, $195 = 0, $1950 = 0, $1951 = 0; + var $1952 = 0, $1953 = 0, $1954 = 0, $1955 = 0, $1956 = 0, $1957 = 0, $1958 = 0, $1959 = 0, $196 = 0, $1960 = 0, $1961 = 0, $1962 = 0, $1963 = 0, $1964 = 0, $1965 = 0, $1966 = 0, $1967 = 0, $1968 = 0, $1969 = 0, $197 = 0; + var $1970 = 0, $1971 = 0, $1972 = 0, $1973 = 0, $1974 = 0, $1975 = 0, $1976 = 0, $1977 = 0, $1978 = 0, $1979 = 0, $198 = 0, $1980 = 0, $1981 = 0, $1982 = 0, $1983 = 0, $1984 = 0, $1985 = 0, $1986 = 0, $1987 = 0, $1988 = 0; + var $1989 = 0, $199 = 0, $1990 = 0, $1991 = 0, $1992 = 0, $1993 = 0, $1994 = 0, $1995 = 0, $1996 = 0, $1997 = 0, $1998 = 0, $1999 = 0, $2 = 0, $20 = 0, $200 = 0, $2000 = 0, $2001 = 0, $2002 = 0, $2003 = 0, $2004 = 0; + var $2005 = 0, $2006 = 0, $2007 = 0, $2008 = 0, $2009 = 0, $201 = 0, $2010 = 0, $2011 = 0, $2012 = 0, $2013 = 0, $2014 = 0, $2015 = 0, $2016 = 0, $2017 = 0, $2018 = 0, $2019 = 0, $202 = 0, $2020 = 0, $2021 = 0, $2022 = 0; + var $2023 = 0, $2024 = 0, $2025 = 0, $2026 = 0, $2027 = 0, $2028 = 0, $2029 = 0, $203 = 0, $2030 = 0, $2031 = 0, $2032 = 0, $2033 = 0, $2034 = 0, $2035 = 0, $2036 = 0, $2037 = 0, $2038 = 0, $2039 = 0, $204 = 0, $2040 = 0; + var $2041 = 0, $2042 = 0, $2043 = 0, $2044 = 0, $2045 = 0, $2046 = 0, $2047 = 0, $2048 = 0, $2049 = 0, $205 = 0, $2050 = 0, $2051 = 0, $2052 = 0, $2053 = 0, $2054 = 0, $2055 = 0, $2056 = 0, $2057 = 0, $2058 = 0, $2059 = 0; + var $206 = 0, $2060 = 0, $2061 = 0, $2062 = 0, $2063 = 0, $2064 = 0, $2065 = 0, $2066 = 0, $2067 = 0, $2068 = 0, $2069 = 0, $207 = 0, $2070 = 0, $2071 = 0, $2072 = 0, $2073 = 0, $2074 = 0, $2075 = 0, $2076 = 0, $2077 = 0; + var $2078 = 0, $2079 = 0, $208 = 0, $2080 = 0, $2081 = 0, $2082 = 0, $2083 = 0, $2084 = 0, $2085 = 0, $2086 = 0, $2087 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0; + var $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0; + var $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0; + var $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0; + var $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0; + var $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0; + var $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0; + var $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0; + var $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0; + var $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0; + var $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0; + var $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0; + var $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0; + var $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0; + var $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0; + var $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0; + var $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0; + var $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0; + var $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0; + var $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0; + var $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0; + var $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0; + var $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0; + var $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0; + var $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0; + var $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0; + var $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0; + var $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0; + var $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0; + var $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0; + var $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0; + var $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0; + var $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0; + var $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0; + var $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0; + var $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0; + var $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0; + var $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0; + var $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0; + var $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0; + var $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0; + var $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0; + var $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0; + var $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0; + var $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $in2; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = (_bitshift64Ashr(0,($2|0),32)|0); + $7 = tempRet0; + $8 = $in; + $9 = $8; + $10 = HEAP32[$9>>2]|0; + $11 = (($8) + 4)|0; + $12 = $11; + $13 = HEAP32[$12>>2]|0; + $14 = (_bitshift64Ashr(0,($10|0),32)|0); + $15 = tempRet0; + $16 = (___muldi3(($14|0),($15|0),($6|0),($7|0))|0); + $17 = tempRet0; + $18 = $output; + $19 = $18; + HEAP32[$19>>2] = $16; + $20 = (($18) + 4)|0; + $21 = $20; + HEAP32[$21>>2] = $17; + $22 = $in2; + $23 = $22; + $24 = HEAP32[$23>>2]|0; + $25 = (($22) + 4)|0; + $26 = $25; + $27 = HEAP32[$26>>2]|0; + $28 = (_bitshift64Ashr(0,($24|0),32)|0); + $29 = tempRet0; + $30 = (($in) + 8|0); + $31 = $30; + $32 = $31; + $33 = HEAP32[$32>>2]|0; + $34 = (($31) + 4)|0; + $35 = $34; + $36 = HEAP32[$35>>2]|0; + $37 = (_bitshift64Ashr(0,($33|0),32)|0); + $38 = tempRet0; + $39 = (___muldi3(($37|0),($38|0),($28|0),($29|0))|0); + $40 = tempRet0; + $41 = (($in2) + 8|0); + $42 = $41; + $43 = $42; + $44 = HEAP32[$43>>2]|0; + $45 = (($42) + 4)|0; + $46 = $45; + $47 = HEAP32[$46>>2]|0; + $48 = (_bitshift64Ashr(0,($44|0),32)|0); + $49 = tempRet0; + $50 = $in; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + $56 = (_bitshift64Ashr(0,($52|0),32)|0); + $57 = tempRet0; + $58 = (___muldi3(($56|0),($57|0),($48|0),($49|0))|0); + $59 = tempRet0; + $60 = (_i64Add(($58|0),($59|0),($39|0),($40|0))|0); + $61 = tempRet0; + $62 = (($output) + 8|0); + $63 = $62; + $64 = $63; + HEAP32[$64>>2] = $60; + $65 = (($63) + 4)|0; + $66 = $65; + HEAP32[$66>>2] = $61; + $67 = $41; + $68 = $67; + $69 = HEAP32[$68>>2]|0; + $70 = (($67) + 4)|0; + $71 = $70; + $72 = HEAP32[$71>>2]|0; + $73 = (_bitshift64Ashr(0,($69|0),31)|0); + $74 = tempRet0; + $75 = $30; + $76 = $75; + $77 = HEAP32[$76>>2]|0; + $78 = (($75) + 4)|0; + $79 = $78; + $80 = HEAP32[$79>>2]|0; + $81 = (_bitshift64Ashr(0,($77|0),32)|0); + $82 = tempRet0; + $83 = (___muldi3(($81|0),($82|0),($73|0),($74|0))|0); + $84 = tempRet0; + $85 = $in2; + $86 = $85; + $87 = HEAP32[$86>>2]|0; + $88 = (($85) + 4)|0; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (_bitshift64Ashr(0,($87|0),32)|0); + $92 = tempRet0; + $93 = (($in) + 16|0); + $94 = $93; + $95 = $94; + $96 = HEAP32[$95>>2]|0; + $97 = (($94) + 4)|0; + $98 = $97; + $99 = HEAP32[$98>>2]|0; + $100 = (_bitshift64Ashr(0,($96|0),32)|0); + $101 = tempRet0; + $102 = (___muldi3(($100|0),($101|0),($91|0),($92|0))|0); + $103 = tempRet0; + $104 = (_i64Add(($102|0),($103|0),($83|0),($84|0))|0); + $105 = tempRet0; + $106 = (($in2) + 16|0); + $107 = $106; + $108 = $107; + $109 = HEAP32[$108>>2]|0; + $110 = (($107) + 4)|0; + $111 = $110; + $112 = HEAP32[$111>>2]|0; + $113 = (_bitshift64Ashr(0,($109|0),32)|0); + $114 = tempRet0; + $115 = $in; + $116 = $115; + $117 = HEAP32[$116>>2]|0; + $118 = (($115) + 4)|0; + $119 = $118; + $120 = HEAP32[$119>>2]|0; + $121 = (_bitshift64Ashr(0,($117|0),32)|0); + $122 = tempRet0; + $123 = (___muldi3(($121|0),($122|0),($113|0),($114|0))|0); + $124 = tempRet0; + $125 = (_i64Add(($104|0),($105|0),($123|0),($124|0))|0); + $126 = tempRet0; + $127 = (($output) + 16|0); + $128 = $127; + $129 = $128; + HEAP32[$129>>2] = $125; + $130 = (($128) + 4)|0; + $131 = $130; + HEAP32[$131>>2] = $126; + $132 = $41; + $133 = $132; + $134 = HEAP32[$133>>2]|0; + $135 = (($132) + 4)|0; + $136 = $135; + $137 = HEAP32[$136>>2]|0; + $138 = (_bitshift64Ashr(0,($134|0),32)|0); + $139 = tempRet0; + $140 = $93; + $141 = $140; + $142 = HEAP32[$141>>2]|0; + $143 = (($140) + 4)|0; + $144 = $143; + $145 = HEAP32[$144>>2]|0; + $146 = (_bitshift64Ashr(0,($142|0),32)|0); + $147 = tempRet0; + $148 = (___muldi3(($146|0),($147|0),($138|0),($139|0))|0); + $149 = tempRet0; + $150 = $106; + $151 = $150; + $152 = HEAP32[$151>>2]|0; + $153 = (($150) + 4)|0; + $154 = $153; + $155 = HEAP32[$154>>2]|0; + $156 = (_bitshift64Ashr(0,($152|0),32)|0); + $157 = tempRet0; + $158 = $30; + $159 = $158; + $160 = HEAP32[$159>>2]|0; + $161 = (($158) + 4)|0; + $162 = $161; + $163 = HEAP32[$162>>2]|0; + $164 = (_bitshift64Ashr(0,($160|0),32)|0); + $165 = tempRet0; + $166 = (___muldi3(($164|0),($165|0),($156|0),($157|0))|0); + $167 = tempRet0; + $168 = (_i64Add(($166|0),($167|0),($148|0),($149|0))|0); + $169 = tempRet0; + $170 = $in2; + $171 = $170; + $172 = HEAP32[$171>>2]|0; + $173 = (($170) + 4)|0; + $174 = $173; + $175 = HEAP32[$174>>2]|0; + $176 = (_bitshift64Ashr(0,($172|0),32)|0); + $177 = tempRet0; + $178 = (($in) + 24|0); + $179 = $178; + $180 = $179; + $181 = HEAP32[$180>>2]|0; + $182 = (($179) + 4)|0; + $183 = $182; + $184 = HEAP32[$183>>2]|0; + $185 = (_bitshift64Ashr(0,($181|0),32)|0); + $186 = tempRet0; + $187 = (___muldi3(($185|0),($186|0),($176|0),($177|0))|0); + $188 = tempRet0; + $189 = (_i64Add(($168|0),($169|0),($187|0),($188|0))|0); + $190 = tempRet0; + $191 = (($in2) + 24|0); + $192 = $191; + $193 = $192; + $194 = HEAP32[$193>>2]|0; + $195 = (($192) + 4)|0; + $196 = $195; + $197 = HEAP32[$196>>2]|0; + $198 = (_bitshift64Ashr(0,($194|0),32)|0); + $199 = tempRet0; + $200 = $in; + $201 = $200; + $202 = HEAP32[$201>>2]|0; + $203 = (($200) + 4)|0; + $204 = $203; + $205 = HEAP32[$204>>2]|0; + $206 = (_bitshift64Ashr(0,($202|0),32)|0); + $207 = tempRet0; + $208 = (___muldi3(($206|0),($207|0),($198|0),($199|0))|0); + $209 = tempRet0; + $210 = (_i64Add(($189|0),($190|0),($208|0),($209|0))|0); + $211 = tempRet0; + $212 = (($output) + 24|0); + $213 = $212; + $214 = $213; + HEAP32[$214>>2] = $210; + $215 = (($213) + 4)|0; + $216 = $215; + HEAP32[$216>>2] = $211; + $217 = $106; + $218 = $217; + $219 = HEAP32[$218>>2]|0; + $220 = (($217) + 4)|0; + $221 = $220; + $222 = HEAP32[$221>>2]|0; + $223 = (_bitshift64Ashr(0,($219|0),32)|0); + $224 = tempRet0; + $225 = $93; + $226 = $225; + $227 = HEAP32[$226>>2]|0; + $228 = (($225) + 4)|0; + $229 = $228; + $230 = HEAP32[$229>>2]|0; + $231 = (_bitshift64Ashr(0,($227|0),32)|0); + $232 = tempRet0; + $233 = (___muldi3(($231|0),($232|0),($223|0),($224|0))|0); + $234 = tempRet0; + $235 = $41; + $236 = $235; + $237 = HEAP32[$236>>2]|0; + $238 = (($235) + 4)|0; + $239 = $238; + $240 = HEAP32[$239>>2]|0; + $241 = (_bitshift64Ashr(0,($237|0),32)|0); + $242 = tempRet0; + $243 = $178; + $244 = $243; + $245 = HEAP32[$244>>2]|0; + $246 = (($243) + 4)|0; + $247 = $246; + $248 = HEAP32[$247>>2]|0; + $249 = (_bitshift64Ashr(0,($245|0),32)|0); + $250 = tempRet0; + $251 = (___muldi3(($249|0),($250|0),($241|0),($242|0))|0); + $252 = tempRet0; + $253 = $191; + $254 = $253; + $255 = HEAP32[$254>>2]|0; + $256 = (($253) + 4)|0; + $257 = $256; + $258 = HEAP32[$257>>2]|0; + $259 = (_bitshift64Ashr(0,($255|0),32)|0); + $260 = tempRet0; + $261 = $30; + $262 = $261; + $263 = HEAP32[$262>>2]|0; + $264 = (($261) + 4)|0; + $265 = $264; + $266 = HEAP32[$265>>2]|0; + $267 = (_bitshift64Ashr(0,($263|0),32)|0); + $268 = tempRet0; + $269 = (___muldi3(($267|0),($268|0),($259|0),($260|0))|0); + $270 = tempRet0; + $271 = (_i64Add(($269|0),($270|0),($251|0),($252|0))|0); + $272 = tempRet0; + $273 = (_bitshift64Shl(($271|0),($272|0),1)|0); + $274 = tempRet0; + $275 = (_i64Add(($273|0),($274|0),($233|0),($234|0))|0); + $276 = tempRet0; + $277 = $in2; + $278 = $277; + $279 = HEAP32[$278>>2]|0; + $280 = (($277) + 4)|0; + $281 = $280; + $282 = HEAP32[$281>>2]|0; + $283 = (_bitshift64Ashr(0,($279|0),32)|0); + $284 = tempRet0; + $285 = (($in) + 32|0); + $286 = $285; + $287 = $286; + $288 = HEAP32[$287>>2]|0; + $289 = (($286) + 4)|0; + $290 = $289; + $291 = HEAP32[$290>>2]|0; + $292 = (_bitshift64Ashr(0,($288|0),32)|0); + $293 = tempRet0; + $294 = (___muldi3(($292|0),($293|0),($283|0),($284|0))|0); + $295 = tempRet0; + $296 = (_i64Add(($275|0),($276|0),($294|0),($295|0))|0); + $297 = tempRet0; + $298 = (($in2) + 32|0); + $299 = $298; + $300 = $299; + $301 = HEAP32[$300>>2]|0; + $302 = (($299) + 4)|0; + $303 = $302; + $304 = HEAP32[$303>>2]|0; + $305 = (_bitshift64Ashr(0,($301|0),32)|0); + $306 = tempRet0; + $307 = $in; + $308 = $307; + $309 = HEAP32[$308>>2]|0; + $310 = (($307) + 4)|0; + $311 = $310; + $312 = HEAP32[$311>>2]|0; + $313 = (_bitshift64Ashr(0,($309|0),32)|0); + $314 = tempRet0; + $315 = (___muldi3(($313|0),($314|0),($305|0),($306|0))|0); + $316 = tempRet0; + $317 = (_i64Add(($296|0),($297|0),($315|0),($316|0))|0); + $318 = tempRet0; + $319 = (($output) + 32|0); + $320 = $319; + $321 = $320; + HEAP32[$321>>2] = $317; + $322 = (($320) + 4)|0; + $323 = $322; + HEAP32[$323>>2] = $318; + $324 = $106; + $325 = $324; + $326 = HEAP32[$325>>2]|0; + $327 = (($324) + 4)|0; + $328 = $327; + $329 = HEAP32[$328>>2]|0; + $330 = (_bitshift64Ashr(0,($326|0),32)|0); + $331 = tempRet0; + $332 = $178; + $333 = $332; + $334 = HEAP32[$333>>2]|0; + $335 = (($332) + 4)|0; + $336 = $335; + $337 = HEAP32[$336>>2]|0; + $338 = (_bitshift64Ashr(0,($334|0),32)|0); + $339 = tempRet0; + $340 = (___muldi3(($338|0),($339|0),($330|0),($331|0))|0); + $341 = tempRet0; + $342 = $191; + $343 = $342; + $344 = HEAP32[$343>>2]|0; + $345 = (($342) + 4)|0; + $346 = $345; + $347 = HEAP32[$346>>2]|0; + $348 = (_bitshift64Ashr(0,($344|0),32)|0); + $349 = tempRet0; + $350 = $93; + $351 = $350; + $352 = HEAP32[$351>>2]|0; + $353 = (($350) + 4)|0; + $354 = $353; + $355 = HEAP32[$354>>2]|0; + $356 = (_bitshift64Ashr(0,($352|0),32)|0); + $357 = tempRet0; + $358 = (___muldi3(($356|0),($357|0),($348|0),($349|0))|0); + $359 = tempRet0; + $360 = (_i64Add(($358|0),($359|0),($340|0),($341|0))|0); + $361 = tempRet0; + $362 = $41; + $363 = $362; + $364 = HEAP32[$363>>2]|0; + $365 = (($362) + 4)|0; + $366 = $365; + $367 = HEAP32[$366>>2]|0; + $368 = (_bitshift64Ashr(0,($364|0),32)|0); + $369 = tempRet0; + $370 = $285; + $371 = $370; + $372 = HEAP32[$371>>2]|0; + $373 = (($370) + 4)|0; + $374 = $373; + $375 = HEAP32[$374>>2]|0; + $376 = (_bitshift64Ashr(0,($372|0),32)|0); + $377 = tempRet0; + $378 = (___muldi3(($376|0),($377|0),($368|0),($369|0))|0); + $379 = tempRet0; + $380 = (_i64Add(($360|0),($361|0),($378|0),($379|0))|0); + $381 = tempRet0; + $382 = $298; + $383 = $382; + $384 = HEAP32[$383>>2]|0; + $385 = (($382) + 4)|0; + $386 = $385; + $387 = HEAP32[$386>>2]|0; + $388 = (_bitshift64Ashr(0,($384|0),32)|0); + $389 = tempRet0; + $390 = $30; + $391 = $390; + $392 = HEAP32[$391>>2]|0; + $393 = (($390) + 4)|0; + $394 = $393; + $395 = HEAP32[$394>>2]|0; + $396 = (_bitshift64Ashr(0,($392|0),32)|0); + $397 = tempRet0; + $398 = (___muldi3(($396|0),($397|0),($388|0),($389|0))|0); + $399 = tempRet0; + $400 = (_i64Add(($380|0),($381|0),($398|0),($399|0))|0); + $401 = tempRet0; + $402 = $in2; + $403 = $402; + $404 = HEAP32[$403>>2]|0; + $405 = (($402) + 4)|0; + $406 = $405; + $407 = HEAP32[$406>>2]|0; + $408 = (_bitshift64Ashr(0,($404|0),32)|0); + $409 = tempRet0; + $410 = (($in) + 40|0); + $411 = $410; + $412 = $411; + $413 = HEAP32[$412>>2]|0; + $414 = (($411) + 4)|0; + $415 = $414; + $416 = HEAP32[$415>>2]|0; + $417 = (_bitshift64Ashr(0,($413|0),32)|0); + $418 = tempRet0; + $419 = (___muldi3(($417|0),($418|0),($408|0),($409|0))|0); + $420 = tempRet0; + $421 = (_i64Add(($400|0),($401|0),($419|0),($420|0))|0); + $422 = tempRet0; + $423 = (($in2) + 40|0); + $424 = $423; + $425 = $424; + $426 = HEAP32[$425>>2]|0; + $427 = (($424) + 4)|0; + $428 = $427; + $429 = HEAP32[$428>>2]|0; + $430 = (_bitshift64Ashr(0,($426|0),32)|0); + $431 = tempRet0; + $432 = $in; + $433 = $432; + $434 = HEAP32[$433>>2]|0; + $435 = (($432) + 4)|0; + $436 = $435; + $437 = HEAP32[$436>>2]|0; + $438 = (_bitshift64Ashr(0,($434|0),32)|0); + $439 = tempRet0; + $440 = (___muldi3(($438|0),($439|0),($430|0),($431|0))|0); + $441 = tempRet0; + $442 = (_i64Add(($421|0),($422|0),($440|0),($441|0))|0); + $443 = tempRet0; + $444 = (($output) + 40|0); + $445 = $444; + $446 = $445; + HEAP32[$446>>2] = $442; + $447 = (($445) + 4)|0; + $448 = $447; + HEAP32[$448>>2] = $443; + $449 = $191; + $450 = $449; + $451 = HEAP32[$450>>2]|0; + $452 = (($449) + 4)|0; + $453 = $452; + $454 = HEAP32[$453>>2]|0; + $455 = (_bitshift64Ashr(0,($451|0),32)|0); + $456 = tempRet0; + $457 = $178; + $458 = $457; + $459 = HEAP32[$458>>2]|0; + $460 = (($457) + 4)|0; + $461 = $460; + $462 = HEAP32[$461>>2]|0; + $463 = (_bitshift64Ashr(0,($459|0),32)|0); + $464 = tempRet0; + $465 = (___muldi3(($463|0),($464|0),($455|0),($456|0))|0); + $466 = tempRet0; + $467 = $41; + $468 = $467; + $469 = HEAP32[$468>>2]|0; + $470 = (($467) + 4)|0; + $471 = $470; + $472 = HEAP32[$471>>2]|0; + $473 = (_bitshift64Ashr(0,($469|0),32)|0); + $474 = tempRet0; + $475 = $410; + $476 = $475; + $477 = HEAP32[$476>>2]|0; + $478 = (($475) + 4)|0; + $479 = $478; + $480 = HEAP32[$479>>2]|0; + $481 = (_bitshift64Ashr(0,($477|0),32)|0); + $482 = tempRet0; + $483 = (___muldi3(($481|0),($482|0),($473|0),($474|0))|0); + $484 = tempRet0; + $485 = (_i64Add(($483|0),($484|0),($465|0),($466|0))|0); + $486 = tempRet0; + $487 = $423; + $488 = $487; + $489 = HEAP32[$488>>2]|0; + $490 = (($487) + 4)|0; + $491 = $490; + $492 = HEAP32[$491>>2]|0; + $493 = (_bitshift64Ashr(0,($489|0),32)|0); + $494 = tempRet0; + $495 = $30; + $496 = $495; + $497 = HEAP32[$496>>2]|0; + $498 = (($495) + 4)|0; + $499 = $498; + $500 = HEAP32[$499>>2]|0; + $501 = (_bitshift64Ashr(0,($497|0),32)|0); + $502 = tempRet0; + $503 = (___muldi3(($501|0),($502|0),($493|0),($494|0))|0); + $504 = tempRet0; + $505 = (_i64Add(($485|0),($486|0),($503|0),($504|0))|0); + $506 = tempRet0; + $507 = (_bitshift64Shl(($505|0),($506|0),1)|0); + $508 = tempRet0; + $509 = $106; + $510 = $509; + $511 = HEAP32[$510>>2]|0; + $512 = (($509) + 4)|0; + $513 = $512; + $514 = HEAP32[$513>>2]|0; + $515 = (_bitshift64Ashr(0,($511|0),32)|0); + $516 = tempRet0; + $517 = $285; + $518 = $517; + $519 = HEAP32[$518>>2]|0; + $520 = (($517) + 4)|0; + $521 = $520; + $522 = HEAP32[$521>>2]|0; + $523 = (_bitshift64Ashr(0,($519|0),32)|0); + $524 = tempRet0; + $525 = (___muldi3(($523|0),($524|0),($515|0),($516|0))|0); + $526 = tempRet0; + $527 = (_i64Add(($507|0),($508|0),($525|0),($526|0))|0); + $528 = tempRet0; + $529 = $298; + $530 = $529; + $531 = HEAP32[$530>>2]|0; + $532 = (($529) + 4)|0; + $533 = $532; + $534 = HEAP32[$533>>2]|0; + $535 = (_bitshift64Ashr(0,($531|0),32)|0); + $536 = tempRet0; + $537 = $93; + $538 = $537; + $539 = HEAP32[$538>>2]|0; + $540 = (($537) + 4)|0; + $541 = $540; + $542 = HEAP32[$541>>2]|0; + $543 = (_bitshift64Ashr(0,($539|0),32)|0); + $544 = tempRet0; + $545 = (___muldi3(($543|0),($544|0),($535|0),($536|0))|0); + $546 = tempRet0; + $547 = (_i64Add(($527|0),($528|0),($545|0),($546|0))|0); + $548 = tempRet0; + $549 = $in2; + $550 = $549; + $551 = HEAP32[$550>>2]|0; + $552 = (($549) + 4)|0; + $553 = $552; + $554 = HEAP32[$553>>2]|0; + $555 = (_bitshift64Ashr(0,($551|0),32)|0); + $556 = tempRet0; + $557 = (($in) + 48|0); + $558 = $557; + $559 = $558; + $560 = HEAP32[$559>>2]|0; + $561 = (($558) + 4)|0; + $562 = $561; + $563 = HEAP32[$562>>2]|0; + $564 = (_bitshift64Ashr(0,($560|0),32)|0); + $565 = tempRet0; + $566 = (___muldi3(($564|0),($565|0),($555|0),($556|0))|0); + $567 = tempRet0; + $568 = (_i64Add(($547|0),($548|0),($566|0),($567|0))|0); + $569 = tempRet0; + $570 = (($in2) + 48|0); + $571 = $570; + $572 = $571; + $573 = HEAP32[$572>>2]|0; + $574 = (($571) + 4)|0; + $575 = $574; + $576 = HEAP32[$575>>2]|0; + $577 = (_bitshift64Ashr(0,($573|0),32)|0); + $578 = tempRet0; + $579 = $in; + $580 = $579; + $581 = HEAP32[$580>>2]|0; + $582 = (($579) + 4)|0; + $583 = $582; + $584 = HEAP32[$583>>2]|0; + $585 = (_bitshift64Ashr(0,($581|0),32)|0); + $586 = tempRet0; + $587 = (___muldi3(($585|0),($586|0),($577|0),($578|0))|0); + $588 = tempRet0; + $589 = (_i64Add(($568|0),($569|0),($587|0),($588|0))|0); + $590 = tempRet0; + $591 = (($output) + 48|0); + $592 = $591; + $593 = $592; + HEAP32[$593>>2] = $589; + $594 = (($592) + 4)|0; + $595 = $594; + HEAP32[$595>>2] = $590; + $596 = $191; + $597 = $596; + $598 = HEAP32[$597>>2]|0; + $599 = (($596) + 4)|0; + $600 = $599; + $601 = HEAP32[$600>>2]|0; + $602 = (_bitshift64Ashr(0,($598|0),32)|0); + $603 = tempRet0; + $604 = $285; + $605 = $604; + $606 = HEAP32[$605>>2]|0; + $607 = (($604) + 4)|0; + $608 = $607; + $609 = HEAP32[$608>>2]|0; + $610 = (_bitshift64Ashr(0,($606|0),32)|0); + $611 = tempRet0; + $612 = (___muldi3(($610|0),($611|0),($602|0),($603|0))|0); + $613 = tempRet0; + $614 = $298; + $615 = $614; + $616 = HEAP32[$615>>2]|0; + $617 = (($614) + 4)|0; + $618 = $617; + $619 = HEAP32[$618>>2]|0; + $620 = (_bitshift64Ashr(0,($616|0),32)|0); + $621 = tempRet0; + $622 = $178; + $623 = $622; + $624 = HEAP32[$623>>2]|0; + $625 = (($622) + 4)|0; + $626 = $625; + $627 = HEAP32[$626>>2]|0; + $628 = (_bitshift64Ashr(0,($624|0),32)|0); + $629 = tempRet0; + $630 = (___muldi3(($628|0),($629|0),($620|0),($621|0))|0); + $631 = tempRet0; + $632 = (_i64Add(($630|0),($631|0),($612|0),($613|0))|0); + $633 = tempRet0; + $634 = $106; + $635 = $634; + $636 = HEAP32[$635>>2]|0; + $637 = (($634) + 4)|0; + $638 = $637; + $639 = HEAP32[$638>>2]|0; + $640 = (_bitshift64Ashr(0,($636|0),32)|0); + $641 = tempRet0; + $642 = $410; + $643 = $642; + $644 = HEAP32[$643>>2]|0; + $645 = (($642) + 4)|0; + $646 = $645; + $647 = HEAP32[$646>>2]|0; + $648 = (_bitshift64Ashr(0,($644|0),32)|0); + $649 = tempRet0; + $650 = (___muldi3(($648|0),($649|0),($640|0),($641|0))|0); + $651 = tempRet0; + $652 = (_i64Add(($632|0),($633|0),($650|0),($651|0))|0); + $653 = tempRet0; + $654 = $423; + $655 = $654; + $656 = HEAP32[$655>>2]|0; + $657 = (($654) + 4)|0; + $658 = $657; + $659 = HEAP32[$658>>2]|0; + $660 = (_bitshift64Ashr(0,($656|0),32)|0); + $661 = tempRet0; + $662 = $93; + $663 = $662; + $664 = HEAP32[$663>>2]|0; + $665 = (($662) + 4)|0; + $666 = $665; + $667 = HEAP32[$666>>2]|0; + $668 = (_bitshift64Ashr(0,($664|0),32)|0); + $669 = tempRet0; + $670 = (___muldi3(($668|0),($669|0),($660|0),($661|0))|0); + $671 = tempRet0; + $672 = (_i64Add(($652|0),($653|0),($670|0),($671|0))|0); + $673 = tempRet0; + $674 = $41; + $675 = $674; + $676 = HEAP32[$675>>2]|0; + $677 = (($674) + 4)|0; + $678 = $677; + $679 = HEAP32[$678>>2]|0; + $680 = (_bitshift64Ashr(0,($676|0),32)|0); + $681 = tempRet0; + $682 = $557; + $683 = $682; + $684 = HEAP32[$683>>2]|0; + $685 = (($682) + 4)|0; + $686 = $685; + $687 = HEAP32[$686>>2]|0; + $688 = (_bitshift64Ashr(0,($684|0),32)|0); + $689 = tempRet0; + $690 = (___muldi3(($688|0),($689|0),($680|0),($681|0))|0); + $691 = tempRet0; + $692 = (_i64Add(($672|0),($673|0),($690|0),($691|0))|0); + $693 = tempRet0; + $694 = $570; + $695 = $694; + $696 = HEAP32[$695>>2]|0; + $697 = (($694) + 4)|0; + $698 = $697; + $699 = HEAP32[$698>>2]|0; + $700 = (_bitshift64Ashr(0,($696|0),32)|0); + $701 = tempRet0; + $702 = $30; + $703 = $702; + $704 = HEAP32[$703>>2]|0; + $705 = (($702) + 4)|0; + $706 = $705; + $707 = HEAP32[$706>>2]|0; + $708 = (_bitshift64Ashr(0,($704|0),32)|0); + $709 = tempRet0; + $710 = (___muldi3(($708|0),($709|0),($700|0),($701|0))|0); + $711 = tempRet0; + $712 = (_i64Add(($692|0),($693|0),($710|0),($711|0))|0); + $713 = tempRet0; + $714 = $in2; + $715 = $714; + $716 = HEAP32[$715>>2]|0; + $717 = (($714) + 4)|0; + $718 = $717; + $719 = HEAP32[$718>>2]|0; + $720 = (_bitshift64Ashr(0,($716|0),32)|0); + $721 = tempRet0; + $722 = (($in) + 56|0); + $723 = $722; + $724 = $723; + $725 = HEAP32[$724>>2]|0; + $726 = (($723) + 4)|0; + $727 = $726; + $728 = HEAP32[$727>>2]|0; + $729 = (_bitshift64Ashr(0,($725|0),32)|0); + $730 = tempRet0; + $731 = (___muldi3(($729|0),($730|0),($720|0),($721|0))|0); + $732 = tempRet0; + $733 = (_i64Add(($712|0),($713|0),($731|0),($732|0))|0); + $734 = tempRet0; + $735 = (($in2) + 56|0); + $736 = $735; + $737 = $736; + $738 = HEAP32[$737>>2]|0; + $739 = (($736) + 4)|0; + $740 = $739; + $741 = HEAP32[$740>>2]|0; + $742 = (_bitshift64Ashr(0,($738|0),32)|0); + $743 = tempRet0; + $744 = $in; + $745 = $744; + $746 = HEAP32[$745>>2]|0; + $747 = (($744) + 4)|0; + $748 = $747; + $749 = HEAP32[$748>>2]|0; + $750 = (_bitshift64Ashr(0,($746|0),32)|0); + $751 = tempRet0; + $752 = (___muldi3(($750|0),($751|0),($742|0),($743|0))|0); + $753 = tempRet0; + $754 = (_i64Add(($733|0),($734|0),($752|0),($753|0))|0); + $755 = tempRet0; + $756 = (($output) + 56|0); + $757 = $756; + $758 = $757; + HEAP32[$758>>2] = $754; + $759 = (($757) + 4)|0; + $760 = $759; + HEAP32[$760>>2] = $755; + $761 = $298; + $762 = $761; + $763 = HEAP32[$762>>2]|0; + $764 = (($761) + 4)|0; + $765 = $764; + $766 = HEAP32[$765>>2]|0; + $767 = (_bitshift64Ashr(0,($763|0),32)|0); + $768 = tempRet0; + $769 = $285; + $770 = $769; + $771 = HEAP32[$770>>2]|0; + $772 = (($769) + 4)|0; + $773 = $772; + $774 = HEAP32[$773>>2]|0; + $775 = (_bitshift64Ashr(0,($771|0),32)|0); + $776 = tempRet0; + $777 = (___muldi3(($775|0),($776|0),($767|0),($768|0))|0); + $778 = tempRet0; + $779 = $191; + $780 = $779; + $781 = HEAP32[$780>>2]|0; + $782 = (($779) + 4)|0; + $783 = $782; + $784 = HEAP32[$783>>2]|0; + $785 = (_bitshift64Ashr(0,($781|0),32)|0); + $786 = tempRet0; + $787 = $410; + $788 = $787; + $789 = HEAP32[$788>>2]|0; + $790 = (($787) + 4)|0; + $791 = $790; + $792 = HEAP32[$791>>2]|0; + $793 = (_bitshift64Ashr(0,($789|0),32)|0); + $794 = tempRet0; + $795 = (___muldi3(($793|0),($794|0),($785|0),($786|0))|0); + $796 = tempRet0; + $797 = $423; + $798 = $797; + $799 = HEAP32[$798>>2]|0; + $800 = (($797) + 4)|0; + $801 = $800; + $802 = HEAP32[$801>>2]|0; + $803 = (_bitshift64Ashr(0,($799|0),32)|0); + $804 = tempRet0; + $805 = $178; + $806 = $805; + $807 = HEAP32[$806>>2]|0; + $808 = (($805) + 4)|0; + $809 = $808; + $810 = HEAP32[$809>>2]|0; + $811 = (_bitshift64Ashr(0,($807|0),32)|0); + $812 = tempRet0; + $813 = (___muldi3(($811|0),($812|0),($803|0),($804|0))|0); + $814 = tempRet0; + $815 = (_i64Add(($813|0),($814|0),($795|0),($796|0))|0); + $816 = tempRet0; + $817 = $41; + $818 = $817; + $819 = HEAP32[$818>>2]|0; + $820 = (($817) + 4)|0; + $821 = $820; + $822 = HEAP32[$821>>2]|0; + $823 = (_bitshift64Ashr(0,($819|0),32)|0); + $824 = tempRet0; + $825 = $722; + $826 = $825; + $827 = HEAP32[$826>>2]|0; + $828 = (($825) + 4)|0; + $829 = $828; + $830 = HEAP32[$829>>2]|0; + $831 = (_bitshift64Ashr(0,($827|0),32)|0); + $832 = tempRet0; + $833 = (___muldi3(($831|0),($832|0),($823|0),($824|0))|0); + $834 = tempRet0; + $835 = (_i64Add(($815|0),($816|0),($833|0),($834|0))|0); + $836 = tempRet0; + $837 = $735; + $838 = $837; + $839 = HEAP32[$838>>2]|0; + $840 = (($837) + 4)|0; + $841 = $840; + $842 = HEAP32[$841>>2]|0; + $843 = (_bitshift64Ashr(0,($839|0),32)|0); + $844 = tempRet0; + $845 = $30; + $846 = $845; + $847 = HEAP32[$846>>2]|0; + $848 = (($845) + 4)|0; + $849 = $848; + $850 = HEAP32[$849>>2]|0; + $851 = (_bitshift64Ashr(0,($847|0),32)|0); + $852 = tempRet0; + $853 = (___muldi3(($851|0),($852|0),($843|0),($844|0))|0); + $854 = tempRet0; + $855 = (_i64Add(($835|0),($836|0),($853|0),($854|0))|0); + $856 = tempRet0; + $857 = (_bitshift64Shl(($855|0),($856|0),1)|0); + $858 = tempRet0; + $859 = (_i64Add(($857|0),($858|0),($777|0),($778|0))|0); + $860 = tempRet0; + $861 = $106; + $862 = $861; + $863 = HEAP32[$862>>2]|0; + $864 = (($861) + 4)|0; + $865 = $864; + $866 = HEAP32[$865>>2]|0; + $867 = (_bitshift64Ashr(0,($863|0),32)|0); + $868 = tempRet0; + $869 = $557; + $870 = $869; + $871 = HEAP32[$870>>2]|0; + $872 = (($869) + 4)|0; + $873 = $872; + $874 = HEAP32[$873>>2]|0; + $875 = (_bitshift64Ashr(0,($871|0),32)|0); + $876 = tempRet0; + $877 = (___muldi3(($875|0),($876|0),($867|0),($868|0))|0); + $878 = tempRet0; + $879 = (_i64Add(($859|0),($860|0),($877|0),($878|0))|0); + $880 = tempRet0; + $881 = $570; + $882 = $881; + $883 = HEAP32[$882>>2]|0; + $884 = (($881) + 4)|0; + $885 = $884; + $886 = HEAP32[$885>>2]|0; + $887 = (_bitshift64Ashr(0,($883|0),32)|0); + $888 = tempRet0; + $889 = $93; + $890 = $889; + $891 = HEAP32[$890>>2]|0; + $892 = (($889) + 4)|0; + $893 = $892; + $894 = HEAP32[$893>>2]|0; + $895 = (_bitshift64Ashr(0,($891|0),32)|0); + $896 = tempRet0; + $897 = (___muldi3(($895|0),($896|0),($887|0),($888|0))|0); + $898 = tempRet0; + $899 = (_i64Add(($879|0),($880|0),($897|0),($898|0))|0); + $900 = tempRet0; + $901 = $in2; + $902 = $901; + $903 = HEAP32[$902>>2]|0; + $904 = (($901) + 4)|0; + $905 = $904; + $906 = HEAP32[$905>>2]|0; + $907 = (_bitshift64Ashr(0,($903|0),32)|0); + $908 = tempRet0; + $909 = (($in) + 64|0); + $910 = $909; + $911 = $910; + $912 = HEAP32[$911>>2]|0; + $913 = (($910) + 4)|0; + $914 = $913; + $915 = HEAP32[$914>>2]|0; + $916 = (_bitshift64Ashr(0,($912|0),32)|0); + $917 = tempRet0; + $918 = (___muldi3(($916|0),($917|0),($907|0),($908|0))|0); + $919 = tempRet0; + $920 = (_i64Add(($899|0),($900|0),($918|0),($919|0))|0); + $921 = tempRet0; + $922 = (($in2) + 64|0); + $923 = $922; + $924 = $923; + $925 = HEAP32[$924>>2]|0; + $926 = (($923) + 4)|0; + $927 = $926; + $928 = HEAP32[$927>>2]|0; + $929 = (_bitshift64Ashr(0,($925|0),32)|0); + $930 = tempRet0; + $931 = $in; + $932 = $931; + $933 = HEAP32[$932>>2]|0; + $934 = (($931) + 4)|0; + $935 = $934; + $936 = HEAP32[$935>>2]|0; + $937 = (_bitshift64Ashr(0,($933|0),32)|0); + $938 = tempRet0; + $939 = (___muldi3(($937|0),($938|0),($929|0),($930|0))|0); + $940 = tempRet0; + $941 = (_i64Add(($920|0),($921|0),($939|0),($940|0))|0); + $942 = tempRet0; + $943 = (($output) + 64|0); + $944 = $943; + $945 = $944; + HEAP32[$945>>2] = $941; + $946 = (($944) + 4)|0; + $947 = $946; + HEAP32[$947>>2] = $942; + $948 = $298; + $949 = $948; + $950 = HEAP32[$949>>2]|0; + $951 = (($948) + 4)|0; + $952 = $951; + $953 = HEAP32[$952>>2]|0; + $954 = (_bitshift64Ashr(0,($950|0),32)|0); + $955 = tempRet0; + $956 = $410; + $957 = $956; + $958 = HEAP32[$957>>2]|0; + $959 = (($956) + 4)|0; + $960 = $959; + $961 = HEAP32[$960>>2]|0; + $962 = (_bitshift64Ashr(0,($958|0),32)|0); + $963 = tempRet0; + $964 = (___muldi3(($962|0),($963|0),($954|0),($955|0))|0); + $965 = tempRet0; + $966 = $423; + $967 = $966; + $968 = HEAP32[$967>>2]|0; + $969 = (($966) + 4)|0; + $970 = $969; + $971 = HEAP32[$970>>2]|0; + $972 = (_bitshift64Ashr(0,($968|0),32)|0); + $973 = tempRet0; + $974 = $285; + $975 = $974; + $976 = HEAP32[$975>>2]|0; + $977 = (($974) + 4)|0; + $978 = $977; + $979 = HEAP32[$978>>2]|0; + $980 = (_bitshift64Ashr(0,($976|0),32)|0); + $981 = tempRet0; + $982 = (___muldi3(($980|0),($981|0),($972|0),($973|0))|0); + $983 = tempRet0; + $984 = (_i64Add(($982|0),($983|0),($964|0),($965|0))|0); + $985 = tempRet0; + $986 = $191; + $987 = $986; + $988 = HEAP32[$987>>2]|0; + $989 = (($986) + 4)|0; + $990 = $989; + $991 = HEAP32[$990>>2]|0; + $992 = (_bitshift64Ashr(0,($988|0),32)|0); + $993 = tempRet0; + $994 = $557; + $995 = $994; + $996 = HEAP32[$995>>2]|0; + $997 = (($994) + 4)|0; + $998 = $997; + $999 = HEAP32[$998>>2]|0; + $1000 = (_bitshift64Ashr(0,($996|0),32)|0); + $1001 = tempRet0; + $1002 = (___muldi3(($1000|0),($1001|0),($992|0),($993|0))|0); + $1003 = tempRet0; + $1004 = (_i64Add(($984|0),($985|0),($1002|0),($1003|0))|0); + $1005 = tempRet0; + $1006 = $570; + $1007 = $1006; + $1008 = HEAP32[$1007>>2]|0; + $1009 = (($1006) + 4)|0; + $1010 = $1009; + $1011 = HEAP32[$1010>>2]|0; + $1012 = (_bitshift64Ashr(0,($1008|0),32)|0); + $1013 = tempRet0; + $1014 = $178; + $1015 = $1014; + $1016 = HEAP32[$1015>>2]|0; + $1017 = (($1014) + 4)|0; + $1018 = $1017; + $1019 = HEAP32[$1018>>2]|0; + $1020 = (_bitshift64Ashr(0,($1016|0),32)|0); + $1021 = tempRet0; + $1022 = (___muldi3(($1020|0),($1021|0),($1012|0),($1013|0))|0); + $1023 = tempRet0; + $1024 = (_i64Add(($1004|0),($1005|0),($1022|0),($1023|0))|0); + $1025 = tempRet0; + $1026 = $106; + $1027 = $1026; + $1028 = HEAP32[$1027>>2]|0; + $1029 = (($1026) + 4)|0; + $1030 = $1029; + $1031 = HEAP32[$1030>>2]|0; + $1032 = (_bitshift64Ashr(0,($1028|0),32)|0); + $1033 = tempRet0; + $1034 = $722; + $1035 = $1034; + $1036 = HEAP32[$1035>>2]|0; + $1037 = (($1034) + 4)|0; + $1038 = $1037; + $1039 = HEAP32[$1038>>2]|0; + $1040 = (_bitshift64Ashr(0,($1036|0),32)|0); + $1041 = tempRet0; + $1042 = (___muldi3(($1040|0),($1041|0),($1032|0),($1033|0))|0); + $1043 = tempRet0; + $1044 = (_i64Add(($1024|0),($1025|0),($1042|0),($1043|0))|0); + $1045 = tempRet0; + $1046 = $735; + $1047 = $1046; + $1048 = HEAP32[$1047>>2]|0; + $1049 = (($1046) + 4)|0; + $1050 = $1049; + $1051 = HEAP32[$1050>>2]|0; + $1052 = (_bitshift64Ashr(0,($1048|0),32)|0); + $1053 = tempRet0; + $1054 = $93; + $1055 = $1054; + $1056 = HEAP32[$1055>>2]|0; + $1057 = (($1054) + 4)|0; + $1058 = $1057; + $1059 = HEAP32[$1058>>2]|0; + $1060 = (_bitshift64Ashr(0,($1056|0),32)|0); + $1061 = tempRet0; + $1062 = (___muldi3(($1060|0),($1061|0),($1052|0),($1053|0))|0); + $1063 = tempRet0; + $1064 = (_i64Add(($1044|0),($1045|0),($1062|0),($1063|0))|0); + $1065 = tempRet0; + $1066 = $41; + $1067 = $1066; + $1068 = HEAP32[$1067>>2]|0; + $1069 = (($1066) + 4)|0; + $1070 = $1069; + $1071 = HEAP32[$1070>>2]|0; + $1072 = (_bitshift64Ashr(0,($1068|0),32)|0); + $1073 = tempRet0; + $1074 = $909; + $1075 = $1074; + $1076 = HEAP32[$1075>>2]|0; + $1077 = (($1074) + 4)|0; + $1078 = $1077; + $1079 = HEAP32[$1078>>2]|0; + $1080 = (_bitshift64Ashr(0,($1076|0),32)|0); + $1081 = tempRet0; + $1082 = (___muldi3(($1080|0),($1081|0),($1072|0),($1073|0))|0); + $1083 = tempRet0; + $1084 = (_i64Add(($1064|0),($1065|0),($1082|0),($1083|0))|0); + $1085 = tempRet0; + $1086 = $922; + $1087 = $1086; + $1088 = HEAP32[$1087>>2]|0; + $1089 = (($1086) + 4)|0; + $1090 = $1089; + $1091 = HEAP32[$1090>>2]|0; + $1092 = (_bitshift64Ashr(0,($1088|0),32)|0); + $1093 = tempRet0; + $1094 = $30; + $1095 = $1094; + $1096 = HEAP32[$1095>>2]|0; + $1097 = (($1094) + 4)|0; + $1098 = $1097; + $1099 = HEAP32[$1098>>2]|0; + $1100 = (_bitshift64Ashr(0,($1096|0),32)|0); + $1101 = tempRet0; + $1102 = (___muldi3(($1100|0),($1101|0),($1092|0),($1093|0))|0); + $1103 = tempRet0; + $1104 = (_i64Add(($1084|0),($1085|0),($1102|0),($1103|0))|0); + $1105 = tempRet0; + $1106 = $in2; + $1107 = $1106; + $1108 = HEAP32[$1107>>2]|0; + $1109 = (($1106) + 4)|0; + $1110 = $1109; + $1111 = HEAP32[$1110>>2]|0; + $1112 = (_bitshift64Ashr(0,($1108|0),32)|0); + $1113 = tempRet0; + $1114 = (($in) + 72|0); + $1115 = $1114; + $1116 = $1115; + $1117 = HEAP32[$1116>>2]|0; + $1118 = (($1115) + 4)|0; + $1119 = $1118; + $1120 = HEAP32[$1119>>2]|0; + $1121 = (_bitshift64Ashr(0,($1117|0),32)|0); + $1122 = tempRet0; + $1123 = (___muldi3(($1121|0),($1122|0),($1112|0),($1113|0))|0); + $1124 = tempRet0; + $1125 = (_i64Add(($1104|0),($1105|0),($1123|0),($1124|0))|0); + $1126 = tempRet0; + $1127 = (($in2) + 72|0); + $1128 = $1127; + $1129 = $1128; + $1130 = HEAP32[$1129>>2]|0; + $1131 = (($1128) + 4)|0; + $1132 = $1131; + $1133 = HEAP32[$1132>>2]|0; + $1134 = (_bitshift64Ashr(0,($1130|0),32)|0); + $1135 = tempRet0; + $1136 = $in; + $1137 = $1136; + $1138 = HEAP32[$1137>>2]|0; + $1139 = (($1136) + 4)|0; + $1140 = $1139; + $1141 = HEAP32[$1140>>2]|0; + $1142 = (_bitshift64Ashr(0,($1138|0),32)|0); + $1143 = tempRet0; + $1144 = (___muldi3(($1142|0),($1143|0),($1134|0),($1135|0))|0); + $1145 = tempRet0; + $1146 = (_i64Add(($1125|0),($1126|0),($1144|0),($1145|0))|0); + $1147 = tempRet0; + $1148 = (($output) + 72|0); + $1149 = $1148; + $1150 = $1149; + HEAP32[$1150>>2] = $1146; + $1151 = (($1149) + 4)|0; + $1152 = $1151; + HEAP32[$1152>>2] = $1147; + $1153 = $423; + $1154 = $1153; + $1155 = HEAP32[$1154>>2]|0; + $1156 = (($1153) + 4)|0; + $1157 = $1156; + $1158 = HEAP32[$1157>>2]|0; + $1159 = (_bitshift64Ashr(0,($1155|0),32)|0); + $1160 = tempRet0; + $1161 = $410; + $1162 = $1161; + $1163 = HEAP32[$1162>>2]|0; + $1164 = (($1161) + 4)|0; + $1165 = $1164; + $1166 = HEAP32[$1165>>2]|0; + $1167 = (_bitshift64Ashr(0,($1163|0),32)|0); + $1168 = tempRet0; + $1169 = (___muldi3(($1167|0),($1168|0),($1159|0),($1160|0))|0); + $1170 = tempRet0; + $1171 = $191; + $1172 = $1171; + $1173 = HEAP32[$1172>>2]|0; + $1174 = (($1171) + 4)|0; + $1175 = $1174; + $1176 = HEAP32[$1175>>2]|0; + $1177 = (_bitshift64Ashr(0,($1173|0),32)|0); + $1178 = tempRet0; + $1179 = $722; + $1180 = $1179; + $1181 = HEAP32[$1180>>2]|0; + $1182 = (($1179) + 4)|0; + $1183 = $1182; + $1184 = HEAP32[$1183>>2]|0; + $1185 = (_bitshift64Ashr(0,($1181|0),32)|0); + $1186 = tempRet0; + $1187 = (___muldi3(($1185|0),($1186|0),($1177|0),($1178|0))|0); + $1188 = tempRet0; + $1189 = (_i64Add(($1187|0),($1188|0),($1169|0),($1170|0))|0); + $1190 = tempRet0; + $1191 = $735; + $1192 = $1191; + $1193 = HEAP32[$1192>>2]|0; + $1194 = (($1191) + 4)|0; + $1195 = $1194; + $1196 = HEAP32[$1195>>2]|0; + $1197 = (_bitshift64Ashr(0,($1193|0),32)|0); + $1198 = tempRet0; + $1199 = $178; + $1200 = $1199; + $1201 = HEAP32[$1200>>2]|0; + $1202 = (($1199) + 4)|0; + $1203 = $1202; + $1204 = HEAP32[$1203>>2]|0; + $1205 = (_bitshift64Ashr(0,($1201|0),32)|0); + $1206 = tempRet0; + $1207 = (___muldi3(($1205|0),($1206|0),($1197|0),($1198|0))|0); + $1208 = tempRet0; + $1209 = (_i64Add(($1189|0),($1190|0),($1207|0),($1208|0))|0); + $1210 = tempRet0; + $1211 = $41; + $1212 = $1211; + $1213 = HEAP32[$1212>>2]|0; + $1214 = (($1211) + 4)|0; + $1215 = $1214; + $1216 = HEAP32[$1215>>2]|0; + $1217 = (_bitshift64Ashr(0,($1213|0),32)|0); + $1218 = tempRet0; + $1219 = $1114; + $1220 = $1219; + $1221 = HEAP32[$1220>>2]|0; + $1222 = (($1219) + 4)|0; + $1223 = $1222; + $1224 = HEAP32[$1223>>2]|0; + $1225 = (_bitshift64Ashr(0,($1221|0),32)|0); + $1226 = tempRet0; + $1227 = (___muldi3(($1225|0),($1226|0),($1217|0),($1218|0))|0); + $1228 = tempRet0; + $1229 = (_i64Add(($1209|0),($1210|0),($1227|0),($1228|0))|0); + $1230 = tempRet0; + $1231 = $1127; + $1232 = $1231; + $1233 = HEAP32[$1232>>2]|0; + $1234 = (($1231) + 4)|0; + $1235 = $1234; + $1236 = HEAP32[$1235>>2]|0; + $1237 = (_bitshift64Ashr(0,($1233|0),32)|0); + $1238 = tempRet0; + $1239 = $30; + $1240 = $1239; + $1241 = HEAP32[$1240>>2]|0; + $1242 = (($1239) + 4)|0; + $1243 = $1242; + $1244 = HEAP32[$1243>>2]|0; + $1245 = (_bitshift64Ashr(0,($1241|0),32)|0); + $1246 = tempRet0; + $1247 = (___muldi3(($1245|0),($1246|0),($1237|0),($1238|0))|0); + $1248 = tempRet0; + $1249 = (_i64Add(($1229|0),($1230|0),($1247|0),($1248|0))|0); + $1250 = tempRet0; + $1251 = (_bitshift64Shl(($1249|0),($1250|0),1)|0); + $1252 = tempRet0; + $1253 = $298; + $1254 = $1253; + $1255 = HEAP32[$1254>>2]|0; + $1256 = (($1253) + 4)|0; + $1257 = $1256; + $1258 = HEAP32[$1257>>2]|0; + $1259 = (_bitshift64Ashr(0,($1255|0),32)|0); + $1260 = tempRet0; + $1261 = $557; + $1262 = $1261; + $1263 = HEAP32[$1262>>2]|0; + $1264 = (($1261) + 4)|0; + $1265 = $1264; + $1266 = HEAP32[$1265>>2]|0; + $1267 = (_bitshift64Ashr(0,($1263|0),32)|0); + $1268 = tempRet0; + $1269 = (___muldi3(($1267|0),($1268|0),($1259|0),($1260|0))|0); + $1270 = tempRet0; + $1271 = (_i64Add(($1251|0),($1252|0),($1269|0),($1270|0))|0); + $1272 = tempRet0; + $1273 = $570; + $1274 = $1273; + $1275 = HEAP32[$1274>>2]|0; + $1276 = (($1273) + 4)|0; + $1277 = $1276; + $1278 = HEAP32[$1277>>2]|0; + $1279 = (_bitshift64Ashr(0,($1275|0),32)|0); + $1280 = tempRet0; + $1281 = $285; + $1282 = $1281; + $1283 = HEAP32[$1282>>2]|0; + $1284 = (($1281) + 4)|0; + $1285 = $1284; + $1286 = HEAP32[$1285>>2]|0; + $1287 = (_bitshift64Ashr(0,($1283|0),32)|0); + $1288 = tempRet0; + $1289 = (___muldi3(($1287|0),($1288|0),($1279|0),($1280|0))|0); + $1290 = tempRet0; + $1291 = (_i64Add(($1271|0),($1272|0),($1289|0),($1290|0))|0); + $1292 = tempRet0; + $1293 = $106; + $1294 = $1293; + $1295 = HEAP32[$1294>>2]|0; + $1296 = (($1293) + 4)|0; + $1297 = $1296; + $1298 = HEAP32[$1297>>2]|0; + $1299 = (_bitshift64Ashr(0,($1295|0),32)|0); + $1300 = tempRet0; + $1301 = $909; + $1302 = $1301; + $1303 = HEAP32[$1302>>2]|0; + $1304 = (($1301) + 4)|0; + $1305 = $1304; + $1306 = HEAP32[$1305>>2]|0; + $1307 = (_bitshift64Ashr(0,($1303|0),32)|0); + $1308 = tempRet0; + $1309 = (___muldi3(($1307|0),($1308|0),($1299|0),($1300|0))|0); + $1310 = tempRet0; + $1311 = (_i64Add(($1291|0),($1292|0),($1309|0),($1310|0))|0); + $1312 = tempRet0; + $1313 = $922; + $1314 = $1313; + $1315 = HEAP32[$1314>>2]|0; + $1316 = (($1313) + 4)|0; + $1317 = $1316; + $1318 = HEAP32[$1317>>2]|0; + $1319 = (_bitshift64Ashr(0,($1315|0),32)|0); + $1320 = tempRet0; + $1321 = $93; + $1322 = $1321; + $1323 = HEAP32[$1322>>2]|0; + $1324 = (($1321) + 4)|0; + $1325 = $1324; + $1326 = HEAP32[$1325>>2]|0; + $1327 = (_bitshift64Ashr(0,($1323|0),32)|0); + $1328 = tempRet0; + $1329 = (___muldi3(($1327|0),($1328|0),($1319|0),($1320|0))|0); + $1330 = tempRet0; + $1331 = (_i64Add(($1311|0),($1312|0),($1329|0),($1330|0))|0); + $1332 = tempRet0; + $1333 = (($output) + 80|0); + $1334 = $1333; + $1335 = $1334; + HEAP32[$1335>>2] = $1331; + $1336 = (($1334) + 4)|0; + $1337 = $1336; + HEAP32[$1337>>2] = $1332; + $1338 = $423; + $1339 = $1338; + $1340 = HEAP32[$1339>>2]|0; + $1341 = (($1338) + 4)|0; + $1342 = $1341; + $1343 = HEAP32[$1342>>2]|0; + $1344 = (_bitshift64Ashr(0,($1340|0),32)|0); + $1345 = tempRet0; + $1346 = $557; + $1347 = $1346; + $1348 = HEAP32[$1347>>2]|0; + $1349 = (($1346) + 4)|0; + $1350 = $1349; + $1351 = HEAP32[$1350>>2]|0; + $1352 = (_bitshift64Ashr(0,($1348|0),32)|0); + $1353 = tempRet0; + $1354 = (___muldi3(($1352|0),($1353|0),($1344|0),($1345|0))|0); + $1355 = tempRet0; + $1356 = $570; + $1357 = $1356; + $1358 = HEAP32[$1357>>2]|0; + $1359 = (($1356) + 4)|0; + $1360 = $1359; + $1361 = HEAP32[$1360>>2]|0; + $1362 = (_bitshift64Ashr(0,($1358|0),32)|0); + $1363 = tempRet0; + $1364 = $410; + $1365 = $1364; + $1366 = HEAP32[$1365>>2]|0; + $1367 = (($1364) + 4)|0; + $1368 = $1367; + $1369 = HEAP32[$1368>>2]|0; + $1370 = (_bitshift64Ashr(0,($1366|0),32)|0); + $1371 = tempRet0; + $1372 = (___muldi3(($1370|0),($1371|0),($1362|0),($1363|0))|0); + $1373 = tempRet0; + $1374 = (_i64Add(($1372|0),($1373|0),($1354|0),($1355|0))|0); + $1375 = tempRet0; + $1376 = $298; + $1377 = $1376; + $1378 = HEAP32[$1377>>2]|0; + $1379 = (($1376) + 4)|0; + $1380 = $1379; + $1381 = HEAP32[$1380>>2]|0; + $1382 = (_bitshift64Ashr(0,($1378|0),32)|0); + $1383 = tempRet0; + $1384 = $722; + $1385 = $1384; + $1386 = HEAP32[$1385>>2]|0; + $1387 = (($1384) + 4)|0; + $1388 = $1387; + $1389 = HEAP32[$1388>>2]|0; + $1390 = (_bitshift64Ashr(0,($1386|0),32)|0); + $1391 = tempRet0; + $1392 = (___muldi3(($1390|0),($1391|0),($1382|0),($1383|0))|0); + $1393 = tempRet0; + $1394 = (_i64Add(($1374|0),($1375|0),($1392|0),($1393|0))|0); + $1395 = tempRet0; + $1396 = $735; + $1397 = $1396; + $1398 = HEAP32[$1397>>2]|0; + $1399 = (($1396) + 4)|0; + $1400 = $1399; + $1401 = HEAP32[$1400>>2]|0; + $1402 = (_bitshift64Ashr(0,($1398|0),32)|0); + $1403 = tempRet0; + $1404 = $285; + $1405 = $1404; + $1406 = HEAP32[$1405>>2]|0; + $1407 = (($1404) + 4)|0; + $1408 = $1407; + $1409 = HEAP32[$1408>>2]|0; + $1410 = (_bitshift64Ashr(0,($1406|0),32)|0); + $1411 = tempRet0; + $1412 = (___muldi3(($1410|0),($1411|0),($1402|0),($1403|0))|0); + $1413 = tempRet0; + $1414 = (_i64Add(($1394|0),($1395|0),($1412|0),($1413|0))|0); + $1415 = tempRet0; + $1416 = $191; + $1417 = $1416; + $1418 = HEAP32[$1417>>2]|0; + $1419 = (($1416) + 4)|0; + $1420 = $1419; + $1421 = HEAP32[$1420>>2]|0; + $1422 = (_bitshift64Ashr(0,($1418|0),32)|0); + $1423 = tempRet0; + $1424 = $909; + $1425 = $1424; + $1426 = HEAP32[$1425>>2]|0; + $1427 = (($1424) + 4)|0; + $1428 = $1427; + $1429 = HEAP32[$1428>>2]|0; + $1430 = (_bitshift64Ashr(0,($1426|0),32)|0); + $1431 = tempRet0; + $1432 = (___muldi3(($1430|0),($1431|0),($1422|0),($1423|0))|0); + $1433 = tempRet0; + $1434 = (_i64Add(($1414|0),($1415|0),($1432|0),($1433|0))|0); + $1435 = tempRet0; + $1436 = $922; + $1437 = $1436; + $1438 = HEAP32[$1437>>2]|0; + $1439 = (($1436) + 4)|0; + $1440 = $1439; + $1441 = HEAP32[$1440>>2]|0; + $1442 = (_bitshift64Ashr(0,($1438|0),32)|0); + $1443 = tempRet0; + $1444 = $178; + $1445 = $1444; + $1446 = HEAP32[$1445>>2]|0; + $1447 = (($1444) + 4)|0; + $1448 = $1447; + $1449 = HEAP32[$1448>>2]|0; + $1450 = (_bitshift64Ashr(0,($1446|0),32)|0); + $1451 = tempRet0; + $1452 = (___muldi3(($1450|0),($1451|0),($1442|0),($1443|0))|0); + $1453 = tempRet0; + $1454 = (_i64Add(($1434|0),($1435|0),($1452|0),($1453|0))|0); + $1455 = tempRet0; + $1456 = $106; + $1457 = $1456; + $1458 = HEAP32[$1457>>2]|0; + $1459 = (($1456) + 4)|0; + $1460 = $1459; + $1461 = HEAP32[$1460>>2]|0; + $1462 = (_bitshift64Ashr(0,($1458|0),32)|0); + $1463 = tempRet0; + $1464 = $1114; + $1465 = $1464; + $1466 = HEAP32[$1465>>2]|0; + $1467 = (($1464) + 4)|0; + $1468 = $1467; + $1469 = HEAP32[$1468>>2]|0; + $1470 = (_bitshift64Ashr(0,($1466|0),32)|0); + $1471 = tempRet0; + $1472 = (___muldi3(($1470|0),($1471|0),($1462|0),($1463|0))|0); + $1473 = tempRet0; + $1474 = (_i64Add(($1454|0),($1455|0),($1472|0),($1473|0))|0); + $1475 = tempRet0; + $1476 = $1127; + $1477 = $1476; + $1478 = HEAP32[$1477>>2]|0; + $1479 = (($1476) + 4)|0; + $1480 = $1479; + $1481 = HEAP32[$1480>>2]|0; + $1482 = (_bitshift64Ashr(0,($1478|0),32)|0); + $1483 = tempRet0; + $1484 = $93; + $1485 = $1484; + $1486 = HEAP32[$1485>>2]|0; + $1487 = (($1484) + 4)|0; + $1488 = $1487; + $1489 = HEAP32[$1488>>2]|0; + $1490 = (_bitshift64Ashr(0,($1486|0),32)|0); + $1491 = tempRet0; + $1492 = (___muldi3(($1490|0),($1491|0),($1482|0),($1483|0))|0); + $1493 = tempRet0; + $1494 = (_i64Add(($1474|0),($1475|0),($1492|0),($1493|0))|0); + $1495 = tempRet0; + $1496 = (($output) + 88|0); + $1497 = $1496; + $1498 = $1497; + HEAP32[$1498>>2] = $1494; + $1499 = (($1497) + 4)|0; + $1500 = $1499; + HEAP32[$1500>>2] = $1495; + $1501 = $570; + $1502 = $1501; + $1503 = HEAP32[$1502>>2]|0; + $1504 = (($1501) + 4)|0; + $1505 = $1504; + $1506 = HEAP32[$1505>>2]|0; + $1507 = (_bitshift64Ashr(0,($1503|0),32)|0); + $1508 = tempRet0; + $1509 = $557; + $1510 = $1509; + $1511 = HEAP32[$1510>>2]|0; + $1512 = (($1509) + 4)|0; + $1513 = $1512; + $1514 = HEAP32[$1513>>2]|0; + $1515 = (_bitshift64Ashr(0,($1511|0),32)|0); + $1516 = tempRet0; + $1517 = (___muldi3(($1515|0),($1516|0),($1507|0),($1508|0))|0); + $1518 = tempRet0; + $1519 = $423; + $1520 = $1519; + $1521 = HEAP32[$1520>>2]|0; + $1522 = (($1519) + 4)|0; + $1523 = $1522; + $1524 = HEAP32[$1523>>2]|0; + $1525 = (_bitshift64Ashr(0,($1521|0),32)|0); + $1526 = tempRet0; + $1527 = $722; + $1528 = $1527; + $1529 = HEAP32[$1528>>2]|0; + $1530 = (($1527) + 4)|0; + $1531 = $1530; + $1532 = HEAP32[$1531>>2]|0; + $1533 = (_bitshift64Ashr(0,($1529|0),32)|0); + $1534 = tempRet0; + $1535 = (___muldi3(($1533|0),($1534|0),($1525|0),($1526|0))|0); + $1536 = tempRet0; + $1537 = $735; + $1538 = $1537; + $1539 = HEAP32[$1538>>2]|0; + $1540 = (($1537) + 4)|0; + $1541 = $1540; + $1542 = HEAP32[$1541>>2]|0; + $1543 = (_bitshift64Ashr(0,($1539|0),32)|0); + $1544 = tempRet0; + $1545 = $410; + $1546 = $1545; + $1547 = HEAP32[$1546>>2]|0; + $1548 = (($1545) + 4)|0; + $1549 = $1548; + $1550 = HEAP32[$1549>>2]|0; + $1551 = (_bitshift64Ashr(0,($1547|0),32)|0); + $1552 = tempRet0; + $1553 = (___muldi3(($1551|0),($1552|0),($1543|0),($1544|0))|0); + $1554 = tempRet0; + $1555 = (_i64Add(($1553|0),($1554|0),($1535|0),($1536|0))|0); + $1556 = tempRet0; + $1557 = $191; + $1558 = $1557; + $1559 = HEAP32[$1558>>2]|0; + $1560 = (($1557) + 4)|0; + $1561 = $1560; + $1562 = HEAP32[$1561>>2]|0; + $1563 = (_bitshift64Ashr(0,($1559|0),32)|0); + $1564 = tempRet0; + $1565 = $1114; + $1566 = $1565; + $1567 = HEAP32[$1566>>2]|0; + $1568 = (($1565) + 4)|0; + $1569 = $1568; + $1570 = HEAP32[$1569>>2]|0; + $1571 = (_bitshift64Ashr(0,($1567|0),32)|0); + $1572 = tempRet0; + $1573 = (___muldi3(($1571|0),($1572|0),($1563|0),($1564|0))|0); + $1574 = tempRet0; + $1575 = (_i64Add(($1555|0),($1556|0),($1573|0),($1574|0))|0); + $1576 = tempRet0; + $1577 = $1127; + $1578 = $1577; + $1579 = HEAP32[$1578>>2]|0; + $1580 = (($1577) + 4)|0; + $1581 = $1580; + $1582 = HEAP32[$1581>>2]|0; + $1583 = (_bitshift64Ashr(0,($1579|0),32)|0); + $1584 = tempRet0; + $1585 = $178; + $1586 = $1585; + $1587 = HEAP32[$1586>>2]|0; + $1588 = (($1585) + 4)|0; + $1589 = $1588; + $1590 = HEAP32[$1589>>2]|0; + $1591 = (_bitshift64Ashr(0,($1587|0),32)|0); + $1592 = tempRet0; + $1593 = (___muldi3(($1591|0),($1592|0),($1583|0),($1584|0))|0); + $1594 = tempRet0; + $1595 = (_i64Add(($1575|0),($1576|0),($1593|0),($1594|0))|0); + $1596 = tempRet0; + $1597 = (_bitshift64Shl(($1595|0),($1596|0),1)|0); + $1598 = tempRet0; + $1599 = (_i64Add(($1597|0),($1598|0),($1517|0),($1518|0))|0); + $1600 = tempRet0; + $1601 = $298; + $1602 = $1601; + $1603 = HEAP32[$1602>>2]|0; + $1604 = (($1601) + 4)|0; + $1605 = $1604; + $1606 = HEAP32[$1605>>2]|0; + $1607 = (_bitshift64Ashr(0,($1603|0),32)|0); + $1608 = tempRet0; + $1609 = $909; + $1610 = $1609; + $1611 = HEAP32[$1610>>2]|0; + $1612 = (($1609) + 4)|0; + $1613 = $1612; + $1614 = HEAP32[$1613>>2]|0; + $1615 = (_bitshift64Ashr(0,($1611|0),32)|0); + $1616 = tempRet0; + $1617 = (___muldi3(($1615|0),($1616|0),($1607|0),($1608|0))|0); + $1618 = tempRet0; + $1619 = (_i64Add(($1599|0),($1600|0),($1617|0),($1618|0))|0); + $1620 = tempRet0; + $1621 = $922; + $1622 = $1621; + $1623 = HEAP32[$1622>>2]|0; + $1624 = (($1621) + 4)|0; + $1625 = $1624; + $1626 = HEAP32[$1625>>2]|0; + $1627 = (_bitshift64Ashr(0,($1623|0),32)|0); + $1628 = tempRet0; + $1629 = $285; + $1630 = $1629; + $1631 = HEAP32[$1630>>2]|0; + $1632 = (($1629) + 4)|0; + $1633 = $1632; + $1634 = HEAP32[$1633>>2]|0; + $1635 = (_bitshift64Ashr(0,($1631|0),32)|0); + $1636 = tempRet0; + $1637 = (___muldi3(($1635|0),($1636|0),($1627|0),($1628|0))|0); + $1638 = tempRet0; + $1639 = (_i64Add(($1619|0),($1620|0),($1637|0),($1638|0))|0); + $1640 = tempRet0; + $1641 = (($output) + 96|0); + $1642 = $1641; + $1643 = $1642; + HEAP32[$1643>>2] = $1639; + $1644 = (($1642) + 4)|0; + $1645 = $1644; + HEAP32[$1645>>2] = $1640; + $1646 = $570; + $1647 = $1646; + $1648 = HEAP32[$1647>>2]|0; + $1649 = (($1646) + 4)|0; + $1650 = $1649; + $1651 = HEAP32[$1650>>2]|0; + $1652 = (_bitshift64Ashr(0,($1648|0),32)|0); + $1653 = tempRet0; + $1654 = $722; + $1655 = $1654; + $1656 = HEAP32[$1655>>2]|0; + $1657 = (($1654) + 4)|0; + $1658 = $1657; + $1659 = HEAP32[$1658>>2]|0; + $1660 = (_bitshift64Ashr(0,($1656|0),32)|0); + $1661 = tempRet0; + $1662 = (___muldi3(($1660|0),($1661|0),($1652|0),($1653|0))|0); + $1663 = tempRet0; + $1664 = $735; + $1665 = $1664; + $1666 = HEAP32[$1665>>2]|0; + $1667 = (($1664) + 4)|0; + $1668 = $1667; + $1669 = HEAP32[$1668>>2]|0; + $1670 = (_bitshift64Ashr(0,($1666|0),32)|0); + $1671 = tempRet0; + $1672 = $557; + $1673 = $1672; + $1674 = HEAP32[$1673>>2]|0; + $1675 = (($1672) + 4)|0; + $1676 = $1675; + $1677 = HEAP32[$1676>>2]|0; + $1678 = (_bitshift64Ashr(0,($1674|0),32)|0); + $1679 = tempRet0; + $1680 = (___muldi3(($1678|0),($1679|0),($1670|0),($1671|0))|0); + $1681 = tempRet0; + $1682 = (_i64Add(($1680|0),($1681|0),($1662|0),($1663|0))|0); + $1683 = tempRet0; + $1684 = $423; + $1685 = $1684; + $1686 = HEAP32[$1685>>2]|0; + $1687 = (($1684) + 4)|0; + $1688 = $1687; + $1689 = HEAP32[$1688>>2]|0; + $1690 = (_bitshift64Ashr(0,($1686|0),32)|0); + $1691 = tempRet0; + $1692 = $909; + $1693 = $1692; + $1694 = HEAP32[$1693>>2]|0; + $1695 = (($1692) + 4)|0; + $1696 = $1695; + $1697 = HEAP32[$1696>>2]|0; + $1698 = (_bitshift64Ashr(0,($1694|0),32)|0); + $1699 = tempRet0; + $1700 = (___muldi3(($1698|0),($1699|0),($1690|0),($1691|0))|0); + $1701 = tempRet0; + $1702 = (_i64Add(($1682|0),($1683|0),($1700|0),($1701|0))|0); + $1703 = tempRet0; + $1704 = $922; + $1705 = $1704; + $1706 = HEAP32[$1705>>2]|0; + $1707 = (($1704) + 4)|0; + $1708 = $1707; + $1709 = HEAP32[$1708>>2]|0; + $1710 = (_bitshift64Ashr(0,($1706|0),32)|0); + $1711 = tempRet0; + $1712 = $410; + $1713 = $1712; + $1714 = HEAP32[$1713>>2]|0; + $1715 = (($1712) + 4)|0; + $1716 = $1715; + $1717 = HEAP32[$1716>>2]|0; + $1718 = (_bitshift64Ashr(0,($1714|0),32)|0); + $1719 = tempRet0; + $1720 = (___muldi3(($1718|0),($1719|0),($1710|0),($1711|0))|0); + $1721 = tempRet0; + $1722 = (_i64Add(($1702|0),($1703|0),($1720|0),($1721|0))|0); + $1723 = tempRet0; + $1724 = $298; + $1725 = $1724; + $1726 = HEAP32[$1725>>2]|0; + $1727 = (($1724) + 4)|0; + $1728 = $1727; + $1729 = HEAP32[$1728>>2]|0; + $1730 = (_bitshift64Ashr(0,($1726|0),32)|0); + $1731 = tempRet0; + $1732 = $1114; + $1733 = $1732; + $1734 = HEAP32[$1733>>2]|0; + $1735 = (($1732) + 4)|0; + $1736 = $1735; + $1737 = HEAP32[$1736>>2]|0; + $1738 = (_bitshift64Ashr(0,($1734|0),32)|0); + $1739 = tempRet0; + $1740 = (___muldi3(($1738|0),($1739|0),($1730|0),($1731|0))|0); + $1741 = tempRet0; + $1742 = (_i64Add(($1722|0),($1723|0),($1740|0),($1741|0))|0); + $1743 = tempRet0; + $1744 = $1127; + $1745 = $1744; + $1746 = HEAP32[$1745>>2]|0; + $1747 = (($1744) + 4)|0; + $1748 = $1747; + $1749 = HEAP32[$1748>>2]|0; + $1750 = (_bitshift64Ashr(0,($1746|0),32)|0); + $1751 = tempRet0; + $1752 = $285; + $1753 = $1752; + $1754 = HEAP32[$1753>>2]|0; + $1755 = (($1752) + 4)|0; + $1756 = $1755; + $1757 = HEAP32[$1756>>2]|0; + $1758 = (_bitshift64Ashr(0,($1754|0),32)|0); + $1759 = tempRet0; + $1760 = (___muldi3(($1758|0),($1759|0),($1750|0),($1751|0))|0); + $1761 = tempRet0; + $1762 = (_i64Add(($1742|0),($1743|0),($1760|0),($1761|0))|0); + $1763 = tempRet0; + $1764 = (($output) + 104|0); + $1765 = $1764; + $1766 = $1765; + HEAP32[$1766>>2] = $1762; + $1767 = (($1765) + 4)|0; + $1768 = $1767; + HEAP32[$1768>>2] = $1763; + $1769 = $735; + $1770 = $1769; + $1771 = HEAP32[$1770>>2]|0; + $1772 = (($1769) + 4)|0; + $1773 = $1772; + $1774 = HEAP32[$1773>>2]|0; + $1775 = (_bitshift64Ashr(0,($1771|0),32)|0); + $1776 = tempRet0; + $1777 = $722; + $1778 = $1777; + $1779 = HEAP32[$1778>>2]|0; + $1780 = (($1777) + 4)|0; + $1781 = $1780; + $1782 = HEAP32[$1781>>2]|0; + $1783 = (_bitshift64Ashr(0,($1779|0),32)|0); + $1784 = tempRet0; + $1785 = (___muldi3(($1783|0),($1784|0),($1775|0),($1776|0))|0); + $1786 = tempRet0; + $1787 = $423; + $1788 = $1787; + $1789 = HEAP32[$1788>>2]|0; + $1790 = (($1787) + 4)|0; + $1791 = $1790; + $1792 = HEAP32[$1791>>2]|0; + $1793 = (_bitshift64Ashr(0,($1789|0),32)|0); + $1794 = tempRet0; + $1795 = $1114; + $1796 = $1795; + $1797 = HEAP32[$1796>>2]|0; + $1798 = (($1795) + 4)|0; + $1799 = $1798; + $1800 = HEAP32[$1799>>2]|0; + $1801 = (_bitshift64Ashr(0,($1797|0),32)|0); + $1802 = tempRet0; + $1803 = (___muldi3(($1801|0),($1802|0),($1793|0),($1794|0))|0); + $1804 = tempRet0; + $1805 = (_i64Add(($1803|0),($1804|0),($1785|0),($1786|0))|0); + $1806 = tempRet0; + $1807 = $1127; + $1808 = $1807; + $1809 = HEAP32[$1808>>2]|0; + $1810 = (($1807) + 4)|0; + $1811 = $1810; + $1812 = HEAP32[$1811>>2]|0; + $1813 = (_bitshift64Ashr(0,($1809|0),32)|0); + $1814 = tempRet0; + $1815 = $410; + $1816 = $1815; + $1817 = HEAP32[$1816>>2]|0; + $1818 = (($1815) + 4)|0; + $1819 = $1818; + $1820 = HEAP32[$1819>>2]|0; + $1821 = (_bitshift64Ashr(0,($1817|0),32)|0); + $1822 = tempRet0; + $1823 = (___muldi3(($1821|0),($1822|0),($1813|0),($1814|0))|0); + $1824 = tempRet0; + $1825 = (_i64Add(($1805|0),($1806|0),($1823|0),($1824|0))|0); + $1826 = tempRet0; + $1827 = (_bitshift64Shl(($1825|0),($1826|0),1)|0); + $1828 = tempRet0; + $1829 = $570; + $1830 = $1829; + $1831 = HEAP32[$1830>>2]|0; + $1832 = (($1829) + 4)|0; + $1833 = $1832; + $1834 = HEAP32[$1833>>2]|0; + $1835 = (_bitshift64Ashr(0,($1831|0),32)|0); + $1836 = tempRet0; + $1837 = $909; + $1838 = $1837; + $1839 = HEAP32[$1838>>2]|0; + $1840 = (($1837) + 4)|0; + $1841 = $1840; + $1842 = HEAP32[$1841>>2]|0; + $1843 = (_bitshift64Ashr(0,($1839|0),32)|0); + $1844 = tempRet0; + $1845 = (___muldi3(($1843|0),($1844|0),($1835|0),($1836|0))|0); + $1846 = tempRet0; + $1847 = (_i64Add(($1827|0),($1828|0),($1845|0),($1846|0))|0); + $1848 = tempRet0; + $1849 = $922; + $1850 = $1849; + $1851 = HEAP32[$1850>>2]|0; + $1852 = (($1849) + 4)|0; + $1853 = $1852; + $1854 = HEAP32[$1853>>2]|0; + $1855 = (_bitshift64Ashr(0,($1851|0),32)|0); + $1856 = tempRet0; + $1857 = $557; + $1858 = $1857; + $1859 = HEAP32[$1858>>2]|0; + $1860 = (($1857) + 4)|0; + $1861 = $1860; + $1862 = HEAP32[$1861>>2]|0; + $1863 = (_bitshift64Ashr(0,($1859|0),32)|0); + $1864 = tempRet0; + $1865 = (___muldi3(($1863|0),($1864|0),($1855|0),($1856|0))|0); + $1866 = tempRet0; + $1867 = (_i64Add(($1847|0),($1848|0),($1865|0),($1866|0))|0); + $1868 = tempRet0; + $1869 = (($output) + 112|0); + $1870 = $1869; + $1871 = $1870; + HEAP32[$1871>>2] = $1867; + $1872 = (($1870) + 4)|0; + $1873 = $1872; + HEAP32[$1873>>2] = $1868; + $1874 = $735; + $1875 = $1874; + $1876 = HEAP32[$1875>>2]|0; + $1877 = (($1874) + 4)|0; + $1878 = $1877; + $1879 = HEAP32[$1878>>2]|0; + $1880 = (_bitshift64Ashr(0,($1876|0),32)|0); + $1881 = tempRet0; + $1882 = $909; + $1883 = $1882; + $1884 = HEAP32[$1883>>2]|0; + $1885 = (($1882) + 4)|0; + $1886 = $1885; + $1887 = HEAP32[$1886>>2]|0; + $1888 = (_bitshift64Ashr(0,($1884|0),32)|0); + $1889 = tempRet0; + $1890 = (___muldi3(($1888|0),($1889|0),($1880|0),($1881|0))|0); + $1891 = tempRet0; + $1892 = $922; + $1893 = $1892; + $1894 = HEAP32[$1893>>2]|0; + $1895 = (($1892) + 4)|0; + $1896 = $1895; + $1897 = HEAP32[$1896>>2]|0; + $1898 = (_bitshift64Ashr(0,($1894|0),32)|0); + $1899 = tempRet0; + $1900 = $722; + $1901 = $1900; + $1902 = HEAP32[$1901>>2]|0; + $1903 = (($1900) + 4)|0; + $1904 = $1903; + $1905 = HEAP32[$1904>>2]|0; + $1906 = (_bitshift64Ashr(0,($1902|0),32)|0); + $1907 = tempRet0; + $1908 = (___muldi3(($1906|0),($1907|0),($1898|0),($1899|0))|0); + $1909 = tempRet0; + $1910 = (_i64Add(($1908|0),($1909|0),($1890|0),($1891|0))|0); + $1911 = tempRet0; + $1912 = $570; + $1913 = $1912; + $1914 = HEAP32[$1913>>2]|0; + $1915 = (($1912) + 4)|0; + $1916 = $1915; + $1917 = HEAP32[$1916>>2]|0; + $1918 = (_bitshift64Ashr(0,($1914|0),32)|0); + $1919 = tempRet0; + $1920 = $1114; + $1921 = $1920; + $1922 = HEAP32[$1921>>2]|0; + $1923 = (($1920) + 4)|0; + $1924 = $1923; + $1925 = HEAP32[$1924>>2]|0; + $1926 = (_bitshift64Ashr(0,($1922|0),32)|0); + $1927 = tempRet0; + $1928 = (___muldi3(($1926|0),($1927|0),($1918|0),($1919|0))|0); + $1929 = tempRet0; + $1930 = (_i64Add(($1910|0),($1911|0),($1928|0),($1929|0))|0); + $1931 = tempRet0; + $1932 = $1127; + $1933 = $1932; + $1934 = HEAP32[$1933>>2]|0; + $1935 = (($1932) + 4)|0; + $1936 = $1935; + $1937 = HEAP32[$1936>>2]|0; + $1938 = (_bitshift64Ashr(0,($1934|0),32)|0); + $1939 = tempRet0; + $1940 = $557; + $1941 = $1940; + $1942 = HEAP32[$1941>>2]|0; + $1943 = (($1940) + 4)|0; + $1944 = $1943; + $1945 = HEAP32[$1944>>2]|0; + $1946 = (_bitshift64Ashr(0,($1942|0),32)|0); + $1947 = tempRet0; + $1948 = (___muldi3(($1946|0),($1947|0),($1938|0),($1939|0))|0); + $1949 = tempRet0; + $1950 = (_i64Add(($1930|0),($1931|0),($1948|0),($1949|0))|0); + $1951 = tempRet0; + $1952 = (($output) + 120|0); + $1953 = $1952; + $1954 = $1953; + HEAP32[$1954>>2] = $1950; + $1955 = (($1953) + 4)|0; + $1956 = $1955; + HEAP32[$1956>>2] = $1951; + $1957 = $922; + $1958 = $1957; + $1959 = HEAP32[$1958>>2]|0; + $1960 = (($1957) + 4)|0; + $1961 = $1960; + $1962 = HEAP32[$1961>>2]|0; + $1963 = (_bitshift64Ashr(0,($1959|0),32)|0); + $1964 = tempRet0; + $1965 = $909; + $1966 = $1965; + $1967 = HEAP32[$1966>>2]|0; + $1968 = (($1965) + 4)|0; + $1969 = $1968; + $1970 = HEAP32[$1969>>2]|0; + $1971 = (_bitshift64Ashr(0,($1967|0),32)|0); + $1972 = tempRet0; + $1973 = (___muldi3(($1971|0),($1972|0),($1963|0),($1964|0))|0); + $1974 = tempRet0; + $1975 = $735; + $1976 = $1975; + $1977 = HEAP32[$1976>>2]|0; + $1978 = (($1975) + 4)|0; + $1979 = $1978; + $1980 = HEAP32[$1979>>2]|0; + $1981 = (_bitshift64Ashr(0,($1977|0),32)|0); + $1982 = tempRet0; + $1983 = $1114; + $1984 = $1983; + $1985 = HEAP32[$1984>>2]|0; + $1986 = (($1983) + 4)|0; + $1987 = $1986; + $1988 = HEAP32[$1987>>2]|0; + $1989 = (_bitshift64Ashr(0,($1985|0),32)|0); + $1990 = tempRet0; + $1991 = (___muldi3(($1989|0),($1990|0),($1981|0),($1982|0))|0); + $1992 = tempRet0; + $1993 = $1127; + $1994 = $1993; + $1995 = HEAP32[$1994>>2]|0; + $1996 = (($1993) + 4)|0; + $1997 = $1996; + $1998 = HEAP32[$1997>>2]|0; + $1999 = (_bitshift64Ashr(0,($1995|0),32)|0); + $2000 = tempRet0; + $2001 = $722; + $2002 = $2001; + $2003 = HEAP32[$2002>>2]|0; + $2004 = (($2001) + 4)|0; + $2005 = $2004; + $2006 = HEAP32[$2005>>2]|0; + $2007 = (_bitshift64Ashr(0,($2003|0),32)|0); + $2008 = tempRet0; + $2009 = (___muldi3(($2007|0),($2008|0),($1999|0),($2000|0))|0); + $2010 = tempRet0; + $2011 = (_i64Add(($2009|0),($2010|0),($1991|0),($1992|0))|0); + $2012 = tempRet0; + $2013 = (_bitshift64Shl(($2011|0),($2012|0),1)|0); + $2014 = tempRet0; + $2015 = (_i64Add(($2013|0),($2014|0),($1973|0),($1974|0))|0); + $2016 = tempRet0; + $2017 = (($output) + 128|0); + $2018 = $2017; + $2019 = $2018; + HEAP32[$2019>>2] = $2015; + $2020 = (($2018) + 4)|0; + $2021 = $2020; + HEAP32[$2021>>2] = $2016; + $2022 = $922; + $2023 = $2022; + $2024 = HEAP32[$2023>>2]|0; + $2025 = (($2022) + 4)|0; + $2026 = $2025; + $2027 = HEAP32[$2026>>2]|0; + $2028 = (_bitshift64Ashr(0,($2024|0),32)|0); + $2029 = tempRet0; + $2030 = $1114; + $2031 = $2030; + $2032 = HEAP32[$2031>>2]|0; + $2033 = (($2030) + 4)|0; + $2034 = $2033; + $2035 = HEAP32[$2034>>2]|0; + $2036 = (_bitshift64Ashr(0,($2032|0),32)|0); + $2037 = tempRet0; + $2038 = (___muldi3(($2036|0),($2037|0),($2028|0),($2029|0))|0); + $2039 = tempRet0; + $2040 = $1127; + $2041 = $2040; + $2042 = HEAP32[$2041>>2]|0; + $2043 = (($2040) + 4)|0; + $2044 = $2043; + $2045 = HEAP32[$2044>>2]|0; + $2046 = (_bitshift64Ashr(0,($2042|0),32)|0); + $2047 = tempRet0; + $2048 = $909; + $2049 = $2048; + $2050 = HEAP32[$2049>>2]|0; + $2051 = (($2048) + 4)|0; + $2052 = $2051; + $2053 = HEAP32[$2052>>2]|0; + $2054 = (_bitshift64Ashr(0,($2050|0),32)|0); + $2055 = tempRet0; + $2056 = (___muldi3(($2054|0),($2055|0),($2046|0),($2047|0))|0); + $2057 = tempRet0; + $2058 = (_i64Add(($2056|0),($2057|0),($2038|0),($2039|0))|0); + $2059 = tempRet0; + $2060 = (($output) + 136|0); + $2061 = $2060; + $2062 = $2061; + HEAP32[$2062>>2] = $2058; + $2063 = (($2061) + 4)|0; + $2064 = $2063; + HEAP32[$2064>>2] = $2059; + $2065 = $1127; + $2066 = $2065; + $2067 = HEAP32[$2066>>2]|0; + $2068 = (($2065) + 4)|0; + $2069 = $2068; + $2070 = HEAP32[$2069>>2]|0; + $2071 = (_bitshift64Ashr(0,($2067|0),31)|0); + $2072 = tempRet0; + $2073 = $1114; + $2074 = $2073; + $2075 = HEAP32[$2074>>2]|0; + $2076 = (($2073) + 4)|0; + $2077 = $2076; + $2078 = HEAP32[$2077>>2]|0; + $2079 = (_bitshift64Ashr(0,($2075|0),32)|0); + $2080 = tempRet0; + $2081 = (___muldi3(($2079|0),($2080|0),($2071|0),($2072|0))|0); + $2082 = tempRet0; + $2083 = (($output) + 144|0); + $2084 = $2083; + $2085 = $2084; + HEAP32[$2085>>2] = $2081; + $2086 = (($2084) + 4)|0; + $2087 = $2086; + HEAP32[$2087>>2] = $2082; + STACKTOP = sp;return; +} +function _freduce_degree($output) { + $output = $output|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0; + var $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0; + var $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0; + var $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + $0 = (($output) + 144|0); + $1 = $0; + $2 = $1; + $3 = HEAP32[$2>>2]|0; + $4 = (($1) + 4)|0; + $5 = $4; + $6 = HEAP32[$5>>2]|0; + $7 = (_bitshift64Shl(($3|0),($6|0),4)|0); + $8 = tempRet0; + $9 = (($output) + 64|0); + $10 = $9; + $11 = $10; + $12 = HEAP32[$11>>2]|0; + $13 = (($10) + 4)|0; + $14 = $13; + $15 = HEAP32[$14>>2]|0; + $16 = (_i64Add(($12|0),($15|0),($7|0),($8|0))|0); + $17 = tempRet0; + $18 = (_bitshift64Shl(($3|0),($6|0),1)|0); + $19 = tempRet0; + $20 = (_i64Add(($18|0),($19|0),($16|0),($17|0))|0); + $21 = tempRet0; + $22 = $0; + $23 = $22; + $24 = HEAP32[$23>>2]|0; + $25 = (($22) + 4)|0; + $26 = $25; + $27 = HEAP32[$26>>2]|0; + $28 = (_i64Add(($20|0),($21|0),($24|0),($27|0))|0); + $29 = tempRet0; + $30 = $9; + $31 = $30; + HEAP32[$31>>2] = $28; + $32 = (($30) + 4)|0; + $33 = $32; + HEAP32[$33>>2] = $29; + $34 = (($output) + 136|0); + $35 = $34; + $36 = $35; + $37 = HEAP32[$36>>2]|0; + $38 = (($35) + 4)|0; + $39 = $38; + $40 = HEAP32[$39>>2]|0; + $41 = (_bitshift64Shl(($37|0),($40|0),4)|0); + $42 = tempRet0; + $43 = (($output) + 56|0); + $44 = $43; + $45 = $44; + $46 = HEAP32[$45>>2]|0; + $47 = (($44) + 4)|0; + $48 = $47; + $49 = HEAP32[$48>>2]|0; + $50 = (_i64Add(($46|0),($49|0),($41|0),($42|0))|0); + $51 = tempRet0; + $52 = (_bitshift64Shl(($37|0),($40|0),1)|0); + $53 = tempRet0; + $54 = (_i64Add(($52|0),($53|0),($50|0),($51|0))|0); + $55 = tempRet0; + $56 = $34; + $57 = $56; + $58 = HEAP32[$57>>2]|0; + $59 = (($56) + 4)|0; + $60 = $59; + $61 = HEAP32[$60>>2]|0; + $62 = (_i64Add(($54|0),($55|0),($58|0),($61|0))|0); + $63 = tempRet0; + $64 = $43; + $65 = $64; + HEAP32[$65>>2] = $62; + $66 = (($64) + 4)|0; + $67 = $66; + HEAP32[$67>>2] = $63; + $68 = (($output) + 128|0); + $69 = $68; + $70 = $69; + $71 = HEAP32[$70>>2]|0; + $72 = (($69) + 4)|0; + $73 = $72; + $74 = HEAP32[$73>>2]|0; + $75 = (_bitshift64Shl(($71|0),($74|0),4)|0); + $76 = tempRet0; + $77 = (($output) + 48|0); + $78 = $77; + $79 = $78; + $80 = HEAP32[$79>>2]|0; + $81 = (($78) + 4)|0; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (_i64Add(($80|0),($83|0),($75|0),($76|0))|0); + $85 = tempRet0; + $86 = (_bitshift64Shl(($71|0),($74|0),1)|0); + $87 = tempRet0; + $88 = (_i64Add(($86|0),($87|0),($84|0),($85|0))|0); + $89 = tempRet0; + $90 = $68; + $91 = $90; + $92 = HEAP32[$91>>2]|0; + $93 = (($90) + 4)|0; + $94 = $93; + $95 = HEAP32[$94>>2]|0; + $96 = (_i64Add(($88|0),($89|0),($92|0),($95|0))|0); + $97 = tempRet0; + $98 = $77; + $99 = $98; + HEAP32[$99>>2] = $96; + $100 = (($98) + 4)|0; + $101 = $100; + HEAP32[$101>>2] = $97; + $102 = (($output) + 120|0); + $103 = $102; + $104 = $103; + $105 = HEAP32[$104>>2]|0; + $106 = (($103) + 4)|0; + $107 = $106; + $108 = HEAP32[$107>>2]|0; + $109 = (_bitshift64Shl(($105|0),($108|0),4)|0); + $110 = tempRet0; + $111 = (($output) + 40|0); + $112 = $111; + $113 = $112; + $114 = HEAP32[$113>>2]|0; + $115 = (($112) + 4)|0; + $116 = $115; + $117 = HEAP32[$116>>2]|0; + $118 = (_i64Add(($114|0),($117|0),($109|0),($110|0))|0); + $119 = tempRet0; + $120 = (_bitshift64Shl(($105|0),($108|0),1)|0); + $121 = tempRet0; + $122 = (_i64Add(($120|0),($121|0),($118|0),($119|0))|0); + $123 = tempRet0; + $124 = $102; + $125 = $124; + $126 = HEAP32[$125>>2]|0; + $127 = (($124) + 4)|0; + $128 = $127; + $129 = HEAP32[$128>>2]|0; + $130 = (_i64Add(($122|0),($123|0),($126|0),($129|0))|0); + $131 = tempRet0; + $132 = $111; + $133 = $132; + HEAP32[$133>>2] = $130; + $134 = (($132) + 4)|0; + $135 = $134; + HEAP32[$135>>2] = $131; + $136 = (($output) + 112|0); + $137 = $136; + $138 = $137; + $139 = HEAP32[$138>>2]|0; + $140 = (($137) + 4)|0; + $141 = $140; + $142 = HEAP32[$141>>2]|0; + $143 = (_bitshift64Shl(($139|0),($142|0),4)|0); + $144 = tempRet0; + $145 = (($output) + 32|0); + $146 = $145; + $147 = $146; + $148 = HEAP32[$147>>2]|0; + $149 = (($146) + 4)|0; + $150 = $149; + $151 = HEAP32[$150>>2]|0; + $152 = (_i64Add(($148|0),($151|0),($143|0),($144|0))|0); + $153 = tempRet0; + $154 = (_bitshift64Shl(($139|0),($142|0),1)|0); + $155 = tempRet0; + $156 = (_i64Add(($154|0),($155|0),($152|0),($153|0))|0); + $157 = tempRet0; + $158 = $136; + $159 = $158; + $160 = HEAP32[$159>>2]|0; + $161 = (($158) + 4)|0; + $162 = $161; + $163 = HEAP32[$162>>2]|0; + $164 = (_i64Add(($156|0),($157|0),($160|0),($163|0))|0); + $165 = tempRet0; + $166 = $145; + $167 = $166; + HEAP32[$167>>2] = $164; + $168 = (($166) + 4)|0; + $169 = $168; + HEAP32[$169>>2] = $165; + $170 = (($output) + 104|0); + $171 = $170; + $172 = $171; + $173 = HEAP32[$172>>2]|0; + $174 = (($171) + 4)|0; + $175 = $174; + $176 = HEAP32[$175>>2]|0; + $177 = (_bitshift64Shl(($173|0),($176|0),4)|0); + $178 = tempRet0; + $179 = (($output) + 24|0); + $180 = $179; + $181 = $180; + $182 = HEAP32[$181>>2]|0; + $183 = (($180) + 4)|0; + $184 = $183; + $185 = HEAP32[$184>>2]|0; + $186 = (_i64Add(($182|0),($185|0),($177|0),($178|0))|0); + $187 = tempRet0; + $188 = (_bitshift64Shl(($173|0),($176|0),1)|0); + $189 = tempRet0; + $190 = (_i64Add(($188|0),($189|0),($186|0),($187|0))|0); + $191 = tempRet0; + $192 = $170; + $193 = $192; + $194 = HEAP32[$193>>2]|0; + $195 = (($192) + 4)|0; + $196 = $195; + $197 = HEAP32[$196>>2]|0; + $198 = (_i64Add(($190|0),($191|0),($194|0),($197|0))|0); + $199 = tempRet0; + $200 = $179; + $201 = $200; + HEAP32[$201>>2] = $198; + $202 = (($200) + 4)|0; + $203 = $202; + HEAP32[$203>>2] = $199; + $204 = (($output) + 96|0); + $205 = $204; + $206 = $205; + $207 = HEAP32[$206>>2]|0; + $208 = (($205) + 4)|0; + $209 = $208; + $210 = HEAP32[$209>>2]|0; + $211 = (_bitshift64Shl(($207|0),($210|0),4)|0); + $212 = tempRet0; + $213 = (($output) + 16|0); + $214 = $213; + $215 = $214; + $216 = HEAP32[$215>>2]|0; + $217 = (($214) + 4)|0; + $218 = $217; + $219 = HEAP32[$218>>2]|0; + $220 = (_i64Add(($216|0),($219|0),($211|0),($212|0))|0); + $221 = tempRet0; + $222 = (_bitshift64Shl(($207|0),($210|0),1)|0); + $223 = tempRet0; + $224 = (_i64Add(($222|0),($223|0),($220|0),($221|0))|0); + $225 = tempRet0; + $226 = $204; + $227 = $226; + $228 = HEAP32[$227>>2]|0; + $229 = (($226) + 4)|0; + $230 = $229; + $231 = HEAP32[$230>>2]|0; + $232 = (_i64Add(($224|0),($225|0),($228|0),($231|0))|0); + $233 = tempRet0; + $234 = $213; + $235 = $234; + HEAP32[$235>>2] = $232; + $236 = (($234) + 4)|0; + $237 = $236; + HEAP32[$237>>2] = $233; + $238 = (($output) + 88|0); + $239 = $238; + $240 = $239; + $241 = HEAP32[$240>>2]|0; + $242 = (($239) + 4)|0; + $243 = $242; + $244 = HEAP32[$243>>2]|0; + $245 = (_bitshift64Shl(($241|0),($244|0),4)|0); + $246 = tempRet0; + $247 = (($output) + 8|0); + $248 = $247; + $249 = $248; + $250 = HEAP32[$249>>2]|0; + $251 = (($248) + 4)|0; + $252 = $251; + $253 = HEAP32[$252>>2]|0; + $254 = (_i64Add(($250|0),($253|0),($245|0),($246|0))|0); + $255 = tempRet0; + $256 = (_bitshift64Shl(($241|0),($244|0),1)|0); + $257 = tempRet0; + $258 = (_i64Add(($256|0),($257|0),($254|0),($255|0))|0); + $259 = tempRet0; + $260 = $238; + $261 = $260; + $262 = HEAP32[$261>>2]|0; + $263 = (($260) + 4)|0; + $264 = $263; + $265 = HEAP32[$264>>2]|0; + $266 = (_i64Add(($258|0),($259|0),($262|0),($265|0))|0); + $267 = tempRet0; + $268 = $247; + $269 = $268; + HEAP32[$269>>2] = $266; + $270 = (($268) + 4)|0; + $271 = $270; + HEAP32[$271>>2] = $267; + $272 = (($output) + 80|0); + $273 = $272; + $274 = $273; + $275 = HEAP32[$274>>2]|0; + $276 = (($273) + 4)|0; + $277 = $276; + $278 = HEAP32[$277>>2]|0; + $279 = (_bitshift64Shl(($275|0),($278|0),4)|0); + $280 = tempRet0; + $281 = $output; + $282 = $281; + $283 = HEAP32[$282>>2]|0; + $284 = (($281) + 4)|0; + $285 = $284; + $286 = HEAP32[$285>>2]|0; + $287 = (_i64Add(($283|0),($286|0),($279|0),($280|0))|0); + $288 = tempRet0; + $289 = (_bitshift64Shl(($275|0),($278|0),1)|0); + $290 = tempRet0; + $291 = (_i64Add(($289|0),($290|0),($287|0),($288|0))|0); + $292 = tempRet0; + $293 = (_i64Add(($291|0),($292|0),($275|0),($278|0))|0); + $294 = tempRet0; + $295 = $output; + $296 = $295; + HEAP32[$296>>2] = $293; + $297 = (($295) + 4)|0; + $298 = $297; + HEAP32[$298>>2] = $294; + STACKTOP = sp;return; +} +function _freduce_coefficients($output) { + $output = $output|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0; + var $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0; + var $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0; + var $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0; + var $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $i$01 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($output) + 80|0); + $1 = $0; + $2 = $1; + HEAP32[$2>>2] = 0; + $3 = (($1) + 4)|0; + $4 = $3; + HEAP32[$4>>2] = 0; + $i$01 = 0; + while(1) { + $5 = (($output) + ($i$01<<3)|0); + $6 = $5; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + $9 = (($6) + 4)|0; + $10 = $9; + $11 = HEAP32[$10>>2]|0; + $12 = (_div_by_2_26($8,$11)|0); + $13 = tempRet0; + $14 = (_bitshift64Shl(($12|0),($13|0),26)|0); + $15 = tempRet0; + $16 = (_i64Subtract(($8|0),($11|0),($14|0),($15|0))|0); + $17 = tempRet0; + $18 = $5; + $19 = $18; + HEAP32[$19>>2] = $16; + $20 = (($18) + 4)|0; + $21 = $20; + HEAP32[$21>>2] = $17; + $22 = $i$01 | 1; + $23 = (($output) + ($22<<3)|0); + $24 = $23; + $25 = $24; + $26 = HEAP32[$25>>2]|0; + $27 = (($24) + 4)|0; + $28 = $27; + $29 = HEAP32[$28>>2]|0; + $30 = (_i64Add(($26|0),($29|0),($12|0),($13|0))|0); + $31 = tempRet0; + $32 = (_div_by_2_25($30,$31)|0); + $33 = tempRet0; + $34 = (_bitshift64Shl(($32|0),($33|0),25)|0); + $35 = tempRet0; + $36 = (_i64Subtract(($30|0),($31|0),($34|0),($35|0))|0); + $37 = tempRet0; + $38 = $23; + $39 = $38; + HEAP32[$39>>2] = $36; + $40 = (($38) + 4)|0; + $41 = $40; + HEAP32[$41>>2] = $37; + $42 = (($i$01) + 2)|0; + $43 = (($output) + ($42<<3)|0); + $44 = $43; + $45 = $44; + $46 = HEAP32[$45>>2]|0; + $47 = (($44) + 4)|0; + $48 = $47; + $49 = HEAP32[$48>>2]|0; + $50 = (_i64Add(($46|0),($49|0),($32|0),($33|0))|0); + $51 = tempRet0; + $52 = $43; + $53 = $52; + HEAP32[$53>>2] = $50; + $54 = (($52) + 4)|0; + $55 = $54; + HEAP32[$55>>2] = $51; + $56 = ($42>>>0)<(10); + if ($56) { + $i$01 = $42; + } else { + break; + } + } + $57 = $0; + $58 = $57; + $59 = HEAP32[$58>>2]|0; + $60 = (($57) + 4)|0; + $61 = $60; + $62 = HEAP32[$61>>2]|0; + $63 = (_bitshift64Shl(($59|0),($62|0),4)|0); + $64 = tempRet0; + $65 = $output; + $66 = $65; + $67 = HEAP32[$66>>2]|0; + $68 = (($65) + 4)|0; + $69 = $68; + $70 = HEAP32[$69>>2]|0; + $71 = (_i64Add(($67|0),($70|0),($63|0),($64|0))|0); + $72 = tempRet0; + $73 = (_bitshift64Shl(($59|0),($62|0),1)|0); + $74 = tempRet0; + $75 = (_i64Add(($73|0),($74|0),($71|0),($72|0))|0); + $76 = tempRet0; + $77 = (_i64Add(($75|0),($76|0),($59|0),($62|0))|0); + $78 = tempRet0; + $79 = $output; + $80 = $79; + HEAP32[$80>>2] = $77; + $81 = (($79) + 4)|0; + $82 = $81; + HEAP32[$82>>2] = $78; + $83 = $0; + $84 = $83; + HEAP32[$84>>2] = 0; + $85 = (($83) + 4)|0; + $86 = $85; + HEAP32[$86>>2] = 0; + $87 = $output; + $88 = $87; + $89 = HEAP32[$88>>2]|0; + $90 = (($87) + 4)|0; + $91 = $90; + $92 = HEAP32[$91>>2]|0; + $93 = (_div_by_2_26($89,$92)|0); + $94 = tempRet0; + $95 = (_bitshift64Shl(($93|0),($94|0),26)|0); + $96 = tempRet0; + $97 = (_i64Subtract(($89|0),($92|0),($95|0),($96|0))|0); + $98 = tempRet0; + $99 = $output; + $100 = $99; + HEAP32[$100>>2] = $97; + $101 = (($99) + 4)|0; + $102 = $101; + HEAP32[$102>>2] = $98; + $103 = (($output) + 8|0); + $104 = $103; + $105 = $104; + $106 = HEAP32[$105>>2]|0; + $107 = (($104) + 4)|0; + $108 = $107; + $109 = HEAP32[$108>>2]|0; + $110 = (_i64Add(($106|0),($109|0),($93|0),($94|0))|0); + $111 = tempRet0; + $112 = $103; + $113 = $112; + HEAP32[$113>>2] = $110; + $114 = (($112) + 4)|0; + $115 = $114; + HEAP32[$115>>2] = $111; + STACKTOP = sp;return; +} +function _s32_eq($a,$b) { + $a = $a|0; + $b = $b|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $a ^ -1; + $1 = $0 ^ $b; + $2 = $1 << 16; + $3 = $2 & $1; + $4 = $3 << 8; + $5 = $4 & $3; + $6 = $5 << 4; + $7 = $6 & $5; + $8 = $7 << 2; + $9 = $8 & $7; + $10 = $9 << 1; + $11 = $10 & $9; + $12 = $11 >> 31; + STACKTOP = sp;return ($12|0); +} +function _s32_gte($a) { + $a = $a|0; + var $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($a) + -67108845)|0; + $1 = $0 >> 31; + $2 = $1 ^ -1; + STACKTOP = sp;return ($2|0); +} +function _fsum($output,$in) { + $output = $output|0; + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; + var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $output; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = $in; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + $9 = (($6) + 4)|0; + $10 = $9; + $11 = HEAP32[$10>>2]|0; + $12 = (_i64Add(($8|0),($11|0),($2|0),($5|0))|0); + $13 = tempRet0; + $14 = $output; + $15 = $14; + HEAP32[$15>>2] = $12; + $16 = (($14) + 4)|0; + $17 = $16; + HEAP32[$17>>2] = $13; + $18 = (($output) + 8|0); + $19 = $18; + $20 = $19; + $21 = HEAP32[$20>>2]|0; + $22 = (($19) + 4)|0; + $23 = $22; + $24 = HEAP32[$23>>2]|0; + $25 = (($in) + 8|0); + $26 = $25; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (($26) + 4)|0; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = (_i64Add(($28|0),($31|0),($21|0),($24|0))|0); + $33 = tempRet0; + $34 = $18; + $35 = $34; + HEAP32[$35>>2] = $32; + $36 = (($34) + 4)|0; + $37 = $36; + HEAP32[$37>>2] = $33; + $38 = (($output) + 16|0); + $39 = $38; + $40 = $39; + $41 = HEAP32[$40>>2]|0; + $42 = (($39) + 4)|0; + $43 = $42; + $44 = HEAP32[$43>>2]|0; + $45 = (($in) + 16|0); + $46 = $45; + $47 = $46; + $48 = HEAP32[$47>>2]|0; + $49 = (($46) + 4)|0; + $50 = $49; + $51 = HEAP32[$50>>2]|0; + $52 = (_i64Add(($48|0),($51|0),($41|0),($44|0))|0); + $53 = tempRet0; + $54 = $38; + $55 = $54; + HEAP32[$55>>2] = $52; + $56 = (($54) + 4)|0; + $57 = $56; + HEAP32[$57>>2] = $53; + $58 = (($output) + 24|0); + $59 = $58; + $60 = $59; + $61 = HEAP32[$60>>2]|0; + $62 = (($59) + 4)|0; + $63 = $62; + $64 = HEAP32[$63>>2]|0; + $65 = (($in) + 24|0); + $66 = $65; + $67 = $66; + $68 = HEAP32[$67>>2]|0; + $69 = (($66) + 4)|0; + $70 = $69; + $71 = HEAP32[$70>>2]|0; + $72 = (_i64Add(($68|0),($71|0),($61|0),($64|0))|0); + $73 = tempRet0; + $74 = $58; + $75 = $74; + HEAP32[$75>>2] = $72; + $76 = (($74) + 4)|0; + $77 = $76; + HEAP32[$77>>2] = $73; + $78 = (($output) + 32|0); + $79 = $78; + $80 = $79; + $81 = HEAP32[$80>>2]|0; + $82 = (($79) + 4)|0; + $83 = $82; + $84 = HEAP32[$83>>2]|0; + $85 = (($in) + 32|0); + $86 = $85; + $87 = $86; + $88 = HEAP32[$87>>2]|0; + $89 = (($86) + 4)|0; + $90 = $89; + $91 = HEAP32[$90>>2]|0; + $92 = (_i64Add(($88|0),($91|0),($81|0),($84|0))|0); + $93 = tempRet0; + $94 = $78; + $95 = $94; + HEAP32[$95>>2] = $92; + $96 = (($94) + 4)|0; + $97 = $96; + HEAP32[$97>>2] = $93; + $98 = (($output) + 40|0); + $99 = $98; + $100 = $99; + $101 = HEAP32[$100>>2]|0; + $102 = (($99) + 4)|0; + $103 = $102; + $104 = HEAP32[$103>>2]|0; + $105 = (($in) + 40|0); + $106 = $105; + $107 = $106; + $108 = HEAP32[$107>>2]|0; + $109 = (($106) + 4)|0; + $110 = $109; + $111 = HEAP32[$110>>2]|0; + $112 = (_i64Add(($108|0),($111|0),($101|0),($104|0))|0); + $113 = tempRet0; + $114 = $98; + $115 = $114; + HEAP32[$115>>2] = $112; + $116 = (($114) + 4)|0; + $117 = $116; + HEAP32[$117>>2] = $113; + $118 = (($output) + 48|0); + $119 = $118; + $120 = $119; + $121 = HEAP32[$120>>2]|0; + $122 = (($119) + 4)|0; + $123 = $122; + $124 = HEAP32[$123>>2]|0; + $125 = (($in) + 48|0); + $126 = $125; + $127 = $126; + $128 = HEAP32[$127>>2]|0; + $129 = (($126) + 4)|0; + $130 = $129; + $131 = HEAP32[$130>>2]|0; + $132 = (_i64Add(($128|0),($131|0),($121|0),($124|0))|0); + $133 = tempRet0; + $134 = $118; + $135 = $134; + HEAP32[$135>>2] = $132; + $136 = (($134) + 4)|0; + $137 = $136; + HEAP32[$137>>2] = $133; + $138 = (($output) + 56|0); + $139 = $138; + $140 = $139; + $141 = HEAP32[$140>>2]|0; + $142 = (($139) + 4)|0; + $143 = $142; + $144 = HEAP32[$143>>2]|0; + $145 = (($in) + 56|0); + $146 = $145; + $147 = $146; + $148 = HEAP32[$147>>2]|0; + $149 = (($146) + 4)|0; + $150 = $149; + $151 = HEAP32[$150>>2]|0; + $152 = (_i64Add(($148|0),($151|0),($141|0),($144|0))|0); + $153 = tempRet0; + $154 = $138; + $155 = $154; + HEAP32[$155>>2] = $152; + $156 = (($154) + 4)|0; + $157 = $156; + HEAP32[$157>>2] = $153; + $158 = (($output) + 64|0); + $159 = $158; + $160 = $159; + $161 = HEAP32[$160>>2]|0; + $162 = (($159) + 4)|0; + $163 = $162; + $164 = HEAP32[$163>>2]|0; + $165 = (($in) + 64|0); + $166 = $165; + $167 = $166; + $168 = HEAP32[$167>>2]|0; + $169 = (($166) + 4)|0; + $170 = $169; + $171 = HEAP32[$170>>2]|0; + $172 = (_i64Add(($168|0),($171|0),($161|0),($164|0))|0); + $173 = tempRet0; + $174 = $158; + $175 = $174; + HEAP32[$175>>2] = $172; + $176 = (($174) + 4)|0; + $177 = $176; + HEAP32[$177>>2] = $173; + $178 = (($output) + 72|0); + $179 = $178; + $180 = $179; + $181 = HEAP32[$180>>2]|0; + $182 = (($179) + 4)|0; + $183 = $182; + $184 = HEAP32[$183>>2]|0; + $185 = (($in) + 72|0); + $186 = $185; + $187 = $186; + $188 = HEAP32[$187>>2]|0; + $189 = (($186) + 4)|0; + $190 = $189; + $191 = HEAP32[$190>>2]|0; + $192 = (_i64Add(($188|0),($191|0),($181|0),($184|0))|0); + $193 = tempRet0; + $194 = $178; + $195 = $194; + HEAP32[$195>>2] = $192; + $196 = (($194) + 4)|0; + $197 = $196; + HEAP32[$197>>2] = $193; + STACKTOP = sp;return; +} +function _fdifference($output,$in) { + $output = $output|0; + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; + var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $in; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = $output; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + $9 = (($6) + 4)|0; + $10 = $9; + $11 = HEAP32[$10>>2]|0; + $12 = (_i64Subtract(($2|0),($5|0),($8|0),($11|0))|0); + $13 = tempRet0; + $14 = $output; + $15 = $14; + HEAP32[$15>>2] = $12; + $16 = (($14) + 4)|0; + $17 = $16; + HEAP32[$17>>2] = $13; + $18 = (($in) + 8|0); + $19 = $18; + $20 = $19; + $21 = HEAP32[$20>>2]|0; + $22 = (($19) + 4)|0; + $23 = $22; + $24 = HEAP32[$23>>2]|0; + $25 = (($output) + 8|0); + $26 = $25; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (($26) + 4)|0; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = (_i64Subtract(($21|0),($24|0),($28|0),($31|0))|0); + $33 = tempRet0; + $34 = $25; + $35 = $34; + HEAP32[$35>>2] = $32; + $36 = (($34) + 4)|0; + $37 = $36; + HEAP32[$37>>2] = $33; + $38 = (($in) + 16|0); + $39 = $38; + $40 = $39; + $41 = HEAP32[$40>>2]|0; + $42 = (($39) + 4)|0; + $43 = $42; + $44 = HEAP32[$43>>2]|0; + $45 = (($output) + 16|0); + $46 = $45; + $47 = $46; + $48 = HEAP32[$47>>2]|0; + $49 = (($46) + 4)|0; + $50 = $49; + $51 = HEAP32[$50>>2]|0; + $52 = (_i64Subtract(($41|0),($44|0),($48|0),($51|0))|0); + $53 = tempRet0; + $54 = $45; + $55 = $54; + HEAP32[$55>>2] = $52; + $56 = (($54) + 4)|0; + $57 = $56; + HEAP32[$57>>2] = $53; + $58 = (($in) + 24|0); + $59 = $58; + $60 = $59; + $61 = HEAP32[$60>>2]|0; + $62 = (($59) + 4)|0; + $63 = $62; + $64 = HEAP32[$63>>2]|0; + $65 = (($output) + 24|0); + $66 = $65; + $67 = $66; + $68 = HEAP32[$67>>2]|0; + $69 = (($66) + 4)|0; + $70 = $69; + $71 = HEAP32[$70>>2]|0; + $72 = (_i64Subtract(($61|0),($64|0),($68|0),($71|0))|0); + $73 = tempRet0; + $74 = $65; + $75 = $74; + HEAP32[$75>>2] = $72; + $76 = (($74) + 4)|0; + $77 = $76; + HEAP32[$77>>2] = $73; + $78 = (($in) + 32|0); + $79 = $78; + $80 = $79; + $81 = HEAP32[$80>>2]|0; + $82 = (($79) + 4)|0; + $83 = $82; + $84 = HEAP32[$83>>2]|0; + $85 = (($output) + 32|0); + $86 = $85; + $87 = $86; + $88 = HEAP32[$87>>2]|0; + $89 = (($86) + 4)|0; + $90 = $89; + $91 = HEAP32[$90>>2]|0; + $92 = (_i64Subtract(($81|0),($84|0),($88|0),($91|0))|0); + $93 = tempRet0; + $94 = $85; + $95 = $94; + HEAP32[$95>>2] = $92; + $96 = (($94) + 4)|0; + $97 = $96; + HEAP32[$97>>2] = $93; + $98 = (($in) + 40|0); + $99 = $98; + $100 = $99; + $101 = HEAP32[$100>>2]|0; + $102 = (($99) + 4)|0; + $103 = $102; + $104 = HEAP32[$103>>2]|0; + $105 = (($output) + 40|0); + $106 = $105; + $107 = $106; + $108 = HEAP32[$107>>2]|0; + $109 = (($106) + 4)|0; + $110 = $109; + $111 = HEAP32[$110>>2]|0; + $112 = (_i64Subtract(($101|0),($104|0),($108|0),($111|0))|0); + $113 = tempRet0; + $114 = $105; + $115 = $114; + HEAP32[$115>>2] = $112; + $116 = (($114) + 4)|0; + $117 = $116; + HEAP32[$117>>2] = $113; + $118 = (($in) + 48|0); + $119 = $118; + $120 = $119; + $121 = HEAP32[$120>>2]|0; + $122 = (($119) + 4)|0; + $123 = $122; + $124 = HEAP32[$123>>2]|0; + $125 = (($output) + 48|0); + $126 = $125; + $127 = $126; + $128 = HEAP32[$127>>2]|0; + $129 = (($126) + 4)|0; + $130 = $129; + $131 = HEAP32[$130>>2]|0; + $132 = (_i64Subtract(($121|0),($124|0),($128|0),($131|0))|0); + $133 = tempRet0; + $134 = $125; + $135 = $134; + HEAP32[$135>>2] = $132; + $136 = (($134) + 4)|0; + $137 = $136; + HEAP32[$137>>2] = $133; + $138 = (($in) + 56|0); + $139 = $138; + $140 = $139; + $141 = HEAP32[$140>>2]|0; + $142 = (($139) + 4)|0; + $143 = $142; + $144 = HEAP32[$143>>2]|0; + $145 = (($output) + 56|0); + $146 = $145; + $147 = $146; + $148 = HEAP32[$147>>2]|0; + $149 = (($146) + 4)|0; + $150 = $149; + $151 = HEAP32[$150>>2]|0; + $152 = (_i64Subtract(($141|0),($144|0),($148|0),($151|0))|0); + $153 = tempRet0; + $154 = $145; + $155 = $154; + HEAP32[$155>>2] = $152; + $156 = (($154) + 4)|0; + $157 = $156; + HEAP32[$157>>2] = $153; + $158 = (($in) + 64|0); + $159 = $158; + $160 = $159; + $161 = HEAP32[$160>>2]|0; + $162 = (($159) + 4)|0; + $163 = $162; + $164 = HEAP32[$163>>2]|0; + $165 = (($output) + 64|0); + $166 = $165; + $167 = $166; + $168 = HEAP32[$167>>2]|0; + $169 = (($166) + 4)|0; + $170 = $169; + $171 = HEAP32[$170>>2]|0; + $172 = (_i64Subtract(($161|0),($164|0),($168|0),($171|0))|0); + $173 = tempRet0; + $174 = $165; + $175 = $174; + HEAP32[$175>>2] = $172; + $176 = (($174) + 4)|0; + $177 = $176; + HEAP32[$177>>2] = $173; + $178 = (($in) + 72|0); + $179 = $178; + $180 = $179; + $181 = HEAP32[$180>>2]|0; + $182 = (($179) + 4)|0; + $183 = $182; + $184 = HEAP32[$183>>2]|0; + $185 = (($output) + 72|0); + $186 = $185; + $187 = $186; + $188 = HEAP32[$187>>2]|0; + $189 = (($186) + 4)|0; + $190 = $189; + $191 = HEAP32[$190>>2]|0; + $192 = (_i64Subtract(($181|0),($184|0),($188|0),($191|0))|0); + $193 = tempRet0; + $194 = $185; + $195 = $194; + HEAP32[$195>>2] = $192; + $196 = (($194) + 4)|0; + $197 = $196; + HEAP32[$197>>2] = $193; + STACKTOP = sp;return; +} +function _fscalar_product($output,$in) { + $output = $output|0; + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; + var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $in; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = (___muldi3(($2|0),($5|0),121665,0)|0); + $7 = tempRet0; + $8 = $output; + $9 = $8; + HEAP32[$9>>2] = $6; + $10 = (($8) + 4)|0; + $11 = $10; + HEAP32[$11>>2] = $7; + $12 = (($in) + 8|0); + $13 = $12; + $14 = $13; + $15 = HEAP32[$14>>2]|0; + $16 = (($13) + 4)|0; + $17 = $16; + $18 = HEAP32[$17>>2]|0; + $19 = (___muldi3(($15|0),($18|0),121665,0)|0); + $20 = tempRet0; + $21 = (($output) + 8|0); + $22 = $21; + $23 = $22; + HEAP32[$23>>2] = $19; + $24 = (($22) + 4)|0; + $25 = $24; + HEAP32[$25>>2] = $20; + $26 = (($in) + 16|0); + $27 = $26; + $28 = $27; + $29 = HEAP32[$28>>2]|0; + $30 = (($27) + 4)|0; + $31 = $30; + $32 = HEAP32[$31>>2]|0; + $33 = (___muldi3(($29|0),($32|0),121665,0)|0); + $34 = tempRet0; + $35 = (($output) + 16|0); + $36 = $35; + $37 = $36; + HEAP32[$37>>2] = $33; + $38 = (($36) + 4)|0; + $39 = $38; + HEAP32[$39>>2] = $34; + $40 = (($in) + 24|0); + $41 = $40; + $42 = $41; + $43 = HEAP32[$42>>2]|0; + $44 = (($41) + 4)|0; + $45 = $44; + $46 = HEAP32[$45>>2]|0; + $47 = (___muldi3(($43|0),($46|0),121665,0)|0); + $48 = tempRet0; + $49 = (($output) + 24|0); + $50 = $49; + $51 = $50; + HEAP32[$51>>2] = $47; + $52 = (($50) + 4)|0; + $53 = $52; + HEAP32[$53>>2] = $48; + $54 = (($in) + 32|0); + $55 = $54; + $56 = $55; + $57 = HEAP32[$56>>2]|0; + $58 = (($55) + 4)|0; + $59 = $58; + $60 = HEAP32[$59>>2]|0; + $61 = (___muldi3(($57|0),($60|0),121665,0)|0); + $62 = tempRet0; + $63 = (($output) + 32|0); + $64 = $63; + $65 = $64; + HEAP32[$65>>2] = $61; + $66 = (($64) + 4)|0; + $67 = $66; + HEAP32[$67>>2] = $62; + $68 = (($in) + 40|0); + $69 = $68; + $70 = $69; + $71 = HEAP32[$70>>2]|0; + $72 = (($69) + 4)|0; + $73 = $72; + $74 = HEAP32[$73>>2]|0; + $75 = (___muldi3(($71|0),($74|0),121665,0)|0); + $76 = tempRet0; + $77 = (($output) + 40|0); + $78 = $77; + $79 = $78; + HEAP32[$79>>2] = $75; + $80 = (($78) + 4)|0; + $81 = $80; + HEAP32[$81>>2] = $76; + $82 = (($in) + 48|0); + $83 = $82; + $84 = $83; + $85 = HEAP32[$84>>2]|0; + $86 = (($83) + 4)|0; + $87 = $86; + $88 = HEAP32[$87>>2]|0; + $89 = (___muldi3(($85|0),($88|0),121665,0)|0); + $90 = tempRet0; + $91 = (($output) + 48|0); + $92 = $91; + $93 = $92; + HEAP32[$93>>2] = $89; + $94 = (($92) + 4)|0; + $95 = $94; + HEAP32[$95>>2] = $90; + $96 = (($in) + 56|0); + $97 = $96; + $98 = $97; + $99 = HEAP32[$98>>2]|0; + $100 = (($97) + 4)|0; + $101 = $100; + $102 = HEAP32[$101>>2]|0; + $103 = (___muldi3(($99|0),($102|0),121665,0)|0); + $104 = tempRet0; + $105 = (($output) + 56|0); + $106 = $105; + $107 = $106; + HEAP32[$107>>2] = $103; + $108 = (($106) + 4)|0; + $109 = $108; + HEAP32[$109>>2] = $104; + $110 = (($in) + 64|0); + $111 = $110; + $112 = $111; + $113 = HEAP32[$112>>2]|0; + $114 = (($111) + 4)|0; + $115 = $114; + $116 = HEAP32[$115>>2]|0; + $117 = (___muldi3(($113|0),($116|0),121665,0)|0); + $118 = tempRet0; + $119 = (($output) + 64|0); + $120 = $119; + $121 = $120; + HEAP32[$121>>2] = $117; + $122 = (($120) + 4)|0; + $123 = $122; + HEAP32[$123>>2] = $118; + $124 = (($in) + 72|0); + $125 = $124; + $126 = $125; + $127 = HEAP32[$126>>2]|0; + $128 = (($125) + 4)|0; + $129 = $128; + $130 = HEAP32[$129>>2]|0; + $131 = (___muldi3(($127|0),($130|0),121665,0)|0); + $132 = tempRet0; + $133 = (($output) + 72|0); + $134 = $133; + $135 = $134; + HEAP32[$135>>2] = $131; + $136 = (($134) + 4)|0; + $137 = $136; + HEAP32[$137>>2] = $132; + STACKTOP = sp;return; +} +function _fsquare_inner($output,$in) { + $output = $output|0; + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; + var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; + var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; + var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; + var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; + var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; + var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0; + var $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0; + var $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0; + var $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0; + var $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0; + var $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0; + var $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0; + var $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0; + var $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0; + var $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0; + var $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0; + var $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0; + var $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0; + var $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0; + var $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0; + var $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0; + var $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0; + var $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0; + var $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0; + var $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0; + var $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0; + var $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0; + var $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0; + var $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0; + var $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0; + var $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0; + var $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0; + var $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0; + var $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0; + var $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0; + var $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0; + var $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0; + var $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0; + var $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0; + var $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0; + var $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0; + var $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0; + var $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0; + var $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0; + var $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0; + var $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0; + var $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0; + var $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0; + var $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0; + var $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0; + var $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0; + var $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0; + var $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0; + var $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0; + var $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + $0 = $in; + $1 = $0; + $2 = HEAP32[$1>>2]|0; + $3 = (($0) + 4)|0; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = (_bitshift64Ashr(0,($2|0),32)|0); + $7 = tempRet0; + $8 = (___muldi3(($6|0),($7|0),($6|0),($7|0))|0); + $9 = tempRet0; + $10 = $output; + $11 = $10; + HEAP32[$11>>2] = $8; + $12 = (($10) + 4)|0; + $13 = $12; + HEAP32[$13>>2] = $9; + $14 = $in; + $15 = $14; + $16 = HEAP32[$15>>2]|0; + $17 = (($14) + 4)|0; + $18 = $17; + $19 = HEAP32[$18>>2]|0; + $20 = (_bitshift64Ashr(0,($16|0),31)|0); + $21 = tempRet0; + $22 = (($in) + 8|0); + $23 = $22; + $24 = $23; + $25 = HEAP32[$24>>2]|0; + $26 = (($23) + 4)|0; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (_bitshift64Ashr(0,($25|0),32)|0); + $30 = tempRet0; + $31 = (___muldi3(($29|0),($30|0),($20|0),($21|0))|0); + $32 = tempRet0; + $33 = (($output) + 8|0); + $34 = $33; + $35 = $34; + HEAP32[$35>>2] = $31; + $36 = (($34) + 4)|0; + $37 = $36; + HEAP32[$37>>2] = $32; + $38 = $22; + $39 = $38; + $40 = HEAP32[$39>>2]|0; + $41 = (($38) + 4)|0; + $42 = $41; + $43 = HEAP32[$42>>2]|0; + $44 = (_bitshift64Ashr(0,($40|0),32)|0); + $45 = tempRet0; + $46 = (___muldi3(($44|0),($45|0),($44|0),($45|0))|0); + $47 = tempRet0; + $48 = $in; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + $51 = (($48) + 4)|0; + $52 = $51; + $53 = HEAP32[$52>>2]|0; + $54 = (_bitshift64Ashr(0,($50|0),32)|0); + $55 = tempRet0; + $56 = (($in) + 16|0); + $57 = $56; + $58 = $57; + $59 = HEAP32[$58>>2]|0; + $60 = (($57) + 4)|0; + $61 = $60; + $62 = HEAP32[$61>>2]|0; + $63 = (_bitshift64Ashr(0,($59|0),32)|0); + $64 = tempRet0; + $65 = (___muldi3(($63|0),($64|0),($54|0),($55|0))|0); + $66 = tempRet0; + $67 = (_i64Add(($65|0),($66|0),($46|0),($47|0))|0); + $68 = tempRet0; + $69 = (_bitshift64Shl(($67|0),($68|0),1)|0); + $70 = tempRet0; + $71 = (($output) + 16|0); + $72 = $71; + $73 = $72; + HEAP32[$73>>2] = $69; + $74 = (($72) + 4)|0; + $75 = $74; + HEAP32[$75>>2] = $70; + $76 = $22; + $77 = $76; + $78 = HEAP32[$77>>2]|0; + $79 = (($76) + 4)|0; + $80 = $79; + $81 = HEAP32[$80>>2]|0; + $82 = (_bitshift64Ashr(0,($78|0),32)|0); + $83 = tempRet0; + $84 = $56; + $85 = $84; + $86 = HEAP32[$85>>2]|0; + $87 = (($84) + 4)|0; + $88 = $87; + $89 = HEAP32[$88>>2]|0; + $90 = (_bitshift64Ashr(0,($86|0),32)|0); + $91 = tempRet0; + $92 = (___muldi3(($90|0),($91|0),($82|0),($83|0))|0); + $93 = tempRet0; + $94 = $in; + $95 = $94; + $96 = HEAP32[$95>>2]|0; + $97 = (($94) + 4)|0; + $98 = $97; + $99 = HEAP32[$98>>2]|0; + $100 = (_bitshift64Ashr(0,($96|0),32)|0); + $101 = tempRet0; + $102 = (($in) + 24|0); + $103 = $102; + $104 = $103; + $105 = HEAP32[$104>>2]|0; + $106 = (($103) + 4)|0; + $107 = $106; + $108 = HEAP32[$107>>2]|0; + $109 = (_bitshift64Ashr(0,($105|0),32)|0); + $110 = tempRet0; + $111 = (___muldi3(($109|0),($110|0),($100|0),($101|0))|0); + $112 = tempRet0; + $113 = (_i64Add(($111|0),($112|0),($92|0),($93|0))|0); + $114 = tempRet0; + $115 = (_bitshift64Shl(($113|0),($114|0),1)|0); + $116 = tempRet0; + $117 = (($output) + 24|0); + $118 = $117; + $119 = $118; + HEAP32[$119>>2] = $115; + $120 = (($118) + 4)|0; + $121 = $120; + HEAP32[$121>>2] = $116; + $122 = $56; + $123 = $122; + $124 = HEAP32[$123>>2]|0; + $125 = (($122) + 4)|0; + $126 = $125; + $127 = HEAP32[$126>>2]|0; + $128 = (_bitshift64Ashr(0,($124|0),32)|0); + $129 = tempRet0; + $130 = (___muldi3(($128|0),($129|0),($128|0),($129|0))|0); + $131 = tempRet0; + $132 = $22; + $133 = $132; + $134 = HEAP32[$133>>2]|0; + $135 = (($132) + 4)|0; + $136 = $135; + $137 = HEAP32[$136>>2]|0; + $138 = (_bitshift64Ashr(0,($134|0),30)|0); + $139 = tempRet0; + $140 = $102; + $141 = $140; + $142 = HEAP32[$141>>2]|0; + $143 = (($140) + 4)|0; + $144 = $143; + $145 = HEAP32[$144>>2]|0; + $146 = (_bitshift64Ashr(0,($142|0),32)|0); + $147 = tempRet0; + $148 = (___muldi3(($146|0),($147|0),($138|0),($139|0))|0); + $149 = tempRet0; + $150 = (_i64Add(($148|0),($149|0),($130|0),($131|0))|0); + $151 = tempRet0; + $152 = $in; + $153 = $152; + $154 = HEAP32[$153>>2]|0; + $155 = (($152) + 4)|0; + $156 = $155; + $157 = HEAP32[$156>>2]|0; + $158 = (_bitshift64Ashr(0,($154|0),31)|0); + $159 = tempRet0; + $160 = (($in) + 32|0); + $161 = $160; + $162 = $161; + $163 = HEAP32[$162>>2]|0; + $164 = (($161) + 4)|0; + $165 = $164; + $166 = HEAP32[$165>>2]|0; + $167 = (_bitshift64Ashr(0,($163|0),32)|0); + $168 = tempRet0; + $169 = (___muldi3(($167|0),($168|0),($158|0),($159|0))|0); + $170 = tempRet0; + $171 = (_i64Add(($150|0),($151|0),($169|0),($170|0))|0); + $172 = tempRet0; + $173 = (($output) + 32|0); + $174 = $173; + $175 = $174; + HEAP32[$175>>2] = $171; + $176 = (($174) + 4)|0; + $177 = $176; + HEAP32[$177>>2] = $172; + $178 = $56; + $179 = $178; + $180 = HEAP32[$179>>2]|0; + $181 = (($178) + 4)|0; + $182 = $181; + $183 = HEAP32[$182>>2]|0; + $184 = (_bitshift64Ashr(0,($180|0),32)|0); + $185 = tempRet0; + $186 = $102; + $187 = $186; + $188 = HEAP32[$187>>2]|0; + $189 = (($186) + 4)|0; + $190 = $189; + $191 = HEAP32[$190>>2]|0; + $192 = (_bitshift64Ashr(0,($188|0),32)|0); + $193 = tempRet0; + $194 = (___muldi3(($192|0),($193|0),($184|0),($185|0))|0); + $195 = tempRet0; + $196 = $22; + $197 = $196; + $198 = HEAP32[$197>>2]|0; + $199 = (($196) + 4)|0; + $200 = $199; + $201 = HEAP32[$200>>2]|0; + $202 = (_bitshift64Ashr(0,($198|0),32)|0); + $203 = tempRet0; + $204 = $160; + $205 = $204; + $206 = HEAP32[$205>>2]|0; + $207 = (($204) + 4)|0; + $208 = $207; + $209 = HEAP32[$208>>2]|0; + $210 = (_bitshift64Ashr(0,($206|0),32)|0); + $211 = tempRet0; + $212 = (___muldi3(($210|0),($211|0),($202|0),($203|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($212|0),($213|0),($194|0),($195|0))|0); + $215 = tempRet0; + $216 = $in; + $217 = $216; + $218 = HEAP32[$217>>2]|0; + $219 = (($216) + 4)|0; + $220 = $219; + $221 = HEAP32[$220>>2]|0; + $222 = (_bitshift64Ashr(0,($218|0),32)|0); + $223 = tempRet0; + $224 = (($in) + 40|0); + $225 = $224; + $226 = $225; + $227 = HEAP32[$226>>2]|0; + $228 = (($225) + 4)|0; + $229 = $228; + $230 = HEAP32[$229>>2]|0; + $231 = (_bitshift64Ashr(0,($227|0),32)|0); + $232 = tempRet0; + $233 = (___muldi3(($231|0),($232|0),($222|0),($223|0))|0); + $234 = tempRet0; + $235 = (_i64Add(($214|0),($215|0),($233|0),($234|0))|0); + $236 = tempRet0; + $237 = (_bitshift64Shl(($235|0),($236|0),1)|0); + $238 = tempRet0; + $239 = (($output) + 40|0); + $240 = $239; + $241 = $240; + HEAP32[$241>>2] = $237; + $242 = (($240) + 4)|0; + $243 = $242; + HEAP32[$243>>2] = $238; + $244 = $102; + $245 = $244; + $246 = HEAP32[$245>>2]|0; + $247 = (($244) + 4)|0; + $248 = $247; + $249 = HEAP32[$248>>2]|0; + $250 = (_bitshift64Ashr(0,($246|0),32)|0); + $251 = tempRet0; + $252 = (___muldi3(($250|0),($251|0),($250|0),($251|0))|0); + $253 = tempRet0; + $254 = $56; + $255 = $254; + $256 = HEAP32[$255>>2]|0; + $257 = (($254) + 4)|0; + $258 = $257; + $259 = HEAP32[$258>>2]|0; + $260 = (_bitshift64Ashr(0,($256|0),32)|0); + $261 = tempRet0; + $262 = $160; + $263 = $262; + $264 = HEAP32[$263>>2]|0; + $265 = (($262) + 4)|0; + $266 = $265; + $267 = HEAP32[$266>>2]|0; + $268 = (_bitshift64Ashr(0,($264|0),32)|0); + $269 = tempRet0; + $270 = (___muldi3(($268|0),($269|0),($260|0),($261|0))|0); + $271 = tempRet0; + $272 = (_i64Add(($270|0),($271|0),($252|0),($253|0))|0); + $273 = tempRet0; + $274 = $in; + $275 = $274; + $276 = HEAP32[$275>>2]|0; + $277 = (($274) + 4)|0; + $278 = $277; + $279 = HEAP32[$278>>2]|0; + $280 = (_bitshift64Ashr(0,($276|0),32)|0); + $281 = tempRet0; + $282 = (($in) + 48|0); + $283 = $282; + $284 = $283; + $285 = HEAP32[$284>>2]|0; + $286 = (($283) + 4)|0; + $287 = $286; + $288 = HEAP32[$287>>2]|0; + $289 = (_bitshift64Ashr(0,($285|0),32)|0); + $290 = tempRet0; + $291 = (___muldi3(($289|0),($290|0),($280|0),($281|0))|0); + $292 = tempRet0; + $293 = (_i64Add(($272|0),($273|0),($291|0),($292|0))|0); + $294 = tempRet0; + $295 = $22; + $296 = $295; + $297 = HEAP32[$296>>2]|0; + $298 = (($295) + 4)|0; + $299 = $298; + $300 = HEAP32[$299>>2]|0; + $301 = (_bitshift64Ashr(0,($297|0),31)|0); + $302 = tempRet0; + $303 = $224; + $304 = $303; + $305 = HEAP32[$304>>2]|0; + $306 = (($303) + 4)|0; + $307 = $306; + $308 = HEAP32[$307>>2]|0; + $309 = (_bitshift64Ashr(0,($305|0),32)|0); + $310 = tempRet0; + $311 = (___muldi3(($309|0),($310|0),($301|0),($302|0))|0); + $312 = tempRet0; + $313 = (_i64Add(($293|0),($294|0),($311|0),($312|0))|0); + $314 = tempRet0; + $315 = (_bitshift64Shl(($313|0),($314|0),1)|0); + $316 = tempRet0; + $317 = (($output) + 48|0); + $318 = $317; + $319 = $318; + HEAP32[$319>>2] = $315; + $320 = (($318) + 4)|0; + $321 = $320; + HEAP32[$321>>2] = $316; + $322 = $102; + $323 = $322; + $324 = HEAP32[$323>>2]|0; + $325 = (($322) + 4)|0; + $326 = $325; + $327 = HEAP32[$326>>2]|0; + $328 = (_bitshift64Ashr(0,($324|0),32)|0); + $329 = tempRet0; + $330 = $160; + $331 = $330; + $332 = HEAP32[$331>>2]|0; + $333 = (($330) + 4)|0; + $334 = $333; + $335 = HEAP32[$334>>2]|0; + $336 = (_bitshift64Ashr(0,($332|0),32)|0); + $337 = tempRet0; + $338 = (___muldi3(($336|0),($337|0),($328|0),($329|0))|0); + $339 = tempRet0; + $340 = $56; + $341 = $340; + $342 = HEAP32[$341>>2]|0; + $343 = (($340) + 4)|0; + $344 = $343; + $345 = HEAP32[$344>>2]|0; + $346 = (_bitshift64Ashr(0,($342|0),32)|0); + $347 = tempRet0; + $348 = $224; + $349 = $348; + $350 = HEAP32[$349>>2]|0; + $351 = (($348) + 4)|0; + $352 = $351; + $353 = HEAP32[$352>>2]|0; + $354 = (_bitshift64Ashr(0,($350|0),32)|0); + $355 = tempRet0; + $356 = (___muldi3(($354|0),($355|0),($346|0),($347|0))|0); + $357 = tempRet0; + $358 = (_i64Add(($356|0),($357|0),($338|0),($339|0))|0); + $359 = tempRet0; + $360 = $22; + $361 = $360; + $362 = HEAP32[$361>>2]|0; + $363 = (($360) + 4)|0; + $364 = $363; + $365 = HEAP32[$364>>2]|0; + $366 = (_bitshift64Ashr(0,($362|0),32)|0); + $367 = tempRet0; + $368 = $282; + $369 = $368; + $370 = HEAP32[$369>>2]|0; + $371 = (($368) + 4)|0; + $372 = $371; + $373 = HEAP32[$372>>2]|0; + $374 = (_bitshift64Ashr(0,($370|0),32)|0); + $375 = tempRet0; + $376 = (___muldi3(($374|0),($375|0),($366|0),($367|0))|0); + $377 = tempRet0; + $378 = (_i64Add(($358|0),($359|0),($376|0),($377|0))|0); + $379 = tempRet0; + $380 = $in; + $381 = $380; + $382 = HEAP32[$381>>2]|0; + $383 = (($380) + 4)|0; + $384 = $383; + $385 = HEAP32[$384>>2]|0; + $386 = (_bitshift64Ashr(0,($382|0),32)|0); + $387 = tempRet0; + $388 = (($in) + 56|0); + $389 = $388; + $390 = $389; + $391 = HEAP32[$390>>2]|0; + $392 = (($389) + 4)|0; + $393 = $392; + $394 = HEAP32[$393>>2]|0; + $395 = (_bitshift64Ashr(0,($391|0),32)|0); + $396 = tempRet0; + $397 = (___muldi3(($395|0),($396|0),($386|0),($387|0))|0); + $398 = tempRet0; + $399 = (_i64Add(($378|0),($379|0),($397|0),($398|0))|0); + $400 = tempRet0; + $401 = (_bitshift64Shl(($399|0),($400|0),1)|0); + $402 = tempRet0; + $403 = (($output) + 56|0); + $404 = $403; + $405 = $404; + HEAP32[$405>>2] = $401; + $406 = (($404) + 4)|0; + $407 = $406; + HEAP32[$407>>2] = $402; + $408 = $160; + $409 = $408; + $410 = HEAP32[$409>>2]|0; + $411 = (($408) + 4)|0; + $412 = $411; + $413 = HEAP32[$412>>2]|0; + $414 = (_bitshift64Ashr(0,($410|0),32)|0); + $415 = tempRet0; + $416 = (___muldi3(($414|0),($415|0),($414|0),($415|0))|0); + $417 = tempRet0; + $418 = $56; + $419 = $418; + $420 = HEAP32[$419>>2]|0; + $421 = (($418) + 4)|0; + $422 = $421; + $423 = HEAP32[$422>>2]|0; + $424 = (_bitshift64Ashr(0,($420|0),32)|0); + $425 = tempRet0; + $426 = $282; + $427 = $426; + $428 = HEAP32[$427>>2]|0; + $429 = (($426) + 4)|0; + $430 = $429; + $431 = HEAP32[$430>>2]|0; + $432 = (_bitshift64Ashr(0,($428|0),32)|0); + $433 = tempRet0; + $434 = (___muldi3(($432|0),($433|0),($424|0),($425|0))|0); + $435 = tempRet0; + $436 = $in; + $437 = $436; + $438 = HEAP32[$437>>2]|0; + $439 = (($436) + 4)|0; + $440 = $439; + $441 = HEAP32[$440>>2]|0; + $442 = (_bitshift64Ashr(0,($438|0),32)|0); + $443 = tempRet0; + $444 = (($in) + 64|0); + $445 = $444; + $446 = $445; + $447 = HEAP32[$446>>2]|0; + $448 = (($445) + 4)|0; + $449 = $448; + $450 = HEAP32[$449>>2]|0; + $451 = (_bitshift64Ashr(0,($447|0),32)|0); + $452 = tempRet0; + $453 = (___muldi3(($451|0),($452|0),($442|0),($443|0))|0); + $454 = tempRet0; + $455 = (_i64Add(($453|0),($454|0),($434|0),($435|0))|0); + $456 = tempRet0; + $457 = $22; + $458 = $457; + $459 = HEAP32[$458>>2]|0; + $460 = (($457) + 4)|0; + $461 = $460; + $462 = HEAP32[$461>>2]|0; + $463 = (_bitshift64Ashr(0,($459|0),32)|0); + $464 = tempRet0; + $465 = $388; + $466 = $465; + $467 = HEAP32[$466>>2]|0; + $468 = (($465) + 4)|0; + $469 = $468; + $470 = HEAP32[$469>>2]|0; + $471 = (_bitshift64Ashr(0,($467|0),32)|0); + $472 = tempRet0; + $473 = (___muldi3(($471|0),($472|0),($463|0),($464|0))|0); + $474 = tempRet0; + $475 = $102; + $476 = $475; + $477 = HEAP32[$476>>2]|0; + $478 = (($475) + 4)|0; + $479 = $478; + $480 = HEAP32[$479>>2]|0; + $481 = (_bitshift64Ashr(0,($477|0),32)|0); + $482 = tempRet0; + $483 = $224; + $484 = $483; + $485 = HEAP32[$484>>2]|0; + $486 = (($483) + 4)|0; + $487 = $486; + $488 = HEAP32[$487>>2]|0; + $489 = (_bitshift64Ashr(0,($485|0),32)|0); + $490 = tempRet0; + $491 = (___muldi3(($489|0),($490|0),($481|0),($482|0))|0); + $492 = tempRet0; + $493 = (_i64Add(($491|0),($492|0),($473|0),($474|0))|0); + $494 = tempRet0; + $495 = (_bitshift64Shl(($493|0),($494|0),1)|0); + $496 = tempRet0; + $497 = (_i64Add(($455|0),($456|0),($495|0),($496|0))|0); + $498 = tempRet0; + $499 = (_bitshift64Shl(($497|0),($498|0),1)|0); + $500 = tempRet0; + $501 = (_i64Add(($499|0),($500|0),($416|0),($417|0))|0); + $502 = tempRet0; + $503 = (($output) + 64|0); + $504 = $503; + $505 = $504; + HEAP32[$505>>2] = $501; + $506 = (($504) + 4)|0; + $507 = $506; + HEAP32[$507>>2] = $502; + $508 = $160; + $509 = $508; + $510 = HEAP32[$509>>2]|0; + $511 = (($508) + 4)|0; + $512 = $511; + $513 = HEAP32[$512>>2]|0; + $514 = (_bitshift64Ashr(0,($510|0),32)|0); + $515 = tempRet0; + $516 = $224; + $517 = $516; + $518 = HEAP32[$517>>2]|0; + $519 = (($516) + 4)|0; + $520 = $519; + $521 = HEAP32[$520>>2]|0; + $522 = (_bitshift64Ashr(0,($518|0),32)|0); + $523 = tempRet0; + $524 = (___muldi3(($522|0),($523|0),($514|0),($515|0))|0); + $525 = tempRet0; + $526 = $102; + $527 = $526; + $528 = HEAP32[$527>>2]|0; + $529 = (($526) + 4)|0; + $530 = $529; + $531 = HEAP32[$530>>2]|0; + $532 = (_bitshift64Ashr(0,($528|0),32)|0); + $533 = tempRet0; + $534 = $282; + $535 = $534; + $536 = HEAP32[$535>>2]|0; + $537 = (($534) + 4)|0; + $538 = $537; + $539 = HEAP32[$538>>2]|0; + $540 = (_bitshift64Ashr(0,($536|0),32)|0); + $541 = tempRet0; + $542 = (___muldi3(($540|0),($541|0),($532|0),($533|0))|0); + $543 = tempRet0; + $544 = (_i64Add(($542|0),($543|0),($524|0),($525|0))|0); + $545 = tempRet0; + $546 = $56; + $547 = $546; + $548 = HEAP32[$547>>2]|0; + $549 = (($546) + 4)|0; + $550 = $549; + $551 = HEAP32[$550>>2]|0; + $552 = (_bitshift64Ashr(0,($548|0),32)|0); + $553 = tempRet0; + $554 = $388; + $555 = $554; + $556 = HEAP32[$555>>2]|0; + $557 = (($554) + 4)|0; + $558 = $557; + $559 = HEAP32[$558>>2]|0; + $560 = (_bitshift64Ashr(0,($556|0),32)|0); + $561 = tempRet0; + $562 = (___muldi3(($560|0),($561|0),($552|0),($553|0))|0); + $563 = tempRet0; + $564 = (_i64Add(($544|0),($545|0),($562|0),($563|0))|0); + $565 = tempRet0; + $566 = $22; + $567 = $566; + $568 = HEAP32[$567>>2]|0; + $569 = (($566) + 4)|0; + $570 = $569; + $571 = HEAP32[$570>>2]|0; + $572 = (_bitshift64Ashr(0,($568|0),32)|0); + $573 = tempRet0; + $574 = $444; + $575 = $574; + $576 = HEAP32[$575>>2]|0; + $577 = (($574) + 4)|0; + $578 = $577; + $579 = HEAP32[$578>>2]|0; + $580 = (_bitshift64Ashr(0,($576|0),32)|0); + $581 = tempRet0; + $582 = (___muldi3(($580|0),($581|0),($572|0),($573|0))|0); + $583 = tempRet0; + $584 = (_i64Add(($564|0),($565|0),($582|0),($583|0))|0); + $585 = tempRet0; + $586 = $in; + $587 = $586; + $588 = HEAP32[$587>>2]|0; + $589 = (($586) + 4)|0; + $590 = $589; + $591 = HEAP32[$590>>2]|0; + $592 = (_bitshift64Ashr(0,($588|0),32)|0); + $593 = tempRet0; + $594 = (($in) + 72|0); + $595 = $594; + $596 = $595; + $597 = HEAP32[$596>>2]|0; + $598 = (($595) + 4)|0; + $599 = $598; + $600 = HEAP32[$599>>2]|0; + $601 = (_bitshift64Ashr(0,($597|0),32)|0); + $602 = tempRet0; + $603 = (___muldi3(($601|0),($602|0),($592|0),($593|0))|0); + $604 = tempRet0; + $605 = (_i64Add(($584|0),($585|0),($603|0),($604|0))|0); + $606 = tempRet0; + $607 = (_bitshift64Shl(($605|0),($606|0),1)|0); + $608 = tempRet0; + $609 = (($output) + 72|0); + $610 = $609; + $611 = $610; + HEAP32[$611>>2] = $607; + $612 = (($610) + 4)|0; + $613 = $612; + HEAP32[$613>>2] = $608; + $614 = $224; + $615 = $614; + $616 = HEAP32[$615>>2]|0; + $617 = (($614) + 4)|0; + $618 = $617; + $619 = HEAP32[$618>>2]|0; + $620 = (_bitshift64Ashr(0,($616|0),32)|0); + $621 = tempRet0; + $622 = (___muldi3(($620|0),($621|0),($620|0),($621|0))|0); + $623 = tempRet0; + $624 = $160; + $625 = $624; + $626 = HEAP32[$625>>2]|0; + $627 = (($624) + 4)|0; + $628 = $627; + $629 = HEAP32[$628>>2]|0; + $630 = (_bitshift64Ashr(0,($626|0),32)|0); + $631 = tempRet0; + $632 = $282; + $633 = $632; + $634 = HEAP32[$633>>2]|0; + $635 = (($632) + 4)|0; + $636 = $635; + $637 = HEAP32[$636>>2]|0; + $638 = (_bitshift64Ashr(0,($634|0),32)|0); + $639 = tempRet0; + $640 = (___muldi3(($638|0),($639|0),($630|0),($631|0))|0); + $641 = tempRet0; + $642 = (_i64Add(($640|0),($641|0),($622|0),($623|0))|0); + $643 = tempRet0; + $644 = $56; + $645 = $644; + $646 = HEAP32[$645>>2]|0; + $647 = (($644) + 4)|0; + $648 = $647; + $649 = HEAP32[$648>>2]|0; + $650 = (_bitshift64Ashr(0,($646|0),32)|0); + $651 = tempRet0; + $652 = $444; + $653 = $652; + $654 = HEAP32[$653>>2]|0; + $655 = (($652) + 4)|0; + $656 = $655; + $657 = HEAP32[$656>>2]|0; + $658 = (_bitshift64Ashr(0,($654|0),32)|0); + $659 = tempRet0; + $660 = (___muldi3(($658|0),($659|0),($650|0),($651|0))|0); + $661 = tempRet0; + $662 = (_i64Add(($642|0),($643|0),($660|0),($661|0))|0); + $663 = tempRet0; + $664 = $102; + $665 = $664; + $666 = HEAP32[$665>>2]|0; + $667 = (($664) + 4)|0; + $668 = $667; + $669 = HEAP32[$668>>2]|0; + $670 = (_bitshift64Ashr(0,($666|0),32)|0); + $671 = tempRet0; + $672 = $388; + $673 = $672; + $674 = HEAP32[$673>>2]|0; + $675 = (($672) + 4)|0; + $676 = $675; + $677 = HEAP32[$676>>2]|0; + $678 = (_bitshift64Ashr(0,($674|0),32)|0); + $679 = tempRet0; + $680 = (___muldi3(($678|0),($679|0),($670|0),($671|0))|0); + $681 = tempRet0; + $682 = $22; + $683 = $682; + $684 = HEAP32[$683>>2]|0; + $685 = (($682) + 4)|0; + $686 = $685; + $687 = HEAP32[$686>>2]|0; + $688 = (_bitshift64Ashr(0,($684|0),32)|0); + $689 = tempRet0; + $690 = $594; + $691 = $690; + $692 = HEAP32[$691>>2]|0; + $693 = (($690) + 4)|0; + $694 = $693; + $695 = HEAP32[$694>>2]|0; + $696 = (_bitshift64Ashr(0,($692|0),32)|0); + $697 = tempRet0; + $698 = (___muldi3(($696|0),($697|0),($688|0),($689|0))|0); + $699 = tempRet0; + $700 = (_i64Add(($698|0),($699|0),($680|0),($681|0))|0); + $701 = tempRet0; + $702 = (_bitshift64Shl(($700|0),($701|0),1)|0); + $703 = tempRet0; + $704 = (_i64Add(($662|0),($663|0),($702|0),($703|0))|0); + $705 = tempRet0; + $706 = (_bitshift64Shl(($704|0),($705|0),1)|0); + $707 = tempRet0; + $708 = (($output) + 80|0); + $709 = $708; + $710 = $709; + HEAP32[$710>>2] = $706; + $711 = (($709) + 4)|0; + $712 = $711; + HEAP32[$712>>2] = $707; + $713 = $224; + $714 = $713; + $715 = HEAP32[$714>>2]|0; + $716 = (($713) + 4)|0; + $717 = $716; + $718 = HEAP32[$717>>2]|0; + $719 = (_bitshift64Ashr(0,($715|0),32)|0); + $720 = tempRet0; + $721 = $282; + $722 = $721; + $723 = HEAP32[$722>>2]|0; + $724 = (($721) + 4)|0; + $725 = $724; + $726 = HEAP32[$725>>2]|0; + $727 = (_bitshift64Ashr(0,($723|0),32)|0); + $728 = tempRet0; + $729 = (___muldi3(($727|0),($728|0),($719|0),($720|0))|0); + $730 = tempRet0; + $731 = $160; + $732 = $731; + $733 = HEAP32[$732>>2]|0; + $734 = (($731) + 4)|0; + $735 = $734; + $736 = HEAP32[$735>>2]|0; + $737 = (_bitshift64Ashr(0,($733|0),32)|0); + $738 = tempRet0; + $739 = $388; + $740 = $739; + $741 = HEAP32[$740>>2]|0; + $742 = (($739) + 4)|0; + $743 = $742; + $744 = HEAP32[$743>>2]|0; + $745 = (_bitshift64Ashr(0,($741|0),32)|0); + $746 = tempRet0; + $747 = (___muldi3(($745|0),($746|0),($737|0),($738|0))|0); + $748 = tempRet0; + $749 = (_i64Add(($747|0),($748|0),($729|0),($730|0))|0); + $750 = tempRet0; + $751 = $102; + $752 = $751; + $753 = HEAP32[$752>>2]|0; + $754 = (($751) + 4)|0; + $755 = $754; + $756 = HEAP32[$755>>2]|0; + $757 = (_bitshift64Ashr(0,($753|0),32)|0); + $758 = tempRet0; + $759 = $444; + $760 = $759; + $761 = HEAP32[$760>>2]|0; + $762 = (($759) + 4)|0; + $763 = $762; + $764 = HEAP32[$763>>2]|0; + $765 = (_bitshift64Ashr(0,($761|0),32)|0); + $766 = tempRet0; + $767 = (___muldi3(($765|0),($766|0),($757|0),($758|0))|0); + $768 = tempRet0; + $769 = (_i64Add(($749|0),($750|0),($767|0),($768|0))|0); + $770 = tempRet0; + $771 = $56; + $772 = $771; + $773 = HEAP32[$772>>2]|0; + $774 = (($771) + 4)|0; + $775 = $774; + $776 = HEAP32[$775>>2]|0; + $777 = (_bitshift64Ashr(0,($773|0),32)|0); + $778 = tempRet0; + $779 = $594; + $780 = $779; + $781 = HEAP32[$780>>2]|0; + $782 = (($779) + 4)|0; + $783 = $782; + $784 = HEAP32[$783>>2]|0; + $785 = (_bitshift64Ashr(0,($781|0),32)|0); + $786 = tempRet0; + $787 = (___muldi3(($785|0),($786|0),($777|0),($778|0))|0); + $788 = tempRet0; + $789 = (_i64Add(($769|0),($770|0),($787|0),($788|0))|0); + $790 = tempRet0; + $791 = (_bitshift64Shl(($789|0),($790|0),1)|0); + $792 = tempRet0; + $793 = (($output) + 88|0); + $794 = $793; + $795 = $794; + HEAP32[$795>>2] = $791; + $796 = (($794) + 4)|0; + $797 = $796; + HEAP32[$797>>2] = $792; + $798 = $282; + $799 = $798; + $800 = HEAP32[$799>>2]|0; + $801 = (($798) + 4)|0; + $802 = $801; + $803 = HEAP32[$802>>2]|0; + $804 = (_bitshift64Ashr(0,($800|0),32)|0); + $805 = tempRet0; + $806 = (___muldi3(($804|0),($805|0),($804|0),($805|0))|0); + $807 = tempRet0; + $808 = $160; + $809 = $808; + $810 = HEAP32[$809>>2]|0; + $811 = (($808) + 4)|0; + $812 = $811; + $813 = HEAP32[$812>>2]|0; + $814 = (_bitshift64Ashr(0,($810|0),32)|0); + $815 = tempRet0; + $816 = $444; + $817 = $816; + $818 = HEAP32[$817>>2]|0; + $819 = (($816) + 4)|0; + $820 = $819; + $821 = HEAP32[$820>>2]|0; + $822 = (_bitshift64Ashr(0,($818|0),32)|0); + $823 = tempRet0; + $824 = (___muldi3(($822|0),($823|0),($814|0),($815|0))|0); + $825 = tempRet0; + $826 = $224; + $827 = $826; + $828 = HEAP32[$827>>2]|0; + $829 = (($826) + 4)|0; + $830 = $829; + $831 = HEAP32[$830>>2]|0; + $832 = (_bitshift64Ashr(0,($828|0),32)|0); + $833 = tempRet0; + $834 = $388; + $835 = $834; + $836 = HEAP32[$835>>2]|0; + $837 = (($834) + 4)|0; + $838 = $837; + $839 = HEAP32[$838>>2]|0; + $840 = (_bitshift64Ashr(0,($836|0),32)|0); + $841 = tempRet0; + $842 = (___muldi3(($840|0),($841|0),($832|0),($833|0))|0); + $843 = tempRet0; + $844 = $102; + $845 = $844; + $846 = HEAP32[$845>>2]|0; + $847 = (($844) + 4)|0; + $848 = $847; + $849 = HEAP32[$848>>2]|0; + $850 = (_bitshift64Ashr(0,($846|0),32)|0); + $851 = tempRet0; + $852 = $594; + $853 = $852; + $854 = HEAP32[$853>>2]|0; + $855 = (($852) + 4)|0; + $856 = $855; + $857 = HEAP32[$856>>2]|0; + $858 = (_bitshift64Ashr(0,($854|0),32)|0); + $859 = tempRet0; + $860 = (___muldi3(($858|0),($859|0),($850|0),($851|0))|0); + $861 = tempRet0; + $862 = (_i64Add(($860|0),($861|0),($842|0),($843|0))|0); + $863 = tempRet0; + $864 = (_bitshift64Shl(($862|0),($863|0),1)|0); + $865 = tempRet0; + $866 = (_i64Add(($864|0),($865|0),($824|0),($825|0))|0); + $867 = tempRet0; + $868 = (_bitshift64Shl(($866|0),($867|0),1)|0); + $869 = tempRet0; + $870 = (_i64Add(($868|0),($869|0),($806|0),($807|0))|0); + $871 = tempRet0; + $872 = (($output) + 96|0); + $873 = $872; + $874 = $873; + HEAP32[$874>>2] = $870; + $875 = (($873) + 4)|0; + $876 = $875; + HEAP32[$876>>2] = $871; + $877 = $282; + $878 = $877; + $879 = HEAP32[$878>>2]|0; + $880 = (($877) + 4)|0; + $881 = $880; + $882 = HEAP32[$881>>2]|0; + $883 = (_bitshift64Ashr(0,($879|0),32)|0); + $884 = tempRet0; + $885 = $388; + $886 = $885; + $887 = HEAP32[$886>>2]|0; + $888 = (($885) + 4)|0; + $889 = $888; + $890 = HEAP32[$889>>2]|0; + $891 = (_bitshift64Ashr(0,($887|0),32)|0); + $892 = tempRet0; + $893 = (___muldi3(($891|0),($892|0),($883|0),($884|0))|0); + $894 = tempRet0; + $895 = $224; + $896 = $895; + $897 = HEAP32[$896>>2]|0; + $898 = (($895) + 4)|0; + $899 = $898; + $900 = HEAP32[$899>>2]|0; + $901 = (_bitshift64Ashr(0,($897|0),32)|0); + $902 = tempRet0; + $903 = $444; + $904 = $903; + $905 = HEAP32[$904>>2]|0; + $906 = (($903) + 4)|0; + $907 = $906; + $908 = HEAP32[$907>>2]|0; + $909 = (_bitshift64Ashr(0,($905|0),32)|0); + $910 = tempRet0; + $911 = (___muldi3(($909|0),($910|0),($901|0),($902|0))|0); + $912 = tempRet0; + $913 = (_i64Add(($911|0),($912|0),($893|0),($894|0))|0); + $914 = tempRet0; + $915 = $160; + $916 = $915; + $917 = HEAP32[$916>>2]|0; + $918 = (($915) + 4)|0; + $919 = $918; + $920 = HEAP32[$919>>2]|0; + $921 = (_bitshift64Ashr(0,($917|0),32)|0); + $922 = tempRet0; + $923 = $594; + $924 = $923; + $925 = HEAP32[$924>>2]|0; + $926 = (($923) + 4)|0; + $927 = $926; + $928 = HEAP32[$927>>2]|0; + $929 = (_bitshift64Ashr(0,($925|0),32)|0); + $930 = tempRet0; + $931 = (___muldi3(($929|0),($930|0),($921|0),($922|0))|0); + $932 = tempRet0; + $933 = (_i64Add(($913|0),($914|0),($931|0),($932|0))|0); + $934 = tempRet0; + $935 = (_bitshift64Shl(($933|0),($934|0),1)|0); + $936 = tempRet0; + $937 = (($output) + 104|0); + $938 = $937; + $939 = $938; + HEAP32[$939>>2] = $935; + $940 = (($938) + 4)|0; + $941 = $940; + HEAP32[$941>>2] = $936; + $942 = $388; + $943 = $942; + $944 = HEAP32[$943>>2]|0; + $945 = (($942) + 4)|0; + $946 = $945; + $947 = HEAP32[$946>>2]|0; + $948 = (_bitshift64Ashr(0,($944|0),32)|0); + $949 = tempRet0; + $950 = (___muldi3(($948|0),($949|0),($948|0),($949|0))|0); + $951 = tempRet0; + $952 = $282; + $953 = $952; + $954 = HEAP32[$953>>2]|0; + $955 = (($952) + 4)|0; + $956 = $955; + $957 = HEAP32[$956>>2]|0; + $958 = (_bitshift64Ashr(0,($954|0),32)|0); + $959 = tempRet0; + $960 = $444; + $961 = $960; + $962 = HEAP32[$961>>2]|0; + $963 = (($960) + 4)|0; + $964 = $963; + $965 = HEAP32[$964>>2]|0; + $966 = (_bitshift64Ashr(0,($962|0),32)|0); + $967 = tempRet0; + $968 = (___muldi3(($966|0),($967|0),($958|0),($959|0))|0); + $969 = tempRet0; + $970 = (_i64Add(($968|0),($969|0),($950|0),($951|0))|0); + $971 = tempRet0; + $972 = $224; + $973 = $972; + $974 = HEAP32[$973>>2]|0; + $975 = (($972) + 4)|0; + $976 = $975; + $977 = HEAP32[$976>>2]|0; + $978 = (_bitshift64Ashr(0,($974|0),31)|0); + $979 = tempRet0; + $980 = $594; + $981 = $980; + $982 = HEAP32[$981>>2]|0; + $983 = (($980) + 4)|0; + $984 = $983; + $985 = HEAP32[$984>>2]|0; + $986 = (_bitshift64Ashr(0,($982|0),32)|0); + $987 = tempRet0; + $988 = (___muldi3(($986|0),($987|0),($978|0),($979|0))|0); + $989 = tempRet0; + $990 = (_i64Add(($970|0),($971|0),($988|0),($989|0))|0); + $991 = tempRet0; + $992 = (_bitshift64Shl(($990|0),($991|0),1)|0); + $993 = tempRet0; + $994 = (($output) + 112|0); + $995 = $994; + $996 = $995; + HEAP32[$996>>2] = $992; + $997 = (($995) + 4)|0; + $998 = $997; + HEAP32[$998>>2] = $993; + $999 = $388; + $1000 = $999; + $1001 = HEAP32[$1000>>2]|0; + $1002 = (($999) + 4)|0; + $1003 = $1002; + $1004 = HEAP32[$1003>>2]|0; + $1005 = (_bitshift64Ashr(0,($1001|0),32)|0); + $1006 = tempRet0; + $1007 = $444; + $1008 = $1007; + $1009 = HEAP32[$1008>>2]|0; + $1010 = (($1007) + 4)|0; + $1011 = $1010; + $1012 = HEAP32[$1011>>2]|0; + $1013 = (_bitshift64Ashr(0,($1009|0),32)|0); + $1014 = tempRet0; + $1015 = (___muldi3(($1013|0),($1014|0),($1005|0),($1006|0))|0); + $1016 = tempRet0; + $1017 = $282; + $1018 = $1017; + $1019 = HEAP32[$1018>>2]|0; + $1020 = (($1017) + 4)|0; + $1021 = $1020; + $1022 = HEAP32[$1021>>2]|0; + $1023 = (_bitshift64Ashr(0,($1019|0),32)|0); + $1024 = tempRet0; + $1025 = $594; + $1026 = $1025; + $1027 = HEAP32[$1026>>2]|0; + $1028 = (($1025) + 4)|0; + $1029 = $1028; + $1030 = HEAP32[$1029>>2]|0; + $1031 = (_bitshift64Ashr(0,($1027|0),32)|0); + $1032 = tempRet0; + $1033 = (___muldi3(($1031|0),($1032|0),($1023|0),($1024|0))|0); + $1034 = tempRet0; + $1035 = (_i64Add(($1033|0),($1034|0),($1015|0),($1016|0))|0); + $1036 = tempRet0; + $1037 = (_bitshift64Shl(($1035|0),($1036|0),1)|0); + $1038 = tempRet0; + $1039 = (($output) + 120|0); + $1040 = $1039; + $1041 = $1040; + HEAP32[$1041>>2] = $1037; + $1042 = (($1040) + 4)|0; + $1043 = $1042; + HEAP32[$1043>>2] = $1038; + $1044 = $444; + $1045 = $1044; + $1046 = HEAP32[$1045>>2]|0; + $1047 = (($1044) + 4)|0; + $1048 = $1047; + $1049 = HEAP32[$1048>>2]|0; + $1050 = (_bitshift64Ashr(0,($1046|0),32)|0); + $1051 = tempRet0; + $1052 = (___muldi3(($1050|0),($1051|0),($1050|0),($1051|0))|0); + $1053 = tempRet0; + $1054 = $388; + $1055 = $1054; + $1056 = HEAP32[$1055>>2]|0; + $1057 = (($1054) + 4)|0; + $1058 = $1057; + $1059 = HEAP32[$1058>>2]|0; + $1060 = (_bitshift64Ashr(0,($1056|0),30)|0); + $1061 = tempRet0; + $1062 = $594; + $1063 = $1062; + $1064 = HEAP32[$1063>>2]|0; + $1065 = (($1062) + 4)|0; + $1066 = $1065; + $1067 = HEAP32[$1066>>2]|0; + $1068 = (_bitshift64Ashr(0,($1064|0),32)|0); + $1069 = tempRet0; + $1070 = (___muldi3(($1068|0),($1069|0),($1060|0),($1061|0))|0); + $1071 = tempRet0; + $1072 = (_i64Add(($1070|0),($1071|0),($1052|0),($1053|0))|0); + $1073 = tempRet0; + $1074 = (($output) + 128|0); + $1075 = $1074; + $1076 = $1075; + HEAP32[$1076>>2] = $1072; + $1077 = (($1075) + 4)|0; + $1078 = $1077; + HEAP32[$1078>>2] = $1073; + $1079 = $444; + $1080 = $1079; + $1081 = HEAP32[$1080>>2]|0; + $1082 = (($1079) + 4)|0; + $1083 = $1082; + $1084 = HEAP32[$1083>>2]|0; + $1085 = (_bitshift64Ashr(0,($1081|0),31)|0); + $1086 = tempRet0; + $1087 = $594; + $1088 = $1087; + $1089 = HEAP32[$1088>>2]|0; + $1090 = (($1087) + 4)|0; + $1091 = $1090; + $1092 = HEAP32[$1091>>2]|0; + $1093 = (_bitshift64Ashr(0,($1089|0),32)|0); + $1094 = tempRet0; + $1095 = (___muldi3(($1093|0),($1094|0),($1085|0),($1086|0))|0); + $1096 = tempRet0; + $1097 = (($output) + 136|0); + $1098 = $1097; + $1099 = $1098; + HEAP32[$1099>>2] = $1095; + $1100 = (($1098) + 4)|0; + $1101 = $1100; + HEAP32[$1101>>2] = $1096; + $1102 = $594; + $1103 = $1102; + $1104 = HEAP32[$1103>>2]|0; + $1105 = (($1102) + 4)|0; + $1106 = $1105; + $1107 = HEAP32[$1106>>2]|0; + $1108 = (_bitshift64Ashr(0,($1104|0),32)|0); + $1109 = tempRet0; + $1110 = (_bitshift64Ashr(0,($1104|0),31)|0); + $1111 = tempRet0; + $1112 = (___muldi3(($1110|0),($1111|0),($1108|0),($1109|0))|0); + $1113 = tempRet0; + $1114 = (($output) + 144|0); + $1115 = $1114; + $1116 = $1115; + HEAP32[$1116>>2] = $1112; + $1117 = (($1115) + 4)|0; + $1118 = $1117; + HEAP32[$1118>>2] = $1113; + STACKTOP = sp;return; +} +function _div_by_2_26($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = $1 >> 31; + $3 = $2 >>> 6; + $4 = (_i64Add(($3|0),0,($0|0),($1|0))|0); + $5 = tempRet0; + $6 = (_bitshift64Ashr(($4|0),($5|0),26)|0); + $7 = tempRet0; + tempRet0 = $7; + STACKTOP = sp;return ($6|0); +} +function _div_by_2_25($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = $1 >> 31; + $3 = $2 >>> 7; + $4 = (_i64Add(($3|0),0,($0|0),($1|0))|0); + $5 = tempRet0; + $6 = (_bitshift64Ashr(($4|0),($5|0),25)|0); + $7 = tempRet0; + tempRet0 = $7; + STACKTOP = sp;return ($6|0); +} +function _crypto_sign_ed25519_ref10_fe_0($h) { + $h = $h|0; + var dest = 0, label = 0, sp = 0, stop = 0; + sp = STACKTOP; + dest=$h+0|0; stop=dest+40|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_1($h) { + $h = $h|0; + var $0 = 0, dest = 0, label = 0, sp = 0, stop = 0; + sp = STACKTOP; + HEAP32[$h>>2] = 1; + $0 = (($h) + 4|0); + dest=$0+0|0; stop=dest+36|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_add($h,$f,$g) { + $h = $h|0; + $f = $f|0; + $g = $g|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = HEAP32[$g>>2]|0; + $20 = (($g) + 4|0); + $21 = HEAP32[$20>>2]|0; + $22 = (($g) + 8|0); + $23 = HEAP32[$22>>2]|0; + $24 = (($g) + 12|0); + $25 = HEAP32[$24>>2]|0; + $26 = (($g) + 16|0); + $27 = HEAP32[$26>>2]|0; + $28 = (($g) + 20|0); + $29 = HEAP32[$28>>2]|0; + $30 = (($g) + 24|0); + $31 = HEAP32[$30>>2]|0; + $32 = (($g) + 28|0); + $33 = HEAP32[$32>>2]|0; + $34 = (($g) + 32|0); + $35 = HEAP32[$34>>2]|0; + $36 = (($g) + 36|0); + $37 = HEAP32[$36>>2]|0; + $38 = (($19) + ($0))|0; + $39 = (($21) + ($2))|0; + $40 = (($23) + ($4))|0; + $41 = (($25) + ($6))|0; + $42 = (($27) + ($8))|0; + $43 = (($29) + ($10))|0; + $44 = (($31) + ($12))|0; + $45 = (($33) + ($14))|0; + $46 = (($35) + ($16))|0; + $47 = (($37) + ($18))|0; + HEAP32[$h>>2] = $38; + $48 = (($h) + 4|0); + HEAP32[$48>>2] = $39; + $49 = (($h) + 8|0); + HEAP32[$49>>2] = $40; + $50 = (($h) + 12|0); + HEAP32[$50>>2] = $41; + $51 = (($h) + 16|0); + HEAP32[$51>>2] = $42; + $52 = (($h) + 20|0); + HEAP32[$52>>2] = $43; + $53 = (($h) + 24|0); + HEAP32[$53>>2] = $44; + $54 = (($h) + 28|0); + HEAP32[$54>>2] = $45; + $55 = (($h) + 32|0); + HEAP32[$55>>2] = $46; + $56 = (($h) + 36|0); + HEAP32[$56>>2] = $47; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_cmov($f,$g,$b) { + $f = $f|0; + $g = $g|0; + $b = $b|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0; + var $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = HEAP32[$g>>2]|0; + $20 = (($g) + 4|0); + $21 = HEAP32[$20>>2]|0; + $22 = (($g) + 8|0); + $23 = HEAP32[$22>>2]|0; + $24 = (($g) + 12|0); + $25 = HEAP32[$24>>2]|0; + $26 = (($g) + 16|0); + $27 = HEAP32[$26>>2]|0; + $28 = (($g) + 20|0); + $29 = HEAP32[$28>>2]|0; + $30 = (($g) + 24|0); + $31 = HEAP32[$30>>2]|0; + $32 = (($g) + 28|0); + $33 = HEAP32[$32>>2]|0; + $34 = (($g) + 32|0); + $35 = HEAP32[$34>>2]|0; + $36 = (($g) + 36|0); + $37 = HEAP32[$36>>2]|0; + $38 = $19 ^ $0; + $39 = $21 ^ $2; + $40 = $23 ^ $4; + $41 = $25 ^ $6; + $42 = $27 ^ $8; + $43 = $29 ^ $10; + $44 = $31 ^ $12; + $45 = $33 ^ $14; + $46 = $35 ^ $16; + $47 = $37 ^ $18; + $48 = (0 - ($b))|0; + $49 = $38 & $48; + $50 = $39 & $48; + $51 = $40 & $48; + $52 = $41 & $48; + $53 = $42 & $48; + $54 = $43 & $48; + $55 = $44 & $48; + $56 = $45 & $48; + $57 = $46 & $48; + $58 = $47 & $48; + $59 = $49 ^ $0; + HEAP32[$f>>2] = $59; + $60 = $50 ^ $2; + HEAP32[$1>>2] = $60; + $61 = $51 ^ $4; + HEAP32[$3>>2] = $61; + $62 = $52 ^ $6; + HEAP32[$5>>2] = $62; + $63 = $53 ^ $8; + HEAP32[$7>>2] = $63; + $64 = $54 ^ $10; + HEAP32[$9>>2] = $64; + $65 = $55 ^ $12; + HEAP32[$11>>2] = $65; + $66 = $56 ^ $14; + HEAP32[$13>>2] = $66; + $67 = $57 ^ $16; + HEAP32[$15>>2] = $67; + $68 = $58 ^ $18; + HEAP32[$17>>2] = $68; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_copy($h,$f) { + $h = $h|0; + $f = $f|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + HEAP32[$h>>2] = $0; + $19 = (($h) + 4|0); + HEAP32[$19>>2] = $2; + $20 = (($h) + 8|0); + HEAP32[$20>>2] = $4; + $21 = (($h) + 12|0); + HEAP32[$21>>2] = $6; + $22 = (($h) + 16|0); + HEAP32[$22>>2] = $8; + $23 = (($h) + 20|0); + HEAP32[$23>>2] = $10; + $24 = (($h) + 24|0); + HEAP32[$24>>2] = $12; + $25 = (($h) + 28|0); + HEAP32[$25>>2] = $14; + $26 = (($h) + 32|0); + HEAP32[$26>>2] = $16; + $27 = (($h) + 36|0); + HEAP32[$27>>2] = $18; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_frombytes($h,$s) { + $h = $h|0; + $s = $s|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; + var $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0; + var $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0; + var $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0; + var $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (_load_4($s)|0); + $1 = tempRet0; + $2 = (($s) + 4|0); + $3 = (_load_3($2)|0); + $4 = tempRet0; + $5 = (_bitshift64Shl(($3|0),($4|0),6)|0); + $6 = tempRet0; + $7 = (($s) + 7|0); + $8 = (_load_3($7)|0); + $9 = tempRet0; + $10 = (_bitshift64Shl(($8|0),($9|0),5)|0); + $11 = tempRet0; + $12 = (($s) + 10|0); + $13 = (_load_3($12)|0); + $14 = tempRet0; + $15 = (_bitshift64Shl(($13|0),($14|0),3)|0); + $16 = tempRet0; + $17 = (($s) + 13|0); + $18 = (_load_3($17)|0); + $19 = tempRet0; + $20 = (_bitshift64Shl(($18|0),($19|0),2)|0); + $21 = tempRet0; + $22 = (($s) + 16|0); + $23 = (_load_4($22)|0); + $24 = tempRet0; + $25 = (($s) + 20|0); + $26 = (_load_3($25)|0); + $27 = tempRet0; + $28 = (_bitshift64Shl(($26|0),($27|0),7)|0); + $29 = tempRet0; + $30 = (($s) + 23|0); + $31 = (_load_3($30)|0); + $32 = tempRet0; + $33 = (_bitshift64Shl(($31|0),($32|0),5)|0); + $34 = tempRet0; + $35 = (($s) + 26|0); + $36 = (_load_3($35)|0); + $37 = tempRet0; + $38 = (_bitshift64Shl(($36|0),($37|0),4)|0); + $39 = tempRet0; + $40 = (($s) + 29|0); + $41 = (_load_3($40)|0); + $42 = tempRet0; + $43 = (_bitshift64Shl(($41|0),($42|0),2)|0); + $44 = tempRet0; + $45 = $43 & 33554428; + $46 = (_i64Add(($45|0),0,16777216,0)|0); + $47 = tempRet0; + $48 = (_bitshift64Lshr(($46|0),($47|0),25)|0); + $49 = tempRet0; + $50 = (___muldi3(($48|0),($49|0),19,0)|0); + $51 = tempRet0; + $52 = (_i64Add(($50|0),($51|0),($0|0),($1|0))|0); + $53 = tempRet0; + $54 = (_bitshift64Shl(($48|0),($49|0),25)|0); + $55 = tempRet0; + $56 = (_i64Add(($5|0),($6|0),16777216,0)|0); + $57 = tempRet0; + $58 = (_bitshift64Ashr(($56|0),($57|0),25)|0); + $59 = tempRet0; + $60 = (_i64Add(($58|0),($59|0),($10|0),($11|0))|0); + $61 = tempRet0; + $62 = (_bitshift64Shl(($58|0),($59|0),25)|0); + $63 = tempRet0; + $64 = (_i64Subtract(($5|0),($6|0),($62|0),($63|0))|0); + $65 = tempRet0; + $66 = (_i64Add(($15|0),($16|0),16777216,0)|0); + $67 = tempRet0; + $68 = (_bitshift64Ashr(($66|0),($67|0),25)|0); + $69 = tempRet0; + $70 = (_i64Add(($68|0),($69|0),($20|0),($21|0))|0); + $71 = tempRet0; + $72 = (_bitshift64Shl(($68|0),($69|0),25)|0); + $73 = tempRet0; + $74 = (_i64Subtract(($15|0),($16|0),($72|0),($73|0))|0); + $75 = tempRet0; + $76 = (_i64Add(($23|0),($24|0),16777216,0)|0); + $77 = tempRet0; + $78 = (_bitshift64Ashr(($76|0),($77|0),25)|0); + $79 = tempRet0; + $80 = (_i64Add(($28|0),($29|0),($78|0),($79|0))|0); + $81 = tempRet0; + $82 = (_bitshift64Shl(($78|0),($79|0),25)|0); + $83 = tempRet0; + $84 = (_i64Subtract(($23|0),($24|0),($82|0),($83|0))|0); + $85 = tempRet0; + $86 = (_i64Add(($33|0),($34|0),16777216,0)|0); + $87 = tempRet0; + $88 = (_bitshift64Ashr(($86|0),($87|0),25)|0); + $89 = tempRet0; + $90 = (_i64Add(($88|0),($89|0),($38|0),($39|0))|0); + $91 = tempRet0; + $92 = (_bitshift64Shl(($88|0),($89|0),25)|0); + $93 = tempRet0; + $94 = (_i64Add(($52|0),($53|0),33554432,0)|0); + $95 = tempRet0; + $96 = (_bitshift64Ashr(($94|0),($95|0),26)|0); + $97 = tempRet0; + $98 = (_i64Add(($64|0),($65|0),($96|0),($97|0))|0); + $99 = tempRet0; + $100 = (_bitshift64Shl(($96|0),($97|0),26)|0); + $101 = tempRet0; + $102 = (_i64Subtract(($52|0),($53|0),($100|0),($101|0))|0); + $103 = tempRet0; + $104 = (_i64Add(($60|0),($61|0),33554432,0)|0); + $105 = tempRet0; + $106 = (_bitshift64Ashr(($104|0),($105|0),26)|0); + $107 = tempRet0; + $108 = (_i64Add(($74|0),($75|0),($106|0),($107|0))|0); + $109 = tempRet0; + $110 = (_bitshift64Shl(($106|0),($107|0),26)|0); + $111 = tempRet0; + $112 = (_i64Subtract(($60|0),($61|0),($110|0),($111|0))|0); + $113 = tempRet0; + $114 = (_i64Add(($70|0),($71|0),33554432,0)|0); + $115 = tempRet0; + $116 = (_bitshift64Ashr(($114|0),($115|0),26)|0); + $117 = tempRet0; + $118 = (_i64Add(($84|0),($85|0),($116|0),($117|0))|0); + $119 = tempRet0; + $120 = (_bitshift64Shl(($116|0),($117|0),26)|0); + $121 = tempRet0; + $122 = (_i64Subtract(($70|0),($71|0),($120|0),($121|0))|0); + $123 = tempRet0; + $124 = (_i64Add(($80|0),($81|0),33554432,0)|0); + $125 = tempRet0; + $126 = (_bitshift64Ashr(($124|0),($125|0),26)|0); + $127 = tempRet0; + $128 = (_i64Add(($126|0),($127|0),($33|0),($34|0))|0); + $129 = tempRet0; + $130 = (_i64Subtract(($128|0),($129|0),($92|0),($93|0))|0); + $131 = tempRet0; + $132 = (_bitshift64Shl(($126|0),($127|0),26)|0); + $133 = tempRet0; + $134 = (_i64Subtract(($80|0),($81|0),($132|0),($133|0))|0); + $135 = tempRet0; + $136 = (_i64Add(($90|0),($91|0),33554432,0)|0); + $137 = tempRet0; + $138 = (_bitshift64Ashr(($136|0),($137|0),26)|0); + $139 = tempRet0; + $140 = (_i64Add(($138|0),($139|0),($45|0),0)|0); + $141 = tempRet0; + $142 = (_i64Subtract(($140|0),($141|0),($54|0),($55|0))|0); + $143 = tempRet0; + $144 = (_bitshift64Shl(($138|0),($139|0),26)|0); + $145 = tempRet0; + $146 = (_i64Subtract(($90|0),($91|0),($144|0),($145|0))|0); + $147 = tempRet0; + HEAP32[$h>>2] = $102; + $148 = (($h) + 4|0); + HEAP32[$148>>2] = $98; + $149 = (($h) + 8|0); + HEAP32[$149>>2] = $112; + $150 = (($h) + 12|0); + HEAP32[$150>>2] = $108; + $151 = (($h) + 16|0); + HEAP32[$151>>2] = $122; + $152 = (($h) + 20|0); + HEAP32[$152>>2] = $118; + $153 = (($h) + 24|0); + HEAP32[$153>>2] = $134; + $154 = (($h) + 28|0); + HEAP32[$154>>2] = $130; + $155 = (($h) + 32|0); + HEAP32[$155>>2] = $146; + $156 = (($h) + 36|0); + HEAP32[$156>>2] = $142; + STACKTOP = sp;return; +} +function _load_4($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + $15 = (($in) + 3|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16&255; + $18 = (_bitshift64Shl(($17|0),0,24)|0); + $19 = tempRet0; + $20 = $13 | $18; + $21 = $14 | $19; + tempRet0 = $21; + STACKTOP = sp;return ($20|0); +} +function _load_3($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + tempRet0 = $14; + STACKTOP = sp;return ($13|0); +} +function _crypto_sign_ed25519_ref10_fe_invert($out,$z) { + $out = $out|0; + $z = $z|0; + var $0 = 0, $1 = 0, $2 = 0, $exitcond = 0, $exitcond10 = 0, $exitcond11 = 0, $i$74 = 0, $i$83 = 0, $i$92 = 0, $t0 = 0, $t1 = 0, $t2 = 0, $t3 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 160|0; + $t0 = sp + 120|0; + $t1 = sp + 80|0; + $t2 = sp + 40|0; + $t3 = sp; + _crypto_sign_ed25519_ref10_fe_sq($t0,$z); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t1,$z,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t0,$t0,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t0); + _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_mul($t2,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + _crypto_sign_ed25519_ref10_fe_mul($t2,$t3,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); + $i$74 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + $0 = (($i$74) + 1)|0; + $exitcond11 = ($0|0)==(50); + if ($exitcond11) { + break; + } else { + $i$74 = $0; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t2,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t3,$t2); + $i$83 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); + $1 = (($i$83) + 1)|0; + $exitcond10 = ($1|0)==(100); + if ($exitcond10) { + break; + } else { + $i$83 = $1; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t2,$t3,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + $i$92 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + $2 = (($i$92) + 1)|0; + $exitcond = ($2|0)==(50); + if ($exitcond) { + break; + } else { + $i$92 = $2; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($out,$t1,$t0); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_isnegative($f) { + $f = $f|0; + var $0 = 0, $1 = 0, $2 = 0, $s = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 32|0; + $s = sp; + _crypto_sign_ed25519_ref10_fe_tobytes($s,$f); + $0 = HEAP8[$s>>0]|0; + $1 = $0&255; + $2 = $1 & 1; + STACKTOP = sp;return ($2|0); +} +function _crypto_sign_ed25519_ref10_fe_isnonzero($f) { + $f = $f|0; + var $0 = 0, $s = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 32|0; + $s = sp; + _crypto_sign_ed25519_ref10_fe_tobytes($s,$f); + $0 = (_crypto_verify_32_ref($s,8)|0); + STACKTOP = sp;return ($0|0); +} +function _crypto_sign_ed25519_ref10_fe_mul($h,$f,$g) { + $h = $h|0; + $f = $f|0; + $g = $g|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; + var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; + var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; + var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; + var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; + var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; + var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; + var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0; + var $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0; + var $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0; + var $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0; + var $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0; + var $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0; + var $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0; + var $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0; + var $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0; + var $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0; + var $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0; + var $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0; + var $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0; + var $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = HEAP32[$g>>2]|0; + $20 = (($g) + 4|0); + $21 = HEAP32[$20>>2]|0; + $22 = (($g) + 8|0); + $23 = HEAP32[$22>>2]|0; + $24 = (($g) + 12|0); + $25 = HEAP32[$24>>2]|0; + $26 = (($g) + 16|0); + $27 = HEAP32[$26>>2]|0; + $28 = (($g) + 20|0); + $29 = HEAP32[$28>>2]|0; + $30 = (($g) + 24|0); + $31 = HEAP32[$30>>2]|0; + $32 = (($g) + 28|0); + $33 = HEAP32[$32>>2]|0; + $34 = (($g) + 32|0); + $35 = HEAP32[$34>>2]|0; + $36 = (($g) + 36|0); + $37 = HEAP32[$36>>2]|0; + $38 = ($21*19)|0; + $39 = ($23*19)|0; + $40 = ($25*19)|0; + $41 = ($27*19)|0; + $42 = ($29*19)|0; + $43 = ($31*19)|0; + $44 = ($33*19)|0; + $45 = ($35*19)|0; + $46 = ($37*19)|0; + $47 = $2 << 1; + $48 = $6 << 1; + $49 = $10 << 1; + $50 = $14 << 1; + $51 = $18 << 1; + $52 = ($0|0)<(0); + $53 = $52 << 31 >> 31; + $54 = ($19|0)<(0); + $55 = $54 << 31 >> 31; + $56 = (___muldi3(($19|0),($55|0),($0|0),($53|0))|0); + $57 = tempRet0; + $58 = ($21|0)<(0); + $59 = $58 << 31 >> 31; + $60 = (___muldi3(($21|0),($59|0),($0|0),($53|0))|0); + $61 = tempRet0; + $62 = ($23|0)<(0); + $63 = $62 << 31 >> 31; + $64 = (___muldi3(($23|0),($63|0),($0|0),($53|0))|0); + $65 = tempRet0; + $66 = ($25|0)<(0); + $67 = $66 << 31 >> 31; + $68 = (___muldi3(($25|0),($67|0),($0|0),($53|0))|0); + $69 = tempRet0; + $70 = ($27|0)<(0); + $71 = $70 << 31 >> 31; + $72 = (___muldi3(($27|0),($71|0),($0|0),($53|0))|0); + $73 = tempRet0; + $74 = ($29|0)<(0); + $75 = $74 << 31 >> 31; + $76 = (___muldi3(($29|0),($75|0),($0|0),($53|0))|0); + $77 = tempRet0; + $78 = ($31|0)<(0); + $79 = $78 << 31 >> 31; + $80 = (___muldi3(($31|0),($79|0),($0|0),($53|0))|0); + $81 = tempRet0; + $82 = ($33|0)<(0); + $83 = $82 << 31 >> 31; + $84 = (___muldi3(($33|0),($83|0),($0|0),($53|0))|0); + $85 = tempRet0; + $86 = ($35|0)<(0); + $87 = $86 << 31 >> 31; + $88 = (___muldi3(($35|0),($87|0),($0|0),($53|0))|0); + $89 = tempRet0; + $90 = ($37|0)<(0); + $91 = $90 << 31 >> 31; + $92 = (___muldi3(($37|0),($91|0),($0|0),($53|0))|0); + $93 = tempRet0; + $94 = ($2|0)<(0); + $95 = $94 << 31 >> 31; + $96 = (___muldi3(($19|0),($55|0),($2|0),($95|0))|0); + $97 = tempRet0; + $98 = ($47|0)<(0); + $99 = $98 << 31 >> 31; + $100 = (___muldi3(($21|0),($59|0),($47|0),($99|0))|0); + $101 = tempRet0; + $102 = (___muldi3(($23|0),($63|0),($2|0),($95|0))|0); + $103 = tempRet0; + $104 = (___muldi3(($25|0),($67|0),($47|0),($99|0))|0); + $105 = tempRet0; + $106 = (___muldi3(($27|0),($71|0),($2|0),($95|0))|0); + $107 = tempRet0; + $108 = (___muldi3(($29|0),($75|0),($47|0),($99|0))|0); + $109 = tempRet0; + $110 = (___muldi3(($31|0),($79|0),($2|0),($95|0))|0); + $111 = tempRet0; + $112 = (___muldi3(($33|0),($83|0),($47|0),($99|0))|0); + $113 = tempRet0; + $114 = (___muldi3(($35|0),($87|0),($2|0),($95|0))|0); + $115 = tempRet0; + $116 = ($46|0)<(0); + $117 = $116 << 31 >> 31; + $118 = (___muldi3(($46|0),($117|0),($47|0),($99|0))|0); + $119 = tempRet0; + $120 = ($4|0)<(0); + $121 = $120 << 31 >> 31; + $122 = (___muldi3(($19|0),($55|0),($4|0),($121|0))|0); + $123 = tempRet0; + $124 = (___muldi3(($21|0),($59|0),($4|0),($121|0))|0); + $125 = tempRet0; + $126 = (___muldi3(($23|0),($63|0),($4|0),($121|0))|0); + $127 = tempRet0; + $128 = (___muldi3(($25|0),($67|0),($4|0),($121|0))|0); + $129 = tempRet0; + $130 = (___muldi3(($27|0),($71|0),($4|0),($121|0))|0); + $131 = tempRet0; + $132 = (___muldi3(($29|0),($75|0),($4|0),($121|0))|0); + $133 = tempRet0; + $134 = (___muldi3(($31|0),($79|0),($4|0),($121|0))|0); + $135 = tempRet0; + $136 = (___muldi3(($33|0),($83|0),($4|0),($121|0))|0); + $137 = tempRet0; + $138 = ($45|0)<(0); + $139 = $138 << 31 >> 31; + $140 = (___muldi3(($45|0),($139|0),($4|0),($121|0))|0); + $141 = tempRet0; + $142 = (___muldi3(($46|0),($117|0),($4|0),($121|0))|0); + $143 = tempRet0; + $144 = ($6|0)<(0); + $145 = $144 << 31 >> 31; + $146 = (___muldi3(($19|0),($55|0),($6|0),($145|0))|0); + $147 = tempRet0; + $148 = ($48|0)<(0); + $149 = $148 << 31 >> 31; + $150 = (___muldi3(($21|0),($59|0),($48|0),($149|0))|0); + $151 = tempRet0; + $152 = (___muldi3(($23|0),($63|0),($6|0),($145|0))|0); + $153 = tempRet0; + $154 = (___muldi3(($25|0),($67|0),($48|0),($149|0))|0); + $155 = tempRet0; + $156 = (___muldi3(($27|0),($71|0),($6|0),($145|0))|0); + $157 = tempRet0; + $158 = (___muldi3(($29|0),($75|0),($48|0),($149|0))|0); + $159 = tempRet0; + $160 = (___muldi3(($31|0),($79|0),($6|0),($145|0))|0); + $161 = tempRet0; + $162 = ($44|0)<(0); + $163 = $162 << 31 >> 31; + $164 = (___muldi3(($44|0),($163|0),($48|0),($149|0))|0); + $165 = tempRet0; + $166 = (___muldi3(($45|0),($139|0),($6|0),($145|0))|0); + $167 = tempRet0; + $168 = (___muldi3(($46|0),($117|0),($48|0),($149|0))|0); + $169 = tempRet0; + $170 = ($8|0)<(0); + $171 = $170 << 31 >> 31; + $172 = (___muldi3(($19|0),($55|0),($8|0),($171|0))|0); + $173 = tempRet0; + $174 = (___muldi3(($21|0),($59|0),($8|0),($171|0))|0); + $175 = tempRet0; + $176 = (___muldi3(($23|0),($63|0),($8|0),($171|0))|0); + $177 = tempRet0; + $178 = (___muldi3(($25|0),($67|0),($8|0),($171|0))|0); + $179 = tempRet0; + $180 = (___muldi3(($27|0),($71|0),($8|0),($171|0))|0); + $181 = tempRet0; + $182 = (___muldi3(($29|0),($75|0),($8|0),($171|0))|0); + $183 = tempRet0; + $184 = ($43|0)<(0); + $185 = $184 << 31 >> 31; + $186 = (___muldi3(($43|0),($185|0),($8|0),($171|0))|0); + $187 = tempRet0; + $188 = (___muldi3(($44|0),($163|0),($8|0),($171|0))|0); + $189 = tempRet0; + $190 = (___muldi3(($45|0),($139|0),($8|0),($171|0))|0); + $191 = tempRet0; + $192 = (___muldi3(($46|0),($117|0),($8|0),($171|0))|0); + $193 = tempRet0; + $194 = ($10|0)<(0); + $195 = $194 << 31 >> 31; + $196 = (___muldi3(($19|0),($55|0),($10|0),($195|0))|0); + $197 = tempRet0; + $198 = ($49|0)<(0); + $199 = $198 << 31 >> 31; + $200 = (___muldi3(($21|0),($59|0),($49|0),($199|0))|0); + $201 = tempRet0; + $202 = (___muldi3(($23|0),($63|0),($10|0),($195|0))|0); + $203 = tempRet0; + $204 = (___muldi3(($25|0),($67|0),($49|0),($199|0))|0); + $205 = tempRet0; + $206 = (___muldi3(($27|0),($71|0),($10|0),($195|0))|0); + $207 = tempRet0; + $208 = ($42|0)<(0); + $209 = $208 << 31 >> 31; + $210 = (___muldi3(($42|0),($209|0),($49|0),($199|0))|0); + $211 = tempRet0; + $212 = (___muldi3(($43|0),($185|0),($10|0),($195|0))|0); + $213 = tempRet0; + $214 = (___muldi3(($44|0),($163|0),($49|0),($199|0))|0); + $215 = tempRet0; + $216 = (___muldi3(($45|0),($139|0),($10|0),($195|0))|0); + $217 = tempRet0; + $218 = (___muldi3(($46|0),($117|0),($49|0),($199|0))|0); + $219 = tempRet0; + $220 = ($12|0)<(0); + $221 = $220 << 31 >> 31; + $222 = (___muldi3(($19|0),($55|0),($12|0),($221|0))|0); + $223 = tempRet0; + $224 = (___muldi3(($21|0),($59|0),($12|0),($221|0))|0); + $225 = tempRet0; + $226 = (___muldi3(($23|0),($63|0),($12|0),($221|0))|0); + $227 = tempRet0; + $228 = (___muldi3(($25|0),($67|0),($12|0),($221|0))|0); + $229 = tempRet0; + $230 = ($41|0)<(0); + $231 = $230 << 31 >> 31; + $232 = (___muldi3(($41|0),($231|0),($12|0),($221|0))|0); + $233 = tempRet0; + $234 = (___muldi3(($42|0),($209|0),($12|0),($221|0))|0); + $235 = tempRet0; + $236 = (___muldi3(($43|0),($185|0),($12|0),($221|0))|0); + $237 = tempRet0; + $238 = (___muldi3(($44|0),($163|0),($12|0),($221|0))|0); + $239 = tempRet0; + $240 = (___muldi3(($45|0),($139|0),($12|0),($221|0))|0); + $241 = tempRet0; + $242 = (___muldi3(($46|0),($117|0),($12|0),($221|0))|0); + $243 = tempRet0; + $244 = ($14|0)<(0); + $245 = $244 << 31 >> 31; + $246 = (___muldi3(($19|0),($55|0),($14|0),($245|0))|0); + $247 = tempRet0; + $248 = ($50|0)<(0); + $249 = $248 << 31 >> 31; + $250 = (___muldi3(($21|0),($59|0),($50|0),($249|0))|0); + $251 = tempRet0; + $252 = (___muldi3(($23|0),($63|0),($14|0),($245|0))|0); + $253 = tempRet0; + $254 = ($40|0)<(0); + $255 = $254 << 31 >> 31; + $256 = (___muldi3(($40|0),($255|0),($50|0),($249|0))|0); + $257 = tempRet0; + $258 = (___muldi3(($41|0),($231|0),($14|0),($245|0))|0); + $259 = tempRet0; + $260 = (___muldi3(($42|0),($209|0),($50|0),($249|0))|0); + $261 = tempRet0; + $262 = (___muldi3(($43|0),($185|0),($14|0),($245|0))|0); + $263 = tempRet0; + $264 = (___muldi3(($44|0),($163|0),($50|0),($249|0))|0); + $265 = tempRet0; + $266 = (___muldi3(($45|0),($139|0),($14|0),($245|0))|0); + $267 = tempRet0; + $268 = (___muldi3(($46|0),($117|0),($50|0),($249|0))|0); + $269 = tempRet0; + $270 = ($16|0)<(0); + $271 = $270 << 31 >> 31; + $272 = (___muldi3(($19|0),($55|0),($16|0),($271|0))|0); + $273 = tempRet0; + $274 = (___muldi3(($21|0),($59|0),($16|0),($271|0))|0); + $275 = tempRet0; + $276 = ($39|0)<(0); + $277 = $276 << 31 >> 31; + $278 = (___muldi3(($39|0),($277|0),($16|0),($271|0))|0); + $279 = tempRet0; + $280 = (___muldi3(($40|0),($255|0),($16|0),($271|0))|0); + $281 = tempRet0; + $282 = (___muldi3(($41|0),($231|0),($16|0),($271|0))|0); + $283 = tempRet0; + $284 = (___muldi3(($42|0),($209|0),($16|0),($271|0))|0); + $285 = tempRet0; + $286 = (___muldi3(($43|0),($185|0),($16|0),($271|0))|0); + $287 = tempRet0; + $288 = (___muldi3(($44|0),($163|0),($16|0),($271|0))|0); + $289 = tempRet0; + $290 = (___muldi3(($45|0),($139|0),($16|0),($271|0))|0); + $291 = tempRet0; + $292 = (___muldi3(($46|0),($117|0),($16|0),($271|0))|0); + $293 = tempRet0; + $294 = ($18|0)<(0); + $295 = $294 << 31 >> 31; + $296 = (___muldi3(($19|0),($55|0),($18|0),($295|0))|0); + $297 = tempRet0; + $298 = ($51|0)<(0); + $299 = $298 << 31 >> 31; + $300 = ($38|0)<(0); + $301 = $300 << 31 >> 31; + $302 = (___muldi3(($38|0),($301|0),($51|0),($299|0))|0); + $303 = tempRet0; + $304 = (___muldi3(($39|0),($277|0),($18|0),($295|0))|0); + $305 = tempRet0; + $306 = (___muldi3(($40|0),($255|0),($51|0),($299|0))|0); + $307 = tempRet0; + $308 = (___muldi3(($41|0),($231|0),($18|0),($295|0))|0); + $309 = tempRet0; + $310 = (___muldi3(($42|0),($209|0),($51|0),($299|0))|0); + $311 = tempRet0; + $312 = (___muldi3(($43|0),($185|0),($18|0),($295|0))|0); + $313 = tempRet0; + $314 = (___muldi3(($44|0),($163|0),($51|0),($299|0))|0); + $315 = tempRet0; + $316 = (___muldi3(($45|0),($139|0),($18|0),($295|0))|0); + $317 = tempRet0; + $318 = (___muldi3(($46|0),($117|0),($51|0),($299|0))|0); + $319 = tempRet0; + $320 = (_i64Add(($302|0),($303|0),($56|0),($57|0))|0); + $321 = tempRet0; + $322 = (_i64Add(($320|0),($321|0),($278|0),($279|0))|0); + $323 = tempRet0; + $324 = (_i64Add(($322|0),($323|0),($256|0),($257|0))|0); + $325 = tempRet0; + $326 = (_i64Add(($324|0),($325|0),($232|0),($233|0))|0); + $327 = tempRet0; + $328 = (_i64Add(($326|0),($327|0),($210|0),($211|0))|0); + $329 = tempRet0; + $330 = (_i64Add(($328|0),($329|0),($186|0),($187|0))|0); + $331 = tempRet0; + $332 = (_i64Add(($330|0),($331|0),($164|0),($165|0))|0); + $333 = tempRet0; + $334 = (_i64Add(($332|0),($333|0),($140|0),($141|0))|0); + $335 = tempRet0; + $336 = (_i64Add(($334|0),($335|0),($118|0),($119|0))|0); + $337 = tempRet0; + $338 = (_i64Add(($60|0),($61|0),($96|0),($97|0))|0); + $339 = tempRet0; + $340 = (_i64Add(($150|0),($151|0),($172|0),($173|0))|0); + $341 = tempRet0; + $342 = (_i64Add(($340|0),($341|0),($126|0),($127|0))|0); + $343 = tempRet0; + $344 = (_i64Add(($342|0),($343|0),($104|0),($105|0))|0); + $345 = tempRet0; + $346 = (_i64Add(($344|0),($345|0),($72|0),($73|0))|0); + $347 = tempRet0; + $348 = (_i64Add(($346|0),($347|0),($310|0),($311|0))|0); + $349 = tempRet0; + $350 = (_i64Add(($348|0),($349|0),($286|0),($287|0))|0); + $351 = tempRet0; + $352 = (_i64Add(($350|0),($351|0),($264|0),($265|0))|0); + $353 = tempRet0; + $354 = (_i64Add(($352|0),($353|0),($240|0),($241|0))|0); + $355 = tempRet0; + $356 = (_i64Add(($354|0),($355|0),($218|0),($219|0))|0); + $357 = tempRet0; + $358 = (_i64Add(($336|0),($337|0),33554432,0)|0); + $359 = tempRet0; + $360 = (_bitshift64Ashr(($358|0),($359|0),26)|0); + $361 = tempRet0; + $362 = (_i64Add(($338|0),($339|0),($304|0),($305|0))|0); + $363 = tempRet0; + $364 = (_i64Add(($362|0),($363|0),($280|0),($281|0))|0); + $365 = tempRet0; + $366 = (_i64Add(($364|0),($365|0),($258|0),($259|0))|0); + $367 = tempRet0; + $368 = (_i64Add(($366|0),($367|0),($234|0),($235|0))|0); + $369 = tempRet0; + $370 = (_i64Add(($368|0),($369|0),($212|0),($213|0))|0); + $371 = tempRet0; + $372 = (_i64Add(($370|0),($371|0),($188|0),($189|0))|0); + $373 = tempRet0; + $374 = (_i64Add(($372|0),($373|0),($166|0),($167|0))|0); + $375 = tempRet0; + $376 = (_i64Add(($374|0),($375|0),($142|0),($143|0))|0); + $377 = tempRet0; + $378 = (_i64Add(($376|0),($377|0),($360|0),($361|0))|0); + $379 = tempRet0; + $380 = (_bitshift64Shl(($360|0),($361|0),26)|0); + $381 = tempRet0; + $382 = (_i64Subtract(($336|0),($337|0),($380|0),($381|0))|0); + $383 = tempRet0; + $384 = (_i64Add(($356|0),($357|0),33554432,0)|0); + $385 = tempRet0; + $386 = (_bitshift64Ashr(($384|0),($385|0),26)|0); + $387 = tempRet0; + $388 = (_i64Add(($174|0),($175|0),($196|0),($197|0))|0); + $389 = tempRet0; + $390 = (_i64Add(($388|0),($389|0),($152|0),($153|0))|0); + $391 = tempRet0; + $392 = (_i64Add(($390|0),($391|0),($128|0),($129|0))|0); + $393 = tempRet0; + $394 = (_i64Add(($392|0),($393|0),($106|0),($107|0))|0); + $395 = tempRet0; + $396 = (_i64Add(($394|0),($395|0),($76|0),($77|0))|0); + $397 = tempRet0; + $398 = (_i64Add(($396|0),($397|0),($312|0),($313|0))|0); + $399 = tempRet0; + $400 = (_i64Add(($398|0),($399|0),($288|0),($289|0))|0); + $401 = tempRet0; + $402 = (_i64Add(($400|0),($401|0),($266|0),($267|0))|0); + $403 = tempRet0; + $404 = (_i64Add(($402|0),($403|0),($242|0),($243|0))|0); + $405 = tempRet0; + $406 = (_i64Add(($404|0),($405|0),($386|0),($387|0))|0); + $407 = tempRet0; + $408 = (_bitshift64Shl(($386|0),($387|0),26)|0); + $409 = tempRet0; + $410 = (_i64Subtract(($356|0),($357|0),($408|0),($409|0))|0); + $411 = tempRet0; + $412 = (_i64Add(($378|0),($379|0),16777216,0)|0); + $413 = tempRet0; + $414 = (_bitshift64Ashr(($412|0),($413|0),25)|0); + $415 = tempRet0; + $416 = (_i64Add(($100|0),($101|0),($122|0),($123|0))|0); + $417 = tempRet0; + $418 = (_i64Add(($416|0),($417|0),($64|0),($65|0))|0); + $419 = tempRet0; + $420 = (_i64Add(($418|0),($419|0),($306|0),($307|0))|0); + $421 = tempRet0; + $422 = (_i64Add(($420|0),($421|0),($282|0),($283|0))|0); + $423 = tempRet0; + $424 = (_i64Add(($422|0),($423|0),($260|0),($261|0))|0); + $425 = tempRet0; + $426 = (_i64Add(($424|0),($425|0),($236|0),($237|0))|0); + $427 = tempRet0; + $428 = (_i64Add(($426|0),($427|0),($214|0),($215|0))|0); + $429 = tempRet0; + $430 = (_i64Add(($428|0),($429|0),($190|0),($191|0))|0); + $431 = tempRet0; + $432 = (_i64Add(($430|0),($431|0),($168|0),($169|0))|0); + $433 = tempRet0; + $434 = (_i64Add(($432|0),($433|0),($414|0),($415|0))|0); + $435 = tempRet0; + $436 = (_bitshift64Shl(($414|0),($415|0),25)|0); + $437 = tempRet0; + $438 = (_i64Subtract(($378|0),($379|0),($436|0),($437|0))|0); + $439 = tempRet0; + $440 = (_i64Add(($406|0),($407|0),16777216,0)|0); + $441 = tempRet0; + $442 = (_bitshift64Ashr(($440|0),($441|0),25)|0); + $443 = tempRet0; + $444 = (_i64Add(($200|0),($201|0),($222|0),($223|0))|0); + $445 = tempRet0; + $446 = (_i64Add(($444|0),($445|0),($176|0),($177|0))|0); + $447 = tempRet0; + $448 = (_i64Add(($446|0),($447|0),($154|0),($155|0))|0); + $449 = tempRet0; + $450 = (_i64Add(($448|0),($449|0),($130|0),($131|0))|0); + $451 = tempRet0; + $452 = (_i64Add(($450|0),($451|0),($108|0),($109|0))|0); + $453 = tempRet0; + $454 = (_i64Add(($452|0),($453|0),($80|0),($81|0))|0); + $455 = tempRet0; + $456 = (_i64Add(($454|0),($455|0),($314|0),($315|0))|0); + $457 = tempRet0; + $458 = (_i64Add(($456|0),($457|0),($290|0),($291|0))|0); + $459 = tempRet0; + $460 = (_i64Add(($458|0),($459|0),($268|0),($269|0))|0); + $461 = tempRet0; + $462 = (_i64Add(($460|0),($461|0),($442|0),($443|0))|0); + $463 = tempRet0; + $464 = (_bitshift64Shl(($442|0),($443|0),25)|0); + $465 = tempRet0; + $466 = (_i64Subtract(($406|0),($407|0),($464|0),($465|0))|0); + $467 = tempRet0; + $468 = (_i64Add(($434|0),($435|0),33554432,0)|0); + $469 = tempRet0; + $470 = (_bitshift64Ashr(($468|0),($469|0),26)|0); + $471 = tempRet0; + $472 = (_i64Add(($124|0),($125|0),($146|0),($147|0))|0); + $473 = tempRet0; + $474 = (_i64Add(($472|0),($473|0),($102|0),($103|0))|0); + $475 = tempRet0; + $476 = (_i64Add(($474|0),($475|0),($68|0),($69|0))|0); + $477 = tempRet0; + $478 = (_i64Add(($476|0),($477|0),($308|0),($309|0))|0); + $479 = tempRet0; + $480 = (_i64Add(($478|0),($479|0),($284|0),($285|0))|0); + $481 = tempRet0; + $482 = (_i64Add(($480|0),($481|0),($262|0),($263|0))|0); + $483 = tempRet0; + $484 = (_i64Add(($482|0),($483|0),($238|0),($239|0))|0); + $485 = tempRet0; + $486 = (_i64Add(($484|0),($485|0),($216|0),($217|0))|0); + $487 = tempRet0; + $488 = (_i64Add(($486|0),($487|0),($192|0),($193|0))|0); + $489 = tempRet0; + $490 = (_i64Add(($488|0),($489|0),($470|0),($471|0))|0); + $491 = tempRet0; + $492 = (_bitshift64Shl(($470|0),($471|0),26)|0); + $493 = tempRet0; + $494 = (_i64Subtract(($434|0),($435|0),($492|0),($493|0))|0); + $495 = tempRet0; + $496 = (_i64Add(($462|0),($463|0),33554432,0)|0); + $497 = tempRet0; + $498 = (_bitshift64Ashr(($496|0),($497|0),26)|0); + $499 = tempRet0; + $500 = (_i64Add(($224|0),($225|0),($246|0),($247|0))|0); + $501 = tempRet0; + $502 = (_i64Add(($500|0),($501|0),($202|0),($203|0))|0); + $503 = tempRet0; + $504 = (_i64Add(($502|0),($503|0),($178|0),($179|0))|0); + $505 = tempRet0; + $506 = (_i64Add(($504|0),($505|0),($156|0),($157|0))|0); + $507 = tempRet0; + $508 = (_i64Add(($506|0),($507|0),($132|0),($133|0))|0); + $509 = tempRet0; + $510 = (_i64Add(($508|0),($509|0),($110|0),($111|0))|0); + $511 = tempRet0; + $512 = (_i64Add(($510|0),($511|0),($84|0),($85|0))|0); + $513 = tempRet0; + $514 = (_i64Add(($512|0),($513|0),($316|0),($317|0))|0); + $515 = tempRet0; + $516 = (_i64Add(($514|0),($515|0),($292|0),($293|0))|0); + $517 = tempRet0; + $518 = (_i64Add(($516|0),($517|0),($498|0),($499|0))|0); + $519 = tempRet0; + $520 = (_bitshift64Shl(($498|0),($499|0),26)|0); + $521 = tempRet0; + $522 = (_i64Subtract(($462|0),($463|0),($520|0),($521|0))|0); + $523 = tempRet0; + $524 = (_i64Add(($490|0),($491|0),16777216,0)|0); + $525 = tempRet0; + $526 = (_bitshift64Ashr(($524|0),($525|0),25)|0); + $527 = tempRet0; + $528 = (_i64Add(($526|0),($527|0),($410|0),($411|0))|0); + $529 = tempRet0; + $530 = (_bitshift64Shl(($526|0),($527|0),25)|0); + $531 = tempRet0; + $532 = (_i64Subtract(($490|0),($491|0),($530|0),($531|0))|0); + $533 = tempRet0; + $534 = (_i64Add(($518|0),($519|0),16777216,0)|0); + $535 = tempRet0; + $536 = (_bitshift64Ashr(($534|0),($535|0),25)|0); + $537 = tempRet0; + $538 = (_i64Add(($250|0),($251|0),($272|0),($273|0))|0); + $539 = tempRet0; + $540 = (_i64Add(($538|0),($539|0),($226|0),($227|0))|0); + $541 = tempRet0; + $542 = (_i64Add(($540|0),($541|0),($204|0),($205|0))|0); + $543 = tempRet0; + $544 = (_i64Add(($542|0),($543|0),($180|0),($181|0))|0); + $545 = tempRet0; + $546 = (_i64Add(($544|0),($545|0),($158|0),($159|0))|0); + $547 = tempRet0; + $548 = (_i64Add(($546|0),($547|0),($134|0),($135|0))|0); + $549 = tempRet0; + $550 = (_i64Add(($548|0),($549|0),($112|0),($113|0))|0); + $551 = tempRet0; + $552 = (_i64Add(($550|0),($551|0),($88|0),($89|0))|0); + $553 = tempRet0; + $554 = (_i64Add(($552|0),($553|0),($318|0),($319|0))|0); + $555 = tempRet0; + $556 = (_i64Add(($554|0),($555|0),($536|0),($537|0))|0); + $557 = tempRet0; + $558 = (_bitshift64Shl(($536|0),($537|0),25)|0); + $559 = tempRet0; + $560 = (_i64Subtract(($518|0),($519|0),($558|0),($559|0))|0); + $561 = tempRet0; + $562 = (_i64Add(($528|0),($529|0),33554432,0)|0); + $563 = tempRet0; + $564 = (_bitshift64Ashr(($562|0),($563|0),26)|0); + $565 = tempRet0; + $566 = (_i64Add(($466|0),($467|0),($564|0),($565|0))|0); + $567 = tempRet0; + $568 = (_bitshift64Shl(($564|0),($565|0),26)|0); + $569 = tempRet0; + $570 = (_i64Subtract(($528|0),($529|0),($568|0),($569|0))|0); + $571 = tempRet0; + $572 = (_i64Add(($556|0),($557|0),33554432,0)|0); + $573 = tempRet0; + $574 = (_bitshift64Ashr(($572|0),($573|0),26)|0); + $575 = tempRet0; + $576 = (_i64Add(($274|0),($275|0),($296|0),($297|0))|0); + $577 = tempRet0; + $578 = (_i64Add(($576|0),($577|0),($252|0),($253|0))|0); + $579 = tempRet0; + $580 = (_i64Add(($578|0),($579|0),($228|0),($229|0))|0); + $581 = tempRet0; + $582 = (_i64Add(($580|0),($581|0),($206|0),($207|0))|0); + $583 = tempRet0; + $584 = (_i64Add(($582|0),($583|0),($182|0),($183|0))|0); + $585 = tempRet0; + $586 = (_i64Add(($584|0),($585|0),($160|0),($161|0))|0); + $587 = tempRet0; + $588 = (_i64Add(($586|0),($587|0),($136|0),($137|0))|0); + $589 = tempRet0; + $590 = (_i64Add(($588|0),($589|0),($114|0),($115|0))|0); + $591 = tempRet0; + $592 = (_i64Add(($590|0),($591|0),($92|0),($93|0))|0); + $593 = tempRet0; + $594 = (_i64Add(($592|0),($593|0),($574|0),($575|0))|0); + $595 = tempRet0; + $596 = (_bitshift64Shl(($574|0),($575|0),26)|0); + $597 = tempRet0; + $598 = (_i64Subtract(($556|0),($557|0),($596|0),($597|0))|0); + $599 = tempRet0; + $600 = (_i64Add(($594|0),($595|0),16777216,0)|0); + $601 = tempRet0; + $602 = (_bitshift64Ashr(($600|0),($601|0),25)|0); + $603 = tempRet0; + $604 = (___muldi3(($602|0),($603|0),19,0)|0); + $605 = tempRet0; + $606 = (_i64Add(($604|0),($605|0),($382|0),($383|0))|0); + $607 = tempRet0; + $608 = (_bitshift64Shl(($602|0),($603|0),25)|0); + $609 = tempRet0; + $610 = (_i64Subtract(($594|0),($595|0),($608|0),($609|0))|0); + $611 = tempRet0; + $612 = (_i64Add(($606|0),($607|0),33554432,0)|0); + $613 = tempRet0; + $614 = (_bitshift64Ashr(($612|0),($613|0),26)|0); + $615 = tempRet0; + $616 = (_i64Add(($438|0),($439|0),($614|0),($615|0))|0); + $617 = tempRet0; + $618 = (_bitshift64Shl(($614|0),($615|0),26)|0); + $619 = tempRet0; + $620 = (_i64Subtract(($606|0),($607|0),($618|0),($619|0))|0); + $621 = tempRet0; + HEAP32[$h>>2] = $620; + $622 = (($h) + 4|0); + HEAP32[$622>>2] = $616; + $623 = (($h) + 8|0); + HEAP32[$623>>2] = $494; + $624 = (($h) + 12|0); + HEAP32[$624>>2] = $532; + $625 = (($h) + 16|0); + HEAP32[$625>>2] = $570; + $626 = (($h) + 20|0); + HEAP32[$626>>2] = $566; + $627 = (($h) + 24|0); + HEAP32[$627>>2] = $522; + $628 = (($h) + 28|0); + HEAP32[$628>>2] = $560; + $629 = (($h) + 32|0); + HEAP32[$629>>2] = $598; + $630 = (($h) + 36|0); + HEAP32[$630>>2] = $610; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_neg($h,$f) { + $h = $h|0; + $f = $f|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = (0 - ($0))|0; + $20 = (0 - ($2))|0; + $21 = (0 - ($4))|0; + $22 = (0 - ($6))|0; + $23 = (0 - ($8))|0; + $24 = (0 - ($10))|0; + $25 = (0 - ($12))|0; + $26 = (0 - ($14))|0; + $27 = (0 - ($16))|0; + $28 = (0 - ($18))|0; + HEAP32[$h>>2] = $19; + $29 = (($h) + 4|0); + HEAP32[$29>>2] = $20; + $30 = (($h) + 8|0); + HEAP32[$30>>2] = $21; + $31 = (($h) + 12|0); + HEAP32[$31>>2] = $22; + $32 = (($h) + 16|0); + HEAP32[$32>>2] = $23; + $33 = (($h) + 20|0); + HEAP32[$33>>2] = $24; + $34 = (($h) + 24|0); + HEAP32[$34>>2] = $25; + $35 = (($h) + 28|0); + HEAP32[$35>>2] = $26; + $36 = (($h) + 32|0); + HEAP32[$36>>2] = $27; + $37 = (($h) + 36|0); + HEAP32[$37>>2] = $28; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_pow22523($out,$z) { + $out = $out|0; + $z = $z|0; + var $0 = 0, $1 = 0, $2 = 0, $exitcond = 0, $exitcond10 = 0, $exitcond11 = 0, $i$74 = 0, $i$83 = 0, $i$92 = 0, $t0 = 0, $t1 = 0, $t2 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $t0 = sp + 80|0; + $t1 = sp + 40|0; + $t2 = sp; + _crypto_sign_ed25519_ref10_fe_sq($t0,$z); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t1,$z,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t0,$t0,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); + _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); + $i$74 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + $0 = (($i$74) + 1)|0; + $exitcond11 = ($0|0)==(50); + if ($exitcond11) { + break; + } else { + $i$74 = $0; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); + $i$83 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); + $1 = (($i$83) + 1)|0; + $exitcond10 = ($1|0)==(100); + if ($exitcond10) { + break; + } else { + $i$83 = $1; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + $i$92 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); + $2 = (($i$92) + 1)|0; + $exitcond = ($2|0)==(50); + if ($exitcond) { + break; + } else { + $i$92 = $2; + } + } + _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); + _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); + _crypto_sign_ed25519_ref10_fe_mul($out,$t0,$z); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_sq($h,$f) { + $h = $h|0; + $f = $f|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; + var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; + var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; + var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; + var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; + var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; + var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; + var $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0; + var $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0; + var $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = $0 << 1; + $20 = $2 << 1; + $21 = $4 << 1; + $22 = $6 << 1; + $23 = $8 << 1; + $24 = $10 << 1; + $25 = $12 << 1; + $26 = $14 << 1; + $27 = ($10*38)|0; + $28 = ($12*19)|0; + $29 = ($14*38)|0; + $30 = ($16*19)|0; + $31 = ($18*38)|0; + $32 = ($0|0)<(0); + $33 = $32 << 31 >> 31; + $34 = (___muldi3(($0|0),($33|0),($0|0),($33|0))|0); + $35 = tempRet0; + $36 = ($19|0)<(0); + $37 = $36 << 31 >> 31; + $38 = ($2|0)<(0); + $39 = $38 << 31 >> 31; + $40 = (___muldi3(($19|0),($37|0),($2|0),($39|0))|0); + $41 = tempRet0; + $42 = ($4|0)<(0); + $43 = $42 << 31 >> 31; + $44 = (___muldi3(($4|0),($43|0),($19|0),($37|0))|0); + $45 = tempRet0; + $46 = ($6|0)<(0); + $47 = $46 << 31 >> 31; + $48 = (___muldi3(($6|0),($47|0),($19|0),($37|0))|0); + $49 = tempRet0; + $50 = ($8|0)<(0); + $51 = $50 << 31 >> 31; + $52 = (___muldi3(($8|0),($51|0),($19|0),($37|0))|0); + $53 = tempRet0; + $54 = ($10|0)<(0); + $55 = $54 << 31 >> 31; + $56 = (___muldi3(($10|0),($55|0),($19|0),($37|0))|0); + $57 = tempRet0; + $58 = ($12|0)<(0); + $59 = $58 << 31 >> 31; + $60 = (___muldi3(($12|0),($59|0),($19|0),($37|0))|0); + $61 = tempRet0; + $62 = ($14|0)<(0); + $63 = $62 << 31 >> 31; + $64 = (___muldi3(($14|0),($63|0),($19|0),($37|0))|0); + $65 = tempRet0; + $66 = ($16|0)<(0); + $67 = $66 << 31 >> 31; + $68 = (___muldi3(($16|0),($67|0),($19|0),($37|0))|0); + $69 = tempRet0; + $70 = ($18|0)<(0); + $71 = $70 << 31 >> 31; + $72 = (___muldi3(($18|0),($71|0),($19|0),($37|0))|0); + $73 = tempRet0; + $74 = ($20|0)<(0); + $75 = $74 << 31 >> 31; + $76 = (___muldi3(($20|0),($75|0),($2|0),($39|0))|0); + $77 = tempRet0; + $78 = (___muldi3(($20|0),($75|0),($4|0),($43|0))|0); + $79 = tempRet0; + $80 = ($22|0)<(0); + $81 = $80 << 31 >> 31; + $82 = (___muldi3(($22|0),($81|0),($20|0),($75|0))|0); + $83 = tempRet0; + $84 = (___muldi3(($8|0),($51|0),($20|0),($75|0))|0); + $85 = tempRet0; + $86 = ($24|0)<(0); + $87 = $86 << 31 >> 31; + $88 = (___muldi3(($24|0),($87|0),($20|0),($75|0))|0); + $89 = tempRet0; + $90 = (___muldi3(($12|0),($59|0),($20|0),($75|0))|0); + $91 = tempRet0; + $92 = ($26|0)<(0); + $93 = $92 << 31 >> 31; + $94 = (___muldi3(($26|0),($93|0),($20|0),($75|0))|0); + $95 = tempRet0; + $96 = (___muldi3(($16|0),($67|0),($20|0),($75|0))|0); + $97 = tempRet0; + $98 = ($31|0)<(0); + $99 = $98 << 31 >> 31; + $100 = (___muldi3(($31|0),($99|0),($20|0),($75|0))|0); + $101 = tempRet0; + $102 = (___muldi3(($4|0),($43|0),($4|0),($43|0))|0); + $103 = tempRet0; + $104 = ($21|0)<(0); + $105 = $104 << 31 >> 31; + $106 = (___muldi3(($21|0),($105|0),($6|0),($47|0))|0); + $107 = tempRet0; + $108 = (___muldi3(($8|0),($51|0),($21|0),($105|0))|0); + $109 = tempRet0; + $110 = (___muldi3(($10|0),($55|0),($21|0),($105|0))|0); + $111 = tempRet0; + $112 = (___muldi3(($12|0),($59|0),($21|0),($105|0))|0); + $113 = tempRet0; + $114 = (___muldi3(($14|0),($63|0),($21|0),($105|0))|0); + $115 = tempRet0; + $116 = ($30|0)<(0); + $117 = $116 << 31 >> 31; + $118 = (___muldi3(($30|0),($117|0),($21|0),($105|0))|0); + $119 = tempRet0; + $120 = (___muldi3(($31|0),($99|0),($4|0),($43|0))|0); + $121 = tempRet0; + $122 = (___muldi3(($22|0),($81|0),($6|0),($47|0))|0); + $123 = tempRet0; + $124 = (___muldi3(($22|0),($81|0),($8|0),($51|0))|0); + $125 = tempRet0; + $126 = (___muldi3(($24|0),($87|0),($22|0),($81|0))|0); + $127 = tempRet0; + $128 = (___muldi3(($12|0),($59|0),($22|0),($81|0))|0); + $129 = tempRet0; + $130 = ($29|0)<(0); + $131 = $130 << 31 >> 31; + $132 = (___muldi3(($29|0),($131|0),($22|0),($81|0))|0); + $133 = tempRet0; + $134 = (___muldi3(($30|0),($117|0),($22|0),($81|0))|0); + $135 = tempRet0; + $136 = (___muldi3(($31|0),($99|0),($22|0),($81|0))|0); + $137 = tempRet0; + $138 = (___muldi3(($8|0),($51|0),($8|0),($51|0))|0); + $139 = tempRet0; + $140 = ($23|0)<(0); + $141 = $140 << 31 >> 31; + $142 = (___muldi3(($23|0),($141|0),($10|0),($55|0))|0); + $143 = tempRet0; + $144 = ($28|0)<(0); + $145 = $144 << 31 >> 31; + $146 = (___muldi3(($28|0),($145|0),($23|0),($141|0))|0); + $147 = tempRet0; + $148 = (___muldi3(($29|0),($131|0),($8|0),($51|0))|0); + $149 = tempRet0; + $150 = (___muldi3(($30|0),($117|0),($23|0),($141|0))|0); + $151 = tempRet0; + $152 = (___muldi3(($31|0),($99|0),($8|0),($51|0))|0); + $153 = tempRet0; + $154 = ($27|0)<(0); + $155 = $154 << 31 >> 31; + $156 = (___muldi3(($27|0),($155|0),($10|0),($55|0))|0); + $157 = tempRet0; + $158 = (___muldi3(($28|0),($145|0),($24|0),($87|0))|0); + $159 = tempRet0; + $160 = (___muldi3(($29|0),($131|0),($24|0),($87|0))|0); + $161 = tempRet0; + $162 = (___muldi3(($30|0),($117|0),($24|0),($87|0))|0); + $163 = tempRet0; + $164 = (___muldi3(($31|0),($99|0),($24|0),($87|0))|0); + $165 = tempRet0; + $166 = (___muldi3(($28|0),($145|0),($12|0),($59|0))|0); + $167 = tempRet0; + $168 = (___muldi3(($29|0),($131|0),($12|0),($59|0))|0); + $169 = tempRet0; + $170 = ($25|0)<(0); + $171 = $170 << 31 >> 31; + $172 = (___muldi3(($30|0),($117|0),($25|0),($171|0))|0); + $173 = tempRet0; + $174 = (___muldi3(($31|0),($99|0),($12|0),($59|0))|0); + $175 = tempRet0; + $176 = (___muldi3(($29|0),($131|0),($14|0),($63|0))|0); + $177 = tempRet0; + $178 = (___muldi3(($30|0),($117|0),($26|0),($93|0))|0); + $179 = tempRet0; + $180 = (___muldi3(($31|0),($99|0),($26|0),($93|0))|0); + $181 = tempRet0; + $182 = (___muldi3(($30|0),($117|0),($16|0),($67|0))|0); + $183 = tempRet0; + $184 = (___muldi3(($31|0),($99|0),($16|0),($67|0))|0); + $185 = tempRet0; + $186 = (___muldi3(($31|0),($99|0),($18|0),($71|0))|0); + $187 = tempRet0; + $188 = (_i64Add(($156|0),($157|0),($34|0),($35|0))|0); + $189 = tempRet0; + $190 = (_i64Add(($188|0),($189|0),($146|0),($147|0))|0); + $191 = tempRet0; + $192 = (_i64Add(($190|0),($191|0),($132|0),($133|0))|0); + $193 = tempRet0; + $194 = (_i64Add(($192|0),($193|0),($118|0),($119|0))|0); + $195 = tempRet0; + $196 = (_i64Add(($194|0),($195|0),($100|0),($101|0))|0); + $197 = tempRet0; + $198 = (_i64Add(($44|0),($45|0),($76|0),($77|0))|0); + $199 = tempRet0; + $200 = (_i64Add(($48|0),($49|0),($78|0),($79|0))|0); + $201 = tempRet0; + $202 = (_i64Add(($82|0),($83|0),($102|0),($103|0))|0); + $203 = tempRet0; + $204 = (_i64Add(($202|0),($203|0),($52|0),($53|0))|0); + $205 = tempRet0; + $206 = (_i64Add(($204|0),($205|0),($176|0),($177|0))|0); + $207 = tempRet0; + $208 = (_i64Add(($206|0),($207|0),($172|0),($173|0))|0); + $209 = tempRet0; + $210 = (_i64Add(($208|0),($209|0),($164|0),($165|0))|0); + $211 = tempRet0; + $212 = (_i64Add(($196|0),($197|0),33554432,0)|0); + $213 = tempRet0; + $214 = (_bitshift64Ashr(($212|0),($213|0),26)|0); + $215 = tempRet0; + $216 = (_i64Add(($158|0),($159|0),($40|0),($41|0))|0); + $217 = tempRet0; + $218 = (_i64Add(($216|0),($217|0),($148|0),($149|0))|0); + $219 = tempRet0; + $220 = (_i64Add(($218|0),($219|0),($134|0),($135|0))|0); + $221 = tempRet0; + $222 = (_i64Add(($220|0),($221|0),($120|0),($121|0))|0); + $223 = tempRet0; + $224 = (_i64Add(($222|0),($223|0),($214|0),($215|0))|0); + $225 = tempRet0; + $226 = (_bitshift64Shl(($214|0),($215|0),26)|0); + $227 = tempRet0; + $228 = (_i64Subtract(($196|0),($197|0),($226|0),($227|0))|0); + $229 = tempRet0; + $230 = (_i64Add(($210|0),($211|0),33554432,0)|0); + $231 = tempRet0; + $232 = (_bitshift64Ashr(($230|0),($231|0),26)|0); + $233 = tempRet0; + $234 = (_i64Add(($84|0),($85|0),($106|0),($107|0))|0); + $235 = tempRet0; + $236 = (_i64Add(($234|0),($235|0),($56|0),($57|0))|0); + $237 = tempRet0; + $238 = (_i64Add(($236|0),($237|0),($178|0),($179|0))|0); + $239 = tempRet0; + $240 = (_i64Add(($238|0),($239|0),($174|0),($175|0))|0); + $241 = tempRet0; + $242 = (_i64Add(($240|0),($241|0),($232|0),($233|0))|0); + $243 = tempRet0; + $244 = (_bitshift64Shl(($232|0),($233|0),26)|0); + $245 = tempRet0; + $246 = (_i64Subtract(($210|0),($211|0),($244|0),($245|0))|0); + $247 = tempRet0; + $248 = (_i64Add(($224|0),($225|0),16777216,0)|0); + $249 = tempRet0; + $250 = (_bitshift64Ashr(($248|0),($249|0),25)|0); + $251 = tempRet0; + $252 = (_i64Add(($198|0),($199|0),($166|0),($167|0))|0); + $253 = tempRet0; + $254 = (_i64Add(($252|0),($253|0),($160|0),($161|0))|0); + $255 = tempRet0; + $256 = (_i64Add(($254|0),($255|0),($150|0),($151|0))|0); + $257 = tempRet0; + $258 = (_i64Add(($256|0),($257|0),($136|0),($137|0))|0); + $259 = tempRet0; + $260 = (_i64Add(($258|0),($259|0),($250|0),($251|0))|0); + $261 = tempRet0; + $262 = (_bitshift64Shl(($250|0),($251|0),25)|0); + $263 = tempRet0; + $264 = (_i64Subtract(($224|0),($225|0),($262|0),($263|0))|0); + $265 = tempRet0; + $266 = (_i64Add(($242|0),($243|0),16777216,0)|0); + $267 = tempRet0; + $268 = (_bitshift64Ashr(($266|0),($267|0),25)|0); + $269 = tempRet0; + $270 = (_i64Add(($122|0),($123|0),($108|0),($109|0))|0); + $271 = tempRet0; + $272 = (_i64Add(($270|0),($271|0),($88|0),($89|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($60|0),($61|0))|0); + $275 = tempRet0; + $276 = (_i64Add(($274|0),($275|0),($182|0),($183|0))|0); + $277 = tempRet0; + $278 = (_i64Add(($276|0),($277|0),($180|0),($181|0))|0); + $279 = tempRet0; + $280 = (_i64Add(($278|0),($279|0),($268|0),($269|0))|0); + $281 = tempRet0; + $282 = (_bitshift64Shl(($268|0),($269|0),25)|0); + $283 = tempRet0; + $284 = (_i64Subtract(($242|0),($243|0),($282|0),($283|0))|0); + $285 = tempRet0; + $286 = (_i64Add(($260|0),($261|0),33554432,0)|0); + $287 = tempRet0; + $288 = (_bitshift64Ashr(($286|0),($287|0),26)|0); + $289 = tempRet0; + $290 = (_i64Add(($200|0),($201|0),($168|0),($169|0))|0); + $291 = tempRet0; + $292 = (_i64Add(($290|0),($291|0),($162|0),($163|0))|0); + $293 = tempRet0; + $294 = (_i64Add(($292|0),($293|0),($152|0),($153|0))|0); + $295 = tempRet0; + $296 = (_i64Add(($294|0),($295|0),($288|0),($289|0))|0); + $297 = tempRet0; + $298 = (_bitshift64Shl(($288|0),($289|0),26)|0); + $299 = tempRet0; + $300 = (_i64Subtract(($260|0),($261|0),($298|0),($299|0))|0); + $301 = tempRet0; + $302 = (_i64Add(($280|0),($281|0),33554432,0)|0); + $303 = tempRet0; + $304 = (_bitshift64Ashr(($302|0),($303|0),26)|0); + $305 = tempRet0; + $306 = (_i64Add(($110|0),($111|0),($124|0),($125|0))|0); + $307 = tempRet0; + $308 = (_i64Add(($306|0),($307|0),($90|0),($91|0))|0); + $309 = tempRet0; + $310 = (_i64Add(($308|0),($309|0),($64|0),($65|0))|0); + $311 = tempRet0; + $312 = (_i64Add(($310|0),($311|0),($184|0),($185|0))|0); + $313 = tempRet0; + $314 = (_i64Add(($312|0),($313|0),($304|0),($305|0))|0); + $315 = tempRet0; + $316 = (_bitshift64Shl(($304|0),($305|0),26)|0); + $317 = tempRet0; + $318 = (_i64Subtract(($280|0),($281|0),($316|0),($317|0))|0); + $319 = tempRet0; + $320 = (_i64Add(($296|0),($297|0),16777216,0)|0); + $321 = tempRet0; + $322 = (_bitshift64Ashr(($320|0),($321|0),25)|0); + $323 = tempRet0; + $324 = (_i64Add(($322|0),($323|0),($246|0),($247|0))|0); + $325 = tempRet0; + $326 = (_bitshift64Shl(($322|0),($323|0),25)|0); + $327 = tempRet0; + $328 = (_i64Subtract(($296|0),($297|0),($326|0),($327|0))|0); + $329 = tempRet0; + $330 = (_i64Add(($314|0),($315|0),16777216,0)|0); + $331 = tempRet0; + $332 = (_bitshift64Ashr(($330|0),($331|0),25)|0); + $333 = tempRet0; + $334 = (_i64Add(($112|0),($113|0),($138|0),($139|0))|0); + $335 = tempRet0; + $336 = (_i64Add(($334|0),($335|0),($126|0),($127|0))|0); + $337 = tempRet0; + $338 = (_i64Add(($336|0),($337|0),($94|0),($95|0))|0); + $339 = tempRet0; + $340 = (_i64Add(($338|0),($339|0),($68|0),($69|0))|0); + $341 = tempRet0; + $342 = (_i64Add(($340|0),($341|0),($186|0),($187|0))|0); + $343 = tempRet0; + $344 = (_i64Add(($342|0),($343|0),($332|0),($333|0))|0); + $345 = tempRet0; + $346 = (_bitshift64Shl(($332|0),($333|0),25)|0); + $347 = tempRet0; + $348 = (_i64Subtract(($314|0),($315|0),($346|0),($347|0))|0); + $349 = tempRet0; + $350 = (_i64Add(($324|0),($325|0),33554432,0)|0); + $351 = tempRet0; + $352 = (_bitshift64Ashr(($350|0),($351|0),26)|0); + $353 = tempRet0; + $354 = (_i64Add(($284|0),($285|0),($352|0),($353|0))|0); + $355 = tempRet0; + $356 = (_bitshift64Shl(($352|0),($353|0),26)|0); + $357 = tempRet0; + $358 = (_i64Subtract(($324|0),($325|0),($356|0),($357|0))|0); + $359 = tempRet0; + $360 = (_i64Add(($344|0),($345|0),33554432,0)|0); + $361 = tempRet0; + $362 = (_bitshift64Ashr(($360|0),($361|0),26)|0); + $363 = tempRet0; + $364 = (_i64Add(($128|0),($129|0),($142|0),($143|0))|0); + $365 = tempRet0; + $366 = (_i64Add(($364|0),($365|0),($114|0),($115|0))|0); + $367 = tempRet0; + $368 = (_i64Add(($366|0),($367|0),($96|0),($97|0))|0); + $369 = tempRet0; + $370 = (_i64Add(($368|0),($369|0),($72|0),($73|0))|0); + $371 = tempRet0; + $372 = (_i64Add(($370|0),($371|0),($362|0),($363|0))|0); + $373 = tempRet0; + $374 = (_bitshift64Shl(($362|0),($363|0),26)|0); + $375 = tempRet0; + $376 = (_i64Subtract(($344|0),($345|0),($374|0),($375|0))|0); + $377 = tempRet0; + $378 = (_i64Add(($372|0),($373|0),16777216,0)|0); + $379 = tempRet0; + $380 = (_bitshift64Ashr(($378|0),($379|0),25)|0); + $381 = tempRet0; + $382 = (___muldi3(($380|0),($381|0),19,0)|0); + $383 = tempRet0; + $384 = (_i64Add(($382|0),($383|0),($228|0),($229|0))|0); + $385 = tempRet0; + $386 = (_bitshift64Shl(($380|0),($381|0),25)|0); + $387 = tempRet0; + $388 = (_i64Subtract(($372|0),($373|0),($386|0),($387|0))|0); + $389 = tempRet0; + $390 = (_i64Add(($384|0),($385|0),33554432,0)|0); + $391 = tempRet0; + $392 = (_bitshift64Ashr(($390|0),($391|0),26)|0); + $393 = tempRet0; + $394 = (_i64Add(($264|0),($265|0),($392|0),($393|0))|0); + $395 = tempRet0; + $396 = (_bitshift64Shl(($392|0),($393|0),26)|0); + $397 = tempRet0; + $398 = (_i64Subtract(($384|0),($385|0),($396|0),($397|0))|0); + $399 = tempRet0; + HEAP32[$h>>2] = $398; + $400 = (($h) + 4|0); + HEAP32[$400>>2] = $394; + $401 = (($h) + 8|0); + HEAP32[$401>>2] = $300; + $402 = (($h) + 12|0); + HEAP32[$402>>2] = $328; + $403 = (($h) + 16|0); + HEAP32[$403>>2] = $358; + $404 = (($h) + 20|0); + HEAP32[$404>>2] = $354; + $405 = (($h) + 24|0); + HEAP32[$405>>2] = $318; + $406 = (($h) + 28|0); + HEAP32[$406>>2] = $348; + $407 = (($h) + 32|0); + HEAP32[$407>>2] = $376; + $408 = (($h) + 36|0); + HEAP32[$408>>2] = $388; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_sq2($h,$f) { + $h = $h|0; + $f = $f|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; + var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; + var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; + var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; + var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; + var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; + var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; + var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; + var $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0; + var $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0; + var $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = $0 << 1; + $20 = $2 << 1; + $21 = $4 << 1; + $22 = $6 << 1; + $23 = $8 << 1; + $24 = $10 << 1; + $25 = $12 << 1; + $26 = $14 << 1; + $27 = ($10*38)|0; + $28 = ($12*19)|0; + $29 = ($14*38)|0; + $30 = ($16*19)|0; + $31 = ($18*38)|0; + $32 = ($0|0)<(0); + $33 = $32 << 31 >> 31; + $34 = (___muldi3(($0|0),($33|0),($0|0),($33|0))|0); + $35 = tempRet0; + $36 = ($19|0)<(0); + $37 = $36 << 31 >> 31; + $38 = ($2|0)<(0); + $39 = $38 << 31 >> 31; + $40 = (___muldi3(($19|0),($37|0),($2|0),($39|0))|0); + $41 = tempRet0; + $42 = ($4|0)<(0); + $43 = $42 << 31 >> 31; + $44 = (___muldi3(($4|0),($43|0),($19|0),($37|0))|0); + $45 = tempRet0; + $46 = ($6|0)<(0); + $47 = $46 << 31 >> 31; + $48 = (___muldi3(($6|0),($47|0),($19|0),($37|0))|0); + $49 = tempRet0; + $50 = ($8|0)<(0); + $51 = $50 << 31 >> 31; + $52 = (___muldi3(($8|0),($51|0),($19|0),($37|0))|0); + $53 = tempRet0; + $54 = ($10|0)<(0); + $55 = $54 << 31 >> 31; + $56 = (___muldi3(($10|0),($55|0),($19|0),($37|0))|0); + $57 = tempRet0; + $58 = ($12|0)<(0); + $59 = $58 << 31 >> 31; + $60 = (___muldi3(($12|0),($59|0),($19|0),($37|0))|0); + $61 = tempRet0; + $62 = ($14|0)<(0); + $63 = $62 << 31 >> 31; + $64 = (___muldi3(($14|0),($63|0),($19|0),($37|0))|0); + $65 = tempRet0; + $66 = ($16|0)<(0); + $67 = $66 << 31 >> 31; + $68 = (___muldi3(($16|0),($67|0),($19|0),($37|0))|0); + $69 = tempRet0; + $70 = ($18|0)<(0); + $71 = $70 << 31 >> 31; + $72 = (___muldi3(($18|0),($71|0),($19|0),($37|0))|0); + $73 = tempRet0; + $74 = ($20|0)<(0); + $75 = $74 << 31 >> 31; + $76 = (___muldi3(($20|0),($75|0),($2|0),($39|0))|0); + $77 = tempRet0; + $78 = (___muldi3(($20|0),($75|0),($4|0),($43|0))|0); + $79 = tempRet0; + $80 = ($22|0)<(0); + $81 = $80 << 31 >> 31; + $82 = (___muldi3(($22|0),($81|0),($20|0),($75|0))|0); + $83 = tempRet0; + $84 = (___muldi3(($8|0),($51|0),($20|0),($75|0))|0); + $85 = tempRet0; + $86 = ($24|0)<(0); + $87 = $86 << 31 >> 31; + $88 = (___muldi3(($24|0),($87|0),($20|0),($75|0))|0); + $89 = tempRet0; + $90 = (___muldi3(($12|0),($59|0),($20|0),($75|0))|0); + $91 = tempRet0; + $92 = ($26|0)<(0); + $93 = $92 << 31 >> 31; + $94 = (___muldi3(($26|0),($93|0),($20|0),($75|0))|0); + $95 = tempRet0; + $96 = (___muldi3(($16|0),($67|0),($20|0),($75|0))|0); + $97 = tempRet0; + $98 = ($31|0)<(0); + $99 = $98 << 31 >> 31; + $100 = (___muldi3(($31|0),($99|0),($20|0),($75|0))|0); + $101 = tempRet0; + $102 = (___muldi3(($4|0),($43|0),($4|0),($43|0))|0); + $103 = tempRet0; + $104 = ($21|0)<(0); + $105 = $104 << 31 >> 31; + $106 = (___muldi3(($21|0),($105|0),($6|0),($47|0))|0); + $107 = tempRet0; + $108 = (___muldi3(($8|0),($51|0),($21|0),($105|0))|0); + $109 = tempRet0; + $110 = (___muldi3(($10|0),($55|0),($21|0),($105|0))|0); + $111 = tempRet0; + $112 = (___muldi3(($12|0),($59|0),($21|0),($105|0))|0); + $113 = tempRet0; + $114 = (___muldi3(($14|0),($63|0),($21|0),($105|0))|0); + $115 = tempRet0; + $116 = ($30|0)<(0); + $117 = $116 << 31 >> 31; + $118 = (___muldi3(($30|0),($117|0),($21|0),($105|0))|0); + $119 = tempRet0; + $120 = (___muldi3(($31|0),($99|0),($4|0),($43|0))|0); + $121 = tempRet0; + $122 = (___muldi3(($22|0),($81|0),($6|0),($47|0))|0); + $123 = tempRet0; + $124 = (___muldi3(($22|0),($81|0),($8|0),($51|0))|0); + $125 = tempRet0; + $126 = (___muldi3(($24|0),($87|0),($22|0),($81|0))|0); + $127 = tempRet0; + $128 = (___muldi3(($12|0),($59|0),($22|0),($81|0))|0); + $129 = tempRet0; + $130 = ($29|0)<(0); + $131 = $130 << 31 >> 31; + $132 = (___muldi3(($29|0),($131|0),($22|0),($81|0))|0); + $133 = tempRet0; + $134 = (___muldi3(($30|0),($117|0),($22|0),($81|0))|0); + $135 = tempRet0; + $136 = (___muldi3(($31|0),($99|0),($22|0),($81|0))|0); + $137 = tempRet0; + $138 = (___muldi3(($8|0),($51|0),($8|0),($51|0))|0); + $139 = tempRet0; + $140 = ($23|0)<(0); + $141 = $140 << 31 >> 31; + $142 = (___muldi3(($23|0),($141|0),($10|0),($55|0))|0); + $143 = tempRet0; + $144 = ($28|0)<(0); + $145 = $144 << 31 >> 31; + $146 = (___muldi3(($28|0),($145|0),($23|0),($141|0))|0); + $147 = tempRet0; + $148 = (___muldi3(($29|0),($131|0),($8|0),($51|0))|0); + $149 = tempRet0; + $150 = (___muldi3(($30|0),($117|0),($23|0),($141|0))|0); + $151 = tempRet0; + $152 = (___muldi3(($31|0),($99|0),($8|0),($51|0))|0); + $153 = tempRet0; + $154 = ($27|0)<(0); + $155 = $154 << 31 >> 31; + $156 = (___muldi3(($27|0),($155|0),($10|0),($55|0))|0); + $157 = tempRet0; + $158 = (___muldi3(($28|0),($145|0),($24|0),($87|0))|0); + $159 = tempRet0; + $160 = (___muldi3(($29|0),($131|0),($24|0),($87|0))|0); + $161 = tempRet0; + $162 = (___muldi3(($30|0),($117|0),($24|0),($87|0))|0); + $163 = tempRet0; + $164 = (___muldi3(($31|0),($99|0),($24|0),($87|0))|0); + $165 = tempRet0; + $166 = (___muldi3(($28|0),($145|0),($12|0),($59|0))|0); + $167 = tempRet0; + $168 = (___muldi3(($29|0),($131|0),($12|0),($59|0))|0); + $169 = tempRet0; + $170 = ($25|0)<(0); + $171 = $170 << 31 >> 31; + $172 = (___muldi3(($30|0),($117|0),($25|0),($171|0))|0); + $173 = tempRet0; + $174 = (___muldi3(($31|0),($99|0),($12|0),($59|0))|0); + $175 = tempRet0; + $176 = (___muldi3(($29|0),($131|0),($14|0),($63|0))|0); + $177 = tempRet0; + $178 = (___muldi3(($30|0),($117|0),($26|0),($93|0))|0); + $179 = tempRet0; + $180 = (___muldi3(($31|0),($99|0),($26|0),($93|0))|0); + $181 = tempRet0; + $182 = (___muldi3(($30|0),($117|0),($16|0),($67|0))|0); + $183 = tempRet0; + $184 = (___muldi3(($31|0),($99|0),($16|0),($67|0))|0); + $185 = tempRet0; + $186 = (___muldi3(($31|0),($99|0),($18|0),($71|0))|0); + $187 = tempRet0; + $188 = (_i64Add(($156|0),($157|0),($34|0),($35|0))|0); + $189 = tempRet0; + $190 = (_i64Add(($188|0),($189|0),($146|0),($147|0))|0); + $191 = tempRet0; + $192 = (_i64Add(($190|0),($191|0),($132|0),($133|0))|0); + $193 = tempRet0; + $194 = (_i64Add(($192|0),($193|0),($118|0),($119|0))|0); + $195 = tempRet0; + $196 = (_i64Add(($194|0),($195|0),($100|0),($101|0))|0); + $197 = tempRet0; + $198 = (_i64Add(($158|0),($159|0),($40|0),($41|0))|0); + $199 = tempRet0; + $200 = (_i64Add(($198|0),($199|0),($148|0),($149|0))|0); + $201 = tempRet0; + $202 = (_i64Add(($200|0),($201|0),($134|0),($135|0))|0); + $203 = tempRet0; + $204 = (_i64Add(($202|0),($203|0),($120|0),($121|0))|0); + $205 = tempRet0; + $206 = (_i64Add(($44|0),($45|0),($76|0),($77|0))|0); + $207 = tempRet0; + $208 = (_i64Add(($206|0),($207|0),($166|0),($167|0))|0); + $209 = tempRet0; + $210 = (_i64Add(($208|0),($209|0),($160|0),($161|0))|0); + $211 = tempRet0; + $212 = (_i64Add(($210|0),($211|0),($150|0),($151|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($212|0),($213|0),($136|0),($137|0))|0); + $215 = tempRet0; + $216 = (_i64Add(($48|0),($49|0),($78|0),($79|0))|0); + $217 = tempRet0; + $218 = (_i64Add(($216|0),($217|0),($168|0),($169|0))|0); + $219 = tempRet0; + $220 = (_i64Add(($218|0),($219|0),($162|0),($163|0))|0); + $221 = tempRet0; + $222 = (_i64Add(($220|0),($221|0),($152|0),($153|0))|0); + $223 = tempRet0; + $224 = (_i64Add(($82|0),($83|0),($102|0),($103|0))|0); + $225 = tempRet0; + $226 = (_i64Add(($224|0),($225|0),($52|0),($53|0))|0); + $227 = tempRet0; + $228 = (_i64Add(($226|0),($227|0),($176|0),($177|0))|0); + $229 = tempRet0; + $230 = (_i64Add(($228|0),($229|0),($172|0),($173|0))|0); + $231 = tempRet0; + $232 = (_i64Add(($230|0),($231|0),($164|0),($165|0))|0); + $233 = tempRet0; + $234 = (_i64Add(($84|0),($85|0),($106|0),($107|0))|0); + $235 = tempRet0; + $236 = (_i64Add(($234|0),($235|0),($56|0),($57|0))|0); + $237 = tempRet0; + $238 = (_i64Add(($236|0),($237|0),($178|0),($179|0))|0); + $239 = tempRet0; + $240 = (_i64Add(($238|0),($239|0),($174|0),($175|0))|0); + $241 = tempRet0; + $242 = (_i64Add(($122|0),($123|0),($108|0),($109|0))|0); + $243 = tempRet0; + $244 = (_i64Add(($242|0),($243|0),($88|0),($89|0))|0); + $245 = tempRet0; + $246 = (_i64Add(($244|0),($245|0),($60|0),($61|0))|0); + $247 = tempRet0; + $248 = (_i64Add(($246|0),($247|0),($182|0),($183|0))|0); + $249 = tempRet0; + $250 = (_i64Add(($248|0),($249|0),($180|0),($181|0))|0); + $251 = tempRet0; + $252 = (_i64Add(($110|0),($111|0),($124|0),($125|0))|0); + $253 = tempRet0; + $254 = (_i64Add(($252|0),($253|0),($90|0),($91|0))|0); + $255 = tempRet0; + $256 = (_i64Add(($254|0),($255|0),($64|0),($65|0))|0); + $257 = tempRet0; + $258 = (_i64Add(($256|0),($257|0),($184|0),($185|0))|0); + $259 = tempRet0; + $260 = (_i64Add(($112|0),($113|0),($138|0),($139|0))|0); + $261 = tempRet0; + $262 = (_i64Add(($260|0),($261|0),($126|0),($127|0))|0); + $263 = tempRet0; + $264 = (_i64Add(($262|0),($263|0),($94|0),($95|0))|0); + $265 = tempRet0; + $266 = (_i64Add(($264|0),($265|0),($68|0),($69|0))|0); + $267 = tempRet0; + $268 = (_i64Add(($266|0),($267|0),($186|0),($187|0))|0); + $269 = tempRet0; + $270 = (_i64Add(($128|0),($129|0),($142|0),($143|0))|0); + $271 = tempRet0; + $272 = (_i64Add(($270|0),($271|0),($114|0),($115|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($96|0),($97|0))|0); + $275 = tempRet0; + $276 = (_i64Add(($274|0),($275|0),($72|0),($73|0))|0); + $277 = tempRet0; + $278 = (_bitshift64Shl(($196|0),($197|0),1)|0); + $279 = tempRet0; + $280 = (_bitshift64Shl(($204|0),($205|0),1)|0); + $281 = tempRet0; + $282 = (_bitshift64Shl(($214|0),($215|0),1)|0); + $283 = tempRet0; + $284 = (_bitshift64Shl(($222|0),($223|0),1)|0); + $285 = tempRet0; + $286 = (_bitshift64Shl(($232|0),($233|0),1)|0); + $287 = tempRet0; + $288 = (_bitshift64Shl(($240|0),($241|0),1)|0); + $289 = tempRet0; + $290 = (_bitshift64Shl(($250|0),($251|0),1)|0); + $291 = tempRet0; + $292 = (_bitshift64Shl(($258|0),($259|0),1)|0); + $293 = tempRet0; + $294 = (_bitshift64Shl(($268|0),($269|0),1)|0); + $295 = tempRet0; + $296 = (_bitshift64Shl(($276|0),($277|0),1)|0); + $297 = tempRet0; + $298 = (_i64Add(($278|0),($279|0),33554432,0)|0); + $299 = tempRet0; + $300 = (_bitshift64Ashr(($298|0),($299|0),26)|0); + $301 = tempRet0; + $302 = (_i64Add(($300|0),($301|0),($280|0),($281|0))|0); + $303 = tempRet0; + $304 = (_bitshift64Shl(($300|0),($301|0),26)|0); + $305 = tempRet0; + $306 = (_i64Subtract(($278|0),($279|0),($304|0),($305|0))|0); + $307 = tempRet0; + $308 = (_i64Add(($286|0),($287|0),33554432,0)|0); + $309 = tempRet0; + $310 = (_bitshift64Ashr(($308|0),($309|0),26)|0); + $311 = tempRet0; + $312 = (_i64Add(($310|0),($311|0),($288|0),($289|0))|0); + $313 = tempRet0; + $314 = (_bitshift64Shl(($310|0),($311|0),26)|0); + $315 = tempRet0; + $316 = (_i64Subtract(($286|0),($287|0),($314|0),($315|0))|0); + $317 = tempRet0; + $318 = (_i64Add(($302|0),($303|0),16777216,0)|0); + $319 = tempRet0; + $320 = (_bitshift64Ashr(($318|0),($319|0),25)|0); + $321 = tempRet0; + $322 = (_i64Add(($320|0),($321|0),($282|0),($283|0))|0); + $323 = tempRet0; + $324 = (_bitshift64Shl(($320|0),($321|0),25)|0); + $325 = tempRet0; + $326 = (_i64Subtract(($302|0),($303|0),($324|0),($325|0))|0); + $327 = tempRet0; + $328 = (_i64Add(($312|0),($313|0),16777216,0)|0); + $329 = tempRet0; + $330 = (_bitshift64Ashr(($328|0),($329|0),25)|0); + $331 = tempRet0; + $332 = (_i64Add(($330|0),($331|0),($290|0),($291|0))|0); + $333 = tempRet0; + $334 = (_bitshift64Shl(($330|0),($331|0),25)|0); + $335 = tempRet0; + $336 = (_i64Subtract(($312|0),($313|0),($334|0),($335|0))|0); + $337 = tempRet0; + $338 = (_i64Add(($322|0),($323|0),33554432,0)|0); + $339 = tempRet0; + $340 = (_bitshift64Ashr(($338|0),($339|0),26)|0); + $341 = tempRet0; + $342 = (_i64Add(($340|0),($341|0),($284|0),($285|0))|0); + $343 = tempRet0; + $344 = (_bitshift64Shl(($340|0),($341|0),26)|0); + $345 = tempRet0; + $346 = (_i64Subtract(($322|0),($323|0),($344|0),($345|0))|0); + $347 = tempRet0; + $348 = (_i64Add(($332|0),($333|0),33554432,0)|0); + $349 = tempRet0; + $350 = (_bitshift64Ashr(($348|0),($349|0),26)|0); + $351 = tempRet0; + $352 = (_i64Add(($350|0),($351|0),($292|0),($293|0))|0); + $353 = tempRet0; + $354 = (_bitshift64Shl(($350|0),($351|0),26)|0); + $355 = tempRet0; + $356 = (_i64Subtract(($332|0),($333|0),($354|0),($355|0))|0); + $357 = tempRet0; + $358 = (_i64Add(($342|0),($343|0),16777216,0)|0); + $359 = tempRet0; + $360 = (_bitshift64Ashr(($358|0),($359|0),25)|0); + $361 = tempRet0; + $362 = (_i64Add(($360|0),($361|0),($316|0),($317|0))|0); + $363 = tempRet0; + $364 = (_bitshift64Shl(($360|0),($361|0),25)|0); + $365 = tempRet0; + $366 = (_i64Subtract(($342|0),($343|0),($364|0),($365|0))|0); + $367 = tempRet0; + $368 = (_i64Add(($352|0),($353|0),16777216,0)|0); + $369 = tempRet0; + $370 = (_bitshift64Ashr(($368|0),($369|0),25)|0); + $371 = tempRet0; + $372 = (_i64Add(($370|0),($371|0),($294|0),($295|0))|0); + $373 = tempRet0; + $374 = (_bitshift64Shl(($370|0),($371|0),25)|0); + $375 = tempRet0; + $376 = (_i64Subtract(($352|0),($353|0),($374|0),($375|0))|0); + $377 = tempRet0; + $378 = (_i64Add(($362|0),($363|0),33554432,0)|0); + $379 = tempRet0; + $380 = (_bitshift64Ashr(($378|0),($379|0),26)|0); + $381 = tempRet0; + $382 = (_i64Add(($336|0),($337|0),($380|0),($381|0))|0); + $383 = tempRet0; + $384 = (_bitshift64Shl(($380|0),($381|0),26)|0); + $385 = tempRet0; + $386 = (_i64Subtract(($362|0),($363|0),($384|0),($385|0))|0); + $387 = tempRet0; + $388 = (_i64Add(($372|0),($373|0),33554432,0)|0); + $389 = tempRet0; + $390 = (_bitshift64Ashr(($388|0),($389|0),26)|0); + $391 = tempRet0; + $392 = (_i64Add(($390|0),($391|0),($296|0),($297|0))|0); + $393 = tempRet0; + $394 = (_bitshift64Shl(($390|0),($391|0),26)|0); + $395 = tempRet0; + $396 = (_i64Subtract(($372|0),($373|0),($394|0),($395|0))|0); + $397 = tempRet0; + $398 = (_i64Add(($392|0),($393|0),16777216,0)|0); + $399 = tempRet0; + $400 = (_bitshift64Ashr(($398|0),($399|0),25)|0); + $401 = tempRet0; + $402 = (___muldi3(($400|0),($401|0),19,0)|0); + $403 = tempRet0; + $404 = (_i64Add(($402|0),($403|0),($306|0),($307|0))|0); + $405 = tempRet0; + $406 = (_bitshift64Shl(($400|0),($401|0),25)|0); + $407 = tempRet0; + $408 = (_i64Subtract(($392|0),($393|0),($406|0),($407|0))|0); + $409 = tempRet0; + $410 = (_i64Add(($404|0),($405|0),33554432,0)|0); + $411 = tempRet0; + $412 = (_bitshift64Ashr(($410|0),($411|0),26)|0); + $413 = tempRet0; + $414 = (_i64Add(($326|0),($327|0),($412|0),($413|0))|0); + $415 = tempRet0; + $416 = (_bitshift64Shl(($412|0),($413|0),26)|0); + $417 = tempRet0; + $418 = (_i64Subtract(($404|0),($405|0),($416|0),($417|0))|0); + $419 = tempRet0; + HEAP32[$h>>2] = $418; + $420 = (($h) + 4|0); + HEAP32[$420>>2] = $414; + $421 = (($h) + 8|0); + HEAP32[$421>>2] = $346; + $422 = (($h) + 12|0); + HEAP32[$422>>2] = $366; + $423 = (($h) + 16|0); + HEAP32[$423>>2] = $386; + $424 = (($h) + 20|0); + HEAP32[$424>>2] = $382; + $425 = (($h) + 24|0); + HEAP32[$425>>2] = $356; + $426 = (($h) + 28|0); + HEAP32[$426>>2] = $376; + $427 = (($h) + 32|0); + HEAP32[$427>>2] = $396; + $428 = (($h) + 36|0); + HEAP32[$428>>2] = $408; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_sub($h,$f,$g) { + $h = $h|0; + $f = $f|0; + $g = $g|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$f>>2]|0; + $1 = (($f) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($f) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($f) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($f) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($f) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($f) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($f) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($f) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($f) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = HEAP32[$g>>2]|0; + $20 = (($g) + 4|0); + $21 = HEAP32[$20>>2]|0; + $22 = (($g) + 8|0); + $23 = HEAP32[$22>>2]|0; + $24 = (($g) + 12|0); + $25 = HEAP32[$24>>2]|0; + $26 = (($g) + 16|0); + $27 = HEAP32[$26>>2]|0; + $28 = (($g) + 20|0); + $29 = HEAP32[$28>>2]|0; + $30 = (($g) + 24|0); + $31 = HEAP32[$30>>2]|0; + $32 = (($g) + 28|0); + $33 = HEAP32[$32>>2]|0; + $34 = (($g) + 32|0); + $35 = HEAP32[$34>>2]|0; + $36 = (($g) + 36|0); + $37 = HEAP32[$36>>2]|0; + $38 = (($0) - ($19))|0; + $39 = (($2) - ($21))|0; + $40 = (($4) - ($23))|0; + $41 = (($6) - ($25))|0; + $42 = (($8) - ($27))|0; + $43 = (($10) - ($29))|0; + $44 = (($12) - ($31))|0; + $45 = (($14) - ($33))|0; + $46 = (($16) - ($35))|0; + $47 = (($18) - ($37))|0; + HEAP32[$h>>2] = $38; + $48 = (($h) + 4|0); + HEAP32[$48>>2] = $39; + $49 = (($h) + 8|0); + HEAP32[$49>>2] = $40; + $50 = (($h) + 12|0); + HEAP32[$50>>2] = $41; + $51 = (($h) + 16|0); + HEAP32[$51>>2] = $42; + $52 = (($h) + 20|0); + HEAP32[$52>>2] = $43; + $53 = (($h) + 24|0); + HEAP32[$53>>2] = $44; + $54 = (($h) + 28|0); + HEAP32[$54>>2] = $45; + $55 = (($h) + 32|0); + HEAP32[$55>>2] = $46; + $56 = (($h) + 36|0); + HEAP32[$56>>2] = $47; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_tobytes($s,$h) { + $s = $s|0; + $h = $h|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0; + var $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0; + var $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0; + var $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0; + var $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP32[$h>>2]|0; + $1 = (($h) + 4|0); + $2 = HEAP32[$1>>2]|0; + $3 = (($h) + 8|0); + $4 = HEAP32[$3>>2]|0; + $5 = (($h) + 12|0); + $6 = HEAP32[$5>>2]|0; + $7 = (($h) + 16|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($h) + 20|0); + $10 = HEAP32[$9>>2]|0; + $11 = (($h) + 24|0); + $12 = HEAP32[$11>>2]|0; + $13 = (($h) + 28|0); + $14 = HEAP32[$13>>2]|0; + $15 = (($h) + 32|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($h) + 36|0); + $18 = HEAP32[$17>>2]|0; + $19 = ($18*19)|0; + $20 = (($19) + 16777216)|0; + $21 = $20 >> 25; + $22 = (($21) + ($0))|0; + $23 = $22 >> 26; + $24 = (($23) + ($2))|0; + $25 = $24 >> 25; + $26 = (($25) + ($4))|0; + $27 = $26 >> 26; + $28 = (($27) + ($6))|0; + $29 = $28 >> 25; + $30 = (($29) + ($8))|0; + $31 = $30 >> 26; + $32 = (($31) + ($10))|0; + $33 = $32 >> 25; + $34 = (($33) + ($12))|0; + $35 = $34 >> 26; + $36 = (($35) + ($14))|0; + $37 = $36 >> 25; + $38 = (($37) + ($16))|0; + $39 = $38 >> 26; + $40 = (($39) + ($18))|0; + $41 = $40 >> 25; + $42 = ($41*19)|0; + $43 = (($42) + ($0))|0; + $44 = $43 >> 26; + $45 = (($44) + ($2))|0; + $46 = $44 << 26; + $47 = (($43) - ($46))|0; + $48 = $45 >> 25; + $49 = (($48) + ($4))|0; + $50 = $48 << 25; + $51 = (($45) - ($50))|0; + $52 = $49 >> 26; + $53 = (($52) + ($6))|0; + $54 = $52 << 26; + $55 = (($49) - ($54))|0; + $56 = $53 >> 25; + $57 = (($56) + ($8))|0; + $58 = $56 << 25; + $59 = (($53) - ($58))|0; + $60 = $57 >> 26; + $61 = (($60) + ($10))|0; + $62 = $60 << 26; + $63 = (($57) - ($62))|0; + $64 = $61 >> 25; + $65 = (($64) + ($12))|0; + $66 = $64 << 25; + $67 = (($61) - ($66))|0; + $68 = $65 >> 26; + $69 = (($68) + ($14))|0; + $70 = $68 << 26; + $71 = (($65) - ($70))|0; + $72 = $69 >> 25; + $73 = (($72) + ($16))|0; + $74 = $72 << 25; + $75 = (($69) - ($74))|0; + $76 = $73 >> 26; + $77 = (($76) + ($18))|0; + $78 = $76 << 26; + $79 = (($73) - ($78))|0; + $80 = $77 & 33554431; + $81 = $47&255; + HEAP8[$s>>0] = $81; + $82 = $47 >>> 8; + $83 = $82&255; + $84 = (($s) + 1|0); + HEAP8[$84>>0] = $83; + $85 = $47 >>> 16; + $86 = $85&255; + $87 = (($s) + 2|0); + HEAP8[$87>>0] = $86; + $88 = $47 >>> 24; + $89 = $51 << 2; + $90 = $89 | $88; + $91 = $90&255; + $92 = (($s) + 3|0); + HEAP8[$92>>0] = $91; + $93 = $51 >>> 6; + $94 = $93&255; + $95 = (($s) + 4|0); + HEAP8[$95>>0] = $94; + $96 = $51 >>> 14; + $97 = $96&255; + $98 = (($s) + 5|0); + HEAP8[$98>>0] = $97; + $99 = $51 >>> 22; + $100 = $55 << 3; + $101 = $100 | $99; + $102 = $101&255; + $103 = (($s) + 6|0); + HEAP8[$103>>0] = $102; + $104 = $55 >>> 5; + $105 = $104&255; + $106 = (($s) + 7|0); + HEAP8[$106>>0] = $105; + $107 = $55 >>> 13; + $108 = $107&255; + $109 = (($s) + 8|0); + HEAP8[$109>>0] = $108; + $110 = $55 >>> 21; + $111 = $59 << 5; + $112 = $111 | $110; + $113 = $112&255; + $114 = (($s) + 9|0); + HEAP8[$114>>0] = $113; + $115 = $59 >>> 3; + $116 = $115&255; + $117 = (($s) + 10|0); + HEAP8[$117>>0] = $116; + $118 = $59 >>> 11; + $119 = $118&255; + $120 = (($s) + 11|0); + HEAP8[$120>>0] = $119; + $121 = $59 >>> 19; + $122 = $63 << 6; + $123 = $122 | $121; + $124 = $123&255; + $125 = (($s) + 12|0); + HEAP8[$125>>0] = $124; + $126 = $63 >>> 2; + $127 = $126&255; + $128 = (($s) + 13|0); + HEAP8[$128>>0] = $127; + $129 = $63 >>> 10; + $130 = $129&255; + $131 = (($s) + 14|0); + HEAP8[$131>>0] = $130; + $132 = $63 >>> 18; + $133 = $132&255; + $134 = (($s) + 15|0); + HEAP8[$134>>0] = $133; + $135 = $67&255; + $136 = (($s) + 16|0); + HEAP8[$136>>0] = $135; + $137 = $67 >>> 8; + $138 = $137&255; + $139 = (($s) + 17|0); + HEAP8[$139>>0] = $138; + $140 = $67 >>> 16; + $141 = $140&255; + $142 = (($s) + 18|0); + HEAP8[$142>>0] = $141; + $143 = $67 >>> 24; + $144 = $71 << 1; + $145 = $144 | $143; + $146 = $145&255; + $147 = (($s) + 19|0); + HEAP8[$147>>0] = $146; + $148 = $71 >>> 7; + $149 = $148&255; + $150 = (($s) + 20|0); + HEAP8[$150>>0] = $149; + $151 = $71 >>> 15; + $152 = $151&255; + $153 = (($s) + 21|0); + HEAP8[$153>>0] = $152; + $154 = $71 >>> 23; + $155 = $75 << 3; + $156 = $155 | $154; + $157 = $156&255; + $158 = (($s) + 22|0); + HEAP8[$158>>0] = $157; + $159 = $75 >>> 5; + $160 = $159&255; + $161 = (($s) + 23|0); + HEAP8[$161>>0] = $160; + $162 = $75 >>> 13; + $163 = $162&255; + $164 = (($s) + 24|0); + HEAP8[$164>>0] = $163; + $165 = $75 >>> 21; + $166 = $79 << 4; + $167 = $166 | $165; + $168 = $167&255; + $169 = (($s) + 25|0); + HEAP8[$169>>0] = $168; + $170 = $79 >>> 4; + $171 = $170&255; + $172 = (($s) + 26|0); + HEAP8[$172>>0] = $171; + $173 = $79 >>> 12; + $174 = $173&255; + $175 = (($s) + 27|0); + HEAP8[$175>>0] = $174; + $176 = $79 >>> 20; + $177 = $80 << 6; + $178 = $176 | $177; + $179 = $178&255; + $180 = (($s) + 28|0); + HEAP8[$180>>0] = $179; + $181 = $77 >>> 2; + $182 = $181&255; + $183 = (($s) + 29|0); + HEAP8[$183>>0] = $182; + $184 = $77 >>> 10; + $185 = $184&255; + $186 = (($s) + 30|0); + HEAP8[$186>>0] = $185; + $187 = $80 >>> 18; + $188 = $187&255; + $189 = (($s) + 31|0); + HEAP8[$189>>0] = $188; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_add($r,$p,$q) { + $r = $r|0; + $p = $p|0; + $q = $q|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $t0 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $t0 = sp; + $0 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); + $1 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); + $2 = (($r) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($2,$r,$q); + $3 = (($q) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($1,$1,$3); + $4 = (($r) + 120|0); + $5 = (($q) + 120|0); + $6 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); + $7 = (($p) + 80|0); + $8 = (($q) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($r,$7,$8); + _crypto_sign_ed25519_ref10_fe_add($t0,$r,$r); + _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($2,$t0,$4); + _crypto_sign_ed25519_ref10_fe_sub($4,$t0,$4); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($r,$a,$A,$b) { + $r = $r|0; + $a = $a|0; + $A = $A|0; + $b = $b|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, $A2 = 0, $Ai = 0, $aslide = 0, $bslide = 0, $i$0$lcssa = 0, $i$02 = 0, $i$11 = 0, $t = 0, $u = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 2272|0; + $aslide = sp + 2016|0; + $bslide = sp + 1760|0; + $Ai = sp + 480|0; + $t = sp + 320|0; + $u = sp + 160|0; + $A2 = sp; + _slide($aslide,$a); + _slide($bslide,$b); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($Ai,$A); + _crypto_sign_ed25519_ref10_ge_p3_dbl($t,$A); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($A2,$t); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$Ai); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $0 = (($Ai) + 160|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($0,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$0); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $1 = (($Ai) + 320|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($1,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$1); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $2 = (($Ai) + 480|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($2,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$2); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $3 = (($Ai) + 640|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($3,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$3); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $4 = (($Ai) + 800|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($4,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$4); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $5 = (($Ai) + 960|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($5,$u); + _crypto_sign_ed25519_ref10_ge_add($t,$A2,$5); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $6 = (($Ai) + 1120|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($6,$u); + _crypto_sign_ed25519_ref10_ge_p2_0($r); + $i$02 = 255; + while(1) { + $8 = (($aslide) + ($i$02)|0); + $9 = HEAP8[$8>>0]|0; + $10 = ($9<<24>>24)==(0); + if (!($10)) { + $i$0$lcssa = $i$02; + break; + } + $11 = (($bslide) + ($i$02)|0); + $12 = HEAP8[$11>>0]|0; + $13 = ($12<<24>>24)==(0); + $14 = (($i$02) + -1)|0; + if (!($13)) { + $i$0$lcssa = $i$02; + break; + } + $7 = ($i$02|0)>(0); + if ($7) { + $i$02 = $14; + } else { + $i$0$lcssa = $14; + break; + } + } + $15 = ($i$0$lcssa|0)>(-1); + if ($15) { + $i$11 = $i$0$lcssa; + } else { + STACKTOP = sp;return; + } + while(1) { + _crypto_sign_ed25519_ref10_ge_p2_dbl($t,$r); + $16 = (($aslide) + ($i$11)|0); + $17 = HEAP8[$16>>0]|0; + $18 = ($17<<24>>24)>(0); + if ($18) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $19 = HEAP8[$16>>0]|0; + $20 = $19 << 24 >> 24; + $21 = (($20|0) / 2)&-1; + $22 = (($Ai) + (($21*160)|0)|0); + _crypto_sign_ed25519_ref10_ge_add($t,$u,$22); + } else { + $23 = ($17<<24>>24)<(0); + if ($23) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $24 = HEAP8[$16>>0]|0; + $25 = $24 << 24 >> 24; + $26 = (($25|0) / -2)&-1; + $27 = (($Ai) + (($26*160)|0)|0); + _crypto_sign_ed25519_ref10_ge_sub($t,$u,$27); + } + } + $28 = (($bslide) + ($i$11)|0); + $29 = HEAP8[$28>>0]|0; + $30 = ($29<<24>>24)>(0); + if ($30) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $31 = HEAP8[$28>>0]|0; + $32 = $31 << 24 >> 24; + $33 = (($32|0) / 2)&-1; + $34 = (40 + (($33*120)|0)|0); + _crypto_sign_ed25519_ref10_ge_madd($t,$u,$34); + } else { + $35 = ($29<<24>>24)<(0); + if ($35) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); + $36 = HEAP8[$28>>0]|0; + $37 = $36 << 24 >> 24; + $38 = (($37|0) / -2)&-1; + $39 = (40 + (($38*120)|0)|0); + _crypto_sign_ed25519_ref10_ge_msub($t,$u,$39); + } + } + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($r,$t); + $40 = (($i$11) + -1)|0; + $41 = ($i$11|0)>(0); + if ($41) { + $i$11 = $40; + } else { + break; + } + } + STACKTOP = sp;return; +} +function _slide($r,$a) { + $r = $r|0; + $a = $a|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $b$03 = 0, $exitcond = 0, $exitcond10 = 0; + var $i$08 = 0, $i$15 = 0, $k$01 = 0, label = 0, sp = 0; + sp = STACKTOP; + $i$08 = 0; + while(1) { + $0 = $i$08 >> 3; + $1 = (($a) + ($0)|0); + $2 = HEAP8[$1>>0]|0; + $3 = $2&255; + $4 = $i$08 & 7; + $5 = $3 >>> $4; + $6 = $5 & 1; + $7 = $6&255; + $8 = (($r) + ($i$08)|0); + HEAP8[$8>>0] = $7; + $9 = (($i$08) + 1)|0; + $exitcond10 = ($9|0)==(256); + if ($exitcond10) { + $i$15 = 0; + break; + } else { + $i$08 = $9; + } + } + while(1) { + $10 = (($r) + ($i$15)|0); + $11 = HEAP8[$10>>0]|0; + $12 = ($11<<24>>24)==(0); + L5: do { + if (!($12)) { + $b$03 = 1; + while(1) { + $13 = (($b$03) + ($i$15))|0; + $14 = ($13|0)<(256); + if (!($14)) { + break L5; + } + $15 = (($r) + ($13)|0); + $16 = HEAP8[$15>>0]|0; + $17 = ($16<<24>>24)==(0); + L9: do { + if (!($17)) { + $18 = HEAP8[$10>>0]|0; + $19 = $18 << 24 >> 24; + $20 = $16 << 24 >> 24; + $21 = $20 << $b$03; + $22 = (($19) + ($21))|0; + $23 = ($22|0)<(16); + if ($23) { + $24 = $22&255; + HEAP8[$10>>0] = $24; + HEAP8[$15>>0] = 0; + break; + } + $25 = (($19) - ($21))|0; + $26 = ($25|0)>(-16); + if (!($26)) { + break L5; + } + $27 = $25&255; + HEAP8[$10>>0] = $27; + $28 = ($13|0)<(256); + if ($28) { + $k$01 = $13; + while(1) { + $29 = (($r) + ($k$01)|0); + $30 = HEAP8[$29>>0]|0; + $31 = ($30<<24>>24)==(0); + if ($31) { + break; + } + HEAP8[$29>>0] = 0; + $32 = (($k$01) + 1)|0; + $33 = ($32|0)<(256); + if ($33) { + $k$01 = $32; + } else { + break L9; + } + } + HEAP8[$29>>0] = 1; + } + } + } while(0); + $34 = (($b$03) + 1)|0; + $35 = ($34|0)<(7); + if ($35) { + $b$03 = $34; + } else { + break; + } + } + } + } while(0); + $36 = (($i$15) + 1)|0; + $exitcond = ($36|0)==(256); + if ($exitcond) { + break; + } else { + $i$15 = $36; + } + } + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($h,$s) { + $h = $h|0; + $s = $s|0; + var $$0 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $check = 0, $u = 0, $v = 0, $v3 = 0, $vxx = 0, label = 0; + var sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 208|0; + $u = sp + 160|0; + $v = sp + 120|0; + $v3 = sp + 80|0; + $vxx = sp + 40|0; + $check = sp; + $0 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_frombytes($0,$s); + $1 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($1); + _crypto_sign_ed25519_ref10_fe_sq($u,$0); + _crypto_sign_ed25519_ref10_fe_mul($v,$u,1000); + _crypto_sign_ed25519_ref10_fe_sub($u,$u,$1); + _crypto_sign_ed25519_ref10_fe_add($v,$v,$1); + _crypto_sign_ed25519_ref10_fe_sq($v3,$v); + _crypto_sign_ed25519_ref10_fe_mul($v3,$v3,$v); + _crypto_sign_ed25519_ref10_fe_sq($h,$v3); + _crypto_sign_ed25519_ref10_fe_mul($h,$h,$v); + _crypto_sign_ed25519_ref10_fe_mul($h,$h,$u); + _crypto_sign_ed25519_ref10_fe_pow22523($h,$h); + _crypto_sign_ed25519_ref10_fe_mul($h,$h,$v3); + _crypto_sign_ed25519_ref10_fe_mul($h,$h,$u); + _crypto_sign_ed25519_ref10_fe_sq($vxx,$h); + _crypto_sign_ed25519_ref10_fe_mul($vxx,$vxx,$v); + _crypto_sign_ed25519_ref10_fe_sub($check,$vxx,$u); + $2 = (_crypto_sign_ed25519_ref10_fe_isnonzero($check)|0); + $3 = ($2|0)==(0); + do { + if (!($3)) { + _crypto_sign_ed25519_ref10_fe_add($check,$vxx,$u); + $4 = (_crypto_sign_ed25519_ref10_fe_isnonzero($check)|0); + $5 = ($4|0)==(0); + if ($5) { + _crypto_sign_ed25519_ref10_fe_mul($h,$h,1040); + break; + } else { + $$0 = -1; + STACKTOP = sp;return ($$0|0); + } + } + } while(0); + $6 = (_crypto_sign_ed25519_ref10_fe_isnegative($h)|0); + $7 = (($s) + 31|0); + $8 = HEAP8[$7>>0]|0; + $9 = $8&255; + $10 = $9 >>> 7; + $11 = ($6|0)==($10|0); + if ($11) { + _crypto_sign_ed25519_ref10_fe_neg($h,$h); + } + $12 = (($h) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($12,$h,$0); + $$0 = 0; + STACKTOP = sp;return ($$0|0); +} +function _crypto_sign_ed25519_ref10_ge_madd($r,$p,$q) { + $r = $r|0; + $p = $p|0; + $q = $q|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $t0 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $t0 = sp; + $0 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); + $1 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); + $2 = (($r) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($2,$r,$q); + $3 = (($q) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($1,$1,$3); + $4 = (($r) + 120|0); + $5 = (($q) + 80|0); + $6 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); + $7 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_add($t0,$7,$7); + _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($2,$t0,$4); + _crypto_sign_ed25519_ref10_fe_sub($4,$t0,$4); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_msub($r,$p,$q) { + $r = $r|0; + $p = $p|0; + $q = $q|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $t0 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $t0 = sp; + $0 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); + $1 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); + $2 = (($r) + 80|0); + $3 = (($q) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($2,$r,$3); + _crypto_sign_ed25519_ref10_fe_mul($1,$1,$q); + $4 = (($r) + 120|0); + $5 = (($q) + 80|0); + $6 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); + $7 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_add($t0,$7,$7); + _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); + _crypto_sign_ed25519_ref10_fe_sub($2,$t0,$4); + _crypto_sign_ed25519_ref10_fe_add($4,$t0,$4); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($r,$p) { + $r = $r|0; + $p = $p|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($r,$p,$0); + $1 = (($r) + 40|0); + $2 = (($p) + 40|0); + $3 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($1,$2,$3); + $4 = (($r) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$3,$0); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($r,$p) { + $r = $r|0; + $p = $p|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($r,$p,$0); + $1 = (($r) + 40|0); + $2 = (($p) + 40|0); + $3 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($1,$2,$3); + $4 = (($r) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$3,$0); + $5 = (($r) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($5,$p,$2); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p2_0($h) { + $h = $h|0; + var $0 = 0, $1 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_0($h); + $0 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_1($0); + $1 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($1); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$p) { + $r = $r|0; + $p = $p|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $t0 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $t0 = sp; + _crypto_sign_ed25519_ref10_fe_sq($r,$p); + $0 = (($r) + 80|0); + $1 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_sq($0,$1); + $2 = (($r) + 120|0); + $3 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_sq2($2,$3); + $4 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($4,$p,$1); + _crypto_sign_ed25519_ref10_fe_sq($t0,$4); + _crypto_sign_ed25519_ref10_fe_add($4,$0,$r); + _crypto_sign_ed25519_ref10_fe_sub($0,$0,$r); + _crypto_sign_ed25519_ref10_fe_sub($r,$t0,$4); + _crypto_sign_ed25519_ref10_fe_sub($2,$2,$0); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_0($h) { + $h = $h|0; + var $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_0($h); + $0 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_1($0); + $1 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($1); + $2 = (($h) + 120|0); + _crypto_sign_ed25519_ref10_fe_0($2); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_dbl($r,$p) { + $r = $r|0; + $p = $p|0; + var $q = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $q = sp; + _crypto_sign_ed25519_ref10_ge_p3_to_p2($q,$p); + _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$q); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_to_cached($r,$p) { + $r = $r|0; + $p = $p|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); + $1 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); + $2 = (($r) + 80|0); + $3 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_copy($2,$3); + $4 = (($r) + 120|0); + $5 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,1080); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_to_p2($r,$p) { + $r = $r|0; + $p = $p|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_copy($r,$p); + $0 = (($r) + 40|0); + $1 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_copy($0,$1); + $2 = (($r) + 80|0); + $3 = (($p) + 80|0); + _crypto_sign_ed25519_ref10_fe_copy($2,$3); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_tobytes($s,$h) { + $s = $s|0; + $h = $h|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $recip = 0, $x = 0, $y = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $recip = sp + 80|0; + $x = sp + 40|0; + $y = sp; + $0 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_invert($recip,$0); + _crypto_sign_ed25519_ref10_fe_mul($x,$h,$recip); + $1 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($y,$1,$recip); + _crypto_sign_ed25519_ref10_fe_tobytes($s,$y); + $2 = (_crypto_sign_ed25519_ref10_fe_isnegative($x)|0); + $3 = $2 << 7; + $4 = (($s) + 31|0); + $5 = HEAP8[$4>>0]|0; + $6 = $5&255; + $7 = $6 ^ $3; + $8 = $7&255; + HEAP8[$4>>0] = $8; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_precomp_0($h) { + $h = $h|0; + var $0 = 0, $1 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_1($h); + $0 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_1($0); + $1 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_0($1); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_scalarmult_base($h,$a) { + $h = $h|0; + $a = $a|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $carry$04 = 0, $e = 0, $exitcond = 0, $exitcond7 = 0; + var $i$06 = 0, $i$15 = 0, $i$23 = 0, $i$32 = 0, $r = 0, $s = 0, $sext = 0, $sext1 = 0, $t = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 464|0; + $e = sp + 400|0; + $r = sp + 240|0; + $s = sp + 120|0; + $t = sp; + $i$06 = 0; + while(1) { + $0 = (($a) + ($i$06)|0); + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = $2 & 15; + $4 = $3&255; + $5 = $i$06 << 1; + $6 = (($e) + ($5)|0); + HEAP8[$6>>0] = $4; + $7 = HEAP8[$0>>0]|0; + $8 = ($7&255) >>> 4; + $9 = $5 | 1; + $10 = (($e) + ($9)|0); + HEAP8[$10>>0] = $8; + $11 = (($i$06) + 1)|0; + $exitcond7 = ($11|0)==(32); + if ($exitcond7) { + $carry$04 = 0;$i$15 = 0; + break; + } else { + $i$06 = $11; + } + } + while(1) { + $12 = (($e) + ($i$15)|0); + $13 = HEAP8[$12>>0]|0; + $14 = $13&255; + $15 = (($14) + ($carry$04))|0; + $sext = $15 << 24; + $sext1 = (($sext) + 134217728)|0; + $16 = $sext1 >> 28; + $17 = $16 << 4; + $18 = (($15) - ($17))|0; + $19 = $18&255; + HEAP8[$12>>0] = $19; + $20 = (($i$15) + 1)|0; + $exitcond = ($20|0)==(63); + if ($exitcond) { + break; + } else { + $carry$04 = $16;$i$15 = $20; + } + } + $21 = (($e) + 63|0); + $22 = HEAP8[$21>>0]|0; + $23 = $22&255; + $24 = (($23) + ($16))|0; + $25 = $24&255; + HEAP8[$21>>0] = $25; + _crypto_sign_ed25519_ref10_ge_p3_0($h); + $i$23 = 1; + while(1) { + $26 = (($i$23|0) / 2)&-1; + $27 = (($e) + ($i$23)|0); + $28 = HEAP8[$27>>0]|0; + _select($t,$26,$28); + _crypto_sign_ed25519_ref10_ge_madd($r,$h,$t); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); + $29 = (($i$23) + 2)|0; + $30 = ($29|0)<(64); + if ($30) { + $i$23 = $29; + } else { + break; + } + } + _crypto_sign_ed25519_ref10_ge_p3_dbl($r,$h); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); + _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); + _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); + _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); + $i$32 = 0; + while(1) { + $31 = (($i$32|0) / 2)&-1; + $32 = (($e) + ($i$32)|0); + $33 = HEAP8[$32>>0]|0; + _select($t,$31,$33); + _crypto_sign_ed25519_ref10_ge_madd($r,$h,$t); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); + $34 = (($i$32) + 2)|0; + $35 = ($34|0)<(64); + if ($35) { + $i$32 = $34; + } else { + break; + } + } + STACKTOP = sp;return; +} +function _select($t,$pos,$b) { + $t = $t|0; + $pos = $pos|0; + $b = $b|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $minust = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $minust = sp; + $0 = (_negative($b)|0); + $1 = $b << 24 >> 24; + $2 = $0&255; + $3 = (0 - ($2))|0; + $4 = $1 & $3; + $5 = $4 << 1; + $6 = (($1) - ($5))|0; + $7 = $6&255; + _crypto_sign_ed25519_ref10_ge_precomp_0($t); + $8 = (1120 + (($pos*960)|0)|0); + $9 = (_equal($7,1)|0); + _cmov($t,$8,$9); + $10 = ((1120 + (($pos*960)|0)|0) + 120|0); + $11 = (_equal($7,2)|0); + _cmov($t,$10,$11); + $12 = ((1120 + (($pos*960)|0)|0) + 240|0); + $13 = (_equal($7,3)|0); + _cmov($t,$12,$13); + $14 = ((1120 + (($pos*960)|0)|0) + 360|0); + $15 = (_equal($7,4)|0); + _cmov($t,$14,$15); + $16 = ((1120 + (($pos*960)|0)|0) + 480|0); + $17 = (_equal($7,5)|0); + _cmov($t,$16,$17); + $18 = ((1120 + (($pos*960)|0)|0) + 600|0); + $19 = (_equal($7,6)|0); + _cmov($t,$18,$19); + $20 = ((1120 + (($pos*960)|0)|0) + 720|0); + $21 = (_equal($7,7)|0); + _cmov($t,$20,$21); + $22 = ((1120 + (($pos*960)|0)|0) + 840|0); + $23 = (_equal($7,8)|0); + _cmov($t,$22,$23); + $24 = (($t) + 40|0); + _crypto_sign_ed25519_ref10_fe_copy($minust,$24); + $25 = (($minust) + 40|0); + _crypto_sign_ed25519_ref10_fe_copy($25,$t); + $26 = (($minust) + 80|0); + $27 = (($t) + 80|0); + _crypto_sign_ed25519_ref10_fe_neg($26,$27); + _cmov($t,$minust,$0); + STACKTOP = sp;return; +} +function _negative($b) { + $b = $b|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $b << 24 >> 24; + $1 = ($0|0)<(0); + $2 = $1 << 31 >> 31; + $3 = (_bitshift64Lshr(($0|0),($2|0),63)|0); + $4 = tempRet0; + $5 = $3&255; + STACKTOP = sp;return ($5|0); +} +function _equal($b,$c) { + $b = $b|0; + $c = $c|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $c ^ $b; + $1 = $0&255; + $2 = (($1) + -1)|0; + $3 = $2 >>> 31; + $4 = $3&255; + STACKTOP = sp;return ($4|0); +} +function _cmov($t,$u,$b) { + $t = $t|0; + $u = $u|0; + $b = $b|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = $b&255; + _crypto_sign_ed25519_ref10_fe_cmov($t,$u,$0); + $1 = (($t) + 40|0); + $2 = (($u) + 40|0); + _crypto_sign_ed25519_ref10_fe_cmov($1,$2,$0); + $3 = (($t) + 80|0); + $4 = (($u) + 80|0); + _crypto_sign_ed25519_ref10_fe_cmov($3,$4,$0); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_sub($r,$p,$q) { + $r = $r|0; + $p = $p|0; + $q = $q|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $t0 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $t0 = sp; + $0 = (($p) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); + $1 = (($r) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); + $2 = (($r) + 80|0); + $3 = (($q) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($2,$r,$3); + _crypto_sign_ed25519_ref10_fe_mul($1,$1,$q); + $4 = (($r) + 120|0); + $5 = (($q) + 120|0); + $6 = (($p) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); + $7 = (($p) + 80|0); + $8 = (($q) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($r,$7,$8); + _crypto_sign_ed25519_ref10_fe_add($t0,$r,$r); + _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); + _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); + _crypto_sign_ed25519_ref10_fe_sub($2,$t0,$4); + _crypto_sign_ed25519_ref10_fe_add($4,$t0,$4); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_tobytes($s,$h) { + $s = $s|0; + $h = $h|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $recip = 0, $x = 0, $y = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $recip = sp + 80|0; + $x = sp + 40|0; + $y = sp; + $0 = (($h) + 80|0); + _crypto_sign_ed25519_ref10_fe_invert($recip,$0); + _crypto_sign_ed25519_ref10_fe_mul($x,$h,$recip); + $1 = (($h) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($y,$1,$recip); + _crypto_sign_ed25519_ref10_fe_tobytes($s,$y); + $2 = (_crypto_sign_ed25519_ref10_fe_isnegative($x)|0); + $3 = $2 << 7; + $4 = (($s) + 31|0); + $5 = HEAP8[$4>>0]|0; + $6 = $5&255; + $7 = $6 ^ $3; + $8 = $7&255; + HEAP8[$4>>0] = $8; + STACKTOP = sp;return; +} +function _crypto_sign_edwards25519sha512batch_ref10_open($m,$mlen,$sm,$0,$1,$pk) { + $m = $m|0; + $mlen = $mlen|0; + $sm = $sm|0; + $0 = $0|0; + $1 = $1|0; + $pk = $pk|0; + var $$0 = 0, $$sum = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $A = 0, $R = 0, $h = 0, $pkcopy1 = 0, $rcheck = 0, $rcopy = 0, $scopy = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 480|0; + $pkcopy1 = sp + 440|0; + $rcopy = sp + 408|0; + $scopy = sp + 376|0; + $h = sp + 312|0; + $rcheck = sp + 280|0; + $A = sp + 120|0; + $R = sp; + $2 = ($1>>>0)<(0); + $3 = ($0>>>0)<(64); + $4 = ($1|0)==(0); + $5 = $4 & $3; + $6 = $2 | $5; + if (!($6)) { + $7 = (($sm) + 63|0); + $8 = HEAP8[$7>>0]|0; + $9 = ($8&255)>(31); + if (!($9)) { + $10 = (_crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($A,$pk)|0); + $11 = ($10|0)==(0); + if ($11) { + dest=$pkcopy1+0|0; src=$pk+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + dest=$rcopy+0|0; src=$sm+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $12 = (($sm) + 32|0); + dest=$scopy+0|0; src=$12+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _memmove(($m|0),($sm|0),($0|0))|0; + $13 = (($m) + 32|0); + dest=$13+0|0; src=$pkcopy1+0|0; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + (_crypto_hash_sha512_ref($h,$m,$0,$1)|0); + _crypto_sign_ed25519_ref10_sc_reduce($h); + _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($R,$h,$A,$scopy); + _crypto_sign_ed25519_ref10_ge_tobytes($rcheck,$R); + $14 = (_crypto_verify_32_ref($rcheck,$rcopy)|0); + $15 = ($14|0)==(0); + if ($15) { + $16 = (($m) + 64|0); + $17 = (_i64Add(($0|0),($1|0),-64,-1)|0); + $18 = tempRet0; + _memmove(($m|0),($16|0),($17|0))|0; + $$sum = (($0) + -64)|0; + $19 = (($m) + ($$sum)|0); + dest=$19+0|0; stop=dest+64|0; do { HEAP8[dest>>0]=0|0; dest=dest+1|0; } while ((dest|0) < (stop|0)); + $20 = $mlen; + $21 = $20; + HEAP32[$21>>2] = $17; + $22 = (($20) + 4)|0; + $23 = $22; + HEAP32[$23>>2] = $18; + $$0 = 0; + STACKTOP = sp;return ($$0|0); + } + } + } + } + $24 = $mlen; + $25 = $24; + HEAP32[$25>>2] = -1; + $26 = (($24) + 4)|0; + $27 = $26; + HEAP32[$27>>2] = -1; + _memset(($m|0),0,($0|0))|0; + $$0 = -1; + STACKTOP = sp;return ($$0|0); +} +function _crypto_sign_ed25519_ref10_sc_muladd($s,$a,$b,$c) { + $s = $s|0; + $a = $a|0; + $b = $b|0; + $c = $c|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; + var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; + var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; + var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; + var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; + var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; + var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0; + var $1123 = 0, $1124 = 0, $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0; + var $1141 = 0, $1142 = 0, $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0; + var $116 = 0, $1160 = 0, $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0; + var $1178 = 0, $1179 = 0, $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0; + var $1196 = 0, $1197 = 0, $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0; + var $1213 = 0, $1214 = 0, $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0; + var $1231 = 0, $1232 = 0, $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0; + var $125 = 0, $1250 = 0, $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0; + var $1268 = 0, $1269 = 0, $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0; + var $1286 = 0, $1287 = 0, $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0; + var $1303 = 0, $1304 = 0, $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0; + var $1321 = 0, $1322 = 0, $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0; + var $134 = 0, $1340 = 0, $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0; + var $1358 = 0, $1359 = 0, $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0; + var $1376 = 0, $1377 = 0, $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0; + var $1394 = 0, $1395 = 0, $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0; + var $1411 = 0, $1412 = 0, $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0; + var $143 = 0, $1430 = 0, $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0; + var $1448 = 0, $1449 = 0, $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0; + var $1466 = 0, $1467 = 0, $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0; + var $1484 = 0, $1485 = 0, $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0; + var $1501 = 0, $1502 = 0, $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0; + var $152 = 0, $1520 = 0, $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0; + var $1538 = 0, $1539 = 0, $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0; + var $1556 = 0, $1557 = 0, $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0; + var $1574 = 0, $1575 = 0, $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0; + var $1592 = 0, $1593 = 0, $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0; + var $161 = 0, $1610 = 0, $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0; + var $1628 = 0, $1629 = 0, $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0; + var $1646 = 0, $1647 = 0, $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0; + var $1664 = 0, $1665 = 0, $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0; + var $1682 = 0, $1683 = 0, $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0; + var $170 = 0, $1700 = 0, $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0; + var $1718 = 0, $1719 = 0, $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0; + var $1736 = 0, $1737 = 0, $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0; + var $1754 = 0, $1755 = 0, $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0; + var $1772 = 0, $1773 = 0, $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0; + var $1790 = 0, $1791 = 0, $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0; + var $1808 = 0, $1809 = 0, $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0; + var $1826 = 0, $1827 = 0, $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0; + var $1844 = 0, $1845 = 0, $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0; + var $1862 = 0, $1863 = 0, $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $188 = 0, $189 = 0; + var $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0; + var $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0; + var $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0; + var $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0; + var $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0; + var $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0; + var $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0; + var $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0; + var $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0; + var $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0; + var $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0; + var $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0; + var $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0; + var $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0; + var $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0; + var $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0; + var $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0; + var $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0; + var $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0; + var $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0; + var $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0; + var $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0; + var $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0; + var $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0; + var $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0; + var $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0; + var $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0; + var $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0; + var $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0; + var $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0; + var $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0; + var $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0; + var $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0; + var $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0; + var $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0; + var $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0; + var $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0; + var $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0; + var $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0; + var $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0; + var $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0; + var $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0; + var $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0; + var $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0; + var $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + $0 = (_load_347($a)|0); + $1 = tempRet0; + $2 = $0 & 2097151; + $3 = (($a) + 2|0); + $4 = (_load_448($3)|0); + $5 = tempRet0; + $6 = (_bitshift64Lshr(($4|0),($5|0),5)|0); + $7 = tempRet0; + $8 = $6 & 2097151; + $9 = (($a) + 5|0); + $10 = (_load_347($9)|0); + $11 = tempRet0; + $12 = (_bitshift64Lshr(($10|0),($11|0),2)|0); + $13 = tempRet0; + $14 = $12 & 2097151; + $15 = (($a) + 7|0); + $16 = (_load_448($15)|0); + $17 = tempRet0; + $18 = (_bitshift64Lshr(($16|0),($17|0),7)|0); + $19 = tempRet0; + $20 = $18 & 2097151; + $21 = (($a) + 10|0); + $22 = (_load_448($21)|0); + $23 = tempRet0; + $24 = (_bitshift64Lshr(($22|0),($23|0),4)|0); + $25 = tempRet0; + $26 = $24 & 2097151; + $27 = (($a) + 13|0); + $28 = (_load_347($27)|0); + $29 = tempRet0; + $30 = (_bitshift64Lshr(($28|0),($29|0),1)|0); + $31 = tempRet0; + $32 = $30 & 2097151; + $33 = (($a) + 15|0); + $34 = (_load_448($33)|0); + $35 = tempRet0; + $36 = (_bitshift64Lshr(($34|0),($35|0),6)|0); + $37 = tempRet0; + $38 = $36 & 2097151; + $39 = (($a) + 18|0); + $40 = (_load_347($39)|0); + $41 = tempRet0; + $42 = (_bitshift64Lshr(($40|0),($41|0),3)|0); + $43 = tempRet0; + $44 = $42 & 2097151; + $45 = (($a) + 21|0); + $46 = (_load_347($45)|0); + $47 = tempRet0; + $48 = $46 & 2097151; + $49 = (($a) + 23|0); + $50 = (_load_448($49)|0); + $51 = tempRet0; + $52 = (_bitshift64Lshr(($50|0),($51|0),5)|0); + $53 = tempRet0; + $54 = $52 & 2097151; + $55 = (($a) + 26|0); + $56 = (_load_347($55)|0); + $57 = tempRet0; + $58 = (_bitshift64Lshr(($56|0),($57|0),2)|0); + $59 = tempRet0; + $60 = $58 & 2097151; + $61 = (($a) + 28|0); + $62 = (_load_448($61)|0); + $63 = tempRet0; + $64 = (_bitshift64Lshr(($62|0),($63|0),7)|0); + $65 = tempRet0; + $66 = (_load_347($b)|0); + $67 = tempRet0; + $68 = $66 & 2097151; + $69 = (($b) + 2|0); + $70 = (_load_448($69)|0); + $71 = tempRet0; + $72 = (_bitshift64Lshr(($70|0),($71|0),5)|0); + $73 = tempRet0; + $74 = $72 & 2097151; + $75 = (($b) + 5|0); + $76 = (_load_347($75)|0); + $77 = tempRet0; + $78 = (_bitshift64Lshr(($76|0),($77|0),2)|0); + $79 = tempRet0; + $80 = $78 & 2097151; + $81 = (($b) + 7|0); + $82 = (_load_448($81)|0); + $83 = tempRet0; + $84 = (_bitshift64Lshr(($82|0),($83|0),7)|0); + $85 = tempRet0; + $86 = $84 & 2097151; + $87 = (($b) + 10|0); + $88 = (_load_448($87)|0); + $89 = tempRet0; + $90 = (_bitshift64Lshr(($88|0),($89|0),4)|0); + $91 = tempRet0; + $92 = $90 & 2097151; + $93 = (($b) + 13|0); + $94 = (_load_347($93)|0); + $95 = tempRet0; + $96 = (_bitshift64Lshr(($94|0),($95|0),1)|0); + $97 = tempRet0; + $98 = $96 & 2097151; + $99 = (($b) + 15|0); + $100 = (_load_448($99)|0); + $101 = tempRet0; + $102 = (_bitshift64Lshr(($100|0),($101|0),6)|0); + $103 = tempRet0; + $104 = $102 & 2097151; + $105 = (($b) + 18|0); + $106 = (_load_347($105)|0); + $107 = tempRet0; + $108 = (_bitshift64Lshr(($106|0),($107|0),3)|0); + $109 = tempRet0; + $110 = $108 & 2097151; + $111 = (($b) + 21|0); + $112 = (_load_347($111)|0); + $113 = tempRet0; + $114 = $112 & 2097151; + $115 = (($b) + 23|0); + $116 = (_load_448($115)|0); + $117 = tempRet0; + $118 = (_bitshift64Lshr(($116|0),($117|0),5)|0); + $119 = tempRet0; + $120 = $118 & 2097151; + $121 = (($b) + 26|0); + $122 = (_load_347($121)|0); + $123 = tempRet0; + $124 = (_bitshift64Lshr(($122|0),($123|0),2)|0); + $125 = tempRet0; + $126 = $124 & 2097151; + $127 = (($b) + 28|0); + $128 = (_load_448($127)|0); + $129 = tempRet0; + $130 = (_bitshift64Lshr(($128|0),($129|0),7)|0); + $131 = tempRet0; + $132 = (_load_347($c)|0); + $133 = tempRet0; + $134 = $132 & 2097151; + $135 = (($c) + 2|0); + $136 = (_load_448($135)|0); + $137 = tempRet0; + $138 = (_bitshift64Lshr(($136|0),($137|0),5)|0); + $139 = tempRet0; + $140 = $138 & 2097151; + $141 = (($c) + 5|0); + $142 = (_load_347($141)|0); + $143 = tempRet0; + $144 = (_bitshift64Lshr(($142|0),($143|0),2)|0); + $145 = tempRet0; + $146 = $144 & 2097151; + $147 = (($c) + 7|0); + $148 = (_load_448($147)|0); + $149 = tempRet0; + $150 = (_bitshift64Lshr(($148|0),($149|0),7)|0); + $151 = tempRet0; + $152 = $150 & 2097151; + $153 = (($c) + 10|0); + $154 = (_load_448($153)|0); + $155 = tempRet0; + $156 = (_bitshift64Lshr(($154|0),($155|0),4)|0); + $157 = tempRet0; + $158 = $156 & 2097151; + $159 = (($c) + 13|0); + $160 = (_load_347($159)|0); + $161 = tempRet0; + $162 = (_bitshift64Lshr(($160|0),($161|0),1)|0); + $163 = tempRet0; + $164 = $162 & 2097151; + $165 = (($c) + 15|0); + $166 = (_load_448($165)|0); + $167 = tempRet0; + $168 = (_bitshift64Lshr(($166|0),($167|0),6)|0); + $169 = tempRet0; + $170 = $168 & 2097151; + $171 = (($c) + 18|0); + $172 = (_load_347($171)|0); + $173 = tempRet0; + $174 = (_bitshift64Lshr(($172|0),($173|0),3)|0); + $175 = tempRet0; + $176 = $174 & 2097151; + $177 = (($c) + 21|0); + $178 = (_load_347($177)|0); + $179 = tempRet0; + $180 = $178 & 2097151; + $181 = (($c) + 23|0); + $182 = (_load_448($181)|0); + $183 = tempRet0; + $184 = (_bitshift64Lshr(($182|0),($183|0),5)|0); + $185 = tempRet0; + $186 = $184 & 2097151; + $187 = (($c) + 26|0); + $188 = (_load_347($187)|0); + $189 = tempRet0; + $190 = (_bitshift64Lshr(($188|0),($189|0),2)|0); + $191 = tempRet0; + $192 = $190 & 2097151; + $193 = (($c) + 28|0); + $194 = (_load_448($193)|0); + $195 = tempRet0; + $196 = (_bitshift64Lshr(($194|0),($195|0),7)|0); + $197 = tempRet0; + $198 = (___muldi3(($68|0),0,($2|0),0)|0); + $199 = tempRet0; + $200 = (_i64Add(($134|0),0,($198|0),($199|0))|0); + $201 = tempRet0; + $202 = (___muldi3(($74|0),0,($2|0),0)|0); + $203 = tempRet0; + $204 = (___muldi3(($68|0),0,($8|0),0)|0); + $205 = tempRet0; + $206 = (___muldi3(($80|0),0,($2|0),0)|0); + $207 = tempRet0; + $208 = (___muldi3(($74|0),0,($8|0),0)|0); + $209 = tempRet0; + $210 = (___muldi3(($68|0),0,($14|0),0)|0); + $211 = tempRet0; + $212 = (_i64Add(($208|0),($209|0),($210|0),($211|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($212|0),($213|0),($206|0),($207|0))|0); + $215 = tempRet0; + $216 = (_i64Add(($214|0),($215|0),($146|0),0)|0); + $217 = tempRet0; + $218 = (___muldi3(($86|0),0,($2|0),0)|0); + $219 = tempRet0; + $220 = (___muldi3(($80|0),0,($8|0),0)|0); + $221 = tempRet0; + $222 = (___muldi3(($74|0),0,($14|0),0)|0); + $223 = tempRet0; + $224 = (___muldi3(($68|0),0,($20|0),0)|0); + $225 = tempRet0; + $226 = (___muldi3(($92|0),0,($2|0),0)|0); + $227 = tempRet0; + $228 = (___muldi3(($86|0),0,($8|0),0)|0); + $229 = tempRet0; + $230 = (___muldi3(($80|0),0,($14|0),0)|0); + $231 = tempRet0; + $232 = (___muldi3(($74|0),0,($20|0),0)|0); + $233 = tempRet0; + $234 = (___muldi3(($68|0),0,($26|0),0)|0); + $235 = tempRet0; + $236 = (_i64Add(($232|0),($233|0),($234|0),($235|0))|0); + $237 = tempRet0; + $238 = (_i64Add(($236|0),($237|0),($230|0),($231|0))|0); + $239 = tempRet0; + $240 = (_i64Add(($238|0),($239|0),($228|0),($229|0))|0); + $241 = tempRet0; + $242 = (_i64Add(($240|0),($241|0),($226|0),($227|0))|0); + $243 = tempRet0; + $244 = (_i64Add(($242|0),($243|0),($158|0),0)|0); + $245 = tempRet0; + $246 = (___muldi3(($98|0),0,($2|0),0)|0); + $247 = tempRet0; + $248 = (___muldi3(($92|0),0,($8|0),0)|0); + $249 = tempRet0; + $250 = (___muldi3(($86|0),0,($14|0),0)|0); + $251 = tempRet0; + $252 = (___muldi3(($80|0),0,($20|0),0)|0); + $253 = tempRet0; + $254 = (___muldi3(($74|0),0,($26|0),0)|0); + $255 = tempRet0; + $256 = (___muldi3(($68|0),0,($32|0),0)|0); + $257 = tempRet0; + $258 = (___muldi3(($104|0),0,($2|0),0)|0); + $259 = tempRet0; + $260 = (___muldi3(($98|0),0,($8|0),0)|0); + $261 = tempRet0; + $262 = (___muldi3(($92|0),0,($14|0),0)|0); + $263 = tempRet0; + $264 = (___muldi3(($86|0),0,($20|0),0)|0); + $265 = tempRet0; + $266 = (___muldi3(($80|0),0,($26|0),0)|0); + $267 = tempRet0; + $268 = (___muldi3(($74|0),0,($32|0),0)|0); + $269 = tempRet0; + $270 = (___muldi3(($68|0),0,($38|0),0)|0); + $271 = tempRet0; + $272 = (_i64Add(($268|0),($269|0),($270|0),($271|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($266|0),($267|0))|0); + $275 = tempRet0; + $276 = (_i64Add(($274|0),($275|0),($264|0),($265|0))|0); + $277 = tempRet0; + $278 = (_i64Add(($276|0),($277|0),($262|0),($263|0))|0); + $279 = tempRet0; + $280 = (_i64Add(($278|0),($279|0),($260|0),($261|0))|0); + $281 = tempRet0; + $282 = (_i64Add(($280|0),($281|0),($258|0),($259|0))|0); + $283 = tempRet0; + $284 = (_i64Add(($282|0),($283|0),($170|0),0)|0); + $285 = tempRet0; + $286 = (___muldi3(($110|0),0,($2|0),0)|0); + $287 = tempRet0; + $288 = (___muldi3(($104|0),0,($8|0),0)|0); + $289 = tempRet0; + $290 = (___muldi3(($98|0),0,($14|0),0)|0); + $291 = tempRet0; + $292 = (___muldi3(($92|0),0,($20|0),0)|0); + $293 = tempRet0; + $294 = (___muldi3(($86|0),0,($26|0),0)|0); + $295 = tempRet0; + $296 = (___muldi3(($80|0),0,($32|0),0)|0); + $297 = tempRet0; + $298 = (___muldi3(($74|0),0,($38|0),0)|0); + $299 = tempRet0; + $300 = (___muldi3(($68|0),0,($44|0),0)|0); + $301 = tempRet0; + $302 = (___muldi3(($114|0),0,($2|0),0)|0); + $303 = tempRet0; + $304 = (___muldi3(($110|0),0,($8|0),0)|0); + $305 = tempRet0; + $306 = (___muldi3(($104|0),0,($14|0),0)|0); + $307 = tempRet0; + $308 = (___muldi3(($98|0),0,($20|0),0)|0); + $309 = tempRet0; + $310 = (___muldi3(($92|0),0,($26|0),0)|0); + $311 = tempRet0; + $312 = (___muldi3(($86|0),0,($32|0),0)|0); + $313 = tempRet0; + $314 = (___muldi3(($80|0),0,($38|0),0)|0); + $315 = tempRet0; + $316 = (___muldi3(($74|0),0,($44|0),0)|0); + $317 = tempRet0; + $318 = (___muldi3(($68|0),0,($48|0),0)|0); + $319 = tempRet0; + $320 = (_i64Add(($316|0),($317|0),($318|0),($319|0))|0); + $321 = tempRet0; + $322 = (_i64Add(($320|0),($321|0),($314|0),($315|0))|0); + $323 = tempRet0; + $324 = (_i64Add(($322|0),($323|0),($312|0),($313|0))|0); + $325 = tempRet0; + $326 = (_i64Add(($324|0),($325|0),($310|0),($311|0))|0); + $327 = tempRet0; + $328 = (_i64Add(($326|0),($327|0),($308|0),($309|0))|0); + $329 = tempRet0; + $330 = (_i64Add(($328|0),($329|0),($306|0),($307|0))|0); + $331 = tempRet0; + $332 = (_i64Add(($330|0),($331|0),($302|0),($303|0))|0); + $333 = tempRet0; + $334 = (_i64Add(($332|0),($333|0),($304|0),($305|0))|0); + $335 = tempRet0; + $336 = (_i64Add(($334|0),($335|0),($180|0),0)|0); + $337 = tempRet0; + $338 = (___muldi3(($120|0),0,($2|0),0)|0); + $339 = tempRet0; + $340 = (___muldi3(($114|0),0,($8|0),0)|0); + $341 = tempRet0; + $342 = (___muldi3(($110|0),0,($14|0),0)|0); + $343 = tempRet0; + $344 = (___muldi3(($104|0),0,($20|0),0)|0); + $345 = tempRet0; + $346 = (___muldi3(($98|0),0,($26|0),0)|0); + $347 = tempRet0; + $348 = (___muldi3(($92|0),0,($32|0),0)|0); + $349 = tempRet0; + $350 = (___muldi3(($86|0),0,($38|0),0)|0); + $351 = tempRet0; + $352 = (___muldi3(($80|0),0,($44|0),0)|0); + $353 = tempRet0; + $354 = (___muldi3(($74|0),0,($48|0),0)|0); + $355 = tempRet0; + $356 = (___muldi3(($68|0),0,($54|0),0)|0); + $357 = tempRet0; + $358 = (___muldi3(($126|0),0,($2|0),0)|0); + $359 = tempRet0; + $360 = (___muldi3(($120|0),0,($8|0),0)|0); + $361 = tempRet0; + $362 = (___muldi3(($114|0),0,($14|0),0)|0); + $363 = tempRet0; + $364 = (___muldi3(($110|0),0,($20|0),0)|0); + $365 = tempRet0; + $366 = (___muldi3(($104|0),0,($26|0),0)|0); + $367 = tempRet0; + $368 = (___muldi3(($98|0),0,($32|0),0)|0); + $369 = tempRet0; + $370 = (___muldi3(($92|0),0,($38|0),0)|0); + $371 = tempRet0; + $372 = (___muldi3(($86|0),0,($44|0),0)|0); + $373 = tempRet0; + $374 = (___muldi3(($80|0),0,($48|0),0)|0); + $375 = tempRet0; + $376 = (___muldi3(($74|0),0,($54|0),0)|0); + $377 = tempRet0; + $378 = (___muldi3(($68|0),0,($60|0),0)|0); + $379 = tempRet0; + $380 = (_i64Add(($376|0),($377|0),($378|0),($379|0))|0); + $381 = tempRet0; + $382 = (_i64Add(($380|0),($381|0),($374|0),($375|0))|0); + $383 = tempRet0; + $384 = (_i64Add(($382|0),($383|0),($372|0),($373|0))|0); + $385 = tempRet0; + $386 = (_i64Add(($384|0),($385|0),($370|0),($371|0))|0); + $387 = tempRet0; + $388 = (_i64Add(($386|0),($387|0),($368|0),($369|0))|0); + $389 = tempRet0; + $390 = (_i64Add(($388|0),($389|0),($366|0),($367|0))|0); + $391 = tempRet0; + $392 = (_i64Add(($390|0),($391|0),($362|0),($363|0))|0); + $393 = tempRet0; + $394 = (_i64Add(($392|0),($393|0),($364|0),($365|0))|0); + $395 = tempRet0; + $396 = (_i64Add(($394|0),($395|0),($360|0),($361|0))|0); + $397 = tempRet0; + $398 = (_i64Add(($396|0),($397|0),($358|0),($359|0))|0); + $399 = tempRet0; + $400 = (_i64Add(($398|0),($399|0),($192|0),0)|0); + $401 = tempRet0; + $402 = (___muldi3(($130|0),($131|0),($2|0),0)|0); + $403 = tempRet0; + $404 = (___muldi3(($126|0),0,($8|0),0)|0); + $405 = tempRet0; + $406 = (___muldi3(($120|0),0,($14|0),0)|0); + $407 = tempRet0; + $408 = (___muldi3(($114|0),0,($20|0),0)|0); + $409 = tempRet0; + $410 = (___muldi3(($110|0),0,($26|0),0)|0); + $411 = tempRet0; + $412 = (___muldi3(($104|0),0,($32|0),0)|0); + $413 = tempRet0; + $414 = (___muldi3(($98|0),0,($38|0),0)|0); + $415 = tempRet0; + $416 = (___muldi3(($92|0),0,($44|0),0)|0); + $417 = tempRet0; + $418 = (___muldi3(($86|0),0,($48|0),0)|0); + $419 = tempRet0; + $420 = (___muldi3(($80|0),0,($54|0),0)|0); + $421 = tempRet0; + $422 = (___muldi3(($74|0),0,($60|0),0)|0); + $423 = tempRet0; + $424 = (___muldi3(($68|0),0,($64|0),($65|0))|0); + $425 = tempRet0; + $426 = (___muldi3(($130|0),($131|0),($8|0),0)|0); + $427 = tempRet0; + $428 = (___muldi3(($126|0),0,($14|0),0)|0); + $429 = tempRet0; + $430 = (___muldi3(($120|0),0,($20|0),0)|0); + $431 = tempRet0; + $432 = (___muldi3(($114|0),0,($26|0),0)|0); + $433 = tempRet0; + $434 = (___muldi3(($110|0),0,($32|0),0)|0); + $435 = tempRet0; + $436 = (___muldi3(($104|0),0,($38|0),0)|0); + $437 = tempRet0; + $438 = (___muldi3(($98|0),0,($44|0),0)|0); + $439 = tempRet0; + $440 = (___muldi3(($92|0),0,($48|0),0)|0); + $441 = tempRet0; + $442 = (___muldi3(($86|0),0,($54|0),0)|0); + $443 = tempRet0; + $444 = (___muldi3(($80|0),0,($60|0),0)|0); + $445 = tempRet0; + $446 = (___muldi3(($74|0),0,($64|0),($65|0))|0); + $447 = tempRet0; + $448 = (_i64Add(($444|0),($445|0),($446|0),($447|0))|0); + $449 = tempRet0; + $450 = (_i64Add(($448|0),($449|0),($442|0),($443|0))|0); + $451 = tempRet0; + $452 = (_i64Add(($450|0),($451|0),($440|0),($441|0))|0); + $453 = tempRet0; + $454 = (_i64Add(($452|0),($453|0),($438|0),($439|0))|0); + $455 = tempRet0; + $456 = (_i64Add(($454|0),($455|0),($436|0),($437|0))|0); + $457 = tempRet0; + $458 = (_i64Add(($456|0),($457|0),($432|0),($433|0))|0); + $459 = tempRet0; + $460 = (_i64Add(($458|0),($459|0),($434|0),($435|0))|0); + $461 = tempRet0; + $462 = (_i64Add(($460|0),($461|0),($430|0),($431|0))|0); + $463 = tempRet0; + $464 = (_i64Add(($462|0),($463|0),($428|0),($429|0))|0); + $465 = tempRet0; + $466 = (_i64Add(($464|0),($465|0),($426|0),($427|0))|0); + $467 = tempRet0; + $468 = (___muldi3(($130|0),($131|0),($14|0),0)|0); + $469 = tempRet0; + $470 = (___muldi3(($126|0),0,($20|0),0)|0); + $471 = tempRet0; + $472 = (___muldi3(($120|0),0,($26|0),0)|0); + $473 = tempRet0; + $474 = (___muldi3(($114|0),0,($32|0),0)|0); + $475 = tempRet0; + $476 = (___muldi3(($110|0),0,($38|0),0)|0); + $477 = tempRet0; + $478 = (___muldi3(($104|0),0,($44|0),0)|0); + $479 = tempRet0; + $480 = (___muldi3(($98|0),0,($48|0),0)|0); + $481 = tempRet0; + $482 = (___muldi3(($92|0),0,($54|0),0)|0); + $483 = tempRet0; + $484 = (___muldi3(($86|0),0,($60|0),0)|0); + $485 = tempRet0; + $486 = (___muldi3(($80|0),0,($64|0),($65|0))|0); + $487 = tempRet0; + $488 = (___muldi3(($130|0),($131|0),($20|0),0)|0); + $489 = tempRet0; + $490 = (___muldi3(($126|0),0,($26|0),0)|0); + $491 = tempRet0; + $492 = (___muldi3(($120|0),0,($32|0),0)|0); + $493 = tempRet0; + $494 = (___muldi3(($114|0),0,($38|0),0)|0); + $495 = tempRet0; + $496 = (___muldi3(($110|0),0,($44|0),0)|0); + $497 = tempRet0; + $498 = (___muldi3(($104|0),0,($48|0),0)|0); + $499 = tempRet0; + $500 = (___muldi3(($98|0),0,($54|0),0)|0); + $501 = tempRet0; + $502 = (___muldi3(($92|0),0,($60|0),0)|0); + $503 = tempRet0; + $504 = (___muldi3(($86|0),0,($64|0),($65|0))|0); + $505 = tempRet0; + $506 = (_i64Add(($502|0),($503|0),($504|0),($505|0))|0); + $507 = tempRet0; + $508 = (_i64Add(($506|0),($507|0),($500|0),($501|0))|0); + $509 = tempRet0; + $510 = (_i64Add(($508|0),($509|0),($498|0),($499|0))|0); + $511 = tempRet0; + $512 = (_i64Add(($510|0),($511|0),($494|0),($495|0))|0); + $513 = tempRet0; + $514 = (_i64Add(($512|0),($513|0),($496|0),($497|0))|0); + $515 = tempRet0; + $516 = (_i64Add(($514|0),($515|0),($492|0),($493|0))|0); + $517 = tempRet0; + $518 = (_i64Add(($516|0),($517|0),($490|0),($491|0))|0); + $519 = tempRet0; + $520 = (_i64Add(($518|0),($519|0),($488|0),($489|0))|0); + $521 = tempRet0; + $522 = (___muldi3(($130|0),($131|0),($26|0),0)|0); + $523 = tempRet0; + $524 = (___muldi3(($126|0),0,($32|0),0)|0); + $525 = tempRet0; + $526 = (___muldi3(($120|0),0,($38|0),0)|0); + $527 = tempRet0; + $528 = (___muldi3(($114|0),0,($44|0),0)|0); + $529 = tempRet0; + $530 = (___muldi3(($110|0),0,($48|0),0)|0); + $531 = tempRet0; + $532 = (___muldi3(($104|0),0,($54|0),0)|0); + $533 = tempRet0; + $534 = (___muldi3(($98|0),0,($60|0),0)|0); + $535 = tempRet0; + $536 = (___muldi3(($92|0),0,($64|0),($65|0))|0); + $537 = tempRet0; + $538 = (___muldi3(($130|0),($131|0),($32|0),0)|0); + $539 = tempRet0; + $540 = (___muldi3(($126|0),0,($38|0),0)|0); + $541 = tempRet0; + $542 = (___muldi3(($120|0),0,($44|0),0)|0); + $543 = tempRet0; + $544 = (___muldi3(($114|0),0,($48|0),0)|0); + $545 = tempRet0; + $546 = (___muldi3(($110|0),0,($54|0),0)|0); + $547 = tempRet0; + $548 = (___muldi3(($104|0),0,($60|0),0)|0); + $549 = tempRet0; + $550 = (___muldi3(($98|0),0,($64|0),($65|0))|0); + $551 = tempRet0; + $552 = (_i64Add(($548|0),($549|0),($550|0),($551|0))|0); + $553 = tempRet0; + $554 = (_i64Add(($552|0),($553|0),($544|0),($545|0))|0); + $555 = tempRet0; + $556 = (_i64Add(($554|0),($555|0),($546|0),($547|0))|0); + $557 = tempRet0; + $558 = (_i64Add(($556|0),($557|0),($542|0),($543|0))|0); + $559 = tempRet0; + $560 = (_i64Add(($558|0),($559|0),($540|0),($541|0))|0); + $561 = tempRet0; + $562 = (_i64Add(($560|0),($561|0),($538|0),($539|0))|0); + $563 = tempRet0; + $564 = (___muldi3(($130|0),($131|0),($38|0),0)|0); + $565 = tempRet0; + $566 = (___muldi3(($126|0),0,($44|0),0)|0); + $567 = tempRet0; + $568 = (___muldi3(($120|0),0,($48|0),0)|0); + $569 = tempRet0; + $570 = (___muldi3(($114|0),0,($54|0),0)|0); + $571 = tempRet0; + $572 = (___muldi3(($110|0),0,($60|0),0)|0); + $573 = tempRet0; + $574 = (___muldi3(($104|0),0,($64|0),($65|0))|0); + $575 = tempRet0; + $576 = (___muldi3(($130|0),($131|0),($44|0),0)|0); + $577 = tempRet0; + $578 = (___muldi3(($126|0),0,($48|0),0)|0); + $579 = tempRet0; + $580 = (___muldi3(($120|0),0,($54|0),0)|0); + $581 = tempRet0; + $582 = (___muldi3(($114|0),0,($60|0),0)|0); + $583 = tempRet0; + $584 = (___muldi3(($110|0),0,($64|0),($65|0))|0); + $585 = tempRet0; + $586 = (_i64Add(($584|0),($585|0),($582|0),($583|0))|0); + $587 = tempRet0; + $588 = (_i64Add(($586|0),($587|0),($580|0),($581|0))|0); + $589 = tempRet0; + $590 = (_i64Add(($588|0),($589|0),($578|0),($579|0))|0); + $591 = tempRet0; + $592 = (_i64Add(($590|0),($591|0),($576|0),($577|0))|0); + $593 = tempRet0; + $594 = (___muldi3(($130|0),($131|0),($48|0),0)|0); + $595 = tempRet0; + $596 = (___muldi3(($126|0),0,($54|0),0)|0); + $597 = tempRet0; + $598 = (___muldi3(($120|0),0,($60|0),0)|0); + $599 = tempRet0; + $600 = (___muldi3(($114|0),0,($64|0),($65|0))|0); + $601 = tempRet0; + $602 = (___muldi3(($130|0),($131|0),($54|0),0)|0); + $603 = tempRet0; + $604 = (___muldi3(($126|0),0,($60|0),0)|0); + $605 = tempRet0; + $606 = (___muldi3(($120|0),0,($64|0),($65|0))|0); + $607 = tempRet0; + $608 = (_i64Add(($604|0),($605|0),($606|0),($607|0))|0); + $609 = tempRet0; + $610 = (_i64Add(($608|0),($609|0),($602|0),($603|0))|0); + $611 = tempRet0; + $612 = (___muldi3(($130|0),($131|0),($60|0),0)|0); + $613 = tempRet0; + $614 = (___muldi3(($126|0),0,($64|0),($65|0))|0); + $615 = tempRet0; + $616 = (_i64Add(($612|0),($613|0),($614|0),($615|0))|0); + $617 = tempRet0; + $618 = (___muldi3(($130|0),($131|0),($64|0),($65|0))|0); + $619 = tempRet0; + $620 = (_i64Add(($200|0),($201|0),1048576,0)|0); + $621 = tempRet0; + $622 = (_bitshift64Lshr(($620|0),($621|0),21)|0); + $623 = tempRet0; + $624 = (_i64Add(($202|0),($203|0),($204|0),($205|0))|0); + $625 = tempRet0; + $626 = (_i64Add(($624|0),($625|0),($140|0),0)|0); + $627 = tempRet0; + $628 = (_i64Add(($626|0),($627|0),($622|0),($623|0))|0); + $629 = tempRet0; + $630 = (_bitshift64Shl(($622|0),($623|0),21)|0); + $631 = tempRet0; + $632 = (_i64Subtract(($200|0),($201|0),($630|0),($631|0))|0); + $633 = tempRet0; + $634 = (_i64Add(($216|0),($217|0),1048576,0)|0); + $635 = tempRet0; + $636 = (_bitshift64Lshr(($634|0),($635|0),21)|0); + $637 = tempRet0; + $638 = (_i64Add(($222|0),($223|0),($224|0),($225|0))|0); + $639 = tempRet0; + $640 = (_i64Add(($638|0),($639|0),($220|0),($221|0))|0); + $641 = tempRet0; + $642 = (_i64Add(($640|0),($641|0),($218|0),($219|0))|0); + $643 = tempRet0; + $644 = (_i64Add(($642|0),($643|0),($152|0),0)|0); + $645 = tempRet0; + $646 = (_i64Add(($644|0),($645|0),($636|0),($637|0))|0); + $647 = tempRet0; + $648 = (_bitshift64Shl(($636|0),($637|0),21)|0); + $649 = tempRet0; + $650 = (_i64Add(($244|0),($245|0),1048576,0)|0); + $651 = tempRet0; + $652 = (_bitshift64Ashr(($650|0),($651|0),21)|0); + $653 = tempRet0; + $654 = (_i64Add(($254|0),($255|0),($256|0),($257|0))|0); + $655 = tempRet0; + $656 = (_i64Add(($654|0),($655|0),($252|0),($253|0))|0); + $657 = tempRet0; + $658 = (_i64Add(($656|0),($657|0),($250|0),($251|0))|0); + $659 = tempRet0; + $660 = (_i64Add(($658|0),($659|0),($248|0),($249|0))|0); + $661 = tempRet0; + $662 = (_i64Add(($660|0),($661|0),($246|0),($247|0))|0); + $663 = tempRet0; + $664 = (_i64Add(($662|0),($663|0),($164|0),0)|0); + $665 = tempRet0; + $666 = (_i64Add(($664|0),($665|0),($652|0),($653|0))|0); + $667 = tempRet0; + $668 = (_bitshift64Shl(($652|0),($653|0),21)|0); + $669 = tempRet0; + $670 = (_i64Subtract(($244|0),($245|0),($668|0),($669|0))|0); + $671 = tempRet0; + $672 = (_i64Add(($284|0),($285|0),1048576,0)|0); + $673 = tempRet0; + $674 = (_bitshift64Ashr(($672|0),($673|0),21)|0); + $675 = tempRet0; + $676 = (_i64Add(($298|0),($299|0),($300|0),($301|0))|0); + $677 = tempRet0; + $678 = (_i64Add(($676|0),($677|0),($296|0),($297|0))|0); + $679 = tempRet0; + $680 = (_i64Add(($678|0),($679|0),($294|0),($295|0))|0); + $681 = tempRet0; + $682 = (_i64Add(($680|0),($681|0),($292|0),($293|0))|0); + $683 = tempRet0; + $684 = (_i64Add(($682|0),($683|0),($290|0),($291|0))|0); + $685 = tempRet0; + $686 = (_i64Add(($684|0),($685|0),($288|0),($289|0))|0); + $687 = tempRet0; + $688 = (_i64Add(($686|0),($687|0),($286|0),($287|0))|0); + $689 = tempRet0; + $690 = (_i64Add(($688|0),($689|0),($176|0),0)|0); + $691 = tempRet0; + $692 = (_i64Add(($690|0),($691|0),($674|0),($675|0))|0); + $693 = tempRet0; + $694 = (_bitshift64Shl(($674|0),($675|0),21)|0); + $695 = tempRet0; + $696 = (_i64Add(($336|0),($337|0),1048576,0)|0); + $697 = tempRet0; + $698 = (_bitshift64Ashr(($696|0),($697|0),21)|0); + $699 = tempRet0; + $700 = (_i64Add(($354|0),($355|0),($356|0),($357|0))|0); + $701 = tempRet0; + $702 = (_i64Add(($700|0),($701|0),($352|0),($353|0))|0); + $703 = tempRet0; + $704 = (_i64Add(($702|0),($703|0),($350|0),($351|0))|0); + $705 = tempRet0; + $706 = (_i64Add(($704|0),($705|0),($348|0),($349|0))|0); + $707 = tempRet0; + $708 = (_i64Add(($706|0),($707|0),($346|0),($347|0))|0); + $709 = tempRet0; + $710 = (_i64Add(($708|0),($709|0),($344|0),($345|0))|0); + $711 = tempRet0; + $712 = (_i64Add(($710|0),($711|0),($340|0),($341|0))|0); + $713 = tempRet0; + $714 = (_i64Add(($712|0),($713|0),($342|0),($343|0))|0); + $715 = tempRet0; + $716 = (_i64Add(($714|0),($715|0),($338|0),($339|0))|0); + $717 = tempRet0; + $718 = (_i64Add(($716|0),($717|0),($186|0),0)|0); + $719 = tempRet0; + $720 = (_i64Add(($718|0),($719|0),($698|0),($699|0))|0); + $721 = tempRet0; + $722 = (_bitshift64Shl(($698|0),($699|0),21)|0); + $723 = tempRet0; + $724 = (_i64Add(($400|0),($401|0),1048576,0)|0); + $725 = tempRet0; + $726 = (_bitshift64Ashr(($724|0),($725|0),21)|0); + $727 = tempRet0; + $728 = (_i64Add(($422|0),($423|0),($424|0),($425|0))|0); + $729 = tempRet0; + $730 = (_i64Add(($728|0),($729|0),($420|0),($421|0))|0); + $731 = tempRet0; + $732 = (_i64Add(($730|0),($731|0),($418|0),($419|0))|0); + $733 = tempRet0; + $734 = (_i64Add(($732|0),($733|0),($416|0),($417|0))|0); + $735 = tempRet0; + $736 = (_i64Add(($734|0),($735|0),($414|0),($415|0))|0); + $737 = tempRet0; + $738 = (_i64Add(($736|0),($737|0),($412|0),($413|0))|0); + $739 = tempRet0; + $740 = (_i64Add(($738|0),($739|0),($408|0),($409|0))|0); + $741 = tempRet0; + $742 = (_i64Add(($740|0),($741|0),($410|0),($411|0))|0); + $743 = tempRet0; + $744 = (_i64Add(($742|0),($743|0),($406|0),($407|0))|0); + $745 = tempRet0; + $746 = (_i64Add(($744|0),($745|0),($402|0),($403|0))|0); + $747 = tempRet0; + $748 = (_i64Add(($746|0),($747|0),($404|0),($405|0))|0); + $749 = tempRet0; + $750 = (_i64Add(($748|0),($749|0),($196|0),($197|0))|0); + $751 = tempRet0; + $752 = (_i64Add(($750|0),($751|0),($726|0),($727|0))|0); + $753 = tempRet0; + $754 = (_bitshift64Shl(($726|0),($727|0),21)|0); + $755 = tempRet0; + $756 = (_i64Add(($466|0),($467|0),1048576,0)|0); + $757 = tempRet0; + $758 = (_bitshift64Ashr(($756|0),($757|0),21)|0); + $759 = tempRet0; + $760 = (_i64Add(($484|0),($485|0),($486|0),($487|0))|0); + $761 = tempRet0; + $762 = (_i64Add(($760|0),($761|0),($482|0),($483|0))|0); + $763 = tempRet0; + $764 = (_i64Add(($762|0),($763|0),($480|0),($481|0))|0); + $765 = tempRet0; + $766 = (_i64Add(($764|0),($765|0),($478|0),($479|0))|0); + $767 = tempRet0; + $768 = (_i64Add(($766|0),($767|0),($474|0),($475|0))|0); + $769 = tempRet0; + $770 = (_i64Add(($768|0),($769|0),($476|0),($477|0))|0); + $771 = tempRet0; + $772 = (_i64Add(($770|0),($771|0),($472|0),($473|0))|0); + $773 = tempRet0; + $774 = (_i64Add(($772|0),($773|0),($470|0),($471|0))|0); + $775 = tempRet0; + $776 = (_i64Add(($774|0),($775|0),($468|0),($469|0))|0); + $777 = tempRet0; + $778 = (_i64Add(($776|0),($777|0),($758|0),($759|0))|0); + $779 = tempRet0; + $780 = (_bitshift64Shl(($758|0),($759|0),21)|0); + $781 = tempRet0; + $782 = (_i64Add(($520|0),($521|0),1048576,0)|0); + $783 = tempRet0; + $784 = (_bitshift64Ashr(($782|0),($783|0),21)|0); + $785 = tempRet0; + $786 = (_i64Add(($534|0),($535|0),($536|0),($537|0))|0); + $787 = tempRet0; + $788 = (_i64Add(($786|0),($787|0),($532|0),($533|0))|0); + $789 = tempRet0; + $790 = (_i64Add(($788|0),($789|0),($528|0),($529|0))|0); + $791 = tempRet0; + $792 = (_i64Add(($790|0),($791|0),($530|0),($531|0))|0); + $793 = tempRet0; + $794 = (_i64Add(($792|0),($793|0),($526|0),($527|0))|0); + $795 = tempRet0; + $796 = (_i64Add(($794|0),($795|0),($524|0),($525|0))|0); + $797 = tempRet0; + $798 = (_i64Add(($796|0),($797|0),($522|0),($523|0))|0); + $799 = tempRet0; + $800 = (_i64Add(($798|0),($799|0),($784|0),($785|0))|0); + $801 = tempRet0; + $802 = (_bitshift64Shl(($784|0),($785|0),21)|0); + $803 = tempRet0; + $804 = (_i64Add(($562|0),($563|0),1048576,0)|0); + $805 = tempRet0; + $806 = (_bitshift64Ashr(($804|0),($805|0),21)|0); + $807 = tempRet0; + $808 = (_i64Add(($570|0),($571|0),($574|0),($575|0))|0); + $809 = tempRet0; + $810 = (_i64Add(($808|0),($809|0),($572|0),($573|0))|0); + $811 = tempRet0; + $812 = (_i64Add(($810|0),($811|0),($568|0),($569|0))|0); + $813 = tempRet0; + $814 = (_i64Add(($812|0),($813|0),($566|0),($567|0))|0); + $815 = tempRet0; + $816 = (_i64Add(($814|0),($815|0),($564|0),($565|0))|0); + $817 = tempRet0; + $818 = (_i64Add(($816|0),($817|0),($806|0),($807|0))|0); + $819 = tempRet0; + $820 = (_bitshift64Shl(($806|0),($807|0),21)|0); + $821 = tempRet0; + $822 = (_i64Add(($592|0),($593|0),1048576,0)|0); + $823 = tempRet0; + $824 = (_bitshift64Ashr(($822|0),($823|0),21)|0); + $825 = tempRet0; + $826 = (_i64Add(($598|0),($599|0),($600|0),($601|0))|0); + $827 = tempRet0; + $828 = (_i64Add(($826|0),($827|0),($596|0),($597|0))|0); + $829 = tempRet0; + $830 = (_i64Add(($828|0),($829|0),($594|0),($595|0))|0); + $831 = tempRet0; + $832 = (_i64Add(($830|0),($831|0),($824|0),($825|0))|0); + $833 = tempRet0; + $834 = (_bitshift64Shl(($824|0),($825|0),21)|0); + $835 = tempRet0; + $836 = (_i64Subtract(($592|0),($593|0),($834|0),($835|0))|0); + $837 = tempRet0; + $838 = (_i64Add(($610|0),($611|0),1048576,0)|0); + $839 = tempRet0; + $840 = (_bitshift64Lshr(($838|0),($839|0),21)|0); + $841 = tempRet0; + $842 = (_i64Add(($616|0),($617|0),($840|0),($841|0))|0); + $843 = tempRet0; + $844 = (_bitshift64Shl(($840|0),($841|0),21)|0); + $845 = tempRet0; + $846 = (_i64Subtract(($610|0),($611|0),($844|0),($845|0))|0); + $847 = tempRet0; + $848 = (_i64Add(($618|0),($619|0),1048576,0)|0); + $849 = tempRet0; + $850 = (_bitshift64Lshr(($848|0),($849|0),21)|0); + $851 = tempRet0; + $852 = (_bitshift64Shl(($850|0),($851|0),21)|0); + $853 = tempRet0; + $854 = (_i64Subtract(($618|0),($619|0),($852|0),($853|0))|0); + $855 = tempRet0; + $856 = (_i64Add(($628|0),($629|0),1048576,0)|0); + $857 = tempRet0; + $858 = (_bitshift64Lshr(($856|0),($857|0),21)|0); + $859 = tempRet0; + $860 = (_bitshift64Shl(($858|0),($859|0),21)|0); + $861 = tempRet0; + $862 = (_i64Subtract(($628|0),($629|0),($860|0),($861|0))|0); + $863 = tempRet0; + $864 = (_i64Add(($646|0),($647|0),1048576,0)|0); + $865 = tempRet0; + $866 = (_bitshift64Ashr(($864|0),($865|0),21)|0); + $867 = tempRet0; + $868 = (_i64Add(($670|0),($671|0),($866|0),($867|0))|0); + $869 = tempRet0; + $870 = (_bitshift64Shl(($866|0),($867|0),21)|0); + $871 = tempRet0; + $872 = (_i64Subtract(($646|0),($647|0),($870|0),($871|0))|0); + $873 = tempRet0; + $874 = (_i64Add(($666|0),($667|0),1048576,0)|0); + $875 = tempRet0; + $876 = (_bitshift64Ashr(($874|0),($875|0),21)|0); + $877 = tempRet0; + $878 = (_bitshift64Shl(($876|0),($877|0),21)|0); + $879 = tempRet0; + $880 = (_i64Subtract(($666|0),($667|0),($878|0),($879|0))|0); + $881 = tempRet0; + $882 = (_i64Add(($692|0),($693|0),1048576,0)|0); + $883 = tempRet0; + $884 = (_bitshift64Ashr(($882|0),($883|0),21)|0); + $885 = tempRet0; + $886 = (_bitshift64Shl(($884|0),($885|0),21)|0); + $887 = tempRet0; + $888 = (_i64Add(($720|0),($721|0),1048576,0)|0); + $889 = tempRet0; + $890 = (_bitshift64Ashr(($888|0),($889|0),21)|0); + $891 = tempRet0; + $892 = (_bitshift64Shl(($890|0),($891|0),21)|0); + $893 = tempRet0; + $894 = (_i64Add(($752|0),($753|0),1048576,0)|0); + $895 = tempRet0; + $896 = (_bitshift64Ashr(($894|0),($895|0),21)|0); + $897 = tempRet0; + $898 = (_bitshift64Shl(($896|0),($897|0),21)|0); + $899 = tempRet0; + $900 = (_i64Add(($778|0),($779|0),1048576,0)|0); + $901 = tempRet0; + $902 = (_bitshift64Ashr(($900|0),($901|0),21)|0); + $903 = tempRet0; + $904 = (_bitshift64Shl(($902|0),($903|0),21)|0); + $905 = tempRet0; + $906 = (_i64Add(($800|0),($801|0),1048576,0)|0); + $907 = tempRet0; + $908 = (_bitshift64Ashr(($906|0),($907|0),21)|0); + $909 = tempRet0; + $910 = (_bitshift64Shl(($908|0),($909|0),21)|0); + $911 = tempRet0; + $912 = (_i64Add(($818|0),($819|0),1048576,0)|0); + $913 = tempRet0; + $914 = (_bitshift64Ashr(($912|0),($913|0),21)|0); + $915 = tempRet0; + $916 = (_i64Add(($914|0),($915|0),($836|0),($837|0))|0); + $917 = tempRet0; + $918 = (_bitshift64Shl(($914|0),($915|0),21)|0); + $919 = tempRet0; + $920 = (_i64Subtract(($818|0),($819|0),($918|0),($919|0))|0); + $921 = tempRet0; + $922 = (_i64Add(($832|0),($833|0),1048576,0)|0); + $923 = tempRet0; + $924 = (_bitshift64Ashr(($922|0),($923|0),21)|0); + $925 = tempRet0; + $926 = (_i64Add(($924|0),($925|0),($846|0),($847|0))|0); + $927 = tempRet0; + $928 = (_bitshift64Shl(($924|0),($925|0),21)|0); + $929 = tempRet0; + $930 = (_i64Subtract(($832|0),($833|0),($928|0),($929|0))|0); + $931 = tempRet0; + $932 = (_i64Add(($842|0),($843|0),1048576,0)|0); + $933 = tempRet0; + $934 = (_bitshift64Lshr(($932|0),($933|0),21)|0); + $935 = tempRet0; + $936 = (_i64Add(($934|0),($935|0),($854|0),($855|0))|0); + $937 = tempRet0; + $938 = (_bitshift64Shl(($934|0),($935|0),21)|0); + $939 = tempRet0; + $940 = (_i64Subtract(($842|0),($843|0),($938|0),($939|0))|0); + $941 = tempRet0; + $942 = (___muldi3(($850|0),($851|0),666643,0)|0); + $943 = tempRet0; + $944 = (___muldi3(($850|0),($851|0),470296,0)|0); + $945 = tempRet0; + $946 = (___muldi3(($850|0),($851|0),654183,0)|0); + $947 = tempRet0; + $948 = (___muldi3(($850|0),($851|0),-997805,-1)|0); + $949 = tempRet0; + $950 = (___muldi3(($850|0),($851|0),136657,0)|0); + $951 = tempRet0; + $952 = (___muldi3(($850|0),($851|0),-683901,-1)|0); + $953 = tempRet0; + $954 = (_i64Add(($952|0),($953|0),($562|0),($563|0))|0); + $955 = tempRet0; + $956 = (_i64Subtract(($954|0),($955|0),($820|0),($821|0))|0); + $957 = tempRet0; + $958 = (_i64Add(($956|0),($957|0),($908|0),($909|0))|0); + $959 = tempRet0; + $960 = (___muldi3(($936|0),($937|0),666643,0)|0); + $961 = tempRet0; + $962 = (___muldi3(($936|0),($937|0),470296,0)|0); + $963 = tempRet0; + $964 = (___muldi3(($936|0),($937|0),654183,0)|0); + $965 = tempRet0; + $966 = (___muldi3(($936|0),($937|0),-997805,-1)|0); + $967 = tempRet0; + $968 = (___muldi3(($936|0),($937|0),136657,0)|0); + $969 = tempRet0; + $970 = (___muldi3(($936|0),($937|0),-683901,-1)|0); + $971 = tempRet0; + $972 = (___muldi3(($940|0),($941|0),666643,0)|0); + $973 = tempRet0; + $974 = (___muldi3(($940|0),($941|0),470296,0)|0); + $975 = tempRet0; + $976 = (___muldi3(($940|0),($941|0),654183,0)|0); + $977 = tempRet0; + $978 = (___muldi3(($940|0),($941|0),-997805,-1)|0); + $979 = tempRet0; + $980 = (___muldi3(($940|0),($941|0),136657,0)|0); + $981 = tempRet0; + $982 = (___muldi3(($940|0),($941|0),-683901,-1)|0); + $983 = tempRet0; + $984 = (_i64Add(($948|0),($949|0),($520|0),($521|0))|0); + $985 = tempRet0; + $986 = (_i64Subtract(($984|0),($985|0),($802|0),($803|0))|0); + $987 = tempRet0; + $988 = (_i64Add(($986|0),($987|0),($902|0),($903|0))|0); + $989 = tempRet0; + $990 = (_i64Add(($988|0),($989|0),($968|0),($969|0))|0); + $991 = tempRet0; + $992 = (_i64Add(($990|0),($991|0),($982|0),($983|0))|0); + $993 = tempRet0; + $994 = (___muldi3(($926|0),($927|0),666643,0)|0); + $995 = tempRet0; + $996 = (___muldi3(($926|0),($927|0),470296,0)|0); + $997 = tempRet0; + $998 = (___muldi3(($926|0),($927|0),654183,0)|0); + $999 = tempRet0; + $1000 = (___muldi3(($926|0),($927|0),-997805,-1)|0); + $1001 = tempRet0; + $1002 = (___muldi3(($926|0),($927|0),136657,0)|0); + $1003 = tempRet0; + $1004 = (___muldi3(($926|0),($927|0),-683901,-1)|0); + $1005 = tempRet0; + $1006 = (___muldi3(($930|0),($931|0),666643,0)|0); + $1007 = tempRet0; + $1008 = (___muldi3(($930|0),($931|0),470296,0)|0); + $1009 = tempRet0; + $1010 = (___muldi3(($930|0),($931|0),654183,0)|0); + $1011 = tempRet0; + $1012 = (___muldi3(($930|0),($931|0),-997805,-1)|0); + $1013 = tempRet0; + $1014 = (___muldi3(($930|0),($931|0),136657,0)|0); + $1015 = tempRet0; + $1016 = (___muldi3(($930|0),($931|0),-683901,-1)|0); + $1017 = tempRet0; + $1018 = (_i64Add(($944|0),($945|0),($466|0),($467|0))|0); + $1019 = tempRet0; + $1020 = (_i64Subtract(($1018|0),($1019|0),($780|0),($781|0))|0); + $1021 = tempRet0; + $1022 = (_i64Add(($1020|0),($1021|0),($964|0),($965|0))|0); + $1023 = tempRet0; + $1024 = (_i64Add(($1022|0),($1023|0),($1002|0),($1003|0))|0); + $1025 = tempRet0; + $1026 = (_i64Add(($1024|0),($1025|0),($978|0),($979|0))|0); + $1027 = tempRet0; + $1028 = (_i64Add(($1026|0),($1027|0),($1016|0),($1017|0))|0); + $1029 = tempRet0; + $1030 = (_i64Add(($1028|0),($1029|0),($896|0),($897|0))|0); + $1031 = tempRet0; + $1032 = (___muldi3(($916|0),($917|0),666643,0)|0); + $1033 = tempRet0; + $1034 = (_i64Add(($1032|0),($1033|0),($284|0),($285|0))|0); + $1035 = tempRet0; + $1036 = (_i64Subtract(($1034|0),($1035|0),($694|0),($695|0))|0); + $1037 = tempRet0; + $1038 = (_i64Add(($1036|0),($1037|0),($876|0),($877|0))|0); + $1039 = tempRet0; + $1040 = (___muldi3(($916|0),($917|0),470296,0)|0); + $1041 = tempRet0; + $1042 = (___muldi3(($916|0),($917|0),654183,0)|0); + $1043 = tempRet0; + $1044 = (_i64Add(($994|0),($995|0),($336|0),($337|0))|0); + $1045 = tempRet0; + $1046 = (_i64Add(($1044|0),($1045|0),($1042|0),($1043|0))|0); + $1047 = tempRet0; + $1048 = (_i64Add(($1046|0),($1047|0),($1008|0),($1009|0))|0); + $1049 = tempRet0; + $1050 = (_i64Subtract(($1048|0),($1049|0),($722|0),($723|0))|0); + $1051 = tempRet0; + $1052 = (_i64Add(($1050|0),($1051|0),($884|0),($885|0))|0); + $1053 = tempRet0; + $1054 = (___muldi3(($916|0),($917|0),-997805,-1)|0); + $1055 = tempRet0; + $1056 = (___muldi3(($916|0),($917|0),136657,0)|0); + $1057 = tempRet0; + $1058 = (_i64Add(($998|0),($999|0),($960|0),($961|0))|0); + $1059 = tempRet0; + $1060 = (_i64Add(($1058|0),($1059|0),($1056|0),($1057|0))|0); + $1061 = tempRet0; + $1062 = (_i64Add(($1060|0),($1061|0),($974|0),($975|0))|0); + $1063 = tempRet0; + $1064 = (_i64Add(($1062|0),($1063|0),($1012|0),($1013|0))|0); + $1065 = tempRet0; + $1066 = (_i64Add(($1064|0),($1065|0),($400|0),($401|0))|0); + $1067 = tempRet0; + $1068 = (_i64Add(($1066|0),($1067|0),($890|0),($891|0))|0); + $1069 = tempRet0; + $1070 = (_i64Subtract(($1068|0),($1069|0),($754|0),($755|0))|0); + $1071 = tempRet0; + $1072 = (___muldi3(($916|0),($917|0),-683901,-1)|0); + $1073 = tempRet0; + $1074 = (_i64Add(($1038|0),($1039|0),1048576,0)|0); + $1075 = tempRet0; + $1076 = (_bitshift64Ashr(($1074|0),($1075|0),21)|0); + $1077 = tempRet0; + $1078 = (_i64Add(($1006|0),($1007|0),($1040|0),($1041|0))|0); + $1079 = tempRet0; + $1080 = (_i64Add(($1078|0),($1079|0),($692|0),($693|0))|0); + $1081 = tempRet0; + $1082 = (_i64Subtract(($1080|0),($1081|0),($886|0),($887|0))|0); + $1083 = tempRet0; + $1084 = (_i64Add(($1082|0),($1083|0),($1076|0),($1077|0))|0); + $1085 = tempRet0; + $1086 = (_bitshift64Shl(($1076|0),($1077|0),21)|0); + $1087 = tempRet0; + $1088 = (_i64Add(($1052|0),($1053|0),1048576,0)|0); + $1089 = tempRet0; + $1090 = (_bitshift64Ashr(($1088|0),($1089|0),21)|0); + $1091 = tempRet0; + $1092 = (_i64Add(($1054|0),($1055|0),($996|0),($997|0))|0); + $1093 = tempRet0; + $1094 = (_i64Add(($1092|0),($1093|0),($972|0),($973|0))|0); + $1095 = tempRet0; + $1096 = (_i64Add(($1094|0),($1095|0),($1010|0),($1011|0))|0); + $1097 = tempRet0; + $1098 = (_i64Add(($1096|0),($1097|0),($720|0),($721|0))|0); + $1099 = tempRet0; + $1100 = (_i64Subtract(($1098|0),($1099|0),($892|0),($893|0))|0); + $1101 = tempRet0; + $1102 = (_i64Add(($1100|0),($1101|0),($1090|0),($1091|0))|0); + $1103 = tempRet0; + $1104 = (_bitshift64Shl(($1090|0),($1091|0),21)|0); + $1105 = tempRet0; + $1106 = (_i64Add(($1070|0),($1071|0),1048576,0)|0); + $1107 = tempRet0; + $1108 = (_bitshift64Ashr(($1106|0),($1107|0),21)|0); + $1109 = tempRet0; + $1110 = (_i64Add(($962|0),($963|0),($942|0),($943|0))|0); + $1111 = tempRet0; + $1112 = (_i64Add(($1110|0),($1111|0),($1000|0),($1001|0))|0); + $1113 = tempRet0; + $1114 = (_i64Add(($1112|0),($1113|0),($1072|0),($1073|0))|0); + $1115 = tempRet0; + $1116 = (_i64Add(($1114|0),($1115|0),($976|0),($977|0))|0); + $1117 = tempRet0; + $1118 = (_i64Add(($1116|0),($1117|0),($1014|0),($1015|0))|0); + $1119 = tempRet0; + $1120 = (_i64Add(($1118|0),($1119|0),($752|0),($753|0))|0); + $1121 = tempRet0; + $1122 = (_i64Subtract(($1120|0),($1121|0),($898|0),($899|0))|0); + $1123 = tempRet0; + $1124 = (_i64Add(($1122|0),($1123|0),($1108|0),($1109|0))|0); + $1125 = tempRet0; + $1126 = (_bitshift64Shl(($1108|0),($1109|0),21)|0); + $1127 = tempRet0; + $1128 = (_i64Add(($1030|0),($1031|0),1048576,0)|0); + $1129 = tempRet0; + $1130 = (_bitshift64Ashr(($1128|0),($1129|0),21)|0); + $1131 = tempRet0; + $1132 = (_i64Add(($778|0),($779|0),($946|0),($947|0))|0); + $1133 = tempRet0; + $1134 = (_i64Subtract(($1132|0),($1133|0),($904|0),($905|0))|0); + $1135 = tempRet0; + $1136 = (_i64Add(($1134|0),($1135|0),($966|0),($967|0))|0); + $1137 = tempRet0; + $1138 = (_i64Add(($1136|0),($1137|0),($1004|0),($1005|0))|0); + $1139 = tempRet0; + $1140 = (_i64Add(($1138|0),($1139|0),($980|0),($981|0))|0); + $1141 = tempRet0; + $1142 = (_i64Add(($1140|0),($1141|0),($1130|0),($1131|0))|0); + $1143 = tempRet0; + $1144 = (_bitshift64Shl(($1130|0),($1131|0),21)|0); + $1145 = tempRet0; + $1146 = (_i64Subtract(($1030|0),($1031|0),($1144|0),($1145|0))|0); + $1147 = tempRet0; + $1148 = (_i64Add(($992|0),($993|0),1048576,0)|0); + $1149 = tempRet0; + $1150 = (_bitshift64Ashr(($1148|0),($1149|0),21)|0); + $1151 = tempRet0; + $1152 = (_i64Add(($800|0),($801|0),($950|0),($951|0))|0); + $1153 = tempRet0; + $1154 = (_i64Subtract(($1152|0),($1153|0),($910|0),($911|0))|0); + $1155 = tempRet0; + $1156 = (_i64Add(($1154|0),($1155|0),($970|0),($971|0))|0); + $1157 = tempRet0; + $1158 = (_i64Add(($1156|0),($1157|0),($1150|0),($1151|0))|0); + $1159 = tempRet0; + $1160 = (_bitshift64Shl(($1150|0),($1151|0),21)|0); + $1161 = tempRet0; + $1162 = (_i64Subtract(($992|0),($993|0),($1160|0),($1161|0))|0); + $1163 = tempRet0; + $1164 = (_i64Add(($958|0),($959|0),1048576,0)|0); + $1165 = tempRet0; + $1166 = (_bitshift64Ashr(($1164|0),($1165|0),21)|0); + $1167 = tempRet0; + $1168 = (_i64Add(($1166|0),($1167|0),($920|0),($921|0))|0); + $1169 = tempRet0; + $1170 = (_bitshift64Shl(($1166|0),($1167|0),21)|0); + $1171 = tempRet0; + $1172 = (_i64Subtract(($958|0),($959|0),($1170|0),($1171|0))|0); + $1173 = tempRet0; + $1174 = (_i64Add(($1084|0),($1085|0),1048576,0)|0); + $1175 = tempRet0; + $1176 = (_bitshift64Ashr(($1174|0),($1175|0),21)|0); + $1177 = tempRet0; + $1178 = (_bitshift64Shl(($1176|0),($1177|0),21)|0); + $1179 = tempRet0; + $1180 = (_i64Add(($1102|0),($1103|0),1048576,0)|0); + $1181 = tempRet0; + $1182 = (_bitshift64Ashr(($1180|0),($1181|0),21)|0); + $1183 = tempRet0; + $1184 = (_bitshift64Shl(($1182|0),($1183|0),21)|0); + $1185 = tempRet0; + $1186 = (_i64Add(($1124|0),($1125|0),1048576,0)|0); + $1187 = tempRet0; + $1188 = (_bitshift64Ashr(($1186|0),($1187|0),21)|0); + $1189 = tempRet0; + $1190 = (_i64Add(($1146|0),($1147|0),($1188|0),($1189|0))|0); + $1191 = tempRet0; + $1192 = (_bitshift64Shl(($1188|0),($1189|0),21)|0); + $1193 = tempRet0; + $1194 = (_i64Subtract(($1124|0),($1125|0),($1192|0),($1193|0))|0); + $1195 = tempRet0; + $1196 = (_i64Add(($1142|0),($1143|0),1048576,0)|0); + $1197 = tempRet0; + $1198 = (_bitshift64Ashr(($1196|0),($1197|0),21)|0); + $1199 = tempRet0; + $1200 = (_i64Add(($1198|0),($1199|0),($1162|0),($1163|0))|0); + $1201 = tempRet0; + $1202 = (_bitshift64Shl(($1198|0),($1199|0),21)|0); + $1203 = tempRet0; + $1204 = (_i64Subtract(($1142|0),($1143|0),($1202|0),($1203|0))|0); + $1205 = tempRet0; + $1206 = (_i64Add(($1158|0),($1159|0),1048576,0)|0); + $1207 = tempRet0; + $1208 = (_bitshift64Ashr(($1206|0),($1207|0),21)|0); + $1209 = tempRet0; + $1210 = (_i64Add(($1208|0),($1209|0),($1172|0),($1173|0))|0); + $1211 = tempRet0; + $1212 = (_bitshift64Shl(($1208|0),($1209|0),21)|0); + $1213 = tempRet0; + $1214 = (_i64Subtract(($1158|0),($1159|0),($1212|0),($1213|0))|0); + $1215 = tempRet0; + $1216 = (___muldi3(($1168|0),($1169|0),666643,0)|0); + $1217 = tempRet0; + $1218 = (_i64Add(($880|0),($881|0),($1216|0),($1217|0))|0); + $1219 = tempRet0; + $1220 = (___muldi3(($1168|0),($1169|0),470296,0)|0); + $1221 = tempRet0; + $1222 = (___muldi3(($1168|0),($1169|0),654183,0)|0); + $1223 = tempRet0; + $1224 = (___muldi3(($1168|0),($1169|0),-997805,-1)|0); + $1225 = tempRet0; + $1226 = (___muldi3(($1168|0),($1169|0),136657,0)|0); + $1227 = tempRet0; + $1228 = (___muldi3(($1168|0),($1169|0),-683901,-1)|0); + $1229 = tempRet0; + $1230 = (_i64Add(($1070|0),($1071|0),($1228|0),($1229|0))|0); + $1231 = tempRet0; + $1232 = (_i64Subtract(($1230|0),($1231|0),($1126|0),($1127|0))|0); + $1233 = tempRet0; + $1234 = (_i64Add(($1232|0),($1233|0),($1182|0),($1183|0))|0); + $1235 = tempRet0; + $1236 = (___muldi3(($1210|0),($1211|0),666643,0)|0); + $1237 = tempRet0; + $1238 = (_i64Add(($868|0),($869|0),($1236|0),($1237|0))|0); + $1239 = tempRet0; + $1240 = (___muldi3(($1210|0),($1211|0),470296,0)|0); + $1241 = tempRet0; + $1242 = (_i64Add(($1218|0),($1219|0),($1240|0),($1241|0))|0); + $1243 = tempRet0; + $1244 = (___muldi3(($1210|0),($1211|0),654183,0)|0); + $1245 = tempRet0; + $1246 = (___muldi3(($1210|0),($1211|0),-997805,-1)|0); + $1247 = tempRet0; + $1248 = (___muldi3(($1210|0),($1211|0),136657,0)|0); + $1249 = tempRet0; + $1250 = (___muldi3(($1210|0),($1211|0),-683901,-1)|0); + $1251 = tempRet0; + $1252 = (___muldi3(($1214|0),($1215|0),666643,0)|0); + $1253 = tempRet0; + $1254 = (_i64Add(($872|0),($873|0),($1252|0),($1253|0))|0); + $1255 = tempRet0; + $1256 = (___muldi3(($1214|0),($1215|0),470296,0)|0); + $1257 = tempRet0; + $1258 = (_i64Add(($1238|0),($1239|0),($1256|0),($1257|0))|0); + $1259 = tempRet0; + $1260 = (___muldi3(($1214|0),($1215|0),654183,0)|0); + $1261 = tempRet0; + $1262 = (_i64Add(($1242|0),($1243|0),($1260|0),($1261|0))|0); + $1263 = tempRet0; + $1264 = (___muldi3(($1214|0),($1215|0),-997805,-1)|0); + $1265 = tempRet0; + $1266 = (___muldi3(($1214|0),($1215|0),136657,0)|0); + $1267 = tempRet0; + $1268 = (___muldi3(($1214|0),($1215|0),-683901,-1)|0); + $1269 = tempRet0; + $1270 = (_i64Add(($1052|0),($1053|0),($1224|0),($1225|0))|0); + $1271 = tempRet0; + $1272 = (_i64Subtract(($1270|0),($1271|0),($1104|0),($1105|0))|0); + $1273 = tempRet0; + $1274 = (_i64Add(($1272|0),($1273|0),($1176|0),($1177|0))|0); + $1275 = tempRet0; + $1276 = (_i64Add(($1274|0),($1275|0),($1248|0),($1249|0))|0); + $1277 = tempRet0; + $1278 = (_i64Add(($1276|0),($1277|0),($1268|0),($1269|0))|0); + $1279 = tempRet0; + $1280 = (___muldi3(($1200|0),($1201|0),666643,0)|0); + $1281 = tempRet0; + $1282 = (___muldi3(($1200|0),($1201|0),470296,0)|0); + $1283 = tempRet0; + $1284 = (___muldi3(($1200|0),($1201|0),654183,0)|0); + $1285 = tempRet0; + $1286 = (___muldi3(($1200|0),($1201|0),-997805,-1)|0); + $1287 = tempRet0; + $1288 = (___muldi3(($1200|0),($1201|0),136657,0)|0); + $1289 = tempRet0; + $1290 = (___muldi3(($1200|0),($1201|0),-683901,-1)|0); + $1291 = tempRet0; + $1292 = (___muldi3(($1204|0),($1205|0),666643,0)|0); + $1293 = tempRet0; + $1294 = (___muldi3(($1204|0),($1205|0),470296,0)|0); + $1295 = tempRet0; + $1296 = (___muldi3(($1204|0),($1205|0),654183,0)|0); + $1297 = tempRet0; + $1298 = (___muldi3(($1204|0),($1205|0),-997805,-1)|0); + $1299 = tempRet0; + $1300 = (___muldi3(($1204|0),($1205|0),136657,0)|0); + $1301 = tempRet0; + $1302 = (___muldi3(($1204|0),($1205|0),-683901,-1)|0); + $1303 = tempRet0; + $1304 = (_i64Add(($1038|0),($1039|0),($1220|0),($1221|0))|0); + $1305 = tempRet0; + $1306 = (_i64Subtract(($1304|0),($1305|0),($1086|0),($1087|0))|0); + $1307 = tempRet0; + $1308 = (_i64Add(($1306|0),($1307|0),($1244|0),($1245|0))|0); + $1309 = tempRet0; + $1310 = (_i64Add(($1308|0),($1309|0),($1264|0),($1265|0))|0); + $1311 = tempRet0; + $1312 = (_i64Add(($1310|0),($1311|0),($1288|0),($1289|0))|0); + $1313 = tempRet0; + $1314 = (_i64Add(($1312|0),($1313|0),($1302|0),($1303|0))|0); + $1315 = tempRet0; + $1316 = (___muldi3(($1190|0),($1191|0),666643,0)|0); + $1317 = tempRet0; + $1318 = (_i64Add(($1316|0),($1317|0),($632|0),($633|0))|0); + $1319 = tempRet0; + $1320 = (___muldi3(($1190|0),($1191|0),470296,0)|0); + $1321 = tempRet0; + $1322 = (___muldi3(($1190|0),($1191|0),654183,0)|0); + $1323 = tempRet0; + $1324 = (_i64Add(($858|0),($859|0),($216|0),($217|0))|0); + $1325 = tempRet0; + $1326 = (_i64Subtract(($1324|0),($1325|0),($648|0),($649|0))|0); + $1327 = tempRet0; + $1328 = (_i64Add(($1326|0),($1327|0),($1322|0),($1323|0))|0); + $1329 = tempRet0; + $1330 = (_i64Add(($1328|0),($1329|0),($1280|0),($1281|0))|0); + $1331 = tempRet0; + $1332 = (_i64Add(($1330|0),($1331|0),($1294|0),($1295|0))|0); + $1333 = tempRet0; + $1334 = (___muldi3(($1190|0),($1191|0),-997805,-1)|0); + $1335 = tempRet0; + $1336 = (___muldi3(($1190|0),($1191|0),136657,0)|0); + $1337 = tempRet0; + $1338 = (_i64Add(($1258|0),($1259|0),($1336|0),($1337|0))|0); + $1339 = tempRet0; + $1340 = (_i64Add(($1338|0),($1339|0),($1284|0),($1285|0))|0); + $1341 = tempRet0; + $1342 = (_i64Add(($1340|0),($1341|0),($1298|0),($1299|0))|0); + $1343 = tempRet0; + $1344 = (___muldi3(($1190|0),($1191|0),-683901,-1)|0); + $1345 = tempRet0; + $1346 = (_i64Add(($1318|0),($1319|0),1048576,0)|0); + $1347 = tempRet0; + $1348 = (_bitshift64Ashr(($1346|0),($1347|0),21)|0); + $1349 = tempRet0; + $1350 = (_i64Add(($862|0),($863|0),($1320|0),($1321|0))|0); + $1351 = tempRet0; + $1352 = (_i64Add(($1350|0),($1351|0),($1292|0),($1293|0))|0); + $1353 = tempRet0; + $1354 = (_i64Add(($1352|0),($1353|0),($1348|0),($1349|0))|0); + $1355 = tempRet0; + $1356 = (_bitshift64Shl(($1348|0),($1349|0),21)|0); + $1357 = tempRet0; + $1358 = (_i64Subtract(($1318|0),($1319|0),($1356|0),($1357|0))|0); + $1359 = tempRet0; + $1360 = (_i64Add(($1332|0),($1333|0),1048576,0)|0); + $1361 = tempRet0; + $1362 = (_bitshift64Ashr(($1360|0),($1361|0),21)|0); + $1363 = tempRet0; + $1364 = (_i64Add(($1254|0),($1255|0),($1334|0),($1335|0))|0); + $1365 = tempRet0; + $1366 = (_i64Add(($1364|0),($1365|0),($1282|0),($1283|0))|0); + $1367 = tempRet0; + $1368 = (_i64Add(($1366|0),($1367|0),($1296|0),($1297|0))|0); + $1369 = tempRet0; + $1370 = (_i64Add(($1368|0),($1369|0),($1362|0),($1363|0))|0); + $1371 = tempRet0; + $1372 = (_bitshift64Shl(($1362|0),($1363|0),21)|0); + $1373 = tempRet0; + $1374 = (_i64Add(($1342|0),($1343|0),1048576,0)|0); + $1375 = tempRet0; + $1376 = (_bitshift64Ashr(($1374|0),($1375|0),21)|0); + $1377 = tempRet0; + $1378 = (_i64Add(($1262|0),($1263|0),($1344|0),($1345|0))|0); + $1379 = tempRet0; + $1380 = (_i64Add(($1378|0),($1379|0),($1286|0),($1287|0))|0); + $1381 = tempRet0; + $1382 = (_i64Add(($1380|0),($1381|0),($1300|0),($1301|0))|0); + $1383 = tempRet0; + $1384 = (_i64Add(($1382|0),($1383|0),($1376|0),($1377|0))|0); + $1385 = tempRet0; + $1386 = (_bitshift64Shl(($1376|0),($1377|0),21)|0); + $1387 = tempRet0; + $1388 = (_i64Add(($1314|0),($1315|0),1048576,0)|0); + $1389 = tempRet0; + $1390 = (_bitshift64Ashr(($1388|0),($1389|0),21)|0); + $1391 = tempRet0; + $1392 = (_i64Add(($1084|0),($1085|0),($1222|0),($1223|0))|0); + $1393 = tempRet0; + $1394 = (_i64Add(($1392|0),($1393|0),($1246|0),($1247|0))|0); + $1395 = tempRet0; + $1396 = (_i64Subtract(($1394|0),($1395|0),($1178|0),($1179|0))|0); + $1397 = tempRet0; + $1398 = (_i64Add(($1396|0),($1397|0),($1266|0),($1267|0))|0); + $1399 = tempRet0; + $1400 = (_i64Add(($1398|0),($1399|0),($1290|0),($1291|0))|0); + $1401 = tempRet0; + $1402 = (_i64Add(($1400|0),($1401|0),($1390|0),($1391|0))|0); + $1403 = tempRet0; + $1404 = (_bitshift64Shl(($1390|0),($1391|0),21)|0); + $1405 = tempRet0; + $1406 = (_i64Subtract(($1314|0),($1315|0),($1404|0),($1405|0))|0); + $1407 = tempRet0; + $1408 = (_i64Add(($1278|0),($1279|0),1048576,0)|0); + $1409 = tempRet0; + $1410 = (_bitshift64Ashr(($1408|0),($1409|0),21)|0); + $1411 = tempRet0; + $1412 = (_i64Add(($1102|0),($1103|0),($1226|0),($1227|0))|0); + $1413 = tempRet0; + $1414 = (_i64Add(($1412|0),($1413|0),($1250|0),($1251|0))|0); + $1415 = tempRet0; + $1416 = (_i64Subtract(($1414|0),($1415|0),($1184|0),($1185|0))|0); + $1417 = tempRet0; + $1418 = (_i64Add(($1416|0),($1417|0),($1410|0),($1411|0))|0); + $1419 = tempRet0; + $1420 = (_bitshift64Shl(($1410|0),($1411|0),21)|0); + $1421 = tempRet0; + $1422 = (_i64Subtract(($1278|0),($1279|0),($1420|0),($1421|0))|0); + $1423 = tempRet0; + $1424 = (_i64Add(($1234|0),($1235|0),1048576,0)|0); + $1425 = tempRet0; + $1426 = (_bitshift64Ashr(($1424|0),($1425|0),21)|0); + $1427 = tempRet0; + $1428 = (_i64Add(($1194|0),($1195|0),($1426|0),($1427|0))|0); + $1429 = tempRet0; + $1430 = (_bitshift64Shl(($1426|0),($1427|0),21)|0); + $1431 = tempRet0; + $1432 = (_i64Subtract(($1234|0),($1235|0),($1430|0),($1431|0))|0); + $1433 = tempRet0; + $1434 = (_i64Add(($1354|0),($1355|0),1048576,0)|0); + $1435 = tempRet0; + $1436 = (_bitshift64Ashr(($1434|0),($1435|0),21)|0); + $1437 = tempRet0; + $1438 = (_bitshift64Shl(($1436|0),($1437|0),21)|0); + $1439 = tempRet0; + $1440 = (_i64Add(($1370|0),($1371|0),1048576,0)|0); + $1441 = tempRet0; + $1442 = (_bitshift64Ashr(($1440|0),($1441|0),21)|0); + $1443 = tempRet0; + $1444 = (_bitshift64Shl(($1442|0),($1443|0),21)|0); + $1445 = tempRet0; + $1446 = (_i64Add(($1384|0),($1385|0),1048576,0)|0); + $1447 = tempRet0; + $1448 = (_bitshift64Ashr(($1446|0),($1447|0),21)|0); + $1449 = tempRet0; + $1450 = (_i64Add(($1406|0),($1407|0),($1448|0),($1449|0))|0); + $1451 = tempRet0; + $1452 = (_bitshift64Shl(($1448|0),($1449|0),21)|0); + $1453 = tempRet0; + $1454 = (_i64Add(($1402|0),($1403|0),1048576,0)|0); + $1455 = tempRet0; + $1456 = (_bitshift64Ashr(($1454|0),($1455|0),21)|0); + $1457 = tempRet0; + $1458 = (_i64Add(($1422|0),($1423|0),($1456|0),($1457|0))|0); + $1459 = tempRet0; + $1460 = (_bitshift64Shl(($1456|0),($1457|0),21)|0); + $1461 = tempRet0; + $1462 = (_i64Subtract(($1402|0),($1403|0),($1460|0),($1461|0))|0); + $1463 = tempRet0; + $1464 = (_i64Add(($1418|0),($1419|0),1048576,0)|0); + $1465 = tempRet0; + $1466 = (_bitshift64Ashr(($1464|0),($1465|0),21)|0); + $1467 = tempRet0; + $1468 = (_i64Add(($1432|0),($1433|0),($1466|0),($1467|0))|0); + $1469 = tempRet0; + $1470 = (_bitshift64Shl(($1466|0),($1467|0),21)|0); + $1471 = tempRet0; + $1472 = (_i64Subtract(($1418|0),($1419|0),($1470|0),($1471|0))|0); + $1473 = tempRet0; + $1474 = (_i64Add(($1428|0),($1429|0),1048576,0)|0); + $1475 = tempRet0; + $1476 = (_bitshift64Ashr(($1474|0),($1475|0),21)|0); + $1477 = tempRet0; + $1478 = (_bitshift64Shl(($1476|0),($1477|0),21)|0); + $1479 = tempRet0; + $1480 = (_i64Subtract(($1428|0),($1429|0),($1478|0),($1479|0))|0); + $1481 = tempRet0; + $1482 = (___muldi3(($1476|0),($1477|0),666643,0)|0); + $1483 = tempRet0; + $1484 = (_i64Add(($1358|0),($1359|0),($1482|0),($1483|0))|0); + $1485 = tempRet0; + $1486 = (___muldi3(($1476|0),($1477|0),470296,0)|0); + $1487 = tempRet0; + $1488 = (___muldi3(($1476|0),($1477|0),654183,0)|0); + $1489 = tempRet0; + $1490 = (___muldi3(($1476|0),($1477|0),-997805,-1)|0); + $1491 = tempRet0; + $1492 = (___muldi3(($1476|0),($1477|0),136657,0)|0); + $1493 = tempRet0; + $1494 = (___muldi3(($1476|0),($1477|0),-683901,-1)|0); + $1495 = tempRet0; + $1496 = (_bitshift64Ashr(($1484|0),($1485|0),21)|0); + $1497 = tempRet0; + $1498 = (_i64Add(($1486|0),($1487|0),($1354|0),($1355|0))|0); + $1499 = tempRet0; + $1500 = (_i64Subtract(($1498|0),($1499|0),($1438|0),($1439|0))|0); + $1501 = tempRet0; + $1502 = (_i64Add(($1500|0),($1501|0),($1496|0),($1497|0))|0); + $1503 = tempRet0; + $1504 = (_bitshift64Shl(($1496|0),($1497|0),21)|0); + $1505 = tempRet0; + $1506 = (_i64Subtract(($1484|0),($1485|0),($1504|0),($1505|0))|0); + $1507 = tempRet0; + $1508 = (_bitshift64Ashr(($1502|0),($1503|0),21)|0); + $1509 = tempRet0; + $1510 = (_i64Add(($1488|0),($1489|0),($1332|0),($1333|0))|0); + $1511 = tempRet0; + $1512 = (_i64Subtract(($1510|0),($1511|0),($1372|0),($1373|0))|0); + $1513 = tempRet0; + $1514 = (_i64Add(($1512|0),($1513|0),($1436|0),($1437|0))|0); + $1515 = tempRet0; + $1516 = (_i64Add(($1514|0),($1515|0),($1508|0),($1509|0))|0); + $1517 = tempRet0; + $1518 = (_bitshift64Shl(($1508|0),($1509|0),21)|0); + $1519 = tempRet0; + $1520 = (_i64Subtract(($1502|0),($1503|0),($1518|0),($1519|0))|0); + $1521 = tempRet0; + $1522 = (_bitshift64Ashr(($1516|0),($1517|0),21)|0); + $1523 = tempRet0; + $1524 = (_i64Add(($1370|0),($1371|0),($1490|0),($1491|0))|0); + $1525 = tempRet0; + $1526 = (_i64Subtract(($1524|0),($1525|0),($1444|0),($1445|0))|0); + $1527 = tempRet0; + $1528 = (_i64Add(($1526|0),($1527|0),($1522|0),($1523|0))|0); + $1529 = tempRet0; + $1530 = (_bitshift64Shl(($1522|0),($1523|0),21)|0); + $1531 = tempRet0; + $1532 = (_i64Subtract(($1516|0),($1517|0),($1530|0),($1531|0))|0); + $1533 = tempRet0; + $1534 = (_bitshift64Ashr(($1528|0),($1529|0),21)|0); + $1535 = tempRet0; + $1536 = (_i64Add(($1492|0),($1493|0),($1342|0),($1343|0))|0); + $1537 = tempRet0; + $1538 = (_i64Subtract(($1536|0),($1537|0),($1386|0),($1387|0))|0); + $1539 = tempRet0; + $1540 = (_i64Add(($1538|0),($1539|0),($1442|0),($1443|0))|0); + $1541 = tempRet0; + $1542 = (_i64Add(($1540|0),($1541|0),($1534|0),($1535|0))|0); + $1543 = tempRet0; + $1544 = (_bitshift64Shl(($1534|0),($1535|0),21)|0); + $1545 = tempRet0; + $1546 = (_i64Subtract(($1528|0),($1529|0),($1544|0),($1545|0))|0); + $1547 = tempRet0; + $1548 = (_bitshift64Ashr(($1542|0),($1543|0),21)|0); + $1549 = tempRet0; + $1550 = (_i64Add(($1384|0),($1385|0),($1494|0),($1495|0))|0); + $1551 = tempRet0; + $1552 = (_i64Subtract(($1550|0),($1551|0),($1452|0),($1453|0))|0); + $1553 = tempRet0; + $1554 = (_i64Add(($1552|0),($1553|0),($1548|0),($1549|0))|0); + $1555 = tempRet0; + $1556 = (_bitshift64Shl(($1548|0),($1549|0),21)|0); + $1557 = tempRet0; + $1558 = (_i64Subtract(($1542|0),($1543|0),($1556|0),($1557|0))|0); + $1559 = tempRet0; + $1560 = (_bitshift64Ashr(($1554|0),($1555|0),21)|0); + $1561 = tempRet0; + $1562 = (_i64Add(($1450|0),($1451|0),($1560|0),($1561|0))|0); + $1563 = tempRet0; + $1564 = (_bitshift64Shl(($1560|0),($1561|0),21)|0); + $1565 = tempRet0; + $1566 = (_i64Subtract(($1554|0),($1555|0),($1564|0),($1565|0))|0); + $1567 = tempRet0; + $1568 = (_bitshift64Ashr(($1562|0),($1563|0),21)|0); + $1569 = tempRet0; + $1570 = (_i64Add(($1568|0),($1569|0),($1462|0),($1463|0))|0); + $1571 = tempRet0; + $1572 = (_bitshift64Shl(($1568|0),($1569|0),21)|0); + $1573 = tempRet0; + $1574 = (_i64Subtract(($1562|0),($1563|0),($1572|0),($1573|0))|0); + $1575 = tempRet0; + $1576 = (_bitshift64Ashr(($1570|0),($1571|0),21)|0); + $1577 = tempRet0; + $1578 = (_i64Add(($1458|0),($1459|0),($1576|0),($1577|0))|0); + $1579 = tempRet0; + $1580 = (_bitshift64Shl(($1576|0),($1577|0),21)|0); + $1581 = tempRet0; + $1582 = (_i64Subtract(($1570|0),($1571|0),($1580|0),($1581|0))|0); + $1583 = tempRet0; + $1584 = (_bitshift64Ashr(($1578|0),($1579|0),21)|0); + $1585 = tempRet0; + $1586 = (_i64Add(($1584|0),($1585|0),($1472|0),($1473|0))|0); + $1587 = tempRet0; + $1588 = (_bitshift64Shl(($1584|0),($1585|0),21)|0); + $1589 = tempRet0; + $1590 = (_i64Subtract(($1578|0),($1579|0),($1588|0),($1589|0))|0); + $1591 = tempRet0; + $1592 = (_bitshift64Ashr(($1586|0),($1587|0),21)|0); + $1593 = tempRet0; + $1594 = (_i64Add(($1468|0),($1469|0),($1592|0),($1593|0))|0); + $1595 = tempRet0; + $1596 = (_bitshift64Shl(($1592|0),($1593|0),21)|0); + $1597 = tempRet0; + $1598 = (_i64Subtract(($1586|0),($1587|0),($1596|0),($1597|0))|0); + $1599 = tempRet0; + $1600 = (_bitshift64Ashr(($1594|0),($1595|0),21)|0); + $1601 = tempRet0; + $1602 = (_i64Add(($1600|0),($1601|0),($1480|0),($1481|0))|0); + $1603 = tempRet0; + $1604 = (_bitshift64Shl(($1600|0),($1601|0),21)|0); + $1605 = tempRet0; + $1606 = (_i64Subtract(($1594|0),($1595|0),($1604|0),($1605|0))|0); + $1607 = tempRet0; + $1608 = (_bitshift64Ashr(($1602|0),($1603|0),21)|0); + $1609 = tempRet0; + $1610 = (_bitshift64Shl(($1608|0),($1609|0),21)|0); + $1611 = tempRet0; + $1612 = (_i64Subtract(($1602|0),($1603|0),($1610|0),($1611|0))|0); + $1613 = tempRet0; + $1614 = (___muldi3(($1608|0),($1609|0),666643,0)|0); + $1615 = tempRet0; + $1616 = (_i64Add(($1614|0),($1615|0),($1506|0),($1507|0))|0); + $1617 = tempRet0; + $1618 = (___muldi3(($1608|0),($1609|0),470296,0)|0); + $1619 = tempRet0; + $1620 = (_i64Add(($1520|0),($1521|0),($1618|0),($1619|0))|0); + $1621 = tempRet0; + $1622 = (___muldi3(($1608|0),($1609|0),654183,0)|0); + $1623 = tempRet0; + $1624 = (_i64Add(($1532|0),($1533|0),($1622|0),($1623|0))|0); + $1625 = tempRet0; + $1626 = (___muldi3(($1608|0),($1609|0),-997805,-1)|0); + $1627 = tempRet0; + $1628 = (_i64Add(($1546|0),($1547|0),($1626|0),($1627|0))|0); + $1629 = tempRet0; + $1630 = (___muldi3(($1608|0),($1609|0),136657,0)|0); + $1631 = tempRet0; + $1632 = (_i64Add(($1558|0),($1559|0),($1630|0),($1631|0))|0); + $1633 = tempRet0; + $1634 = (___muldi3(($1608|0),($1609|0),-683901,-1)|0); + $1635 = tempRet0; + $1636 = (_i64Add(($1566|0),($1567|0),($1634|0),($1635|0))|0); + $1637 = tempRet0; + $1638 = (_bitshift64Ashr(($1616|0),($1617|0),21)|0); + $1639 = tempRet0; + $1640 = (_i64Add(($1620|0),($1621|0),($1638|0),($1639|0))|0); + $1641 = tempRet0; + $1642 = (_bitshift64Shl(($1638|0),($1639|0),21)|0); + $1643 = tempRet0; + $1644 = (_i64Subtract(($1616|0),($1617|0),($1642|0),($1643|0))|0); + $1645 = tempRet0; + $1646 = (_bitshift64Ashr(($1640|0),($1641|0),21)|0); + $1647 = tempRet0; + $1648 = (_i64Add(($1624|0),($1625|0),($1646|0),($1647|0))|0); + $1649 = tempRet0; + $1650 = (_bitshift64Shl(($1646|0),($1647|0),21)|0); + $1651 = tempRet0; + $1652 = (_i64Subtract(($1640|0),($1641|0),($1650|0),($1651|0))|0); + $1653 = tempRet0; + $1654 = (_bitshift64Ashr(($1648|0),($1649|0),21)|0); + $1655 = tempRet0; + $1656 = (_i64Add(($1628|0),($1629|0),($1654|0),($1655|0))|0); + $1657 = tempRet0; + $1658 = (_bitshift64Shl(($1654|0),($1655|0),21)|0); + $1659 = tempRet0; + $1660 = (_i64Subtract(($1648|0),($1649|0),($1658|0),($1659|0))|0); + $1661 = tempRet0; + $1662 = (_bitshift64Ashr(($1656|0),($1657|0),21)|0); + $1663 = tempRet0; + $1664 = (_i64Add(($1632|0),($1633|0),($1662|0),($1663|0))|0); + $1665 = tempRet0; + $1666 = (_bitshift64Shl(($1662|0),($1663|0),21)|0); + $1667 = tempRet0; + $1668 = (_i64Subtract(($1656|0),($1657|0),($1666|0),($1667|0))|0); + $1669 = tempRet0; + $1670 = (_bitshift64Ashr(($1664|0),($1665|0),21)|0); + $1671 = tempRet0; + $1672 = (_i64Add(($1636|0),($1637|0),($1670|0),($1671|0))|0); + $1673 = tempRet0; + $1674 = (_bitshift64Shl(($1670|0),($1671|0),21)|0); + $1675 = tempRet0; + $1676 = (_i64Subtract(($1664|0),($1665|0),($1674|0),($1675|0))|0); + $1677 = tempRet0; + $1678 = (_bitshift64Ashr(($1672|0),($1673|0),21)|0); + $1679 = tempRet0; + $1680 = (_i64Add(($1678|0),($1679|0),($1574|0),($1575|0))|0); + $1681 = tempRet0; + $1682 = (_bitshift64Shl(($1678|0),($1679|0),21)|0); + $1683 = tempRet0; + $1684 = (_i64Subtract(($1672|0),($1673|0),($1682|0),($1683|0))|0); + $1685 = tempRet0; + $1686 = (_bitshift64Ashr(($1680|0),($1681|0),21)|0); + $1687 = tempRet0; + $1688 = (_i64Add(($1686|0),($1687|0),($1582|0),($1583|0))|0); + $1689 = tempRet0; + $1690 = (_bitshift64Shl(($1686|0),($1687|0),21)|0); + $1691 = tempRet0; + $1692 = (_i64Subtract(($1680|0),($1681|0),($1690|0),($1691|0))|0); + $1693 = tempRet0; + $1694 = (_bitshift64Ashr(($1688|0),($1689|0),21)|0); + $1695 = tempRet0; + $1696 = (_i64Add(($1694|0),($1695|0),($1590|0),($1591|0))|0); + $1697 = tempRet0; + $1698 = (_bitshift64Shl(($1694|0),($1695|0),21)|0); + $1699 = tempRet0; + $1700 = (_i64Subtract(($1688|0),($1689|0),($1698|0),($1699|0))|0); + $1701 = tempRet0; + $1702 = (_bitshift64Ashr(($1696|0),($1697|0),21)|0); + $1703 = tempRet0; + $1704 = (_i64Add(($1702|0),($1703|0),($1598|0),($1599|0))|0); + $1705 = tempRet0; + $1706 = (_bitshift64Shl(($1702|0),($1703|0),21)|0); + $1707 = tempRet0; + $1708 = (_i64Subtract(($1696|0),($1697|0),($1706|0),($1707|0))|0); + $1709 = tempRet0; + $1710 = (_bitshift64Ashr(($1704|0),($1705|0),21)|0); + $1711 = tempRet0; + $1712 = (_i64Add(($1710|0),($1711|0),($1606|0),($1607|0))|0); + $1713 = tempRet0; + $1714 = (_bitshift64Shl(($1710|0),($1711|0),21)|0); + $1715 = tempRet0; + $1716 = (_i64Subtract(($1704|0),($1705|0),($1714|0),($1715|0))|0); + $1717 = tempRet0; + $1718 = (_bitshift64Ashr(($1712|0),($1713|0),21)|0); + $1719 = tempRet0; + $1720 = (_i64Add(($1718|0),($1719|0),($1612|0),($1613|0))|0); + $1721 = tempRet0; + $1722 = (_bitshift64Shl(($1718|0),($1719|0),21)|0); + $1723 = tempRet0; + $1724 = (_i64Subtract(($1712|0),($1713|0),($1722|0),($1723|0))|0); + $1725 = tempRet0; + $1726 = $1644&255; + HEAP8[$s>>0] = $1726; + $1727 = (_bitshift64Lshr(($1644|0),($1645|0),8)|0); + $1728 = tempRet0; + $1729 = $1727&255; + $1730 = (($s) + 1|0); + HEAP8[$1730>>0] = $1729; + $1731 = (_bitshift64Lshr(($1644|0),($1645|0),16)|0); + $1732 = tempRet0; + $1733 = (_bitshift64Shl(($1652|0),($1653|0),5)|0); + $1734 = tempRet0; + $1735 = $1733 | $1731; + $1734 | $1732; + $1736 = $1735&255; + $1737 = (($s) + 2|0); + HEAP8[$1737>>0] = $1736; + $1738 = (_bitshift64Lshr(($1652|0),($1653|0),3)|0); + $1739 = tempRet0; + $1740 = $1738&255; + $1741 = (($s) + 3|0); + HEAP8[$1741>>0] = $1740; + $1742 = (_bitshift64Lshr(($1652|0),($1653|0),11)|0); + $1743 = tempRet0; + $1744 = $1742&255; + $1745 = (($s) + 4|0); + HEAP8[$1745>>0] = $1744; + $1746 = (_bitshift64Lshr(($1652|0),($1653|0),19)|0); + $1747 = tempRet0; + $1748 = (_bitshift64Shl(($1660|0),($1661|0),2)|0); + $1749 = tempRet0; + $1750 = $1748 | $1746; + $1749 | $1747; + $1751 = $1750&255; + $1752 = (($s) + 5|0); + HEAP8[$1752>>0] = $1751; + $1753 = (_bitshift64Lshr(($1660|0),($1661|0),6)|0); + $1754 = tempRet0; + $1755 = $1753&255; + $1756 = (($s) + 6|0); + HEAP8[$1756>>0] = $1755; + $1757 = (_bitshift64Lshr(($1660|0),($1661|0),14)|0); + $1758 = tempRet0; + $1759 = (_bitshift64Shl(($1668|0),($1669|0),7)|0); + $1760 = tempRet0; + $1761 = $1759 | $1757; + $1760 | $1758; + $1762 = $1761&255; + $1763 = (($s) + 7|0); + HEAP8[$1763>>0] = $1762; + $1764 = (_bitshift64Lshr(($1668|0),($1669|0),1)|0); + $1765 = tempRet0; + $1766 = $1764&255; + $1767 = (($s) + 8|0); + HEAP8[$1767>>0] = $1766; + $1768 = (_bitshift64Lshr(($1668|0),($1669|0),9)|0); + $1769 = tempRet0; + $1770 = $1768&255; + $1771 = (($s) + 9|0); + HEAP8[$1771>>0] = $1770; + $1772 = (_bitshift64Lshr(($1668|0),($1669|0),17)|0); + $1773 = tempRet0; + $1774 = (_bitshift64Shl(($1676|0),($1677|0),4)|0); + $1775 = tempRet0; + $1776 = $1774 | $1772; + $1775 | $1773; + $1777 = $1776&255; + $1778 = (($s) + 10|0); + HEAP8[$1778>>0] = $1777; + $1779 = (_bitshift64Lshr(($1676|0),($1677|0),4)|0); + $1780 = tempRet0; + $1781 = $1779&255; + $1782 = (($s) + 11|0); + HEAP8[$1782>>0] = $1781; + $1783 = (_bitshift64Lshr(($1676|0),($1677|0),12)|0); + $1784 = tempRet0; + $1785 = $1783&255; + $1786 = (($s) + 12|0); + HEAP8[$1786>>0] = $1785; + $1787 = (_bitshift64Lshr(($1676|0),($1677|0),20)|0); + $1788 = tempRet0; + $1789 = (_bitshift64Shl(($1684|0),($1685|0),1)|0); + $1790 = tempRet0; + $1791 = $1789 | $1787; + $1790 | $1788; + $1792 = $1791&255; + $1793 = (($s) + 13|0); + HEAP8[$1793>>0] = $1792; + $1794 = (_bitshift64Lshr(($1684|0),($1685|0),7)|0); + $1795 = tempRet0; + $1796 = $1794&255; + $1797 = (($s) + 14|0); + HEAP8[$1797>>0] = $1796; + $1798 = (_bitshift64Lshr(($1684|0),($1685|0),15)|0); + $1799 = tempRet0; + $1800 = (_bitshift64Shl(($1692|0),($1693|0),6)|0); + $1801 = tempRet0; + $1802 = $1800 | $1798; + $1801 | $1799; + $1803 = $1802&255; + $1804 = (($s) + 15|0); + HEAP8[$1804>>0] = $1803; + $1805 = (_bitshift64Lshr(($1692|0),($1693|0),2)|0); + $1806 = tempRet0; + $1807 = $1805&255; + $1808 = (($s) + 16|0); + HEAP8[$1808>>0] = $1807; + $1809 = (_bitshift64Lshr(($1692|0),($1693|0),10)|0); + $1810 = tempRet0; + $1811 = $1809&255; + $1812 = (($s) + 17|0); + HEAP8[$1812>>0] = $1811; + $1813 = (_bitshift64Lshr(($1692|0),($1693|0),18)|0); + $1814 = tempRet0; + $1815 = (_bitshift64Shl(($1700|0),($1701|0),3)|0); + $1816 = tempRet0; + $1817 = $1815 | $1813; + $1816 | $1814; + $1818 = $1817&255; + $1819 = (($s) + 18|0); + HEAP8[$1819>>0] = $1818; + $1820 = (_bitshift64Lshr(($1700|0),($1701|0),5)|0); + $1821 = tempRet0; + $1822 = $1820&255; + $1823 = (($s) + 19|0); + HEAP8[$1823>>0] = $1822; + $1824 = (_bitshift64Lshr(($1700|0),($1701|0),13)|0); + $1825 = tempRet0; + $1826 = $1824&255; + $1827 = (($s) + 20|0); + HEAP8[$1827>>0] = $1826; + $1828 = $1708&255; + $1829 = (($s) + 21|0); + HEAP8[$1829>>0] = $1828; + $1830 = (_bitshift64Lshr(($1708|0),($1709|0),8)|0); + $1831 = tempRet0; + $1832 = $1830&255; + $1833 = (($s) + 22|0); + HEAP8[$1833>>0] = $1832; + $1834 = (_bitshift64Lshr(($1708|0),($1709|0),16)|0); + $1835 = tempRet0; + $1836 = (_bitshift64Shl(($1716|0),($1717|0),5)|0); + $1837 = tempRet0; + $1838 = $1836 | $1834; + $1837 | $1835; + $1839 = $1838&255; + $1840 = (($s) + 23|0); + HEAP8[$1840>>0] = $1839; + $1841 = (_bitshift64Lshr(($1716|0),($1717|0),3)|0); + $1842 = tempRet0; + $1843 = $1841&255; + $1844 = (($s) + 24|0); + HEAP8[$1844>>0] = $1843; + $1845 = (_bitshift64Lshr(($1716|0),($1717|0),11)|0); + $1846 = tempRet0; + $1847 = $1845&255; + $1848 = (($s) + 25|0); + HEAP8[$1848>>0] = $1847; + $1849 = (_bitshift64Lshr(($1716|0),($1717|0),19)|0); + $1850 = tempRet0; + $1851 = (_bitshift64Shl(($1724|0),($1725|0),2)|0); + $1852 = tempRet0; + $1853 = $1851 | $1849; + $1852 | $1850; + $1854 = $1853&255; + $1855 = (($s) + 26|0); + HEAP8[$1855>>0] = $1854; + $1856 = (_bitshift64Lshr(($1724|0),($1725|0),6)|0); + $1857 = tempRet0; + $1858 = $1856&255; + $1859 = (($s) + 27|0); + HEAP8[$1859>>0] = $1858; + $1860 = (_bitshift64Lshr(($1724|0),($1725|0),14)|0); + $1861 = tempRet0; + $1862 = (_bitshift64Shl(($1720|0),($1721|0),7)|0); + $1863 = tempRet0; + $1864 = $1860 | $1862; + $1861 | $1863; + $1865 = $1864&255; + $1866 = (($s) + 28|0); + HEAP8[$1866>>0] = $1865; + $1867 = (_bitshift64Lshr(($1720|0),($1721|0),1)|0); + $1868 = tempRet0; + $1869 = $1867&255; + $1870 = (($s) + 29|0); + HEAP8[$1870>>0] = $1869; + $1871 = (_bitshift64Lshr(($1720|0),($1721|0),9)|0); + $1872 = tempRet0; + $1873 = $1871&255; + $1874 = (($s) + 30|0); + HEAP8[$1874>>0] = $1873; + $1875 = (_bitshift64Lshr(($1720|0),($1721|0),17)|0); + $1876 = tempRet0; + $1877 = $1875&255; + $1878 = (($s) + 31|0); + HEAP8[$1878>>0] = $1877; + STACKTOP = sp;return; +} +function _load_347($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + tempRet0 = $14; + STACKTOP = sp;return ($13|0); +} +function _load_448($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + $15 = (($in) + 3|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16&255; + $18 = (_bitshift64Shl(($17|0),0,24)|0); + $19 = tempRet0; + $20 = $13 | $18; + $21 = $14 | $19; + tempRet0 = $21; + STACKTOP = sp;return ($20|0); +} +function _crypto_sign_ed25519_ref10_sc_reduce($s) { + $s = $s|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; + var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0; + var $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0; + var $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0; + var $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0; + var $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0; + var $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0; + var $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0; + var $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0; + var $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0; + var $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0; + var $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0; + var $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0; + var $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0; + var $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0; + var $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0; + var $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0; + var $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0; + var $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0; + var $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0; + var $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0; + var $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0; + var $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0; + var $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0; + var $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0; + var $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0; + var $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0; + var $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0; + var $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0; + var $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0; + var $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0; + var $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0; + var $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0; + var $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0; + var $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0; + var $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0; + var $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0; + var $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0; + var $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0; + var $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0; + var $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0; + var $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0; + var $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0; + var $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0; + var $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0; + var $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0; + var $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0; + var $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0; + var $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0; + var $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0; + var $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0; + var $997 = 0, $998 = 0, $999 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (_load_351($s)|0); + $1 = tempRet0; + $2 = $0 & 2097151; + $3 = (($s) + 2|0); + $4 = (_load_452($3)|0); + $5 = tempRet0; + $6 = (_bitshift64Lshr(($4|0),($5|0),5)|0); + $7 = tempRet0; + $8 = $6 & 2097151; + $9 = (($s) + 5|0); + $10 = (_load_351($9)|0); + $11 = tempRet0; + $12 = (_bitshift64Lshr(($10|0),($11|0),2)|0); + $13 = tempRet0; + $14 = $12 & 2097151; + $15 = (($s) + 7|0); + $16 = (_load_452($15)|0); + $17 = tempRet0; + $18 = (_bitshift64Lshr(($16|0),($17|0),7)|0); + $19 = tempRet0; + $20 = $18 & 2097151; + $21 = (($s) + 10|0); + $22 = (_load_452($21)|0); + $23 = tempRet0; + $24 = (_bitshift64Lshr(($22|0),($23|0),4)|0); + $25 = tempRet0; + $26 = $24 & 2097151; + $27 = (($s) + 13|0); + $28 = (_load_351($27)|0); + $29 = tempRet0; + $30 = (_bitshift64Lshr(($28|0),($29|0),1)|0); + $31 = tempRet0; + $32 = $30 & 2097151; + $33 = (($s) + 15|0); + $34 = (_load_452($33)|0); + $35 = tempRet0; + $36 = (_bitshift64Lshr(($34|0),($35|0),6)|0); + $37 = tempRet0; + $38 = $36 & 2097151; + $39 = (($s) + 18|0); + $40 = (_load_351($39)|0); + $41 = tempRet0; + $42 = (_bitshift64Lshr(($40|0),($41|0),3)|0); + $43 = tempRet0; + $44 = $42 & 2097151; + $45 = (($s) + 21|0); + $46 = (_load_351($45)|0); + $47 = tempRet0; + $48 = $46 & 2097151; + $49 = (($s) + 23|0); + $50 = (_load_452($49)|0); + $51 = tempRet0; + $52 = (_bitshift64Lshr(($50|0),($51|0),5)|0); + $53 = tempRet0; + $54 = $52 & 2097151; + $55 = (($s) + 26|0); + $56 = (_load_351($55)|0); + $57 = tempRet0; + $58 = (_bitshift64Lshr(($56|0),($57|0),2)|0); + $59 = tempRet0; + $60 = $58 & 2097151; + $61 = (($s) + 28|0); + $62 = (_load_452($61)|0); + $63 = tempRet0; + $64 = (_bitshift64Lshr(($62|0),($63|0),7)|0); + $65 = tempRet0; + $66 = $64 & 2097151; + $67 = (($s) + 31|0); + $68 = (_load_452($67)|0); + $69 = tempRet0; + $70 = (_bitshift64Lshr(($68|0),($69|0),4)|0); + $71 = tempRet0; + $72 = $70 & 2097151; + $73 = (($s) + 34|0); + $74 = (_load_351($73)|0); + $75 = tempRet0; + $76 = (_bitshift64Lshr(($74|0),($75|0),1)|0); + $77 = tempRet0; + $78 = $76 & 2097151; + $79 = (($s) + 36|0); + $80 = (_load_452($79)|0); + $81 = tempRet0; + $82 = (_bitshift64Lshr(($80|0),($81|0),6)|0); + $83 = tempRet0; + $84 = $82 & 2097151; + $85 = (($s) + 39|0); + $86 = (_load_351($85)|0); + $87 = tempRet0; + $88 = (_bitshift64Lshr(($86|0),($87|0),3)|0); + $89 = tempRet0; + $90 = $88 & 2097151; + $91 = (($s) + 42|0); + $92 = (_load_351($91)|0); + $93 = tempRet0; + $94 = $92 & 2097151; + $95 = (($s) + 44|0); + $96 = (_load_452($95)|0); + $97 = tempRet0; + $98 = (_bitshift64Lshr(($96|0),($97|0),5)|0); + $99 = tempRet0; + $100 = $98 & 2097151; + $101 = (($s) + 47|0); + $102 = (_load_351($101)|0); + $103 = tempRet0; + $104 = (_bitshift64Lshr(($102|0),($103|0),2)|0); + $105 = tempRet0; + $106 = $104 & 2097151; + $107 = (($s) + 49|0); + $108 = (_load_452($107)|0); + $109 = tempRet0; + $110 = (_bitshift64Lshr(($108|0),($109|0),7)|0); + $111 = tempRet0; + $112 = $110 & 2097151; + $113 = (($s) + 52|0); + $114 = (_load_452($113)|0); + $115 = tempRet0; + $116 = (_bitshift64Lshr(($114|0),($115|0),4)|0); + $117 = tempRet0; + $118 = $116 & 2097151; + $119 = (($s) + 55|0); + $120 = (_load_351($119)|0); + $121 = tempRet0; + $122 = (_bitshift64Lshr(($120|0),($121|0),1)|0); + $123 = tempRet0; + $124 = $122 & 2097151; + $125 = (($s) + 57|0); + $126 = (_load_452($125)|0); + $127 = tempRet0; + $128 = (_bitshift64Lshr(($126|0),($127|0),6)|0); + $129 = tempRet0; + $130 = $128 & 2097151; + $131 = (($s) + 60|0); + $132 = (_load_452($131)|0); + $133 = tempRet0; + $134 = (_bitshift64Lshr(($132|0),($133|0),3)|0); + $135 = tempRet0; + $136 = (___muldi3(($134|0),($135|0),666643,0)|0); + $137 = tempRet0; + $138 = (___muldi3(($134|0),($135|0),470296,0)|0); + $139 = tempRet0; + $140 = (___muldi3(($134|0),($135|0),654183,0)|0); + $141 = tempRet0; + $142 = (___muldi3(($134|0),($135|0),-997805,-1)|0); + $143 = tempRet0; + $144 = (___muldi3(($134|0),($135|0),136657,0)|0); + $145 = tempRet0; + $146 = (_i64Add(($144|0),($145|0),($90|0),0)|0); + $147 = tempRet0; + $148 = (___muldi3(($134|0),($135|0),-683901,-1)|0); + $149 = tempRet0; + $150 = (_i64Add(($148|0),($149|0),($94|0),0)|0); + $151 = tempRet0; + $152 = (___muldi3(($130|0),0,666643,0)|0); + $153 = tempRet0; + $154 = (___muldi3(($130|0),0,470296,0)|0); + $155 = tempRet0; + $156 = (___muldi3(($130|0),0,654183,0)|0); + $157 = tempRet0; + $158 = (___muldi3(($130|0),0,-997805,-1)|0); + $159 = tempRet0; + $160 = (___muldi3(($130|0),0,136657,0)|0); + $161 = tempRet0; + $162 = (___muldi3(($130|0),0,-683901,-1)|0); + $163 = tempRet0; + $164 = (_i64Add(($146|0),($147|0),($162|0),($163|0))|0); + $165 = tempRet0; + $166 = (___muldi3(($124|0),0,666643,0)|0); + $167 = tempRet0; + $168 = (___muldi3(($124|0),0,470296,0)|0); + $169 = tempRet0; + $170 = (___muldi3(($124|0),0,654183,0)|0); + $171 = tempRet0; + $172 = (___muldi3(($124|0),0,-997805,-1)|0); + $173 = tempRet0; + $174 = (___muldi3(($124|0),0,136657,0)|0); + $175 = tempRet0; + $176 = (___muldi3(($124|0),0,-683901,-1)|0); + $177 = tempRet0; + $178 = (_i64Add(($176|0),($177|0),($84|0),0)|0); + $179 = tempRet0; + $180 = (_i64Add(($178|0),($179|0),($142|0),($143|0))|0); + $181 = tempRet0; + $182 = (_i64Add(($180|0),($181|0),($160|0),($161|0))|0); + $183 = tempRet0; + $184 = (___muldi3(($118|0),0,666643,0)|0); + $185 = tempRet0; + $186 = (___muldi3(($118|0),0,470296,0)|0); + $187 = tempRet0; + $188 = (___muldi3(($118|0),0,654183,0)|0); + $189 = tempRet0; + $190 = (___muldi3(($118|0),0,-997805,-1)|0); + $191 = tempRet0; + $192 = (___muldi3(($118|0),0,136657,0)|0); + $193 = tempRet0; + $194 = (___muldi3(($118|0),0,-683901,-1)|0); + $195 = tempRet0; + $196 = (___muldi3(($112|0),0,666643,0)|0); + $197 = tempRet0; + $198 = (___muldi3(($112|0),0,470296,0)|0); + $199 = tempRet0; + $200 = (___muldi3(($112|0),0,654183,0)|0); + $201 = tempRet0; + $202 = (___muldi3(($112|0),0,-997805,-1)|0); + $203 = tempRet0; + $204 = (___muldi3(($112|0),0,136657,0)|0); + $205 = tempRet0; + $206 = (___muldi3(($112|0),0,-683901,-1)|0); + $207 = tempRet0; + $208 = (_i64Add(($206|0),($207|0),($72|0),0)|0); + $209 = tempRet0; + $210 = (_i64Add(($208|0),($209|0),($192|0),($193|0))|0); + $211 = tempRet0; + $212 = (_i64Add(($210|0),($211|0),($172|0),($173|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($212|0),($213|0),($138|0),($139|0))|0); + $215 = tempRet0; + $216 = (_i64Add(($214|0),($215|0),($156|0),($157|0))|0); + $217 = tempRet0; + $218 = (___muldi3(($106|0),0,666643,0)|0); + $219 = tempRet0; + $220 = (_i64Add(($218|0),($219|0),($38|0),0)|0); + $221 = tempRet0; + $222 = (___muldi3(($106|0),0,470296,0)|0); + $223 = tempRet0; + $224 = (___muldi3(($106|0),0,654183,0)|0); + $225 = tempRet0; + $226 = (_i64Add(($224|0),($225|0),($48|0),0)|0); + $227 = tempRet0; + $228 = (_i64Add(($226|0),($227|0),($198|0),($199|0))|0); + $229 = tempRet0; + $230 = (_i64Add(($228|0),($229|0),($184|0),($185|0))|0); + $231 = tempRet0; + $232 = (___muldi3(($106|0),0,-997805,-1)|0); + $233 = tempRet0; + $234 = (___muldi3(($106|0),0,136657,0)|0); + $235 = tempRet0; + $236 = (_i64Add(($234|0),($235|0),($60|0),0)|0); + $237 = tempRet0; + $238 = (_i64Add(($236|0),($237|0),($202|0),($203|0))|0); + $239 = tempRet0; + $240 = (_i64Add(($238|0),($239|0),($188|0),($189|0))|0); + $241 = tempRet0; + $242 = (_i64Add(($240|0),($241|0),($168|0),($169|0))|0); + $243 = tempRet0; + $244 = (_i64Add(($242|0),($243|0),($152|0),($153|0))|0); + $245 = tempRet0; + $246 = (___muldi3(($106|0),0,-683901,-1)|0); + $247 = tempRet0; + $248 = (_i64Add(($220|0),($221|0),1048576,0)|0); + $249 = tempRet0; + $250 = (_bitshift64Lshr(($248|0),($249|0),21)|0); + $251 = tempRet0; + $252 = (_i64Add(($222|0),($223|0),($44|0),0)|0); + $253 = tempRet0; + $254 = (_i64Add(($252|0),($253|0),($196|0),($197|0))|0); + $255 = tempRet0; + $256 = (_i64Add(($254|0),($255|0),($250|0),($251|0))|0); + $257 = tempRet0; + $258 = (_bitshift64Shl(($250|0),($251|0),21)|0); + $259 = tempRet0; + $260 = (_i64Subtract(($220|0),($221|0),($258|0),($259|0))|0); + $261 = tempRet0; + $262 = (_i64Add(($230|0),($231|0),1048576,0)|0); + $263 = tempRet0; + $264 = (_bitshift64Lshr(($262|0),($263|0),21)|0); + $265 = tempRet0; + $266 = (_i64Add(($232|0),($233|0),($54|0),0)|0); + $267 = tempRet0; + $268 = (_i64Add(($266|0),($267|0),($200|0),($201|0))|0); + $269 = tempRet0; + $270 = (_i64Add(($268|0),($269|0),($186|0),($187|0))|0); + $271 = tempRet0; + $272 = (_i64Add(($270|0),($271|0),($166|0),($167|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($264|0),($265|0))|0); + $275 = tempRet0; + $276 = (_bitshift64Shl(($264|0),($265|0),21)|0); + $277 = tempRet0; + $278 = (_i64Subtract(($230|0),($231|0),($276|0),($277|0))|0); + $279 = tempRet0; + $280 = (_i64Add(($244|0),($245|0),1048576,0)|0); + $281 = tempRet0; + $282 = (_bitshift64Ashr(($280|0),($281|0),21)|0); + $283 = tempRet0; + $284 = (_i64Add(($246|0),($247|0),($66|0),0)|0); + $285 = tempRet0; + $286 = (_i64Add(($284|0),($285|0),($204|0),($205|0))|0); + $287 = tempRet0; + $288 = (_i64Add(($286|0),($287|0),($190|0),($191|0))|0); + $289 = tempRet0; + $290 = (_i64Add(($288|0),($289|0),($170|0),($171|0))|0); + $291 = tempRet0; + $292 = (_i64Add(($290|0),($291|0),($136|0),($137|0))|0); + $293 = tempRet0; + $294 = (_i64Add(($292|0),($293|0),($154|0),($155|0))|0); + $295 = tempRet0; + $296 = (_i64Add(($294|0),($295|0),($282|0),($283|0))|0); + $297 = tempRet0; + $298 = (_bitshift64Shl(($282|0),($283|0),21)|0); + $299 = tempRet0; + $300 = (_i64Subtract(($244|0),($245|0),($298|0),($299|0))|0); + $301 = tempRet0; + $302 = (_i64Add(($216|0),($217|0),1048576,0)|0); + $303 = tempRet0; + $304 = (_bitshift64Ashr(($302|0),($303|0),21)|0); + $305 = tempRet0; + $306 = (_i64Add(($194|0),($195|0),($78|0),0)|0); + $307 = tempRet0; + $308 = (_i64Add(($306|0),($307|0),($174|0),($175|0))|0); + $309 = tempRet0; + $310 = (_i64Add(($308|0),($309|0),($140|0),($141|0))|0); + $311 = tempRet0; + $312 = (_i64Add(($310|0),($311|0),($158|0),($159|0))|0); + $313 = tempRet0; + $314 = (_i64Add(($312|0),($313|0),($304|0),($305|0))|0); + $315 = tempRet0; + $316 = (_bitshift64Shl(($304|0),($305|0),21)|0); + $317 = tempRet0; + $318 = (_i64Subtract(($216|0),($217|0),($316|0),($317|0))|0); + $319 = tempRet0; + $320 = (_i64Add(($182|0),($183|0),1048576,0)|0); + $321 = tempRet0; + $322 = (_bitshift64Ashr(($320|0),($321|0),21)|0); + $323 = tempRet0; + $324 = (_i64Add(($164|0),($165|0),($322|0),($323|0))|0); + $325 = tempRet0; + $326 = (_bitshift64Shl(($322|0),($323|0),21)|0); + $327 = tempRet0; + $328 = (_i64Subtract(($182|0),($183|0),($326|0),($327|0))|0); + $329 = tempRet0; + $330 = (_i64Add(($150|0),($151|0),1048576,0)|0); + $331 = tempRet0; + $332 = (_bitshift64Ashr(($330|0),($331|0),21)|0); + $333 = tempRet0; + $334 = (_i64Add(($332|0),($333|0),($100|0),0)|0); + $335 = tempRet0; + $336 = (_bitshift64Shl(($332|0),($333|0),21)|0); + $337 = tempRet0; + $338 = (_i64Subtract(($150|0),($151|0),($336|0),($337|0))|0); + $339 = tempRet0; + $340 = (_i64Add(($256|0),($257|0),1048576,0)|0); + $341 = tempRet0; + $342 = (_bitshift64Lshr(($340|0),($341|0),21)|0); + $343 = tempRet0; + $344 = (_i64Add(($278|0),($279|0),($342|0),($343|0))|0); + $345 = tempRet0; + $346 = (_bitshift64Shl(($342|0),($343|0),21)|0); + $347 = tempRet0; + $348 = (_i64Subtract(($256|0),($257|0),($346|0),($347|0))|0); + $349 = tempRet0; + $350 = (_i64Add(($274|0),($275|0),1048576,0)|0); + $351 = tempRet0; + $352 = (_bitshift64Ashr(($350|0),($351|0),21)|0); + $353 = tempRet0; + $354 = (_i64Add(($300|0),($301|0),($352|0),($353|0))|0); + $355 = tempRet0; + $356 = (_bitshift64Shl(($352|0),($353|0),21)|0); + $357 = tempRet0; + $358 = (_i64Subtract(($274|0),($275|0),($356|0),($357|0))|0); + $359 = tempRet0; + $360 = (_i64Add(($296|0),($297|0),1048576,0)|0); + $361 = tempRet0; + $362 = (_bitshift64Ashr(($360|0),($361|0),21)|0); + $363 = tempRet0; + $364 = (_i64Add(($318|0),($319|0),($362|0),($363|0))|0); + $365 = tempRet0; + $366 = (_bitshift64Shl(($362|0),($363|0),21)|0); + $367 = tempRet0; + $368 = (_i64Subtract(($296|0),($297|0),($366|0),($367|0))|0); + $369 = tempRet0; + $370 = (_i64Add(($314|0),($315|0),1048576,0)|0); + $371 = tempRet0; + $372 = (_bitshift64Ashr(($370|0),($371|0),21)|0); + $373 = tempRet0; + $374 = (_i64Add(($372|0),($373|0),($328|0),($329|0))|0); + $375 = tempRet0; + $376 = (_bitshift64Shl(($372|0),($373|0),21)|0); + $377 = tempRet0; + $378 = (_i64Subtract(($314|0),($315|0),($376|0),($377|0))|0); + $379 = tempRet0; + $380 = (_i64Add(($324|0),($325|0),1048576,0)|0); + $381 = tempRet0; + $382 = (_bitshift64Ashr(($380|0),($381|0),21)|0); + $383 = tempRet0; + $384 = (_i64Add(($382|0),($383|0),($338|0),($339|0))|0); + $385 = tempRet0; + $386 = (_bitshift64Shl(($382|0),($383|0),21)|0); + $387 = tempRet0; + $388 = (_i64Subtract(($324|0),($325|0),($386|0),($387|0))|0); + $389 = tempRet0; + $390 = (___muldi3(($334|0),($335|0),666643,0)|0); + $391 = tempRet0; + $392 = (_i64Add(($390|0),($391|0),($32|0),0)|0); + $393 = tempRet0; + $394 = (___muldi3(($334|0),($335|0),470296,0)|0); + $395 = tempRet0; + $396 = (_i64Add(($260|0),($261|0),($394|0),($395|0))|0); + $397 = tempRet0; + $398 = (___muldi3(($334|0),($335|0),654183,0)|0); + $399 = tempRet0; + $400 = (_i64Add(($348|0),($349|0),($398|0),($399|0))|0); + $401 = tempRet0; + $402 = (___muldi3(($334|0),($335|0),-997805,-1)|0); + $403 = tempRet0; + $404 = (_i64Add(($344|0),($345|0),($402|0),($403|0))|0); + $405 = tempRet0; + $406 = (___muldi3(($334|0),($335|0),136657,0)|0); + $407 = tempRet0; + $408 = (_i64Add(($358|0),($359|0),($406|0),($407|0))|0); + $409 = tempRet0; + $410 = (___muldi3(($334|0),($335|0),-683901,-1)|0); + $411 = tempRet0; + $412 = (_i64Add(($354|0),($355|0),($410|0),($411|0))|0); + $413 = tempRet0; + $414 = (___muldi3(($384|0),($385|0),666643,0)|0); + $415 = tempRet0; + $416 = (___muldi3(($384|0),($385|0),470296,0)|0); + $417 = tempRet0; + $418 = (___muldi3(($384|0),($385|0),654183,0)|0); + $419 = tempRet0; + $420 = (_i64Add(($396|0),($397|0),($418|0),($419|0))|0); + $421 = tempRet0; + $422 = (___muldi3(($384|0),($385|0),-997805,-1)|0); + $423 = tempRet0; + $424 = (_i64Add(($400|0),($401|0),($422|0),($423|0))|0); + $425 = tempRet0; + $426 = (___muldi3(($384|0),($385|0),136657,0)|0); + $427 = tempRet0; + $428 = (_i64Add(($404|0),($405|0),($426|0),($427|0))|0); + $429 = tempRet0; + $430 = (___muldi3(($384|0),($385|0),-683901,-1)|0); + $431 = tempRet0; + $432 = (_i64Add(($408|0),($409|0),($430|0),($431|0))|0); + $433 = tempRet0; + $434 = (___muldi3(($388|0),($389|0),666643,0)|0); + $435 = tempRet0; + $436 = (___muldi3(($388|0),($389|0),470296,0)|0); + $437 = tempRet0; + $438 = (___muldi3(($388|0),($389|0),654183,0)|0); + $439 = tempRet0; + $440 = (___muldi3(($388|0),($389|0),-997805,-1)|0); + $441 = tempRet0; + $442 = (___muldi3(($388|0),($389|0),136657,0)|0); + $443 = tempRet0; + $444 = (___muldi3(($388|0),($389|0),-683901,-1)|0); + $445 = tempRet0; + $446 = (_i64Add(($428|0),($429|0),($444|0),($445|0))|0); + $447 = tempRet0; + $448 = (___muldi3(($374|0),($375|0),666643,0)|0); + $449 = tempRet0; + $450 = (___muldi3(($374|0),($375|0),470296,0)|0); + $451 = tempRet0; + $452 = (___muldi3(($374|0),($375|0),654183,0)|0); + $453 = tempRet0; + $454 = (___muldi3(($374|0),($375|0),-997805,-1)|0); + $455 = tempRet0; + $456 = (___muldi3(($374|0),($375|0),136657,0)|0); + $457 = tempRet0; + $458 = (___muldi3(($374|0),($375|0),-683901,-1)|0); + $459 = tempRet0; + $460 = (___muldi3(($378|0),($379|0),666643,0)|0); + $461 = tempRet0; + $462 = (___muldi3(($378|0),($379|0),470296,0)|0); + $463 = tempRet0; + $464 = (___muldi3(($378|0),($379|0),654183,0)|0); + $465 = tempRet0; + $466 = (___muldi3(($378|0),($379|0),-997805,-1)|0); + $467 = tempRet0; + $468 = (___muldi3(($378|0),($379|0),136657,0)|0); + $469 = tempRet0; + $470 = (___muldi3(($378|0),($379|0),-683901,-1)|0); + $471 = tempRet0; + $472 = (_i64Add(($420|0),($421|0),($456|0),($457|0))|0); + $473 = tempRet0; + $474 = (_i64Add(($472|0),($473|0),($440|0),($441|0))|0); + $475 = tempRet0; + $476 = (_i64Add(($474|0),($475|0),($470|0),($471|0))|0); + $477 = tempRet0; + $478 = (___muldi3(($364|0),($365|0),666643,0)|0); + $479 = tempRet0; + $480 = (_i64Add(($478|0),($479|0),($2|0),0)|0); + $481 = tempRet0; + $482 = (___muldi3(($364|0),($365|0),470296,0)|0); + $483 = tempRet0; + $484 = (___muldi3(($364|0),($365|0),654183,0)|0); + $485 = tempRet0; + $486 = (_i64Add(($484|0),($485|0),($14|0),0)|0); + $487 = tempRet0; + $488 = (_i64Add(($486|0),($487|0),($448|0),($449|0))|0); + $489 = tempRet0; + $490 = (_i64Add(($488|0),($489|0),($462|0),($463|0))|0); + $491 = tempRet0; + $492 = (___muldi3(($364|0),($365|0),-997805,-1)|0); + $493 = tempRet0; + $494 = (___muldi3(($364|0),($365|0),136657,0)|0); + $495 = tempRet0; + $496 = (_i64Add(($494|0),($495|0),($26|0),0)|0); + $497 = tempRet0; + $498 = (_i64Add(($496|0),($497|0),($414|0),($415|0))|0); + $499 = tempRet0; + $500 = (_i64Add(($498|0),($499|0),($452|0),($453|0))|0); + $501 = tempRet0; + $502 = (_i64Add(($500|0),($501|0),($436|0),($437|0))|0); + $503 = tempRet0; + $504 = (_i64Add(($502|0),($503|0),($466|0),($467|0))|0); + $505 = tempRet0; + $506 = (___muldi3(($364|0),($365|0),-683901,-1)|0); + $507 = tempRet0; + $508 = (_i64Add(($480|0),($481|0),1048576,0)|0); + $509 = tempRet0; + $510 = (_bitshift64Ashr(($508|0),($509|0),21)|0); + $511 = tempRet0; + $512 = (_i64Add(($482|0),($483|0),($8|0),0)|0); + $513 = tempRet0; + $514 = (_i64Add(($512|0),($513|0),($460|0),($461|0))|0); + $515 = tempRet0; + $516 = (_i64Add(($514|0),($515|0),($510|0),($511|0))|0); + $517 = tempRet0; + $518 = (_bitshift64Shl(($510|0),($511|0),21)|0); + $519 = tempRet0; + $520 = (_i64Subtract(($480|0),($481|0),($518|0),($519|0))|0); + $521 = tempRet0; + $522 = (_i64Add(($490|0),($491|0),1048576,0)|0); + $523 = tempRet0; + $524 = (_bitshift64Ashr(($522|0),($523|0),21)|0); + $525 = tempRet0; + $526 = (_i64Add(($492|0),($493|0),($20|0),0)|0); + $527 = tempRet0; + $528 = (_i64Add(($526|0),($527|0),($450|0),($451|0))|0); + $529 = tempRet0; + $530 = (_i64Add(($528|0),($529|0),($434|0),($435|0))|0); + $531 = tempRet0; + $532 = (_i64Add(($530|0),($531|0),($464|0),($465|0))|0); + $533 = tempRet0; + $534 = (_i64Add(($532|0),($533|0),($524|0),($525|0))|0); + $535 = tempRet0; + $536 = (_bitshift64Shl(($524|0),($525|0),21)|0); + $537 = tempRet0; + $538 = (_i64Add(($504|0),($505|0),1048576,0)|0); + $539 = tempRet0; + $540 = (_bitshift64Ashr(($538|0),($539|0),21)|0); + $541 = tempRet0; + $542 = (_i64Add(($392|0),($393|0),($506|0),($507|0))|0); + $543 = tempRet0; + $544 = (_i64Add(($542|0),($543|0),($416|0),($417|0))|0); + $545 = tempRet0; + $546 = (_i64Add(($544|0),($545|0),($454|0),($455|0))|0); + $547 = tempRet0; + $548 = (_i64Add(($546|0),($547|0),($438|0),($439|0))|0); + $549 = tempRet0; + $550 = (_i64Add(($548|0),($549|0),($468|0),($469|0))|0); + $551 = tempRet0; + $552 = (_i64Add(($550|0),($551|0),($540|0),($541|0))|0); + $553 = tempRet0; + $554 = (_bitshift64Shl(($540|0),($541|0),21)|0); + $555 = tempRet0; + $556 = (_i64Add(($476|0),($477|0),1048576,0)|0); + $557 = tempRet0; + $558 = (_bitshift64Ashr(($556|0),($557|0),21)|0); + $559 = tempRet0; + $560 = (_i64Add(($424|0),($425|0),($458|0),($459|0))|0); + $561 = tempRet0; + $562 = (_i64Add(($560|0),($561|0),($442|0),($443|0))|0); + $563 = tempRet0; + $564 = (_i64Add(($562|0),($563|0),($558|0),($559|0))|0); + $565 = tempRet0; + $566 = (_bitshift64Shl(($558|0),($559|0),21)|0); + $567 = tempRet0; + $568 = (_i64Subtract(($476|0),($477|0),($566|0),($567|0))|0); + $569 = tempRet0; + $570 = (_i64Add(($446|0),($447|0),1048576,0)|0); + $571 = tempRet0; + $572 = (_bitshift64Ashr(($570|0),($571|0),21)|0); + $573 = tempRet0; + $574 = (_i64Add(($432|0),($433|0),($572|0),($573|0))|0); + $575 = tempRet0; + $576 = (_bitshift64Shl(($572|0),($573|0),21)|0); + $577 = tempRet0; + $578 = (_i64Subtract(($446|0),($447|0),($576|0),($577|0))|0); + $579 = tempRet0; + $580 = (_i64Add(($412|0),($413|0),1048576,0)|0); + $581 = tempRet0; + $582 = (_bitshift64Ashr(($580|0),($581|0),21)|0); + $583 = tempRet0; + $584 = (_i64Add(($582|0),($583|0),($368|0),($369|0))|0); + $585 = tempRet0; + $586 = (_bitshift64Shl(($582|0),($583|0),21)|0); + $587 = tempRet0; + $588 = (_i64Subtract(($412|0),($413|0),($586|0),($587|0))|0); + $589 = tempRet0; + $590 = (_i64Add(($516|0),($517|0),1048576,0)|0); + $591 = tempRet0; + $592 = (_bitshift64Ashr(($590|0),($591|0),21)|0); + $593 = tempRet0; + $594 = (_bitshift64Shl(($592|0),($593|0),21)|0); + $595 = tempRet0; + $596 = (_i64Add(($534|0),($535|0),1048576,0)|0); + $597 = tempRet0; + $598 = (_bitshift64Ashr(($596|0),($597|0),21)|0); + $599 = tempRet0; + $600 = (_bitshift64Shl(($598|0),($599|0),21)|0); + $601 = tempRet0; + $602 = (_i64Add(($552|0),($553|0),1048576,0)|0); + $603 = tempRet0; + $604 = (_bitshift64Ashr(($602|0),($603|0),21)|0); + $605 = tempRet0; + $606 = (_i64Add(($568|0),($569|0),($604|0),($605|0))|0); + $607 = tempRet0; + $608 = (_bitshift64Shl(($604|0),($605|0),21)|0); + $609 = tempRet0; + $610 = (_i64Add(($564|0),($565|0),1048576,0)|0); + $611 = tempRet0; + $612 = (_bitshift64Ashr(($610|0),($611|0),21)|0); + $613 = tempRet0; + $614 = (_i64Add(($578|0),($579|0),($612|0),($613|0))|0); + $615 = tempRet0; + $616 = (_bitshift64Shl(($612|0),($613|0),21)|0); + $617 = tempRet0; + $618 = (_i64Subtract(($564|0),($565|0),($616|0),($617|0))|0); + $619 = tempRet0; + $620 = (_i64Add(($574|0),($575|0),1048576,0)|0); + $621 = tempRet0; + $622 = (_bitshift64Ashr(($620|0),($621|0),21)|0); + $623 = tempRet0; + $624 = (_i64Add(($588|0),($589|0),($622|0),($623|0))|0); + $625 = tempRet0; + $626 = (_bitshift64Shl(($622|0),($623|0),21)|0); + $627 = tempRet0; + $628 = (_i64Subtract(($574|0),($575|0),($626|0),($627|0))|0); + $629 = tempRet0; + $630 = (_i64Add(($584|0),($585|0),1048576,0)|0); + $631 = tempRet0; + $632 = (_bitshift64Ashr(($630|0),($631|0),21)|0); + $633 = tempRet0; + $634 = (_bitshift64Shl(($632|0),($633|0),21)|0); + $635 = tempRet0; + $636 = (_i64Subtract(($584|0),($585|0),($634|0),($635|0))|0); + $637 = tempRet0; + $638 = (___muldi3(($632|0),($633|0),666643,0)|0); + $639 = tempRet0; + $640 = (_i64Add(($520|0),($521|0),($638|0),($639|0))|0); + $641 = tempRet0; + $642 = (___muldi3(($632|0),($633|0),470296,0)|0); + $643 = tempRet0; + $644 = (___muldi3(($632|0),($633|0),654183,0)|0); + $645 = tempRet0; + $646 = (___muldi3(($632|0),($633|0),-997805,-1)|0); + $647 = tempRet0; + $648 = (___muldi3(($632|0),($633|0),136657,0)|0); + $649 = tempRet0; + $650 = (___muldi3(($632|0),($633|0),-683901,-1)|0); + $651 = tempRet0; + $652 = (_bitshift64Ashr(($640|0),($641|0),21)|0); + $653 = tempRet0; + $654 = (_i64Add(($642|0),($643|0),($516|0),($517|0))|0); + $655 = tempRet0; + $656 = (_i64Subtract(($654|0),($655|0),($594|0),($595|0))|0); + $657 = tempRet0; + $658 = (_i64Add(($656|0),($657|0),($652|0),($653|0))|0); + $659 = tempRet0; + $660 = (_bitshift64Shl(($652|0),($653|0),21)|0); + $661 = tempRet0; + $662 = (_i64Subtract(($640|0),($641|0),($660|0),($661|0))|0); + $663 = tempRet0; + $664 = (_bitshift64Ashr(($658|0),($659|0),21)|0); + $665 = tempRet0; + $666 = (_i64Add(($644|0),($645|0),($490|0),($491|0))|0); + $667 = tempRet0; + $668 = (_i64Subtract(($666|0),($667|0),($536|0),($537|0))|0); + $669 = tempRet0; + $670 = (_i64Add(($668|0),($669|0),($592|0),($593|0))|0); + $671 = tempRet0; + $672 = (_i64Add(($670|0),($671|0),($664|0),($665|0))|0); + $673 = tempRet0; + $674 = (_bitshift64Shl(($664|0),($665|0),21)|0); + $675 = tempRet0; + $676 = (_i64Subtract(($658|0),($659|0),($674|0),($675|0))|0); + $677 = tempRet0; + $678 = (_bitshift64Ashr(($672|0),($673|0),21)|0); + $679 = tempRet0; + $680 = (_i64Add(($534|0),($535|0),($646|0),($647|0))|0); + $681 = tempRet0; + $682 = (_i64Subtract(($680|0),($681|0),($600|0),($601|0))|0); + $683 = tempRet0; + $684 = (_i64Add(($682|0),($683|0),($678|0),($679|0))|0); + $685 = tempRet0; + $686 = (_bitshift64Shl(($678|0),($679|0),21)|0); + $687 = tempRet0; + $688 = (_i64Subtract(($672|0),($673|0),($686|0),($687|0))|0); + $689 = tempRet0; + $690 = (_bitshift64Ashr(($684|0),($685|0),21)|0); + $691 = tempRet0; + $692 = (_i64Add(($648|0),($649|0),($504|0),($505|0))|0); + $693 = tempRet0; + $694 = (_i64Subtract(($692|0),($693|0),($554|0),($555|0))|0); + $695 = tempRet0; + $696 = (_i64Add(($694|0),($695|0),($598|0),($599|0))|0); + $697 = tempRet0; + $698 = (_i64Add(($696|0),($697|0),($690|0),($691|0))|0); + $699 = tempRet0; + $700 = (_bitshift64Shl(($690|0),($691|0),21)|0); + $701 = tempRet0; + $702 = (_i64Subtract(($684|0),($685|0),($700|0),($701|0))|0); + $703 = tempRet0; + $704 = (_bitshift64Ashr(($698|0),($699|0),21)|0); + $705 = tempRet0; + $706 = (_i64Add(($552|0),($553|0),($650|0),($651|0))|0); + $707 = tempRet0; + $708 = (_i64Subtract(($706|0),($707|0),($608|0),($609|0))|0); + $709 = tempRet0; + $710 = (_i64Add(($708|0),($709|0),($704|0),($705|0))|0); + $711 = tempRet0; + $712 = (_bitshift64Shl(($704|0),($705|0),21)|0); + $713 = tempRet0; + $714 = (_i64Subtract(($698|0),($699|0),($712|0),($713|0))|0); + $715 = tempRet0; + $716 = (_bitshift64Ashr(($710|0),($711|0),21)|0); + $717 = tempRet0; + $718 = (_i64Add(($606|0),($607|0),($716|0),($717|0))|0); + $719 = tempRet0; + $720 = (_bitshift64Shl(($716|0),($717|0),21)|0); + $721 = tempRet0; + $722 = (_i64Subtract(($710|0),($711|0),($720|0),($721|0))|0); + $723 = tempRet0; + $724 = (_bitshift64Ashr(($718|0),($719|0),21)|0); + $725 = tempRet0; + $726 = (_i64Add(($724|0),($725|0),($618|0),($619|0))|0); + $727 = tempRet0; + $728 = (_bitshift64Shl(($724|0),($725|0),21)|0); + $729 = tempRet0; + $730 = (_i64Subtract(($718|0),($719|0),($728|0),($729|0))|0); + $731 = tempRet0; + $732 = (_bitshift64Ashr(($726|0),($727|0),21)|0); + $733 = tempRet0; + $734 = (_i64Add(($614|0),($615|0),($732|0),($733|0))|0); + $735 = tempRet0; + $736 = (_bitshift64Shl(($732|0),($733|0),21)|0); + $737 = tempRet0; + $738 = (_i64Subtract(($726|0),($727|0),($736|0),($737|0))|0); + $739 = tempRet0; + $740 = (_bitshift64Ashr(($734|0),($735|0),21)|0); + $741 = tempRet0; + $742 = (_i64Add(($740|0),($741|0),($628|0),($629|0))|0); + $743 = tempRet0; + $744 = (_bitshift64Shl(($740|0),($741|0),21)|0); + $745 = tempRet0; + $746 = (_i64Subtract(($734|0),($735|0),($744|0),($745|0))|0); + $747 = tempRet0; + $748 = (_bitshift64Ashr(($742|0),($743|0),21)|0); + $749 = tempRet0; + $750 = (_i64Add(($624|0),($625|0),($748|0),($749|0))|0); + $751 = tempRet0; + $752 = (_bitshift64Shl(($748|0),($749|0),21)|0); + $753 = tempRet0; + $754 = (_i64Subtract(($742|0),($743|0),($752|0),($753|0))|0); + $755 = tempRet0; + $756 = (_bitshift64Ashr(($750|0),($751|0),21)|0); + $757 = tempRet0; + $758 = (_i64Add(($756|0),($757|0),($636|0),($637|0))|0); + $759 = tempRet0; + $760 = (_bitshift64Shl(($756|0),($757|0),21)|0); + $761 = tempRet0; + $762 = (_i64Subtract(($750|0),($751|0),($760|0),($761|0))|0); + $763 = tempRet0; + $764 = (_bitshift64Ashr(($758|0),($759|0),21)|0); + $765 = tempRet0; + $766 = (_bitshift64Shl(($764|0),($765|0),21)|0); + $767 = tempRet0; + $768 = (_i64Subtract(($758|0),($759|0),($766|0),($767|0))|0); + $769 = tempRet0; + $770 = (___muldi3(($764|0),($765|0),666643,0)|0); + $771 = tempRet0; + $772 = (_i64Add(($770|0),($771|0),($662|0),($663|0))|0); + $773 = tempRet0; + $774 = (___muldi3(($764|0),($765|0),470296,0)|0); + $775 = tempRet0; + $776 = (_i64Add(($676|0),($677|0),($774|0),($775|0))|0); + $777 = tempRet0; + $778 = (___muldi3(($764|0),($765|0),654183,0)|0); + $779 = tempRet0; + $780 = (_i64Add(($688|0),($689|0),($778|0),($779|0))|0); + $781 = tempRet0; + $782 = (___muldi3(($764|0),($765|0),-997805,-1)|0); + $783 = tempRet0; + $784 = (_i64Add(($702|0),($703|0),($782|0),($783|0))|0); + $785 = tempRet0; + $786 = (___muldi3(($764|0),($765|0),136657,0)|0); + $787 = tempRet0; + $788 = (_i64Add(($714|0),($715|0),($786|0),($787|0))|0); + $789 = tempRet0; + $790 = (___muldi3(($764|0),($765|0),-683901,-1)|0); + $791 = tempRet0; + $792 = (_i64Add(($722|0),($723|0),($790|0),($791|0))|0); + $793 = tempRet0; + $794 = (_bitshift64Ashr(($772|0),($773|0),21)|0); + $795 = tempRet0; + $796 = (_i64Add(($776|0),($777|0),($794|0),($795|0))|0); + $797 = tempRet0; + $798 = (_bitshift64Shl(($794|0),($795|0),21)|0); + $799 = tempRet0; + $800 = (_i64Subtract(($772|0),($773|0),($798|0),($799|0))|0); + $801 = tempRet0; + $802 = (_bitshift64Ashr(($796|0),($797|0),21)|0); + $803 = tempRet0; + $804 = (_i64Add(($780|0),($781|0),($802|0),($803|0))|0); + $805 = tempRet0; + $806 = (_bitshift64Shl(($802|0),($803|0),21)|0); + $807 = tempRet0; + $808 = (_i64Subtract(($796|0),($797|0),($806|0),($807|0))|0); + $809 = tempRet0; + $810 = (_bitshift64Ashr(($804|0),($805|0),21)|0); + $811 = tempRet0; + $812 = (_i64Add(($784|0),($785|0),($810|0),($811|0))|0); + $813 = tempRet0; + $814 = (_bitshift64Shl(($810|0),($811|0),21)|0); + $815 = tempRet0; + $816 = (_i64Subtract(($804|0),($805|0),($814|0),($815|0))|0); + $817 = tempRet0; + $818 = (_bitshift64Ashr(($812|0),($813|0),21)|0); + $819 = tempRet0; + $820 = (_i64Add(($788|0),($789|0),($818|0),($819|0))|0); + $821 = tempRet0; + $822 = (_bitshift64Shl(($818|0),($819|0),21)|0); + $823 = tempRet0; + $824 = (_i64Subtract(($812|0),($813|0),($822|0),($823|0))|0); + $825 = tempRet0; + $826 = (_bitshift64Ashr(($820|0),($821|0),21)|0); + $827 = tempRet0; + $828 = (_i64Add(($792|0),($793|0),($826|0),($827|0))|0); + $829 = tempRet0; + $830 = (_bitshift64Shl(($826|0),($827|0),21)|0); + $831 = tempRet0; + $832 = (_i64Subtract(($820|0),($821|0),($830|0),($831|0))|0); + $833 = tempRet0; + $834 = (_bitshift64Ashr(($828|0),($829|0),21)|0); + $835 = tempRet0; + $836 = (_i64Add(($834|0),($835|0),($730|0),($731|0))|0); + $837 = tempRet0; + $838 = (_bitshift64Shl(($834|0),($835|0),21)|0); + $839 = tempRet0; + $840 = (_i64Subtract(($828|0),($829|0),($838|0),($839|0))|0); + $841 = tempRet0; + $842 = (_bitshift64Ashr(($836|0),($837|0),21)|0); + $843 = tempRet0; + $844 = (_i64Add(($842|0),($843|0),($738|0),($739|0))|0); + $845 = tempRet0; + $846 = (_bitshift64Shl(($842|0),($843|0),21)|0); + $847 = tempRet0; + $848 = (_i64Subtract(($836|0),($837|0),($846|0),($847|0))|0); + $849 = tempRet0; + $850 = (_bitshift64Ashr(($844|0),($845|0),21)|0); + $851 = tempRet0; + $852 = (_i64Add(($850|0),($851|0),($746|0),($747|0))|0); + $853 = tempRet0; + $854 = (_bitshift64Shl(($850|0),($851|0),21)|0); + $855 = tempRet0; + $856 = (_i64Subtract(($844|0),($845|0),($854|0),($855|0))|0); + $857 = tempRet0; + $858 = (_bitshift64Ashr(($852|0),($853|0),21)|0); + $859 = tempRet0; + $860 = (_i64Add(($858|0),($859|0),($754|0),($755|0))|0); + $861 = tempRet0; + $862 = (_bitshift64Shl(($858|0),($859|0),21)|0); + $863 = tempRet0; + $864 = (_i64Subtract(($852|0),($853|0),($862|0),($863|0))|0); + $865 = tempRet0; + $866 = (_bitshift64Ashr(($860|0),($861|0),21)|0); + $867 = tempRet0; + $868 = (_i64Add(($866|0),($867|0),($762|0),($763|0))|0); + $869 = tempRet0; + $870 = (_bitshift64Shl(($866|0),($867|0),21)|0); + $871 = tempRet0; + $872 = (_i64Subtract(($860|0),($861|0),($870|0),($871|0))|0); + $873 = tempRet0; + $874 = (_bitshift64Ashr(($868|0),($869|0),21)|0); + $875 = tempRet0; + $876 = (_i64Add(($874|0),($875|0),($768|0),($769|0))|0); + $877 = tempRet0; + $878 = (_bitshift64Shl(($874|0),($875|0),21)|0); + $879 = tempRet0; + $880 = (_i64Subtract(($868|0),($869|0),($878|0),($879|0))|0); + $881 = tempRet0; + $882 = $800&255; + HEAP8[$s>>0] = $882; + $883 = (_bitshift64Lshr(($800|0),($801|0),8)|0); + $884 = tempRet0; + $885 = $883&255; + $886 = (($s) + 1|0); + HEAP8[$886>>0] = $885; + $887 = (_bitshift64Lshr(($800|0),($801|0),16)|0); + $888 = tempRet0; + $889 = (_bitshift64Shl(($808|0),($809|0),5)|0); + $890 = tempRet0; + $891 = $889 | $887; + $890 | $888; + $892 = $891&255; + HEAP8[$3>>0] = $892; + $893 = (_bitshift64Lshr(($808|0),($809|0),3)|0); + $894 = tempRet0; + $895 = $893&255; + $896 = (($s) + 3|0); + HEAP8[$896>>0] = $895; + $897 = (_bitshift64Lshr(($808|0),($809|0),11)|0); + $898 = tempRet0; + $899 = $897&255; + $900 = (($s) + 4|0); + HEAP8[$900>>0] = $899; + $901 = (_bitshift64Lshr(($808|0),($809|0),19)|0); + $902 = tempRet0; + $903 = (_bitshift64Shl(($816|0),($817|0),2)|0); + $904 = tempRet0; + $905 = $903 | $901; + $904 | $902; + $906 = $905&255; + HEAP8[$9>>0] = $906; + $907 = (_bitshift64Lshr(($816|0),($817|0),6)|0); + $908 = tempRet0; + $909 = $907&255; + $910 = (($s) + 6|0); + HEAP8[$910>>0] = $909; + $911 = (_bitshift64Lshr(($816|0),($817|0),14)|0); + $912 = tempRet0; + $913 = (_bitshift64Shl(($824|0),($825|0),7)|0); + $914 = tempRet0; + $915 = $913 | $911; + $914 | $912; + $916 = $915&255; + HEAP8[$15>>0] = $916; + $917 = (_bitshift64Lshr(($824|0),($825|0),1)|0); + $918 = tempRet0; + $919 = $917&255; + $920 = (($s) + 8|0); + HEAP8[$920>>0] = $919; + $921 = (_bitshift64Lshr(($824|0),($825|0),9)|0); + $922 = tempRet0; + $923 = $921&255; + $924 = (($s) + 9|0); + HEAP8[$924>>0] = $923; + $925 = (_bitshift64Lshr(($824|0),($825|0),17)|0); + $926 = tempRet0; + $927 = (_bitshift64Shl(($832|0),($833|0),4)|0); + $928 = tempRet0; + $929 = $927 | $925; + $928 | $926; + $930 = $929&255; + HEAP8[$21>>0] = $930; + $931 = (_bitshift64Lshr(($832|0),($833|0),4)|0); + $932 = tempRet0; + $933 = $931&255; + $934 = (($s) + 11|0); + HEAP8[$934>>0] = $933; + $935 = (_bitshift64Lshr(($832|0),($833|0),12)|0); + $936 = tempRet0; + $937 = $935&255; + $938 = (($s) + 12|0); + HEAP8[$938>>0] = $937; + $939 = (_bitshift64Lshr(($832|0),($833|0),20)|0); + $940 = tempRet0; + $941 = (_bitshift64Shl(($840|0),($841|0),1)|0); + $942 = tempRet0; + $943 = $941 | $939; + $942 | $940; + $944 = $943&255; + HEAP8[$27>>0] = $944; + $945 = (_bitshift64Lshr(($840|0),($841|0),7)|0); + $946 = tempRet0; + $947 = $945&255; + $948 = (($s) + 14|0); + HEAP8[$948>>0] = $947; + $949 = (_bitshift64Lshr(($840|0),($841|0),15)|0); + $950 = tempRet0; + $951 = (_bitshift64Shl(($848|0),($849|0),6)|0); + $952 = tempRet0; + $953 = $951 | $949; + $952 | $950; + $954 = $953&255; + HEAP8[$33>>0] = $954; + $955 = (_bitshift64Lshr(($848|0),($849|0),2)|0); + $956 = tempRet0; + $957 = $955&255; + $958 = (($s) + 16|0); + HEAP8[$958>>0] = $957; + $959 = (_bitshift64Lshr(($848|0),($849|0),10)|0); + $960 = tempRet0; + $961 = $959&255; + $962 = (($s) + 17|0); + HEAP8[$962>>0] = $961; + $963 = (_bitshift64Lshr(($848|0),($849|0),18)|0); + $964 = tempRet0; + $965 = (_bitshift64Shl(($856|0),($857|0),3)|0); + $966 = tempRet0; + $967 = $965 | $963; + $966 | $964; + $968 = $967&255; + HEAP8[$39>>0] = $968; + $969 = (_bitshift64Lshr(($856|0),($857|0),5)|0); + $970 = tempRet0; + $971 = $969&255; + $972 = (($s) + 19|0); + HEAP8[$972>>0] = $971; + $973 = (_bitshift64Lshr(($856|0),($857|0),13)|0); + $974 = tempRet0; + $975 = $973&255; + $976 = (($s) + 20|0); + HEAP8[$976>>0] = $975; + $977 = $864&255; + HEAP8[$45>>0] = $977; + $978 = (_bitshift64Lshr(($864|0),($865|0),8)|0); + $979 = tempRet0; + $980 = $978&255; + $981 = (($s) + 22|0); + HEAP8[$981>>0] = $980; + $982 = (_bitshift64Lshr(($864|0),($865|0),16)|0); + $983 = tempRet0; + $984 = (_bitshift64Shl(($872|0),($873|0),5)|0); + $985 = tempRet0; + $986 = $984 | $982; + $985 | $983; + $987 = $986&255; + HEAP8[$49>>0] = $987; + $988 = (_bitshift64Lshr(($872|0),($873|0),3)|0); + $989 = tempRet0; + $990 = $988&255; + $991 = (($s) + 24|0); + HEAP8[$991>>0] = $990; + $992 = (_bitshift64Lshr(($872|0),($873|0),11)|0); + $993 = tempRet0; + $994 = $992&255; + $995 = (($s) + 25|0); + HEAP8[$995>>0] = $994; + $996 = (_bitshift64Lshr(($872|0),($873|0),19)|0); + $997 = tempRet0; + $998 = (_bitshift64Shl(($880|0),($881|0),2)|0); + $999 = tempRet0; + $1000 = $998 | $996; + $999 | $997; + $1001 = $1000&255; + HEAP8[$55>>0] = $1001; + $1002 = (_bitshift64Lshr(($880|0),($881|0),6)|0); + $1003 = tempRet0; + $1004 = $1002&255; + $1005 = (($s) + 27|0); + HEAP8[$1005>>0] = $1004; + $1006 = (_bitshift64Lshr(($880|0),($881|0),14)|0); + $1007 = tempRet0; + $1008 = (_bitshift64Shl(($876|0),($877|0),7)|0); + $1009 = tempRet0; + $1010 = $1006 | $1008; + $1007 | $1009; + $1011 = $1010&255; + HEAP8[$61>>0] = $1011; + $1012 = (_bitshift64Lshr(($876|0),($877|0),1)|0); + $1013 = tempRet0; + $1014 = $1012&255; + $1015 = (($s) + 29|0); + HEAP8[$1015>>0] = $1014; + $1016 = (_bitshift64Lshr(($876|0),($877|0),9)|0); + $1017 = tempRet0; + $1018 = $1016&255; + $1019 = (($s) + 30|0); + HEAP8[$1019>>0] = $1018; + $1020 = (_bitshift64Lshr(($876|0),($877|0),17)|0); + $1021 = tempRet0; + $1022 = $1020&255; + HEAP8[$67>>0] = $1022; + STACKTOP = sp;return; +} +function _load_351($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + tempRet0 = $14; + STACKTOP = sp;return ($13|0); +} +function _load_452($in) { + $in = $in|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$in>>0]|0; + $1 = $0&255; + $2 = (($in) + 1|0); + $3 = HEAP8[$2>>0]|0; + $4 = $3&255; + $5 = (_bitshift64Shl(($4|0),0,8)|0); + $6 = tempRet0; + $7 = $5 | $1; + $8 = (($in) + 2|0); + $9 = HEAP8[$8>>0]|0; + $10 = $9&255; + $11 = (_bitshift64Shl(($10|0),0,16)|0); + $12 = tempRet0; + $13 = $7 | $11; + $14 = $6 | $12; + $15 = (($in) + 3|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16&255; + $18 = (_bitshift64Shl(($17|0),0,24)|0); + $19 = tempRet0; + $20 = $13 | $18; + $21 = $14 | $19; + tempRet0 = $21; + STACKTOP = sp;return ($20|0); +} +function _sph_sha512_init($cc) { + $cc = $cc|0; + var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + $0 = (($cc) + 128|0); + dest=$0+0|0; src=31840+0|0; stop=dest+64|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + $1 = (($cc) + 192|0); + $2 = $1; + $3 = $2; + HEAP32[$3>>2] = 0; + $4 = (($2) + 4)|0; + $5 = $4; + HEAP32[$5>>2] = 0; + STACKTOP = sp;return; +} +function _sph_sha384($cc,$data,$len) { + $cc = $cc|0; + $data = $data|0; + $len = $len|0; + var $$01$ = 0, $$012 = 0, $$03 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0; + var $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $current$04 = 0, $current$1 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (($cc) + 192|0); + $1 = ($len|0)==(0); + if ($1) { + STACKTOP = sp;return; + } + $2 = $0; + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = $4 & 127; + $9 = (($cc) + 128|0); + $$012 = $len;$$03 = $data;$current$04 = $8; + while(1) { + $10 = (128 - ($current$04))|0; + $11 = ($10>>>0)>($$012>>>0); + $$01$ = $11 ? $$012 : $10; + $12 = (($cc) + ($current$04)|0); + _memcpy(($12|0),($$03|0),($$01$|0))|0; + $13 = (($$03) + ($$01$)|0); + $14 = (($$01$) + ($current$04))|0; + $15 = (($$012) - ($$01$))|0; + $16 = ($14|0)==(128); + if ($16) { + _sha3_round($cc,$9); + $current$1 = 0; + } else { + $current$1 = $14; + } + $17 = $0; + $18 = $17; + $19 = HEAP32[$18>>2]|0; + $20 = (($17) + 4)|0; + $21 = $20; + $22 = HEAP32[$21>>2]|0; + $23 = (_i64Add(($19|0),($22|0),($$01$|0),0)|0); + $24 = tempRet0; + $25 = $0; + $26 = $25; + HEAP32[$26>>2] = $23; + $27 = (($25) + 4)|0; + $28 = $27; + HEAP32[$28>>2] = $24; + $29 = ($$012|0)==($$01$|0); + if ($29) { + break; + } else { + $$012 = $15;$$03 = $13;$current$04 = $current$1; + } + } + STACKTOP = sp;return; +} +function _sph_sha512_close($cc,$dst) { + $cc = $cc|0; + $dst = $dst|0; + var label = 0, sp = 0; + sp = STACKTOP; + _sha384_close($cc,$dst,8); + _sph_sha512_init($cc); + STACKTOP = sp;return; +} +function _sha3_round($data,$r) { + $data = $data|0; + $r = $r|0; + var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; + var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; + var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; + var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; + var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; + var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; + var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; + var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; + var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; + var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; + var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; + var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; + var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0; + var $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0; + var $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0; + var $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0; + var $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0; + var $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0; + var $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0; + var $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0; + var $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0; + var $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0; + var $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0; + var $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0; + var $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0; + var $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0; + var $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0; + var $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0; + var $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0; + var $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0; + var $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0; + var $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0; + var $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0; + var $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0; + var $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0; + var $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0; + var $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0; + var $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0; + var $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0; + var $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0; + var $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0; + var $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $W = 0, $exitcond = 0, $exitcond19 = 0, $i$011 = 0, $i$110 = 0, $i$29 = 0; + var label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 640|0; + $W = sp; + $i$011 = 0; + while(1) { + $0 = $i$011 << 3; + $1 = (($data) + ($0)|0); + $2 = (_sph_dec64be_aligned($1)|0); + $3 = tempRet0; + $4 = (($W) + ($i$011<<3)|0); + $5 = $4; + $6 = $5; + HEAP32[$6>>2] = $2; + $7 = (($5) + 4)|0; + $8 = $7; + HEAP32[$8>>2] = $3; + $9 = (($i$011) + 1)|0; + $exitcond19 = ($9|0)==(16); + if ($exitcond19) { + $i$110 = 16; + break; + } else { + $i$011 = $9; + } + } + while(1) { + $10 = (($i$110) + -2)|0; + $11 = (($W) + ($10<<3)|0); + $12 = $11; + $13 = $12; + $14 = HEAP32[$13>>2]|0; + $15 = (($12) + 4)|0; + $16 = $15; + $17 = HEAP32[$16>>2]|0; + $18 = (_bitshift64Shl(($14|0),($17|0),45)|0); + $19 = tempRet0; + $20 = (_bitshift64Lshr(($14|0),($17|0),19)|0); + $21 = tempRet0; + $22 = $18 | $20; + $23 = $19 | $21; + $24 = (_bitshift64Shl(($14|0),($17|0),3)|0); + $25 = tempRet0; + $26 = (_bitshift64Lshr(($14|0),($17|0),61)|0); + $27 = tempRet0; + $28 = $24 | $26; + $29 = $25 | $27; + $30 = (_bitshift64Lshr(($14|0),($17|0),6)|0); + $31 = tempRet0; + $32 = $28 ^ $30; + $33 = $29 ^ $31; + $34 = $32 ^ $22; + $35 = $33 ^ $23; + $36 = (($i$110) + -7)|0; + $37 = (($W) + ($36<<3)|0); + $38 = $37; + $39 = $38; + $40 = HEAP32[$39>>2]|0; + $41 = (($38) + 4)|0; + $42 = $41; + $43 = HEAP32[$42>>2]|0; + $44 = (($i$110) + -15)|0; + $45 = (($W) + ($44<<3)|0); + $46 = $45; + $47 = $46; + $48 = HEAP32[$47>>2]|0; + $49 = (($46) + 4)|0; + $50 = $49; + $51 = HEAP32[$50>>2]|0; + $52 = (_bitshift64Shl(($48|0),($51|0),63)|0); + $53 = tempRet0; + $54 = (_bitshift64Lshr(($48|0),($51|0),1)|0); + $55 = tempRet0; + $56 = $52 | $54; + $57 = $53 | $55; + $58 = (_bitshift64Shl(($48|0),($51|0),56)|0); + $59 = tempRet0; + $60 = (_bitshift64Lshr(($48|0),($51|0),8)|0); + $61 = tempRet0; + $62 = $58 | $60; + $63 = $59 | $61; + $64 = (_bitshift64Lshr(($48|0),($51|0),7)|0); + $65 = tempRet0; + $66 = $62 ^ $64; + $67 = $63 ^ $65; + $68 = $66 ^ $56; + $69 = $67 ^ $57; + $70 = (($i$110) + -16)|0; + $71 = (($W) + ($70<<3)|0); + $72 = $71; + $73 = $72; + $74 = HEAP32[$73>>2]|0; + $75 = (($72) + 4)|0; + $76 = $75; + $77 = HEAP32[$76>>2]|0; + $78 = (_i64Add(($74|0),($77|0),($40|0),($43|0))|0); + $79 = tempRet0; + $80 = (_i64Add(($78|0),($79|0),($34|0),($35|0))|0); + $81 = tempRet0; + $82 = (_i64Add(($80|0),($81|0),($68|0),($69|0))|0); + $83 = tempRet0; + $84 = (($W) + ($i$110<<3)|0); + $85 = $84; + $86 = $85; + HEAP32[$86>>2] = $82; + $87 = (($85) + 4)|0; + $88 = $87; + HEAP32[$88>>2] = $83; + $89 = (($i$110) + 1)|0; + $exitcond = ($89|0)==(80); + if ($exitcond) { + break; + } else { + $i$110 = $89; + } + } + $90 = $r; + $91 = $90; + $92 = HEAP32[$91>>2]|0; + $93 = (($90) + 4)|0; + $94 = $93; + $95 = HEAP32[$94>>2]|0; + $96 = (($r) + 8|0); + $97 = $96; + $98 = $97; + $99 = HEAP32[$98>>2]|0; + $100 = (($97) + 4)|0; + $101 = $100; + $102 = HEAP32[$101>>2]|0; + $103 = (($r) + 16|0); + $104 = $103; + $105 = $104; + $106 = HEAP32[$105>>2]|0; + $107 = (($104) + 4)|0; + $108 = $107; + $109 = HEAP32[$108>>2]|0; + $110 = (($r) + 24|0); + $111 = $110; + $112 = $111; + $113 = HEAP32[$112>>2]|0; + $114 = (($111) + 4)|0; + $115 = $114; + $116 = HEAP32[$115>>2]|0; + $117 = (($r) + 32|0); + $118 = $117; + $119 = $118; + $120 = HEAP32[$119>>2]|0; + $121 = (($118) + 4)|0; + $122 = $121; + $123 = HEAP32[$122>>2]|0; + $124 = (($r) + 40|0); + $125 = $124; + $126 = $125; + $127 = HEAP32[$126>>2]|0; + $128 = (($125) + 4)|0; + $129 = $128; + $130 = HEAP32[$129>>2]|0; + $131 = (($r) + 48|0); + $132 = $131; + $133 = $132; + $134 = HEAP32[$133>>2]|0; + $135 = (($132) + 4)|0; + $136 = $135; + $137 = HEAP32[$136>>2]|0; + $138 = (($r) + 56|0); + $139 = $138; + $140 = $139; + $141 = HEAP32[$140>>2]|0; + $142 = (($139) + 4)|0; + $143 = $142; + $144 = HEAP32[$143>>2]|0; + $145 = $120;$146 = $123;$170 = $134;$171 = $127;$173 = $137;$174 = $130;$193 = $141;$194 = $144;$203 = $92;$204 = $95;$228 = $99;$230 = $102;$234 = $106;$236 = $109;$241 = $113;$242 = $116;$i$29 = 0; + while(1) { + $147 = (_bitshift64Shl(($145|0),($146|0),50)|0); + $148 = tempRet0; + $149 = (_bitshift64Lshr(($145|0),($146|0),14)|0); + $150 = tempRet0; + $151 = $147 | $149; + $152 = $148 | $150; + $153 = (_bitshift64Shl(($145|0),($146|0),46)|0); + $154 = tempRet0; + $155 = (_bitshift64Lshr(($145|0),($146|0),18)|0); + $156 = tempRet0; + $157 = $153 | $155; + $158 = $154 | $156; + $159 = $151 ^ $157; + $160 = $152 ^ $158; + $161 = (_bitshift64Shl(($145|0),($146|0),23)|0); + $162 = tempRet0; + $163 = (_bitshift64Lshr(($145|0),($146|0),41)|0); + $164 = tempRet0; + $165 = $161 | $163; + $166 = $162 | $164; + $167 = $159 ^ $165; + $168 = $160 ^ $166; + $169 = $171 ^ $170; + $172 = $174 ^ $173; + $175 = $169 & $145; + $176 = $172 & $146; + $177 = $175 ^ $170; + $178 = $176 ^ $173; + $179 = (31904 + ($i$29<<3)|0); + $180 = $179; + $181 = $180; + $182 = HEAP32[$181>>2]|0; + $183 = (($180) + 4)|0; + $184 = $183; + $185 = HEAP32[$184>>2]|0; + $186 = (($W) + ($i$29<<3)|0); + $187 = $186; + $188 = $187; + $189 = HEAP32[$188>>2]|0; + $190 = (($187) + 4)|0; + $191 = $190; + $192 = HEAP32[$191>>2]|0; + $195 = (_i64Add(($177|0),($178|0),($193|0),($194|0))|0); + $196 = tempRet0; + $197 = (_i64Add(($195|0),($196|0),($167|0),($168|0))|0); + $198 = tempRet0; + $199 = (_i64Add(($197|0),($198|0),($182|0),($185|0))|0); + $200 = tempRet0; + $201 = (_i64Add(($199|0),($200|0),($189|0),($192|0))|0); + $202 = tempRet0; + $205 = (_bitshift64Shl(($203|0),($204|0),36)|0); + $206 = tempRet0; + $207 = (_bitshift64Lshr(($203|0),($204|0),28)|0); + $208 = tempRet0; + $209 = $205 | $207; + $210 = $206 | $208; + $211 = (_bitshift64Shl(($203|0),($204|0),30)|0); + $212 = tempRet0; + $213 = (_bitshift64Lshr(($203|0),($204|0),34)|0); + $214 = tempRet0; + $215 = $211 | $213; + $216 = $212 | $214; + $217 = $209 ^ $215; + $218 = $210 ^ $216; + $219 = (_bitshift64Shl(($203|0),($204|0),25)|0); + $220 = tempRet0; + $221 = (_bitshift64Lshr(($203|0),($204|0),39)|0); + $222 = tempRet0; + $223 = $219 | $221; + $224 = $220 | $222; + $225 = $217 ^ $223; + $226 = $218 ^ $224; + $227 = $203 & $228; + $229 = $204 & $230; + $231 = $203 | $228; + $232 = $204 | $230; + $233 = $231 & $234; + $235 = $232 & $236; + $237 = $233 | $227; + $238 = $235 | $229; + $239 = (_i64Add(($225|0),($226|0),($237|0),($238|0))|0); + $240 = tempRet0; + $243 = (_i64Add(($201|0),($202|0),($241|0),($242|0))|0); + $244 = tempRet0; + $245 = (_i64Add(($239|0),($240|0),($201|0),($202|0))|0); + $246 = tempRet0; + $247 = (_bitshift64Shl(($243|0),($244|0),50)|0); + $248 = tempRet0; + $249 = (_bitshift64Lshr(($243|0),($244|0),14)|0); + $250 = tempRet0; + $251 = $247 | $249; + $252 = $248 | $250; + $253 = (_bitshift64Shl(($243|0),($244|0),46)|0); + $254 = tempRet0; + $255 = (_bitshift64Lshr(($243|0),($244|0),18)|0); + $256 = tempRet0; + $257 = $253 | $255; + $258 = $254 | $256; + $259 = $251 ^ $257; + $260 = $252 ^ $258; + $261 = (_bitshift64Shl(($243|0),($244|0),23)|0); + $262 = tempRet0; + $263 = (_bitshift64Lshr(($243|0),($244|0),41)|0); + $264 = tempRet0; + $265 = $261 | $263; + $266 = $262 | $264; + $267 = $259 ^ $265; + $268 = $260 ^ $266; + $269 = $145 ^ $171; + $270 = $146 ^ $174; + $271 = $243 & $269; + $272 = $244 & $270; + $273 = $271 ^ $171; + $274 = $272 ^ $174; + $275 = $i$29 | 1; + $276 = (31904 + ($275<<3)|0); + $277 = $276; + $278 = $277; + $279 = HEAP32[$278>>2]|0; + $280 = (($277) + 4)|0; + $281 = $280; + $282 = HEAP32[$281>>2]|0; + $283 = (($W) + ($275<<3)|0); + $284 = $283; + $285 = $284; + $286 = HEAP32[$285>>2]|0; + $287 = (($284) + 4)|0; + $288 = $287; + $289 = HEAP32[$288>>2]|0; + $290 = (_i64Add(($279|0),($282|0),($170|0),($173|0))|0); + $291 = tempRet0; + $292 = (_i64Add(($290|0),($291|0),($286|0),($289|0))|0); + $293 = tempRet0; + $294 = (_i64Add(($292|0),($293|0),($273|0),($274|0))|0); + $295 = tempRet0; + $296 = (_i64Add(($294|0),($295|0),($267|0),($268|0))|0); + $297 = tempRet0; + $298 = (_bitshift64Shl(($245|0),($246|0),36)|0); + $299 = tempRet0; + $300 = (_bitshift64Lshr(($245|0),($246|0),28)|0); + $301 = tempRet0; + $302 = $298 | $300; + $303 = $299 | $301; + $304 = (_bitshift64Shl(($245|0),($246|0),30)|0); + $305 = tempRet0; + $306 = (_bitshift64Lshr(($245|0),($246|0),34)|0); + $307 = tempRet0; + $308 = $304 | $306; + $309 = $305 | $307; + $310 = $302 ^ $308; + $311 = $303 ^ $309; + $312 = (_bitshift64Shl(($245|0),($246|0),25)|0); + $313 = tempRet0; + $314 = (_bitshift64Lshr(($245|0),($246|0),39)|0); + $315 = tempRet0; + $316 = $312 | $314; + $317 = $313 | $315; + $318 = $310 ^ $316; + $319 = $311 ^ $317; + $320 = $245 & $203; + $321 = $246 & $204; + $322 = $245 | $203; + $323 = $246 | $204; + $324 = $322 & $228; + $325 = $323 & $230; + $326 = $324 | $320; + $327 = $325 | $321; + $328 = (_i64Add(($318|0),($319|0),($326|0),($327|0))|0); + $329 = tempRet0; + $330 = (_i64Add(($296|0),($297|0),($234|0),($236|0))|0); + $331 = tempRet0; + $332 = (_i64Add(($328|0),($329|0),($296|0),($297|0))|0); + $333 = tempRet0; + $334 = (_bitshift64Shl(($330|0),($331|0),50)|0); + $335 = tempRet0; + $336 = (_bitshift64Lshr(($330|0),($331|0),14)|0); + $337 = tempRet0; + $338 = $334 | $336; + $339 = $335 | $337; + $340 = (_bitshift64Shl(($330|0),($331|0),46)|0); + $341 = tempRet0; + $342 = (_bitshift64Lshr(($330|0),($331|0),18)|0); + $343 = tempRet0; + $344 = $340 | $342; + $345 = $341 | $343; + $346 = $338 ^ $344; + $347 = $339 ^ $345; + $348 = (_bitshift64Shl(($330|0),($331|0),23)|0); + $349 = tempRet0; + $350 = (_bitshift64Lshr(($330|0),($331|0),41)|0); + $351 = tempRet0; + $352 = $348 | $350; + $353 = $349 | $351; + $354 = $346 ^ $352; + $355 = $347 ^ $353; + $356 = $243 ^ $145; + $357 = $244 ^ $146; + $358 = $330 & $356; + $359 = $331 & $357; + $360 = $358 ^ $145; + $361 = $359 ^ $146; + $362 = $i$29 | 2; + $363 = (31904 + ($362<<3)|0); + $364 = $363; + $365 = $364; + $366 = HEAP32[$365>>2]|0; + $367 = (($364) + 4)|0; + $368 = $367; + $369 = HEAP32[$368>>2]|0; + $370 = (($W) + ($362<<3)|0); + $371 = $370; + $372 = $371; + $373 = HEAP32[$372>>2]|0; + $374 = (($371) + 4)|0; + $375 = $374; + $376 = HEAP32[$375>>2]|0; + $377 = (_i64Add(($366|0),($369|0),($171|0),($174|0))|0); + $378 = tempRet0; + $379 = (_i64Add(($377|0),($378|0),($373|0),($376|0))|0); + $380 = tempRet0; + $381 = (_i64Add(($379|0),($380|0),($360|0),($361|0))|0); + $382 = tempRet0; + $383 = (_i64Add(($381|0),($382|0),($354|0),($355|0))|0); + $384 = tempRet0; + $385 = (_bitshift64Shl(($332|0),($333|0),36)|0); + $386 = tempRet0; + $387 = (_bitshift64Lshr(($332|0),($333|0),28)|0); + $388 = tempRet0; + $389 = $385 | $387; + $390 = $386 | $388; + $391 = (_bitshift64Shl(($332|0),($333|0),30)|0); + $392 = tempRet0; + $393 = (_bitshift64Lshr(($332|0),($333|0),34)|0); + $394 = tempRet0; + $395 = $391 | $393; + $396 = $392 | $394; + $397 = $389 ^ $395; + $398 = $390 ^ $396; + $399 = (_bitshift64Shl(($332|0),($333|0),25)|0); + $400 = tempRet0; + $401 = (_bitshift64Lshr(($332|0),($333|0),39)|0); + $402 = tempRet0; + $403 = $399 | $401; + $404 = $400 | $402; + $405 = $397 ^ $403; + $406 = $398 ^ $404; + $407 = $332 & $245; + $408 = $333 & $246; + $409 = $332 | $245; + $410 = $333 | $246; + $411 = $409 & $203; + $412 = $410 & $204; + $413 = $411 | $407; + $414 = $412 | $408; + $415 = (_i64Add(($405|0),($406|0),($413|0),($414|0))|0); + $416 = tempRet0; + $417 = (_i64Add(($383|0),($384|0),($228|0),($230|0))|0); + $418 = tempRet0; + $419 = (_i64Add(($415|0),($416|0),($383|0),($384|0))|0); + $420 = tempRet0; + $421 = (_bitshift64Shl(($417|0),($418|0),50)|0); + $422 = tempRet0; + $423 = (_bitshift64Lshr(($417|0),($418|0),14)|0); + $424 = tempRet0; + $425 = $421 | $423; + $426 = $422 | $424; + $427 = (_bitshift64Shl(($417|0),($418|0),46)|0); + $428 = tempRet0; + $429 = (_bitshift64Lshr(($417|0),($418|0),18)|0); + $430 = tempRet0; + $431 = $427 | $429; + $432 = $428 | $430; + $433 = $425 ^ $431; + $434 = $426 ^ $432; + $435 = (_bitshift64Shl(($417|0),($418|0),23)|0); + $436 = tempRet0; + $437 = (_bitshift64Lshr(($417|0),($418|0),41)|0); + $438 = tempRet0; + $439 = $435 | $437; + $440 = $436 | $438; + $441 = $433 ^ $439; + $442 = $434 ^ $440; + $443 = $330 ^ $243; + $444 = $331 ^ $244; + $445 = $417 & $443; + $446 = $418 & $444; + $447 = $445 ^ $243; + $448 = $446 ^ $244; + $449 = $i$29 | 3; + $450 = (31904 + ($449<<3)|0); + $451 = $450; + $452 = $451; + $453 = HEAP32[$452>>2]|0; + $454 = (($451) + 4)|0; + $455 = $454; + $456 = HEAP32[$455>>2]|0; + $457 = (($W) + ($449<<3)|0); + $458 = $457; + $459 = $458; + $460 = HEAP32[$459>>2]|0; + $461 = (($458) + 4)|0; + $462 = $461; + $463 = HEAP32[$462>>2]|0; + $464 = (_i64Add(($453|0),($456|0),($145|0),($146|0))|0); + $465 = tempRet0; + $466 = (_i64Add(($464|0),($465|0),($460|0),($463|0))|0); + $467 = tempRet0; + $468 = (_i64Add(($466|0),($467|0),($447|0),($448|0))|0); + $469 = tempRet0; + $470 = (_i64Add(($468|0),($469|0),($441|0),($442|0))|0); + $471 = tempRet0; + $472 = (_bitshift64Shl(($419|0),($420|0),36)|0); + $473 = tempRet0; + $474 = (_bitshift64Lshr(($419|0),($420|0),28)|0); + $475 = tempRet0; + $476 = $472 | $474; + $477 = $473 | $475; + $478 = (_bitshift64Shl(($419|0),($420|0),30)|0); + $479 = tempRet0; + $480 = (_bitshift64Lshr(($419|0),($420|0),34)|0); + $481 = tempRet0; + $482 = $478 | $480; + $483 = $479 | $481; + $484 = $476 ^ $482; + $485 = $477 ^ $483; + $486 = (_bitshift64Shl(($419|0),($420|0),25)|0); + $487 = tempRet0; + $488 = (_bitshift64Lshr(($419|0),($420|0),39)|0); + $489 = tempRet0; + $490 = $486 | $488; + $491 = $487 | $489; + $492 = $484 ^ $490; + $493 = $485 ^ $491; + $494 = $419 & $332; + $495 = $420 & $333; + $496 = $419 | $332; + $497 = $420 | $333; + $498 = $496 & $245; + $499 = $497 & $246; + $500 = $498 | $494; + $501 = $499 | $495; + $502 = (_i64Add(($492|0),($493|0),($500|0),($501|0))|0); + $503 = tempRet0; + $504 = (_i64Add(($470|0),($471|0),($203|0),($204|0))|0); + $505 = tempRet0; + $506 = (_i64Add(($502|0),($503|0),($470|0),($471|0))|0); + $507 = tempRet0; + $508 = (_bitshift64Shl(($504|0),($505|0),50)|0); + $509 = tempRet0; + $510 = (_bitshift64Lshr(($504|0),($505|0),14)|0); + $511 = tempRet0; + $512 = $508 | $510; + $513 = $509 | $511; + $514 = (_bitshift64Shl(($504|0),($505|0),46)|0); + $515 = tempRet0; + $516 = (_bitshift64Lshr(($504|0),($505|0),18)|0); + $517 = tempRet0; + $518 = $514 | $516; + $519 = $515 | $517; + $520 = $512 ^ $518; + $521 = $513 ^ $519; + $522 = (_bitshift64Shl(($504|0),($505|0),23)|0); + $523 = tempRet0; + $524 = (_bitshift64Lshr(($504|0),($505|0),41)|0); + $525 = tempRet0; + $526 = $522 | $524; + $527 = $523 | $525; + $528 = $520 ^ $526; + $529 = $521 ^ $527; + $530 = $417 ^ $330; + $531 = $418 ^ $331; + $532 = $504 & $530; + $533 = $505 & $531; + $534 = $532 ^ $330; + $535 = $533 ^ $331; + $536 = $i$29 | 4; + $537 = (31904 + ($536<<3)|0); + $538 = $537; + $539 = $538; + $540 = HEAP32[$539>>2]|0; + $541 = (($538) + 4)|0; + $542 = $541; + $543 = HEAP32[$542>>2]|0; + $544 = (($W) + ($536<<3)|0); + $545 = $544; + $546 = $545; + $547 = HEAP32[$546>>2]|0; + $548 = (($545) + 4)|0; + $549 = $548; + $550 = HEAP32[$549>>2]|0; + $551 = (_i64Add(($540|0),($543|0),($243|0),($244|0))|0); + $552 = tempRet0; + $553 = (_i64Add(($551|0),($552|0),($547|0),($550|0))|0); + $554 = tempRet0; + $555 = (_i64Add(($553|0),($554|0),($534|0),($535|0))|0); + $556 = tempRet0; + $557 = (_i64Add(($555|0),($556|0),($528|0),($529|0))|0); + $558 = tempRet0; + $559 = (_bitshift64Shl(($506|0),($507|0),36)|0); + $560 = tempRet0; + $561 = (_bitshift64Lshr(($506|0),($507|0),28)|0); + $562 = tempRet0; + $563 = $559 | $561; + $564 = $560 | $562; + $565 = (_bitshift64Shl(($506|0),($507|0),30)|0); + $566 = tempRet0; + $567 = (_bitshift64Lshr(($506|0),($507|0),34)|0); + $568 = tempRet0; + $569 = $565 | $567; + $570 = $566 | $568; + $571 = $563 ^ $569; + $572 = $564 ^ $570; + $573 = (_bitshift64Shl(($506|0),($507|0),25)|0); + $574 = tempRet0; + $575 = (_bitshift64Lshr(($506|0),($507|0),39)|0); + $576 = tempRet0; + $577 = $573 | $575; + $578 = $574 | $576; + $579 = $571 ^ $577; + $580 = $572 ^ $578; + $581 = $506 & $419; + $582 = $507 & $420; + $583 = $506 | $419; + $584 = $507 | $420; + $585 = $583 & $332; + $586 = $584 & $333; + $587 = $585 | $581; + $588 = $586 | $582; + $589 = (_i64Add(($579|0),($580|0),($587|0),($588|0))|0); + $590 = tempRet0; + $591 = (_i64Add(($557|0),($558|0),($245|0),($246|0))|0); + $592 = tempRet0; + $593 = (_i64Add(($589|0),($590|0),($557|0),($558|0))|0); + $594 = tempRet0; + $595 = (_bitshift64Shl(($591|0),($592|0),50)|0); + $596 = tempRet0; + $597 = (_bitshift64Lshr(($591|0),($592|0),14)|0); + $598 = tempRet0; + $599 = $595 | $597; + $600 = $596 | $598; + $601 = (_bitshift64Shl(($591|0),($592|0),46)|0); + $602 = tempRet0; + $603 = (_bitshift64Lshr(($591|0),($592|0),18)|0); + $604 = tempRet0; + $605 = $601 | $603; + $606 = $602 | $604; + $607 = $599 ^ $605; + $608 = $600 ^ $606; + $609 = (_bitshift64Shl(($591|0),($592|0),23)|0); + $610 = tempRet0; + $611 = (_bitshift64Lshr(($591|0),($592|0),41)|0); + $612 = tempRet0; + $613 = $609 | $611; + $614 = $610 | $612; + $615 = $607 ^ $613; + $616 = $608 ^ $614; + $617 = $504 ^ $417; + $618 = $505 ^ $418; + $619 = $591 & $617; + $620 = $592 & $618; + $621 = $619 ^ $417; + $622 = $620 ^ $418; + $623 = $i$29 | 5; + $624 = (31904 + ($623<<3)|0); + $625 = $624; + $626 = $625; + $627 = HEAP32[$626>>2]|0; + $628 = (($625) + 4)|0; + $629 = $628; + $630 = HEAP32[$629>>2]|0; + $631 = (($W) + ($623<<3)|0); + $632 = $631; + $633 = $632; + $634 = HEAP32[$633>>2]|0; + $635 = (($632) + 4)|0; + $636 = $635; + $637 = HEAP32[$636>>2]|0; + $638 = (_i64Add(($627|0),($630|0),($330|0),($331|0))|0); + $639 = tempRet0; + $640 = (_i64Add(($638|0),($639|0),($634|0),($637|0))|0); + $641 = tempRet0; + $642 = (_i64Add(($640|0),($641|0),($621|0),($622|0))|0); + $643 = tempRet0; + $644 = (_i64Add(($642|0),($643|0),($615|0),($616|0))|0); + $645 = tempRet0; + $646 = (_bitshift64Shl(($593|0),($594|0),36)|0); + $647 = tempRet0; + $648 = (_bitshift64Lshr(($593|0),($594|0),28)|0); + $649 = tempRet0; + $650 = $646 | $648; + $651 = $647 | $649; + $652 = (_bitshift64Shl(($593|0),($594|0),30)|0); + $653 = tempRet0; + $654 = (_bitshift64Lshr(($593|0),($594|0),34)|0); + $655 = tempRet0; + $656 = $652 | $654; + $657 = $653 | $655; + $658 = $650 ^ $656; + $659 = $651 ^ $657; + $660 = (_bitshift64Shl(($593|0),($594|0),25)|0); + $661 = tempRet0; + $662 = (_bitshift64Lshr(($593|0),($594|0),39)|0); + $663 = tempRet0; + $664 = $660 | $662; + $665 = $661 | $663; + $666 = $658 ^ $664; + $667 = $659 ^ $665; + $668 = $593 & $506; + $669 = $594 & $507; + $670 = $593 | $506; + $671 = $594 | $507; + $672 = $670 & $419; + $673 = $671 & $420; + $674 = $672 | $668; + $675 = $673 | $669; + $676 = (_i64Add(($666|0),($667|0),($674|0),($675|0))|0); + $677 = tempRet0; + $678 = (_i64Add(($644|0),($645|0),($332|0),($333|0))|0); + $679 = tempRet0; + $680 = (_i64Add(($676|0),($677|0),($644|0),($645|0))|0); + $681 = tempRet0; + $682 = (_bitshift64Shl(($678|0),($679|0),50)|0); + $683 = tempRet0; + $684 = (_bitshift64Lshr(($678|0),($679|0),14)|0); + $685 = tempRet0; + $686 = $682 | $684; + $687 = $683 | $685; + $688 = (_bitshift64Shl(($678|0),($679|0),46)|0); + $689 = tempRet0; + $690 = (_bitshift64Lshr(($678|0),($679|0),18)|0); + $691 = tempRet0; + $692 = $688 | $690; + $693 = $689 | $691; + $694 = $686 ^ $692; + $695 = $687 ^ $693; + $696 = (_bitshift64Shl(($678|0),($679|0),23)|0); + $697 = tempRet0; + $698 = (_bitshift64Lshr(($678|0),($679|0),41)|0); + $699 = tempRet0; + $700 = $696 | $698; + $701 = $697 | $699; + $702 = $694 ^ $700; + $703 = $695 ^ $701; + $704 = $591 ^ $504; + $705 = $592 ^ $505; + $706 = $678 & $704; + $707 = $679 & $705; + $708 = $706 ^ $504; + $709 = $707 ^ $505; + $710 = $i$29 | 6; + $711 = (31904 + ($710<<3)|0); + $712 = $711; + $713 = $712; + $714 = HEAP32[$713>>2]|0; + $715 = (($712) + 4)|0; + $716 = $715; + $717 = HEAP32[$716>>2]|0; + $718 = (($W) + ($710<<3)|0); + $719 = $718; + $720 = $719; + $721 = HEAP32[$720>>2]|0; + $722 = (($719) + 4)|0; + $723 = $722; + $724 = HEAP32[$723>>2]|0; + $725 = (_i64Add(($721|0),($724|0),($714|0),($717|0))|0); + $726 = tempRet0; + $727 = (_i64Add(($725|0),($726|0),($417|0),($418|0))|0); + $728 = tempRet0; + $729 = (_i64Add(($727|0),($728|0),($708|0),($709|0))|0); + $730 = tempRet0; + $731 = (_i64Add(($729|0),($730|0),($702|0),($703|0))|0); + $732 = tempRet0; + $733 = (_bitshift64Shl(($680|0),($681|0),36)|0); + $734 = tempRet0; + $735 = (_bitshift64Lshr(($680|0),($681|0),28)|0); + $736 = tempRet0; + $737 = $733 | $735; + $738 = $734 | $736; + $739 = (_bitshift64Shl(($680|0),($681|0),30)|0); + $740 = tempRet0; + $741 = (_bitshift64Lshr(($680|0),($681|0),34)|0); + $742 = tempRet0; + $743 = $739 | $741; + $744 = $740 | $742; + $745 = $737 ^ $743; + $746 = $738 ^ $744; + $747 = (_bitshift64Shl(($680|0),($681|0),25)|0); + $748 = tempRet0; + $749 = (_bitshift64Lshr(($680|0),($681|0),39)|0); + $750 = tempRet0; + $751 = $747 | $749; + $752 = $748 | $750; + $753 = $745 ^ $751; + $754 = $746 ^ $752; + $755 = $680 & $593; + $756 = $681 & $594; + $757 = $680 | $593; + $758 = $681 | $594; + $759 = $757 & $506; + $760 = $758 & $507; + $761 = $759 | $755; + $762 = $760 | $756; + $763 = (_i64Add(($753|0),($754|0),($761|0),($762|0))|0); + $764 = tempRet0; + $765 = (_i64Add(($731|0),($732|0),($419|0),($420|0))|0); + $766 = tempRet0; + $767 = (_i64Add(($763|0),($764|0),($731|0),($732|0))|0); + $768 = tempRet0; + $769 = (_bitshift64Shl(($765|0),($766|0),50)|0); + $770 = tempRet0; + $771 = (_bitshift64Lshr(($765|0),($766|0),14)|0); + $772 = tempRet0; + $773 = $769 | $771; + $774 = $770 | $772; + $775 = (_bitshift64Shl(($765|0),($766|0),46)|0); + $776 = tempRet0; + $777 = (_bitshift64Lshr(($765|0),($766|0),18)|0); + $778 = tempRet0; + $779 = $775 | $777; + $780 = $776 | $778; + $781 = $773 ^ $779; + $782 = $774 ^ $780; + $783 = (_bitshift64Shl(($765|0),($766|0),23)|0); + $784 = tempRet0; + $785 = (_bitshift64Lshr(($765|0),($766|0),41)|0); + $786 = tempRet0; + $787 = $783 | $785; + $788 = $784 | $786; + $789 = $781 ^ $787; + $790 = $782 ^ $788; + $791 = $678 ^ $591; + $792 = $679 ^ $592; + $793 = $765 & $791; + $794 = $766 & $792; + $795 = $793 ^ $591; + $796 = $794 ^ $592; + $797 = $i$29 | 7; + $798 = (31904 + ($797<<3)|0); + $799 = $798; + $800 = $799; + $801 = HEAP32[$800>>2]|0; + $802 = (($799) + 4)|0; + $803 = $802; + $804 = HEAP32[$803>>2]|0; + $805 = (($W) + ($797<<3)|0); + $806 = $805; + $807 = $806; + $808 = HEAP32[$807>>2]|0; + $809 = (($806) + 4)|0; + $810 = $809; + $811 = HEAP32[$810>>2]|0; + $812 = (_i64Add(($808|0),($811|0),($801|0),($804|0))|0); + $813 = tempRet0; + $814 = (_i64Add(($812|0),($813|0),($504|0),($505|0))|0); + $815 = tempRet0; + $816 = (_i64Add(($814|0),($815|0),($795|0),($796|0))|0); + $817 = tempRet0; + $818 = (_i64Add(($816|0),($817|0),($789|0),($790|0))|0); + $819 = tempRet0; + $820 = (_bitshift64Shl(($767|0),($768|0),36)|0); + $821 = tempRet0; + $822 = (_bitshift64Lshr(($767|0),($768|0),28)|0); + $823 = tempRet0; + $824 = $820 | $822; + $825 = $821 | $823; + $826 = (_bitshift64Shl(($767|0),($768|0),30)|0); + $827 = tempRet0; + $828 = (_bitshift64Lshr(($767|0),($768|0),34)|0); + $829 = tempRet0; + $830 = $826 | $828; + $831 = $827 | $829; + $832 = $824 ^ $830; + $833 = $825 ^ $831; + $834 = (_bitshift64Shl(($767|0),($768|0),25)|0); + $835 = tempRet0; + $836 = (_bitshift64Lshr(($767|0),($768|0),39)|0); + $837 = tempRet0; + $838 = $834 | $836; + $839 = $835 | $837; + $840 = $832 ^ $838; + $841 = $833 ^ $839; + $842 = $767 & $680; + $843 = $768 & $681; + $844 = $767 | $680; + $845 = $768 | $681; + $846 = $844 & $593; + $847 = $845 & $594; + $848 = $846 | $842; + $849 = $847 | $843; + $850 = (_i64Add(($840|0),($841|0),($848|0),($849|0))|0); + $851 = tempRet0; + $852 = (_i64Add(($818|0),($819|0),($506|0),($507|0))|0); + $853 = tempRet0; + $854 = (_i64Add(($850|0),($851|0),($818|0),($819|0))|0); + $855 = tempRet0; + $856 = (($i$29) + 8)|0; + $857 = ($856|0)<(80); + if ($857) { + $145 = $852;$146 = $853;$170 = $678;$171 = $765;$173 = $679;$174 = $766;$193 = $591;$194 = $592;$203 = $854;$204 = $855;$228 = $767;$230 = $768;$234 = $680;$236 = $681;$241 = $593;$242 = $594;$i$29 = $856; + } else { + break; + } + } + $858 = $r; + $859 = $858; + $860 = HEAP32[$859>>2]|0; + $861 = (($858) + 4)|0; + $862 = $861; + $863 = HEAP32[$862>>2]|0; + $864 = (_i64Add(($860|0),($863|0),($854|0),($855|0))|0); + $865 = tempRet0; + $866 = $r; + $867 = $866; + HEAP32[$867>>2] = $864; + $868 = (($866) + 4)|0; + $869 = $868; + HEAP32[$869>>2] = $865; + $870 = $96; + $871 = $870; + $872 = HEAP32[$871>>2]|0; + $873 = (($870) + 4)|0; + $874 = $873; + $875 = HEAP32[$874>>2]|0; + $876 = (_i64Add(($872|0),($875|0),($767|0),($768|0))|0); + $877 = tempRet0; + $878 = $96; + $879 = $878; + HEAP32[$879>>2] = $876; + $880 = (($878) + 4)|0; + $881 = $880; + HEAP32[$881>>2] = $877; + $882 = $103; + $883 = $882; + $884 = HEAP32[$883>>2]|0; + $885 = (($882) + 4)|0; + $886 = $885; + $887 = HEAP32[$886>>2]|0; + $888 = (_i64Add(($884|0),($887|0),($680|0),($681|0))|0); + $889 = tempRet0; + $890 = $103; + $891 = $890; + HEAP32[$891>>2] = $888; + $892 = (($890) + 4)|0; + $893 = $892; + HEAP32[$893>>2] = $889; + $894 = $110; + $895 = $894; + $896 = HEAP32[$895>>2]|0; + $897 = (($894) + 4)|0; + $898 = $897; + $899 = HEAP32[$898>>2]|0; + $900 = (_i64Add(($896|0),($899|0),($593|0),($594|0))|0); + $901 = tempRet0; + $902 = $110; + $903 = $902; + HEAP32[$903>>2] = $900; + $904 = (($902) + 4)|0; + $905 = $904; + HEAP32[$905>>2] = $901; + $906 = $117; + $907 = $906; + $908 = HEAP32[$907>>2]|0; + $909 = (($906) + 4)|0; + $910 = $909; + $911 = HEAP32[$910>>2]|0; + $912 = (_i64Add(($908|0),($911|0),($852|0),($853|0))|0); + $913 = tempRet0; + $914 = $117; + $915 = $914; + HEAP32[$915>>2] = $912; + $916 = (($914) + 4)|0; + $917 = $916; + HEAP32[$917>>2] = $913; + $918 = $124; + $919 = $918; + $920 = HEAP32[$919>>2]|0; + $921 = (($918) + 4)|0; + $922 = $921; + $923 = HEAP32[$922>>2]|0; + $924 = (_i64Add(($920|0),($923|0),($765|0),($766|0))|0); + $925 = tempRet0; + $926 = $124; + $927 = $926; + HEAP32[$927>>2] = $924; + $928 = (($926) + 4)|0; + $929 = $928; + HEAP32[$929>>2] = $925; + $930 = $131; + $931 = $930; + $932 = HEAP32[$931>>2]|0; + $933 = (($930) + 4)|0; + $934 = $933; + $935 = HEAP32[$934>>2]|0; + $936 = (_i64Add(($932|0),($935|0),($678|0),($679|0))|0); + $937 = tempRet0; + $938 = $131; + $939 = $938; + HEAP32[$939>>2] = $936; + $940 = (($938) + 4)|0; + $941 = $940; + HEAP32[$941>>2] = $937; + $942 = $138; + $943 = $942; + $944 = HEAP32[$943>>2]|0; + $945 = (($942) + 4)|0; + $946 = $945; + $947 = HEAP32[$946>>2]|0; + $948 = (_i64Add(($944|0),($947|0),($591|0),($592|0))|0); + $949 = tempRet0; + $950 = $138; + $951 = $950; + HEAP32[$951>>2] = $948; + $952 = (($950) + 4)|0; + $953 = $952; + HEAP32[$953>>2] = $949; + STACKTOP = sp;return; +} +function _sha384_close($cc,$dst,$rnum) { + $cc = $cc|0; + $dst = $dst|0; + $rnum = $rnum|0; + var label = 0, sp = 0; + sp = STACKTOP; + _sha384_addbits_and_close($cc,0,0,$dst,$rnum); + STACKTOP = sp;return; +} +function _sha384_addbits_and_close($cc,$ub,$n,$dst,$rnum) { + $cc = $cc|0; + $ub = $ub|0; + $n = $n|0; + $dst = $dst|0; + $rnum = $rnum|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $exitcond = 0, $u$01 = 0, dest = 0, label = 0, sp = 0, stop = 0; + sp = STACKTOP; + $0 = (($cc) + 192|0); + $1 = $0; + $2 = $1; + $3 = HEAP32[$2>>2]|0; + $4 = (($1) + 4)|0; + $5 = $4; + $6 = HEAP32[$5>>2]|0; + $7 = $3 & 127; + $8 = 128 >>> $n; + $9 = (0 - ($8))|0; + $10 = $9 & $ub; + $11 = $10 | $8; + $12 = $11&255; + $13 = (($7) + 1)|0; + $14 = (($cc) + ($7)|0); + HEAP8[$14>>0] = $12; + $15 = ($13>>>0)>(112); + $16 = (($cc) + ($13)|0); + if ($15) { + $17 = $7 ^ 127; + _memset(($16|0),0,($17|0))|0; + $18 = (($cc) + 128|0); + _sha3_round($cc,$18); + dest=$cc+0|0; stop=dest+112|0; do { HEAP8[dest>>0]=0|0; dest=dest+1|0; } while ((dest|0) < (stop|0)); + } else { + $19 = (111 - ($7))|0; + _memset(($16|0),0,($19|0))|0; + } + $20 = (($cc) + 112|0); + $21 = $0; + $22 = $21; + $23 = HEAP32[$22>>2]|0; + $24 = (($21) + 4)|0; + $25 = $24; + $26 = HEAP32[$25>>2]|0; + $27 = (_bitshift64Lshr(($23|0),($26|0),61)|0); + $28 = tempRet0; + _sph_enc64be_aligned($20,$27,$28); + $29 = (($cc) + 120|0); + $30 = $0; + $31 = $30; + $32 = HEAP32[$31>>2]|0; + $33 = (($30) + 4)|0; + $34 = $33; + $35 = HEAP32[$34>>2]|0; + $36 = (_bitshift64Shl(($32|0),($35|0),3)|0); + $37 = tempRet0; + $38 = (_i64Add(($36|0),($37|0),($n|0),0)|0); + $39 = tempRet0; + _sph_enc64be_aligned($29,$38,$39); + $40 = (($cc) + 128|0); + _sha3_round($cc,$40); + $41 = ($rnum|0)==(0); + if ($41) { + STACKTOP = sp;return; + } else { + $u$01 = 0; + } + while(1) { + $42 = $u$01 << 3; + $43 = (($dst) + ($42)|0); + $44 = (($40) + ($u$01<<3)|0); + $45 = $44; + $46 = $45; + $47 = HEAP32[$46>>2]|0; + $48 = (($45) + 4)|0; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + _sph_enc64be($43,$47,$50); + $51 = (($u$01) + 1)|0; + $exitcond = ($51|0)==($rnum|0); + if ($exitcond) { + break; + } else { + $u$01 = $51; + } + } + STACKTOP = sp;return; +} +function _sph_dec64be_aligned($src) { + $src = $src|0; + var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = HEAP8[$src>>0]|0; + $1 = $0&255; + $2 = (_bitshift64Shl(($1|0),0,56)|0); + $3 = tempRet0; + $4 = (($src) + 1|0); + $5 = HEAP8[$4>>0]|0; + $6 = $5&255; + $7 = (_bitshift64Shl(($6|0),0,48)|0); + $8 = tempRet0; + $9 = $7 | $2; + $10 = $8 | $3; + $11 = (($src) + 2|0); + $12 = HEAP8[$11>>0]|0; + $13 = $12&255; + $14 = (_bitshift64Shl(($13|0),0,40)|0); + $15 = tempRet0; + $16 = $9 | $14; + $17 = $10 | $15; + $18 = (($src) + 3|0); + $19 = HEAP8[$18>>0]|0; + $20 = $19&255; + $21 = $17 | $20; + $22 = (($src) + 4|0); + $23 = HEAP8[$22>>0]|0; + $24 = $23&255; + $25 = (_bitshift64Shl(($24|0),0,24)|0); + $26 = tempRet0; + $27 = $16 | $25; + $28 = $21 | $26; + $29 = (($src) + 5|0); + $30 = HEAP8[$29>>0]|0; + $31 = $30&255; + $32 = (_bitshift64Shl(($31|0),0,16)|0); + $33 = tempRet0; + $34 = $27 | $32; + $35 = $28 | $33; + $36 = (($src) + 6|0); + $37 = HEAP8[$36>>0]|0; + $38 = $37&255; + $39 = (_bitshift64Shl(($38|0),0,8)|0); + $40 = tempRet0; + $41 = $34 | $39; + $42 = $35 | $40; + $43 = (($src) + 7|0); + $44 = HEAP8[$43>>0]|0; + $45 = $44&255; + $46 = $41 | $45; + tempRet0 = $42; + STACKTOP = sp;return ($46|0); +} +function _sph_enc64be_aligned($dst,$0,$1) { + $dst = $dst|0; + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = (_bitshift64Lshr(($0|0),($1|0),56)|0); + $3 = tempRet0; + $4 = $2&255; + HEAP8[$dst>>0] = $4; + $5 = (_bitshift64Lshr(($0|0),($1|0),48)|0); + $6 = tempRet0; + $7 = $5&255; + $8 = (($dst) + 1|0); + HEAP8[$8>>0] = $7; + $9 = (_bitshift64Lshr(($0|0),($1|0),40)|0); + $10 = tempRet0; + $11 = $9&255; + $12 = (($dst) + 2|0); + HEAP8[$12>>0] = $11; + $13 = $1&255; + $14 = (($dst) + 3|0); + HEAP8[$14>>0] = $13; + $15 = (_bitshift64Lshr(($0|0),($1|0),24)|0); + $16 = tempRet0; + $17 = $15&255; + $18 = (($dst) + 4|0); + HEAP8[$18>>0] = $17; + $19 = (_bitshift64Lshr(($0|0),($1|0),16)|0); + $20 = tempRet0; + $21 = $19&255; + $22 = (($dst) + 5|0); + HEAP8[$22>>0] = $21; + $23 = (_bitshift64Lshr(($0|0),($1|0),8)|0); + $24 = tempRet0; + $25 = $23&255; + $26 = (($dst) + 6|0); + HEAP8[$26>>0] = $25; + $27 = $0&255; + $28 = (($dst) + 7|0); + HEAP8[$28>>0] = $27; + STACKTOP = sp;return; +} +function _sph_enc64be($dst,$0,$1) { + $dst = $dst|0; + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = (_bitshift64Lshr(($0|0),($1|0),56)|0); + $3 = tempRet0; + $4 = $2&255; + HEAP8[$dst>>0] = $4; + $5 = (_bitshift64Lshr(($0|0),($1|0),48)|0); + $6 = tempRet0; + $7 = $5&255; + $8 = (($dst) + 1|0); + HEAP8[$8>>0] = $7; + $9 = (_bitshift64Lshr(($0|0),($1|0),40)|0); + $10 = tempRet0; + $11 = $9&255; + $12 = (($dst) + 2|0); + HEAP8[$12>>0] = $11; + $13 = $1&255; + $14 = (($dst) + 3|0); + HEAP8[$14>>0] = $13; + $15 = (_bitshift64Lshr(($0|0),($1|0),24)|0); + $16 = tempRet0; + $17 = $15&255; + $18 = (($dst) + 4|0); + HEAP8[$18>>0] = $17; + $19 = (_bitshift64Lshr(($0|0),($1|0),16)|0); + $20 = tempRet0; + $21 = $19&255; + $22 = (($dst) + 5|0); + HEAP8[$22>>0] = $21; + $23 = (_bitshift64Lshr(($0|0),($1|0),8)|0); + $24 = tempRet0; + $25 = $23&255; + $26 = (($dst) + 6|0); + HEAP8[$26>>0] = $25; + $27 = $0&255; + $28 = (($dst) + 7|0); + HEAP8[$28>>0] = $27; + STACKTOP = sp;return; +} +function _malloc($bytes) { + $bytes = $bytes|0; + var $$pre = 0, $$pre$i = 0, $$pre$i$i = 0, $$pre$i23$i = 0, $$pre$i25 = 0, $$pre$phi$i$iZ2D = 0, $$pre$phi$i24$iZ2D = 0, $$pre$phi$i26Z2D = 0, $$pre$phi$iZ2D = 0, $$pre$phi59$i$iZ2D = 0, $$pre$phiZ2D = 0, $$pre105 = 0, $$pre58$i$i = 0, $$rsize$0$i = 0, $$rsize$3$i = 0, $$sum = 0, $$sum$i$i = 0, $$sum$i$i$i = 0, $$sum$i12$i = 0, $$sum$i13$i = 0; + var $$sum$i16$i = 0, $$sum$i19$i = 0, $$sum$i2338 = 0, $$sum$i32 = 0, $$sum$i39 = 0, $$sum1 = 0, $$sum1$i = 0, $$sum1$i$i = 0, $$sum1$i14$i = 0, $$sum1$i20$i = 0, $$sum1$i24 = 0, $$sum10 = 0, $$sum10$i = 0, $$sum10$i$i = 0, $$sum10$pre$i$i = 0, $$sum102$i = 0, $$sum103$i = 0, $$sum104$i = 0, $$sum105$i = 0, $$sum106$i = 0; + var $$sum107$i = 0, $$sum108$i = 0, $$sum109$i = 0, $$sum11$i = 0, $$sum11$i$i = 0, $$sum11$i22$i = 0, $$sum110$i = 0, $$sum111$i = 0, $$sum1112 = 0, $$sum112$i = 0, $$sum113$i = 0, $$sum114$i = 0, $$sum115$i = 0, $$sum12$i = 0, $$sum12$i$i = 0, $$sum13$i = 0, $$sum13$i$i = 0, $$sum14$i$i = 0, $$sum14$pre$i = 0, $$sum15$i = 0; + var $$sum15$i$i = 0, $$sum16$i = 0, $$sum16$i$i = 0, $$sum17$i = 0, $$sum17$i$i = 0, $$sum18$i = 0, $$sum1819$i$i = 0, $$sum2 = 0, $$sum2$i = 0, $$sum2$i$i = 0, $$sum2$i$i$i = 0, $$sum2$i15$i = 0, $$sum2$i17$i = 0, $$sum2$i21$i = 0, $$sum2$pre$i = 0, $$sum20$i$i = 0, $$sum21$i$i = 0, $$sum22$i$i = 0, $$sum23$i$i = 0, $$sum24$i$i = 0; + var $$sum25$i$i = 0, $$sum26$pre$i$i = 0, $$sum27$i$i = 0, $$sum28$i$i = 0, $$sum29$i$i = 0, $$sum3$i = 0, $$sum3$i$i = 0, $$sum3$i27 = 0, $$sum30$i$i = 0, $$sum3132$i$i = 0, $$sum34$i$i = 0, $$sum3536$i$i = 0, $$sum3738$i$i = 0, $$sum39$i$i = 0, $$sum4 = 0, $$sum4$i = 0, $$sum4$i28 = 0, $$sum40$i$i = 0, $$sum41$i$i = 0, $$sum42$i$i = 0; + var $$sum5$i = 0, $$sum5$i$i = 0, $$sum56 = 0, $$sum6$i = 0, $$sum67$i$i = 0, $$sum7$i = 0, $$sum8$i = 0, $$sum8$pre = 0, $$sum9 = 0, $$sum9$i = 0, $$sum9$i$i = 0, $$tsize$1$i = 0, $$v$0$i = 0, $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0; + var $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0; + var $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0; + var $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0; + var $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0, $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $108 = 0; + var $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0; + var $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0; + var $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0; + var $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0; + var $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0; + var $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0; + var $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0; + var $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0; + var $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0; + var $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0; + var $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0; + var $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0; + var $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0; + var $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0; + var $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0; + var $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0; + var $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0; + var $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0; + var $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0; + var $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0; + var $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0; + var $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0; + var $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0; + var $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0; + var $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0; + var $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0; + var $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0; + var $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0; + var $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0; + var $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0; + var $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0; + var $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0; + var $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0; + var $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0; + var $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0; + var $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0; + var $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0; + var $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0; + var $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0; + var $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0; + var $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0; + var $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0; + var $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0; + var $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0; + var $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0; + var $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0; + var $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0; + var $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0; + var $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0; + var $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, $F$0$i$i = 0, $F1$0$i = 0, $F4$0 = 0, $F4$0$i$i = 0, $F5$0$i = 0, $I1$0$c$i$i = 0, $I1$0$i$i = 0, $I7$0$i = 0, $I7$0$i$i = 0, $K12$027$i = 0, $K2$015$i$i = 0, $K8$053$i$i = 0; + var $R$0$i = 0, $R$0$i$i = 0, $R$0$i18 = 0, $R$1$i = 0, $R$1$i$i = 0, $R$1$i20 = 0, $RP$0$i = 0, $RP$0$i$i = 0, $RP$0$i17 = 0, $T$0$lcssa$i = 0, $T$0$lcssa$i$i = 0, $T$0$lcssa$i26$i = 0, $T$014$i$i = 0, $T$026$i = 0, $T$052$i$i = 0, $br$0$i = 0, $br$030$i = 0, $cond$i = 0, $cond$i$i = 0, $cond$i21 = 0; + var $exitcond$i$i = 0, $i$02$i$i = 0, $idx$0$i = 0, $mem$0 = 0, $nb$0 = 0, $oldfirst$0$i$i = 0, $or$cond$i = 0, $or$cond$i$i = 0, $or$cond$i27$i = 0, $or$cond$i29 = 0, $or$cond1$i = 0, $or$cond19$i = 0, $or$cond2$i = 0, $or$cond24$i = 0, $or$cond3$i = 0, $or$cond4$i = 0, $or$cond47$i = 0, $or$cond5$i = 0, $or$cond6$i = 0, $or$cond8$i = 0; + var $qsize$0$i$i = 0, $rsize$0$i = 0, $rsize$0$i15 = 0, $rsize$1$i = 0, $rsize$2$i = 0, $rsize$3$lcssa$i = 0, $rsize$331$i = 0, $rst$0$i = 0, $rst$1$i = 0, $sizebits$0$i = 0, $sp$0$i$i = 0, $sp$0$i$i$i = 0, $sp$073$i = 0, $sp$166$i = 0, $ssize$0$i = 0, $ssize$1$i = 0, $ssize$129$i = 0, $ssize$2$i = 0, $t$0$i = 0, $t$0$i14 = 0; + var $t$1$i = 0, $t$2$ph$i = 0, $t$2$v$3$i = 0, $t$230$i = 0, $tbase$245$i = 0, $tsize$03141$i = 0, $tsize$1$i = 0, $tsize$244$i = 0, $v$0$i = 0, $v$0$i16 = 0, $v$1$i = 0, $v$2$i = 0, $v$3$lcssa$i = 0, $v$332$i = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = ($bytes>>>0)<(245); + do { + if ($0) { + $1 = ($bytes>>>0)<(11); + if ($1) { + $5 = 16; + } else { + $2 = (($bytes) + 11)|0; + $3 = $2 & -8; + $5 = $3; + } + $4 = $5 >>> 3; + $6 = HEAP32[32544>>2]|0; + $7 = $6 >>> $4; + $8 = $7 & 3; + $9 = ($8|0)==(0); + if (!($9)) { + $10 = $7 & 1; + $11 = $10 ^ 1; + $12 = (($11) + ($4))|0; + $13 = $12 << 1; + $14 = ((32544 + ($13<<2)|0) + 40|0); + $$sum10 = (($13) + 2)|0; + $15 = ((32544 + ($$sum10<<2)|0) + 40|0); + $16 = HEAP32[$15>>2]|0; + $17 = (($16) + 8|0); + $18 = HEAP32[$17>>2]|0; + $19 = ($14|0)==($18|0); + do { + if ($19) { + $20 = 1 << $12; + $21 = $20 ^ -1; + $22 = $6 & $21; + HEAP32[32544>>2] = $22; + } else { + $23 = HEAP32[((32544 + 16|0))>>2]|0; + $24 = ($18>>>0)<($23>>>0); + if ($24) { + _abort(); + // unreachable; + } + $25 = (($18) + 12|0); + $26 = HEAP32[$25>>2]|0; + $27 = ($26|0)==($16|0); + if ($27) { + HEAP32[$25>>2] = $14; + HEAP32[$15>>2] = $18; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $28 = $12 << 3; + $29 = $28 | 3; + $30 = (($16) + 4|0); + HEAP32[$30>>2] = $29; + $$sum1112 = $28 | 4; + $31 = (($16) + ($$sum1112)|0); + $32 = HEAP32[$31>>2]|0; + $33 = $32 | 1; + HEAP32[$31>>2] = $33; + $mem$0 = $17; + STACKTOP = sp;return ($mem$0|0); + } + $34 = HEAP32[((32544 + 8|0))>>2]|0; + $35 = ($5>>>0)>($34>>>0); + if ($35) { + $36 = ($7|0)==(0); + if (!($36)) { + $37 = $7 << $4; + $38 = 2 << $4; + $39 = (0 - ($38))|0; + $40 = $38 | $39; + $41 = $37 & $40; + $42 = (0 - ($41))|0; + $43 = $41 & $42; + $44 = (($43) + -1)|0; + $45 = $44 >>> 12; + $46 = $45 & 16; + $47 = $44 >>> $46; + $48 = $47 >>> 5; + $49 = $48 & 8; + $50 = $49 | $46; + $51 = $47 >>> $49; + $52 = $51 >>> 2; + $53 = $52 & 4; + $54 = $50 | $53; + $55 = $51 >>> $53; + $56 = $55 >>> 1; + $57 = $56 & 2; + $58 = $54 | $57; + $59 = $55 >>> $57; + $60 = $59 >>> 1; + $61 = $60 & 1; + $62 = $58 | $61; + $63 = $59 >>> $61; + $64 = (($62) + ($63))|0; + $65 = $64 << 1; + $66 = ((32544 + ($65<<2)|0) + 40|0); + $$sum4 = (($65) + 2)|0; + $67 = ((32544 + ($$sum4<<2)|0) + 40|0); + $68 = HEAP32[$67>>2]|0; + $69 = (($68) + 8|0); + $70 = HEAP32[$69>>2]|0; + $71 = ($66|0)==($70|0); + do { + if ($71) { + $72 = 1 << $64; + $73 = $72 ^ -1; + $74 = $6 & $73; + HEAP32[32544>>2] = $74; + $88 = $34; + } else { + $75 = HEAP32[((32544 + 16|0))>>2]|0; + $76 = ($70>>>0)<($75>>>0); + if ($76) { + _abort(); + // unreachable; + } + $77 = (($70) + 12|0); + $78 = HEAP32[$77>>2]|0; + $79 = ($78|0)==($68|0); + if ($79) { + HEAP32[$77>>2] = $66; + HEAP32[$67>>2] = $70; + $$pre = HEAP32[((32544 + 8|0))>>2]|0; + $88 = $$pre; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $80 = $64 << 3; + $81 = (($80) - ($5))|0; + $82 = $5 | 3; + $83 = (($68) + 4|0); + HEAP32[$83>>2] = $82; + $84 = (($68) + ($5)|0); + $85 = $81 | 1; + $$sum56 = $5 | 4; + $86 = (($68) + ($$sum56)|0); + HEAP32[$86>>2] = $85; + $87 = (($68) + ($80)|0); + HEAP32[$87>>2] = $81; + $89 = ($88|0)==(0); + if (!($89)) { + $90 = HEAP32[((32544 + 20|0))>>2]|0; + $91 = $88 >>> 3; + $92 = $91 << 1; + $93 = ((32544 + ($92<<2)|0) + 40|0); + $94 = HEAP32[32544>>2]|0; + $95 = 1 << $91; + $96 = $94 & $95; + $97 = ($96|0)==(0); + if ($97) { + $98 = $94 | $95; + HEAP32[32544>>2] = $98; + $$sum8$pre = (($92) + 2)|0; + $$pre105 = ((32544 + ($$sum8$pre<<2)|0) + 40|0); + $$pre$phiZ2D = $$pre105;$F4$0 = $93; + } else { + $$sum9 = (($92) + 2)|0; + $99 = ((32544 + ($$sum9<<2)|0) + 40|0); + $100 = HEAP32[$99>>2]|0; + $101 = HEAP32[((32544 + 16|0))>>2]|0; + $102 = ($100>>>0)<($101>>>0); + if ($102) { + _abort(); + // unreachable; + } else { + $$pre$phiZ2D = $99;$F4$0 = $100; + } + } + HEAP32[$$pre$phiZ2D>>2] = $90; + $103 = (($F4$0) + 12|0); + HEAP32[$103>>2] = $90; + $104 = (($90) + 8|0); + HEAP32[$104>>2] = $F4$0; + $105 = (($90) + 12|0); + HEAP32[$105>>2] = $93; + } + HEAP32[((32544 + 8|0))>>2] = $81; + HEAP32[((32544 + 20|0))>>2] = $84; + $mem$0 = $69; + STACKTOP = sp;return ($mem$0|0); + } + $106 = HEAP32[((32544 + 4|0))>>2]|0; + $107 = ($106|0)==(0); + if ($107) { + $nb$0 = $5; + } else { + $108 = (0 - ($106))|0; + $109 = $106 & $108; + $110 = (($109) + -1)|0; + $111 = $110 >>> 12; + $112 = $111 & 16; + $113 = $110 >>> $112; + $114 = $113 >>> 5; + $115 = $114 & 8; + $116 = $115 | $112; + $117 = $113 >>> $115; + $118 = $117 >>> 2; + $119 = $118 & 4; + $120 = $116 | $119; + $121 = $117 >>> $119; + $122 = $121 >>> 1; + $123 = $122 & 2; + $124 = $120 | $123; + $125 = $121 >>> $123; + $126 = $125 >>> 1; + $127 = $126 & 1; + $128 = $124 | $127; + $129 = $125 >>> $127; + $130 = (($128) + ($129))|0; + $131 = ((32544 + ($130<<2)|0) + 304|0); + $132 = HEAP32[$131>>2]|0; + $133 = (($132) + 4|0); + $134 = HEAP32[$133>>2]|0; + $135 = $134 & -8; + $136 = (($135) - ($5))|0; + $rsize$0$i = $136;$t$0$i = $132;$v$0$i = $132; + while(1) { + $137 = (($t$0$i) + 16|0); + $138 = HEAP32[$137>>2]|0; + $139 = ($138|0)==(0|0); + if ($139) { + $140 = (($t$0$i) + 20|0); + $141 = HEAP32[$140>>2]|0; + $142 = ($141|0)==(0|0); + if ($142) { + break; + } else { + $144 = $141; + } + } else { + $144 = $138; + } + $143 = (($144) + 4|0); + $145 = HEAP32[$143>>2]|0; + $146 = $145 & -8; + $147 = (($146) - ($5))|0; + $148 = ($147>>>0)<($rsize$0$i>>>0); + $$rsize$0$i = $148 ? $147 : $rsize$0$i; + $$v$0$i = $148 ? $144 : $v$0$i; + $rsize$0$i = $$rsize$0$i;$t$0$i = $144;$v$0$i = $$v$0$i; + } + $149 = HEAP32[((32544 + 16|0))>>2]|0; + $150 = ($v$0$i>>>0)<($149>>>0); + if ($150) { + _abort(); + // unreachable; + } + $151 = (($v$0$i) + ($5)|0); + $152 = ($v$0$i>>>0)<($151>>>0); + if (!($152)) { + _abort(); + // unreachable; + } + $153 = (($v$0$i) + 24|0); + $154 = HEAP32[$153>>2]|0; + $155 = (($v$0$i) + 12|0); + $156 = HEAP32[$155>>2]|0; + $157 = ($156|0)==($v$0$i|0); + do { + if ($157) { + $167 = (($v$0$i) + 20|0); + $168 = HEAP32[$167>>2]|0; + $169 = ($168|0)==(0|0); + if ($169) { + $170 = (($v$0$i) + 16|0); + $171 = HEAP32[$170>>2]|0; + $172 = ($171|0)==(0|0); + if ($172) { + $R$1$i = 0; + break; + } else { + $R$0$i = $171;$RP$0$i = $170; + } + } else { + $R$0$i = $168;$RP$0$i = $167; + } + while(1) { + $173 = (($R$0$i) + 20|0); + $174 = HEAP32[$173>>2]|0; + $175 = ($174|0)==(0|0); + if (!($175)) { + $R$0$i = $174;$RP$0$i = $173; + continue; + } + $176 = (($R$0$i) + 16|0); + $177 = HEAP32[$176>>2]|0; + $178 = ($177|0)==(0|0); + if ($178) { + break; + } else { + $R$0$i = $177;$RP$0$i = $176; + } + } + $179 = ($RP$0$i>>>0)<($149>>>0); + if ($179) { + _abort(); + // unreachable; + } else { + HEAP32[$RP$0$i>>2] = 0; + $R$1$i = $R$0$i; + break; + } + } else { + $158 = (($v$0$i) + 8|0); + $159 = HEAP32[$158>>2]|0; + $160 = ($159>>>0)<($149>>>0); + if ($160) { + _abort(); + // unreachable; + } + $161 = (($159) + 12|0); + $162 = HEAP32[$161>>2]|0; + $163 = ($162|0)==($v$0$i|0); + if (!($163)) { + _abort(); + // unreachable; + } + $164 = (($156) + 8|0); + $165 = HEAP32[$164>>2]|0; + $166 = ($165|0)==($v$0$i|0); + if ($166) { + HEAP32[$161>>2] = $156; + HEAP32[$164>>2] = $159; + $R$1$i = $156; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $180 = ($154|0)==(0|0); + do { + if (!($180)) { + $181 = (($v$0$i) + 28|0); + $182 = HEAP32[$181>>2]|0; + $183 = ((32544 + ($182<<2)|0) + 304|0); + $184 = HEAP32[$183>>2]|0; + $185 = ($v$0$i|0)==($184|0); + if ($185) { + HEAP32[$183>>2] = $R$1$i; + $cond$i = ($R$1$i|0)==(0|0); + if ($cond$i) { + $186 = 1 << $182; + $187 = $186 ^ -1; + $188 = HEAP32[((32544 + 4|0))>>2]|0; + $189 = $188 & $187; + HEAP32[((32544 + 4|0))>>2] = $189; + break; + } + } else { + $190 = HEAP32[((32544 + 16|0))>>2]|0; + $191 = ($154>>>0)<($190>>>0); + if ($191) { + _abort(); + // unreachable; + } + $192 = (($154) + 16|0); + $193 = HEAP32[$192>>2]|0; + $194 = ($193|0)==($v$0$i|0); + if ($194) { + HEAP32[$192>>2] = $R$1$i; + } else { + $195 = (($154) + 20|0); + HEAP32[$195>>2] = $R$1$i; + } + $196 = ($R$1$i|0)==(0|0); + if ($196) { + break; + } + } + $197 = HEAP32[((32544 + 16|0))>>2]|0; + $198 = ($R$1$i>>>0)<($197>>>0); + if ($198) { + _abort(); + // unreachable; + } + $199 = (($R$1$i) + 24|0); + HEAP32[$199>>2] = $154; + $200 = (($v$0$i) + 16|0); + $201 = HEAP32[$200>>2]|0; + $202 = ($201|0)==(0|0); + do { + if (!($202)) { + $203 = ($201>>>0)<($197>>>0); + if ($203) { + _abort(); + // unreachable; + } else { + $204 = (($R$1$i) + 16|0); + HEAP32[$204>>2] = $201; + $205 = (($201) + 24|0); + HEAP32[$205>>2] = $R$1$i; + break; + } + } + } while(0); + $206 = (($v$0$i) + 20|0); + $207 = HEAP32[$206>>2]|0; + $208 = ($207|0)==(0|0); + if (!($208)) { + $209 = HEAP32[((32544 + 16|0))>>2]|0; + $210 = ($207>>>0)<($209>>>0); + if ($210) { + _abort(); + // unreachable; + } else { + $211 = (($R$1$i) + 20|0); + HEAP32[$211>>2] = $207; + $212 = (($207) + 24|0); + HEAP32[$212>>2] = $R$1$i; + break; + } + } + } + } while(0); + $213 = ($rsize$0$i>>>0)<(16); + if ($213) { + $214 = (($rsize$0$i) + ($5))|0; + $215 = $214 | 3; + $216 = (($v$0$i) + 4|0); + HEAP32[$216>>2] = $215; + $$sum4$i = (($214) + 4)|0; + $217 = (($v$0$i) + ($$sum4$i)|0); + $218 = HEAP32[$217>>2]|0; + $219 = $218 | 1; + HEAP32[$217>>2] = $219; + } else { + $220 = $5 | 3; + $221 = (($v$0$i) + 4|0); + HEAP32[$221>>2] = $220; + $222 = $rsize$0$i | 1; + $$sum$i39 = $5 | 4; + $223 = (($v$0$i) + ($$sum$i39)|0); + HEAP32[$223>>2] = $222; + $$sum1$i = (($rsize$0$i) + ($5))|0; + $224 = (($v$0$i) + ($$sum1$i)|0); + HEAP32[$224>>2] = $rsize$0$i; + $225 = HEAP32[((32544 + 8|0))>>2]|0; + $226 = ($225|0)==(0); + if (!($226)) { + $227 = HEAP32[((32544 + 20|0))>>2]|0; + $228 = $225 >>> 3; + $229 = $228 << 1; + $230 = ((32544 + ($229<<2)|0) + 40|0); + $231 = HEAP32[32544>>2]|0; + $232 = 1 << $228; + $233 = $231 & $232; + $234 = ($233|0)==(0); + if ($234) { + $235 = $231 | $232; + HEAP32[32544>>2] = $235; + $$sum2$pre$i = (($229) + 2)|0; + $$pre$i = ((32544 + ($$sum2$pre$i<<2)|0) + 40|0); + $$pre$phi$iZ2D = $$pre$i;$F1$0$i = $230; + } else { + $$sum3$i = (($229) + 2)|0; + $236 = ((32544 + ($$sum3$i<<2)|0) + 40|0); + $237 = HEAP32[$236>>2]|0; + $238 = HEAP32[((32544 + 16|0))>>2]|0; + $239 = ($237>>>0)<($238>>>0); + if ($239) { + _abort(); + // unreachable; + } else { + $$pre$phi$iZ2D = $236;$F1$0$i = $237; + } + } + HEAP32[$$pre$phi$iZ2D>>2] = $227; + $240 = (($F1$0$i) + 12|0); + HEAP32[$240>>2] = $227; + $241 = (($227) + 8|0); + HEAP32[$241>>2] = $F1$0$i; + $242 = (($227) + 12|0); + HEAP32[$242>>2] = $230; + } + HEAP32[((32544 + 8|0))>>2] = $rsize$0$i; + HEAP32[((32544 + 20|0))>>2] = $151; + } + $243 = (($v$0$i) + 8|0); + $mem$0 = $243; + STACKTOP = sp;return ($mem$0|0); + } + } else { + $nb$0 = $5; + } + } else { + $244 = ($bytes>>>0)>(4294967231); + if ($244) { + $nb$0 = -1; + } else { + $245 = (($bytes) + 11)|0; + $246 = $245 & -8; + $247 = HEAP32[((32544 + 4|0))>>2]|0; + $248 = ($247|0)==(0); + if ($248) { + $nb$0 = $246; + } else { + $249 = (0 - ($246))|0; + $250 = $245 >>> 8; + $251 = ($250|0)==(0); + if ($251) { + $idx$0$i = 0; + } else { + $252 = ($246>>>0)>(16777215); + if ($252) { + $idx$0$i = 31; + } else { + $253 = (($250) + 1048320)|0; + $254 = $253 >>> 16; + $255 = $254 & 8; + $256 = $250 << $255; + $257 = (($256) + 520192)|0; + $258 = $257 >>> 16; + $259 = $258 & 4; + $260 = $259 | $255; + $261 = $256 << $259; + $262 = (($261) + 245760)|0; + $263 = $262 >>> 16; + $264 = $263 & 2; + $265 = $260 | $264; + $266 = (14 - ($265))|0; + $267 = $261 << $264; + $268 = $267 >>> 15; + $269 = (($266) + ($268))|0; + $270 = $269 << 1; + $271 = (($269) + 7)|0; + $272 = $246 >>> $271; + $273 = $272 & 1; + $274 = $273 | $270; + $idx$0$i = $274; + } + } + $275 = ((32544 + ($idx$0$i<<2)|0) + 304|0); + $276 = HEAP32[$275>>2]|0; + $277 = ($276|0)==(0|0); + L126: do { + if ($277) { + $rsize$2$i = $249;$t$1$i = 0;$v$2$i = 0; + } else { + $278 = ($idx$0$i|0)==(31); + if ($278) { + $282 = 0; + } else { + $279 = $idx$0$i >>> 1; + $280 = (25 - ($279))|0; + $282 = $280; + } + $281 = $246 << $282; + $rsize$0$i15 = $249;$rst$0$i = 0;$sizebits$0$i = $281;$t$0$i14 = $276;$v$0$i16 = 0; + while(1) { + $283 = (($t$0$i14) + 4|0); + $284 = HEAP32[$283>>2]|0; + $285 = $284 & -8; + $286 = (($285) - ($246))|0; + $287 = ($286>>>0)<($rsize$0$i15>>>0); + if ($287) { + $288 = ($285|0)==($246|0); + if ($288) { + $rsize$2$i = $286;$t$1$i = $t$0$i14;$v$2$i = $t$0$i14; + break L126; + } else { + $rsize$1$i = $286;$v$1$i = $t$0$i14; + } + } else { + $rsize$1$i = $rsize$0$i15;$v$1$i = $v$0$i16; + } + $289 = (($t$0$i14) + 20|0); + $290 = HEAP32[$289>>2]|0; + $291 = $sizebits$0$i >>> 31; + $292 = ((($t$0$i14) + ($291<<2)|0) + 16|0); + $293 = HEAP32[$292>>2]|0; + $294 = ($290|0)==(0|0); + $295 = ($290|0)==($293|0); + $or$cond19$i = $294 | $295; + $rst$1$i = $or$cond19$i ? $rst$0$i : $290; + $296 = ($293|0)==(0|0); + $297 = $sizebits$0$i << 1; + if ($296) { + $rsize$2$i = $rsize$1$i;$t$1$i = $rst$1$i;$v$2$i = $v$1$i; + break; + } else { + $rsize$0$i15 = $rsize$1$i;$rst$0$i = $rst$1$i;$sizebits$0$i = $297;$t$0$i14 = $293;$v$0$i16 = $v$1$i; + } + } + } + } while(0); + $298 = ($t$1$i|0)==(0|0); + $299 = ($v$2$i|0)==(0|0); + $or$cond$i = $298 & $299; + if ($or$cond$i) { + $300 = 2 << $idx$0$i; + $301 = (0 - ($300))|0; + $302 = $300 | $301; + $303 = $247 & $302; + $304 = ($303|0)==(0); + if ($304) { + $nb$0 = $246; + break; + } + $305 = (0 - ($303))|0; + $306 = $303 & $305; + $307 = (($306) + -1)|0; + $308 = $307 >>> 12; + $309 = $308 & 16; + $310 = $307 >>> $309; + $311 = $310 >>> 5; + $312 = $311 & 8; + $313 = $312 | $309; + $314 = $310 >>> $312; + $315 = $314 >>> 2; + $316 = $315 & 4; + $317 = $313 | $316; + $318 = $314 >>> $316; + $319 = $318 >>> 1; + $320 = $319 & 2; + $321 = $317 | $320; + $322 = $318 >>> $320; + $323 = $322 >>> 1; + $324 = $323 & 1; + $325 = $321 | $324; + $326 = $322 >>> $324; + $327 = (($325) + ($326))|0; + $328 = ((32544 + ($327<<2)|0) + 304|0); + $329 = HEAP32[$328>>2]|0; + $t$2$ph$i = $329; + } else { + $t$2$ph$i = $t$1$i; + } + $330 = ($t$2$ph$i|0)==(0|0); + if ($330) { + $rsize$3$lcssa$i = $rsize$2$i;$v$3$lcssa$i = $v$2$i; + } else { + $rsize$331$i = $rsize$2$i;$t$230$i = $t$2$ph$i;$v$332$i = $v$2$i; + while(1) { + $331 = (($t$230$i) + 4|0); + $332 = HEAP32[$331>>2]|0; + $333 = $332 & -8; + $334 = (($333) - ($246))|0; + $335 = ($334>>>0)<($rsize$331$i>>>0); + $$rsize$3$i = $335 ? $334 : $rsize$331$i; + $t$2$v$3$i = $335 ? $t$230$i : $v$332$i; + $336 = (($t$230$i) + 16|0); + $337 = HEAP32[$336>>2]|0; + $338 = ($337|0)==(0|0); + if (!($338)) { + $rsize$331$i = $$rsize$3$i;$t$230$i = $337;$v$332$i = $t$2$v$3$i; + continue; + } + $339 = (($t$230$i) + 20|0); + $340 = HEAP32[$339>>2]|0; + $341 = ($340|0)==(0|0); + if ($341) { + $rsize$3$lcssa$i = $$rsize$3$i;$v$3$lcssa$i = $t$2$v$3$i; + break; + } else { + $rsize$331$i = $$rsize$3$i;$t$230$i = $340;$v$332$i = $t$2$v$3$i; + } + } + } + $342 = ($v$3$lcssa$i|0)==(0|0); + if ($342) { + $nb$0 = $246; + } else { + $343 = HEAP32[((32544 + 8|0))>>2]|0; + $344 = (($343) - ($246))|0; + $345 = ($rsize$3$lcssa$i>>>0)<($344>>>0); + if ($345) { + $346 = HEAP32[((32544 + 16|0))>>2]|0; + $347 = ($v$3$lcssa$i>>>0)<($346>>>0); + if ($347) { + _abort(); + // unreachable; + } + $348 = (($v$3$lcssa$i) + ($246)|0); + $349 = ($v$3$lcssa$i>>>0)<($348>>>0); + if (!($349)) { + _abort(); + // unreachable; + } + $350 = (($v$3$lcssa$i) + 24|0); + $351 = HEAP32[$350>>2]|0; + $352 = (($v$3$lcssa$i) + 12|0); + $353 = HEAP32[$352>>2]|0; + $354 = ($353|0)==($v$3$lcssa$i|0); + do { + if ($354) { + $364 = (($v$3$lcssa$i) + 20|0); + $365 = HEAP32[$364>>2]|0; + $366 = ($365|0)==(0|0); + if ($366) { + $367 = (($v$3$lcssa$i) + 16|0); + $368 = HEAP32[$367>>2]|0; + $369 = ($368|0)==(0|0); + if ($369) { + $R$1$i20 = 0; + break; + } else { + $R$0$i18 = $368;$RP$0$i17 = $367; + } + } else { + $R$0$i18 = $365;$RP$0$i17 = $364; + } + while(1) { + $370 = (($R$0$i18) + 20|0); + $371 = HEAP32[$370>>2]|0; + $372 = ($371|0)==(0|0); + if (!($372)) { + $R$0$i18 = $371;$RP$0$i17 = $370; + continue; + } + $373 = (($R$0$i18) + 16|0); + $374 = HEAP32[$373>>2]|0; + $375 = ($374|0)==(0|0); + if ($375) { + break; + } else { + $R$0$i18 = $374;$RP$0$i17 = $373; + } + } + $376 = ($RP$0$i17>>>0)<($346>>>0); + if ($376) { + _abort(); + // unreachable; + } else { + HEAP32[$RP$0$i17>>2] = 0; + $R$1$i20 = $R$0$i18; + break; + } + } else { + $355 = (($v$3$lcssa$i) + 8|0); + $356 = HEAP32[$355>>2]|0; + $357 = ($356>>>0)<($346>>>0); + if ($357) { + _abort(); + // unreachable; + } + $358 = (($356) + 12|0); + $359 = HEAP32[$358>>2]|0; + $360 = ($359|0)==($v$3$lcssa$i|0); + if (!($360)) { + _abort(); + // unreachable; + } + $361 = (($353) + 8|0); + $362 = HEAP32[$361>>2]|0; + $363 = ($362|0)==($v$3$lcssa$i|0); + if ($363) { + HEAP32[$358>>2] = $353; + HEAP32[$361>>2] = $356; + $R$1$i20 = $353; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $377 = ($351|0)==(0|0); + do { + if (!($377)) { + $378 = (($v$3$lcssa$i) + 28|0); + $379 = HEAP32[$378>>2]|0; + $380 = ((32544 + ($379<<2)|0) + 304|0); + $381 = HEAP32[$380>>2]|0; + $382 = ($v$3$lcssa$i|0)==($381|0); + if ($382) { + HEAP32[$380>>2] = $R$1$i20; + $cond$i21 = ($R$1$i20|0)==(0|0); + if ($cond$i21) { + $383 = 1 << $379; + $384 = $383 ^ -1; + $385 = HEAP32[((32544 + 4|0))>>2]|0; + $386 = $385 & $384; + HEAP32[((32544 + 4|0))>>2] = $386; + break; + } + } else { + $387 = HEAP32[((32544 + 16|0))>>2]|0; + $388 = ($351>>>0)<($387>>>0); + if ($388) { + _abort(); + // unreachable; + } + $389 = (($351) + 16|0); + $390 = HEAP32[$389>>2]|0; + $391 = ($390|0)==($v$3$lcssa$i|0); + if ($391) { + HEAP32[$389>>2] = $R$1$i20; + } else { + $392 = (($351) + 20|0); + HEAP32[$392>>2] = $R$1$i20; + } + $393 = ($R$1$i20|0)==(0|0); + if ($393) { + break; + } + } + $394 = HEAP32[((32544 + 16|0))>>2]|0; + $395 = ($R$1$i20>>>0)<($394>>>0); + if ($395) { + _abort(); + // unreachable; + } + $396 = (($R$1$i20) + 24|0); + HEAP32[$396>>2] = $351; + $397 = (($v$3$lcssa$i) + 16|0); + $398 = HEAP32[$397>>2]|0; + $399 = ($398|0)==(0|0); + do { + if (!($399)) { + $400 = ($398>>>0)<($394>>>0); + if ($400) { + _abort(); + // unreachable; + } else { + $401 = (($R$1$i20) + 16|0); + HEAP32[$401>>2] = $398; + $402 = (($398) + 24|0); + HEAP32[$402>>2] = $R$1$i20; + break; + } + } + } while(0); + $403 = (($v$3$lcssa$i) + 20|0); + $404 = HEAP32[$403>>2]|0; + $405 = ($404|0)==(0|0); + if (!($405)) { + $406 = HEAP32[((32544 + 16|0))>>2]|0; + $407 = ($404>>>0)<($406>>>0); + if ($407) { + _abort(); + // unreachable; + } else { + $408 = (($R$1$i20) + 20|0); + HEAP32[$408>>2] = $404; + $409 = (($404) + 24|0); + HEAP32[$409>>2] = $R$1$i20; + break; + } + } + } + } while(0); + $410 = ($rsize$3$lcssa$i>>>0)<(16); + L204: do { + if ($410) { + $411 = (($rsize$3$lcssa$i) + ($246))|0; + $412 = $411 | 3; + $413 = (($v$3$lcssa$i) + 4|0); + HEAP32[$413>>2] = $412; + $$sum18$i = (($411) + 4)|0; + $414 = (($v$3$lcssa$i) + ($$sum18$i)|0); + $415 = HEAP32[$414>>2]|0; + $416 = $415 | 1; + HEAP32[$414>>2] = $416; + } else { + $417 = $246 | 3; + $418 = (($v$3$lcssa$i) + 4|0); + HEAP32[$418>>2] = $417; + $419 = $rsize$3$lcssa$i | 1; + $$sum$i2338 = $246 | 4; + $420 = (($v$3$lcssa$i) + ($$sum$i2338)|0); + HEAP32[$420>>2] = $419; + $$sum1$i24 = (($rsize$3$lcssa$i) + ($246))|0; + $421 = (($v$3$lcssa$i) + ($$sum1$i24)|0); + HEAP32[$421>>2] = $rsize$3$lcssa$i; + $422 = $rsize$3$lcssa$i >>> 3; + $423 = ($rsize$3$lcssa$i>>>0)<(256); + if ($423) { + $424 = $422 << 1; + $425 = ((32544 + ($424<<2)|0) + 40|0); + $426 = HEAP32[32544>>2]|0; + $427 = 1 << $422; + $428 = $426 & $427; + $429 = ($428|0)==(0); + do { + if ($429) { + $430 = $426 | $427; + HEAP32[32544>>2] = $430; + $$sum14$pre$i = (($424) + 2)|0; + $$pre$i25 = ((32544 + ($$sum14$pre$i<<2)|0) + 40|0); + $$pre$phi$i26Z2D = $$pre$i25;$F5$0$i = $425; + } else { + $$sum17$i = (($424) + 2)|0; + $431 = ((32544 + ($$sum17$i<<2)|0) + 40|0); + $432 = HEAP32[$431>>2]|0; + $433 = HEAP32[((32544 + 16|0))>>2]|0; + $434 = ($432>>>0)<($433>>>0); + if (!($434)) { + $$pre$phi$i26Z2D = $431;$F5$0$i = $432; + break; + } + _abort(); + // unreachable; + } + } while(0); + HEAP32[$$pre$phi$i26Z2D>>2] = $348; + $435 = (($F5$0$i) + 12|0); + HEAP32[$435>>2] = $348; + $$sum15$i = (($246) + 8)|0; + $436 = (($v$3$lcssa$i) + ($$sum15$i)|0); + HEAP32[$436>>2] = $F5$0$i; + $$sum16$i = (($246) + 12)|0; + $437 = (($v$3$lcssa$i) + ($$sum16$i)|0); + HEAP32[$437>>2] = $425; + break; + } + $438 = $rsize$3$lcssa$i >>> 8; + $439 = ($438|0)==(0); + if ($439) { + $I7$0$i = 0; + } else { + $440 = ($rsize$3$lcssa$i>>>0)>(16777215); + if ($440) { + $I7$0$i = 31; + } else { + $441 = (($438) + 1048320)|0; + $442 = $441 >>> 16; + $443 = $442 & 8; + $444 = $438 << $443; + $445 = (($444) + 520192)|0; + $446 = $445 >>> 16; + $447 = $446 & 4; + $448 = $447 | $443; + $449 = $444 << $447; + $450 = (($449) + 245760)|0; + $451 = $450 >>> 16; + $452 = $451 & 2; + $453 = $448 | $452; + $454 = (14 - ($453))|0; + $455 = $449 << $452; + $456 = $455 >>> 15; + $457 = (($454) + ($456))|0; + $458 = $457 << 1; + $459 = (($457) + 7)|0; + $460 = $rsize$3$lcssa$i >>> $459; + $461 = $460 & 1; + $462 = $461 | $458; + $I7$0$i = $462; + } + } + $463 = ((32544 + ($I7$0$i<<2)|0) + 304|0); + $$sum2$i = (($246) + 28)|0; + $464 = (($v$3$lcssa$i) + ($$sum2$i)|0); + HEAP32[$464>>2] = $I7$0$i; + $$sum3$i27 = (($246) + 16)|0; + $465 = (($v$3$lcssa$i) + ($$sum3$i27)|0); + $$sum4$i28 = (($246) + 20)|0; + $466 = (($v$3$lcssa$i) + ($$sum4$i28)|0); + HEAP32[$466>>2] = 0; + HEAP32[$465>>2] = 0; + $467 = HEAP32[((32544 + 4|0))>>2]|0; + $468 = 1 << $I7$0$i; + $469 = $467 & $468; + $470 = ($469|0)==(0); + if ($470) { + $471 = $467 | $468; + HEAP32[((32544 + 4|0))>>2] = $471; + HEAP32[$463>>2] = $348; + $$sum5$i = (($246) + 24)|0; + $472 = (($v$3$lcssa$i) + ($$sum5$i)|0); + HEAP32[$472>>2] = $463; + $$sum6$i = (($246) + 12)|0; + $473 = (($v$3$lcssa$i) + ($$sum6$i)|0); + HEAP32[$473>>2] = $348; + $$sum7$i = (($246) + 8)|0; + $474 = (($v$3$lcssa$i) + ($$sum7$i)|0); + HEAP32[$474>>2] = $348; + break; + } + $475 = HEAP32[$463>>2]|0; + $476 = ($I7$0$i|0)==(31); + if ($476) { + $484 = 0; + } else { + $477 = $I7$0$i >>> 1; + $478 = (25 - ($477))|0; + $484 = $478; + } + $479 = (($475) + 4|0); + $480 = HEAP32[$479>>2]|0; + $481 = $480 & -8; + $482 = ($481|0)==($rsize$3$lcssa$i|0); + L225: do { + if ($482) { + $T$0$lcssa$i = $475; + } else { + $483 = $rsize$3$lcssa$i << $484; + $K12$027$i = $483;$T$026$i = $475; + while(1) { + $491 = $K12$027$i >>> 31; + $492 = ((($T$026$i) + ($491<<2)|0) + 16|0); + $487 = HEAP32[$492>>2]|0; + $493 = ($487|0)==(0|0); + if ($493) { + break; + } + $485 = $K12$027$i << 1; + $486 = (($487) + 4|0); + $488 = HEAP32[$486>>2]|0; + $489 = $488 & -8; + $490 = ($489|0)==($rsize$3$lcssa$i|0); + if ($490) { + $T$0$lcssa$i = $487; + break L225; + } else { + $K12$027$i = $485;$T$026$i = $487; + } + } + $494 = HEAP32[((32544 + 16|0))>>2]|0; + $495 = ($492>>>0)<($494>>>0); + if ($495) { + _abort(); + // unreachable; + } else { + HEAP32[$492>>2] = $348; + $$sum11$i = (($246) + 24)|0; + $496 = (($v$3$lcssa$i) + ($$sum11$i)|0); + HEAP32[$496>>2] = $T$026$i; + $$sum12$i = (($246) + 12)|0; + $497 = (($v$3$lcssa$i) + ($$sum12$i)|0); + HEAP32[$497>>2] = $348; + $$sum13$i = (($246) + 8)|0; + $498 = (($v$3$lcssa$i) + ($$sum13$i)|0); + HEAP32[$498>>2] = $348; + break L204; + } + } + } while(0); + $499 = (($T$0$lcssa$i) + 8|0); + $500 = HEAP32[$499>>2]|0; + $501 = HEAP32[((32544 + 16|0))>>2]|0; + $502 = ($T$0$lcssa$i>>>0)>=($501>>>0); + $503 = ($500>>>0)>=($501>>>0); + $or$cond24$i = $502 & $503; + if ($or$cond24$i) { + $504 = (($500) + 12|0); + HEAP32[$504>>2] = $348; + HEAP32[$499>>2] = $348; + $$sum8$i = (($246) + 8)|0; + $505 = (($v$3$lcssa$i) + ($$sum8$i)|0); + HEAP32[$505>>2] = $500; + $$sum9$i = (($246) + 12)|0; + $506 = (($v$3$lcssa$i) + ($$sum9$i)|0); + HEAP32[$506>>2] = $T$0$lcssa$i; + $$sum10$i = (($246) + 24)|0; + $507 = (($v$3$lcssa$i) + ($$sum10$i)|0); + HEAP32[$507>>2] = 0; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $508 = (($v$3$lcssa$i) + 8|0); + $mem$0 = $508; + STACKTOP = sp;return ($mem$0|0); + } else { + $nb$0 = $246; + } + } + } + } + } + } while(0); + $509 = HEAP32[((32544 + 8|0))>>2]|0; + $510 = ($509>>>0)<($nb$0>>>0); + if (!($510)) { + $511 = (($509) - ($nb$0))|0; + $512 = HEAP32[((32544 + 20|0))>>2]|0; + $513 = ($511>>>0)>(15); + if ($513) { + $514 = (($512) + ($nb$0)|0); + HEAP32[((32544 + 20|0))>>2] = $514; + HEAP32[((32544 + 8|0))>>2] = $511; + $515 = $511 | 1; + $$sum2 = (($nb$0) + 4)|0; + $516 = (($512) + ($$sum2)|0); + HEAP32[$516>>2] = $515; + $517 = (($512) + ($509)|0); + HEAP32[$517>>2] = $511; + $518 = $nb$0 | 3; + $519 = (($512) + 4|0); + HEAP32[$519>>2] = $518; + } else { + HEAP32[((32544 + 8|0))>>2] = 0; + HEAP32[((32544 + 20|0))>>2] = 0; + $520 = $509 | 3; + $521 = (($512) + 4|0); + HEAP32[$521>>2] = $520; + $$sum1 = (($509) + 4)|0; + $522 = (($512) + ($$sum1)|0); + $523 = HEAP32[$522>>2]|0; + $524 = $523 | 1; + HEAP32[$522>>2] = $524; + } + $525 = (($512) + 8|0); + $mem$0 = $525; + STACKTOP = sp;return ($mem$0|0); + } + $526 = HEAP32[((32544 + 12|0))>>2]|0; + $527 = ($526>>>0)>($nb$0>>>0); + if ($527) { + $528 = (($526) - ($nb$0))|0; + HEAP32[((32544 + 12|0))>>2] = $528; + $529 = HEAP32[((32544 + 24|0))>>2]|0; + $530 = (($529) + ($nb$0)|0); + HEAP32[((32544 + 24|0))>>2] = $530; + $531 = $528 | 1; + $$sum = (($nb$0) + 4)|0; + $532 = (($529) + ($$sum)|0); + HEAP32[$532>>2] = $531; + $533 = $nb$0 | 3; + $534 = (($529) + 4|0); + HEAP32[$534>>2] = $533; + $535 = (($529) + 8|0); + $mem$0 = $535; + STACKTOP = sp;return ($mem$0|0); + } + $536 = HEAP32[33016>>2]|0; + $537 = ($536|0)==(0); + do { + if ($537) { + $538 = (_sysconf(30)|0); + $539 = (($538) + -1)|0; + $540 = $539 & $538; + $541 = ($540|0)==(0); + if ($541) { + HEAP32[((33016 + 8|0))>>2] = $538; + HEAP32[((33016 + 4|0))>>2] = $538; + HEAP32[((33016 + 12|0))>>2] = -1; + HEAP32[((33016 + 16|0))>>2] = -1; + HEAP32[((33016 + 20|0))>>2] = 0; + HEAP32[((32544 + 444|0))>>2] = 0; + $542 = (_time((0|0))|0); + $543 = $542 & -16; + $544 = $543 ^ 1431655768; + HEAP32[33016>>2] = $544; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $545 = (($nb$0) + 48)|0; + $546 = HEAP32[((33016 + 8|0))>>2]|0; + $547 = (($nb$0) + 47)|0; + $548 = (($546) + ($547))|0; + $549 = (0 - ($546))|0; + $550 = $548 & $549; + $551 = ($550>>>0)>($nb$0>>>0); + if (!($551)) { + $mem$0 = 0; + STACKTOP = sp;return ($mem$0|0); + } + $552 = HEAP32[((32544 + 440|0))>>2]|0; + $553 = ($552|0)==(0); + if (!($553)) { + $554 = HEAP32[((32544 + 432|0))>>2]|0; + $555 = (($554) + ($550))|0; + $556 = ($555>>>0)<=($554>>>0); + $557 = ($555>>>0)>($552>>>0); + $or$cond1$i = $556 | $557; + if ($or$cond1$i) { + $mem$0 = 0; + STACKTOP = sp;return ($mem$0|0); + } + } + $558 = HEAP32[((32544 + 444|0))>>2]|0; + $559 = $558 & 4; + $560 = ($559|0)==(0); + L266: do { + if ($560) { + $561 = HEAP32[((32544 + 24|0))>>2]|0; + $562 = ($561|0)==(0|0); + L268: do { + if ($562) { + label = 181; + } else { + $sp$0$i$i = ((32544 + 448|0)); + while(1) { + $563 = HEAP32[$sp$0$i$i>>2]|0; + $564 = ($563>>>0)>($561>>>0); + if (!($564)) { + $565 = (($sp$0$i$i) + 4|0); + $566 = HEAP32[$565>>2]|0; + $567 = (($563) + ($566)|0); + $568 = ($567>>>0)>($561>>>0); + if ($568) { + break; + } + } + $569 = (($sp$0$i$i) + 8|0); + $570 = HEAP32[$569>>2]|0; + $571 = ($570|0)==(0|0); + if ($571) { + label = 181; + break L268; + } else { + $sp$0$i$i = $570; + } + } + $572 = ($sp$0$i$i|0)==(0|0); + if ($572) { + label = 181; + } else { + $595 = HEAP32[((32544 + 12|0))>>2]|0; + $596 = (($548) - ($595))|0; + $597 = $596 & $549; + $598 = ($597>>>0)<(2147483647); + if ($598) { + $599 = (_sbrk(($597|0))|0); + $600 = HEAP32[$sp$0$i$i>>2]|0; + $601 = HEAP32[$565>>2]|0; + $602 = (($600) + ($601)|0); + $603 = ($599|0)==($602|0); + if ($603) { + $br$0$i = $599;$ssize$1$i = $597; + label = 190; + } else { + $br$030$i = $599;$ssize$129$i = $597; + label = 191; + } + } else { + $tsize$03141$i = 0; + } + } + } + } while(0); + do { + if ((label|0) == 181) { + $573 = (_sbrk(0)|0); + $574 = ($573|0)==((-1)|0); + if ($574) { + $tsize$03141$i = 0; + } else { + $575 = $573; + $576 = HEAP32[((33016 + 4|0))>>2]|0; + $577 = (($576) + -1)|0; + $578 = $577 & $575; + $579 = ($578|0)==(0); + if ($579) { + $ssize$0$i = $550; + } else { + $580 = (($577) + ($575))|0; + $581 = (0 - ($576))|0; + $582 = $580 & $581; + $583 = (($550) - ($575))|0; + $584 = (($583) + ($582))|0; + $ssize$0$i = $584; + } + $585 = HEAP32[((32544 + 432|0))>>2]|0; + $586 = (($585) + ($ssize$0$i))|0; + $587 = ($ssize$0$i>>>0)>($nb$0>>>0); + $588 = ($ssize$0$i>>>0)<(2147483647); + $or$cond$i29 = $587 & $588; + if ($or$cond$i29) { + $589 = HEAP32[((32544 + 440|0))>>2]|0; + $590 = ($589|0)==(0); + if (!($590)) { + $591 = ($586>>>0)<=($585>>>0); + $592 = ($586>>>0)>($589>>>0); + $or$cond2$i = $591 | $592; + if ($or$cond2$i) { + $tsize$03141$i = 0; + break; + } + } + $593 = (_sbrk(($ssize$0$i|0))|0); + $594 = ($593|0)==($573|0); + if ($594) { + $br$0$i = $573;$ssize$1$i = $ssize$0$i; + label = 190; + } else { + $br$030$i = $593;$ssize$129$i = $ssize$0$i; + label = 191; + } + } else { + $tsize$03141$i = 0; + } + } + } + } while(0); + L288: do { + if ((label|0) == 190) { + $604 = ($br$0$i|0)==((-1)|0); + if ($604) { + $tsize$03141$i = $ssize$1$i; + } else { + $tbase$245$i = $br$0$i;$tsize$244$i = $ssize$1$i; + label = 201; + break L266; + } + } + else if ((label|0) == 191) { + $605 = (0 - ($ssize$129$i))|0; + $606 = ($br$030$i|0)!=((-1)|0); + $607 = ($ssize$129$i>>>0)<(2147483647); + $or$cond5$i = $606 & $607; + $608 = ($545>>>0)>($ssize$129$i>>>0); + $or$cond4$i = $or$cond5$i & $608; + do { + if ($or$cond4$i) { + $609 = HEAP32[((33016 + 8|0))>>2]|0; + $610 = (($547) - ($ssize$129$i))|0; + $611 = (($610) + ($609))|0; + $612 = (0 - ($609))|0; + $613 = $611 & $612; + $614 = ($613>>>0)<(2147483647); + if ($614) { + $615 = (_sbrk(($613|0))|0); + $616 = ($615|0)==((-1)|0); + if ($616) { + (_sbrk(($605|0))|0); + $tsize$03141$i = 0; + break L288; + } else { + $617 = (($613) + ($ssize$129$i))|0; + $ssize$2$i = $617; + break; + } + } else { + $ssize$2$i = $ssize$129$i; + } + } else { + $ssize$2$i = $ssize$129$i; + } + } while(0); + $618 = ($br$030$i|0)==((-1)|0); + if ($618) { + $tsize$03141$i = 0; + } else { + $tbase$245$i = $br$030$i;$tsize$244$i = $ssize$2$i; + label = 201; + break L266; + } + } + } while(0); + $619 = HEAP32[((32544 + 444|0))>>2]|0; + $620 = $619 | 4; + HEAP32[((32544 + 444|0))>>2] = $620; + $tsize$1$i = $tsize$03141$i; + label = 198; + } else { + $tsize$1$i = 0; + label = 198; + } + } while(0); + if ((label|0) == 198) { + $621 = ($550>>>0)<(2147483647); + if ($621) { + $622 = (_sbrk(($550|0))|0); + $623 = (_sbrk(0)|0); + $624 = ($622|0)!=((-1)|0); + $625 = ($623|0)!=((-1)|0); + $or$cond3$i = $624 & $625; + $626 = ($622>>>0)<($623>>>0); + $or$cond6$i = $or$cond3$i & $626; + if ($or$cond6$i) { + $627 = $623; + $628 = $622; + $629 = (($627) - ($628))|0; + $630 = (($nb$0) + 40)|0; + $631 = ($629>>>0)>($630>>>0); + $$tsize$1$i = $631 ? $629 : $tsize$1$i; + if ($631) { + $tbase$245$i = $622;$tsize$244$i = $$tsize$1$i; + label = 201; + } + } + } + } + if ((label|0) == 201) { + $632 = HEAP32[((32544 + 432|0))>>2]|0; + $633 = (($632) + ($tsize$244$i))|0; + HEAP32[((32544 + 432|0))>>2] = $633; + $634 = HEAP32[((32544 + 436|0))>>2]|0; + $635 = ($633>>>0)>($634>>>0); + if ($635) { + HEAP32[((32544 + 436|0))>>2] = $633; + } + $636 = HEAP32[((32544 + 24|0))>>2]|0; + $637 = ($636|0)==(0|0); + L308: do { + if ($637) { + $638 = HEAP32[((32544 + 16|0))>>2]|0; + $639 = ($638|0)==(0|0); + $640 = ($tbase$245$i>>>0)<($638>>>0); + $or$cond8$i = $639 | $640; + if ($or$cond8$i) { + HEAP32[((32544 + 16|0))>>2] = $tbase$245$i; + } + HEAP32[((32544 + 448|0))>>2] = $tbase$245$i; + HEAP32[((32544 + 452|0))>>2] = $tsize$244$i; + HEAP32[((32544 + 460|0))>>2] = 0; + $641 = HEAP32[33016>>2]|0; + HEAP32[((32544 + 36|0))>>2] = $641; + HEAP32[((32544 + 32|0))>>2] = -1; + $i$02$i$i = 0; + while(1) { + $642 = $i$02$i$i << 1; + $643 = ((32544 + ($642<<2)|0) + 40|0); + $$sum$i$i = (($642) + 3)|0; + $644 = ((32544 + ($$sum$i$i<<2)|0) + 40|0); + HEAP32[$644>>2] = $643; + $$sum1$i$i = (($642) + 2)|0; + $645 = ((32544 + ($$sum1$i$i<<2)|0) + 40|0); + HEAP32[$645>>2] = $643; + $646 = (($i$02$i$i) + 1)|0; + $exitcond$i$i = ($646|0)==(32); + if ($exitcond$i$i) { + break; + } else { + $i$02$i$i = $646; + } + } + $647 = (($tsize$244$i) + -40)|0; + $648 = (($tbase$245$i) + 8|0); + $649 = $648; + $650 = $649 & 7; + $651 = ($650|0)==(0); + if ($651) { + $655 = 0; + } else { + $652 = (0 - ($649))|0; + $653 = $652 & 7; + $655 = $653; + } + $654 = (($tbase$245$i) + ($655)|0); + $656 = (($647) - ($655))|0; + HEAP32[((32544 + 24|0))>>2] = $654; + HEAP32[((32544 + 12|0))>>2] = $656; + $657 = $656 | 1; + $$sum$i12$i = (($655) + 4)|0; + $658 = (($tbase$245$i) + ($$sum$i12$i)|0); + HEAP32[$658>>2] = $657; + $$sum2$i$i = (($tsize$244$i) + -36)|0; + $659 = (($tbase$245$i) + ($$sum2$i$i)|0); + HEAP32[$659>>2] = 40; + $660 = HEAP32[((33016 + 16|0))>>2]|0; + HEAP32[((32544 + 28|0))>>2] = $660; + } else { + $sp$073$i = ((32544 + 448|0)); + while(1) { + $661 = HEAP32[$sp$073$i>>2]|0; + $662 = (($sp$073$i) + 4|0); + $663 = HEAP32[$662>>2]|0; + $664 = (($661) + ($663)|0); + $665 = ($tbase$245$i|0)==($664|0); + if ($665) { + label = 213; + break; + } + $666 = (($sp$073$i) + 8|0); + $667 = HEAP32[$666>>2]|0; + $668 = ($667|0)==(0|0); + if ($668) { + break; + } else { + $sp$073$i = $667; + } + } + if ((label|0) == 213) { + $669 = (($sp$073$i) + 12|0); + $670 = HEAP32[$669>>2]|0; + $671 = $670 & 8; + $672 = ($671|0)==(0); + if ($672) { + $673 = ($636>>>0)>=($661>>>0); + $674 = ($636>>>0)<($tbase$245$i>>>0); + $or$cond47$i = $673 & $674; + if ($or$cond47$i) { + $675 = (($663) + ($tsize$244$i))|0; + HEAP32[$662>>2] = $675; + $676 = HEAP32[((32544 + 12|0))>>2]|0; + $677 = (($676) + ($tsize$244$i))|0; + $678 = (($636) + 8|0); + $679 = $678; + $680 = $679 & 7; + $681 = ($680|0)==(0); + if ($681) { + $685 = 0; + } else { + $682 = (0 - ($679))|0; + $683 = $682 & 7; + $685 = $683; + } + $684 = (($636) + ($685)|0); + $686 = (($677) - ($685))|0; + HEAP32[((32544 + 24|0))>>2] = $684; + HEAP32[((32544 + 12|0))>>2] = $686; + $687 = $686 | 1; + $$sum$i16$i = (($685) + 4)|0; + $688 = (($636) + ($$sum$i16$i)|0); + HEAP32[$688>>2] = $687; + $$sum2$i17$i = (($677) + 4)|0; + $689 = (($636) + ($$sum2$i17$i)|0); + HEAP32[$689>>2] = 40; + $690 = HEAP32[((33016 + 16|0))>>2]|0; + HEAP32[((32544 + 28|0))>>2] = $690; + break; + } + } + } + $691 = HEAP32[((32544 + 16|0))>>2]|0; + $692 = ($tbase$245$i>>>0)<($691>>>0); + if ($692) { + HEAP32[((32544 + 16|0))>>2] = $tbase$245$i; + $756 = $tbase$245$i; + } else { + $756 = $691; + } + $693 = (($tbase$245$i) + ($tsize$244$i)|0); + $sp$166$i = ((32544 + 448|0)); + while(1) { + $694 = HEAP32[$sp$166$i>>2]|0; + $695 = ($694|0)==($693|0); + if ($695) { + label = 223; + break; + } + $696 = (($sp$166$i) + 8|0); + $697 = HEAP32[$696>>2]|0; + $698 = ($697|0)==(0|0); + if ($698) { + break; + } else { + $sp$166$i = $697; + } + } + if ((label|0) == 223) { + $699 = (($sp$166$i) + 12|0); + $700 = HEAP32[$699>>2]|0; + $701 = $700 & 8; + $702 = ($701|0)==(0); + if ($702) { + HEAP32[$sp$166$i>>2] = $tbase$245$i; + $703 = (($sp$166$i) + 4|0); + $704 = HEAP32[$703>>2]|0; + $705 = (($704) + ($tsize$244$i))|0; + HEAP32[$703>>2] = $705; + $706 = (($tbase$245$i) + 8|0); + $707 = $706; + $708 = $707 & 7; + $709 = ($708|0)==(0); + if ($709) { + $713 = 0; + } else { + $710 = (0 - ($707))|0; + $711 = $710 & 7; + $713 = $711; + } + $712 = (($tbase$245$i) + ($713)|0); + $$sum102$i = (($tsize$244$i) + 8)|0; + $714 = (($tbase$245$i) + ($$sum102$i)|0); + $715 = $714; + $716 = $715 & 7; + $717 = ($716|0)==(0); + if ($717) { + $720 = 0; + } else { + $718 = (0 - ($715))|0; + $719 = $718 & 7; + $720 = $719; + } + $$sum103$i = (($720) + ($tsize$244$i))|0; + $721 = (($tbase$245$i) + ($$sum103$i)|0); + $722 = $721; + $723 = $712; + $724 = (($722) - ($723))|0; + $$sum$i19$i = (($713) + ($nb$0))|0; + $725 = (($tbase$245$i) + ($$sum$i19$i)|0); + $726 = (($724) - ($nb$0))|0; + $727 = $nb$0 | 3; + $$sum1$i20$i = (($713) + 4)|0; + $728 = (($tbase$245$i) + ($$sum1$i20$i)|0); + HEAP32[$728>>2] = $727; + $729 = ($721|0)==($636|0); + L345: do { + if ($729) { + $730 = HEAP32[((32544 + 12|0))>>2]|0; + $731 = (($730) + ($726))|0; + HEAP32[((32544 + 12|0))>>2] = $731; + HEAP32[((32544 + 24|0))>>2] = $725; + $732 = $731 | 1; + $$sum42$i$i = (($$sum$i19$i) + 4)|0; + $733 = (($tbase$245$i) + ($$sum42$i$i)|0); + HEAP32[$733>>2] = $732; + } else { + $734 = HEAP32[((32544 + 20|0))>>2]|0; + $735 = ($721|0)==($734|0); + if ($735) { + $736 = HEAP32[((32544 + 8|0))>>2]|0; + $737 = (($736) + ($726))|0; + HEAP32[((32544 + 8|0))>>2] = $737; + HEAP32[((32544 + 20|0))>>2] = $725; + $738 = $737 | 1; + $$sum40$i$i = (($$sum$i19$i) + 4)|0; + $739 = (($tbase$245$i) + ($$sum40$i$i)|0); + HEAP32[$739>>2] = $738; + $$sum41$i$i = (($737) + ($$sum$i19$i))|0; + $740 = (($tbase$245$i) + ($$sum41$i$i)|0); + HEAP32[$740>>2] = $737; + break; + } + $$sum2$i21$i = (($tsize$244$i) + 4)|0; + $$sum104$i = (($$sum2$i21$i) + ($720))|0; + $741 = (($tbase$245$i) + ($$sum104$i)|0); + $742 = HEAP32[$741>>2]|0; + $743 = $742 & 3; + $744 = ($743|0)==(1); + if ($744) { + $745 = $742 & -8; + $746 = $742 >>> 3; + $747 = ($742>>>0)<(256); + L353: do { + if ($747) { + $$sum3738$i$i = $720 | 8; + $$sum114$i = (($$sum3738$i$i) + ($tsize$244$i))|0; + $748 = (($tbase$245$i) + ($$sum114$i)|0); + $749 = HEAP32[$748>>2]|0; + $$sum39$i$i = (($tsize$244$i) + 12)|0; + $$sum115$i = (($$sum39$i$i) + ($720))|0; + $750 = (($tbase$245$i) + ($$sum115$i)|0); + $751 = HEAP32[$750>>2]|0; + $752 = $746 << 1; + $753 = ((32544 + ($752<<2)|0) + 40|0); + $754 = ($749|0)==($753|0); + do { + if (!($754)) { + $755 = ($749>>>0)<($756>>>0); + if ($755) { + _abort(); + // unreachable; + } + $757 = (($749) + 12|0); + $758 = HEAP32[$757>>2]|0; + $759 = ($758|0)==($721|0); + if ($759) { + break; + } + _abort(); + // unreachable; + } + } while(0); + $760 = ($751|0)==($749|0); + if ($760) { + $761 = 1 << $746; + $762 = $761 ^ -1; + $763 = HEAP32[32544>>2]|0; + $764 = $763 & $762; + HEAP32[32544>>2] = $764; + break; + } + $765 = ($751|0)==($753|0); + do { + if ($765) { + $$pre58$i$i = (($751) + 8|0); + $$pre$phi59$i$iZ2D = $$pre58$i$i; + } else { + $766 = ($751>>>0)<($756>>>0); + if ($766) { + _abort(); + // unreachable; + } + $767 = (($751) + 8|0); + $768 = HEAP32[$767>>2]|0; + $769 = ($768|0)==($721|0); + if ($769) { + $$pre$phi59$i$iZ2D = $767; + break; + } + _abort(); + // unreachable; + } + } while(0); + $770 = (($749) + 12|0); + HEAP32[$770>>2] = $751; + HEAP32[$$pre$phi59$i$iZ2D>>2] = $749; + } else { + $$sum34$i$i = $720 | 24; + $$sum105$i = (($$sum34$i$i) + ($tsize$244$i))|0; + $771 = (($tbase$245$i) + ($$sum105$i)|0); + $772 = HEAP32[$771>>2]|0; + $$sum5$i$i = (($tsize$244$i) + 12)|0; + $$sum106$i = (($$sum5$i$i) + ($720))|0; + $773 = (($tbase$245$i) + ($$sum106$i)|0); + $774 = HEAP32[$773>>2]|0; + $775 = ($774|0)==($721|0); + do { + if ($775) { + $$sum67$i$i = $720 | 16; + $$sum112$i = (($$sum2$i21$i) + ($$sum67$i$i))|0; + $785 = (($tbase$245$i) + ($$sum112$i)|0); + $786 = HEAP32[$785>>2]|0; + $787 = ($786|0)==(0|0); + if ($787) { + $$sum113$i = (($$sum67$i$i) + ($tsize$244$i))|0; + $788 = (($tbase$245$i) + ($$sum113$i)|0); + $789 = HEAP32[$788>>2]|0; + $790 = ($789|0)==(0|0); + if ($790) { + $R$1$i$i = 0; + break; + } else { + $R$0$i$i = $789;$RP$0$i$i = $788; + } + } else { + $R$0$i$i = $786;$RP$0$i$i = $785; + } + while(1) { + $791 = (($R$0$i$i) + 20|0); + $792 = HEAP32[$791>>2]|0; + $793 = ($792|0)==(0|0); + if (!($793)) { + $R$0$i$i = $792;$RP$0$i$i = $791; + continue; + } + $794 = (($R$0$i$i) + 16|0); + $795 = HEAP32[$794>>2]|0; + $796 = ($795|0)==(0|0); + if ($796) { + break; + } else { + $R$0$i$i = $795;$RP$0$i$i = $794; + } + } + $797 = ($RP$0$i$i>>>0)<($756>>>0); + if ($797) { + _abort(); + // unreachable; + } else { + HEAP32[$RP$0$i$i>>2] = 0; + $R$1$i$i = $R$0$i$i; + break; + } + } else { + $$sum3536$i$i = $720 | 8; + $$sum107$i = (($$sum3536$i$i) + ($tsize$244$i))|0; + $776 = (($tbase$245$i) + ($$sum107$i)|0); + $777 = HEAP32[$776>>2]|0; + $778 = ($777>>>0)<($756>>>0); + if ($778) { + _abort(); + // unreachable; + } + $779 = (($777) + 12|0); + $780 = HEAP32[$779>>2]|0; + $781 = ($780|0)==($721|0); + if (!($781)) { + _abort(); + // unreachable; + } + $782 = (($774) + 8|0); + $783 = HEAP32[$782>>2]|0; + $784 = ($783|0)==($721|0); + if ($784) { + HEAP32[$779>>2] = $774; + HEAP32[$782>>2] = $777; + $R$1$i$i = $774; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $798 = ($772|0)==(0|0); + if ($798) { + break; + } + $$sum30$i$i = (($tsize$244$i) + 28)|0; + $$sum108$i = (($$sum30$i$i) + ($720))|0; + $799 = (($tbase$245$i) + ($$sum108$i)|0); + $800 = HEAP32[$799>>2]|0; + $801 = ((32544 + ($800<<2)|0) + 304|0); + $802 = HEAP32[$801>>2]|0; + $803 = ($721|0)==($802|0); + do { + if ($803) { + HEAP32[$801>>2] = $R$1$i$i; + $cond$i$i = ($R$1$i$i|0)==(0|0); + if (!($cond$i$i)) { + break; + } + $804 = 1 << $800; + $805 = $804 ^ -1; + $806 = HEAP32[((32544 + 4|0))>>2]|0; + $807 = $806 & $805; + HEAP32[((32544 + 4|0))>>2] = $807; + break L353; + } else { + $808 = HEAP32[((32544 + 16|0))>>2]|0; + $809 = ($772>>>0)<($808>>>0); + if ($809) { + _abort(); + // unreachable; + } + $810 = (($772) + 16|0); + $811 = HEAP32[$810>>2]|0; + $812 = ($811|0)==($721|0); + if ($812) { + HEAP32[$810>>2] = $R$1$i$i; + } else { + $813 = (($772) + 20|0); + HEAP32[$813>>2] = $R$1$i$i; + } + $814 = ($R$1$i$i|0)==(0|0); + if ($814) { + break L353; + } + } + } while(0); + $815 = HEAP32[((32544 + 16|0))>>2]|0; + $816 = ($R$1$i$i>>>0)<($815>>>0); + if ($816) { + _abort(); + // unreachable; + } + $817 = (($R$1$i$i) + 24|0); + HEAP32[$817>>2] = $772; + $$sum3132$i$i = $720 | 16; + $$sum109$i = (($$sum3132$i$i) + ($tsize$244$i))|0; + $818 = (($tbase$245$i) + ($$sum109$i)|0); + $819 = HEAP32[$818>>2]|0; + $820 = ($819|0)==(0|0); + do { + if (!($820)) { + $821 = ($819>>>0)<($815>>>0); + if ($821) { + _abort(); + // unreachable; + } else { + $822 = (($R$1$i$i) + 16|0); + HEAP32[$822>>2] = $819; + $823 = (($819) + 24|0); + HEAP32[$823>>2] = $R$1$i$i; + break; + } + } + } while(0); + $$sum110$i = (($$sum2$i21$i) + ($$sum3132$i$i))|0; + $824 = (($tbase$245$i) + ($$sum110$i)|0); + $825 = HEAP32[$824>>2]|0; + $826 = ($825|0)==(0|0); + if ($826) { + break; + } + $827 = HEAP32[((32544 + 16|0))>>2]|0; + $828 = ($825>>>0)<($827>>>0); + if ($828) { + _abort(); + // unreachable; + } else { + $829 = (($R$1$i$i) + 20|0); + HEAP32[$829>>2] = $825; + $830 = (($825) + 24|0); + HEAP32[$830>>2] = $R$1$i$i; + break; + } + } + } while(0); + $$sum9$i$i = $745 | $720; + $$sum111$i = (($$sum9$i$i) + ($tsize$244$i))|0; + $831 = (($tbase$245$i) + ($$sum111$i)|0); + $832 = (($745) + ($726))|0; + $oldfirst$0$i$i = $831;$qsize$0$i$i = $832; + } else { + $oldfirst$0$i$i = $721;$qsize$0$i$i = $726; + } + $833 = (($oldfirst$0$i$i) + 4|0); + $834 = HEAP32[$833>>2]|0; + $835 = $834 & -2; + HEAP32[$833>>2] = $835; + $836 = $qsize$0$i$i | 1; + $$sum10$i$i = (($$sum$i19$i) + 4)|0; + $837 = (($tbase$245$i) + ($$sum10$i$i)|0); + HEAP32[$837>>2] = $836; + $$sum11$i22$i = (($qsize$0$i$i) + ($$sum$i19$i))|0; + $838 = (($tbase$245$i) + ($$sum11$i22$i)|0); + HEAP32[$838>>2] = $qsize$0$i$i; + $839 = $qsize$0$i$i >>> 3; + $840 = ($qsize$0$i$i>>>0)<(256); + if ($840) { + $841 = $839 << 1; + $842 = ((32544 + ($841<<2)|0) + 40|0); + $843 = HEAP32[32544>>2]|0; + $844 = 1 << $839; + $845 = $843 & $844; + $846 = ($845|0)==(0); + do { + if ($846) { + $847 = $843 | $844; + HEAP32[32544>>2] = $847; + $$sum26$pre$i$i = (($841) + 2)|0; + $$pre$i23$i = ((32544 + ($$sum26$pre$i$i<<2)|0) + 40|0); + $$pre$phi$i24$iZ2D = $$pre$i23$i;$F4$0$i$i = $842; + } else { + $$sum29$i$i = (($841) + 2)|0; + $848 = ((32544 + ($$sum29$i$i<<2)|0) + 40|0); + $849 = HEAP32[$848>>2]|0; + $850 = HEAP32[((32544 + 16|0))>>2]|0; + $851 = ($849>>>0)<($850>>>0); + if (!($851)) { + $$pre$phi$i24$iZ2D = $848;$F4$0$i$i = $849; + break; + } + _abort(); + // unreachable; + } + } while(0); + HEAP32[$$pre$phi$i24$iZ2D>>2] = $725; + $852 = (($F4$0$i$i) + 12|0); + HEAP32[$852>>2] = $725; + $$sum27$i$i = (($$sum$i19$i) + 8)|0; + $853 = (($tbase$245$i) + ($$sum27$i$i)|0); + HEAP32[$853>>2] = $F4$0$i$i; + $$sum28$i$i = (($$sum$i19$i) + 12)|0; + $854 = (($tbase$245$i) + ($$sum28$i$i)|0); + HEAP32[$854>>2] = $842; + break; + } + $855 = $qsize$0$i$i >>> 8; + $856 = ($855|0)==(0); + do { + if ($856) { + $I7$0$i$i = 0; + } else { + $857 = ($qsize$0$i$i>>>0)>(16777215); + if ($857) { + $I7$0$i$i = 31; + break; + } + $858 = (($855) + 1048320)|0; + $859 = $858 >>> 16; + $860 = $859 & 8; + $861 = $855 << $860; + $862 = (($861) + 520192)|0; + $863 = $862 >>> 16; + $864 = $863 & 4; + $865 = $864 | $860; + $866 = $861 << $864; + $867 = (($866) + 245760)|0; + $868 = $867 >>> 16; + $869 = $868 & 2; + $870 = $865 | $869; + $871 = (14 - ($870))|0; + $872 = $866 << $869; + $873 = $872 >>> 15; + $874 = (($871) + ($873))|0; + $875 = $874 << 1; + $876 = (($874) + 7)|0; + $877 = $qsize$0$i$i >>> $876; + $878 = $877 & 1; + $879 = $878 | $875; + $I7$0$i$i = $879; + } + } while(0); + $880 = ((32544 + ($I7$0$i$i<<2)|0) + 304|0); + $$sum12$i$i = (($$sum$i19$i) + 28)|0; + $881 = (($tbase$245$i) + ($$sum12$i$i)|0); + HEAP32[$881>>2] = $I7$0$i$i; + $$sum13$i$i = (($$sum$i19$i) + 16)|0; + $882 = (($tbase$245$i) + ($$sum13$i$i)|0); + $$sum14$i$i = (($$sum$i19$i) + 20)|0; + $883 = (($tbase$245$i) + ($$sum14$i$i)|0); + HEAP32[$883>>2] = 0; + HEAP32[$882>>2] = 0; + $884 = HEAP32[((32544 + 4|0))>>2]|0; + $885 = 1 << $I7$0$i$i; + $886 = $884 & $885; + $887 = ($886|0)==(0); + if ($887) { + $888 = $884 | $885; + HEAP32[((32544 + 4|0))>>2] = $888; + HEAP32[$880>>2] = $725; + $$sum15$i$i = (($$sum$i19$i) + 24)|0; + $889 = (($tbase$245$i) + ($$sum15$i$i)|0); + HEAP32[$889>>2] = $880; + $$sum16$i$i = (($$sum$i19$i) + 12)|0; + $890 = (($tbase$245$i) + ($$sum16$i$i)|0); + HEAP32[$890>>2] = $725; + $$sum17$i$i = (($$sum$i19$i) + 8)|0; + $891 = (($tbase$245$i) + ($$sum17$i$i)|0); + HEAP32[$891>>2] = $725; + break; + } + $892 = HEAP32[$880>>2]|0; + $893 = ($I7$0$i$i|0)==(31); + if ($893) { + $901 = 0; + } else { + $894 = $I7$0$i$i >>> 1; + $895 = (25 - ($894))|0; + $901 = $895; + } + $896 = (($892) + 4|0); + $897 = HEAP32[$896>>2]|0; + $898 = $897 & -8; + $899 = ($898|0)==($qsize$0$i$i|0); + L442: do { + if ($899) { + $T$0$lcssa$i26$i = $892; + } else { + $900 = $qsize$0$i$i << $901; + $K8$053$i$i = $900;$T$052$i$i = $892; + while(1) { + $908 = $K8$053$i$i >>> 31; + $909 = ((($T$052$i$i) + ($908<<2)|0) + 16|0); + $904 = HEAP32[$909>>2]|0; + $910 = ($904|0)==(0|0); + if ($910) { + break; + } + $902 = $K8$053$i$i << 1; + $903 = (($904) + 4|0); + $905 = HEAP32[$903>>2]|0; + $906 = $905 & -8; + $907 = ($906|0)==($qsize$0$i$i|0); + if ($907) { + $T$0$lcssa$i26$i = $904; + break L442; + } else { + $K8$053$i$i = $902;$T$052$i$i = $904; + } + } + $911 = HEAP32[((32544 + 16|0))>>2]|0; + $912 = ($909>>>0)<($911>>>0); + if ($912) { + _abort(); + // unreachable; + } else { + HEAP32[$909>>2] = $725; + $$sum23$i$i = (($$sum$i19$i) + 24)|0; + $913 = (($tbase$245$i) + ($$sum23$i$i)|0); + HEAP32[$913>>2] = $T$052$i$i; + $$sum24$i$i = (($$sum$i19$i) + 12)|0; + $914 = (($tbase$245$i) + ($$sum24$i$i)|0); + HEAP32[$914>>2] = $725; + $$sum25$i$i = (($$sum$i19$i) + 8)|0; + $915 = (($tbase$245$i) + ($$sum25$i$i)|0); + HEAP32[$915>>2] = $725; + break L345; + } + } + } while(0); + $916 = (($T$0$lcssa$i26$i) + 8|0); + $917 = HEAP32[$916>>2]|0; + $918 = HEAP32[((32544 + 16|0))>>2]|0; + $919 = ($T$0$lcssa$i26$i>>>0)>=($918>>>0); + $920 = ($917>>>0)>=($918>>>0); + $or$cond$i27$i = $919 & $920; + if ($or$cond$i27$i) { + $921 = (($917) + 12|0); + HEAP32[$921>>2] = $725; + HEAP32[$916>>2] = $725; + $$sum20$i$i = (($$sum$i19$i) + 8)|0; + $922 = (($tbase$245$i) + ($$sum20$i$i)|0); + HEAP32[$922>>2] = $917; + $$sum21$i$i = (($$sum$i19$i) + 12)|0; + $923 = (($tbase$245$i) + ($$sum21$i$i)|0); + HEAP32[$923>>2] = $T$0$lcssa$i26$i; + $$sum22$i$i = (($$sum$i19$i) + 24)|0; + $924 = (($tbase$245$i) + ($$sum22$i$i)|0); + HEAP32[$924>>2] = 0; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $$sum1819$i$i = $713 | 8; + $925 = (($tbase$245$i) + ($$sum1819$i$i)|0); + $mem$0 = $925; + STACKTOP = sp;return ($mem$0|0); + } + } + $sp$0$i$i$i = ((32544 + 448|0)); + while(1) { + $926 = HEAP32[$sp$0$i$i$i>>2]|0; + $927 = ($926>>>0)>($636>>>0); + if (!($927)) { + $928 = (($sp$0$i$i$i) + 4|0); + $929 = HEAP32[$928>>2]|0; + $930 = (($926) + ($929)|0); + $931 = ($930>>>0)>($636>>>0); + if ($931) { + break; + } + } + $932 = (($sp$0$i$i$i) + 8|0); + $933 = HEAP32[$932>>2]|0; + $sp$0$i$i$i = $933; + } + $$sum$i13$i = (($929) + -47)|0; + $$sum1$i14$i = (($929) + -39)|0; + $934 = (($926) + ($$sum1$i14$i)|0); + $935 = $934; + $936 = $935 & 7; + $937 = ($936|0)==(0); + if ($937) { + $940 = 0; + } else { + $938 = (0 - ($935))|0; + $939 = $938 & 7; + $940 = $939; + } + $$sum2$i15$i = (($$sum$i13$i) + ($940))|0; + $941 = (($926) + ($$sum2$i15$i)|0); + $942 = (($636) + 16|0); + $943 = ($941>>>0)<($942>>>0); + $944 = $943 ? $636 : $941; + $945 = (($944) + 8|0); + $946 = (($tsize$244$i) + -40)|0; + $947 = (($tbase$245$i) + 8|0); + $948 = $947; + $949 = $948 & 7; + $950 = ($949|0)==(0); + if ($950) { + $954 = 0; + } else { + $951 = (0 - ($948))|0; + $952 = $951 & 7; + $954 = $952; + } + $953 = (($tbase$245$i) + ($954)|0); + $955 = (($946) - ($954))|0; + HEAP32[((32544 + 24|0))>>2] = $953; + HEAP32[((32544 + 12|0))>>2] = $955; + $956 = $955 | 1; + $$sum$i$i$i = (($954) + 4)|0; + $957 = (($tbase$245$i) + ($$sum$i$i$i)|0); + HEAP32[$957>>2] = $956; + $$sum2$i$i$i = (($tsize$244$i) + -36)|0; + $958 = (($tbase$245$i) + ($$sum2$i$i$i)|0); + HEAP32[$958>>2] = 40; + $959 = HEAP32[((33016 + 16|0))>>2]|0; + HEAP32[((32544 + 28|0))>>2] = $959; + $960 = (($944) + 4|0); + HEAP32[$960>>2] = 27; + ;HEAP32[$945+0>>2]=HEAP32[((32544 + 448|0))+0>>2]|0;HEAP32[$945+4>>2]=HEAP32[((32544 + 448|0))+4>>2]|0;HEAP32[$945+8>>2]=HEAP32[((32544 + 448|0))+8>>2]|0;HEAP32[$945+12>>2]=HEAP32[((32544 + 448|0))+12>>2]|0; + HEAP32[((32544 + 448|0))>>2] = $tbase$245$i; + HEAP32[((32544 + 452|0))>>2] = $tsize$244$i; + HEAP32[((32544 + 460|0))>>2] = 0; + HEAP32[((32544 + 456|0))>>2] = $945; + $961 = (($944) + 28|0); + HEAP32[$961>>2] = 7; + $962 = (($944) + 32|0); + $963 = ($962>>>0)<($930>>>0); + if ($963) { + $965 = $961; + while(1) { + $964 = (($965) + 4|0); + HEAP32[$964>>2] = 7; + $966 = (($965) + 8|0); + $967 = ($966>>>0)<($930>>>0); + if ($967) { + $965 = $964; + } else { + break; + } + } + } + $968 = ($944|0)==($636|0); + if (!($968)) { + $969 = $944; + $970 = $636; + $971 = (($969) - ($970))|0; + $972 = (($636) + ($971)|0); + $$sum3$i$i = (($971) + 4)|0; + $973 = (($636) + ($$sum3$i$i)|0); + $974 = HEAP32[$973>>2]|0; + $975 = $974 & -2; + HEAP32[$973>>2] = $975; + $976 = $971 | 1; + $977 = (($636) + 4|0); + HEAP32[$977>>2] = $976; + HEAP32[$972>>2] = $971; + $978 = $971 >>> 3; + $979 = ($971>>>0)<(256); + if ($979) { + $980 = $978 << 1; + $981 = ((32544 + ($980<<2)|0) + 40|0); + $982 = HEAP32[32544>>2]|0; + $983 = 1 << $978; + $984 = $982 & $983; + $985 = ($984|0)==(0); + do { + if ($985) { + $986 = $982 | $983; + HEAP32[32544>>2] = $986; + $$sum10$pre$i$i = (($980) + 2)|0; + $$pre$i$i = ((32544 + ($$sum10$pre$i$i<<2)|0) + 40|0); + $$pre$phi$i$iZ2D = $$pre$i$i;$F$0$i$i = $981; + } else { + $$sum11$i$i = (($980) + 2)|0; + $987 = ((32544 + ($$sum11$i$i<<2)|0) + 40|0); + $988 = HEAP32[$987>>2]|0; + $989 = HEAP32[((32544 + 16|0))>>2]|0; + $990 = ($988>>>0)<($989>>>0); + if (!($990)) { + $$pre$phi$i$iZ2D = $987;$F$0$i$i = $988; + break; + } + _abort(); + // unreachable; + } + } while(0); + HEAP32[$$pre$phi$i$iZ2D>>2] = $636; + $991 = (($F$0$i$i) + 12|0); + HEAP32[$991>>2] = $636; + $992 = (($636) + 8|0); + HEAP32[$992>>2] = $F$0$i$i; + $993 = (($636) + 12|0); + HEAP32[$993>>2] = $981; + break; + } + $994 = $971 >>> 8; + $995 = ($994|0)==(0); + if ($995) { + $I1$0$i$i = 0; + } else { + $996 = ($971>>>0)>(16777215); + if ($996) { + $I1$0$i$i = 31; + } else { + $997 = (($994) + 1048320)|0; + $998 = $997 >>> 16; + $999 = $998 & 8; + $1000 = $994 << $999; + $1001 = (($1000) + 520192)|0; + $1002 = $1001 >>> 16; + $1003 = $1002 & 4; + $1004 = $1003 | $999; + $1005 = $1000 << $1003; + $1006 = (($1005) + 245760)|0; + $1007 = $1006 >>> 16; + $1008 = $1007 & 2; + $1009 = $1004 | $1008; + $1010 = (14 - ($1009))|0; + $1011 = $1005 << $1008; + $1012 = $1011 >>> 15; + $1013 = (($1010) + ($1012))|0; + $1014 = $1013 << 1; + $1015 = (($1013) + 7)|0; + $1016 = $971 >>> $1015; + $1017 = $1016 & 1; + $1018 = $1017 | $1014; + $I1$0$i$i = $1018; + } + } + $1019 = ((32544 + ($I1$0$i$i<<2)|0) + 304|0); + $1020 = (($636) + 28|0); + $I1$0$c$i$i = $I1$0$i$i; + HEAP32[$1020>>2] = $I1$0$c$i$i; + $1021 = (($636) + 20|0); + HEAP32[$1021>>2] = 0; + $1022 = (($636) + 16|0); + HEAP32[$1022>>2] = 0; + $1023 = HEAP32[((32544 + 4|0))>>2]|0; + $1024 = 1 << $I1$0$i$i; + $1025 = $1023 & $1024; + $1026 = ($1025|0)==(0); + if ($1026) { + $1027 = $1023 | $1024; + HEAP32[((32544 + 4|0))>>2] = $1027; + HEAP32[$1019>>2] = $636; + $1028 = (($636) + 24|0); + HEAP32[$1028>>2] = $1019; + $1029 = (($636) + 12|0); + HEAP32[$1029>>2] = $636; + $1030 = (($636) + 8|0); + HEAP32[$1030>>2] = $636; + break; + } + $1031 = HEAP32[$1019>>2]|0; + $1032 = ($I1$0$i$i|0)==(31); + if ($1032) { + $1040 = 0; + } else { + $1033 = $I1$0$i$i >>> 1; + $1034 = (25 - ($1033))|0; + $1040 = $1034; + } + $1035 = (($1031) + 4|0); + $1036 = HEAP32[$1035>>2]|0; + $1037 = $1036 & -8; + $1038 = ($1037|0)==($971|0); + L493: do { + if ($1038) { + $T$0$lcssa$i$i = $1031; + } else { + $1039 = $971 << $1040; + $K2$015$i$i = $1039;$T$014$i$i = $1031; + while(1) { + $1047 = $K2$015$i$i >>> 31; + $1048 = ((($T$014$i$i) + ($1047<<2)|0) + 16|0); + $1043 = HEAP32[$1048>>2]|0; + $1049 = ($1043|0)==(0|0); + if ($1049) { + break; + } + $1041 = $K2$015$i$i << 1; + $1042 = (($1043) + 4|0); + $1044 = HEAP32[$1042>>2]|0; + $1045 = $1044 & -8; + $1046 = ($1045|0)==($971|0); + if ($1046) { + $T$0$lcssa$i$i = $1043; + break L493; + } else { + $K2$015$i$i = $1041;$T$014$i$i = $1043; + } + } + $1050 = HEAP32[((32544 + 16|0))>>2]|0; + $1051 = ($1048>>>0)<($1050>>>0); + if ($1051) { + _abort(); + // unreachable; + } else { + HEAP32[$1048>>2] = $636; + $1052 = (($636) + 24|0); + HEAP32[$1052>>2] = $T$014$i$i; + $1053 = (($636) + 12|0); + HEAP32[$1053>>2] = $636; + $1054 = (($636) + 8|0); + HEAP32[$1054>>2] = $636; + break L308; + } + } + } while(0); + $1055 = (($T$0$lcssa$i$i) + 8|0); + $1056 = HEAP32[$1055>>2]|0; + $1057 = HEAP32[((32544 + 16|0))>>2]|0; + $1058 = ($T$0$lcssa$i$i>>>0)>=($1057>>>0); + $1059 = ($1056>>>0)>=($1057>>>0); + $or$cond$i$i = $1058 & $1059; + if ($or$cond$i$i) { + $1060 = (($1056) + 12|0); + HEAP32[$1060>>2] = $636; + HEAP32[$1055>>2] = $636; + $1061 = (($636) + 8|0); + HEAP32[$1061>>2] = $1056; + $1062 = (($636) + 12|0); + HEAP32[$1062>>2] = $T$0$lcssa$i$i; + $1063 = (($636) + 24|0); + HEAP32[$1063>>2] = 0; + break; + } else { + _abort(); + // unreachable; + } + } + } + } while(0); + $1064 = HEAP32[((32544 + 12|0))>>2]|0; + $1065 = ($1064>>>0)>($nb$0>>>0); + if ($1065) { + $1066 = (($1064) - ($nb$0))|0; + HEAP32[((32544 + 12|0))>>2] = $1066; + $1067 = HEAP32[((32544 + 24|0))>>2]|0; + $1068 = (($1067) + ($nb$0)|0); + HEAP32[((32544 + 24|0))>>2] = $1068; + $1069 = $1066 | 1; + $$sum$i32 = (($nb$0) + 4)|0; + $1070 = (($1067) + ($$sum$i32)|0); + HEAP32[$1070>>2] = $1069; + $1071 = $nb$0 | 3; + $1072 = (($1067) + 4|0); + HEAP32[$1072>>2] = $1071; + $1073 = (($1067) + 8|0); + $mem$0 = $1073; + STACKTOP = sp;return ($mem$0|0); + } + } + $1074 = (___errno_location()|0); + HEAP32[$1074>>2] = 12; + $mem$0 = 0; + STACKTOP = sp;return ($mem$0|0); +} +function _free($mem) { + $mem = $mem|0; + var $$pre = 0, $$pre$phi66Z2D = 0, $$pre$phi68Z2D = 0, $$pre$phiZ2D = 0, $$pre65 = 0, $$pre67 = 0, $$sum = 0, $$sum16$pre = 0, $$sum17 = 0, $$sum18 = 0, $$sum19 = 0, $$sum2 = 0, $$sum20 = 0, $$sum2324 = 0, $$sum25 = 0, $$sum26 = 0, $$sum28 = 0, $$sum29 = 0, $$sum3 = 0, $$sum30 = 0; + var $$sum31 = 0, $$sum32 = 0, $$sum33 = 0, $$sum34 = 0, $$sum35 = 0, $$sum36 = 0, $$sum37 = 0, $$sum5 = 0, $$sum67 = 0, $$sum8 = 0, $$sum9 = 0, $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0; + var $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0; + var $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0; + var $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0; + var $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0; + var $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0; + var $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0; + var $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0; + var $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0; + var $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0; + var $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0; + var $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0; + var $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0; + var $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0; + var $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0; + var $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0; + var $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $F16$0 = 0, $I18$0 = 0, $I18$0$c = 0, $K19$058 = 0, $R$0 = 0, $R$1 = 0, $R7$0 = 0; + var $R7$1 = 0, $RP$0 = 0, $RP9$0 = 0, $T$0$lcssa = 0, $T$057 = 0, $cond = 0, $cond54 = 0, $or$cond = 0, $p$0 = 0, $psize$0 = 0, $psize$1 = 0, $sp$0$i = 0, $sp$0$in$i = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = ($mem|0)==(0|0); + if ($0) { + STACKTOP = sp;return; + } + $1 = (($mem) + -8|0); + $2 = HEAP32[((32544 + 16|0))>>2]|0; + $3 = ($1>>>0)<($2>>>0); + if ($3) { + _abort(); + // unreachable; + } + $4 = (($mem) + -4|0); + $5 = HEAP32[$4>>2]|0; + $6 = $5 & 3; + $7 = ($6|0)==(1); + if ($7) { + _abort(); + // unreachable; + } + $8 = $5 & -8; + $$sum = (($8) + -8)|0; + $9 = (($mem) + ($$sum)|0); + $10 = $5 & 1; + $11 = ($10|0)==(0); + do { + if ($11) { + $12 = HEAP32[$1>>2]|0; + $13 = ($6|0)==(0); + if ($13) { + STACKTOP = sp;return; + } + $$sum2 = (-8 - ($12))|0; + $14 = (($mem) + ($$sum2)|0); + $15 = (($12) + ($8))|0; + $16 = ($14>>>0)<($2>>>0); + if ($16) { + _abort(); + // unreachable; + } + $17 = HEAP32[((32544 + 20|0))>>2]|0; + $18 = ($14|0)==($17|0); + if ($18) { + $$sum3 = (($8) + -4)|0; + $103 = (($mem) + ($$sum3)|0); + $104 = HEAP32[$103>>2]|0; + $105 = $104 & 3; + $106 = ($105|0)==(3); + if (!($106)) { + $p$0 = $14;$psize$0 = $15; + break; + } + HEAP32[((32544 + 8|0))>>2] = $15; + $107 = $104 & -2; + HEAP32[$103>>2] = $107; + $108 = $15 | 1; + $$sum26 = (($$sum2) + 4)|0; + $109 = (($mem) + ($$sum26)|0); + HEAP32[$109>>2] = $108; + HEAP32[$9>>2] = $15; + STACKTOP = sp;return; + } + $19 = $12 >>> 3; + $20 = ($12>>>0)<(256); + if ($20) { + $$sum36 = (($$sum2) + 8)|0; + $21 = (($mem) + ($$sum36)|0); + $22 = HEAP32[$21>>2]|0; + $$sum37 = (($$sum2) + 12)|0; + $23 = (($mem) + ($$sum37)|0); + $24 = HEAP32[$23>>2]|0; + $25 = $19 << 1; + $26 = ((32544 + ($25<<2)|0) + 40|0); + $27 = ($22|0)==($26|0); + if (!($27)) { + $28 = ($22>>>0)<($2>>>0); + if ($28) { + _abort(); + // unreachable; + } + $29 = (($22) + 12|0); + $30 = HEAP32[$29>>2]|0; + $31 = ($30|0)==($14|0); + if (!($31)) { + _abort(); + // unreachable; + } + } + $32 = ($24|0)==($22|0); + if ($32) { + $33 = 1 << $19; + $34 = $33 ^ -1; + $35 = HEAP32[32544>>2]|0; + $36 = $35 & $34; + HEAP32[32544>>2] = $36; + $p$0 = $14;$psize$0 = $15; + break; + } + $37 = ($24|0)==($26|0); + if ($37) { + $$pre67 = (($24) + 8|0); + $$pre$phi68Z2D = $$pre67; + } else { + $38 = ($24>>>0)<($2>>>0); + if ($38) { + _abort(); + // unreachable; + } + $39 = (($24) + 8|0); + $40 = HEAP32[$39>>2]|0; + $41 = ($40|0)==($14|0); + if ($41) { + $$pre$phi68Z2D = $39; + } else { + _abort(); + // unreachable; + } + } + $42 = (($22) + 12|0); + HEAP32[$42>>2] = $24; + HEAP32[$$pre$phi68Z2D>>2] = $22; + $p$0 = $14;$psize$0 = $15; + break; + } + $$sum28 = (($$sum2) + 24)|0; + $43 = (($mem) + ($$sum28)|0); + $44 = HEAP32[$43>>2]|0; + $$sum29 = (($$sum2) + 12)|0; + $45 = (($mem) + ($$sum29)|0); + $46 = HEAP32[$45>>2]|0; + $47 = ($46|0)==($14|0); + do { + if ($47) { + $$sum31 = (($$sum2) + 20)|0; + $57 = (($mem) + ($$sum31)|0); + $58 = HEAP32[$57>>2]|0; + $59 = ($58|0)==(0|0); + if ($59) { + $$sum30 = (($$sum2) + 16)|0; + $60 = (($mem) + ($$sum30)|0); + $61 = HEAP32[$60>>2]|0; + $62 = ($61|0)==(0|0); + if ($62) { + $R$1 = 0; + break; + } else { + $R$0 = $61;$RP$0 = $60; + } + } else { + $R$0 = $58;$RP$0 = $57; + } + while(1) { + $63 = (($R$0) + 20|0); + $64 = HEAP32[$63>>2]|0; + $65 = ($64|0)==(0|0); + if (!($65)) { + $R$0 = $64;$RP$0 = $63; + continue; + } + $66 = (($R$0) + 16|0); + $67 = HEAP32[$66>>2]|0; + $68 = ($67|0)==(0|0); + if ($68) { + break; + } else { + $R$0 = $67;$RP$0 = $66; + } + } + $69 = ($RP$0>>>0)<($2>>>0); + if ($69) { + _abort(); + // unreachable; + } else { + HEAP32[$RP$0>>2] = 0; + $R$1 = $R$0; + break; + } + } else { + $$sum35 = (($$sum2) + 8)|0; + $48 = (($mem) + ($$sum35)|0); + $49 = HEAP32[$48>>2]|0; + $50 = ($49>>>0)<($2>>>0); + if ($50) { + _abort(); + // unreachable; + } + $51 = (($49) + 12|0); + $52 = HEAP32[$51>>2]|0; + $53 = ($52|0)==($14|0); + if (!($53)) { + _abort(); + // unreachable; + } + $54 = (($46) + 8|0); + $55 = HEAP32[$54>>2]|0; + $56 = ($55|0)==($14|0); + if ($56) { + HEAP32[$51>>2] = $46; + HEAP32[$54>>2] = $49; + $R$1 = $46; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $70 = ($44|0)==(0|0); + if ($70) { + $p$0 = $14;$psize$0 = $15; + } else { + $$sum32 = (($$sum2) + 28)|0; + $71 = (($mem) + ($$sum32)|0); + $72 = HEAP32[$71>>2]|0; + $73 = ((32544 + ($72<<2)|0) + 304|0); + $74 = HEAP32[$73>>2]|0; + $75 = ($14|0)==($74|0); + if ($75) { + HEAP32[$73>>2] = $R$1; + $cond = ($R$1|0)==(0|0); + if ($cond) { + $76 = 1 << $72; + $77 = $76 ^ -1; + $78 = HEAP32[((32544 + 4|0))>>2]|0; + $79 = $78 & $77; + HEAP32[((32544 + 4|0))>>2] = $79; + $p$0 = $14;$psize$0 = $15; + break; + } + } else { + $80 = HEAP32[((32544 + 16|0))>>2]|0; + $81 = ($44>>>0)<($80>>>0); + if ($81) { + _abort(); + // unreachable; + } + $82 = (($44) + 16|0); + $83 = HEAP32[$82>>2]|0; + $84 = ($83|0)==($14|0); + if ($84) { + HEAP32[$82>>2] = $R$1; + } else { + $85 = (($44) + 20|0); + HEAP32[$85>>2] = $R$1; + } + $86 = ($R$1|0)==(0|0); + if ($86) { + $p$0 = $14;$psize$0 = $15; + break; + } + } + $87 = HEAP32[((32544 + 16|0))>>2]|0; + $88 = ($R$1>>>0)<($87>>>0); + if ($88) { + _abort(); + // unreachable; + } + $89 = (($R$1) + 24|0); + HEAP32[$89>>2] = $44; + $$sum33 = (($$sum2) + 16)|0; + $90 = (($mem) + ($$sum33)|0); + $91 = HEAP32[$90>>2]|0; + $92 = ($91|0)==(0|0); + do { + if (!($92)) { + $93 = ($91>>>0)<($87>>>0); + if ($93) { + _abort(); + // unreachable; + } else { + $94 = (($R$1) + 16|0); + HEAP32[$94>>2] = $91; + $95 = (($91) + 24|0); + HEAP32[$95>>2] = $R$1; + break; + } + } + } while(0); + $$sum34 = (($$sum2) + 20)|0; + $96 = (($mem) + ($$sum34)|0); + $97 = HEAP32[$96>>2]|0; + $98 = ($97|0)==(0|0); + if ($98) { + $p$0 = $14;$psize$0 = $15; + } else { + $99 = HEAP32[((32544 + 16|0))>>2]|0; + $100 = ($97>>>0)<($99>>>0); + if ($100) { + _abort(); + // unreachable; + } else { + $101 = (($R$1) + 20|0); + HEAP32[$101>>2] = $97; + $102 = (($97) + 24|0); + HEAP32[$102>>2] = $R$1; + $p$0 = $14;$psize$0 = $15; + break; + } + } + } + } else { + $p$0 = $1;$psize$0 = $8; + } + } while(0); + $110 = ($p$0>>>0)<($9>>>0); + if (!($110)) { + _abort(); + // unreachable; + } + $$sum25 = (($8) + -4)|0; + $111 = (($mem) + ($$sum25)|0); + $112 = HEAP32[$111>>2]|0; + $113 = $112 & 1; + $114 = ($113|0)==(0); + if ($114) { + _abort(); + // unreachable; + } + $115 = $112 & 2; + $116 = ($115|0)==(0); + if ($116) { + $117 = HEAP32[((32544 + 24|0))>>2]|0; + $118 = ($9|0)==($117|0); + if ($118) { + $119 = HEAP32[((32544 + 12|0))>>2]|0; + $120 = (($119) + ($psize$0))|0; + HEAP32[((32544 + 12|0))>>2] = $120; + HEAP32[((32544 + 24|0))>>2] = $p$0; + $121 = $120 | 1; + $122 = (($p$0) + 4|0); + HEAP32[$122>>2] = $121; + $123 = HEAP32[((32544 + 20|0))>>2]|0; + $124 = ($p$0|0)==($123|0); + if (!($124)) { + STACKTOP = sp;return; + } + HEAP32[((32544 + 20|0))>>2] = 0; + HEAP32[((32544 + 8|0))>>2] = 0; + STACKTOP = sp;return; + } + $125 = HEAP32[((32544 + 20|0))>>2]|0; + $126 = ($9|0)==($125|0); + if ($126) { + $127 = HEAP32[((32544 + 8|0))>>2]|0; + $128 = (($127) + ($psize$0))|0; + HEAP32[((32544 + 8|0))>>2] = $128; + HEAP32[((32544 + 20|0))>>2] = $p$0; + $129 = $128 | 1; + $130 = (($p$0) + 4|0); + HEAP32[$130>>2] = $129; + $131 = (($p$0) + ($128)|0); + HEAP32[$131>>2] = $128; + STACKTOP = sp;return; + } + $132 = $112 & -8; + $133 = (($132) + ($psize$0))|0; + $134 = $112 >>> 3; + $135 = ($112>>>0)<(256); + do { + if ($135) { + $136 = (($mem) + ($8)|0); + $137 = HEAP32[$136>>2]|0; + $$sum2324 = $8 | 4; + $138 = (($mem) + ($$sum2324)|0); + $139 = HEAP32[$138>>2]|0; + $140 = $134 << 1; + $141 = ((32544 + ($140<<2)|0) + 40|0); + $142 = ($137|0)==($141|0); + if (!($142)) { + $143 = HEAP32[((32544 + 16|0))>>2]|0; + $144 = ($137>>>0)<($143>>>0); + if ($144) { + _abort(); + // unreachable; + } + $145 = (($137) + 12|0); + $146 = HEAP32[$145>>2]|0; + $147 = ($146|0)==($9|0); + if (!($147)) { + _abort(); + // unreachable; + } + } + $148 = ($139|0)==($137|0); + if ($148) { + $149 = 1 << $134; + $150 = $149 ^ -1; + $151 = HEAP32[32544>>2]|0; + $152 = $151 & $150; + HEAP32[32544>>2] = $152; + break; + } + $153 = ($139|0)==($141|0); + if ($153) { + $$pre65 = (($139) + 8|0); + $$pre$phi66Z2D = $$pre65; + } else { + $154 = HEAP32[((32544 + 16|0))>>2]|0; + $155 = ($139>>>0)<($154>>>0); + if ($155) { + _abort(); + // unreachable; + } + $156 = (($139) + 8|0); + $157 = HEAP32[$156>>2]|0; + $158 = ($157|0)==($9|0); + if ($158) { + $$pre$phi66Z2D = $156; + } else { + _abort(); + // unreachable; + } + } + $159 = (($137) + 12|0); + HEAP32[$159>>2] = $139; + HEAP32[$$pre$phi66Z2D>>2] = $137; + } else { + $$sum5 = (($8) + 16)|0; + $160 = (($mem) + ($$sum5)|0); + $161 = HEAP32[$160>>2]|0; + $$sum67 = $8 | 4; + $162 = (($mem) + ($$sum67)|0); + $163 = HEAP32[$162>>2]|0; + $164 = ($163|0)==($9|0); + do { + if ($164) { + $$sum9 = (($8) + 12)|0; + $175 = (($mem) + ($$sum9)|0); + $176 = HEAP32[$175>>2]|0; + $177 = ($176|0)==(0|0); + if ($177) { + $$sum8 = (($8) + 8)|0; + $178 = (($mem) + ($$sum8)|0); + $179 = HEAP32[$178>>2]|0; + $180 = ($179|0)==(0|0); + if ($180) { + $R7$1 = 0; + break; + } else { + $R7$0 = $179;$RP9$0 = $178; + } + } else { + $R7$0 = $176;$RP9$0 = $175; + } + while(1) { + $181 = (($R7$0) + 20|0); + $182 = HEAP32[$181>>2]|0; + $183 = ($182|0)==(0|0); + if (!($183)) { + $R7$0 = $182;$RP9$0 = $181; + continue; + } + $184 = (($R7$0) + 16|0); + $185 = HEAP32[$184>>2]|0; + $186 = ($185|0)==(0|0); + if ($186) { + break; + } else { + $R7$0 = $185;$RP9$0 = $184; + } + } + $187 = HEAP32[((32544 + 16|0))>>2]|0; + $188 = ($RP9$0>>>0)<($187>>>0); + if ($188) { + _abort(); + // unreachable; + } else { + HEAP32[$RP9$0>>2] = 0; + $R7$1 = $R7$0; + break; + } + } else { + $165 = (($mem) + ($8)|0); + $166 = HEAP32[$165>>2]|0; + $167 = HEAP32[((32544 + 16|0))>>2]|0; + $168 = ($166>>>0)<($167>>>0); + if ($168) { + _abort(); + // unreachable; + } + $169 = (($166) + 12|0); + $170 = HEAP32[$169>>2]|0; + $171 = ($170|0)==($9|0); + if (!($171)) { + _abort(); + // unreachable; + } + $172 = (($163) + 8|0); + $173 = HEAP32[$172>>2]|0; + $174 = ($173|0)==($9|0); + if ($174) { + HEAP32[$169>>2] = $163; + HEAP32[$172>>2] = $166; + $R7$1 = $163; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $189 = ($161|0)==(0|0); + if (!($189)) { + $$sum18 = (($8) + 20)|0; + $190 = (($mem) + ($$sum18)|0); + $191 = HEAP32[$190>>2]|0; + $192 = ((32544 + ($191<<2)|0) + 304|0); + $193 = HEAP32[$192>>2]|0; + $194 = ($9|0)==($193|0); + if ($194) { + HEAP32[$192>>2] = $R7$1; + $cond54 = ($R7$1|0)==(0|0); + if ($cond54) { + $195 = 1 << $191; + $196 = $195 ^ -1; + $197 = HEAP32[((32544 + 4|0))>>2]|0; + $198 = $197 & $196; + HEAP32[((32544 + 4|0))>>2] = $198; + break; + } + } else { + $199 = HEAP32[((32544 + 16|0))>>2]|0; + $200 = ($161>>>0)<($199>>>0); + if ($200) { + _abort(); + // unreachable; + } + $201 = (($161) + 16|0); + $202 = HEAP32[$201>>2]|0; + $203 = ($202|0)==($9|0); + if ($203) { + HEAP32[$201>>2] = $R7$1; + } else { + $204 = (($161) + 20|0); + HEAP32[$204>>2] = $R7$1; + } + $205 = ($R7$1|0)==(0|0); + if ($205) { + break; + } + } + $206 = HEAP32[((32544 + 16|0))>>2]|0; + $207 = ($R7$1>>>0)<($206>>>0); + if ($207) { + _abort(); + // unreachable; + } + $208 = (($R7$1) + 24|0); + HEAP32[$208>>2] = $161; + $$sum19 = (($8) + 8)|0; + $209 = (($mem) + ($$sum19)|0); + $210 = HEAP32[$209>>2]|0; + $211 = ($210|0)==(0|0); + do { + if (!($211)) { + $212 = ($210>>>0)<($206>>>0); + if ($212) { + _abort(); + // unreachable; + } else { + $213 = (($R7$1) + 16|0); + HEAP32[$213>>2] = $210; + $214 = (($210) + 24|0); + HEAP32[$214>>2] = $R7$1; + break; + } + } + } while(0); + $$sum20 = (($8) + 12)|0; + $215 = (($mem) + ($$sum20)|0); + $216 = HEAP32[$215>>2]|0; + $217 = ($216|0)==(0|0); + if (!($217)) { + $218 = HEAP32[((32544 + 16|0))>>2]|0; + $219 = ($216>>>0)<($218>>>0); + if ($219) { + _abort(); + // unreachable; + } else { + $220 = (($R7$1) + 20|0); + HEAP32[$220>>2] = $216; + $221 = (($216) + 24|0); + HEAP32[$221>>2] = $R7$1; + break; + } + } + } + } + } while(0); + $222 = $133 | 1; + $223 = (($p$0) + 4|0); + HEAP32[$223>>2] = $222; + $224 = (($p$0) + ($133)|0); + HEAP32[$224>>2] = $133; + $225 = HEAP32[((32544 + 20|0))>>2]|0; + $226 = ($p$0|0)==($225|0); + if ($226) { + HEAP32[((32544 + 8|0))>>2] = $133; + STACKTOP = sp;return; + } else { + $psize$1 = $133; + } + } else { + $227 = $112 & -2; + HEAP32[$111>>2] = $227; + $228 = $psize$0 | 1; + $229 = (($p$0) + 4|0); + HEAP32[$229>>2] = $228; + $230 = (($p$0) + ($psize$0)|0); + HEAP32[$230>>2] = $psize$0; + $psize$1 = $psize$0; + } + $231 = $psize$1 >>> 3; + $232 = ($psize$1>>>0)<(256); + if ($232) { + $233 = $231 << 1; + $234 = ((32544 + ($233<<2)|0) + 40|0); + $235 = HEAP32[32544>>2]|0; + $236 = 1 << $231; + $237 = $235 & $236; + $238 = ($237|0)==(0); + if ($238) { + $239 = $235 | $236; + HEAP32[32544>>2] = $239; + $$sum16$pre = (($233) + 2)|0; + $$pre = ((32544 + ($$sum16$pre<<2)|0) + 40|0); + $$pre$phiZ2D = $$pre;$F16$0 = $234; + } else { + $$sum17 = (($233) + 2)|0; + $240 = ((32544 + ($$sum17<<2)|0) + 40|0); + $241 = HEAP32[$240>>2]|0; + $242 = HEAP32[((32544 + 16|0))>>2]|0; + $243 = ($241>>>0)<($242>>>0); + if ($243) { + _abort(); + // unreachable; + } else { + $$pre$phiZ2D = $240;$F16$0 = $241; + } + } + HEAP32[$$pre$phiZ2D>>2] = $p$0; + $244 = (($F16$0) + 12|0); + HEAP32[$244>>2] = $p$0; + $245 = (($p$0) + 8|0); + HEAP32[$245>>2] = $F16$0; + $246 = (($p$0) + 12|0); + HEAP32[$246>>2] = $234; + STACKTOP = sp;return; + } + $247 = $psize$1 >>> 8; + $248 = ($247|0)==(0); + if ($248) { + $I18$0 = 0; + } else { + $249 = ($psize$1>>>0)>(16777215); + if ($249) { + $I18$0 = 31; + } else { + $250 = (($247) + 1048320)|0; + $251 = $250 >>> 16; + $252 = $251 & 8; + $253 = $247 << $252; + $254 = (($253) + 520192)|0; + $255 = $254 >>> 16; + $256 = $255 & 4; + $257 = $256 | $252; + $258 = $253 << $256; + $259 = (($258) + 245760)|0; + $260 = $259 >>> 16; + $261 = $260 & 2; + $262 = $257 | $261; + $263 = (14 - ($262))|0; + $264 = $258 << $261; + $265 = $264 >>> 15; + $266 = (($263) + ($265))|0; + $267 = $266 << 1; + $268 = (($266) + 7)|0; + $269 = $psize$1 >>> $268; + $270 = $269 & 1; + $271 = $270 | $267; + $I18$0 = $271; + } + } + $272 = ((32544 + ($I18$0<<2)|0) + 304|0); + $273 = (($p$0) + 28|0); + $I18$0$c = $I18$0; + HEAP32[$273>>2] = $I18$0$c; + $274 = (($p$0) + 20|0); + HEAP32[$274>>2] = 0; + $275 = (($p$0) + 16|0); + HEAP32[$275>>2] = 0; + $276 = HEAP32[((32544 + 4|0))>>2]|0; + $277 = 1 << $I18$0; + $278 = $276 & $277; + $279 = ($278|0)==(0); + L199: do { + if ($279) { + $280 = $276 | $277; + HEAP32[((32544 + 4|0))>>2] = $280; + HEAP32[$272>>2] = $p$0; + $281 = (($p$0) + 24|0); + HEAP32[$281>>2] = $272; + $282 = (($p$0) + 12|0); + HEAP32[$282>>2] = $p$0; + $283 = (($p$0) + 8|0); + HEAP32[$283>>2] = $p$0; + } else { + $284 = HEAP32[$272>>2]|0; + $285 = ($I18$0|0)==(31); + if ($285) { + $293 = 0; + } else { + $286 = $I18$0 >>> 1; + $287 = (25 - ($286))|0; + $293 = $287; + } + $288 = (($284) + 4|0); + $289 = HEAP32[$288>>2]|0; + $290 = $289 & -8; + $291 = ($290|0)==($psize$1|0); + L205: do { + if ($291) { + $T$0$lcssa = $284; + } else { + $292 = $psize$1 << $293; + $K19$058 = $292;$T$057 = $284; + while(1) { + $300 = $K19$058 >>> 31; + $301 = ((($T$057) + ($300<<2)|0) + 16|0); + $296 = HEAP32[$301>>2]|0; + $302 = ($296|0)==(0|0); + if ($302) { + break; + } + $294 = $K19$058 << 1; + $295 = (($296) + 4|0); + $297 = HEAP32[$295>>2]|0; + $298 = $297 & -8; + $299 = ($298|0)==($psize$1|0); + if ($299) { + $T$0$lcssa = $296; + break L205; + } else { + $K19$058 = $294;$T$057 = $296; + } + } + $303 = HEAP32[((32544 + 16|0))>>2]|0; + $304 = ($301>>>0)<($303>>>0); + if ($304) { + _abort(); + // unreachable; + } else { + HEAP32[$301>>2] = $p$0; + $305 = (($p$0) + 24|0); + HEAP32[$305>>2] = $T$057; + $306 = (($p$0) + 12|0); + HEAP32[$306>>2] = $p$0; + $307 = (($p$0) + 8|0); + HEAP32[$307>>2] = $p$0; + break L199; + } + } + } while(0); + $308 = (($T$0$lcssa) + 8|0); + $309 = HEAP32[$308>>2]|0; + $310 = HEAP32[((32544 + 16|0))>>2]|0; + $311 = ($T$0$lcssa>>>0)>=($310>>>0); + $312 = ($309>>>0)>=($310>>>0); + $or$cond = $311 & $312; + if ($or$cond) { + $313 = (($309) + 12|0); + HEAP32[$313>>2] = $p$0; + HEAP32[$308>>2] = $p$0; + $314 = (($p$0) + 8|0); + HEAP32[$314>>2] = $309; + $315 = (($p$0) + 12|0); + HEAP32[$315>>2] = $T$0$lcssa; + $316 = (($p$0) + 24|0); + HEAP32[$316>>2] = 0; + break; + } else { + _abort(); + // unreachable; + } + } + } while(0); + $317 = HEAP32[((32544 + 32|0))>>2]|0; + $318 = (($317) + -1)|0; + HEAP32[((32544 + 32|0))>>2] = $318; + $319 = ($318|0)==(0); + if ($319) { + $sp$0$in$i = ((32544 + 456|0)); + } else { + STACKTOP = sp;return; + } + while(1) { + $sp$0$i = HEAP32[$sp$0$in$i>>2]|0; + $320 = ($sp$0$i|0)==(0|0); + $321 = (($sp$0$i) + 8|0); + if ($320) { + break; + } else { + $sp$0$in$i = $321; + } + } + HEAP32[((32544 + 32|0))>>2] = -1; + STACKTOP = sp;return; +} +function runPostSets() { + +} +function _bitshift64Ashr(low, high, bits) { + low = low|0; high = high|0; bits = bits|0; + var ander = 0; + if ((bits|0) < 32) { + ander = ((1 << bits) - 1)|0; + tempRet0 = high >> bits; + return (low >>> bits) | ((high&ander) << (32 - bits)); + } + tempRet0 = (high|0) < 0 ? -1 : 0; + return (high >> (bits - 32))|0; +} +function _i64Subtract(a, b, c, d) { + a = a|0; b = b|0; c = c|0; d = d|0; + var l = 0, h = 0; + l = (a - c)>>>0; + h = (b - d)>>>0; + h = (b - d - (((c>>>0) > (a>>>0))|0))>>>0; // Borrow one from high word to low word on underflow. + return ((tempRet0 = h,l|0)|0); +} +function _i64Add(a, b, c, d) { + /* + x = a + b*2^32 + y = c + d*2^32 + result = l + h*2^32 + */ + a = a|0; b = b|0; c = c|0; d = d|0; + var l = 0, h = 0; + l = (a + c)>>>0; + h = (b + d + (((l>>>0) < (a>>>0))|0))>>>0; // Add carry from low word to high word on overflow. + return ((tempRet0 = h,l|0)|0); +} +function _memset(ptr, value, num) { + ptr = ptr|0; value = value|0; num = num|0; + var stop = 0, value4 = 0, stop4 = 0, unaligned = 0; + stop = (ptr + num)|0; + if ((num|0) >= 20) { + // This is unaligned, but quite large, so work hard to get to aligned settings + value = value & 0xff; + unaligned = ptr & 3; + value4 = value | (value << 8) | (value << 16) | (value << 24); + stop4 = stop & ~3; + if (unaligned) { + unaligned = (ptr + 4 - unaligned)|0; + while ((ptr|0) < (unaligned|0)) { // no need to check for stop, since we have large num + HEAP8[((ptr)>>0)]=value; + ptr = (ptr+1)|0; + } + } + while ((ptr|0) < (stop4|0)) { + HEAP32[((ptr)>>2)]=value4; + ptr = (ptr+4)|0; + } + } + while ((ptr|0) < (stop|0)) { + HEAP8[((ptr)>>0)]=value; + ptr = (ptr+1)|0; + } + return (ptr-num)|0; +} +function _bitshift64Lshr(low, high, bits) { + low = low|0; high = high|0; bits = bits|0; + var ander = 0; + if ((bits|0) < 32) { + ander = ((1 << bits) - 1)|0; + tempRet0 = high >>> bits; + return (low >>> bits) | ((high&ander) << (32 - bits)); + } + tempRet0 = 0; + return (high >>> (bits - 32))|0; +} +function _bitshift64Shl(low, high, bits) { + low = low|0; high = high|0; bits = bits|0; + var ander = 0; + if ((bits|0) < 32) { + ander = ((1 << bits) - 1)|0; + tempRet0 = (high << bits) | ((low&(ander << (32 - bits))) >>> (32 - bits)); + return low << bits; + } + tempRet0 = low << (bits - 32); + return 0; +} +function _strlen(ptr) { + ptr = ptr|0; + var curr = 0; + curr = ptr; + while (((HEAP8[((curr)>>0)])|0)) { + curr = (curr + 1)|0; + } + return (curr - ptr)|0; +} +function _memcpy(dest, src, num) { + + dest = dest|0; src = src|0; num = num|0; + var ret = 0; + if ((num|0) >= 4096) return _emscripten_memcpy_big(dest|0, src|0, num|0)|0; + ret = dest|0; + if ((dest&3) == (src&3)) { + while (dest & 3) { + if ((num|0) == 0) return ret|0; + HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); + dest = (dest+1)|0; + src = (src+1)|0; + num = (num-1)|0; + } + while ((num|0) >= 4) { + HEAP32[((dest)>>2)]=((HEAP32[((src)>>2)])|0); + dest = (dest+4)|0; + src = (src+4)|0; + num = (num-4)|0; + } + } + while ((num|0) > 0) { + HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); + dest = (dest+1)|0; + src = (src+1)|0; + num = (num-1)|0; + } + return ret|0; +} +function _memmove(dest, src, num) { + dest = dest|0; src = src|0; num = num|0; + var ret = 0; + if (((src|0) < (dest|0)) & ((dest|0) < ((src + num)|0))) { + // Unlikely case: Copy backwards in a safe manner + ret = dest; + src = (src + num)|0; + dest = (dest + num)|0; + while ((num|0) > 0) { + dest = (dest - 1)|0; + src = (src - 1)|0; + num = (num - 1)|0; + HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); + } + dest = ret; + } else { + _memcpy(dest, src, num) | 0; + } + return dest | 0; +} +function _llvm_ctlz_i32(x) { + x = x|0; + var ret = 0; + ret = ((HEAP8[(((ctlz_i8)+(x >>> 24))>>0)])|0); + if ((ret|0) < 8) return ret|0; + ret = ((HEAP8[(((ctlz_i8)+((x >> 16)&0xff))>>0)])|0); + if ((ret|0) < 8) return (ret + 8)|0; + ret = ((HEAP8[(((ctlz_i8)+((x >> 8)&0xff))>>0)])|0); + if ((ret|0) < 8) return (ret + 16)|0; + return (((HEAP8[(((ctlz_i8)+(x&0xff))>>0)])|0) + 24)|0; + } + +function _llvm_cttz_i32(x) { + x = x|0; + var ret = 0; + ret = ((HEAP8[(((cttz_i8)+(x & 0xff))>>0)])|0); + if ((ret|0) < 8) return ret|0; + ret = ((HEAP8[(((cttz_i8)+((x >> 8)&0xff))>>0)])|0); + if ((ret|0) < 8) return (ret + 8)|0; + ret = ((HEAP8[(((cttz_i8)+((x >> 16)&0xff))>>0)])|0); + if ((ret|0) < 8) return (ret + 16)|0; + return (((HEAP8[(((cttz_i8)+(x >>> 24))>>0)])|0) + 24)|0; + } + +// ======== compiled code from system/lib/compiler-rt , see readme therein +function ___muldsi3($a, $b) { + $a = $a | 0; + $b = $b | 0; + var $1 = 0, $2 = 0, $3 = 0, $6 = 0, $8 = 0, $11 = 0, $12 = 0; + $1 = $a & 65535; + $2 = $b & 65535; + $3 = Math_imul($2, $1) | 0; + $6 = $a >>> 16; + $8 = ($3 >>> 16) + (Math_imul($2, $6) | 0) | 0; + $11 = $b >>> 16; + $12 = Math_imul($11, $1) | 0; + return (tempRet0 = (($8 >>> 16) + (Math_imul($11, $6) | 0) | 0) + ((($8 & 65535) + $12 | 0) >>> 16) | 0, 0 | ($8 + $12 << 16 | $3 & 65535)) | 0; +} +function ___divdi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $1$0 = 0, $1$1 = 0, $2$0 = 0, $2$1 = 0, $4$0 = 0, $4$1 = 0, $6$0 = 0, $7$0 = 0, $7$1 = 0, $8$0 = 0, $10$0 = 0; + $1$0 = $a$1 >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; + $1$1 = (($a$1 | 0) < 0 ? -1 : 0) >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; + $2$0 = $b$1 >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; + $2$1 = (($b$1 | 0) < 0 ? -1 : 0) >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; + $4$0 = _i64Subtract($1$0 ^ $a$0, $1$1 ^ $a$1, $1$0, $1$1) | 0; + $4$1 = tempRet0; + $6$0 = _i64Subtract($2$0 ^ $b$0, $2$1 ^ $b$1, $2$0, $2$1) | 0; + $7$0 = $2$0 ^ $1$0; + $7$1 = $2$1 ^ $1$1; + $8$0 = ___udivmoddi4($4$0, $4$1, $6$0, tempRet0, 0) | 0; + $10$0 = _i64Subtract($8$0 ^ $7$0, tempRet0 ^ $7$1, $7$0, $7$1) | 0; + return (tempRet0 = tempRet0, $10$0) | 0; +} +function ___remdi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $rem = 0, $1$0 = 0, $1$1 = 0, $2$0 = 0, $2$1 = 0, $4$0 = 0, $4$1 = 0, $6$0 = 0, $10$0 = 0, $10$1 = 0, __stackBase__ = 0; + __stackBase__ = STACKTOP; + STACKTOP = STACKTOP + 8 | 0; + $rem = __stackBase__ | 0; + $1$0 = $a$1 >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; + $1$1 = (($a$1 | 0) < 0 ? -1 : 0) >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; + $2$0 = $b$1 >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; + $2$1 = (($b$1 | 0) < 0 ? -1 : 0) >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; + $4$0 = _i64Subtract($1$0 ^ $a$0, $1$1 ^ $a$1, $1$0, $1$1) | 0; + $4$1 = tempRet0; + $6$0 = _i64Subtract($2$0 ^ $b$0, $2$1 ^ $b$1, $2$0, $2$1) | 0; + ___udivmoddi4($4$0, $4$1, $6$0, tempRet0, $rem) | 0; + $10$0 = _i64Subtract(HEAP32[$rem >> 2] ^ $1$0, HEAP32[$rem + 4 >> 2] ^ $1$1, $1$0, $1$1) | 0; + $10$1 = tempRet0; + STACKTOP = __stackBase__; + return (tempRet0 = $10$1, $10$0) | 0; +} +function ___muldi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $x_sroa_0_0_extract_trunc = 0, $y_sroa_0_0_extract_trunc = 0, $1$0 = 0, $1$1 = 0, $2 = 0; + $x_sroa_0_0_extract_trunc = $a$0; + $y_sroa_0_0_extract_trunc = $b$0; + $1$0 = ___muldsi3($x_sroa_0_0_extract_trunc, $y_sroa_0_0_extract_trunc) | 0; + $1$1 = tempRet0; + $2 = Math_imul($a$1, $y_sroa_0_0_extract_trunc) | 0; + return (tempRet0 = ((Math_imul($b$1, $x_sroa_0_0_extract_trunc) | 0) + $2 | 0) + $1$1 | $1$1 & 0, 0 | $1$0 & -1) | 0; +} +function ___udivdi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $1$0 = 0; + $1$0 = ___udivmoddi4($a$0, $a$1, $b$0, $b$1, 0) | 0; + return (tempRet0 = tempRet0, $1$0) | 0; +} +function ___uremdi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $rem = 0, __stackBase__ = 0; + __stackBase__ = STACKTOP; + STACKTOP = STACKTOP + 8 | 0; + $rem = __stackBase__ | 0; + ___udivmoddi4($a$0, $a$1, $b$0, $b$1, $rem) | 0; + STACKTOP = __stackBase__; + return (tempRet0 = HEAP32[$rem + 4 >> 2] | 0, HEAP32[$rem >> 2] | 0) | 0; +} +function ___udivmoddi4($a$0, $a$1, $b$0, $b$1, $rem) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + $rem = $rem | 0; + var $n_sroa_0_0_extract_trunc = 0, $n_sroa_1_4_extract_shift$0 = 0, $n_sroa_1_4_extract_trunc = 0, $d_sroa_0_0_extract_trunc = 0, $d_sroa_1_4_extract_shift$0 = 0, $d_sroa_1_4_extract_trunc = 0, $4 = 0, $17 = 0, $37 = 0, $49 = 0, $51 = 0, $57 = 0, $58 = 0, $66 = 0, $78 = 0, $86 = 0, $88 = 0, $89 = 0, $91 = 0, $92 = 0, $95 = 0, $105 = 0, $117 = 0, $119 = 0, $125 = 0, $126 = 0, $130 = 0, $q_sroa_1_1_ph = 0, $q_sroa_0_1_ph = 0, $r_sroa_1_1_ph = 0, $r_sroa_0_1_ph = 0, $sr_1_ph = 0, $d_sroa_0_0_insert_insert99$0 = 0, $d_sroa_0_0_insert_insert99$1 = 0, $137$0 = 0, $137$1 = 0, $carry_0203 = 0, $sr_1202 = 0, $r_sroa_0_1201 = 0, $r_sroa_1_1200 = 0, $q_sroa_0_1199 = 0, $q_sroa_1_1198 = 0, $147 = 0, $149 = 0, $r_sroa_0_0_insert_insert42$0 = 0, $r_sroa_0_0_insert_insert42$1 = 0, $150$1 = 0, $151$0 = 0, $152 = 0, $154$0 = 0, $r_sroa_0_0_extract_trunc = 0, $r_sroa_1_4_extract_trunc = 0, $155 = 0, $carry_0_lcssa$0 = 0, $carry_0_lcssa$1 = 0, $r_sroa_0_1_lcssa = 0, $r_sroa_1_1_lcssa = 0, $q_sroa_0_1_lcssa = 0, $q_sroa_1_1_lcssa = 0, $q_sroa_0_0_insert_ext75$0 = 0, $q_sroa_0_0_insert_ext75$1 = 0, $q_sroa_0_0_insert_insert77$1 = 0, $_0$0 = 0, $_0$1 = 0; + $n_sroa_0_0_extract_trunc = $a$0; + $n_sroa_1_4_extract_shift$0 = $a$1; + $n_sroa_1_4_extract_trunc = $n_sroa_1_4_extract_shift$0; + $d_sroa_0_0_extract_trunc = $b$0; + $d_sroa_1_4_extract_shift$0 = $b$1; + $d_sroa_1_4_extract_trunc = $d_sroa_1_4_extract_shift$0; + if (($n_sroa_1_4_extract_trunc | 0) == 0) { + $4 = ($rem | 0) != 0; + if (($d_sroa_1_4_extract_trunc | 0) == 0) { + if ($4) { + HEAP32[$rem >> 2] = ($n_sroa_0_0_extract_trunc >>> 0) % ($d_sroa_0_0_extract_trunc >>> 0); + HEAP32[$rem + 4 >> 2] = 0; + } + $_0$1 = 0; + $_0$0 = ($n_sroa_0_0_extract_trunc >>> 0) / ($d_sroa_0_0_extract_trunc >>> 0) >>> 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } else { + if (!$4) { + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + HEAP32[$rem >> 2] = $a$0 & -1; + HEAP32[$rem + 4 >> 2] = $a$1 & 0; + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + } + $17 = ($d_sroa_1_4_extract_trunc | 0) == 0; + do { + if (($d_sroa_0_0_extract_trunc | 0) == 0) { + if ($17) { + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = ($n_sroa_1_4_extract_trunc >>> 0) % ($d_sroa_0_0_extract_trunc >>> 0); + HEAP32[$rem + 4 >> 2] = 0; + } + $_0$1 = 0; + $_0$0 = ($n_sroa_1_4_extract_trunc >>> 0) / ($d_sroa_0_0_extract_trunc >>> 0) >>> 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + if (($n_sroa_0_0_extract_trunc | 0) == 0) { + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = 0; + HEAP32[$rem + 4 >> 2] = ($n_sroa_1_4_extract_trunc >>> 0) % ($d_sroa_1_4_extract_trunc >>> 0); + } + $_0$1 = 0; + $_0$0 = ($n_sroa_1_4_extract_trunc >>> 0) / ($d_sroa_1_4_extract_trunc >>> 0) >>> 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + $37 = $d_sroa_1_4_extract_trunc - 1 | 0; + if (($37 & $d_sroa_1_4_extract_trunc | 0) == 0) { + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = 0 | $a$0 & -1; + HEAP32[$rem + 4 >> 2] = $37 & $n_sroa_1_4_extract_trunc | $a$1 & 0; + } + $_0$1 = 0; + $_0$0 = $n_sroa_1_4_extract_trunc >>> ((_llvm_cttz_i32($d_sroa_1_4_extract_trunc | 0) | 0) >>> 0); + return (tempRet0 = $_0$1, $_0$0) | 0; + } + $49 = _llvm_ctlz_i32($d_sroa_1_4_extract_trunc | 0) | 0; + $51 = $49 - (_llvm_ctlz_i32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; + if ($51 >>> 0 <= 30) { + $57 = $51 + 1 | 0; + $58 = 31 - $51 | 0; + $sr_1_ph = $57; + $r_sroa_0_1_ph = $n_sroa_1_4_extract_trunc << $58 | $n_sroa_0_0_extract_trunc >>> ($57 >>> 0); + $r_sroa_1_1_ph = $n_sroa_1_4_extract_trunc >>> ($57 >>> 0); + $q_sroa_0_1_ph = 0; + $q_sroa_1_1_ph = $n_sroa_0_0_extract_trunc << $58; + break; + } + if (($rem | 0) == 0) { + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + HEAP32[$rem >> 2] = 0 | $a$0 & -1; + HEAP32[$rem + 4 >> 2] = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } else { + if (!$17) { + $117 = _llvm_ctlz_i32($d_sroa_1_4_extract_trunc | 0) | 0; + $119 = $117 - (_llvm_ctlz_i32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; + if ($119 >>> 0 <= 31) { + $125 = $119 + 1 | 0; + $126 = 31 - $119 | 0; + $130 = $119 - 31 >> 31; + $sr_1_ph = $125; + $r_sroa_0_1_ph = $n_sroa_0_0_extract_trunc >>> ($125 >>> 0) & $130 | $n_sroa_1_4_extract_trunc << $126; + $r_sroa_1_1_ph = $n_sroa_1_4_extract_trunc >>> ($125 >>> 0) & $130; + $q_sroa_0_1_ph = 0; + $q_sroa_1_1_ph = $n_sroa_0_0_extract_trunc << $126; + break; + } + if (($rem | 0) == 0) { + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + HEAP32[$rem >> 2] = 0 | $a$0 & -1; + HEAP32[$rem + 4 >> 2] = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; + $_0$1 = 0; + $_0$0 = 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + $66 = $d_sroa_0_0_extract_trunc - 1 | 0; + if (($66 & $d_sroa_0_0_extract_trunc | 0) != 0) { + $86 = (_llvm_ctlz_i32($d_sroa_0_0_extract_trunc | 0) | 0) + 33 | 0; + $88 = $86 - (_llvm_ctlz_i32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; + $89 = 64 - $88 | 0; + $91 = 32 - $88 | 0; + $92 = $91 >> 31; + $95 = $88 - 32 | 0; + $105 = $95 >> 31; + $sr_1_ph = $88; + $r_sroa_0_1_ph = $91 - 1 >> 31 & $n_sroa_1_4_extract_trunc >>> ($95 >>> 0) | ($n_sroa_1_4_extract_trunc << $91 | $n_sroa_0_0_extract_trunc >>> ($88 >>> 0)) & $105; + $r_sroa_1_1_ph = $105 & $n_sroa_1_4_extract_trunc >>> ($88 >>> 0); + $q_sroa_0_1_ph = $n_sroa_0_0_extract_trunc << $89 & $92; + $q_sroa_1_1_ph = ($n_sroa_1_4_extract_trunc << $89 | $n_sroa_0_0_extract_trunc >>> ($95 >>> 0)) & $92 | $n_sroa_0_0_extract_trunc << $91 & $88 - 33 >> 31; + break; + } + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = $66 & $n_sroa_0_0_extract_trunc; + HEAP32[$rem + 4 >> 2] = 0; + } + if (($d_sroa_0_0_extract_trunc | 0) == 1) { + $_0$1 = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; + $_0$0 = 0 | $a$0 & -1; + return (tempRet0 = $_0$1, $_0$0) | 0; + } else { + $78 = _llvm_cttz_i32($d_sroa_0_0_extract_trunc | 0) | 0; + $_0$1 = 0 | $n_sroa_1_4_extract_trunc >>> ($78 >>> 0); + $_0$0 = $n_sroa_1_4_extract_trunc << 32 - $78 | $n_sroa_0_0_extract_trunc >>> ($78 >>> 0) | 0; + return (tempRet0 = $_0$1, $_0$0) | 0; + } + } + } while (0); + if (($sr_1_ph | 0) == 0) { + $q_sroa_1_1_lcssa = $q_sroa_1_1_ph; + $q_sroa_0_1_lcssa = $q_sroa_0_1_ph; + $r_sroa_1_1_lcssa = $r_sroa_1_1_ph; + $r_sroa_0_1_lcssa = $r_sroa_0_1_ph; + $carry_0_lcssa$1 = 0; + $carry_0_lcssa$0 = 0; + } else { + $d_sroa_0_0_insert_insert99$0 = 0 | $b$0 & -1; + $d_sroa_0_0_insert_insert99$1 = $d_sroa_1_4_extract_shift$0 | $b$1 & 0; + $137$0 = _i64Add($d_sroa_0_0_insert_insert99$0, $d_sroa_0_0_insert_insert99$1, -1, -1) | 0; + $137$1 = tempRet0; + $q_sroa_1_1198 = $q_sroa_1_1_ph; + $q_sroa_0_1199 = $q_sroa_0_1_ph; + $r_sroa_1_1200 = $r_sroa_1_1_ph; + $r_sroa_0_1201 = $r_sroa_0_1_ph; + $sr_1202 = $sr_1_ph; + $carry_0203 = 0; + while (1) { + $147 = $q_sroa_0_1199 >>> 31 | $q_sroa_1_1198 << 1; + $149 = $carry_0203 | $q_sroa_0_1199 << 1; + $r_sroa_0_0_insert_insert42$0 = 0 | ($r_sroa_0_1201 << 1 | $q_sroa_1_1198 >>> 31); + $r_sroa_0_0_insert_insert42$1 = $r_sroa_0_1201 >>> 31 | $r_sroa_1_1200 << 1 | 0; + _i64Subtract($137$0, $137$1, $r_sroa_0_0_insert_insert42$0, $r_sroa_0_0_insert_insert42$1) | 0; + $150$1 = tempRet0; + $151$0 = $150$1 >> 31 | (($150$1 | 0) < 0 ? -1 : 0) << 1; + $152 = $151$0 & 1; + $154$0 = _i64Subtract($r_sroa_0_0_insert_insert42$0, $r_sroa_0_0_insert_insert42$1, $151$0 & $d_sroa_0_0_insert_insert99$0, ((($150$1 | 0) < 0 ? -1 : 0) >> 31 | (($150$1 | 0) < 0 ? -1 : 0) << 1) & $d_sroa_0_0_insert_insert99$1) | 0; + $r_sroa_0_0_extract_trunc = $154$0; + $r_sroa_1_4_extract_trunc = tempRet0; + $155 = $sr_1202 - 1 | 0; + if (($155 | 0) == 0) { + break; + } else { + $q_sroa_1_1198 = $147; + $q_sroa_0_1199 = $149; + $r_sroa_1_1200 = $r_sroa_1_4_extract_trunc; + $r_sroa_0_1201 = $r_sroa_0_0_extract_trunc; + $sr_1202 = $155; + $carry_0203 = $152; + } + } + $q_sroa_1_1_lcssa = $147; + $q_sroa_0_1_lcssa = $149; + $r_sroa_1_1_lcssa = $r_sroa_1_4_extract_trunc; + $r_sroa_0_1_lcssa = $r_sroa_0_0_extract_trunc; + $carry_0_lcssa$1 = 0; + $carry_0_lcssa$0 = $152; + } + $q_sroa_0_0_insert_ext75$0 = $q_sroa_0_1_lcssa; + $q_sroa_0_0_insert_ext75$1 = 0; + $q_sroa_0_0_insert_insert77$1 = $q_sroa_1_1_lcssa | $q_sroa_0_0_insert_ext75$1; + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = 0 | $r_sroa_0_1_lcssa; + HEAP32[$rem + 4 >> 2] = $r_sroa_1_1_lcssa | 0; + } + $_0$1 = (0 | $q_sroa_0_0_insert_ext75$0) >>> 31 | $q_sroa_0_0_insert_insert77$1 << 1 | ($q_sroa_0_0_insert_ext75$1 << 1 | $q_sroa_0_0_insert_ext75$0 >>> 31) & 0 | $carry_0_lcssa$1; + $_0$0 = ($q_sroa_0_0_insert_ext75$0 << 1 | 0 >>> 31) & -2 | $carry_0_lcssa$0; + return (tempRet0 = $_0$1, $_0$0) | 0; +} +// ======================================================================= + + + +// EMSCRIPTEN_END_FUNCS + + + + // EMSCRIPTEN_END_FUNCS + + + return { _curve25519_verify: _curve25519_verify, _crypto_sign_ed25519_ref10_ge_scalarmult_base: _crypto_sign_ed25519_ref10_ge_scalarmult_base, _curve25519_sign: _curve25519_sign, _free: _free, _i64Add: _i64Add, _memmove: _memmove, _bitshift64Ashr: _bitshift64Ashr, _sph_sha512_init: _sph_sha512_init, _curve25519_donna: _curve25519_donna, _memset: _memset, _malloc: _malloc, _memcpy: _memcpy, _strlen: _strlen, _bitshift64Lshr: _bitshift64Lshr, _i64Subtract: _i64Subtract, _bitshift64Shl: _bitshift64Shl, runPostSets: runPostSets, stackAlloc: stackAlloc, stackSave: stackSave, stackRestore: stackRestore, setThrew: setThrew, setTempRet0: setTempRet0, getTempRet0: getTempRet0 }; +}) +// EMSCRIPTEN_END_ASM +(Module.asmGlobalArg, Module.asmLibraryArg, buffer); +var _curve25519_verify = Module["_curve25519_verify"] = asm["_curve25519_verify"]; +var _crypto_sign_ed25519_ref10_ge_scalarmult_base = Module["_crypto_sign_ed25519_ref10_ge_scalarmult_base"] = asm["_crypto_sign_ed25519_ref10_ge_scalarmult_base"]; +var _curve25519_sign = Module["_curve25519_sign"] = asm["_curve25519_sign"]; +var _free = Module["_free"] = asm["_free"]; +var _i64Add = Module["_i64Add"] = asm["_i64Add"]; +var _memmove = Module["_memmove"] = asm["_memmove"]; +var _bitshift64Ashr = Module["_bitshift64Ashr"] = asm["_bitshift64Ashr"]; +var _sph_sha512_init = Module["_sph_sha512_init"] = asm["_sph_sha512_init"]; +var _curve25519_donna = Module["_curve25519_donna"] = asm["_curve25519_donna"]; +var _memset = Module["_memset"] = asm["_memset"]; +var _malloc = Module["_malloc"] = asm["_malloc"]; +var _memcpy = Module["_memcpy"] = asm["_memcpy"]; +var _strlen = Module["_strlen"] = asm["_strlen"]; +var _bitshift64Lshr = Module["_bitshift64Lshr"] = asm["_bitshift64Lshr"]; +var _i64Subtract = Module["_i64Subtract"] = asm["_i64Subtract"]; +var _bitshift64Shl = Module["_bitshift64Shl"] = asm["_bitshift64Shl"]; +var runPostSets = Module["runPostSets"] = asm["runPostSets"]; + +Runtime.stackAlloc = asm['stackAlloc']; +Runtime.stackSave = asm['stackSave']; +Runtime.stackRestore = asm['stackRestore']; +Runtime.setTempRet0 = asm['setTempRet0']; +Runtime.getTempRet0 = asm['getTempRet0']; + + +// TODO: strip out parts of this we do not need + +//======= begin closure i64 code ======= + +// Copyright 2009 The Closure Library Authors. All Rights Reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS-IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +/** + * @fileoverview Defines a Long class for representing a 64-bit two's-complement + * integer value, which faithfully simulates the behavior of a Java "long". This + * implementation is derived from LongLib in GWT. + * + */ + +var i64Math = (function() { // Emscripten wrapper + var goog = { math: {} }; + + + /** + * Constructs a 64-bit two's-complement integer, given its low and high 32-bit + * values as *signed* integers. See the from* functions below for more + * convenient ways of constructing Longs. + * + * The internal representation of a long is the two given signed, 32-bit values. + * We use 32-bit pieces because these are the size of integers on which + * Javascript performs bit-operations. For operations like addition and + * multiplication, we split each number into 16-bit pieces, which can easily be + * multiplied within Javascript's floating-point representation without overflow + * or change in sign. + * + * In the algorithms below, we frequently reduce the negative case to the + * positive case by negating the input(s) and then post-processing the result. + * Note that we must ALWAYS check specially whether those values are MIN_VALUE + * (-2^63) because -MIN_VALUE == MIN_VALUE (since 2^63 cannot be represented as + * a positive number, it overflows back into a negative). Not handling this + * case would often result in infinite recursion. + * + * @param {number} low The low (signed) 32 bits of the long. + * @param {number} high The high (signed) 32 bits of the long. + * @constructor + */ + goog.math.Long = function(low, high) { + /** + * @type {number} + * @private + */ + this.low_ = low | 0; // force into 32 signed bits. + + /** + * @type {number} + * @private + */ + this.high_ = high | 0; // force into 32 signed bits. + }; + + + // NOTE: Common constant values ZERO, ONE, NEG_ONE, etc. are defined below the + // from* methods on which they depend. + + + /** + * A cache of the Long representations of small integer values. + * @type {!Object} + * @private + */ + goog.math.Long.IntCache_ = {}; + + + /** + * Returns a Long representing the given (32-bit) integer value. + * @param {number} value The 32-bit integer in question. + * @return {!goog.math.Long} The corresponding Long value. + */ + goog.math.Long.fromInt = function(value) { + if (-128 <= value && value < 128) { + var cachedObj = goog.math.Long.IntCache_[value]; + if (cachedObj) { + return cachedObj; + } + } + + var obj = new goog.math.Long(value | 0, value < 0 ? -1 : 0); + if (-128 <= value && value < 128) { + goog.math.Long.IntCache_[value] = obj; + } + return obj; + }; + + + /** + * Returns a Long representing the given value, provided that it is a finite + * number. Otherwise, zero is returned. + * @param {number} value The number in question. + * @return {!goog.math.Long} The corresponding Long value. + */ + goog.math.Long.fromNumber = function(value) { + if (isNaN(value) || !isFinite(value)) { + return goog.math.Long.ZERO; + } else if (value <= -goog.math.Long.TWO_PWR_63_DBL_) { + return goog.math.Long.MIN_VALUE; + } else if (value + 1 >= goog.math.Long.TWO_PWR_63_DBL_) { + return goog.math.Long.MAX_VALUE; + } else if (value < 0) { + return goog.math.Long.fromNumber(-value).negate(); + } else { + return new goog.math.Long( + (value % goog.math.Long.TWO_PWR_32_DBL_) | 0, + (value / goog.math.Long.TWO_PWR_32_DBL_) | 0); + } + }; + + + /** + * Returns a Long representing the 64-bit integer that comes by concatenating + * the given high and low bits. Each is assumed to use 32 bits. + * @param {number} lowBits The low 32-bits. + * @param {number} highBits The high 32-bits. + * @return {!goog.math.Long} The corresponding Long value. + */ + goog.math.Long.fromBits = function(lowBits, highBits) { + return new goog.math.Long(lowBits, highBits); + }; + + + /** + * Returns a Long representation of the given string, written using the given + * radix. + * @param {string} str The textual representation of the Long. + * @param {number=} opt_radix The radix in which the text is written. + * @return {!goog.math.Long} The corresponding Long value. + */ + goog.math.Long.fromString = function(str, opt_radix) { + if (str.length == 0) { + throw Error('number format error: empty string'); + } + + var radix = opt_radix || 10; + if (radix < 2 || 36 < radix) { + throw Error('radix out of range: ' + radix); + } + + if (str.charAt(0) == '-') { + return goog.math.Long.fromString(str.substring(1), radix).negate(); + } else if (str.indexOf('-') >= 0) { + throw Error('number format error: interior "-" character: ' + str); + } + + // Do several (8) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + var radixToPower = goog.math.Long.fromNumber(Math.pow(radix, 8)); + + var result = goog.math.Long.ZERO; + for (var i = 0; i < str.length; i += 8) { + var size = Math.min(8, str.length - i); + var value = parseInt(str.substring(i, i + size), radix); + if (size < 8) { + var power = goog.math.Long.fromNumber(Math.pow(radix, size)); + result = result.multiply(power).add(goog.math.Long.fromNumber(value)); + } else { + result = result.multiply(radixToPower); + result = result.add(goog.math.Long.fromNumber(value)); + } + } + return result; + }; + + + // NOTE: the compiler should inline these constant values below and then remove + // these variables, so there should be no runtime penalty for these. + + + /** + * Number used repeated below in calculations. This must appear before the + * first call to any from* function below. + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_16_DBL_ = 1 << 16; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_24_DBL_ = 1 << 24; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_32_DBL_ = + goog.math.Long.TWO_PWR_16_DBL_ * goog.math.Long.TWO_PWR_16_DBL_; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_31_DBL_ = + goog.math.Long.TWO_PWR_32_DBL_ / 2; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_48_DBL_ = + goog.math.Long.TWO_PWR_32_DBL_ * goog.math.Long.TWO_PWR_16_DBL_; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_64_DBL_ = + goog.math.Long.TWO_PWR_32_DBL_ * goog.math.Long.TWO_PWR_32_DBL_; + + + /** + * @type {number} + * @private + */ + goog.math.Long.TWO_PWR_63_DBL_ = + goog.math.Long.TWO_PWR_64_DBL_ / 2; + + + /** @type {!goog.math.Long} */ + goog.math.Long.ZERO = goog.math.Long.fromInt(0); + + + /** @type {!goog.math.Long} */ + goog.math.Long.ONE = goog.math.Long.fromInt(1); + + + /** @type {!goog.math.Long} */ + goog.math.Long.NEG_ONE = goog.math.Long.fromInt(-1); + + + /** @type {!goog.math.Long} */ + goog.math.Long.MAX_VALUE = + goog.math.Long.fromBits(0xFFFFFFFF | 0, 0x7FFFFFFF | 0); + + + /** @type {!goog.math.Long} */ + goog.math.Long.MIN_VALUE = goog.math.Long.fromBits(0, 0x80000000 | 0); + + + /** + * @type {!goog.math.Long} + * @private + */ + goog.math.Long.TWO_PWR_24_ = goog.math.Long.fromInt(1 << 24); + + + /** @return {number} The value, assuming it is a 32-bit integer. */ + goog.math.Long.prototype.toInt = function() { + return this.low_; + }; + + + /** @return {number} The closest floating-point representation to this value. */ + goog.math.Long.prototype.toNumber = function() { + return this.high_ * goog.math.Long.TWO_PWR_32_DBL_ + + this.getLowBitsUnsigned(); + }; + + + /** + * @param {number=} opt_radix The radix in which the text should be written. + * @return {string} The textual representation of this value. + */ + goog.math.Long.prototype.toString = function(opt_radix) { + var radix = opt_radix || 10; + if (radix < 2 || 36 < radix) { + throw Error('radix out of range: ' + radix); + } + + if (this.isZero()) { + return '0'; + } + + if (this.isNegative()) { + if (this.equals(goog.math.Long.MIN_VALUE)) { + // We need to change the Long value before it can be negated, so we remove + // the bottom-most digit in this base and then recurse to do the rest. + var radixLong = goog.math.Long.fromNumber(radix); + var div = this.div(radixLong); + var rem = div.multiply(radixLong).subtract(this); + return div.toString(radix) + rem.toInt().toString(radix); + } else { + return '-' + this.negate().toString(radix); + } + } + + // Do several (6) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + var radixToPower = goog.math.Long.fromNumber(Math.pow(radix, 6)); + + var rem = this; + var result = ''; + while (true) { + var remDiv = rem.div(radixToPower); + var intval = rem.subtract(remDiv.multiply(radixToPower)).toInt(); + var digits = intval.toString(radix); + + rem = remDiv; + if (rem.isZero()) { + return digits + result; + } else { + while (digits.length < 6) { + digits = '0' + digits; + } + result = '' + digits + result; + } + } + }; + + + /** @return {number} The high 32-bits as a signed value. */ + goog.math.Long.prototype.getHighBits = function() { + return this.high_; + }; + + + /** @return {number} The low 32-bits as a signed value. */ + goog.math.Long.prototype.getLowBits = function() { + return this.low_; + }; + + + /** @return {number} The low 32-bits as an unsigned value. */ + goog.math.Long.prototype.getLowBitsUnsigned = function() { + return (this.low_ >= 0) ? + this.low_ : goog.math.Long.TWO_PWR_32_DBL_ + this.low_; + }; + + + /** + * @return {number} Returns the number of bits needed to represent the absolute + * value of this Long. + */ + goog.math.Long.prototype.getNumBitsAbs = function() { + if (this.isNegative()) { + if (this.equals(goog.math.Long.MIN_VALUE)) { + return 64; + } else { + return this.negate().getNumBitsAbs(); + } + } else { + var val = this.high_ != 0 ? this.high_ : this.low_; + for (var bit = 31; bit > 0; bit--) { + if ((val & (1 << bit)) != 0) { + break; + } + } + return this.high_ != 0 ? bit + 33 : bit + 1; + } + }; + + + /** @return {boolean} Whether this value is zero. */ + goog.math.Long.prototype.isZero = function() { + return this.high_ == 0 && this.low_ == 0; + }; + + + /** @return {boolean} Whether this value is negative. */ + goog.math.Long.prototype.isNegative = function() { + return this.high_ < 0; + }; + + + /** @return {boolean} Whether this value is odd. */ + goog.math.Long.prototype.isOdd = function() { + return (this.low_ & 1) == 1; + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long equals the other. + */ + goog.math.Long.prototype.equals = function(other) { + return (this.high_ == other.high_) && (this.low_ == other.low_); + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long does not equal the other. + */ + goog.math.Long.prototype.notEquals = function(other) { + return (this.high_ != other.high_) || (this.low_ != other.low_); + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long is less than the other. + */ + goog.math.Long.prototype.lessThan = function(other) { + return this.compare(other) < 0; + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long is less than or equal to the other. + */ + goog.math.Long.prototype.lessThanOrEqual = function(other) { + return this.compare(other) <= 0; + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long is greater than the other. + */ + goog.math.Long.prototype.greaterThan = function(other) { + return this.compare(other) > 0; + }; + + + /** + * @param {goog.math.Long} other Long to compare against. + * @return {boolean} Whether this Long is greater than or equal to the other. + */ + goog.math.Long.prototype.greaterThanOrEqual = function(other) { + return this.compare(other) >= 0; + }; + + + /** + * Compares this Long with the given one. + * @param {goog.math.Long} other Long to compare against. + * @return {number} 0 if they are the same, 1 if the this is greater, and -1 + * if the given one is greater. + */ + goog.math.Long.prototype.compare = function(other) { + if (this.equals(other)) { + return 0; + } + + var thisNeg = this.isNegative(); + var otherNeg = other.isNegative(); + if (thisNeg && !otherNeg) { + return -1; + } + if (!thisNeg && otherNeg) { + return 1; + } + + // at this point, the signs are the same, so subtraction will not overflow + if (this.subtract(other).isNegative()) { + return -1; + } else { + return 1; + } + }; + + + /** @return {!goog.math.Long} The negation of this value. */ + goog.math.Long.prototype.negate = function() { + if (this.equals(goog.math.Long.MIN_VALUE)) { + return goog.math.Long.MIN_VALUE; + } else { + return this.not().add(goog.math.Long.ONE); + } + }; + + + /** + * Returns the sum of this and the given Long. + * @param {goog.math.Long} other Long to add to this one. + * @return {!goog.math.Long} The sum of this and the given Long. + */ + goog.math.Long.prototype.add = function(other) { + // Divide each number into 4 chunks of 16 bits, and then sum the chunks. + + var a48 = this.high_ >>> 16; + var a32 = this.high_ & 0xFFFF; + var a16 = this.low_ >>> 16; + var a00 = this.low_ & 0xFFFF; + + var b48 = other.high_ >>> 16; + var b32 = other.high_ & 0xFFFF; + var b16 = other.low_ >>> 16; + var b00 = other.low_ & 0xFFFF; + + var c48 = 0, c32 = 0, c16 = 0, c00 = 0; + c00 += a00 + b00; + c16 += c00 >>> 16; + c00 &= 0xFFFF; + c16 += a16 + b16; + c32 += c16 >>> 16; + c16 &= 0xFFFF; + c32 += a32 + b32; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c48 += a48 + b48; + c48 &= 0xFFFF; + return goog.math.Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32); + }; + + + /** + * Returns the difference of this and the given Long. + * @param {goog.math.Long} other Long to subtract from this. + * @return {!goog.math.Long} The difference of this and the given Long. + */ + goog.math.Long.prototype.subtract = function(other) { + return this.add(other.negate()); + }; + + + /** + * Returns the product of this and the given long. + * @param {goog.math.Long} other Long to multiply with this. + * @return {!goog.math.Long} The product of this and the other. + */ + goog.math.Long.prototype.multiply = function(other) { + if (this.isZero()) { + return goog.math.Long.ZERO; + } else if (other.isZero()) { + return goog.math.Long.ZERO; + } + + if (this.equals(goog.math.Long.MIN_VALUE)) { + return other.isOdd() ? goog.math.Long.MIN_VALUE : goog.math.Long.ZERO; + } else if (other.equals(goog.math.Long.MIN_VALUE)) { + return this.isOdd() ? goog.math.Long.MIN_VALUE : goog.math.Long.ZERO; + } + + if (this.isNegative()) { + if (other.isNegative()) { + return this.negate().multiply(other.negate()); + } else { + return this.negate().multiply(other).negate(); + } + } else if (other.isNegative()) { + return this.multiply(other.negate()).negate(); + } + + // If both longs are small, use float multiplication + if (this.lessThan(goog.math.Long.TWO_PWR_24_) && + other.lessThan(goog.math.Long.TWO_PWR_24_)) { + return goog.math.Long.fromNumber(this.toNumber() * other.toNumber()); + } + + // Divide each long into 4 chunks of 16 bits, and then add up 4x4 products. + // We can skip products that would overflow. + + var a48 = this.high_ >>> 16; + var a32 = this.high_ & 0xFFFF; + var a16 = this.low_ >>> 16; + var a00 = this.low_ & 0xFFFF; + + var b48 = other.high_ >>> 16; + var b32 = other.high_ & 0xFFFF; + var b16 = other.low_ >>> 16; + var b00 = other.low_ & 0xFFFF; + + var c48 = 0, c32 = 0, c16 = 0, c00 = 0; + c00 += a00 * b00; + c16 += c00 >>> 16; + c00 &= 0xFFFF; + c16 += a16 * b00; + c32 += c16 >>> 16; + c16 &= 0xFFFF; + c16 += a00 * b16; + c32 += c16 >>> 16; + c16 &= 0xFFFF; + c32 += a32 * b00; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c32 += a16 * b16; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c32 += a00 * b32; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c48 += a48 * b00 + a32 * b16 + a16 * b32 + a00 * b48; + c48 &= 0xFFFF; + return goog.math.Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32); + }; + + + /** + * Returns this Long divided by the given one. + * @param {goog.math.Long} other Long by which to divide. + * @return {!goog.math.Long} This Long divided by the given one. + */ + goog.math.Long.prototype.div = function(other) { + if (other.isZero()) { + throw Error('division by zero'); + } else if (this.isZero()) { + return goog.math.Long.ZERO; + } + + if (this.equals(goog.math.Long.MIN_VALUE)) { + if (other.equals(goog.math.Long.ONE) || + other.equals(goog.math.Long.NEG_ONE)) { + return goog.math.Long.MIN_VALUE; // recall that -MIN_VALUE == MIN_VALUE + } else if (other.equals(goog.math.Long.MIN_VALUE)) { + return goog.math.Long.ONE; + } else { + // At this point, we have |other| >= 2, so |this/other| < |MIN_VALUE|. + var halfThis = this.shiftRight(1); + var approx = halfThis.div(other).shiftLeft(1); + if (approx.equals(goog.math.Long.ZERO)) { + return other.isNegative() ? goog.math.Long.ONE : goog.math.Long.NEG_ONE; + } else { + var rem = this.subtract(other.multiply(approx)); + var result = approx.add(rem.div(other)); + return result; + } + } + } else if (other.equals(goog.math.Long.MIN_VALUE)) { + return goog.math.Long.ZERO; + } + + if (this.isNegative()) { + if (other.isNegative()) { + return this.negate().div(other.negate()); + } else { + return this.negate().div(other).negate(); + } + } else if (other.isNegative()) { + return this.div(other.negate()).negate(); + } + + // Repeat the following until the remainder is less than other: find a + // floating-point that approximates remainder / other *from below*, add this + // into the result, and subtract it from the remainder. It is critical that + // the approximate value is less than or equal to the real value so that the + // remainder never becomes negative. + var res = goog.math.Long.ZERO; + var rem = this; + while (rem.greaterThanOrEqual(other)) { + // Approximate the result of division. This may be a little greater or + // smaller than the actual value. + var approx = Math.max(1, Math.floor(rem.toNumber() / other.toNumber())); + + // We will tweak the approximate result by changing it in the 48-th digit or + // the smallest non-fractional digit, whichever is larger. + var log2 = Math.ceil(Math.log(approx) / Math.LN2); + var delta = (log2 <= 48) ? 1 : Math.pow(2, log2 - 48); + + // Decrease the approximation until it is smaller than the remainder. Note + // that if it is too large, the product overflows and is negative. + var approxRes = goog.math.Long.fromNumber(approx); + var approxRem = approxRes.multiply(other); + while (approxRem.isNegative() || approxRem.greaterThan(rem)) { + approx -= delta; + approxRes = goog.math.Long.fromNumber(approx); + approxRem = approxRes.multiply(other); + } + + // We know the answer can't be zero... and actually, zero would cause + // infinite recursion since we would make no progress. + if (approxRes.isZero()) { + approxRes = goog.math.Long.ONE; + } + + res = res.add(approxRes); + rem = rem.subtract(approxRem); + } + return res; + }; + + + /** + * Returns this Long modulo the given one. + * @param {goog.math.Long} other Long by which to mod. + * @return {!goog.math.Long} This Long modulo the given one. + */ + goog.math.Long.prototype.modulo = function(other) { + return this.subtract(this.div(other).multiply(other)); + }; + + + /** @return {!goog.math.Long} The bitwise-NOT of this value. */ + goog.math.Long.prototype.not = function() { + return goog.math.Long.fromBits(~this.low_, ~this.high_); + }; + + + /** + * Returns the bitwise-AND of this Long and the given one. + * @param {goog.math.Long} other The Long with which to AND. + * @return {!goog.math.Long} The bitwise-AND of this and the other. + */ + goog.math.Long.prototype.and = function(other) { + return goog.math.Long.fromBits(this.low_ & other.low_, + this.high_ & other.high_); + }; + + + /** + * Returns the bitwise-OR of this Long and the given one. + * @param {goog.math.Long} other The Long with which to OR. + * @return {!goog.math.Long} The bitwise-OR of this and the other. + */ + goog.math.Long.prototype.or = function(other) { + return goog.math.Long.fromBits(this.low_ | other.low_, + this.high_ | other.high_); + }; + + + /** + * Returns the bitwise-XOR of this Long and the given one. + * @param {goog.math.Long} other The Long with which to XOR. + * @return {!goog.math.Long} The bitwise-XOR of this and the other. + */ + goog.math.Long.prototype.xor = function(other) { + return goog.math.Long.fromBits(this.low_ ^ other.low_, + this.high_ ^ other.high_); + }; + + + /** + * Returns this Long with bits shifted to the left by the given amount. + * @param {number} numBits The number of bits by which to shift. + * @return {!goog.math.Long} This shifted to the left by the given amount. + */ + goog.math.Long.prototype.shiftLeft = function(numBits) { + numBits &= 63; + if (numBits == 0) { + return this; + } else { + var low = this.low_; + if (numBits < 32) { + var high = this.high_; + return goog.math.Long.fromBits( + low << numBits, + (high << numBits) | (low >>> (32 - numBits))); + } else { + return goog.math.Long.fromBits(0, low << (numBits - 32)); + } + } + }; + + + /** + * Returns this Long with bits shifted to the right by the given amount. + * @param {number} numBits The number of bits by which to shift. + * @return {!goog.math.Long} This shifted to the right by the given amount. + */ + goog.math.Long.prototype.shiftRight = function(numBits) { + numBits &= 63; + if (numBits == 0) { + return this; + } else { + var high = this.high_; + if (numBits < 32) { + var low = this.low_; + return goog.math.Long.fromBits( + (low >>> numBits) | (high << (32 - numBits)), + high >> numBits); + } else { + return goog.math.Long.fromBits( + high >> (numBits - 32), + high >= 0 ? 0 : -1); + } + } + }; + + + /** + * Returns this Long with bits shifted to the right by the given amount, with + * the new top bits matching the current sign bit. + * @param {number} numBits The number of bits by which to shift. + * @return {!goog.math.Long} This shifted to the right by the given amount, with + * zeros placed into the new leading bits. + */ + goog.math.Long.prototype.shiftRightUnsigned = function(numBits) { + numBits &= 63; + if (numBits == 0) { + return this; + } else { + var high = this.high_; + if (numBits < 32) { + var low = this.low_; + return goog.math.Long.fromBits( + (low >>> numBits) | (high << (32 - numBits)), + high >>> numBits); + } else if (numBits == 32) { + return goog.math.Long.fromBits(high, 0); + } else { + return goog.math.Long.fromBits(high >>> (numBits - 32), 0); + } + } + }; + + //======= begin jsbn ======= + + var navigator = { appName: 'Modern Browser' }; // polyfill a little + + // Copyright (c) 2005 Tom Wu + // All Rights Reserved. + // http://www-cs-students.stanford.edu/~tjw/jsbn/ + + /* + * Copyright (c) 2003-2005 Tom Wu + * All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, + * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY + * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + * + * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, + * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER + * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF + * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT + * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * In addition, the following condition applies: + * + * All redistributions must retain an intact copy of this copyright notice + * and disclaimer. + */ + + // Basic JavaScript BN library - subset useful for RSA encryption. + + // Bits per digit + var dbits; + + // JavaScript engine analysis + var canary = 0xdeadbeefcafe; + var j_lm = ((canary&0xffffff)==0xefcafe); + + // (public) Constructor + function BigInteger(a,b,c) { + if(a != null) + if("number" == typeof a) this.fromNumber(a,b,c); + else if(b == null && "string" != typeof a) this.fromString(a,256); + else this.fromString(a,b); + } + + // return new, unset BigInteger + function nbi() { return new BigInteger(null); } + + // am: Compute w_j += (x*this_i), propagate carries, + // c is initial carry, returns final carry. + // c < 3*dvalue, x < 2*dvalue, this_i < dvalue + // We need to select the fastest one that works in this environment. + + // am1: use a single mult and divide to get the high bits, + // max digit bits should be 26 because + // max internal value = 2*dvalue^2-2*dvalue (< 2^53) + function am1(i,x,w,j,c,n) { + while(--n >= 0) { + var v = x*this[i++]+w[j]+c; + c = Math.floor(v/0x4000000); + w[j++] = v&0x3ffffff; + } + return c; + } + // am2 avoids a big mult-and-extract completely. + // Max digit bits should be <= 30 because we do bitwise ops + // on values up to 2*hdvalue^2-hdvalue-1 (< 2^31) + function am2(i,x,w,j,c,n) { + var xl = x&0x7fff, xh = x>>15; + while(--n >= 0) { + var l = this[i]&0x7fff; + var h = this[i++]>>15; + var m = xh*l+h*xl; + l = xl*l+((m&0x7fff)<<15)+w[j]+(c&0x3fffffff); + c = (l>>>30)+(m>>>15)+xh*h+(c>>>30); + w[j++] = l&0x3fffffff; + } + return c; + } + // Alternately, set max digit bits to 28 since some + // browsers slow down when dealing with 32-bit numbers. + function am3(i,x,w,j,c,n) { + var xl = x&0x3fff, xh = x>>14; + while(--n >= 0) { + var l = this[i]&0x3fff; + var h = this[i++]>>14; + var m = xh*l+h*xl; + l = xl*l+((m&0x3fff)<<14)+w[j]+c; + c = (l>>28)+(m>>14)+xh*h; + w[j++] = l&0xfffffff; + } + return c; + } + if(j_lm && (navigator.appName == "Microsoft Internet Explorer")) { + BigInteger.prototype.am = am2; + dbits = 30; + } + else if(j_lm && (navigator.appName != "Netscape")) { + BigInteger.prototype.am = am1; + dbits = 26; + } + else { // Mozilla/Netscape seems to prefer am3 + BigInteger.prototype.am = am3; + dbits = 28; + } + + BigInteger.prototype.DB = dbits; + BigInteger.prototype.DM = ((1<= 0; --i) r[i] = this[i]; + r.t = this.t; + r.s = this.s; + } + + // (protected) set from integer value x, -DV <= x < DV + function bnpFromInt(x) { + this.t = 1; + this.s = (x<0)?-1:0; + if(x > 0) this[0] = x; + else if(x < -1) this[0] = x+DV; + else this.t = 0; + } + + // return bigint initialized to value + function nbv(i) { var r = nbi(); r.fromInt(i); return r; } + + // (protected) set from string and radix + function bnpFromString(s,b) { + var k; + if(b == 16) k = 4; + else if(b == 8) k = 3; + else if(b == 256) k = 8; // byte array + else if(b == 2) k = 1; + else if(b == 32) k = 5; + else if(b == 4) k = 2; + else { this.fromRadix(s,b); return; } + this.t = 0; + this.s = 0; + var i = s.length, mi = false, sh = 0; + while(--i >= 0) { + var x = (k==8)?s[i]&0xff:intAt(s,i); + if(x < 0) { + if(s.charAt(i) == "-") mi = true; + continue; + } + mi = false; + if(sh == 0) + this[this.t++] = x; + else if(sh+k > this.DB) { + this[this.t-1] |= (x&((1<<(this.DB-sh))-1))<>(this.DB-sh)); + } + else + this[this.t-1] |= x<= this.DB) sh -= this.DB; + } + if(k == 8 && (s[0]&0x80) != 0) { + this.s = -1; + if(sh > 0) this[this.t-1] |= ((1<<(this.DB-sh))-1)< 0 && this[this.t-1] == c) --this.t; + } + + // (public) return string representation in given radix + function bnToString(b) { + if(this.s < 0) return "-"+this.negate().toString(b); + var k; + if(b == 16) k = 4; + else if(b == 8) k = 3; + else if(b == 2) k = 1; + else if(b == 32) k = 5; + else if(b == 4) k = 2; + else return this.toRadix(b); + var km = (1< 0) { + if(p < this.DB && (d = this[i]>>p) > 0) { m = true; r = int2char(d); } + while(i >= 0) { + if(p < k) { + d = (this[i]&((1<>(p+=this.DB-k); + } + else { + d = (this[i]>>(p-=k))&km; + if(p <= 0) { p += this.DB; --i; } + } + if(d > 0) m = true; + if(m) r += int2char(d); + } + } + return m?r:"0"; + } + + // (public) -this + function bnNegate() { var r = nbi(); BigInteger.ZERO.subTo(this,r); return r; } + + // (public) |this| + function bnAbs() { return (this.s<0)?this.negate():this; } + + // (public) return + if this > a, - if this < a, 0 if equal + function bnCompareTo(a) { + var r = this.s-a.s; + if(r != 0) return r; + var i = this.t; + r = i-a.t; + if(r != 0) return (this.s<0)?-r:r; + while(--i >= 0) if((r=this[i]-a[i]) != 0) return r; + return 0; + } + + // returns bit length of the integer x + function nbits(x) { + var r = 1, t; + if((t=x>>>16) != 0) { x = t; r += 16; } + if((t=x>>8) != 0) { x = t; r += 8; } + if((t=x>>4) != 0) { x = t; r += 4; } + if((t=x>>2) != 0) { x = t; r += 2; } + if((t=x>>1) != 0) { x = t; r += 1; } + return r; + } + + // (public) return the number of bits in "this" + function bnBitLength() { + if(this.t <= 0) return 0; + return this.DB*(this.t-1)+nbits(this[this.t-1]^(this.s&this.DM)); + } + + // (protected) r = this << n*DB + function bnpDLShiftTo(n,r) { + var i; + for(i = this.t-1; i >= 0; --i) r[i+n] = this[i]; + for(i = n-1; i >= 0; --i) r[i] = 0; + r.t = this.t+n; + r.s = this.s; + } + + // (protected) r = this >> n*DB + function bnpDRShiftTo(n,r) { + for(var i = n; i < this.t; ++i) r[i-n] = this[i]; + r.t = Math.max(this.t-n,0); + r.s = this.s; + } + + // (protected) r = this << n + function bnpLShiftTo(n,r) { + var bs = n%this.DB; + var cbs = this.DB-bs; + var bm = (1<= 0; --i) { + r[i+ds+1] = (this[i]>>cbs)|c; + c = (this[i]&bm)<= 0; --i) r[i] = 0; + r[ds] = c; + r.t = this.t+ds+1; + r.s = this.s; + r.clamp(); + } + + // (protected) r = this >> n + function bnpRShiftTo(n,r) { + r.s = this.s; + var ds = Math.floor(n/this.DB); + if(ds >= this.t) { r.t = 0; return; } + var bs = n%this.DB; + var cbs = this.DB-bs; + var bm = (1<>bs; + for(var i = ds+1; i < this.t; ++i) { + r[i-ds-1] |= (this[i]&bm)<>bs; + } + if(bs > 0) r[this.t-ds-1] |= (this.s&bm)<>= this.DB; + } + if(a.t < this.t) { + c -= a.s; + while(i < this.t) { + c += this[i]; + r[i++] = c&this.DM; + c >>= this.DB; + } + c += this.s; + } + else { + c += this.s; + while(i < a.t) { + c -= a[i]; + r[i++] = c&this.DM; + c >>= this.DB; + } + c -= a.s; + } + r.s = (c<0)?-1:0; + if(c < -1) r[i++] = this.DV+c; + else if(c > 0) r[i++] = c; + r.t = i; + r.clamp(); + } + + // (protected) r = this * a, r != this,a (HAC 14.12) + // "this" should be the larger one if appropriate. + function bnpMultiplyTo(a,r) { + var x = this.abs(), y = a.abs(); + var i = x.t; + r.t = i+y.t; + while(--i >= 0) r[i] = 0; + for(i = 0; i < y.t; ++i) r[i+x.t] = x.am(0,y[i],r,i,0,x.t); + r.s = 0; + r.clamp(); + if(this.s != a.s) BigInteger.ZERO.subTo(r,r); + } + + // (protected) r = this^2, r != this (HAC 14.16) + function bnpSquareTo(r) { + var x = this.abs(); + var i = r.t = 2*x.t; + while(--i >= 0) r[i] = 0; + for(i = 0; i < x.t-1; ++i) { + var c = x.am(i,x[i],r,2*i,0,1); + if((r[i+x.t]+=x.am(i+1,2*x[i],r,2*i+1,c,x.t-i-1)) >= x.DV) { + r[i+x.t] -= x.DV; + r[i+x.t+1] = 1; + } + } + if(r.t > 0) r[r.t-1] += x.am(i,x[i],r,2*i,0,1); + r.s = 0; + r.clamp(); + } + + // (protected) divide this by m, quotient and remainder to q, r (HAC 14.20) + // r != q, this != m. q or r may be null. + function bnpDivRemTo(m,q,r) { + var pm = m.abs(); + if(pm.t <= 0) return; + var pt = this.abs(); + if(pt.t < pm.t) { + if(q != null) q.fromInt(0); + if(r != null) this.copyTo(r); + return; + } + if(r == null) r = nbi(); + var y = nbi(), ts = this.s, ms = m.s; + var nsh = this.DB-nbits(pm[pm.t-1]); // normalize modulus + if(nsh > 0) { pm.lShiftTo(nsh,y); pt.lShiftTo(nsh,r); } + else { pm.copyTo(y); pt.copyTo(r); } + var ys = y.t; + var y0 = y[ys-1]; + if(y0 == 0) return; + var yt = y0*(1<1)?y[ys-2]>>this.F2:0); + var d1 = this.FV/yt, d2 = (1<= 0) { + r[r.t++] = 1; + r.subTo(t,r); + } + BigInteger.ONE.dlShiftTo(ys,t); + t.subTo(y,y); // "negative" y so we can replace sub with am later + while(y.t < ys) y[y.t++] = 0; + while(--j >= 0) { + // Estimate quotient digit + var qd = (r[--i]==y0)?this.DM:Math.floor(r[i]*d1+(r[i-1]+e)*d2); + if((r[i]+=y.am(0,qd,r,j,0,ys)) < qd) { // Try it out + y.dlShiftTo(j,t); + r.subTo(t,r); + while(r[i] < --qd) r.subTo(t,r); + } + } + if(q != null) { + r.drShiftTo(ys,q); + if(ts != ms) BigInteger.ZERO.subTo(q,q); + } + r.t = ys; + r.clamp(); + if(nsh > 0) r.rShiftTo(nsh,r); // Denormalize remainder + if(ts < 0) BigInteger.ZERO.subTo(r,r); + } + + // (public) this mod a + function bnMod(a) { + var r = nbi(); + this.abs().divRemTo(a,null,r); + if(this.s < 0 && r.compareTo(BigInteger.ZERO) > 0) a.subTo(r,r); + return r; + } + + // Modular reduction using "classic" algorithm + function Classic(m) { this.m = m; } + function cConvert(x) { + if(x.s < 0 || x.compareTo(this.m) >= 0) return x.mod(this.m); + else return x; + } + function cRevert(x) { return x; } + function cReduce(x) { x.divRemTo(this.m,null,x); } + function cMulTo(x,y,r) { x.multiplyTo(y,r); this.reduce(r); } + function cSqrTo(x,r) { x.squareTo(r); this.reduce(r); } + + Classic.prototype.convert = cConvert; + Classic.prototype.revert = cRevert; + Classic.prototype.reduce = cReduce; + Classic.prototype.mulTo = cMulTo; + Classic.prototype.sqrTo = cSqrTo; + + // (protected) return "-1/this % 2^DB"; useful for Mont. reduction + // justification: + // xy == 1 (mod m) + // xy = 1+km + // xy(2-xy) = (1+km)(1-km) + // x[y(2-xy)] = 1-k^2m^2 + // x[y(2-xy)] == 1 (mod m^2) + // if y is 1/x mod m, then y(2-xy) is 1/x mod m^2 + // should reduce x and y(2-xy) by m^2 at each step to keep size bounded. + // JS multiply "overflows" differently from C/C++, so care is needed here. + function bnpInvDigit() { + if(this.t < 1) return 0; + var x = this[0]; + if((x&1) == 0) return 0; + var y = x&3; // y == 1/x mod 2^2 + y = (y*(2-(x&0xf)*y))&0xf; // y == 1/x mod 2^4 + y = (y*(2-(x&0xff)*y))&0xff; // y == 1/x mod 2^8 + y = (y*(2-(((x&0xffff)*y)&0xffff)))&0xffff; // y == 1/x mod 2^16 + // last step - calculate inverse mod DV directly; + // assumes 16 < DB <= 32 and assumes ability to handle 48-bit ints + y = (y*(2-x*y%this.DV))%this.DV; // y == 1/x mod 2^dbits + // we really want the negative inverse, and -DV < y < DV + return (y>0)?this.DV-y:-y; + } + + // Montgomery reduction + function Montgomery(m) { + this.m = m; + this.mp = m.invDigit(); + this.mpl = this.mp&0x7fff; + this.mph = this.mp>>15; + this.um = (1<<(m.DB-15))-1; + this.mt2 = 2*m.t; + } + + // xR mod m + function montConvert(x) { + var r = nbi(); + x.abs().dlShiftTo(this.m.t,r); + r.divRemTo(this.m,null,r); + if(x.s < 0 && r.compareTo(BigInteger.ZERO) > 0) this.m.subTo(r,r); + return r; + } + + // x/R mod m + function montRevert(x) { + var r = nbi(); + x.copyTo(r); + this.reduce(r); + return r; + } + + // x = x/R mod m (HAC 14.32) + function montReduce(x) { + while(x.t <= this.mt2) // pad x so am has enough room later + x[x.t++] = 0; + for(var i = 0; i < this.m.t; ++i) { + // faster way of calculating u0 = x[i]*mp mod DV + var j = x[i]&0x7fff; + var u0 = (j*this.mpl+(((j*this.mph+(x[i]>>15)*this.mpl)&this.um)<<15))&x.DM; + // use am to combine the multiply-shift-add into one call + j = i+this.m.t; + x[j] += this.m.am(0,u0,x,i,0,this.m.t); + // propagate carry + while(x[j] >= x.DV) { x[j] -= x.DV; x[++j]++; } + } + x.clamp(); + x.drShiftTo(this.m.t,x); + if(x.compareTo(this.m) >= 0) x.subTo(this.m,x); + } + + // r = "x^2/R mod m"; x != r + function montSqrTo(x,r) { x.squareTo(r); this.reduce(r); } + + // r = "xy/R mod m"; x,y != r + function montMulTo(x,y,r) { x.multiplyTo(y,r); this.reduce(r); } + + Montgomery.prototype.convert = montConvert; + Montgomery.prototype.revert = montRevert; + Montgomery.prototype.reduce = montReduce; + Montgomery.prototype.mulTo = montMulTo; + Montgomery.prototype.sqrTo = montSqrTo; + + // (protected) true iff this is even + function bnpIsEven() { return ((this.t>0)?(this[0]&1):this.s) == 0; } + + // (protected) this^e, e < 2^32, doing sqr and mul with "r" (HAC 14.79) + function bnpExp(e,z) { + if(e > 0xffffffff || e < 1) return BigInteger.ONE; + var r = nbi(), r2 = nbi(), g = z.convert(this), i = nbits(e)-1; + g.copyTo(r); + while(--i >= 0) { + z.sqrTo(r,r2); + if((e&(1< 0) z.mulTo(r2,g,r); + else { var t = r; r = r2; r2 = t; } + } + return z.revert(r); + } + + // (public) this^e % m, 0 <= e < 2^32 + function bnModPowInt(e,m) { + var z; + if(e < 256 || m.isEven()) z = new Classic(m); else z = new Montgomery(m); + return this.exp(e,z); + } + + // protected + BigInteger.prototype.copyTo = bnpCopyTo; + BigInteger.prototype.fromInt = bnpFromInt; + BigInteger.prototype.fromString = bnpFromString; + BigInteger.prototype.clamp = bnpClamp; + BigInteger.prototype.dlShiftTo = bnpDLShiftTo; + BigInteger.prototype.drShiftTo = bnpDRShiftTo; + BigInteger.prototype.lShiftTo = bnpLShiftTo; + BigInteger.prototype.rShiftTo = bnpRShiftTo; + BigInteger.prototype.subTo = bnpSubTo; + BigInteger.prototype.multiplyTo = bnpMultiplyTo; + BigInteger.prototype.squareTo = bnpSquareTo; + BigInteger.prototype.divRemTo = bnpDivRemTo; + BigInteger.prototype.invDigit = bnpInvDigit; + BigInteger.prototype.isEven = bnpIsEven; + BigInteger.prototype.exp = bnpExp; + + // public + BigInteger.prototype.toString = bnToString; + BigInteger.prototype.negate = bnNegate; + BigInteger.prototype.abs = bnAbs; + BigInteger.prototype.compareTo = bnCompareTo; + BigInteger.prototype.bitLength = bnBitLength; + BigInteger.prototype.mod = bnMod; + BigInteger.prototype.modPowInt = bnModPowInt; + + // "constants" + BigInteger.ZERO = nbv(0); + BigInteger.ONE = nbv(1); + + // jsbn2 stuff + + // (protected) convert from radix string + function bnpFromRadix(s,b) { + this.fromInt(0); + if(b == null) b = 10; + var cs = this.chunkSize(b); + var d = Math.pow(b,cs), mi = false, j = 0, w = 0; + for(var i = 0; i < s.length; ++i) { + var x = intAt(s,i); + if(x < 0) { + if(s.charAt(i) == "-" && this.signum() == 0) mi = true; + continue; + } + w = b*w+x; + if(++j >= cs) { + this.dMultiply(d); + this.dAddOffset(w,0); + j = 0; + w = 0; + } + } + if(j > 0) { + this.dMultiply(Math.pow(b,j)); + this.dAddOffset(w,0); + } + if(mi) BigInteger.ZERO.subTo(this,this); + } + + // (protected) return x s.t. r^x < DV + function bnpChunkSize(r) { return Math.floor(Math.LN2*this.DB/Math.log(r)); } + + // (public) 0 if this == 0, 1 if this > 0 + function bnSigNum() { + if(this.s < 0) return -1; + else if(this.t <= 0 || (this.t == 1 && this[0] <= 0)) return 0; + else return 1; + } + + // (protected) this *= n, this >= 0, 1 < n < DV + function bnpDMultiply(n) { + this[this.t] = this.am(0,n-1,this,0,0,this.t); + ++this.t; + this.clamp(); + } + + // (protected) this += n << w words, this >= 0 + function bnpDAddOffset(n,w) { + if(n == 0) return; + while(this.t <= w) this[this.t++] = 0; + this[w] += n; + while(this[w] >= this.DV) { + this[w] -= this.DV; + if(++w >= this.t) this[this.t++] = 0; + ++this[w]; + } + } + + // (protected) convert to radix string + function bnpToRadix(b) { + if(b == null) b = 10; + if(this.signum() == 0 || b < 2 || b > 36) return "0"; + var cs = this.chunkSize(b); + var a = Math.pow(b,cs); + var d = nbv(a), y = nbi(), z = nbi(), r = ""; + this.divRemTo(d,y,z); + while(y.signum() > 0) { + r = (a+z.intValue()).toString(b).substr(1) + r; + y.divRemTo(d,y,z); + } + return z.intValue().toString(b) + r; + } + + // (public) return value as integer + function bnIntValue() { + if(this.s < 0) { + if(this.t == 1) return this[0]-this.DV; + else if(this.t == 0) return -1; + } + else if(this.t == 1) return this[0]; + else if(this.t == 0) return 0; + // assumes 16 < DB < 32 + return ((this[1]&((1<<(32-this.DB))-1))<>= this.DB; + } + if(a.t < this.t) { + c += a.s; + while(i < this.t) { + c += this[i]; + r[i++] = c&this.DM; + c >>= this.DB; + } + c += this.s; + } + else { + c += this.s; + while(i < a.t) { + c += a[i]; + r[i++] = c&this.DM; + c >>= this.DB; + } + c += a.s; + } + r.s = (c<0)?-1:0; + if(c > 0) r[i++] = c; + else if(c < -1) r[i++] = this.DV+c; + r.t = i; + r.clamp(); + } + + BigInteger.prototype.fromRadix = bnpFromRadix; + BigInteger.prototype.chunkSize = bnpChunkSize; + BigInteger.prototype.signum = bnSigNum; + BigInteger.prototype.dMultiply = bnpDMultiply; + BigInteger.prototype.dAddOffset = bnpDAddOffset; + BigInteger.prototype.toRadix = bnpToRadix; + BigInteger.prototype.intValue = bnIntValue; + BigInteger.prototype.addTo = bnpAddTo; + + //======= end jsbn ======= + + // Emscripten wrapper + var Wrapper = { + abs: function(l, h) { + var x = new goog.math.Long(l, h); + var ret; + if (x.isNegative()) { + ret = x.negate(); + } else { + ret = x; + } + HEAP32[tempDoublePtr>>2] = ret.low_; + HEAP32[tempDoublePtr+4>>2] = ret.high_; + }, + ensureTemps: function() { + if (Wrapper.ensuredTemps) return; + Wrapper.ensuredTemps = true; + Wrapper.two32 = new BigInteger(); + Wrapper.two32.fromString('4294967296', 10); + Wrapper.two64 = new BigInteger(); + Wrapper.two64.fromString('18446744073709551616', 10); + Wrapper.temp1 = new BigInteger(); + Wrapper.temp2 = new BigInteger(); + }, + lh2bignum: function(l, h) { + var a = new BigInteger(); + a.fromString(h.toString(), 10); + var b = new BigInteger(); + a.multiplyTo(Wrapper.two32, b); + var c = new BigInteger(); + c.fromString(l.toString(), 10); + var d = new BigInteger(); + c.addTo(b, d); + return d; + }, + stringify: function(l, h, unsigned) { + var ret = new goog.math.Long(l, h).toString(); + if (unsigned && ret[0] == '-') { + // unsign slowly using jsbn bignums + Wrapper.ensureTemps(); + var bignum = new BigInteger(); + bignum.fromString(ret, 10); + ret = new BigInteger(); + Wrapper.two64.addTo(bignum, ret); + ret = ret.toString(10); + } + return ret; + }, + fromString: function(str, base, min, max, unsigned) { + Wrapper.ensureTemps(); + var bignum = new BigInteger(); + bignum.fromString(str, base); + var bigmin = new BigInteger(); + bigmin.fromString(min, 10); + var bigmax = new BigInteger(); + bigmax.fromString(max, 10); + if (unsigned && bignum.compareTo(BigInteger.ZERO) < 0) { + var temp = new BigInteger(); + bignum.addTo(Wrapper.two64, temp); + bignum = temp; + } + var error = false; + if (bignum.compareTo(bigmin) < 0) { + bignum = bigmin; + error = true; + } else if (bignum.compareTo(bigmax) > 0) { + bignum = bigmax; + error = true; + } + var ret = goog.math.Long.fromString(bignum.toString()); // min-max checks should have clamped this to a range goog.math.Long can handle well + HEAP32[tempDoublePtr>>2] = ret.low_; + HEAP32[tempDoublePtr+4>>2] = ret.high_; + if (error) throw 'range error'; + } + }; + return Wrapper; +})(); + +//======= end closure i64 code ======= + + + +// === Auto-generated postamble setup entry stuff === + +if (memoryInitializer) { + if (typeof Module['locateFile'] === 'function') { + memoryInitializer = Module['locateFile'](memoryInitializer); + } else if (Module['memoryInitializerPrefixURL']) { + memoryInitializer = Module['memoryInitializerPrefixURL'] + memoryInitializer; + } + if (ENVIRONMENT_IS_NODE || ENVIRONMENT_IS_SHELL) { + var data = Module['readBinary'](memoryInitializer); + HEAPU8.set(data, STATIC_BASE); + } else { + addRunDependency('memory initializer'); + Browser.asyncLoad(memoryInitializer, function(data) { + HEAPU8.set(data, STATIC_BASE); + removeRunDependency('memory initializer'); + }, function(data) { + throw 'could not load memory initializer ' + memoryInitializer; + }); + } +} + +function ExitStatus(status) { + this.name = "ExitStatus"; + this.message = "Program terminated with exit(" + status + ")"; + this.status = status; +}; +ExitStatus.prototype = new Error(); +ExitStatus.prototype.constructor = ExitStatus; + +var initialStackTop; +var preloadStartTime = null; +var calledMain = false; + +dependenciesFulfilled = function runCaller() { + // If run has never been called, and we should call run (INVOKE_RUN is true, and Module.noInitialRun is not false) + if (!Module['calledRun'] && shouldRunNow) run(); + if (!Module['calledRun']) dependenciesFulfilled = runCaller; // try this again later, after new deps are fulfilled +} + +Module['callMain'] = Module.callMain = function callMain(args) { + assert(runDependencies == 0, 'cannot call main when async dependencies remain! (listen on __ATMAIN__)'); + assert(__ATPRERUN__.length == 0, 'cannot call main when preRun functions remain to be called'); + + args = args || []; + + ensureInitRuntime(); + + var argc = args.length+1; + function pad() { + for (var i = 0; i < 4-1; i++) { + argv.push(0); + } + } + var argv = [allocate(intArrayFromString(Module['thisProgram']), 'i8', ALLOC_NORMAL) ]; + pad(); + for (var i = 0; i < argc-1; i = i + 1) { + argv.push(allocate(intArrayFromString(args[i]), 'i8', ALLOC_NORMAL)); + pad(); + } + argv.push(0); + argv = allocate(argv, 'i32', ALLOC_NORMAL); + + initialStackTop = STACKTOP; + + try { + + var ret = Module['_main'](argc, argv, 0); + + + // if we're not running an evented main loop, it's time to exit + exit(ret); + } + catch(e) { + if (e instanceof ExitStatus) { + // exit() throws this once it's done to make sure execution + // has been stopped completely + return; + } else if (e == 'SimulateInfiniteLoop') { + // running an evented main loop, don't immediately exit + Module['noExitRuntime'] = true; + return; + } else { + if (e && typeof e === 'object' && e.stack) Module.printErr('exception thrown: ' + [e, e.stack]); + throw e; + } + } finally { + calledMain = true; + } +} + + + + +function run(args) { + args = args || Module['arguments']; + + if (preloadStartTime === null) preloadStartTime = Date.now(); + + if (runDependencies > 0) { + return; + } + + preRun(); + + if (runDependencies > 0) return; // a preRun added a dependency, run will be called later + if (Module['calledRun']) return; // run may have just been called through dependencies being fulfilled just in this very frame + + function doRun() { + if (Module['calledRun']) return; // run may have just been called while the async setStatus time below was happening + Module['calledRun'] = true; + + if (ABORT) return; + + ensureInitRuntime(); + + preMain(); + + if (ENVIRONMENT_IS_WEB && preloadStartTime !== null) { + Module.printErr('pre-main prep time: ' + (Date.now() - preloadStartTime) + ' ms'); + } + + if (Module['onRuntimeInitialized']) Module['onRuntimeInitialized'](); + + if (Module['_main'] && shouldRunNow) Module['callMain'](args); + + postRun(); + } + + if (Module['setStatus']) { + Module['setStatus']('Running...'); + setTimeout(function() { + setTimeout(function() { + Module['setStatus'](''); + }, 1); + doRun(); + }, 1); + } else { + doRun(); + } +} +Module['run'] = Module.run = run; + +function exit(status) { + if (Module['noExitRuntime']) { + return; + } + + ABORT = true; + EXITSTATUS = status; + STACKTOP = initialStackTop; + + // exit the runtime + exitRuntime(); + + if (ENVIRONMENT_IS_NODE) { + // Work around a node.js bug where stdout buffer is not flushed at process exit: + // Instead of process.exit() directly, wait for stdout flush event. + // See https://github.com/joyent/node/issues/1669 and https://github.com/kripken/emscripten/issues/2582 + // Workaround is based on https://github.com/RReverser/acorn/commit/50ab143cecc9ed71a2d66f78b4aec3bb2e9844f6 + process['stdout']['once']('drain', function () { + process['exit'](status); + }); + console.log(' '); // Make sure to print something to force the drain event to occur, in case the stdout buffer was empty. + // Work around another node bug where sometimes 'drain' is never fired - make another effort + // to emit the exit status, after a significant delay (if node hasn't fired drain by then, give up) + setTimeout(function() { + process['exit'](status); + }, 500); + } else + if (ENVIRONMENT_IS_SHELL && typeof quit === 'function') { + quit(status); + } + // if we reach here, we must throw an exception to halt the current execution + throw new ExitStatus(status); +} +Module['exit'] = Module.exit = exit; + +function abort(text) { + if (text) { + Module.print(text); + Module.printErr(text); + } + + ABORT = true; + EXITSTATUS = 1; + + var extra = '\nIf this abort() is unexpected, build with -s ASSERTIONS=1 which can give more information.'; + + throw 'abort() at ' + stackTrace() + extra; +} +Module['abort'] = Module.abort = abort; + +// {{PRE_RUN_ADDITIONS}} + +if (Module['preInit']) { + if (typeof Module['preInit'] == 'function') Module['preInit'] = [Module['preInit']]; + while (Module['preInit'].length > 0) { + Module['preInit'].pop()(); + } +} + +// shouldRunNow refers to calling main(), not run(). +var shouldRunNow = true; +if (Module['noInitialRun']) { + shouldRunNow = false; +} + + +run(); + +// {{POST_RUN_ADDITIONS}} + + + + + + +// {{MODULE_ADDITIONS}} + + + + +/* vim: ts=4:sw=4:expandtab */ +var Internal = Internal || {}; + +(function() { + 'use strict'; + + // Insert some bytes into the emscripten memory and return a pointer + function _allocate(bytes) { + var address = Module._malloc(bytes.length); + Module.HEAPU8.set(bytes, address); + + return address; + } + + function _readBytes(address, length, array) { + array.set(Module.HEAPU8.subarray(address, address + length)); + } + + var basepoint = new Uint8Array(32); + basepoint[0] = 9; + + Internal.curve25519 = { + keyPair: function(privKey) { + var priv = new Uint8Array(privKey); + priv[0] &= 248; + priv[31] &= 127; + priv[31] |= 64; + + // Where to store the result + var publicKey_ptr = Module._malloc(32); + + // Get a pointer to the private key + var privateKey_ptr = _allocate(priv); + + // The basepoint for generating public keys + var basepoint_ptr = _allocate(basepoint); + + // The return value is just 0, the operation is done in place + var err = Module._curve25519_donna(publicKey_ptr, + privateKey_ptr, + basepoint_ptr); + + var res = new Uint8Array(32); + _readBytes(publicKey_ptr, 32, res); + + Module._free(publicKey_ptr); + Module._free(privateKey_ptr); + Module._free(basepoint_ptr); + + return { pubKey: res.buffer, privKey: priv.buffer }; + }, + sharedSecret: function(pubKey, privKey) { + // Where to store the result + var sharedKey_ptr = Module._malloc(32); + + // Get a pointer to our private key + var privateKey_ptr = _allocate(new Uint8Array(privKey)); + + // Get a pointer to their public key, the basepoint when you're + // generating a shared secret + var basepoint_ptr = _allocate(new Uint8Array(pubKey)); + + // Return value is 0 here too of course + var err = Module._curve25519_donna(sharedKey_ptr, + privateKey_ptr, + basepoint_ptr); + + var res = new Uint8Array(32); + _readBytes(sharedKey_ptr, 32, res); + + Module._free(sharedKey_ptr); + Module._free(privateKey_ptr); + Module._free(basepoint_ptr); + + return res.buffer; + }, + sign: function(privKey, message) { + // Where to store the result + var signature_ptr = Module._malloc(64); + + // Get a pointer to our private key + var privateKey_ptr = _allocate(new Uint8Array(privKey)); + + // Get a pointer to the message + var message_ptr = _allocate(new Uint8Array(message)); + + var err = Module._curve25519_sign(signature_ptr, + privateKey_ptr, + message_ptr, + message.byteLength); + + var res = new Uint8Array(64); + _readBytes(signature_ptr, 64, res); + + Module._free(signature_ptr); + Module._free(privateKey_ptr); + Module._free(message_ptr); + + return res.buffer; + }, + verify: function(pubKey, message, sig) { + // Get a pointer to their public key + var publicKey_ptr = _allocate(new Uint8Array(pubKey)); + + // Get a pointer to the signature + var signature_ptr = _allocate(new Uint8Array(sig)); + + // Get a pointer to the message + var message_ptr = _allocate(new Uint8Array(message)); + + var res = Module._curve25519_verify(signature_ptr, + publicKey_ptr, + message_ptr, + message.byteLength); + + Module._free(publicKey_ptr); + Module._free(signature_ptr); + Module._free(message_ptr); + + return res !== 0; + } + }; + + Internal.curve25519_async = { + keyPair: function(privKey) { + return new Promise(function(resolve) { + resolve(Internal.curve25519.keyPair(privKey)); + }); + }, + sharedSecret: function(pubKey, privKey) { + return new Promise(function(resolve) { + resolve(Internal.curve25519.sharedSecret(pubKey, privKey)); + }); + }, + sign: function(privKey, message) { + return new Promise(function(resolve) { + resolve(Internal.curve25519.sign(privKey, message)); + }); + }, + verify: function(pubKey, message, sig) { + return new Promise(function(resolve, reject) { + if (Internal.curve25519.verify(pubKey, message, sig)) { + reject(new Error("Invalid signature")); + } else { + resolve(); + } + }); + }, + }; + +})(); + +;(function() { + +'use strict'; + +// I am the...workee? +var origCurve25519 = Internal.curve25519_async; + +Internal.startWorker = function(url) { + Internal.stopWorker(); // there can be only one + Internal.curve25519_async = new Curve25519Worker(url); +}; + +Internal.stopWorker = function() { + if (Internal.curve25519_async instanceof Curve25519Worker) { + var worker = Internal.curve25519_async.worker; + Internal.curve25519_async = origCurve25519; + worker.terminate(); + } +}; + +libsignal.worker = { + startWorker: Internal.startWorker, + stopWorker: Internal.stopWorker, +}; + +function Curve25519Worker(url) { + this.jobs = {}; + this.jobId = 0; + this.worker = new Worker(url); + this.worker.onmessage = function(e) { + var job = this.jobs[e.data.id]; + if (e.data.error && typeof job.onerror === 'function') { + job.onerror(new Error(e.data.error)); + } else if (typeof job.onsuccess === 'function') { + job.onsuccess(e.data.result); + } + delete this.jobs[e.data.id]; + }.bind(this); +} + +Curve25519Worker.prototype = { + constructor: Curve25519Worker, + postMessage: function(methodName, args, onsuccess, onerror) { + return new Promise(function(resolve, reject) { + this.jobs[this.jobId] = { onsuccess: resolve, onerror: reject }; + this.worker.postMessage({ id: this.jobId, methodName: methodName, args: args }); + this.jobId++; + }.bind(this)); + }, + keyPair: function(privKey) { + return this.postMessage('keyPair', [privKey]); + }, + sharedSecret: function(pubKey, privKey) { + return this.postMessage('sharedSecret', [pubKey, privKey]); + }, + sign: function(privKey, message) { + return this.postMessage('sign', [privKey, message]); + }, + verify: function(pubKey, message, sig) { + return this.postMessage('verify', [pubKey, message, sig]); + } +}; + +})(); + +/* + Copyright 2013 Daniel Wirtz + Copyright 2009 The Closure Library Authors. All Rights Reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS-IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + */ + +/** + * @license long.js (c) 2013 Daniel Wirtz + * Released under the Apache License, Version 2.0 + * see: https://github.com/dcodeIO/long.js for details + */ +(function(global, factory) { + + /* AMD */ if (typeof define === 'function' && define["amd"]) + define([], factory); + /* CommonJS */ else if (typeof require === 'function' && typeof module === "object" && module && module["exports"]) + module["exports"] = factory(); + /* Global */ else + (global["dcodeIO"] = global["dcodeIO"] || {})["Long"] = factory(); + +})(this, function() { + "use strict"; + + /** + * Constructs a 64 bit two's-complement integer, given its low and high 32 bit values as *signed* integers. + * See the from* functions below for more convenient ways of constructing Longs. + * @exports Long + * @class A Long class for representing a 64 bit two's-complement integer value. + * @param {number} low The low (signed) 32 bits of the long + * @param {number} high The high (signed) 32 bits of the long + * @param {boolean=} unsigned Whether unsigned or not, defaults to `false` for signed + * @constructor + */ + function Long(low, high, unsigned) { + + /** + * The low 32 bits as a signed value. + * @type {number} + * @expose + */ + this.low = low | 0; + + /** + * The high 32 bits as a signed value. + * @type {number} + * @expose + */ + this.high = high | 0; + + /** + * Whether unsigned or not. + * @type {boolean} + * @expose + */ + this.unsigned = !!unsigned; + } + + // The internal representation of a long is the two given signed, 32-bit values. + // We use 32-bit pieces because these are the size of integers on which + // Javascript performs bit-operations. For operations like addition and + // multiplication, we split each number into 16 bit pieces, which can easily be + // multiplied within Javascript's floating-point representation without overflow + // or change in sign. + // + // In the algorithms below, we frequently reduce the negative case to the + // positive case by negating the input(s) and then post-processing the result. + // Note that we must ALWAYS check specially whether those values are MIN_VALUE + // (-2^63) because -MIN_VALUE == MIN_VALUE (since 2^63 cannot be represented as + // a positive number, it overflows back into a negative). Not handling this + // case would often result in infinite recursion. + // + // Common constant values ZERO, ONE, NEG_ONE, etc. are defined below the from* + // methods on which they depend. + + /** + * An indicator used to reliably determine if an object is a Long or not. + * @type {boolean} + * @const + * @expose + * @private + */ + Long.__isLong__; + + Object.defineProperty(Long.prototype, "__isLong__", { + value: true, + enumerable: false, + configurable: false + }); + + /** + * @function + * @param {*} obj Object + * @returns {boolean} + * @inner + */ + function isLong(obj) { + return (obj && obj["__isLong__"]) === true; + } + + /** + * Tests if the specified object is a Long. + * @function + * @param {*} obj Object + * @returns {boolean} + * @expose + */ + Long.isLong = isLong; + + /** + * A cache of the Long representations of small integer values. + * @type {!Object} + * @inner + */ + var INT_CACHE = {}; + + /** + * A cache of the Long representations of small unsigned integer values. + * @type {!Object} + * @inner + */ + var UINT_CACHE = {}; + + /** + * @param {number} value + * @param {boolean=} unsigned + * @returns {!Long} + * @inner + */ + function fromInt(value, unsigned) { + var obj, cachedObj, cache; + if (unsigned) { + value >>>= 0; + if (cache = (0 <= value && value < 256)) { + cachedObj = UINT_CACHE[value]; + if (cachedObj) + return cachedObj; + } + obj = fromBits(value, (value | 0) < 0 ? -1 : 0, true); + if (cache) + UINT_CACHE[value] = obj; + return obj; + } else { + value |= 0; + if (cache = (-128 <= value && value < 128)) { + cachedObj = INT_CACHE[value]; + if (cachedObj) + return cachedObj; + } + obj = fromBits(value, value < 0 ? -1 : 0, false); + if (cache) + INT_CACHE[value] = obj; + return obj; + } + } + + /** + * Returns a Long representing the given 32 bit integer value. + * @function + * @param {number} value The 32 bit integer in question + * @param {boolean=} unsigned Whether unsigned or not, defaults to `false` for signed + * @returns {!Long} The corresponding Long value + * @expose + */ + Long.fromInt = fromInt; + + /** + * @param {number} value + * @param {boolean=} unsigned + * @returns {!Long} + * @inner + */ + function fromNumber(value, unsigned) { + if (isNaN(value) || !isFinite(value)) + return unsigned ? UZERO : ZERO; + if (unsigned) { + if (value < 0) + return UZERO; + if (value >= TWO_PWR_64_DBL) + return MAX_UNSIGNED_VALUE; + } else { + if (value <= -TWO_PWR_63_DBL) + return MIN_VALUE; + if (value + 1 >= TWO_PWR_63_DBL) + return MAX_VALUE; + } + if (value < 0) + return fromNumber(-value, unsigned).neg(); + return fromBits((value % TWO_PWR_32_DBL) | 0, (value / TWO_PWR_32_DBL) | 0, unsigned); + } + + /** + * Returns a Long representing the given value, provided that it is a finite number. Otherwise, zero is returned. + * @function + * @param {number} value The number in question + * @param {boolean=} unsigned Whether unsigned or not, defaults to `false` for signed + * @returns {!Long} The corresponding Long value + * @expose + */ + Long.fromNumber = fromNumber; + + /** + * @param {number} lowBits + * @param {number} highBits + * @param {boolean=} unsigned + * @returns {!Long} + * @inner + */ + function fromBits(lowBits, highBits, unsigned) { + return new Long(lowBits, highBits, unsigned); + } + + /** + * Returns a Long representing the 64 bit integer that comes by concatenating the given low and high bits. Each is + * assumed to use 32 bits. + * @function + * @param {number} lowBits The low 32 bits + * @param {number} highBits The high 32 bits + * @param {boolean=} unsigned Whether unsigned or not, defaults to `false` for signed + * @returns {!Long} The corresponding Long value + * @expose + */ + Long.fromBits = fromBits; + + /** + * @function + * @param {number} base + * @param {number} exponent + * @returns {number} + * @inner + */ + var pow_dbl = Math.pow; // Used 4 times (4*8 to 15+4) + + /** + * @param {string} str + * @param {(boolean|number)=} unsigned + * @param {number=} radix + * @returns {!Long} + * @inner + */ + function fromString(str, unsigned, radix) { + if (str.length === 0) + throw Error('empty string'); + if (str === "NaN" || str === "Infinity" || str === "+Infinity" || str === "-Infinity") + return ZERO; + if (typeof unsigned === 'number') { + // For goog.math.long compatibility + radix = unsigned, + unsigned = false; + } else { + unsigned = !! unsigned; + } + radix = radix || 10; + if (radix < 2 || 36 < radix) + throw RangeError('radix'); + + var p; + if ((p = str.indexOf('-')) > 0) + throw Error('interior hyphen'); + else if (p === 0) { + return fromString(str.substring(1), unsigned, radix).neg(); + } + + // Do several (8) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + var radixToPower = fromNumber(pow_dbl(radix, 8)); + + var result = ZERO; + for (var i = 0; i < str.length; i += 8) { + var size = Math.min(8, str.length - i), + value = parseInt(str.substring(i, i + size), radix); + if (size < 8) { + var power = fromNumber(pow_dbl(radix, size)); + result = result.mul(power).add(fromNumber(value)); + } else { + result = result.mul(radixToPower); + result = result.add(fromNumber(value)); + } + } + result.unsigned = unsigned; + return result; + } + + /** + * Returns a Long representation of the given string, written using the specified radix. + * @function + * @param {string} str The textual representation of the Long + * @param {(boolean|number)=} unsigned Whether unsigned or not, defaults to `false` for signed + * @param {number=} radix The radix in which the text is written (2-36), defaults to 10 + * @returns {!Long} The corresponding Long value + * @expose + */ + Long.fromString = fromString; + + /** + * @function + * @param {!Long|number|string|!{low: number, high: number, unsigned: boolean}} val + * @returns {!Long} + * @inner + */ + function fromValue(val) { + if (val /* is compatible */ instanceof Long) + return val; + if (typeof val === 'number') + return fromNumber(val); + if (typeof val === 'string') + return fromString(val); + // Throws for non-objects, converts non-instanceof Long: + return fromBits(val.low, val.high, val.unsigned); + } + + /** + * Converts the specified value to a Long. + * @function + * @param {!Long|number|string|!{low: number, high: number, unsigned: boolean}} val Value + * @returns {!Long} + * @expose + */ + Long.fromValue = fromValue; + + // NOTE: the compiler should inline these constant values below and then remove these variables, so there should be + // no runtime penalty for these. + + /** + * @type {number} + * @const + * @inner + */ + var TWO_PWR_16_DBL = 1 << 16; + + /** + * @type {number} + * @const + * @inner + */ + var TWO_PWR_24_DBL = 1 << 24; + + /** + * @type {number} + * @const + * @inner + */ + var TWO_PWR_32_DBL = TWO_PWR_16_DBL * TWO_PWR_16_DBL; + + /** + * @type {number} + * @const + * @inner + */ + var TWO_PWR_64_DBL = TWO_PWR_32_DBL * TWO_PWR_32_DBL; + + /** + * @type {number} + * @const + * @inner + */ + var TWO_PWR_63_DBL = TWO_PWR_64_DBL / 2; + + /** + * @type {!Long} + * @const + * @inner + */ + var TWO_PWR_24 = fromInt(TWO_PWR_24_DBL); + + /** + * @type {!Long} + * @inner + */ + var ZERO = fromInt(0); + + /** + * Signed zero. + * @type {!Long} + * @expose + */ + Long.ZERO = ZERO; + + /** + * @type {!Long} + * @inner + */ + var UZERO = fromInt(0, true); + + /** + * Unsigned zero. + * @type {!Long} + * @expose + */ + Long.UZERO = UZERO; + + /** + * @type {!Long} + * @inner + */ + var ONE = fromInt(1); + + /** + * Signed one. + * @type {!Long} + * @expose + */ + Long.ONE = ONE; + + /** + * @type {!Long} + * @inner + */ + var UONE = fromInt(1, true); + + /** + * Unsigned one. + * @type {!Long} + * @expose + */ + Long.UONE = UONE; + + /** + * @type {!Long} + * @inner + */ + var NEG_ONE = fromInt(-1); + + /** + * Signed negative one. + * @type {!Long} + * @expose + */ + Long.NEG_ONE = NEG_ONE; + + /** + * @type {!Long} + * @inner + */ + var MAX_VALUE = fromBits(0xFFFFFFFF|0, 0x7FFFFFFF|0, false); + + /** + * Maximum signed value. + * @type {!Long} + * @expose + */ + Long.MAX_VALUE = MAX_VALUE; + + /** + * @type {!Long} + * @inner + */ + var MAX_UNSIGNED_VALUE = fromBits(0xFFFFFFFF|0, 0xFFFFFFFF|0, true); + + /** + * Maximum unsigned value. + * @type {!Long} + * @expose + */ + Long.MAX_UNSIGNED_VALUE = MAX_UNSIGNED_VALUE; + + /** + * @type {!Long} + * @inner + */ + var MIN_VALUE = fromBits(0, 0x80000000|0, false); + + /** + * Minimum signed value. + * @type {!Long} + * @expose + */ + Long.MIN_VALUE = MIN_VALUE; + + /** + * @alias Long.prototype + * @inner + */ + var LongPrototype = Long.prototype; + + /** + * Converts the Long to a 32 bit integer, assuming it is a 32 bit integer. + * @returns {number} + * @expose + */ + LongPrototype.toInt = function toInt() { + return this.unsigned ? this.low >>> 0 : this.low; + }; + + /** + * Converts the Long to a the nearest floating-point representation of this value (double, 53 bit mantissa). + * @returns {number} + * @expose + */ + LongPrototype.toNumber = function toNumber() { + if (this.unsigned) + return ((this.high >>> 0) * TWO_PWR_32_DBL) + (this.low >>> 0); + return this.high * TWO_PWR_32_DBL + (this.low >>> 0); + }; + + /** + * Converts the Long to a string written in the specified radix. + * @param {number=} radix Radix (2-36), defaults to 10 + * @returns {string} + * @override + * @throws {RangeError} If `radix` is out of range + * @expose + */ + LongPrototype.toString = function toString(radix) { + radix = radix || 10; + if (radix < 2 || 36 < radix) + throw RangeError('radix'); + if (this.isZero()) + return '0'; + if (this.isNegative()) { // Unsigned Longs are never negative + if (this.eq(MIN_VALUE)) { + // We need to change the Long value before it can be negated, so we remove + // the bottom-most digit in this base and then recurse to do the rest. + var radixLong = fromNumber(radix), + div = this.div(radixLong), + rem1 = div.mul(radixLong).sub(this); + return div.toString(radix) + rem1.toInt().toString(radix); + } else + return '-' + this.neg().toString(radix); + } + + // Do several (6) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + var radixToPower = fromNumber(pow_dbl(radix, 6), this.unsigned), + rem = this; + var result = ''; + while (true) { + var remDiv = rem.div(radixToPower), + intval = rem.sub(remDiv.mul(radixToPower)).toInt() >>> 0, + digits = intval.toString(radix); + rem = remDiv; + if (rem.isZero()) + return digits + result; + else { + while (digits.length < 6) + digits = '0' + digits; + result = '' + digits + result; + } + } + }; + + /** + * Gets the high 32 bits as a signed integer. + * @returns {number} Signed high bits + * @expose + */ + LongPrototype.getHighBits = function getHighBits() { + return this.high; + }; + + /** + * Gets the high 32 bits as an unsigned integer. + * @returns {number} Unsigned high bits + * @expose + */ + LongPrototype.getHighBitsUnsigned = function getHighBitsUnsigned() { + return this.high >>> 0; + }; + + /** + * Gets the low 32 bits as a signed integer. + * @returns {number} Signed low bits + * @expose + */ + LongPrototype.getLowBits = function getLowBits() { + return this.low; + }; + + /** + * Gets the low 32 bits as an unsigned integer. + * @returns {number} Unsigned low bits + * @expose + */ + LongPrototype.getLowBitsUnsigned = function getLowBitsUnsigned() { + return this.low >>> 0; + }; + + /** + * Gets the number of bits needed to represent the absolute value of this Long. + * @returns {number} + * @expose + */ + LongPrototype.getNumBitsAbs = function getNumBitsAbs() { + if (this.isNegative()) // Unsigned Longs are never negative + return this.eq(MIN_VALUE) ? 64 : this.neg().getNumBitsAbs(); + var val = this.high != 0 ? this.high : this.low; + for (var bit = 31; bit > 0; bit--) + if ((val & (1 << bit)) != 0) + break; + return this.high != 0 ? bit + 33 : bit + 1; + }; + + /** + * Tests if this Long's value equals zero. + * @returns {boolean} + * @expose + */ + LongPrototype.isZero = function isZero() { + return this.high === 0 && this.low === 0; + }; + + /** + * Tests if this Long's value is negative. + * @returns {boolean} + * @expose + */ + LongPrototype.isNegative = function isNegative() { + return !this.unsigned && this.high < 0; + }; + + /** + * Tests if this Long's value is positive. + * @returns {boolean} + * @expose + */ + LongPrototype.isPositive = function isPositive() { + return this.unsigned || this.high >= 0; + }; + + /** + * Tests if this Long's value is odd. + * @returns {boolean} + * @expose + */ + LongPrototype.isOdd = function isOdd() { + return (this.low & 1) === 1; + }; + + /** + * Tests if this Long's value is even. + * @returns {boolean} + * @expose + */ + LongPrototype.isEven = function isEven() { + return (this.low & 1) === 0; + }; + + /** + * Tests if this Long's value equals the specified's. + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.equals = function equals(other) { + if (!isLong(other)) + other = fromValue(other); + if (this.unsigned !== other.unsigned && (this.high >>> 31) === 1 && (other.high >>> 31) === 1) + return false; + return this.high === other.high && this.low === other.low; + }; + + /** + * Tests if this Long's value equals the specified's. This is an alias of {@link Long#equals}. + * @function + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.eq = LongPrototype.equals; + + /** + * Tests if this Long's value differs from the specified's. + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.notEquals = function notEquals(other) { + return !this.eq(/* validates */ other); + }; + + /** + * Tests if this Long's value differs from the specified's. This is an alias of {@link Long#notEquals}. + * @function + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.neq = LongPrototype.notEquals; + + /** + * Tests if this Long's value is less than the specified's. + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.lessThan = function lessThan(other) { + return this.comp(/* validates */ other) < 0; + }; + + /** + * Tests if this Long's value is less than the specified's. This is an alias of {@link Long#lessThan}. + * @function + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.lt = LongPrototype.lessThan; + + /** + * Tests if this Long's value is less than or equal the specified's. + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.lessThanOrEqual = function lessThanOrEqual(other) { + return this.comp(/* validates */ other) <= 0; + }; + + /** + * Tests if this Long's value is less than or equal the specified's. This is an alias of {@link Long#lessThanOrEqual}. + * @function + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.lte = LongPrototype.lessThanOrEqual; + + /** + * Tests if this Long's value is greater than the specified's. + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.greaterThan = function greaterThan(other) { + return this.comp(/* validates */ other) > 0; + }; + + /** + * Tests if this Long's value is greater than the specified's. This is an alias of {@link Long#greaterThan}. + * @function + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.gt = LongPrototype.greaterThan; + + /** + * Tests if this Long's value is greater than or equal the specified's. + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.greaterThanOrEqual = function greaterThanOrEqual(other) { + return this.comp(/* validates */ other) >= 0; + }; + + /** + * Tests if this Long's value is greater than or equal the specified's. This is an alias of {@link Long#greaterThanOrEqual}. + * @function + * @param {!Long|number|string} other Other value + * @returns {boolean} + * @expose + */ + LongPrototype.gte = LongPrototype.greaterThanOrEqual; + + /** + * Compares this Long's value with the specified's. + * @param {!Long|number|string} other Other value + * @returns {number} 0 if they are the same, 1 if the this is greater and -1 + * if the given one is greater + * @expose + */ + LongPrototype.compare = function compare(other) { + if (!isLong(other)) + other = fromValue(other); + if (this.eq(other)) + return 0; + var thisNeg = this.isNegative(), + otherNeg = other.isNegative(); + if (thisNeg && !otherNeg) + return -1; + if (!thisNeg && otherNeg) + return 1; + // At this point the sign bits are the same + if (!this.unsigned) + return this.sub(other).isNegative() ? -1 : 1; + // Both are positive if at least one is unsigned + return (other.high >>> 0) > (this.high >>> 0) || (other.high === this.high && (other.low >>> 0) > (this.low >>> 0)) ? -1 : 1; + }; + + /** + * Compares this Long's value with the specified's. This is an alias of {@link Long#compare}. + * @function + * @param {!Long|number|string} other Other value + * @returns {number} 0 if they are the same, 1 if the this is greater and -1 + * if the given one is greater + * @expose + */ + LongPrototype.comp = LongPrototype.compare; + + /** + * Negates this Long's value. + * @returns {!Long} Negated Long + * @expose + */ + LongPrototype.negate = function negate() { + if (!this.unsigned && this.eq(MIN_VALUE)) + return MIN_VALUE; + return this.not().add(ONE); + }; + + /** + * Negates this Long's value. This is an alias of {@link Long#negate}. + * @function + * @returns {!Long} Negated Long + * @expose + */ + LongPrototype.neg = LongPrototype.negate; + + /** + * Returns the sum of this and the specified Long. + * @param {!Long|number|string} addend Addend + * @returns {!Long} Sum + * @expose + */ + LongPrototype.add = function add(addend) { + if (!isLong(addend)) + addend = fromValue(addend); + + // Divide each number into 4 chunks of 16 bits, and then sum the chunks. + + var a48 = this.high >>> 16; + var a32 = this.high & 0xFFFF; + var a16 = this.low >>> 16; + var a00 = this.low & 0xFFFF; + + var b48 = addend.high >>> 16; + var b32 = addend.high & 0xFFFF; + var b16 = addend.low >>> 16; + var b00 = addend.low & 0xFFFF; + + var c48 = 0, c32 = 0, c16 = 0, c00 = 0; + c00 += a00 + b00; + c16 += c00 >>> 16; + c00 &= 0xFFFF; + c16 += a16 + b16; + c32 += c16 >>> 16; + c16 &= 0xFFFF; + c32 += a32 + b32; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c48 += a48 + b48; + c48 &= 0xFFFF; + return fromBits((c16 << 16) | c00, (c48 << 16) | c32, this.unsigned); + }; + + /** + * Returns the difference of this and the specified Long. + * @param {!Long|number|string} subtrahend Subtrahend + * @returns {!Long} Difference + * @expose + */ + LongPrototype.subtract = function subtract(subtrahend) { + if (!isLong(subtrahend)) + subtrahend = fromValue(subtrahend); + return this.add(subtrahend.neg()); + }; + + /** + * Returns the difference of this and the specified Long. This is an alias of {@link Long#subtract}. + * @function + * @param {!Long|number|string} subtrahend Subtrahend + * @returns {!Long} Difference + * @expose + */ + LongPrototype.sub = LongPrototype.subtract; + + /** + * Returns the product of this and the specified Long. + * @param {!Long|number|string} multiplier Multiplier + * @returns {!Long} Product + * @expose + */ + LongPrototype.multiply = function multiply(multiplier) { + if (this.isZero()) + return ZERO; + if (!isLong(multiplier)) + multiplier = fromValue(multiplier); + if (multiplier.isZero()) + return ZERO; + if (this.eq(MIN_VALUE)) + return multiplier.isOdd() ? MIN_VALUE : ZERO; + if (multiplier.eq(MIN_VALUE)) + return this.isOdd() ? MIN_VALUE : ZERO; + + if (this.isNegative()) { + if (multiplier.isNegative()) + return this.neg().mul(multiplier.neg()); + else + return this.neg().mul(multiplier).neg(); + } else if (multiplier.isNegative()) + return this.mul(multiplier.neg()).neg(); + + // If both longs are small, use float multiplication + if (this.lt(TWO_PWR_24) && multiplier.lt(TWO_PWR_24)) + return fromNumber(this.toNumber() * multiplier.toNumber(), this.unsigned); + + // Divide each long into 4 chunks of 16 bits, and then add up 4x4 products. + // We can skip products that would overflow. + + var a48 = this.high >>> 16; + var a32 = this.high & 0xFFFF; + var a16 = this.low >>> 16; + var a00 = this.low & 0xFFFF; + + var b48 = multiplier.high >>> 16; + var b32 = multiplier.high & 0xFFFF; + var b16 = multiplier.low >>> 16; + var b00 = multiplier.low & 0xFFFF; + + var c48 = 0, c32 = 0, c16 = 0, c00 = 0; + c00 += a00 * b00; + c16 += c00 >>> 16; + c00 &= 0xFFFF; + c16 += a16 * b00; + c32 += c16 >>> 16; + c16 &= 0xFFFF; + c16 += a00 * b16; + c32 += c16 >>> 16; + c16 &= 0xFFFF; + c32 += a32 * b00; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c32 += a16 * b16; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c32 += a00 * b32; + c48 += c32 >>> 16; + c32 &= 0xFFFF; + c48 += a48 * b00 + a32 * b16 + a16 * b32 + a00 * b48; + c48 &= 0xFFFF; + return fromBits((c16 << 16) | c00, (c48 << 16) | c32, this.unsigned); + }; + + /** + * Returns the product of this and the specified Long. This is an alias of {@link Long#multiply}. + * @function + * @param {!Long|number|string} multiplier Multiplier + * @returns {!Long} Product + * @expose + */ + LongPrototype.mul = LongPrototype.multiply; + + /** + * Returns this Long divided by the specified. The result is signed if this Long is signed or + * unsigned if this Long is unsigned. + * @param {!Long|number|string} divisor Divisor + * @returns {!Long} Quotient + * @expose + */ + LongPrototype.divide = function divide(divisor) { + if (!isLong(divisor)) + divisor = fromValue(divisor); + if (divisor.isZero()) + throw Error('division by zero'); + if (this.isZero()) + return this.unsigned ? UZERO : ZERO; + var approx, rem, res; + if (!this.unsigned) { + if (this.eq(MIN_VALUE)) { + if (divisor.eq(ONE) || divisor.eq(NEG_ONE)) + return MIN_VALUE; // recall that -MIN_VALUE == MIN_VALUE + else if (divisor.eq(MIN_VALUE)) + return ONE; + else { + // At this point, we have |other| >= 2, so |this/other| < |MIN_VALUE|. + var halfThis = this.shr(1); + approx = halfThis.div(divisor).shl(1); + if (approx.eq(ZERO)) { + return divisor.isNegative() ? ONE : NEG_ONE; + } else { + rem = this.sub(divisor.mul(approx)); + res = approx.add(rem.div(divisor)); + return res; + } + } + } else if (divisor.eq(MIN_VALUE)) + return this.unsigned ? UZERO : ZERO; + if (this.isNegative()) { + if (divisor.isNegative()) + return this.neg().div(divisor.neg()); + return this.neg().div(divisor).neg(); + } else if (divisor.isNegative()) + return this.div(divisor.neg()).neg(); + } else if (!divisor.unsigned) + divisor = divisor.toUnsigned(); + + // The algorithm below has not been made for unsigned longs. It's therefore + // required to take special care of the MSB prior to running it. + if (this.unsigned) { + if (divisor.gt(this)) + return UZERO; + if (divisor.gt(this.shru(1))) // 15 >>> 1 = 7 ; with divisor = 8 ; true + return UONE; + res = UZERO; + } else + res = ZERO; + + // Repeat the following until the remainder is less than other: find a + // floating-point that approximates remainder / other *from below*, add this + // into the result, and subtract it from the remainder. It is critical that + // the approximate value is less than or equal to the real value so that the + // remainder never becomes negative. + rem = this; + while (rem.gte(divisor)) { + // Approximate the result of division. This may be a little greater or + // smaller than the actual value. + approx = Math.max(1, Math.floor(rem.toNumber() / divisor.toNumber())); + + // We will tweak the approximate result by changing it in the 48-th digit or + // the smallest non-fractional digit, whichever is larger. + var log2 = Math.ceil(Math.log(approx) / Math.LN2), + delta = (log2 <= 48) ? 1 : pow_dbl(2, log2 - 48), + + // Decrease the approximation until it is smaller than the remainder. Note + // that if it is too large, the product overflows and is negative. + approxRes = fromNumber(approx), + approxRem = approxRes.mul(divisor); + while (approxRem.isNegative() || approxRem.gt(rem)) { + approx -= delta; + approxRes = fromNumber(approx, this.unsigned); + approxRem = approxRes.mul(divisor); + } + + // We know the answer can't be zero... and actually, zero would cause + // infinite recursion since we would make no progress. + if (approxRes.isZero()) + approxRes = ONE; + + res = res.add(approxRes); + rem = rem.sub(approxRem); + } + return res; + }; + + /** + * Returns this Long divided by the specified. This is an alias of {@link Long#divide}. + * @function + * @param {!Long|number|string} divisor Divisor + * @returns {!Long} Quotient + * @expose + */ + LongPrototype.div = LongPrototype.divide; + + /** + * Returns this Long modulo the specified. + * @param {!Long|number|string} divisor Divisor + * @returns {!Long} Remainder + * @expose + */ + LongPrototype.modulo = function modulo(divisor) { + if (!isLong(divisor)) + divisor = fromValue(divisor); + return this.sub(this.div(divisor).mul(divisor)); + }; + + /** + * Returns this Long modulo the specified. This is an alias of {@link Long#modulo}. + * @function + * @param {!Long|number|string} divisor Divisor + * @returns {!Long} Remainder + * @expose + */ + LongPrototype.mod = LongPrototype.modulo; + + /** + * Returns the bitwise NOT of this Long. + * @returns {!Long} + * @expose + */ + LongPrototype.not = function not() { + return fromBits(~this.low, ~this.high, this.unsigned); + }; + + /** + * Returns the bitwise AND of this Long and the specified. + * @param {!Long|number|string} other Other Long + * @returns {!Long} + * @expose + */ + LongPrototype.and = function and(other) { + if (!isLong(other)) + other = fromValue(other); + return fromBits(this.low & other.low, this.high & other.high, this.unsigned); + }; + + /** + * Returns the bitwise OR of this Long and the specified. + * @param {!Long|number|string} other Other Long + * @returns {!Long} + * @expose + */ + LongPrototype.or = function or(other) { + if (!isLong(other)) + other = fromValue(other); + return fromBits(this.low | other.low, this.high | other.high, this.unsigned); + }; + + /** + * Returns the bitwise XOR of this Long and the given one. + * @param {!Long|number|string} other Other Long + * @returns {!Long} + * @expose + */ + LongPrototype.xor = function xor(other) { + if (!isLong(other)) + other = fromValue(other); + return fromBits(this.low ^ other.low, this.high ^ other.high, this.unsigned); + }; + + /** + * Returns this Long with bits shifted to the left by the given amount. + * @param {number|!Long} numBits Number of bits + * @returns {!Long} Shifted Long + * @expose + */ + LongPrototype.shiftLeft = function shiftLeft(numBits) { + if (isLong(numBits)) + numBits = numBits.toInt(); + if ((numBits &= 63) === 0) + return this; + else if (numBits < 32) + return fromBits(this.low << numBits, (this.high << numBits) | (this.low >>> (32 - numBits)), this.unsigned); + else + return fromBits(0, this.low << (numBits - 32), this.unsigned); + }; + + /** + * Returns this Long with bits shifted to the left by the given amount. This is an alias of {@link Long#shiftLeft}. + * @function + * @param {number|!Long} numBits Number of bits + * @returns {!Long} Shifted Long + * @expose + */ + LongPrototype.shl = LongPrototype.shiftLeft; + + /** + * Returns this Long with bits arithmetically shifted to the right by the given amount. + * @param {number|!Long} numBits Number of bits + * @returns {!Long} Shifted Long + * @expose + */ + LongPrototype.shiftRight = function shiftRight(numBits) { + if (isLong(numBits)) + numBits = numBits.toInt(); + if ((numBits &= 63) === 0) + return this; + else if (numBits < 32) + return fromBits((this.low >>> numBits) | (this.high << (32 - numBits)), this.high >> numBits, this.unsigned); + else + return fromBits(this.high >> (numBits - 32), this.high >= 0 ? 0 : -1, this.unsigned); + }; + + /** + * Returns this Long with bits arithmetically shifted to the right by the given amount. This is an alias of {@link Long#shiftRight}. + * @function + * @param {number|!Long} numBits Number of bits + * @returns {!Long} Shifted Long + * @expose + */ + LongPrototype.shr = LongPrototype.shiftRight; + + /** + * Returns this Long with bits logically shifted to the right by the given amount. + * @param {number|!Long} numBits Number of bits + * @returns {!Long} Shifted Long + * @expose + */ + LongPrototype.shiftRightUnsigned = function shiftRightUnsigned(numBits) { + if (isLong(numBits)) + numBits = numBits.toInt(); + numBits &= 63; + if (numBits === 0) + return this; + else { + var high = this.high; + if (numBits < 32) { + var low = this.low; + return fromBits((low >>> numBits) | (high << (32 - numBits)), high >>> numBits, this.unsigned); + } else if (numBits === 32) + return fromBits(high, 0, this.unsigned); + else + return fromBits(high >>> (numBits - 32), 0, this.unsigned); + } + }; + + /** + * Returns this Long with bits logically shifted to the right by the given amount. This is an alias of {@link Long#shiftRightUnsigned}. + * @function + * @param {number|!Long} numBits Number of bits + * @returns {!Long} Shifted Long + * @expose + */ + LongPrototype.shru = LongPrototype.shiftRightUnsigned; + + /** + * Converts this Long to signed. + * @returns {!Long} Signed long + * @expose + */ + LongPrototype.toSigned = function toSigned() { + if (!this.unsigned) + return this; + return fromBits(this.low, this.high, false); + }; + + /** + * Converts this Long to unsigned. + * @returns {!Long} Unsigned long + * @expose + */ + LongPrototype.toUnsigned = function toUnsigned() { + if (this.unsigned) + return this; + return fromBits(this.low, this.high, true); + }; + + return Long; +}); + +/* + Copyright 2013-2014 Daniel Wirtz + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + */ + +/** + * @license ByteBuffer.js (c) 2013-2014 Daniel Wirtz + * This version of ByteBuffer.js uses an ArrayBuffer as its backing buffer which is accessed through a DataView and is + * compatible with modern browsers. + * Released under the Apache License, Version 2.0 + * see: https://github.com/dcodeIO/ByteBuffer.js for details + */ // +(function(global) { + "use strict"; + + /** + * @param {function(new: Long, number, number, boolean=)=} Long + * @returns {function(new: ByteBuffer, number=, boolean=, boolean=)}} + * @inner + */ + function loadByteBuffer(Long) { + + /** + * Constructs a new ByteBuffer. + * @class The swiss army knife for binary data in JavaScript. + * @exports ByteBuffer + * @constructor + * @param {number=} capacity Initial capacity. Defaults to {@link ByteBuffer.DEFAULT_CAPACITY}. + * @param {boolean=} littleEndian Whether to use little or big endian byte order. Defaults to + * {@link ByteBuffer.DEFAULT_ENDIAN}. + * @param {boolean=} noAssert Whether to skip assertions of offsets and values. Defaults to + * {@link ByteBuffer.DEFAULT_NOASSERT}. + * @expose + */ + var ByteBuffer = function(capacity, littleEndian, noAssert) { + if (typeof capacity === 'undefined') capacity = ByteBuffer.DEFAULT_CAPACITY; + if (typeof littleEndian === 'undefined') littleEndian = ByteBuffer.DEFAULT_ENDIAN; + if (typeof noAssert === 'undefined') noAssert = ByteBuffer.DEFAULT_NOASSERT; + if (!noAssert) { + capacity = capacity | 0; + if (capacity < 0) + throw RangeError("Illegal capacity"); + littleEndian = !!littleEndian; + noAssert = !!noAssert; + } + + /** + * Backing buffer. + * @type {!ArrayBuffer} + * @expose + */ + this.buffer = capacity === 0 ? EMPTY_BUFFER : new ArrayBuffer(capacity); + + /** + * Data view to manipulate the backing buffer. Becomes `null` if the backing buffer has a capacity of `0`. + * @type {?DataView} + * @expose + */ + this.view = capacity === 0 ? null : new DataView(this.buffer); + + /** + * Absolute read/write offset. + * @type {number} + * @expose + * @see ByteBuffer#flip + * @see ByteBuffer#clear + */ + this.offset = 0; + + /** + * Marked offset. + * @type {number} + * @expose + * @see ByteBuffer#mark + * @see ByteBuffer#reset + */ + this.markedOffset = -1; + + /** + * Absolute limit of the contained data. Set to the backing buffer's capacity upon allocation. + * @type {number} + * @expose + * @see ByteBuffer#flip + * @see ByteBuffer#clear + */ + this.limit = capacity; + + /** + * Whether to use little endian byte order, defaults to `false` for big endian. + * @type {boolean} + * @expose + */ + this.littleEndian = typeof littleEndian !== 'undefined' ? !!littleEndian : false; + + /** + * Whether to skip assertions of offsets and values, defaults to `false`. + * @type {boolean} + * @expose + */ + this.noAssert = !!noAssert; + }; + + /** + * ByteBuffer version. + * @type {string} + * @const + * @expose + */ + ByteBuffer.VERSION = "3.5.5"; + + /** + * Little endian constant that can be used instead of its boolean value. Evaluates to `true`. + * @type {boolean} + * @const + * @expose + */ + ByteBuffer.LITTLE_ENDIAN = true; + + /** + * Big endian constant that can be used instead of its boolean value. Evaluates to `false`. + * @type {boolean} + * @const + * @expose + */ + ByteBuffer.BIG_ENDIAN = false; + + /** + * Default initial capacity of `16`. + * @type {number} + * @expose + */ + ByteBuffer.DEFAULT_CAPACITY = 16; + + /** + * Default endianess of `false` for big endian. + * @type {boolean} + * @expose + */ + ByteBuffer.DEFAULT_ENDIAN = ByteBuffer.BIG_ENDIAN; + + /** + * Default no assertions flag of `false`. + * @type {boolean} + * @expose + */ + ByteBuffer.DEFAULT_NOASSERT = false; + + /** + * A `Long` class for representing a 64-bit two's-complement integer value. May be `null` if Long.js has not been loaded + * and int64 support is not available. + * @type {?Long} + * @const + * @see https://github.com/dcodeIO/Long.js + * @expose + */ + ByteBuffer.Long = Long || null; + + /** + * @alias ByteBuffer.prototype + * @inner + */ + var ByteBufferPrototype = ByteBuffer.prototype; + + // helpers + + /** + * @type {!ArrayBuffer} + * @inner + */ + var EMPTY_BUFFER = new ArrayBuffer(0); + + /** + * String.fromCharCode reference for compile-time renaming. + * @type {function(...number):string} + * @inner + */ + var stringFromCharCode = String.fromCharCode; + + /** + * Creates a source function for a string. + * @param {string} s String to read from + * @returns {function():number|null} Source function returning the next char code respectively `null` if there are + * no more characters left. + * @throws {TypeError} If the argument is invalid + * @inner + */ + function stringSource(s) { + var i=0; return function() { + return i < s.length ? s.charCodeAt(i++) : null; + }; + } + + /** + * Creates a destination function for a string. + * @returns {function(number=):undefined|string} Destination function successively called with the next char code. + * Returns the final string when called without arguments. + * @inner + */ + function stringDestination() { + var cs = [], ps = []; return function() { + if (arguments.length === 0) + return ps.join('')+stringFromCharCode.apply(String, cs); + if (cs.length + arguments.length > 1024) + ps.push(stringFromCharCode.apply(String, cs)), + cs.length = 0; + Array.prototype.push.apply(cs, arguments); + }; + } + + /** + * Allocates a new ByteBuffer backed by a buffer of the specified capacity. + * @param {number=} capacity Initial capacity. Defaults to {@link ByteBuffer.DEFAULT_CAPACITY}. + * @param {boolean=} littleEndian Whether to use little or big endian byte order. Defaults to + * {@link ByteBuffer.DEFAULT_ENDIAN}. + * @param {boolean=} noAssert Whether to skip assertions of offsets and values. Defaults to + * {@link ByteBuffer.DEFAULT_NOASSERT}. + * @returns {!ByteBuffer} + * @expose + */ + ByteBuffer.allocate = function(capacity, littleEndian, noAssert) { + return new ByteBuffer(capacity, littleEndian, noAssert); + }; + + /** + * Concatenates multiple ByteBuffers into one. + * @param {!Array.} buffers Buffers to concatenate + * @param {(string|boolean)=} encoding String encoding if `buffers` contains a string ("base64", "hex", "binary", + * defaults to "utf8") + * @param {boolean=} littleEndian Whether to use little or big endian byte order for the resulting ByteBuffer. Defaults + * to {@link ByteBuffer.DEFAULT_ENDIAN}. + * @param {boolean=} noAssert Whether to skip assertions of offsets and values for the resulting ByteBuffer. Defaults to + * {@link ByteBuffer.DEFAULT_NOASSERT}. + * @returns {!ByteBuffer} Concatenated ByteBuffer + * @expose + */ + ByteBuffer.concat = function(buffers, encoding, littleEndian, noAssert) { + if (typeof encoding === 'boolean' || typeof encoding !== 'string') { + noAssert = littleEndian; + littleEndian = encoding; + encoding = undefined; + } + var capacity = 0; + for (var i=0, k=buffers.length, length; i 0) capacity += length; + } + if (capacity === 0) + return new ByteBuffer(0, littleEndian, noAssert); + var bb = new ByteBuffer(capacity, littleEndian, noAssert), + bi; + var view = new Uint8Array(bb.buffer); + i=0; while (i} buffer Anything that can be wrapped + * @param {(string|boolean)=} encoding String encoding if `buffer` is a string ("base64", "hex", "binary", defaults to + * "utf8") + * @param {boolean=} littleEndian Whether to use little or big endian byte order. Defaults to + * {@link ByteBuffer.DEFAULT_ENDIAN}. + * @param {boolean=} noAssert Whether to skip assertions of offsets and values. Defaults to + * {@link ByteBuffer.DEFAULT_NOASSERT}. + * @returns {!ByteBuffer} A ByteBuffer wrapping `buffer` + * @expose + */ + ByteBuffer.wrap = function(buffer, encoding, littleEndian, noAssert) { + if (typeof encoding !== 'string') { + noAssert = littleEndian; + littleEndian = encoding; + encoding = undefined; + } + if (typeof buffer === 'string') { + if (typeof encoding === 'undefined') + encoding = "utf8"; + switch (encoding) { + case "base64": + return ByteBuffer.fromBase64(buffer, littleEndian); + case "hex": + return ByteBuffer.fromHex(buffer, littleEndian); + case "binary": + return ByteBuffer.fromBinary(buffer, littleEndian); + case "utf8": + return ByteBuffer.fromUTF8(buffer, littleEndian); + case "debug": + return ByteBuffer.fromDebug(buffer, littleEndian); + default: + throw Error("Unsupported encoding: "+encoding); + } + } + if (buffer === null || typeof buffer !== 'object') + throw TypeError("Illegal buffer"); + var bb; + if (ByteBuffer.isByteBuffer(buffer)) { + bb = ByteBufferPrototype.clone.call(buffer); + bb.markedOffset = -1; + return bb; + } + if (buffer instanceof Uint8Array) { // Extract ArrayBuffer from Uint8Array + bb = new ByteBuffer(0, littleEndian, noAssert); + if (buffer.length > 0) { // Avoid references to more than one EMPTY_BUFFER + bb.buffer = buffer.buffer; + bb.offset = buffer.byteOffset; + bb.limit = buffer.byteOffset + buffer.length; + bb.view = buffer.length > 0 ? new DataView(buffer.buffer) : null; + } + } else if (buffer instanceof ArrayBuffer) { // Reuse ArrayBuffer + bb = new ByteBuffer(0, littleEndian, noAssert); + if (buffer.byteLength > 0) { + bb.buffer = buffer; + bb.offset = 0; + bb.limit = buffer.byteLength; + bb.view = buffer.byteLength > 0 ? new DataView(buffer) : null; + } + } else if (Object.prototype.toString.call(buffer) === "[object Array]") { // Create from octets + bb = new ByteBuffer(buffer.length, littleEndian, noAssert); + bb.limit = buffer.length; + for (i=0; i>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + offset += 1; + var capacity0 = this.buffer.byteLength; + if (offset > capacity0) + this.resize((capacity0 *= 2) > offset ? capacity0 : offset); + offset -= 1; + this.view.setInt8(offset, value); + if (relative) this.offset += 1; + return this; + }; + + /** + * Writes an 8bit signed integer. This is an alias of {@link ByteBuffer#writeInt8}. + * @function + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and advance {@link ByteBuffer#offset} by `1` if omitted. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.writeByte = ByteBufferPrototype.writeInt8; + + /** + * Reads an 8bit signed integer. + * @param {number=} offset Offset to read from. Will use and advance {@link ByteBuffer#offset} by `1` if omitted. + * @returns {number} Value read + * @expose + */ + ByteBufferPrototype.readInt8 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 1 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+1+") <= "+this.buffer.byteLength); + } + var value = this.view.getInt8(offset); + if (relative) this.offset += 1; + return value; + }; + + /** + * Reads an 8bit signed integer. This is an alias of {@link ByteBuffer#readInt8}. + * @function + * @param {number=} offset Offset to read from. Will use and advance {@link ByteBuffer#offset} by `1` if omitted. + * @returns {number} Value read + * @expose + */ + ByteBufferPrototype.readByte = ByteBufferPrototype.readInt8; + + /** + * Writes an 8bit unsigned integer. + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and advance {@link ByteBuffer#offset} by `1` if omitted. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.writeUint8 = function(value, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof value !== 'number' || value % 1 !== 0) + throw TypeError("Illegal value: "+value+" (not an integer)"); + value >>>= 0; + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + offset += 1; + var capacity1 = this.buffer.byteLength; + if (offset > capacity1) + this.resize((capacity1 *= 2) > offset ? capacity1 : offset); + offset -= 1; + this.view.setUint8(offset, value); + if (relative) this.offset += 1; + return this; + }; + + /** + * Reads an 8bit unsigned integer. + * @param {number=} offset Offset to read from. Will use and advance {@link ByteBuffer#offset} by `1` if omitted. + * @returns {number} Value read + * @expose + */ + ByteBufferPrototype.readUint8 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 1 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+1+") <= "+this.buffer.byteLength); + } + var value = this.view.getUint8(offset); + if (relative) this.offset += 1; + return value; + }; + + // types/ints/int16 + + /** + * Writes a 16bit signed integer. + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and advance {@link ByteBuffer#offset} by `2` if omitted. + * @throws {TypeError} If `offset` or `value` is not a valid number + * @throws {RangeError} If `offset` is out of bounds + * @expose + */ + ByteBufferPrototype.writeInt16 = function(value, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof value !== 'number' || value % 1 !== 0) + throw TypeError("Illegal value: "+value+" (not an integer)"); + value |= 0; + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + offset += 2; + var capacity2 = this.buffer.byteLength; + if (offset > capacity2) + this.resize((capacity2 *= 2) > offset ? capacity2 : offset); + offset -= 2; + this.view.setInt16(offset, value, this.littleEndian); + if (relative) this.offset += 2; + return this; + }; + + /** + * Writes a 16bit signed integer. This is an alias of {@link ByteBuffer#writeInt16}. + * @function + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and advance {@link ByteBuffer#offset} by `2` if omitted. + * @throws {TypeError} If `offset` or `value` is not a valid number + * @throws {RangeError} If `offset` is out of bounds + * @expose + */ + ByteBufferPrototype.writeShort = ByteBufferPrototype.writeInt16; + + /** + * Reads a 16bit signed integer. + * @param {number=} offset Offset to read from. Will use and advance {@link ByteBuffer#offset} by `2` if omitted. + * @returns {number} Value read + * @throws {TypeError} If `offset` is not a valid number + * @throws {RangeError} If `offset` is out of bounds + * @expose + */ + ByteBufferPrototype.readInt16 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 2 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+2+") <= "+this.buffer.byteLength); + } + var value = this.view.getInt16(offset, this.littleEndian); + if (relative) this.offset += 2; + return value; + }; + + /** + * Reads a 16bit signed integer. This is an alias of {@link ByteBuffer#readInt16}. + * @function + * @param {number=} offset Offset to read from. Will use and advance {@link ByteBuffer#offset} by `2` if omitted. + * @returns {number} Value read + * @throws {TypeError} If `offset` is not a valid number + * @throws {RangeError} If `offset` is out of bounds + * @expose + */ + ByteBufferPrototype.readShort = ByteBufferPrototype.readInt16; + + /** + * Writes a 16bit unsigned integer. + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and advance {@link ByteBuffer#offset} by `2` if omitted. + * @throws {TypeError} If `offset` or `value` is not a valid number + * @throws {RangeError} If `offset` is out of bounds + * @expose + */ + ByteBufferPrototype.writeUint16 = function(value, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof value !== 'number' || value % 1 !== 0) + throw TypeError("Illegal value: "+value+" (not an integer)"); + value >>>= 0; + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + offset += 2; + var capacity3 = this.buffer.byteLength; + if (offset > capacity3) + this.resize((capacity3 *= 2) > offset ? capacity3 : offset); + offset -= 2; + this.view.setUint16(offset, value, this.littleEndian); + if (relative) this.offset += 2; + return this; + }; + + /** + * Reads a 16bit unsigned integer. + * @param {number=} offset Offset to read from. Will use and advance {@link ByteBuffer#offset} by `2` if omitted. + * @returns {number} Value read + * @throws {TypeError} If `offset` is not a valid number + * @throws {RangeError} If `offset` is out of bounds + * @expose + */ + ByteBufferPrototype.readUint16 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 2 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+2+") <= "+this.buffer.byteLength); + } + var value = this.view.getUint16(offset, this.littleEndian); + if (relative) this.offset += 2; + return value; + }; + + // types/ints/int32 + + /** + * Writes a 32bit signed integer. + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by `4` if omitted. + * @expose + */ + ByteBufferPrototype.writeInt32 = function(value, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof value !== 'number' || value % 1 !== 0) + throw TypeError("Illegal value: "+value+" (not an integer)"); + value |= 0; + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + offset += 4; + var capacity4 = this.buffer.byteLength; + if (offset > capacity4) + this.resize((capacity4 *= 2) > offset ? capacity4 : offset); + offset -= 4; + this.view.setInt32(offset, value, this.littleEndian); + if (relative) this.offset += 4; + return this; + }; + + /** + * Writes a 32bit signed integer. This is an alias of {@link ByteBuffer#writeInt32}. + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by `4` if omitted. + * @expose + */ + ByteBufferPrototype.writeInt = ByteBufferPrototype.writeInt32; + + /** + * Reads a 32bit signed integer. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by `4` if omitted. + * @returns {number} Value read + * @expose + */ + ByteBufferPrototype.readInt32 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 4 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+4+") <= "+this.buffer.byteLength); + } + var value = this.view.getInt32(offset, this.littleEndian); + if (relative) this.offset += 4; + return value; + }; + + /** + * Reads a 32bit signed integer. This is an alias of {@link ByteBuffer#readInt32}. + * @param {number=} offset Offset to read from. Will use and advance {@link ByteBuffer#offset} by `4` if omitted. + * @returns {number} Value read + * @expose + */ + ByteBufferPrototype.readInt = ByteBufferPrototype.readInt32; + + /** + * Writes a 32bit unsigned integer. + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by `4` if omitted. + * @expose + */ + ByteBufferPrototype.writeUint32 = function(value, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof value !== 'number' || value % 1 !== 0) + throw TypeError("Illegal value: "+value+" (not an integer)"); + value >>>= 0; + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + offset += 4; + var capacity5 = this.buffer.byteLength; + if (offset > capacity5) + this.resize((capacity5 *= 2) > offset ? capacity5 : offset); + offset -= 4; + this.view.setUint32(offset, value, this.littleEndian); + if (relative) this.offset += 4; + return this; + }; + + /** + * Reads a 32bit unsigned integer. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by `4` if omitted. + * @returns {number} Value read + * @expose + */ + ByteBufferPrototype.readUint32 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 4 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+4+") <= "+this.buffer.byteLength); + } + var value = this.view.getUint32(offset, this.littleEndian); + if (relative) this.offset += 4; + return value; + }; + + // types/ints/int64 + + if (Long) { + + /** + * Writes a 64bit signed integer. + * @param {number|!Long} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by `8` if omitted. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.writeInt64 = function(value, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof value === 'number') + value = Long.fromNumber(value); + else if (typeof value === 'string') + value = Long.fromString(value); + else if (!(value && value instanceof Long)) + throw TypeError("Illegal value: "+value+" (not an integer or Long)"); + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + if (typeof value === 'number') + value = Long.fromNumber(value); + else if (typeof value === 'string') + value = Long.fromString(value); + offset += 8; + var capacity6 = this.buffer.byteLength; + if (offset > capacity6) + this.resize((capacity6 *= 2) > offset ? capacity6 : offset); + offset -= 8; + if (this.littleEndian) { + this.view.setInt32(offset , value.low , true); + this.view.setInt32(offset+4, value.high, true); + } else { + this.view.setInt32(offset , value.high, false); + this.view.setInt32(offset+4, value.low , false); + } + if (relative) this.offset += 8; + return this; + }; + + /** + * Writes a 64bit signed integer. This is an alias of {@link ByteBuffer#writeInt64}. + * @param {number|!Long} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by `8` if omitted. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.writeLong = ByteBufferPrototype.writeInt64; + + /** + * Reads a 64bit signed integer. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by `8` if omitted. + * @returns {!Long} + * @expose + */ + ByteBufferPrototype.readInt64 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 8 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+8+") <= "+this.buffer.byteLength); + } + var value = this.littleEndian + ? new Long(this.view.getInt32(offset , true ), this.view.getInt32(offset+4, true ), false) + : new Long(this.view.getInt32(offset+4, false), this.view.getInt32(offset , false), false); + if (relative) this.offset += 8; + return value; + }; + + /** + * Reads a 64bit signed integer. This is an alias of {@link ByteBuffer#readInt64}. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by `8` if omitted. + * @returns {!Long} + * @expose + */ + ByteBufferPrototype.readLong = ByteBufferPrototype.readInt64; + + /** + * Writes a 64bit unsigned integer. + * @param {number|!Long} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by `8` if omitted. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.writeUint64 = function(value, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof value === 'number') + value = Long.fromNumber(value); + else if (typeof value === 'string') + value = Long.fromString(value); + else if (!(value && value instanceof Long)) + throw TypeError("Illegal value: "+value+" (not an integer or Long)"); + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + if (typeof value === 'number') + value = Long.fromNumber(value); + else if (typeof value === 'string') + value = Long.fromString(value); + offset += 8; + var capacity7 = this.buffer.byteLength; + if (offset > capacity7) + this.resize((capacity7 *= 2) > offset ? capacity7 : offset); + offset -= 8; + if (this.littleEndian) { + this.view.setInt32(offset , value.low , true); + this.view.setInt32(offset+4, value.high, true); + } else { + this.view.setInt32(offset , value.high, false); + this.view.setInt32(offset+4, value.low , false); + } + if (relative) this.offset += 8; + return this; + }; + + /** + * Reads a 64bit unsigned integer. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by `8` if omitted. + * @returns {!Long} + * @expose + */ + ByteBufferPrototype.readUint64 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 8 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+8+") <= "+this.buffer.byteLength); + } + var value = this.littleEndian + ? new Long(this.view.getInt32(offset , true ), this.view.getInt32(offset+4, true ), true) + : new Long(this.view.getInt32(offset+4, false), this.view.getInt32(offset , false), true); + if (relative) this.offset += 8; + return value; + }; + + } // Long + + + // types/floats/float32 + + /** + * Writes a 32bit float. + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by `4` if omitted. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.writeFloat32 = function(value, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof value !== 'number') + throw TypeError("Illegal value: "+value+" (not a number)"); + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + offset += 4; + var capacity8 = this.buffer.byteLength; + if (offset > capacity8) + this.resize((capacity8 *= 2) > offset ? capacity8 : offset); + offset -= 4; + this.view.setFloat32(offset, value, this.littleEndian); + if (relative) this.offset += 4; + return this; + }; + + /** + * Writes a 32bit float. This is an alias of {@link ByteBuffer#writeFloat32}. + * @function + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by `4` if omitted. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.writeFloat = ByteBufferPrototype.writeFloat32; + + /** + * Reads a 32bit float. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by `4` if omitted. + * @returns {number} + * @expose + */ + ByteBufferPrototype.readFloat32 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 4 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+4+") <= "+this.buffer.byteLength); + } + var value = this.view.getFloat32(offset, this.littleEndian); + if (relative) this.offset += 4; + return value; + }; + + /** + * Reads a 32bit float. This is an alias of {@link ByteBuffer#readFloat32}. + * @function + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by `4` if omitted. + * @returns {number} + * @expose + */ + ByteBufferPrototype.readFloat = ByteBufferPrototype.readFloat32; + + // types/floats/float64 + + /** + * Writes a 64bit float. + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by `8` if omitted. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.writeFloat64 = function(value, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof value !== 'number') + throw TypeError("Illegal value: "+value+" (not a number)"); + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + offset += 8; + var capacity9 = this.buffer.byteLength; + if (offset > capacity9) + this.resize((capacity9 *= 2) > offset ? capacity9 : offset); + offset -= 8; + this.view.setFloat64(offset, value, this.littleEndian); + if (relative) this.offset += 8; + return this; + }; + + /** + * Writes a 64bit float. This is an alias of {@link ByteBuffer#writeFloat64}. + * @function + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by `8` if omitted. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.writeDouble = ByteBufferPrototype.writeFloat64; + + /** + * Reads a 64bit float. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by `8` if omitted. + * @returns {number} + * @expose + */ + ByteBufferPrototype.readFloat64 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 8 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+8+") <= "+this.buffer.byteLength); + } + var value = this.view.getFloat64(offset, this.littleEndian); + if (relative) this.offset += 8; + return value; + }; + + /** + * Reads a 64bit float. This is an alias of {@link ByteBuffer#readFloat64}. + * @function + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by `8` if omitted. + * @returns {number} + * @expose + */ + ByteBufferPrototype.readDouble = ByteBufferPrototype.readFloat64; + + + // types/varints/varint32 + + /** + * Maximum number of bytes required to store a 32bit base 128 variable-length integer. + * @type {number} + * @const + * @expose + */ + ByteBuffer.MAX_VARINT32_BYTES = 5; + + /** + * Calculates the actual number of bytes required to store a 32bit base 128 variable-length integer. + * @param {number} value Value to encode + * @returns {number} Number of bytes required. Capped to {@link ByteBuffer.MAX_VARINT32_BYTES} + * @expose + */ + ByteBuffer.calculateVarint32 = function(value) { + // ref: src/google/protobuf/io/coded_stream.cc + value = value >>> 0; + if (value < 1 << 7 ) return 1; + else if (value < 1 << 14) return 2; + else if (value < 1 << 21) return 3; + else if (value < 1 << 28) return 4; + else return 5; + }; + + /** + * Zigzag encodes a signed 32bit integer so that it can be effectively used with varint encoding. + * @param {number} n Signed 32bit integer + * @returns {number} Unsigned zigzag encoded 32bit integer + * @expose + */ + ByteBuffer.zigZagEncode32 = function(n) { + return (((n |= 0) << 1) ^ (n >> 31)) >>> 0; // ref: src/google/protobuf/wire_format_lite.h + }; + + /** + * Decodes a zigzag encoded signed 32bit integer. + * @param {number} n Unsigned zigzag encoded 32bit integer + * @returns {number} Signed 32bit integer + * @expose + */ + ByteBuffer.zigZagDecode32 = function(n) { + return ((n >>> 1) ^ -(n & 1)) | 0; // // ref: src/google/protobuf/wire_format_lite.h + }; + + /** + * Writes a 32bit base 128 variable-length integer. + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * written if omitted. + * @returns {!ByteBuffer|number} this if `offset` is omitted, else the actual number of bytes written + * @expose + */ + ByteBufferPrototype.writeVarint32 = function(value, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof value !== 'number' || value % 1 !== 0) + throw TypeError("Illegal value: "+value+" (not an integer)"); + value |= 0; + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + var size = ByteBuffer.calculateVarint32(value), + b; + offset += size; + var capacity10 = this.buffer.byteLength; + if (offset > capacity10) + this.resize((capacity10 *= 2) > offset ? capacity10 : offset); + offset -= size; + // ref: http://code.google.com/searchframe#WTeibokF6gE/trunk/src/google/protobuf/io/coded_stream.cc + this.view.setUint8(offset, b = value | 0x80); + value >>>= 0; + if (value >= 1 << 7) { + b = (value >> 7) | 0x80; + this.view.setUint8(offset+1, b); + if (value >= 1 << 14) { + b = (value >> 14) | 0x80; + this.view.setUint8(offset+2, b); + if (value >= 1 << 21) { + b = (value >> 21) | 0x80; + this.view.setUint8(offset+3, b); + if (value >= 1 << 28) { + this.view.setUint8(offset+4, (value >> 28) & 0x0F); + size = 5; + } else { + this.view.setUint8(offset+3, b & 0x7F); + size = 4; + } + } else { + this.view.setUint8(offset+2, b & 0x7F); + size = 3; + } + } else { + this.view.setUint8(offset+1, b & 0x7F); + size = 2; + } + } else { + this.view.setUint8(offset, b & 0x7F); + size = 1; + } + if (relative) { + this.offset += size; + return this; + } + return size; + }; + + /** + * Writes a zig-zag encoded 32bit base 128 variable-length integer. + * @param {number} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * written if omitted. + * @returns {!ByteBuffer|number} this if `offset` is omitted, else the actual number of bytes written + * @expose + */ + ByteBufferPrototype.writeVarint32ZigZag = function(value, offset) { + return this.writeVarint32(ByteBuffer.zigZagEncode32(value), offset); + }; + + /** + * Reads a 32bit base 128 variable-length integer. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * written if omitted. + * @returns {number|!{value: number, length: number}} The value read if offset is omitted, else the value read + * and the actual number of bytes read. + * @throws {Error} If it's not a valid varint. Has a property `truncated = true` if there is not enough data available + * to fully decode the varint. + * @expose + */ + ByteBufferPrototype.readVarint32 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 1 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+1+") <= "+this.buffer.byteLength); + } + // ref: src/google/protobuf/io/coded_stream.cc + var size = 0, + value = 0 >>> 0, + temp, + ioffset; + do { + ioffset = offset+size; + if (!this.noAssert && ioffset > this.limit) { + var err = Error("Truncated"); + err['truncated'] = true; + throw err; + } + temp = this.view.getUint8(ioffset); + if (size < 5) + value |= ((temp&0x7F)<<(7*size)) >>> 0; + ++size; + } while ((temp & 0x80) === 0x80); + value = value | 0; // Make sure to discard the higher order bits + if (relative) { + this.offset += size; + return value; + } + return { + "value": value, + "length": size + }; + }; + + /** + * Reads a zig-zag encoded 32bit base 128 variable-length integer. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * written if omitted. + * @returns {number|!{value: number, length: number}} The value read if offset is omitted, else the value read + * and the actual number of bytes read. + * @throws {Error} If it's not a valid varint + * @expose + */ + ByteBufferPrototype.readVarint32ZigZag = function(offset) { + var val = this.readVarint32(offset); + if (typeof val === 'object') + val["value"] = ByteBuffer.zigZagDecode32(val["value"]); + else + val = ByteBuffer.zigZagDecode32(val); + return val; + }; + + // types/varints/varint64 + + if (Long) { + + /** + * Maximum number of bytes required to store a 64bit base 128 variable-length integer. + * @type {number} + * @const + * @expose + */ + ByteBuffer.MAX_VARINT64_BYTES = 10; + + /** + * Calculates the actual number of bytes required to store a 64bit base 128 variable-length integer. + * @param {number|!Long} value Value to encode + * @returns {number} Number of bytes required. Capped to {@link ByteBuffer.MAX_VARINT64_BYTES} + * @expose + */ + ByteBuffer.calculateVarint64 = function(value) { + if (typeof value === 'number') + value = Long.fromNumber(value); + else if (typeof value === 'string') + value = Long.fromString(value); + // ref: src/google/protobuf/io/coded_stream.cc + var part0 = value.toInt() >>> 0, + part1 = value.shiftRightUnsigned(28).toInt() >>> 0, + part2 = value.shiftRightUnsigned(56).toInt() >>> 0; + if (part2 == 0) { + if (part1 == 0) { + if (part0 < 1 << 14) + return part0 < 1 << 7 ? 1 : 2; + else + return part0 < 1 << 21 ? 3 : 4; + } else { + if (part1 < 1 << 14) + return part1 < 1 << 7 ? 5 : 6; + else + return part1 < 1 << 21 ? 7 : 8; + } + } else + return part2 < 1 << 7 ? 9 : 10; + }; + + /** + * Zigzag encodes a signed 64bit integer so that it can be effectively used with varint encoding. + * @param {number|!Long} value Signed long + * @returns {!Long} Unsigned zigzag encoded long + * @expose + */ + ByteBuffer.zigZagEncode64 = function(value) { + if (typeof value === 'number') + value = Long.fromNumber(value, false); + else if (typeof value === 'string') + value = Long.fromString(value, false); + else if (value.unsigned !== false) value = value.toSigned(); + // ref: src/google/protobuf/wire_format_lite.h + return value.shiftLeft(1).xor(value.shiftRight(63)).toUnsigned(); + }; + + /** + * Decodes a zigzag encoded signed 64bit integer. + * @param {!Long|number} value Unsigned zigzag encoded long or JavaScript number + * @returns {!Long} Signed long + * @expose + */ + ByteBuffer.zigZagDecode64 = function(value) { + if (typeof value === 'number') + value = Long.fromNumber(value, false); + else if (typeof value === 'string') + value = Long.fromString(value, false); + else if (value.unsigned !== false) value = value.toSigned(); + // ref: src/google/protobuf/wire_format_lite.h + return value.shiftRightUnsigned(1).xor(value.and(Long.ONE).toSigned().negate()).toSigned(); + }; + + /** + * Writes a 64bit base 128 variable-length integer. + * @param {number|Long} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * written if omitted. + * @returns {!ByteBuffer|number} `this` if offset is omitted, else the actual number of bytes written. + * @expose + */ + ByteBufferPrototype.writeVarint64 = function(value, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof value === 'number') + value = Long.fromNumber(value); + else if (typeof value === 'string') + value = Long.fromString(value); + else if (!(value && value instanceof Long)) + throw TypeError("Illegal value: "+value+" (not an integer or Long)"); + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + if (typeof value === 'number') + value = Long.fromNumber(value, false); + else if (typeof value === 'string') + value = Long.fromString(value, false); + else if (value.unsigned !== false) value = value.toSigned(); + var size = ByteBuffer.calculateVarint64(value), + part0 = value.toInt() >>> 0, + part1 = value.shiftRightUnsigned(28).toInt() >>> 0, + part2 = value.shiftRightUnsigned(56).toInt() >>> 0; + offset += size; + var capacity11 = this.buffer.byteLength; + if (offset > capacity11) + this.resize((capacity11 *= 2) > offset ? capacity11 : offset); + offset -= size; + switch (size) { + case 10: this.view.setUint8(offset+9, (part2 >>> 7) & 0x01); + case 9 : this.view.setUint8(offset+8, size !== 9 ? (part2 ) | 0x80 : (part2 ) & 0x7F); + case 8 : this.view.setUint8(offset+7, size !== 8 ? (part1 >>> 21) | 0x80 : (part1 >>> 21) & 0x7F); + case 7 : this.view.setUint8(offset+6, size !== 7 ? (part1 >>> 14) | 0x80 : (part1 >>> 14) & 0x7F); + case 6 : this.view.setUint8(offset+5, size !== 6 ? (part1 >>> 7) | 0x80 : (part1 >>> 7) & 0x7F); + case 5 : this.view.setUint8(offset+4, size !== 5 ? (part1 ) | 0x80 : (part1 ) & 0x7F); + case 4 : this.view.setUint8(offset+3, size !== 4 ? (part0 >>> 21) | 0x80 : (part0 >>> 21) & 0x7F); + case 3 : this.view.setUint8(offset+2, size !== 3 ? (part0 >>> 14) | 0x80 : (part0 >>> 14) & 0x7F); + case 2 : this.view.setUint8(offset+1, size !== 2 ? (part0 >>> 7) | 0x80 : (part0 >>> 7) & 0x7F); + case 1 : this.view.setUint8(offset , size !== 1 ? (part0 ) | 0x80 : (part0 ) & 0x7F); + } + if (relative) { + this.offset += size; + return this; + } else { + return size; + } + }; + + /** + * Writes a zig-zag encoded 64bit base 128 variable-length integer. + * @param {number|Long} value Value to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * written if omitted. + * @returns {!ByteBuffer|number} `this` if offset is omitted, else the actual number of bytes written. + * @expose + */ + ByteBufferPrototype.writeVarint64ZigZag = function(value, offset) { + return this.writeVarint64(ByteBuffer.zigZagEncode64(value), offset); + }; + + /** + * Reads a 64bit base 128 variable-length integer. Requires Long.js. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * read if omitted. + * @returns {!Long|!{value: Long, length: number}} The value read if offset is omitted, else the value read and + * the actual number of bytes read. + * @throws {Error} If it's not a valid varint + * @expose + */ + ByteBufferPrototype.readVarint64 = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 1 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+1+") <= "+this.buffer.byteLength); + } + // ref: src/google/protobuf/io/coded_stream.cc + var start = offset, + part0 = 0, + part1 = 0, + part2 = 0, + b = 0; + b = this.view.getUint8(offset++); part0 = (b & 0x7F) ; if (b & 0x80) { + b = this.view.getUint8(offset++); part0 |= (b & 0x7F) << 7; if (b & 0x80) { + b = this.view.getUint8(offset++); part0 |= (b & 0x7F) << 14; if (b & 0x80) { + b = this.view.getUint8(offset++); part0 |= (b & 0x7F) << 21; if (b & 0x80) { + b = this.view.getUint8(offset++); part1 = (b & 0x7F) ; if (b & 0x80) { + b = this.view.getUint8(offset++); part1 |= (b & 0x7F) << 7; if (b & 0x80) { + b = this.view.getUint8(offset++); part1 |= (b & 0x7F) << 14; if (b & 0x80) { + b = this.view.getUint8(offset++); part1 |= (b & 0x7F) << 21; if (b & 0x80) { + b = this.view.getUint8(offset++); part2 = (b & 0x7F) ; if (b & 0x80) { + b = this.view.getUint8(offset++); part2 |= (b & 0x7F) << 7; if (b & 0x80) { + throw Error("Buffer overrun"); }}}}}}}}}} + var value = Long.fromBits(part0 | (part1 << 28), (part1 >>> 4) | (part2) << 24, false); + if (relative) { + this.offset = offset; + return value; + } else { + return { + 'value': value, + 'length': offset-start + }; + } + }; + + /** + * Reads a zig-zag encoded 64bit base 128 variable-length integer. Requires Long.js. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * read if omitted. + * @returns {!Long|!{value: Long, length: number}} The value read if offset is omitted, else the value read and + * the actual number of bytes read. + * @throws {Error} If it's not a valid varint + * @expose + */ + ByteBufferPrototype.readVarint64ZigZag = function(offset) { + var val = this.readVarint64(offset); + if (val && val['value'] instanceof Long) + val["value"] = ByteBuffer.zigZagDecode64(val["value"]); + else + val = ByteBuffer.zigZagDecode64(val); + return val; + }; + + } // Long + + + // types/strings/cstring + + /** + * Writes a NULL-terminated UTF8 encoded string. For this to work the specified string must not contain any NULL + * characters itself. + * @param {string} str String to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * contained in `str` + 1 if omitted. + * @returns {!ByteBuffer|number} this if offset is omitted, else the actual number of bytes written + * @expose + */ + ByteBufferPrototype.writeCString = function(str, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + var i, + k = str.length; + if (!this.noAssert) { + if (typeof str !== 'string') + throw TypeError("Illegal str: Not a string"); + for (i=0; i>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + // UTF8 strings do not contain zero bytes in between except for the zero character, so: + k = utfx.calculateUTF16asUTF8(stringSource(str))[1]; + offset += k+1; + var capacity12 = this.buffer.byteLength; + if (offset > capacity12) + this.resize((capacity12 *= 2) > offset ? capacity12 : offset); + offset -= k+1; + utfx.encodeUTF16toUTF8(stringSource(str), function(b) { + this.view.setUint8(offset++, b); + }.bind(this)); + this.view.setUint8(offset++, 0); + if (relative) { + this.offset = offset; + return this; + } + return k; + }; + + /** + * Reads a NULL-terminated UTF8 encoded string. For this to work the string read must not contain any NULL characters + * itself. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * read if omitted. + * @returns {string|!{string: string, length: number}} The string read if offset is omitted, else the string + * read and the actual number of bytes read. + * @expose + */ + ByteBufferPrototype.readCString = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 1 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+1+") <= "+this.buffer.byteLength); + } + var start = offset, + temp; + // UTF8 strings do not contain zero bytes in between except for the zero character itself, so: + var sd, b = -1; + utfx.decodeUTF8toUTF16(function() { + if (b === 0) return null; + if (offset >= this.limit) + throw RangeError("Illegal range: Truncated data, "+offset+" < "+this.limit); + return (b = this.view.getUint8(offset++)) === 0 ? null : b; + }.bind(this), sd = stringDestination(), true); + if (relative) { + this.offset = offset; + return sd(); + } else { + return { + "string": sd(), + "length": offset - start + }; + } + }; + + // types/strings/istring + + /** + * Writes a length as uint32 prefixed UTF8 encoded string. + * @param {string} str String to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * written if omitted. + * @returns {!ByteBuffer|number} `this` if `offset` is omitted, else the actual number of bytes written + * @expose + * @see ByteBuffer#writeVarint32 + */ + ByteBufferPrototype.writeIString = function(str, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof str !== 'string') + throw TypeError("Illegal str: Not a string"); + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + var start = offset, + k; + k = utfx.calculateUTF16asUTF8(stringSource(str), this.noAssert)[1]; + offset += 4+k; + var capacity13 = this.buffer.byteLength; + if (offset > capacity13) + this.resize((capacity13 *= 2) > offset ? capacity13 : offset); + offset -= 4+k; + this.view.setUint32(offset, k, this.littleEndian); + offset += 4; + utfx.encodeUTF16toUTF8(stringSource(str), function(b) { + this.view.setUint8(offset++, b); + }.bind(this)); + if (offset !== start + 4 + k) + throw RangeError("Illegal range: Truncated data, "+offset+" == "+(offset+4+k)); + if (relative) { + this.offset = offset; + return this; + } + return offset - start; + }; + + /** + * Reads a length as uint32 prefixed UTF8 encoded string. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * read if omitted. + * @returns {string|!{string: string, length: number}} The string read if offset is omitted, else the string + * read and the actual number of bytes read. + * @expose + * @see ByteBuffer#readVarint32 + */ + ByteBufferPrototype.readIString = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 4 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+4+") <= "+this.buffer.byteLength); + } + var temp = 0, + start = offset, + str; + temp = this.view.getUint32(offset, this.littleEndian); + offset += 4; + var k = offset + temp, + sd; + utfx.decodeUTF8toUTF16(function() { + return offset < k ? this.view.getUint8(offset++) : null; + }.bind(this), sd = stringDestination(), this.noAssert); + str = sd(); + if (relative) { + this.offset = offset; + return str; + } else { + return { + 'string': str, + 'length': offset - start + }; + } + }; + + // types/strings/utf8string + + /** + * Metrics representing number of UTF8 characters. Evaluates to `c`. + * @type {string} + * @const + * @expose + */ + ByteBuffer.METRICS_CHARS = 'c'; + + /** + * Metrics representing number of bytes. Evaluates to `b`. + * @type {string} + * @const + * @expose + */ + ByteBuffer.METRICS_BYTES = 'b'; + + /** + * Writes an UTF8 encoded string. + * @param {string} str String to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} if omitted. + * @returns {!ByteBuffer|number} this if offset is omitted, else the actual number of bytes written. + * @expose + */ + ByteBufferPrototype.writeUTF8String = function(str, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + var k; + var start = offset; + k = utfx.calculateUTF16asUTF8(stringSource(str))[1]; + offset += k; + var capacity14 = this.buffer.byteLength; + if (offset > capacity14) + this.resize((capacity14 *= 2) > offset ? capacity14 : offset); + offset -= k; + utfx.encodeUTF16toUTF8(stringSource(str), function(b) { + this.view.setUint8(offset++, b); + }.bind(this)); + if (relative) { + this.offset = offset; + return this; + } + return offset - start; + }; + + /** + * Writes an UTF8 encoded string. This is an alias of {@link ByteBuffer#writeUTF8String}. + * @function + * @param {string} str String to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} if omitted. + * @returns {!ByteBuffer|number} this if offset is omitted, else the actual number of bytes written. + * @expose + */ + ByteBufferPrototype.writeString = ByteBufferPrototype.writeUTF8String; + + /** + * Calculates the number of UTF8 characters of a string. JavaScript itself uses UTF-16, so that a string's + * `length` property does not reflect its actual UTF8 size if it contains code points larger than 0xFFFF. + * @function + * @param {string} str String to calculate + * @returns {number} Number of UTF8 characters + * @expose + */ + ByteBuffer.calculateUTF8Chars = function(str) { + return utfx.calculateUTF16asUTF8(stringSource(str))[0]; + }; + + /** + * Calculates the number of UTF8 bytes of a string. + * @function + * @param {string} str String to calculate + * @returns {number} Number of UTF8 bytes + * @expose + */ + ByteBuffer.calculateUTF8Bytes = function(str) { + return utfx.calculateUTF16asUTF8(stringSource(str))[1]; + }; + + /** + * Reads an UTF8 encoded string. + * @param {number} length Number of characters or bytes to read. + * @param {string=} metrics Metrics specifying what `length` is meant to count. Defaults to + * {@link ByteBuffer.METRICS_CHARS}. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * read if omitted. + * @returns {string|!{string: string, length: number}} The string read if offset is omitted, else the string + * read and the actual number of bytes read. + * @expose + */ + ByteBufferPrototype.readUTF8String = function(length, metrics, offset) { + if (typeof metrics === 'number') { + offset = metrics; + metrics = undefined; + } + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (typeof metrics === 'undefined') metrics = ByteBuffer.METRICS_CHARS; + if (!this.noAssert) { + if (typeof length !== 'number' || length % 1 !== 0) + throw TypeError("Illegal length: "+length+" (not an integer)"); + length |= 0; + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + var i = 0, + start = offset, + sd; + if (metrics === ByteBuffer.METRICS_CHARS) { // The same for node and the browser + sd = stringDestination(); + utfx.decodeUTF8(function() { + return i < length && offset < this.limit ? this.view.getUint8(offset++) : null; + }.bind(this), function(cp) { + ++i; utfx.UTF8toUTF16(cp, sd); + }.bind(this)); + if (i !== length) + throw RangeError("Illegal range: Truncated data, "+i+" == "+length); + if (relative) { + this.offset = offset; + return sd(); + } else { + return { + "string": sd(), + "length": offset - start + }; + } + } else if (metrics === ByteBuffer.METRICS_BYTES) { + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + length > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+length+") <= "+this.buffer.byteLength); + } + var k = offset + length; + utfx.decodeUTF8toUTF16(function() { + return offset < k ? this.view.getUint8(offset++) : null; + }.bind(this), sd = stringDestination(), this.noAssert); + if (offset !== k) + throw RangeError("Illegal range: Truncated data, "+offset+" == "+k); + if (relative) { + this.offset = offset; + return sd(); + } else { + return { + 'string': sd(), + 'length': offset - start + }; + } + } else + throw TypeError("Unsupported metrics: "+metrics); + }; + + /** + * Reads an UTF8 encoded string. This is an alias of {@link ByteBuffer#readUTF8String}. + * @function + * @param {number} length Number of characters or bytes to read + * @param {number=} metrics Metrics specifying what `n` is meant to count. Defaults to + * {@link ByteBuffer.METRICS_CHARS}. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * read if omitted. + * @returns {string|!{string: string, length: number}} The string read if offset is omitted, else the string + * read and the actual number of bytes read. + * @expose + */ + ByteBufferPrototype.readString = ByteBufferPrototype.readUTF8String; + + // types/strings/vstring + + /** + * Writes a length as varint32 prefixed UTF8 encoded string. + * @param {string} str String to write + * @param {number=} offset Offset to write to. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * written if omitted. + * @returns {!ByteBuffer|number} `this` if `offset` is omitted, else the actual number of bytes written + * @expose + * @see ByteBuffer#writeVarint32 + */ + ByteBufferPrototype.writeVString = function(str, offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof str !== 'string') + throw TypeError("Illegal str: Not a string"); + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + var start = offset, + k, l; + k = utfx.calculateUTF16asUTF8(stringSource(str), this.noAssert)[1]; + l = ByteBuffer.calculateVarint32(k); + offset += l+k; + var capacity15 = this.buffer.byteLength; + if (offset > capacity15) + this.resize((capacity15 *= 2) > offset ? capacity15 : offset); + offset -= l+k; + offset += this.writeVarint32(k, offset); + utfx.encodeUTF16toUTF8(stringSource(str), function(b) { + this.view.setUint8(offset++, b); + }.bind(this)); + if (offset !== start+k+l) + throw RangeError("Illegal range: Truncated data, "+offset+" == "+(offset+k+l)); + if (relative) { + this.offset = offset; + return this; + } + return offset - start; + }; + + /** + * Reads a length as varint32 prefixed UTF8 encoded string. + * @param {number=} offset Offset to read from. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * read if omitted. + * @returns {string|!{string: string, length: number}} The string read if offset is omitted, else the string + * read and the actual number of bytes read. + * @expose + * @see ByteBuffer#readVarint32 + */ + ByteBufferPrototype.readVString = function(offset) { + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 1 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+1+") <= "+this.buffer.byteLength); + } + var temp = this.readVarint32(offset), + start = offset, + str; + offset += temp['length']; + temp = temp['value']; + var k = offset + temp, + sd = stringDestination(); + utfx.decodeUTF8toUTF16(function() { + return offset < k ? this.view.getUint8(offset++) : null; + }.bind(this), sd, this.noAssert); + str = sd(); + if (relative) { + this.offset = offset; + return str; + } else { + return { + 'string': str, + 'length': offset - start + }; + } + }; + + + /** + * Appends some data to this ByteBuffer. This will overwrite any contents behind the specified offset up to the appended + * data's length. + * @param {!ByteBuffer|!ArrayBuffer|!Uint8Array|string} source Data to append. If `source` is a ByteBuffer, its offsets + * will be modified according to the performed read operation. + * @param {(string|number)=} encoding Encoding if `data` is a string ("base64", "hex", "binary", defaults to "utf8") + * @param {number=} offset Offset to append at. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * read if omitted. + * @returns {!ByteBuffer} this + * @expose + * @example A relative `<01 02>03.append(<04 05>)` will result in `<01 02 04 05>, 04 05|` + * @example An absolute `<01 02>03.append(04 05>, 1)` will result in `<01 04>05, 04 05|` + */ + ByteBufferPrototype.append = function(source, encoding, offset) { + if (typeof encoding === 'number' || typeof encoding !== 'string') { + offset = encoding; + encoding = undefined; + } + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + if (!(source instanceof ByteBuffer)) + source = ByteBuffer.wrap(source, encoding); + var length = source.limit - source.offset; + if (length <= 0) return this; // Nothing to append + offset += length; + var capacity16 = this.buffer.byteLength; + if (offset > capacity16) + this.resize((capacity16 *= 2) > offset ? capacity16 : offset); + offset -= length; + new Uint8Array(this.buffer, offset).set(new Uint8Array(source.buffer).subarray(source.offset, source.limit)); + source.offset += length; + if (relative) this.offset += length; + return this; + }; + + /** + * Appends this ByteBuffer's contents to another ByteBuffer. This will overwrite any contents at and after the + specified offset up to the length of this ByteBuffer's data. + * @param {!ByteBuffer} target Target ByteBuffer + * @param {number=} offset Offset to append to. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * read if omitted. + * @returns {!ByteBuffer} this + * @expose + * @see ByteBuffer#append + */ + ByteBufferPrototype.appendTo = function(target, offset) { + target.append(this, offset); + return this; + }; + + /** + * Enables or disables assertions of argument types and offsets. Assertions are enabled by default but you can opt to + * disable them if your code already makes sure that everything is valid. + * @param {boolean} assert `true` to enable assertions, otherwise `false` + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.assert = function(assert) { + this.noAssert = !assert; + return this; + }; + + /** + * Gets the capacity of this ByteBuffer's backing buffer. + * @returns {number} Capacity of the backing buffer + * @expose + */ + ByteBufferPrototype.capacity = function() { + return this.buffer.byteLength; + }; + + /** + * Clears this ByteBuffer's offsets by setting {@link ByteBuffer#offset} to `0` and {@link ByteBuffer#limit} to the + * backing buffer's capacity. Discards {@link ByteBuffer#markedOffset}. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.clear = function() { + this.offset = 0; + this.limit = this.buffer.byteLength; + this.markedOffset = -1; + return this; + }; + + /** + * Creates a cloned instance of this ByteBuffer, preset with this ByteBuffer's values for {@link ByteBuffer#offset}, + * {@link ByteBuffer#markedOffset} and {@link ByteBuffer#limit}. + * @param {boolean=} copy Whether to copy the backing buffer or to return another view on the same, defaults to `false` + * @returns {!ByteBuffer} Cloned instance + * @expose + */ + ByteBufferPrototype.clone = function(copy) { + var bb = new ByteBuffer(0, this.littleEndian, this.noAssert); + if (copy) { + var buffer = new ArrayBuffer(this.buffer.byteLength); + new Uint8Array(buffer).set(this.buffer); + bb.buffer = buffer; + bb.view = new DataView(buffer); + } else { + bb.buffer = this.buffer; + bb.view = this.view; + } + bb.offset = this.offset; + bb.markedOffset = this.markedOffset; + bb.limit = this.limit; + return bb; + }; + + /** + * Compacts this ByteBuffer to be backed by a {@link ByteBuffer#buffer} of its contents' length. Contents are the bytes + * between {@link ByteBuffer#offset} and {@link ByteBuffer#limit}. Will set `offset = 0` and `limit = capacity` and + * adapt {@link ByteBuffer#markedOffset} to the same relative position if set. + * @param {number=} begin Offset to start at, defaults to {@link ByteBuffer#offset} + * @param {number=} end Offset to end at, defaults to {@link ByteBuffer#limit} + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.compact = function(begin, end) { + if (typeof begin === 'undefined') begin = this.offset; + if (typeof end === 'undefined') end = this.limit; + if (!this.noAssert) { + if (typeof begin !== 'number' || begin % 1 !== 0) + throw TypeError("Illegal begin: Not an integer"); + begin >>>= 0; + if (typeof end !== 'number' || end % 1 !== 0) + throw TypeError("Illegal end: Not an integer"); + end >>>= 0; + if (begin < 0 || begin > end || end > this.buffer.byteLength) + throw RangeError("Illegal range: 0 <= "+begin+" <= "+end+" <= "+this.buffer.byteLength); + } + if (begin === 0 && end === this.buffer.byteLength) + return this; // Already compacted + var len = end - begin; + if (len === 0) { + this.buffer = EMPTY_BUFFER; + this.view = null; + if (this.markedOffset >= 0) this.markedOffset -= begin; + this.offset = 0; + this.limit = 0; + return this; + } + var buffer = new ArrayBuffer(len); + new Uint8Array(buffer).set(new Uint8Array(this.buffer).subarray(begin, end)); + this.buffer = buffer; + this.view = new DataView(buffer); + if (this.markedOffset >= 0) this.markedOffset -= begin; + this.offset = 0; + this.limit = len; + return this; + }; + + /** + * Creates a copy of this ByteBuffer's contents. Contents are the bytes between {@link ByteBuffer#offset} and + * {@link ByteBuffer#limit}. + * @param {number=} begin Begin offset, defaults to {@link ByteBuffer#offset}. + * @param {number=} end End offset, defaults to {@link ByteBuffer#limit}. + * @returns {!ByteBuffer} Copy + * @expose + */ + ByteBufferPrototype.copy = function(begin, end) { + if (typeof begin === 'undefined') begin = this.offset; + if (typeof end === 'undefined') end = this.limit; + if (!this.noAssert) { + if (typeof begin !== 'number' || begin % 1 !== 0) + throw TypeError("Illegal begin: Not an integer"); + begin >>>= 0; + if (typeof end !== 'number' || end % 1 !== 0) + throw TypeError("Illegal end: Not an integer"); + end >>>= 0; + if (begin < 0 || begin > end || end > this.buffer.byteLength) + throw RangeError("Illegal range: 0 <= "+begin+" <= "+end+" <= "+this.buffer.byteLength); + } + if (begin === end) + return new ByteBuffer(0, this.littleEndian, this.noAssert); + var capacity = end - begin, + bb = new ByteBuffer(capacity, this.littleEndian, this.noAssert); + bb.offset = 0; + bb.limit = capacity; + if (bb.markedOffset >= 0) bb.markedOffset -= begin; + this.copyTo(bb, 0, begin, end); + return bb; + }; + + /** + * Copies this ByteBuffer's contents to another ByteBuffer. Contents are the bytes between {@link ByteBuffer#offset} and + * {@link ByteBuffer#limit}. + * @param {!ByteBuffer} target Target ByteBuffer + * @param {number=} targetOffset Offset to copy to. Will use and increase the target's {@link ByteBuffer#offset} + * by the number of bytes copied if omitted. + * @param {number=} sourceOffset Offset to start copying from. Will use and increase {@link ByteBuffer#offset} by the + * number of bytes copied if omitted. + * @param {number=} sourceLimit Offset to end copying from, defaults to {@link ByteBuffer#limit} + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.copyTo = function(target, targetOffset, sourceOffset, sourceLimit) { + var relative, + targetRelative; + if (!this.noAssert) { + if (!ByteBuffer.isByteBuffer(target)) + throw TypeError("Illegal target: Not a ByteBuffer"); + } + targetOffset = (targetRelative = typeof targetOffset === 'undefined') ? target.offset : targetOffset | 0; + sourceOffset = (relative = typeof sourceOffset === 'undefined') ? this.offset : sourceOffset | 0; + sourceLimit = typeof sourceLimit === 'undefined' ? this.limit : sourceLimit | 0; + + if (targetOffset < 0 || targetOffset > target.buffer.byteLength) + throw RangeError("Illegal target range: 0 <= "+targetOffset+" <= "+target.buffer.byteLength); + if (sourceOffset < 0 || sourceLimit > this.buffer.byteLength) + throw RangeError("Illegal source range: 0 <= "+sourceOffset+" <= "+this.buffer.byteLength); + + var len = sourceLimit - sourceOffset; + if (len === 0) + return target; // Nothing to copy + + target.ensureCapacity(targetOffset + len); + + new Uint8Array(target.buffer).set(new Uint8Array(this.buffer).subarray(sourceOffset, sourceLimit), targetOffset); + + if (relative) this.offset += len; + if (targetRelative) target.offset += len; + + return this; + }; + + /** + * Makes sure that this ByteBuffer is backed by a {@link ByteBuffer#buffer} of at least the specified capacity. If the + * current capacity is exceeded, it will be doubled. If double the current capacity is less than the required capacity, + * the required capacity will be used instead. + * @param {number} capacity Required capacity + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.ensureCapacity = function(capacity) { + var current = this.buffer.byteLength; + if (current < capacity) + return this.resize((current *= 2) > capacity ? current : capacity); + return this; + }; + + /** + * Overwrites this ByteBuffer's contents with the specified value. Contents are the bytes between + * {@link ByteBuffer#offset} and {@link ByteBuffer#limit}. + * @param {number|string} value Byte value to fill with. If given as a string, the first character is used. + * @param {number=} begin Begin offset. Will use and increase {@link ByteBuffer#offset} by the number of bytes + * written if omitted. defaults to {@link ByteBuffer#offset}. + * @param {number=} end End offset, defaults to {@link ByteBuffer#limit}. + * @returns {!ByteBuffer} this + * @expose + * @example `someByteBuffer.clear().fill(0)` fills the entire backing buffer with zeroes + */ + ByteBufferPrototype.fill = function(value, begin, end) { + var relative = typeof begin === 'undefined'; + if (relative) begin = this.offset; + if (typeof value === 'string' && value.length > 0) + value = value.charCodeAt(0); + if (typeof begin === 'undefined') begin = this.offset; + if (typeof end === 'undefined') end = this.limit; + if (!this.noAssert) { + if (typeof value !== 'number' || value % 1 !== 0) + throw TypeError("Illegal value: "+value+" (not an integer)"); + value |= 0; + if (typeof begin !== 'number' || begin % 1 !== 0) + throw TypeError("Illegal begin: Not an integer"); + begin >>>= 0; + if (typeof end !== 'number' || end % 1 !== 0) + throw TypeError("Illegal end: Not an integer"); + end >>>= 0; + if (begin < 0 || begin > end || end > this.buffer.byteLength) + throw RangeError("Illegal range: 0 <= "+begin+" <= "+end+" <= "+this.buffer.byteLength); + } + if (begin >= end) + return this; // Nothing to fill + while (begin < end) this.view.setUint8(begin++, value); + if (relative) this.offset = begin; + return this; + }; + + /** + * Makes this ByteBuffer ready for a new sequence of write or relative read operations. Sets `limit = offset` and + * `offset = 0`. Make sure always to flip a ByteBuffer when all relative read or write operations are complete. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.flip = function() { + this.limit = this.offset; + this.offset = 0; + return this; + }; + /** + * Marks an offset on this ByteBuffer to be used later. + * @param {number=} offset Offset to mark. Defaults to {@link ByteBuffer#offset}. + * @returns {!ByteBuffer} this + * @throws {TypeError} If `offset` is not a valid number + * @throws {RangeError} If `offset` is out of bounds + * @see ByteBuffer#reset + * @expose + */ + ByteBufferPrototype.mark = function(offset) { + offset = typeof offset === 'undefined' ? this.offset : offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + this.markedOffset = offset; + return this; + }; + /** + * Sets the byte order. + * @param {boolean} littleEndian `true` for little endian byte order, `false` for big endian + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.order = function(littleEndian) { + if (!this.noAssert) { + if (typeof littleEndian !== 'boolean') + throw TypeError("Illegal littleEndian: Not a boolean"); + } + this.littleEndian = !!littleEndian; + return this; + }; + + /** + * Switches (to) little endian byte order. + * @param {boolean=} littleEndian Defaults to `true`, otherwise uses big endian + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.LE = function(littleEndian) { + this.littleEndian = typeof littleEndian !== 'undefined' ? !!littleEndian : true; + return this; + }; + + /** + * Switches (to) big endian byte order. + * @param {boolean=} bigEndian Defaults to `true`, otherwise uses little endian + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.BE = function(bigEndian) { + this.littleEndian = typeof bigEndian !== 'undefined' ? !bigEndian : false; + return this; + }; + /** + * Prepends some data to this ByteBuffer. This will overwrite any contents before the specified offset up to the + * prepended data's length. If there is not enough space available before the specified `offset`, the backing buffer + * will be resized and its contents moved accordingly. + * @param {!ByteBuffer|string|!ArrayBuffer} source Data to prepend. If `source` is a ByteBuffer, its offset will be + * modified according to the performed read operation. + * @param {(string|number)=} encoding Encoding if `data` is a string ("base64", "hex", "binary", defaults to "utf8") + * @param {number=} offset Offset to prepend at. Will use and decrease {@link ByteBuffer#offset} by the number of bytes + * prepended if omitted. + * @returns {!ByteBuffer} this + * @expose + * @example A relative `00<01 02 03>.prepend(<04 05>)` results in `<04 05 01 02 03>, 04 05|` + * @example An absolute `00<01 02 03>.prepend(<04 05>, 2)` results in `04<05 02 03>, 04 05|` + */ + ByteBufferPrototype.prepend = function(source, encoding, offset) { + if (typeof encoding === 'number' || typeof encoding !== 'string') { + offset = encoding; + encoding = undefined; + } + var relative = typeof offset === 'undefined'; + if (relative) offset = this.offset; + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: "+offset+" (not an integer)"); + offset >>>= 0; + if (offset < 0 || offset + 0 > this.buffer.byteLength) + throw RangeError("Illegal offset: 0 <= "+offset+" (+"+0+") <= "+this.buffer.byteLength); + } + if (!(source instanceof ByteBuffer)) + source = ByteBuffer.wrap(source, encoding); + var len = source.limit - source.offset; + if (len <= 0) return this; // Nothing to prepend + var diff = len - offset; + var arrayView; + if (diff > 0) { // Not enough space before offset, so resize + move + var buffer = new ArrayBuffer(this.buffer.byteLength + diff); + arrayView = new Uint8Array(buffer); + arrayView.set(new Uint8Array(this.buffer).subarray(offset, this.buffer.byteLength), len); + this.buffer = buffer; + this.view = new DataView(buffer); + this.offset += diff; + if (this.markedOffset >= 0) this.markedOffset += diff; + this.limit += diff; + offset += diff; + } else { + arrayView = new Uint8Array(this.buffer); + } + arrayView.set(new Uint8Array(source.buffer).subarray(source.offset, source.limit), offset - len); + source.offset = source.limit; + if (relative) + this.offset -= len; + return this; + }; + + /** + * Prepends this ByteBuffer to another ByteBuffer. This will overwrite any contents before the specified offset up to the + * prepended data's length. If there is not enough space available before the specified `offset`, the backing buffer + * will be resized and its contents moved accordingly. + * @param {!ByteBuffer} target Target ByteBuffer + * @param {number=} offset Offset to prepend at. Will use and decrease {@link ByteBuffer#offset} by the number of bytes + * prepended if omitted. + * @returns {!ByteBuffer} this + * @expose + * @see ByteBuffer#prepend + */ + ByteBufferPrototype.prependTo = function(target, offset) { + target.prepend(this, offset); + return this; + }; + /** + * Prints debug information about this ByteBuffer's contents. + * @param {function(string)=} out Output function to call, defaults to console.log + * @expose + */ + ByteBufferPrototype.printDebug = function(out) { + if (typeof out !== 'function') out = console.log.bind(console); + out( + this.toString()+"\n"+ + "-------------------------------------------------------------------\n"+ + this.toDebug(/* columns */ true) + ); + }; + + /** + * Gets the number of remaining readable bytes. Contents are the bytes between {@link ByteBuffer#offset} and + * {@link ByteBuffer#limit}, so this returns `limit - offset`. + * @returns {number} Remaining readable bytes. May be negative if `offset > limit`. + * @expose + */ + ByteBufferPrototype.remaining = function() { + return this.limit - this.offset; + }; + /** + * Resets this ByteBuffer's {@link ByteBuffer#offset}. If an offset has been marked through {@link ByteBuffer#mark} + * before, `offset` will be set to {@link ByteBuffer#markedOffset}, which will then be discarded. If no offset has been + * marked, sets `offset = 0`. + * @returns {!ByteBuffer} this + * @see ByteBuffer#mark + * @expose + */ + ByteBufferPrototype.reset = function() { + if (this.markedOffset >= 0) { + this.offset = this.markedOffset; + this.markedOffset = -1; + } else { + this.offset = 0; + } + return this; + }; + /** + * Resizes this ByteBuffer to be backed by a buffer of at least the given capacity. Will do nothing if already that + * large or larger. + * @param {number} capacity Capacity required + * @returns {!ByteBuffer} this + * @throws {TypeError} If `capacity` is not a number + * @throws {RangeError} If `capacity < 0` + * @expose + */ + ByteBufferPrototype.resize = function(capacity) { + if (!this.noAssert) { + if (typeof capacity !== 'number' || capacity % 1 !== 0) + throw TypeError("Illegal capacity: "+capacity+" (not an integer)"); + capacity |= 0; + if (capacity < 0) + throw RangeError("Illegal capacity: 0 <= "+capacity); + } + if (this.buffer.byteLength < capacity) { + var buffer = new ArrayBuffer(capacity); + new Uint8Array(buffer).set(new Uint8Array(this.buffer)); + this.buffer = buffer; + this.view = new DataView(buffer); + } + return this; + }; + /** + * Reverses this ByteBuffer's contents. + * @param {number=} begin Offset to start at, defaults to {@link ByteBuffer#offset} + * @param {number=} end Offset to end at, defaults to {@link ByteBuffer#limit} + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.reverse = function(begin, end) { + if (typeof begin === 'undefined') begin = this.offset; + if (typeof end === 'undefined') end = this.limit; + if (!this.noAssert) { + if (typeof begin !== 'number' || begin % 1 !== 0) + throw TypeError("Illegal begin: Not an integer"); + begin >>>= 0; + if (typeof end !== 'number' || end % 1 !== 0) + throw TypeError("Illegal end: Not an integer"); + end >>>= 0; + if (begin < 0 || begin > end || end > this.buffer.byteLength) + throw RangeError("Illegal range: 0 <= "+begin+" <= "+end+" <= "+this.buffer.byteLength); + } + if (begin === end) + return this; // Nothing to reverse + Array.prototype.reverse.call(new Uint8Array(this.buffer).subarray(begin, end)); + this.view = new DataView(this.buffer); // FIXME: Why exactly is this necessary? + return this; + }; + /** + * Skips the next `length` bytes. This will just advance + * @param {number} length Number of bytes to skip. May also be negative to move the offset back. + * @returns {!ByteBuffer} this + * @expose + */ + ByteBufferPrototype.skip = function(length) { + if (!this.noAssert) { + if (typeof length !== 'number' || length % 1 !== 0) + throw TypeError("Illegal length: "+length+" (not an integer)"); + length |= 0; + } + var offset = this.offset + length; + if (!this.noAssert) { + if (offset < 0 || offset > this.buffer.byteLength) + throw RangeError("Illegal length: 0 <= "+this.offset+" + "+length+" <= "+this.buffer.byteLength); + } + this.offset = offset; + return this; + }; + + /** + * Slices this ByteBuffer by creating a cloned instance with `offset = begin` and `limit = end`. + * @param {number=} begin Begin offset, defaults to {@link ByteBuffer#offset}. + * @param {number=} end End offset, defaults to {@link ByteBuffer#limit}. + * @returns {!ByteBuffer} Clone of this ByteBuffer with slicing applied, backed by the same {@link ByteBuffer#buffer} + * @expose + */ + ByteBufferPrototype.slice = function(begin, end) { + if (typeof begin === 'undefined') begin = this.offset; + if (typeof end === 'undefined') end = this.limit; + if (!this.noAssert) { + if (typeof begin !== 'number' || begin % 1 !== 0) + throw TypeError("Illegal begin: Not an integer"); + begin >>>= 0; + if (typeof end !== 'number' || end % 1 !== 0) + throw TypeError("Illegal end: Not an integer"); + end >>>= 0; + if (begin < 0 || begin > end || end > this.buffer.byteLength) + throw RangeError("Illegal range: 0 <= "+begin+" <= "+end+" <= "+this.buffer.byteLength); + } + var bb = this.clone(); + bb.offset = begin; + bb.limit = end; + return bb; + }; + /** + * Returns a copy of the backing buffer that contains this ByteBuffer's contents. Contents are the bytes between + * {@link ByteBuffer#offset} and {@link ByteBuffer#limit}. Will transparently {@link ByteBuffer#flip} this + * ByteBuffer if `offset > limit` but the actual offsets remain untouched. + * @param {boolean=} forceCopy If `true` returns a copy, otherwise returns a view referencing the same memory if + * possible. Defaults to `false` + * @returns {!ArrayBuffer} Contents as an ArrayBuffer + * @expose + */ + ByteBufferPrototype.toBuffer = function(forceCopy) { + var offset = this.offset, + limit = this.limit; + if (offset > limit) { + var t = offset; + offset = limit; + limit = t; + } + if (!this.noAssert) { + if (typeof offset !== 'number' || offset % 1 !== 0) + throw TypeError("Illegal offset: Not an integer"); + offset >>>= 0; + if (typeof limit !== 'number' || limit % 1 !== 0) + throw TypeError("Illegal limit: Not an integer"); + limit >>>= 0; + if (offset < 0 || offset > limit || limit > this.buffer.byteLength) + throw RangeError("Illegal range: 0 <= "+offset+" <= "+limit+" <= "+this.buffer.byteLength); + } + // NOTE: It's not possible to have another ArrayBuffer reference the same memory as the backing buffer. This is + // possible with Uint8Array#subarray only, but we have to return an ArrayBuffer by contract. So: + if (!forceCopy && offset === 0 && limit === this.buffer.byteLength) { + return this.buffer; + } + if (offset === limit) { + return EMPTY_BUFFER; + } + var buffer = new ArrayBuffer(limit - offset); + new Uint8Array(buffer).set(new Uint8Array(this.buffer).subarray(offset, limit), 0); + return buffer; + }; + + /** + * Returns a raw buffer compacted to contain this ByteBuffer's contents. Contents are the bytes between + * {@link ByteBuffer#offset} and {@link ByteBuffer#limit}. Will transparently {@link ByteBuffer#flip} this + * ByteBuffer if `offset > limit` but the actual offsets remain untouched. This is an alias of + * {@link ByteBuffer#toBuffer}. + * @function + * @param {boolean=} forceCopy If `true` returns a copy, otherwise returns a view referencing the same memory. + * Defaults to `false` + * @returns {!ArrayBuffer} Contents as an ArrayBuffer + * @expose + */ + ByteBufferPrototype.toArrayBuffer = ByteBufferPrototype.toBuffer; + + + /** + * Converts the ByteBuffer's contents to a string. + * @param {string=} encoding Output encoding. Returns an informative string representation if omitted but also allows + * direct conversion to "utf8", "hex", "base64" and "binary" encoding. "debug" returns a hex representation with + * highlighted offsets. + * @param {number=} begin Offset to begin at, defaults to {@link ByteBuffer#offset} + * @param {number=} end Offset to end at, defaults to {@link ByteBuffer#limit} + * @returns {string} String representation + * @throws {Error} If `encoding` is invalid + * @expose + */ + ByteBufferPrototype.toString = function(encoding, begin, end) { + if (typeof encoding === 'undefined') + return "ByteBufferAB(offset="+this.offset+",markedOffset="+this.markedOffset+",limit="+this.limit+",capacity="+this.capacity()+")"; + if (typeof encoding === 'number') + encoding = "utf8", + begin = encoding, + end = begin; + switch (encoding) { + case "utf8": + return this.toUTF8(begin, end); + case "base64": + return this.toBase64(begin, end); + case "hex": + return this.toHex(begin, end); + case "binary": + return this.toBinary(begin, end); + case "debug": + return this.toDebug(); + case "columns": + return this.toColumns(); + default: + throw Error("Unsupported encoding: "+encoding); + } + }; + + // lxiv-embeddable + + /** + * lxiv-embeddable (c) 2014 Daniel Wirtz + * Released under the Apache License, Version 2.0 + * see: https://github.com/dcodeIO/lxiv for details + */ + var lxiv = function() { + "use strict"; + + /** + * lxiv namespace. + * @type {!Object.} + * @exports lxiv + */ + var lxiv = {}; + + /** + * Character codes for output. + * @type {!Array.} + * @inner + */ + var aout = [ + 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, + 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 97, 98, 99, 100, 101, 102, + 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 122, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 43, 47 + ]; + + /** + * Character codes for input. + * @type {!Array.} + * @inner + */ + var ain = []; + for (var i=0, k=aout.length; i>2)&0x3f]); + t = (b&0x3)<<4; + if ((b = src()) !== null) { + t |= (b>>4)&0xf; + dst(aout[(t|((b>>4)&0xf))&0x3f]); + t = (b&0xf)<<2; + if ((b = src()) !== null) + dst(aout[(t|((b>>6)&0x3))&0x3f]), + dst(aout[b&0x3f]); + else + dst(aout[t&0x3f]), + dst(61); + } else + dst(aout[t&0x3f]), + dst(61), + dst(61); + } + }; + + /** + * Decodes base64 char codes to bytes. + * @param {!function():number|null} src Characters source as a function returning the next char code respectively + * `null` if there are no more characters left. + * @param {!function(number)} dst Bytes destination as a function successively called with the next byte. + * @throws {Error} If a character code is invalid + */ + lxiv.decode = function(src, dst) { + var c, t1, t2; + function fail(c) { + throw Error("Illegal character code: "+c); + } + while ((c = src()) !== null) { + t1 = ain[c]; + if (typeof t1 === 'undefined') fail(c); + if ((c = src()) !== null) { + t2 = ain[c]; + if (typeof t2 === 'undefined') fail(c); + dst((t1<<2)>>>0|(t2&0x30)>>4); + if ((c = src()) !== null) { + t1 = ain[c]; + if (typeof t1 === 'undefined') + if (c === 61) break; else fail(c); + dst(((t2&0xf)<<4)>>>0|(t1&0x3c)>>2); + if ((c = src()) !== null) { + t2 = ain[c]; + if (typeof t2 === 'undefined') + if (c === 61) break; else fail(c); + dst(((t1&0x3)<<6)>>>0|t2); + } + } + } + } + }; + + /** + * Tests if a string is valid base64. + * @param {string} str String to test + * @returns {boolean} `true` if valid, otherwise `false` + */ + lxiv.test = function(str) { + return /^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/.test(str); + }; + + return lxiv; + }(); + + // encodings/base64 + + /** + * Encodes this ByteBuffer's contents to a base64 encoded string. + * @param {number=} begin Offset to begin at, defaults to {@link ByteBuffer#offset}. + * @param {number=} end Offset to end at, defaults to {@link ByteBuffer#limit}. + * @returns {string} Base64 encoded string + * @expose + */ + ByteBufferPrototype.toBase64 = function(begin, end) { + if (typeof begin === 'undefined') + begin = this.offset; + if (typeof end === 'undefined') + end = this.limit; + if (!this.noAssert) { + if (typeof begin !== 'number' || begin % 1 !== 0) + throw TypeError("Illegal begin: Not an integer"); + begin >>>= 0; + if (typeof end !== 'number' || end % 1 !== 0) + throw TypeError("Illegal end: Not an integer"); + end >>>= 0; + if (begin < 0 || begin > end || end > this.buffer.byteLength) + throw RangeError("Illegal range: 0 <= "+begin+" <= "+end+" <= "+this.buffer.byteLength); + } + var sd; lxiv.encode(function() { + return begin < end ? this.view.getUint8(begin++) : null; + }.bind(this), sd = stringDestination()); + return sd(); + }; + + /** + * Decodes a base64 encoded string to a ByteBuffer. + * @param {string} str String to decode + * @param {boolean=} littleEndian Whether to use little or big endian byte order. Defaults to + * {@link ByteBuffer.DEFAULT_ENDIAN}. + * @param {boolean=} noAssert Whether to skip assertions of offsets and values. Defaults to + * {@link ByteBuffer.DEFAULT_NOASSERT}. + * @returns {!ByteBuffer} ByteBuffer + * @expose + */ + ByteBuffer.fromBase64 = function(str, littleEndian, noAssert) { + if (!noAssert) { + if (typeof str !== 'string') + throw TypeError("Illegal str: Not a string"); + if (str.length % 4 !== 0) + throw TypeError("Illegal str: Length not a multiple of 4"); + } + var bb = new ByteBuffer(str.length/4*3, littleEndian, noAssert), + i = 0; + lxiv.decode(stringSource(str), function(b) { + bb.view.setUint8(i++, b); + }); + bb.limit = i; + return bb; + }; + + /** + * Encodes a binary string to base64 like `window.btoa` does. + * @param {string} str Binary string + * @returns {string} Base64 encoded string + * @see https://developer.mozilla.org/en-US/docs/Web/API/Window.btoa + * @expose + */ + ByteBuffer.btoa = function(str) { + return ByteBuffer.fromBinary(str).toBase64(); + }; + + /** + * Decodes a base64 encoded string to binary like `window.atob` does. + * @param {string} b64 Base64 encoded string + * @returns {string} Binary string + * @see https://developer.mozilla.org/en-US/docs/Web/API/Window.atob + * @expose + */ + ByteBuffer.atob = function(b64) { + return ByteBuffer.fromBase64(b64).toBinary(); + }; + + // encodings/binary + + /** + * Encodes this ByteBuffer to a binary encoded string, that is using only characters 0x00-0xFF as bytes. + * @param {number=} begin Offset to begin at. Defaults to {@link ByteBuffer#offset}. + * @param {number=} end Offset to end at. Defaults to {@link ByteBuffer#limit}. + * @returns {string} Binary encoded string + * @throws {RangeError} If `offset > limit` + * @expose + */ + ByteBufferPrototype.toBinary = function(begin, end) { + begin = typeof begin === 'undefined' ? this.offset : begin; + end = typeof end === 'undefined' ? this.limit : end; + if (!this.noAssert) { + if (typeof begin !== 'number' || begin % 1 !== 0) + throw TypeError("Illegal begin: Not an integer"); + begin >>>= 0; + if (typeof end !== 'number' || end % 1 !== 0) + throw TypeError("Illegal end: Not an integer"); + end >>>= 0; + if (begin < 0 || begin > end || end > this.buffer.byteLength) + throw RangeError("Illegal range: 0 <= "+begin+" <= "+end+" <= "+this.buffer.byteLength); + } + if (begin === end) + return ""; + var cc = [], pt = []; + while (begin < end) { + cc.push(this.view.getUint8(begin++)); + if (cc.length >= 1024) + pt.push(String.fromCharCode.apply(String, cc)), + cc = []; + } + return pt.join('') + String.fromCharCode.apply(String, cc); + }; + + /** + * Decodes a binary encoded string, that is using only characters 0x00-0xFF as bytes, to a ByteBuffer. + * @param {string} str String to decode + * @param {boolean=} littleEndian Whether to use little or big endian byte order. Defaults to + * {@link ByteBuffer.DEFAULT_ENDIAN}. + * @param {boolean=} noAssert Whether to skip assertions of offsets and values. Defaults to + * {@link ByteBuffer.DEFAULT_NOASSERT}. + * @returns {!ByteBuffer} ByteBuffer + * @expose + */ + ByteBuffer.fromBinary = function(str, littleEndian, noAssert) { + if (!noAssert) { + if (typeof str !== 'string') + throw TypeError("Illegal str: Not a string"); + } + var i = 0, k = str.length, charCode, + bb = new ByteBuffer(k, littleEndian, noAssert); + while (i 255) + throw RangeError("Illegal charCode at "+i+": 0 <= "+charCode+" <= 255"); + bb.view.setUint8(i++, charCode); + } + bb.limit = k; + return bb; + }; + + // encodings/debug + + /** + * Encodes this ByteBuffer to a hex encoded string with marked offsets. Offset symbols are: + * * `<` : offset, + * * `'` : markedOffset, + * * `>` : limit, + * * `|` : offset and limit, + * * `[` : offset and markedOffset, + * * `]` : markedOffset and limit, + * * `!` : offset, markedOffset and limit + * @param {boolean=} columns If `true` returns two columns hex + ascii, defaults to `false` + * @returns {string|!Array.} Debug string or array of lines if `asArray = true` + * @expose + * @example `>00'01 02<03` contains four bytes with `limit=0, markedOffset=1, offset=3` + * @example `00[01 02 03>` contains four bytes with `offset=markedOffset=1, limit=4` + * @example `00|01 02 03` contains four bytes with `offset=limit=1, markedOffset=-1` + * @example `|` contains zero bytes with `offset=limit=0, markedOffset=-1` + */ + ByteBufferPrototype.toDebug = function(columns) { + var i = -1, + k = this.buffer.byteLength, + b, + hex = "", + asc = "", + out = ""; + while (i 32 && b < 127 ? String.fromCharCode(b) : '.'; + } + } + ++i; + if (columns) { + if (i > 0 && i % 16 === 0 && i !== k) { + while (hex.length < 3*16+3) hex += " "; + out += hex+asc+"\n"; + hex = asc = ""; + } + } + if (i === this.offset && i === this.limit) + hex += i === this.markedOffset ? "!" : "|"; + else if (i === this.offset) + hex += i === this.markedOffset ? "[" : "<"; + else if (i === this.limit) + hex += i === this.markedOffset ? "]" : ">"; + else + hex += i === this.markedOffset ? "'" : (columns || (i !== 0 && i !== k) ? " " : ""); + } + if (columns && hex !== " ") { + while (hex.length < 3*16+3) hex += " "; + out += hex+asc+"\n"; + } + return columns ? out : hex; + }; + + /** + * Decodes a hex encoded string with marked offsets to a ByteBuffer. + * @param {string} str Debug string to decode (not be generated with `columns = true`) + * @param {boolean=} littleEndian Whether to use little or big endian byte order. Defaults to + * {@link ByteBuffer.DEFAULT_ENDIAN}. + * @param {boolean=} noAssert Whether to skip assertions of offsets and values. Defaults to + * {@link ByteBuffer.DEFAULT_NOASSERT}. + * @returns {!ByteBuffer} ByteBuffer + * @expose + * @see ByteBuffer#toDebug + */ + ByteBuffer.fromDebug = function(str, littleEndian, noAssert) { + var k = str.length, + bb = new ByteBuffer(((k+1)/3)|0, littleEndian, noAssert); + var i = 0, j = 0, ch, b, + rs = false, // Require symbol next + ho = false, hm = false, hl = false, // Already has offset, markedOffset, limit? + fail = false; + while (i': + if (!noAssert) { + if (hl) { + fail = true; break; + } + hl = true; + } + bb.limit = j; + rs = false; + break; + case "'": + if (!noAssert) { + if (hm) { + fail = true; break; + } + hm = true; + } + bb.markedOffset = j; + rs = false; + break; + case ' ': + rs = false; + break; + default: + if (!noAssert) { + if (rs) { + fail = true; break; + } + } + b = parseInt(ch+str.charAt(i++), 16); + if (!noAssert) { + if (isNaN(b) || b < 0 || b > 255) + throw TypeError("Illegal str: Not a debug encoded string"); + } + bb.view.setUint8(j++, b); + rs = true; + } + if (fail) + throw TypeError("Illegal str: Invalid symbol at "+i); + } + if (!noAssert) { + if (!ho || !hl) + throw TypeError("Illegal str: Missing offset or limit"); + if (j>>= 0; + if (typeof end !== 'number' || end % 1 !== 0) + throw TypeError("Illegal end: Not an integer"); + end >>>= 0; + if (begin < 0 || begin > end || end > this.buffer.byteLength) + throw RangeError("Illegal range: 0 <= "+begin+" <= "+end+" <= "+this.buffer.byteLength); + } + var out = new Array(end - begin), + b; + while (begin < end) { + b = this.view.getUint8(begin++); + if (b < 0x10) + out.push("0", b.toString(16)); + else out.push(b.toString(16)); + } + return out.join(''); + }; + + /** + * Decodes a hex encoded string to a ByteBuffer. + * @param {string} str String to decode + * @param {boolean=} littleEndian Whether to use little or big endian byte order. Defaults to + * {@link ByteBuffer.DEFAULT_ENDIAN}. + * @param {boolean=} noAssert Whether to skip assertions of offsets and values. Defaults to + * {@link ByteBuffer.DEFAULT_NOASSERT}. + * @returns {!ByteBuffer} ByteBuffer + * @expose + */ + ByteBuffer.fromHex = function(str, littleEndian, noAssert) { + if (!noAssert) { + if (typeof str !== 'string') + throw TypeError("Illegal str: Not a string"); + if (str.length % 2 !== 0) + throw TypeError("Illegal str: Length not a multiple of 2"); + } + var k = str.length, + bb = new ByteBuffer((k / 2) | 0, littleEndian), + b; + for (var i=0, j=0; i 255) + throw TypeError("Illegal str: Contains non-hex characters"); + bb.view.setUint8(j++, b); + } + bb.limit = j; + return bb; + }; + + // utfx-embeddable + + /** + * utfx-embeddable (c) 2014 Daniel Wirtz + * Released under the Apache License, Version 2.0 + * see: https://github.com/dcodeIO/utfx for details + */ + var utfx = function() { + "use strict"; + + /** + * utfx namespace. + * @inner + * @type {!Object.} + */ + var utfx = {}; + + /** + * Maximum valid code point. + * @type {number} + * @const + */ + utfx.MAX_CODEPOINT = 0x10FFFF; + + /** + * Encodes UTF8 code points to UTF8 bytes. + * @param {(!function():number|null) | number} src Code points source, either as a function returning the next code point + * respectively `null` if there are no more code points left or a single numeric code point. + * @param {!function(number)} dst Bytes destination as a function successively called with the next byte + */ + utfx.encodeUTF8 = function(src, dst) { + var cp = null; + if (typeof src === 'number') + cp = src, + src = function() { return null; }; + while (cp !== null || (cp = src()) !== null) { + if (cp < 0x80) + dst(cp&0x7F); + else if (cp < 0x800) + dst(((cp>>6)&0x1F)|0xC0), + dst((cp&0x3F)|0x80); + else if (cp < 0x10000) + dst(((cp>>12)&0x0F)|0xE0), + dst(((cp>>6)&0x3F)|0x80), + dst((cp&0x3F)|0x80); + else + dst(((cp>>18)&0x07)|0xF0), + dst(((cp>>12)&0x3F)|0x80), + dst(((cp>>6)&0x3F)|0x80), + dst((cp&0x3F)|0x80); + cp = null; + } + }; + + /** + * Decodes UTF8 bytes to UTF8 code points. + * @param {!function():number|null} src Bytes source as a function returning the next byte respectively `null` if there + * are no more bytes left. + * @param {!function(number)} dst Code points destination as a function successively called with each decoded code point. + * @throws {RangeError} If a starting byte is invalid in UTF8 + * @throws {Error} If the last sequence is truncated. Has an array property `bytes` holding the + * remaining bytes. + */ + utfx.decodeUTF8 = function(src, dst) { + var a, b, c, d, fail = function(b) { + b = b.slice(0, b.indexOf(null)); + var err = Error(b.toString()); + err.name = "TruncatedError"; + err['bytes'] = b; + throw err; + }; + while ((a = src()) !== null) { + if ((a&0x80) === 0) + dst(a); + else if ((a&0xE0) === 0xC0) + ((b = src()) === null) && fail([a, b]), + dst(((a&0x1F)<<6) | (b&0x3F)); + else if ((a&0xF0) === 0xE0) + ((b=src()) === null || (c=src()) === null) && fail([a, b, c]), + dst(((a&0x0F)<<12) | ((b&0x3F)<<6) | (c&0x3F)); + else if ((a&0xF8) === 0xF0) + ((b=src()) === null || (c=src()) === null || (d=src()) === null) && fail([a, b, c ,d]), + dst(((a&0x07)<<18) | ((b&0x3F)<<12) | ((c&0x3F)<<6) | (d&0x3F)); + else throw RangeError("Illegal starting byte: "+a); + } + }; + + /** + * Converts UTF16 characters to UTF8 code points. + * @param {!function():number|null} src Characters source as a function returning the next char code respectively + * `null` if there are no more characters left. + * @param {!function(number)} dst Code points destination as a function successively called with each converted code + * point. + */ + utfx.UTF16toUTF8 = function(src, dst) { + var c1, c2 = null; + while (true) { + if ((c1 = c2 !== null ? c2 : src()) === null) + break; + if (c1 >= 0xD800 && c1 <= 0xDFFF) { + if ((c2 = src()) !== null) { + if (c2 >= 0xDC00 && c2 <= 0xDFFF) { + dst((c1-0xD800)*0x400+c2-0xDC00+0x10000); + c2 = null; continue; + } + } + } + dst(c1); + } + if (c2 !== null) dst(c2); + }; + + /** + * Converts UTF8 code points to UTF16 characters. + * @param {(!function():number|null) | number} src Code points source, either as a function returning the next code point + * respectively `null` if there are no more code points left or a single numeric code point. + * @param {!function(number)} dst Characters destination as a function successively called with each converted char code. + * @throws {RangeError} If a code point is out of range + */ + utfx.UTF8toUTF16 = function(src, dst) { + var cp = null; + if (typeof src === 'number') + cp = src, src = function() { return null; }; + while (cp !== null || (cp = src()) !== null) { + if (cp <= 0xFFFF) + dst(cp); + else + cp -= 0x10000, + dst((cp>>10)+0xD800), + dst((cp%0x400)+0xDC00); + cp = null; + } + }; + + /** + * Converts and encodes UTF16 characters to UTF8 bytes. + * @param {!function():number|null} src Characters source as a function returning the next char code respectively `null` + * if there are no more characters left. + * @param {!function(number)} dst Bytes destination as a function successively called with the next byte. + */ + utfx.encodeUTF16toUTF8 = function(src, dst) { + utfx.UTF16toUTF8(src, function(cp) { + utfx.encodeUTF8(cp, dst); + }); + }; + + /** + * Decodes and converts UTF8 bytes to UTF16 characters. + * @param {!function():number|null} src Bytes source as a function returning the next byte respectively `null` if there + * are no more bytes left. + * @param {!function(number)} dst Characters destination as a function successively called with each converted char code. + * @throws {RangeError} If a starting byte is invalid in UTF8 + * @throws {Error} If the last sequence is truncated. Has an array property `bytes` holding the remaining bytes. + */ + utfx.decodeUTF8toUTF16 = function(src, dst) { + utfx.decodeUTF8(src, function(cp) { + utfx.UTF8toUTF16(cp, dst); + }); + }; + + /** + * Calculates the byte length of an UTF8 code point. + * @param {number} cp UTF8 code point + * @returns {number} Byte length + */ + utfx.calculateCodePoint = function(cp) { + return (cp < 0x80) ? 1 : (cp < 0x800) ? 2 : (cp < 0x10000) ? 3 : 4; + }; + + /** + * Calculates the number of UTF8 bytes required to store UTF8 code points. + * @param {(!function():number|null)} src Code points source as a function returning the next code point respectively + * `null` if there are no more code points left. + * @returns {number} The number of UTF8 bytes required + */ + utfx.calculateUTF8 = function(src) { + var cp, l=0; + while ((cp = src()) !== null) + l += utfx.calculateCodePoint(cp); + return l; + }; + + /** + * Calculates the number of UTF8 code points respectively UTF8 bytes required to store UTF16 char codes. + * @param {(!function():number|null)} src Characters source as a function returning the next char code respectively + * `null` if there are no more characters left. + * @returns {!Array.} The number of UTF8 code points at index 0 and the number of UTF8 bytes required at index 1. + */ + utfx.calculateUTF16asUTF8 = function(src) { + var n=0, l=0; + utfx.UTF16toUTF8(src, function(cp) { + ++n; l += utfx.calculateCodePoint(cp); + }); + return [n,l]; + }; + + return utfx; + }(); + + // encodings/utf8 + + /** + * Encodes this ByteBuffer's contents between {@link ByteBuffer#offset} and {@link ByteBuffer#limit} to an UTF8 encoded + * string. + * @returns {string} Hex encoded string + * @throws {RangeError} If `offset > limit` + * @expose + */ + ByteBufferPrototype.toUTF8 = function(begin, end) { + if (typeof begin === 'undefined') begin = this.offset; + if (typeof end === 'undefined') end = this.limit; + if (!this.noAssert) { + if (typeof begin !== 'number' || begin % 1 !== 0) + throw TypeError("Illegal begin: Not an integer"); + begin >>>= 0; + if (typeof end !== 'number' || end % 1 !== 0) + throw TypeError("Illegal end: Not an integer"); + end >>>= 0; + if (begin < 0 || begin > end || end > this.buffer.byteLength) + throw RangeError("Illegal range: 0 <= "+begin+" <= "+end+" <= "+this.buffer.byteLength); + } + var sd; try { + utfx.decodeUTF8toUTF16(function() { + return begin < end ? this.view.getUint8(begin++) : null; + }.bind(this), sd = stringDestination()); + } catch (e) { + if (begin !== end) + throw RangeError("Illegal range: Truncated data, "+begin+" != "+end); + } + return sd(); + }; + + /** + * Decodes an UTF8 encoded string to a ByteBuffer. + * @param {string} str String to decode + * @param {boolean=} littleEndian Whether to use little or big endian byte order. Defaults to + * {@link ByteBuffer.DEFAULT_ENDIAN}. + * @param {boolean=} noAssert Whether to skip assertions of offsets and values. Defaults to + * {@link ByteBuffer.DEFAULT_NOASSERT}. + * @returns {!ByteBuffer} ByteBuffer + * @expose + */ + ByteBuffer.fromUTF8 = function(str, littleEndian, noAssert) { + if (!noAssert) + if (typeof str !== 'string') + throw TypeError("Illegal str: Not a string"); + var bb = new ByteBuffer(utfx.calculateUTF16asUTF8(stringSource(str), true)[1], littleEndian, noAssert), + i = 0; + utfx.encodeUTF16toUTF8(stringSource(str), function(b) { + bb.view.setUint8(i++, b); + }); + bb.limit = i; + return bb; + }; + + + return ByteBuffer; + } + + /* CommonJS */ if (typeof require === 'function' && typeof module === 'object' && module && typeof exports === 'object' && exports) + module['exports'] = (function() { + var Long; try { Long = require("long"); } catch (e) {} + return loadByteBuffer(Long); + })(); + /* AMD */ else if (typeof define === 'function' && define["amd"]) + define("ByteBuffer", ["Long"], function(Long) { return loadByteBuffer(Long); }); + /* Global */ else + (global["dcodeIO"] = global["dcodeIO"] || {})["ByteBuffer"] = loadByteBuffer(global["dcodeIO"]["Long"]); + +})(this); + +/* + Copyright 2013 Daniel Wirtz + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + */ + +/** + * @license protobuf.js (c) 2013 Daniel Wirtz + * Released under the Apache License, Version 2.0 + * see: https://github.com/dcodeIO/protobuf.js for details + */ +(function(global, factory) { + + /* AMD */ if (typeof define === 'function' && define["amd"]) + define(["bytebuffer"], factory); + /* CommonJS */ else if (typeof require === "function" && typeof module === "object" && module && module["exports"]) + module["exports"] = factory(require("bytebuffer"), true); + /* Global */ else + (global["dcodeIO"] = global["dcodeIO"] || {})["ProtoBuf"] = factory(global["dcodeIO"]["ByteBuffer"]); + +})(this, function(ByteBuffer, isCommonJS) { + "use strict"; + + /** + * The ProtoBuf namespace. + * @exports ProtoBuf + * @namespace + * @expose + */ + var ProtoBuf = {}; + + /** + * @type {!function(new: ByteBuffer, ...[*])} + * @expose + */ + ProtoBuf.ByteBuffer = ByteBuffer; + + /** + * @type {?function(new: Long, ...[*])} + * @expose + */ + ProtoBuf.Long = ByteBuffer.Long || null; + + /** + * ProtoBuf.js version. + * @type {string} + * @const + * @expose + */ + ProtoBuf.VERSION = "5.0.1"; + + /** + * Wire types. + * @type {Object.} + * @const + * @expose + */ + ProtoBuf.WIRE_TYPES = {}; + + /** + * Varint wire type. + * @type {number} + * @expose + */ + ProtoBuf.WIRE_TYPES.VARINT = 0; + + /** + * Fixed 64 bits wire type. + * @type {number} + * @const + * @expose + */ + ProtoBuf.WIRE_TYPES.BITS64 = 1; + + /** + * Length delimited wire type. + * @type {number} + * @const + * @expose + */ + ProtoBuf.WIRE_TYPES.LDELIM = 2; + + /** + * Start group wire type. + * @type {number} + * @const + * @expose + */ + ProtoBuf.WIRE_TYPES.STARTGROUP = 3; + + /** + * End group wire type. + * @type {number} + * @const + * @expose + */ + ProtoBuf.WIRE_TYPES.ENDGROUP = 4; + + /** + * Fixed 32 bits wire type. + * @type {number} + * @const + * @expose + */ + ProtoBuf.WIRE_TYPES.BITS32 = 5; + + /** + * Packable wire types. + * @type {!Array.} + * @const + * @expose + */ + ProtoBuf.PACKABLE_WIRE_TYPES = [ + ProtoBuf.WIRE_TYPES.VARINT, + ProtoBuf.WIRE_TYPES.BITS64, + ProtoBuf.WIRE_TYPES.BITS32 + ]; + + /** + * Types. + * @dict + * @type {!Object.} + * @const + * @expose + */ + ProtoBuf.TYPES = { + // According to the protobuf spec. + "int32": { + name: "int32", + wireType: ProtoBuf.WIRE_TYPES.VARINT, + defaultValue: 0 + }, + "uint32": { + name: "uint32", + wireType: ProtoBuf.WIRE_TYPES.VARINT, + defaultValue: 0 + }, + "sint32": { + name: "sint32", + wireType: ProtoBuf.WIRE_TYPES.VARINT, + defaultValue: 0 + }, + "int64": { + name: "int64", + wireType: ProtoBuf.WIRE_TYPES.VARINT, + defaultValue: ProtoBuf.Long ? ProtoBuf.Long.ZERO : undefined + }, + "uint64": { + name: "uint64", + wireType: ProtoBuf.WIRE_TYPES.VARINT, + defaultValue: ProtoBuf.Long ? ProtoBuf.Long.UZERO : undefined + }, + "sint64": { + name: "sint64", + wireType: ProtoBuf.WIRE_TYPES.VARINT, + defaultValue: ProtoBuf.Long ? ProtoBuf.Long.ZERO : undefined + }, + "bool": { + name: "bool", + wireType: ProtoBuf.WIRE_TYPES.VARINT, + defaultValue: false + }, + "double": { + name: "double", + wireType: ProtoBuf.WIRE_TYPES.BITS64, + defaultValue: 0 + }, + "string": { + name: "string", + wireType: ProtoBuf.WIRE_TYPES.LDELIM, + defaultValue: "" + }, + "bytes": { + name: "bytes", + wireType: ProtoBuf.WIRE_TYPES.LDELIM, + defaultValue: null // overridden in the code, must be a unique instance + }, + "fixed32": { + name: "fixed32", + wireType: ProtoBuf.WIRE_TYPES.BITS32, + defaultValue: 0 + }, + "sfixed32": { + name: "sfixed32", + wireType: ProtoBuf.WIRE_TYPES.BITS32, + defaultValue: 0 + }, + "fixed64": { + name: "fixed64", + wireType: ProtoBuf.WIRE_TYPES.BITS64, + defaultValue: ProtoBuf.Long ? ProtoBuf.Long.UZERO : undefined + }, + "sfixed64": { + name: "sfixed64", + wireType: ProtoBuf.WIRE_TYPES.BITS64, + defaultValue: ProtoBuf.Long ? ProtoBuf.Long.ZERO : undefined + }, + "float": { + name: "float", + wireType: ProtoBuf.WIRE_TYPES.BITS32, + defaultValue: 0 + }, + "enum": { + name: "enum", + wireType: ProtoBuf.WIRE_TYPES.VARINT, + defaultValue: 0 + }, + "message": { + name: "message", + wireType: ProtoBuf.WIRE_TYPES.LDELIM, + defaultValue: null + }, + "group": { + name: "group", + wireType: ProtoBuf.WIRE_TYPES.STARTGROUP, + defaultValue: null + } + }; + + /** + * Valid map key types. + * @type {!Array.>} + * @const + * @expose + */ + ProtoBuf.MAP_KEY_TYPES = [ + ProtoBuf.TYPES["int32"], + ProtoBuf.TYPES["sint32"], + ProtoBuf.TYPES["sfixed32"], + ProtoBuf.TYPES["uint32"], + ProtoBuf.TYPES["fixed32"], + ProtoBuf.TYPES["int64"], + ProtoBuf.TYPES["sint64"], + ProtoBuf.TYPES["sfixed64"], + ProtoBuf.TYPES["uint64"], + ProtoBuf.TYPES["fixed64"], + ProtoBuf.TYPES["bool"], + ProtoBuf.TYPES["string"], + ProtoBuf.TYPES["bytes"] + ]; + + /** + * Minimum field id. + * @type {number} + * @const + * @expose + */ + ProtoBuf.ID_MIN = 1; + + /** + * Maximum field id. + * @type {number} + * @const + * @expose + */ + ProtoBuf.ID_MAX = 0x1FFFFFFF; + + /** + * If set to `true`, field names will be converted from underscore notation to camel case. Defaults to `false`. + * Must be set prior to parsing. + * @type {boolean} + * @expose + */ + ProtoBuf.convertFieldsToCamelCase = false; + + /** + * By default, messages are populated with (setX, set_x) accessors for each field. This can be disabled by + * setting this to `false` prior to building messages. + * @type {boolean} + * @expose + */ + ProtoBuf.populateAccessors = true; + + /** + * By default, messages are populated with default values if a field is not present on the wire. To disable + * this behavior, set this setting to `false`. + * @type {boolean} + * @expose + */ + ProtoBuf.populateDefaults = true; + + /** + * @alias ProtoBuf.Util + * @expose + */ + ProtoBuf.Util = (function() { + "use strict"; + + /** + * ProtoBuf utilities. + * @exports ProtoBuf.Util + * @namespace + */ + var Util = {}; + + /** + * Flag if running in node or not. + * @type {boolean} + * @const + * @expose + */ + Util.IS_NODE = !!( + typeof process === 'object' && process+'' === '[object process]' && !process['browser'] + ); + + /** + * Constructs a XMLHttpRequest object. + * @return {XMLHttpRequest} + * @throws {Error} If XMLHttpRequest is not supported + * @expose + */ + Util.XHR = function() { + // No dependencies please, ref: http://www.quirksmode.org/js/xmlhttp.html + var XMLHttpFactories = [ + function () {return new XMLHttpRequest()}, + function () {return new ActiveXObject("Msxml2.XMLHTTP")}, + function () {return new ActiveXObject("Msxml3.XMLHTTP")}, + function () {return new ActiveXObject("Microsoft.XMLHTTP")} + ]; + /** @type {?XMLHttpRequest} */ + var xhr = null; + for (var i=0;i} + * @expose + */ + ProtoBuf.Lang = { + + // Characters always ending a statement + DELIM: /[\s\{\}=;:\[\],'"\(\)<>]/g, + + // Field rules + RULE: /^(?:required|optional|repeated|map)$/, + + // Field types + TYPE: /^(?:double|float|int32|uint32|sint32|int64|uint64|sint64|fixed32|sfixed32|fixed64|sfixed64|bool|string|bytes)$/, + + // Names + NAME: /^[a-zA-Z_][a-zA-Z_0-9]*$/, + + // Type definitions + TYPEDEF: /^[a-zA-Z][a-zA-Z_0-9]*$/, + + // Type references + TYPEREF: /^(?:\.?[a-zA-Z_][a-zA-Z_0-9]*)+$/, + + // Fully qualified type references + FQTYPEREF: /^(?:\.[a-zA-Z][a-zA-Z_0-9]*)+$/, + + // All numbers + NUMBER: /^-?(?:[1-9][0-9]*|0|0[xX][0-9a-fA-F]+|0[0-7]+|([0-9]*(\.[0-9]*)?([Ee][+-]?[0-9]+)?)|inf|nan)$/, + + // Decimal numbers + NUMBER_DEC: /^(?:[1-9][0-9]*|0)$/, + + // Hexadecimal numbers + NUMBER_HEX: /^0[xX][0-9a-fA-F]+$/, + + // Octal numbers + NUMBER_OCT: /^0[0-7]+$/, + + // Floating point numbers + NUMBER_FLT: /^([0-9]*(\.[0-9]*)?([Ee][+-]?[0-9]+)?|inf|nan)$/, + + // Booleans + BOOL: /^(?:true|false)$/i, + + // Id numbers + ID: /^(?:[1-9][0-9]*|0|0[xX][0-9a-fA-F]+|0[0-7]+)$/, + + // Negative id numbers (enum values) + NEGID: /^\-?(?:[1-9][0-9]*|0|0[xX][0-9a-fA-F]+|0[0-7]+)$/, + + // Whitespaces + WHITESPACE: /\s/, + + // All strings + STRING: /(?:"([^"\\]*(?:\\.[^"\\]*)*)")|(?:'([^'\\]*(?:\\.[^'\\]*)*)')/g, + + // Double quoted strings + STRING_DQ: /(?:"([^"\\]*(?:\\.[^"\\]*)*)")/g, + + // Single quoted strings + STRING_SQ: /(?:'([^'\\]*(?:\\.[^'\\]*)*)')/g + }; + + /** + * @alias ProtoBuf.DotProto + * @expose + */ + ProtoBuf.DotProto = (function(ProtoBuf, Lang) { + "use strict"; + + /** + * Utilities to parse .proto files. + * @exports ProtoBuf.DotProto + * @namespace + */ + var DotProto = {}; + + /** + * Constructs a new Tokenizer. + * @exports ProtoBuf.DotProto.Tokenizer + * @class prototype tokenizer + * @param {string} proto Proto to tokenize + * @constructor + */ + var Tokenizer = function(proto) { + + /** + * Source to parse. + * @type {string} + * @expose + */ + this.source = proto+""; + + /** + * Current index. + * @type {number} + * @expose + */ + this.index = 0; + + /** + * Current line. + * @type {number} + * @expose + */ + this.line = 1; + + /** + * Token stack. + * @type {!Array.} + * @expose + */ + this.stack = []; + + /** + * Opening character of the current string read, if any. + * @type {?string} + * @private + */ + this._stringOpen = null; + }; + + /** + * @alias ProtoBuf.DotProto.Tokenizer.prototype + * @inner + */ + var TokenizerPrototype = Tokenizer.prototype; + + /** + * Reads a string beginning at the current index. + * @return {string} + * @private + */ + TokenizerPrototype._readString = function() { + var re = this._stringOpen === '"' + ? Lang.STRING_DQ + : Lang.STRING_SQ; + re.lastIndex = this.index - 1; // Include the open quote + var match = re.exec(this.source); + if (!match) + throw Error("unterminated string"); + this.index = re.lastIndex; + this.stack.push(this._stringOpen); + this._stringOpen = null; + return match[1]; + }; + + /** + * Gets the next token and advances by one. + * @return {?string} Token or `null` on EOF + * @expose + */ + TokenizerPrototype.next = function() { + if (this.stack.length > 0) + return this.stack.shift(); + if (this.index >= this.source.length) + return null; + if (this._stringOpen !== null) + return this._readString(); + + var repeat, + prev, + next; + do { + repeat = false; + + // Strip white spaces + while (Lang.WHITESPACE.test(next = this.source.charAt(this.index))) { + if (next === '\n') + ++this.line; + if (++this.index === this.source.length) + return null; + } + + // Strip comments + if (this.source.charAt(this.index) === '/') { + ++this.index; + if (this.source.charAt(this.index) === '/') { // Line + while (this.source.charAt(++this.index) !== '\n') + if (this.index == this.source.length) + return null; + ++this.index; + ++this.line; + repeat = true; + } else if ((next = this.source.charAt(this.index)) === '*') { /* Block */ + do { + if (next === '\n') + ++this.line; + if (++this.index === this.source.length) + return null; + prev = next; + next = this.source.charAt(this.index); + } while (prev !== '*' || next !== '/'); + ++this.index; + repeat = true; + } else + return '/'; + } + } while (repeat); + + if (this.index === this.source.length) + return null; + + // Read the next token + var end = this.index; + Lang.DELIM.lastIndex = 0; + var delim = Lang.DELIM.test(this.source.charAt(end++)); + if (!delim) + while(end < this.source.length && !Lang.DELIM.test(this.source.charAt(end))) + ++end; + var token = this.source.substring(this.index, this.index = end); + if (token === '"' || token === "'") + this._stringOpen = token; + return token; + }; + + /** + * Peeks for the next token. + * @return {?string} Token or `null` on EOF + * @expose + */ + TokenizerPrototype.peek = function() { + if (this.stack.length === 0) { + var token = this.next(); + if (token === null) + return null; + this.stack.push(token); + } + return this.stack[0]; + }; + + /** + * Skips a specific token and throws if it differs. + * @param {string} expected Expected token + * @throws {Error} If the actual token differs + */ + TokenizerPrototype.skip = function(expected) { + var actual = this.next(); + if (actual !== expected) + throw Error("illegal '"+actual+"', '"+expected+"' expected"); + }; + + /** + * Omits an optional token. + * @param {string} expected Expected optional token + * @returns {boolean} `true` if the token exists + */ + TokenizerPrototype.omit = function(expected) { + if (this.peek() === expected) { + this.next(); + return true; + } + return false; + }; + + /** + * Returns a string representation of this object. + * @return {string} String representation as of "Tokenizer(index/length)" + * @expose + */ + TokenizerPrototype.toString = function() { + return "Tokenizer ("+this.index+"/"+this.source.length+" at line "+this.line+")"; + }; + + /** + * @alias ProtoBuf.DotProto.Tokenizer + * @expose + */ + DotProto.Tokenizer = Tokenizer; + + /** + * Constructs a new Parser. + * @exports ProtoBuf.DotProto.Parser + * @class prototype parser + * @param {string} source Source + * @constructor + */ + var Parser = function(source) { + + /** + * Tokenizer. + * @type {!ProtoBuf.DotProto.Tokenizer} + * @expose + */ + this.tn = new Tokenizer(source); + + /** + * Whether parsing proto3 or not. + * @type {boolean} + */ + this.proto3 = false; + }; + + /** + * @alias ProtoBuf.DotProto.Parser.prototype + * @inner + */ + var ParserPrototype = Parser.prototype; + + /** + * Parses the source. + * @returns {!Object} + * @throws {Error} If the source cannot be parsed + * @expose + */ + ParserPrototype.parse = function() { + var topLevel = { + "name": "[ROOT]", // temporary + "package": null, + "messages": [], + "enums": [], + "imports": [], + "options": {}, + "services": [] + // "syntax": undefined + }; + var token, + head = true, + weak; + try { + while (token = this.tn.next()) { + switch (token) { + case 'package': + if (!head || topLevel["package"] !== null) + throw Error("unexpected 'package'"); + token = this.tn.next(); + if (!Lang.TYPEREF.test(token)) + throw Error("illegal package name: " + token); + this.tn.skip(";"); + topLevel["package"] = token; + break; + case 'import': + if (!head) + throw Error("unexpected 'import'"); + token = this.tn.peek(); + if (token === "public" || (weak = token === "weak")) // token ignored + this.tn.next(); + token = this._readString(); + this.tn.skip(";"); + if (!weak) // import ignored + topLevel["imports"].push(token); + break; + case 'syntax': + if (!head) + throw Error("unexpected 'syntax'"); + this.tn.skip("="); + if ((topLevel["syntax"] = this._readString()) === "proto3") + this.proto3 = true; + this.tn.skip(";"); + break; + case 'message': + this._parseMessage(topLevel, null); + head = false; + break; + case 'enum': + this._parseEnum(topLevel); + head = false; + break; + case 'option': + this._parseOption(topLevel); + break; + case 'service': + this._parseService(topLevel); + break; + case 'extend': + this._parseExtend(topLevel); + break; + default: + throw Error("unexpected '" + token + "'"); + } + } + } catch (e) { + e.message = "Parse error at line "+this.tn.line+": " + e.message; + throw e; + } + delete topLevel["name"]; + return topLevel; + }; + + /** + * Parses the specified source. + * @returns {!Object} + * @throws {Error} If the source cannot be parsed + * @expose + */ + Parser.parse = function(source) { + return new Parser(source).parse(); + }; + + // ----- Conversion ------ + + /** + * Converts a numerical string to an id. + * @param {string} value + * @param {boolean=} mayBeNegative + * @returns {number} + * @inner + */ + function mkId(value, mayBeNegative) { + var id = -1, + sign = 1; + if (value.charAt(0) == '-') { + sign = -1; + value = value.substring(1); + } + if (Lang.NUMBER_DEC.test(value)) + id = parseInt(value); + else if (Lang.NUMBER_HEX.test(value)) + id = parseInt(value.substring(2), 16); + else if (Lang.NUMBER_OCT.test(value)) + id = parseInt(value.substring(1), 8); + else + throw Error("illegal id value: " + (sign < 0 ? '-' : '') + value); + id = (sign*id)|0; // Force to 32bit + if (!mayBeNegative && id < 0) + throw Error("illegal id value: " + (sign < 0 ? '-' : '') + value); + return id; + } + + /** + * Converts a numerical string to a number. + * @param {string} val + * @returns {number} + * @inner + */ + function mkNumber(val) { + var sign = 1; + if (val.charAt(0) == '-') { + sign = -1; + val = val.substring(1); + } + if (Lang.NUMBER_DEC.test(val)) + return sign * parseInt(val, 10); + else if (Lang.NUMBER_HEX.test(val)) + return sign * parseInt(val.substring(2), 16); + else if (Lang.NUMBER_OCT.test(val)) + return sign * parseInt(val.substring(1), 8); + else if (val === 'inf') + return sign * Infinity; + else if (val === 'nan') + return NaN; + else if (Lang.NUMBER_FLT.test(val)) + return sign * parseFloat(val); + throw Error("illegal number value: " + (sign < 0 ? '-' : '') + val); + } + + // ----- Reading ------ + + /** + * Reads a string. + * @returns {string} + * @private + */ + ParserPrototype._readString = function() { + var value = "", + token, + delim; + do { + delim = this.tn.next(); + if (delim !== "'" && delim !== '"') + throw Error("illegal string delimiter: "+delim); + value += this.tn.next(); + this.tn.skip(delim); + token = this.tn.peek(); + } while (token === '"' || token === '"'); // multi line? + return value; + }; + + /** + * Reads a value. + * @param {boolean=} mayBeTypeRef + * @returns {number|boolean|string} + * @private + */ + ParserPrototype._readValue = function(mayBeTypeRef) { + var token = this.tn.peek(), + value; + if (token === '"' || token === "'") + return this._readString(); + this.tn.next(); + if (Lang.NUMBER.test(token)) + return mkNumber(token); + if (Lang.BOOL.test(token)) + return (token.toLowerCase() === 'true'); + if (mayBeTypeRef && Lang.TYPEREF.test(token)) + return token; + throw Error("illegal value: "+token); + + }; + + // ----- Parsing constructs ----- + + /** + * Parses a namespace option. + * @param {!Object} parent Parent definition + * @param {boolean=} isList + * @private + */ + ParserPrototype._parseOption = function(parent, isList) { + var token = this.tn.next(), + custom = false; + if (token === '(') { + custom = true; + token = this.tn.next(); + } + if (!Lang.TYPEREF.test(token)) + // we can allow options of the form google.protobuf.* since they will just get ignored anyways + // if (!/google\.protobuf\./.test(token)) // FIXME: Why should that not be a valid typeref? + throw Error("illegal option name: "+token); + var name = token; + if (custom) { // (my_method_option).foo, (my_method_option), some_method_option, (foo.my_option).bar + this.tn.skip(')'); + name = '('+name+')'; + token = this.tn.peek(); + if (Lang.FQTYPEREF.test(token)) { + name += token; + this.tn.next(); + } + } + this.tn.skip('='); + this._parseOptionValue(parent, name); + if (!isList) + this.tn.skip(";"); + }; + + /** + * Sets an option on the specified options object. + * @param {!Object.} options + * @param {string} name + * @param {string|number|boolean} value + * @inner + */ + function setOption(options, name, value) { + if (typeof options[name] === 'undefined') + options[name] = value; + else { + if (!Array.isArray(options[name])) + options[name] = [ options[name] ]; + options[name].push(value); + } + } + + /** + * Parses an option value. + * @param {!Object} parent + * @param {string} name + * @private + */ + ParserPrototype._parseOptionValue = function(parent, name) { + var token = this.tn.peek(); + if (token !== '{') { // Plain value + setOption(parent["options"], name, this._readValue(true)); + } else { // Aggregate options + this.tn.skip("{"); + while ((token = this.tn.next()) !== '}') { + if (!Lang.NAME.test(token)) + throw Error("illegal option name: " + name + "." + token); + if (this.tn.omit(":")) + setOption(parent["options"], name + "." + token, this._readValue(true)); + else + this._parseOptionValue(parent, name + "." + token); + } + } + }; + + /** + * Parses a service definition. + * @param {!Object} parent Parent definition + * @private + */ + ParserPrototype._parseService = function(parent) { + var token = this.tn.next(); + if (!Lang.NAME.test(token)) + throw Error("illegal service name at line "+this.tn.line+": "+token); + var name = token; + var svc = { + "name": name, + "rpc": {}, + "options": {} + }; + this.tn.skip("{"); + while ((token = this.tn.next()) !== '}') { + if (token === "option") + this._parseOption(svc); + else if (token === 'rpc') + this._parseServiceRPC(svc); + else + throw Error("illegal service token: "+token); + } + this.tn.omit(";"); + parent["services"].push(svc); + }; + + /** + * Parses a RPC service definition of the form ['rpc', name, (request), 'returns', (response)]. + * @param {!Object} svc Service definition + * @private + */ + ParserPrototype._parseServiceRPC = function(svc) { + var type = "rpc", + token = this.tn.next(); + if (!Lang.NAME.test(token)) + throw Error("illegal rpc service method name: "+token); + var name = token; + var method = { + "request": null, + "response": null, + "request_stream": false, + "response_stream": false, + "options": {} + }; + this.tn.skip("("); + token = this.tn.next(); + if (token.toLowerCase() === "stream") { + method["request_stream"] = true; + token = this.tn.next(); + } + if (!Lang.TYPEREF.test(token)) + throw Error("illegal rpc service request type: "+token); + method["request"] = token; + this.tn.skip(")"); + token = this.tn.next(); + if (token.toLowerCase() !== "returns") + throw Error("illegal rpc service request type delimiter: "+token); + this.tn.skip("("); + token = this.tn.next(); + if (token.toLowerCase() === "stream") { + method["response_stream"] = true; + token = this.tn.next(); + } + method["response"] = token; + this.tn.skip(")"); + token = this.tn.peek(); + if (token === '{') { + this.tn.next(); + while ((token = this.tn.next()) !== '}') { + if (token === 'option') + this._parseOption(method); + else + throw Error("illegal rpc service token: " + token); + } + this.tn.omit(";"); + } else + this.tn.skip(";"); + if (typeof svc[type] === 'undefined') + svc[type] = {}; + svc[type][name] = method; + }; + + /** + * Parses a message definition. + * @param {!Object} parent Parent definition + * @param {!Object=} fld Field definition if this is a group + * @returns {!Object} + * @private + */ + ParserPrototype._parseMessage = function(parent, fld) { + var isGroup = !!fld, + token = this.tn.next(); + var msg = { + "name": "", + "fields": [], + "enums": [], + "messages": [], + "options": {}, + "services": [], + "oneofs": {} + // "extensions": undefined + }; + if (!Lang.NAME.test(token)) + throw Error("illegal "+(isGroup ? "group" : "message")+" name: "+token); + msg["name"] = token; + if (isGroup) { + this.tn.skip("="); + fld["id"] = mkId(this.tn.next()); + msg["isGroup"] = true; + } + token = this.tn.peek(); + if (token === '[' && fld) + this._parseFieldOptions(fld); + this.tn.skip("{"); + while ((token = this.tn.next()) !== '}') { + if (Lang.RULE.test(token)) + this._parseMessageField(msg, token); + else if (token === "oneof") + this._parseMessageOneOf(msg); + else if (token === "enum") + this._parseEnum(msg); + else if (token === "message") + this._parseMessage(msg); + else if (token === "option") + this._parseOption(msg); + else if (token === "service") + this._parseService(msg); + else if (token === "extensions") + msg["extensions"] = this._parseExtensionRanges(); + else if (token === "reserved") + this._parseIgnored(); // TODO + else if (token === "extend") + this._parseExtend(msg); + else if (Lang.TYPEREF.test(token)) { + if (!this.proto3) + throw Error("illegal field rule: "+token); + this._parseMessageField(msg, "optional", token); + } else + throw Error("illegal message token: "+token); + } + this.tn.omit(";"); + parent["messages"].push(msg); + return msg; + }; + + /** + * Parses an ignored statement. + * @private + */ + ParserPrototype._parseIgnored = function() { + while (this.tn.peek() !== ';') + this.tn.next(); + this.tn.skip(";"); + }; + + /** + * Parses a message field. + * @param {!Object} msg Message definition + * @param {string} rule Field rule + * @param {string=} type Field type if already known (never known for maps) + * @returns {!Object} Field descriptor + * @private + */ + ParserPrototype._parseMessageField = function(msg, rule, type) { + if (!Lang.RULE.test(rule)) + throw Error("illegal message field rule: "+rule); + var fld = { + "rule": rule, + "type": "", + "name": "", + "options": {}, + "id": 0 + }; + var token; + if (rule === "map") { + + if (type) + throw Error("illegal type: " + type); + this.tn.skip('<'); + token = this.tn.next(); + if (!Lang.TYPE.test(token) && !Lang.TYPEREF.test(token)) + throw Error("illegal message field type: " + token); + fld["keytype"] = token; + this.tn.skip(','); + token = this.tn.next(); + if (!Lang.TYPE.test(token) && !Lang.TYPEREF.test(token)) + throw Error("illegal message field: " + token); + fld["type"] = token; + this.tn.skip('>'); + token = this.tn.next(); + if (!Lang.NAME.test(token)) + throw Error("illegal message field name: " + token); + fld["name"] = token; + this.tn.skip("="); + fld["id"] = mkId(this.tn.next()); + token = this.tn.peek(); + if (token === '[') + this._parseFieldOptions(fld); + this.tn.skip(";"); + + } else { + + type = typeof type !== 'undefined' ? type : this.tn.next(); + + if (type === "group") { + + // "A [legacy] group simply combines a nested message type and a field into a single declaration. In your + // code, you can treat this message just as if it had a Result type field called result (the latter name is + // converted to lower-case so that it does not conflict with the former)." + var grp = this._parseMessage(msg, fld); + if (!/^[A-Z]/.test(grp["name"])) + throw Error('illegal group name: '+grp["name"]); + fld["type"] = grp["name"]; + fld["name"] = grp["name"].toLowerCase(); + this.tn.omit(";"); + + } else { + + if (!Lang.TYPE.test(type) && !Lang.TYPEREF.test(type)) + throw Error("illegal message field type: " + type); + fld["type"] = type; + token = this.tn.next(); + if (!Lang.NAME.test(token)) + throw Error("illegal message field name: " + token); + fld["name"] = token; + this.tn.skip("="); + fld["id"] = mkId(this.tn.next()); + token = this.tn.peek(); + if (token === "[") + this._parseFieldOptions(fld); + this.tn.skip(";"); + + } + } + msg["fields"].push(fld); + return fld; + }; + + /** + * Parses a message oneof. + * @param {!Object} msg Message definition + * @private + */ + ParserPrototype._parseMessageOneOf = function(msg) { + var token = this.tn.next(); + if (!Lang.NAME.test(token)) + throw Error("illegal oneof name: "+token); + var name = token, + fld; + var fields = []; + this.tn.skip("{"); + while ((token = this.tn.next()) !== "}") { + fld = this._parseMessageField(msg, "optional", token); + fld["oneof"] = name; + fields.push(fld["id"]); + } + this.tn.omit(";"); + msg["oneofs"][name] = fields; + }; + + /** + * Parses a set of field option definitions. + * @param {!Object} fld Field definition + * @private + */ + ParserPrototype._parseFieldOptions = function(fld) { + this.tn.skip("["); + var token, + first = true; + while ((token = this.tn.peek()) !== ']') { + if (!first) + this.tn.skip(","); + this._parseOption(fld, true); + first = false; + } + this.tn.next(); + }; + + /** + * Parses an enum. + * @param {!Object} msg Message definition + * @private + */ + ParserPrototype._parseEnum = function(msg) { + var enm = { + "name": "", + "values": [], + "options": {} + }; + var token = this.tn.next(); + if (!Lang.NAME.test(token)) + throw Error("illegal name: "+token); + enm["name"] = token; + this.tn.skip("{"); + while ((token = this.tn.next()) !== '}') { + if (token === "option") + this._parseOption(enm); + else { + if (!Lang.NAME.test(token)) + throw Error("illegal name: "+token); + this.tn.skip("="); + var val = { + "name": token, + "id": mkId(this.tn.next(), true) + }; + token = this.tn.peek(); + if (token === "[") + this._parseFieldOptions({ "options": {} }); + this.tn.skip(";"); + enm["values"].push(val); + } + } + this.tn.omit(";"); + msg["enums"].push(enm); + }; + + /** + * Parses extension / reserved ranges. + * @returns {!Array.>} + * @private + */ + ParserPrototype._parseExtensionRanges = function() { + var ranges = []; + var token, + range, + value; + do { + range = []; + while (true) { + token = this.tn.next(); + switch (token) { + case "min": + value = ProtoBuf.ID_MIN; + break; + case "max": + value = ProtoBuf.ID_MAX; + break; + default: + value = mkNumber(token); + break; + } + range.push(value); + if (range.length === 2) + break; + if (this.tn.peek() !== "to") { + range.push(value); + break; + } + this.tn.next(); + } + ranges.push(range); + } while (this.tn.omit(",")); + this.tn.skip(";"); + return ranges; + }; + + /** + * Parses an extend block. + * @param {!Object} parent Parent object + * @private + */ + ParserPrototype._parseExtend = function(parent) { + var token = this.tn.next(); + if (!Lang.TYPEREF.test(token)) + throw Error("illegal extend reference: "+token); + var ext = { + "ref": token, + "fields": [] + }; + this.tn.skip("{"); + while ((token = this.tn.next()) !== '}') { + if (Lang.RULE.test(token)) + this._parseMessageField(ext, token); + else if (Lang.TYPEREF.test(token)) { + if (!this.proto3) + throw Error("illegal field rule: "+token); + this._parseMessageField(ext, "optional", token); + } else + throw Error("illegal extend token: "+token); + } + this.tn.omit(";"); + parent["messages"].push(ext); + return ext; + }; + + // ----- General ----- + + /** + * Returns a string representation of this parser. + * @returns {string} + */ + ParserPrototype.toString = function() { + return "Parser at line "+this.tn.line; + }; + + /** + * @alias ProtoBuf.DotProto.Parser + * @expose + */ + DotProto.Parser = Parser; + + return DotProto; + + })(ProtoBuf, ProtoBuf.Lang); + + /** + * @alias ProtoBuf.Reflect + * @expose + */ + ProtoBuf.Reflect = (function(ProtoBuf) { + "use strict"; + + /** + * Reflection types. + * @exports ProtoBuf.Reflect + * @namespace + */ + var Reflect = {}; + + /** + * Constructs a Reflect base class. + * @exports ProtoBuf.Reflect.T + * @constructor + * @abstract + * @param {!ProtoBuf.Builder} builder Builder reference + * @param {?ProtoBuf.Reflect.T} parent Parent object + * @param {string} name Object name + */ + var T = function(builder, parent, name) { + + /** + * Builder reference. + * @type {!ProtoBuf.Builder} + * @expose + */ + this.builder = builder; + + /** + * Parent object. + * @type {?ProtoBuf.Reflect.T} + * @expose + */ + this.parent = parent; + + /** + * Object name in namespace. + * @type {string} + * @expose + */ + this.name = name; + + /** + * Fully qualified class name + * @type {string} + * @expose + */ + this.className; + }; + + /** + * @alias ProtoBuf.Reflect.T.prototype + * @inner + */ + var TPrototype = T.prototype; + + /** + * Returns the fully qualified name of this object. + * @returns {string} Fully qualified name as of ".PATH.TO.THIS" + * @expose + */ + TPrototype.fqn = function() { + var name = this.name, + ptr = this; + do { + ptr = ptr.parent; + if (ptr == null) + break; + name = ptr.name+"."+name; + } while (true); + return name; + }; + + /** + * Returns a string representation of this Reflect object (its fully qualified name). + * @param {boolean=} includeClass Set to true to include the class name. Defaults to false. + * @return String representation + * @expose + */ + TPrototype.toString = function(includeClass) { + return (includeClass ? this.className + " " : "") + this.fqn(); + }; + + /** + * Builds this type. + * @throws {Error} If this type cannot be built directly + * @expose + */ + TPrototype.build = function() { + throw Error(this.toString(true)+" cannot be built directly"); + }; + + /** + * @alias ProtoBuf.Reflect.T + * @expose + */ + Reflect.T = T; + + /** + * Constructs a new Namespace. + * @exports ProtoBuf.Reflect.Namespace + * @param {!ProtoBuf.Builder} builder Builder reference + * @param {?ProtoBuf.Reflect.Namespace} parent Namespace parent + * @param {string} name Namespace name + * @param {Object.=} options Namespace options + * @param {string?} syntax The syntax level of this definition (e.g., proto3) + * @constructor + * @extends ProtoBuf.Reflect.T + */ + var Namespace = function(builder, parent, name, options, syntax) { + T.call(this, builder, parent, name); + + /** + * @override + */ + this.className = "Namespace"; + + /** + * Children inside the namespace. + * @type {!Array.} + */ + this.children = []; + + /** + * Options. + * @type {!Object.} + */ + this.options = options || {}; + + /** + * Syntax level (e.g., proto2 or proto3). + * @type {!string} + */ + this.syntax = syntax || "proto2"; + }; + + /** + * @alias ProtoBuf.Reflect.Namespace.prototype + * @inner + */ + var NamespacePrototype = Namespace.prototype = Object.create(T.prototype); + + /** + * Returns an array of the namespace's children. + * @param {ProtoBuf.Reflect.T=} type Filter type (returns instances of this type only). Defaults to null (all children). + * @return {Array.} + * @expose + */ + NamespacePrototype.getChildren = function(type) { + type = type || null; + if (type == null) + return this.children.slice(); + var children = []; + for (var i=0, k=this.children.length; i} qn Qualified name to resolve + * @param {boolean=} excludeNonNamespace Excludes non-namespace types, defaults to `false` + * @return {?ProtoBuf.Reflect.Namespace} The resolved type or null if not found + * @expose + */ + NamespacePrototype.resolve = function(qn, excludeNonNamespace) { + var part = typeof qn === 'string' ? qn.split(".") : qn, + ptr = this, + i = 0; + if (part[i] === "") { // Fully qualified name, e.g. ".My.Message' + while (ptr.parent !== null) + ptr = ptr.parent; + i++; + } + var child; + do { + do { + if (!(ptr instanceof Reflect.Namespace)) { + ptr = null; + break; + } + child = ptr.getChild(part[i]); + if (!child || !(child instanceof Reflect.T) || (excludeNonNamespace && !(child instanceof Reflect.Namespace))) { + ptr = null; + break; + } + ptr = child; i++; + } while (i < part.length); + if (ptr != null) + break; // Found + // Else search the parent + if (this.parent !== null) + return this.parent.resolve(qn, excludeNonNamespace); + } while (ptr != null); + return ptr; + }; + + /** + * Determines the shortest qualified name of the specified type, if any, relative to this namespace. + * @param {!ProtoBuf.Reflect.T} t Reflection type + * @returns {string} The shortest qualified name or, if there is none, the fqn + * @expose + */ + NamespacePrototype.qn = function(t) { + var part = [], ptr = t; + do { + part.unshift(ptr.name); + ptr = ptr.parent; + } while (ptr !== null); + for (var len=1; len <= part.length; len++) { + var qn = part.slice(part.length-len); + if (t === this.resolve(qn, t instanceof Reflect.Namespace)) + return qn.join("."); + } + return t.fqn(); + }; + + /** + * Builds the namespace and returns the runtime counterpart. + * @return {Object.} Runtime namespace + * @expose + */ + NamespacePrototype.build = function() { + /** @dict */ + var ns = {}; + var children = this.children; + for (var i=0, k=children.length, child; i} + */ + NamespacePrototype.buildOpt = function() { + var opt = {}, + keys = Object.keys(this.options); + for (var i=0, k=keys.length; i}null} Option value or NULL if there is no such option + */ + NamespacePrototype.getOption = function(name) { + if (typeof name === 'undefined') + return this.options; + return typeof this.options[name] !== 'undefined' ? this.options[name] : null; + }; + + /** + * @alias ProtoBuf.Reflect.Namespace + * @expose + */ + Reflect.Namespace = Namespace; + + /** + * Constructs a new Element implementation that checks and converts values for a + * particular field type, as appropriate. + * + * An Element represents a single value: either the value of a singular field, + * or a value contained in one entry of a repeated field or map field. This + * class does not implement these higher-level concepts; it only encapsulates + * the low-level typechecking and conversion. + * + * @exports ProtoBuf.Reflect.Element + * @param {{name: string, wireType: number}} type Resolved data type + * @param {ProtoBuf.Reflect.T|null} resolvedType Resolved type, if relevant + * (e.g. submessage field). + * @param {boolean} isMapKey Is this element a Map key? The value will be + * converted to string form if so. + * @param {string} syntax Syntax level of defining message type, e.g., + * proto2 or proto3. + * @constructor + */ + var Element = function(type, resolvedType, isMapKey, syntax) { + + /** + * Element type, as a string (e.g., int32). + * @type {{name: string, wireType: number}} + */ + this.type = type; + + /** + * Element type reference to submessage or enum definition, if needed. + * @type {ProtoBuf.Reflect.T|null} + */ + this.resolvedType = resolvedType; + + /** + * Element is a map key. + * @type {boolean} + */ + this.isMapKey = isMapKey; + + /** + * Syntax level of defining message type, e.g., proto2 or proto3. + * @type {string} + */ + this.syntax = syntax; + + if (isMapKey && ProtoBuf.MAP_KEY_TYPES.indexOf(type) < 0) + throw Error("Invalid map key type: " + type.name); + }; + + var ElementPrototype = Element.prototype; + + /** + * Obtains a (new) default value for the specified type. + * @param type {string|{name: string, wireType: number}} Field type + * @returns {*} Default value + * @inner + */ + function mkDefault(type) { + if (typeof type === 'string') + type = ProtoBuf.TYPES[type]; + if (typeof type.defaultValue === 'undefined') + throw Error("default value for type "+type.name+" is not supported"); + if (type == ProtoBuf.TYPES["bytes"]) + return new ByteBuffer(0); + return type.defaultValue; + } + + /** + * Returns the default value for this field in proto3. + * @function + * @param type {string|{name: string, wireType: number}} the field type + * @returns {*} Default value + */ + Element.defaultFieldValue = mkDefault; + + /** + * Makes a Long from a value. + * @param {{low: number, high: number, unsigned: boolean}|string|number} value Value + * @param {boolean=} unsigned Whether unsigned or not, defaults to reuse it from Long-like objects or to signed for + * strings and numbers + * @returns {!Long} + * @throws {Error} If the value cannot be converted to a Long + * @inner + */ + function mkLong(value, unsigned) { + if (value && typeof value.low === 'number' && typeof value.high === 'number' && typeof value.unsigned === 'boolean' + && value.low === value.low && value.high === value.high) + return new ProtoBuf.Long(value.low, value.high, typeof unsigned === 'undefined' ? value.unsigned : unsigned); + if (typeof value === 'string') + return ProtoBuf.Long.fromString(value, unsigned || false, 10); + if (typeof value === 'number') + return ProtoBuf.Long.fromNumber(value, unsigned || false); + throw Error("not convertible to Long"); + } + + /** + * Checks if the given value can be set for an element of this type (singular + * field or one element of a repeated field or map). + * @param {*} value Value to check + * @return {*} Verified, maybe adjusted, value + * @throws {Error} If the value cannot be verified for this element slot + * @expose + */ + ElementPrototype.verifyValue = function(value) { + var self = this; + function fail(val, msg) { + throw Error("Illegal value for "+self.toString(true)+" of type "+self.type.name+": "+val+" ("+msg+")"); + } + switch (this.type) { + // Signed 32bit + case ProtoBuf.TYPES["int32"]: + case ProtoBuf.TYPES["sint32"]: + case ProtoBuf.TYPES["sfixed32"]: + // Account for !NaN: value === value + if (typeof value !== 'number' || (value === value && value % 1 !== 0)) + fail(typeof value, "not an integer"); + return value > 4294967295 ? value | 0 : value; + + // Unsigned 32bit + case ProtoBuf.TYPES["uint32"]: + case ProtoBuf.TYPES["fixed32"]: + if (typeof value !== 'number' || (value === value && value % 1 !== 0)) + fail(typeof value, "not an integer"); + return value < 0 ? value >>> 0 : value; + + // Signed 64bit + case ProtoBuf.TYPES["int64"]: + case ProtoBuf.TYPES["sint64"]: + case ProtoBuf.TYPES["sfixed64"]: { + if (ProtoBuf.Long) + try { + return mkLong(value, false); + } catch (e) { + fail(typeof value, e.message); + } + else + fail(typeof value, "requires Long.js"); + } + + // Unsigned 64bit + case ProtoBuf.TYPES["uint64"]: + case ProtoBuf.TYPES["fixed64"]: { + if (ProtoBuf.Long) + try { + return mkLong(value, true); + } catch (e) { + fail(typeof value, e.message); + } + else + fail(typeof value, "requires Long.js"); + } + + // Bool + case ProtoBuf.TYPES["bool"]: + if (typeof value !== 'boolean') + fail(typeof value, "not a boolean"); + return value; + + // Float + case ProtoBuf.TYPES["float"]: + case ProtoBuf.TYPES["double"]: + if (typeof value !== 'number') + fail(typeof value, "not a number"); + return value; + + // Length-delimited string + case ProtoBuf.TYPES["string"]: + if (typeof value !== 'string' && !(value && value instanceof String)) + fail(typeof value, "not a string"); + return ""+value; // Convert String object to string + + // Length-delimited bytes + case ProtoBuf.TYPES["bytes"]: + if (ByteBuffer.isByteBuffer(value)) + return value; + return ByteBuffer.wrap(value, "base64"); + + // Constant enum value + case ProtoBuf.TYPES["enum"]: { + var values = this.resolvedType.getChildren(ProtoBuf.Reflect.Enum.Value); + for (i=0; i 4294967295 || value < 0) + fail(typeof value, "not in range for uint32") + return value; + } else { + // proto2 requires enum values to be valid. + fail(value, "not a valid enum value"); + } + } + // Embedded message + case ProtoBuf.TYPES["group"]: + case ProtoBuf.TYPES["message"]: { + if (!value || typeof value !== 'object') + fail(typeof value, "object expected"); + if (value instanceof this.resolvedType.clazz) + return value; + if (value instanceof ProtoBuf.Builder.Message) { + // Mismatched type: Convert to object (see: https://github.com/dcodeIO/ProtoBuf.js/issues/180) + var obj = {}; + for (var i in value) + if (value.hasOwnProperty(i)) + obj[i] = value[i]; + value = obj; + } + // Else let's try to construct one from a key-value object + return new (this.resolvedType.clazz)(value); // May throw for a hundred of reasons + } + } + + // We should never end here + throw Error("[INTERNAL] Illegal value for "+this.toString(true)+": "+value+" (undefined type "+this.type+")"); + }; + + /** + * Calculates the byte length of an element on the wire. + * @param {number} id Field number + * @param {*} value Field value + * @returns {number} Byte length + * @throws {Error} If the value cannot be calculated + * @expose + */ + ElementPrototype.calculateLength = function(id, value) { + if (value === null) return 0; // Nothing to encode + // Tag has already been written + var n; + switch (this.type) { + case ProtoBuf.TYPES["int32"]: + return value < 0 ? ByteBuffer.calculateVarint64(value) : ByteBuffer.calculateVarint32(value); + case ProtoBuf.TYPES["uint32"]: + return ByteBuffer.calculateVarint32(value); + case ProtoBuf.TYPES["sint32"]: + return ByteBuffer.calculateVarint32(ByteBuffer.zigZagEncode32(value)); + case ProtoBuf.TYPES["fixed32"]: + case ProtoBuf.TYPES["sfixed32"]: + case ProtoBuf.TYPES["float"]: + return 4; + case ProtoBuf.TYPES["int64"]: + case ProtoBuf.TYPES["uint64"]: + return ByteBuffer.calculateVarint64(value); + case ProtoBuf.TYPES["sint64"]: + return ByteBuffer.calculateVarint64(ByteBuffer.zigZagEncode64(value)); + case ProtoBuf.TYPES["fixed64"]: + case ProtoBuf.TYPES["sfixed64"]: + return 8; + case ProtoBuf.TYPES["bool"]: + return 1; + case ProtoBuf.TYPES["enum"]: + return ByteBuffer.calculateVarint32(value); + case ProtoBuf.TYPES["double"]: + return 8; + case ProtoBuf.TYPES["string"]: + n = ByteBuffer.calculateUTF8Bytes(value); + return ByteBuffer.calculateVarint32(n) + n; + case ProtoBuf.TYPES["bytes"]: + if (value.remaining() < 0) + throw Error("Illegal value for "+this.toString(true)+": "+value.remaining()+" bytes remaining"); + return ByteBuffer.calculateVarint32(value.remaining()) + value.remaining(); + case ProtoBuf.TYPES["message"]: + n = this.resolvedType.calculate(value); + return ByteBuffer.calculateVarint32(n) + n; + case ProtoBuf.TYPES["group"]: + n = this.resolvedType.calculate(value); + return n + ByteBuffer.calculateVarint32((id << 3) | ProtoBuf.WIRE_TYPES.ENDGROUP); + } + // We should never end here + throw Error("[INTERNAL] Illegal value to encode in "+this.toString(true)+": "+value+" (unknown type)"); + }; + + /** + * Encodes a value to the specified buffer. Does not encode the key. + * @param {number} id Field number + * @param {*} value Field value + * @param {ByteBuffer} buffer ByteBuffer to encode to + * @return {ByteBuffer} The ByteBuffer for chaining + * @throws {Error} If the value cannot be encoded + * @expose + */ + ElementPrototype.encodeValue = function(id, value, buffer) { + if (value === null) return buffer; // Nothing to encode + // Tag has already been written + + switch (this.type) { + // 32bit signed varint + case ProtoBuf.TYPES["int32"]: + // "If you use int32 or int64 as the type for a negative number, the resulting varint is always ten bytes + // long – it is, effectively, treated like a very large unsigned integer." (see #122) + if (value < 0) + buffer.writeVarint64(value); + else + buffer.writeVarint32(value); + break; + + // 32bit unsigned varint + case ProtoBuf.TYPES["uint32"]: + buffer.writeVarint32(value); + break; + + // 32bit varint zig-zag + case ProtoBuf.TYPES["sint32"]: + buffer.writeVarint32ZigZag(value); + break; + + // Fixed unsigned 32bit + case ProtoBuf.TYPES["fixed32"]: + buffer.writeUint32(value); + break; + + // Fixed signed 32bit + case ProtoBuf.TYPES["sfixed32"]: + buffer.writeInt32(value); + break; + + // 64bit varint as-is + case ProtoBuf.TYPES["int64"]: + case ProtoBuf.TYPES["uint64"]: + buffer.writeVarint64(value); // throws + break; + + // 64bit varint zig-zag + case ProtoBuf.TYPES["sint64"]: + buffer.writeVarint64ZigZag(value); // throws + break; + + // Fixed unsigned 64bit + case ProtoBuf.TYPES["fixed64"]: + buffer.writeUint64(value); // throws + break; + + // Fixed signed 64bit + case ProtoBuf.TYPES["sfixed64"]: + buffer.writeInt64(value); // throws + break; + + // Bool + case ProtoBuf.TYPES["bool"]: + if (typeof value === 'string') + buffer.writeVarint32(value.toLowerCase() === 'false' ? 0 : !!value); + else + buffer.writeVarint32(value ? 1 : 0); + break; + + // Constant enum value + case ProtoBuf.TYPES["enum"]: + buffer.writeVarint32(value); + break; + + // 32bit float + case ProtoBuf.TYPES["float"]: + buffer.writeFloat32(value); + break; + + // 64bit float + case ProtoBuf.TYPES["double"]: + buffer.writeFloat64(value); + break; + + // Length-delimited string + case ProtoBuf.TYPES["string"]: + buffer.writeVString(value); + break; + + // Length-delimited bytes + case ProtoBuf.TYPES["bytes"]: + if (value.remaining() < 0) + throw Error("Illegal value for "+this.toString(true)+": "+value.remaining()+" bytes remaining"); + var prevOffset = value.offset; + buffer.writeVarint32(value.remaining()); + buffer.append(value); + value.offset = prevOffset; + break; + + // Embedded message + case ProtoBuf.TYPES["message"]: + var bb = new ByteBuffer().LE(); + this.resolvedType.encode(value, bb); + buffer.writeVarint32(bb.offset); + buffer.append(bb.flip()); + break; + + // Legacy group + case ProtoBuf.TYPES["group"]: + this.resolvedType.encode(value, buffer); + buffer.writeVarint32((id << 3) | ProtoBuf.WIRE_TYPES.ENDGROUP); + break; + + default: + // We should never end here + throw Error("[INTERNAL] Illegal value to encode in "+this.toString(true)+": "+value+" (unknown type)"); + } + return buffer; + }; + + /** + * Decode one element value from the specified buffer. + * @param {ByteBuffer} buffer ByteBuffer to decode from + * @param {number} wireType The field wire type + * @param {number} id The field number + * @return {*} Decoded value + * @throws {Error} If the field cannot be decoded + * @expose + */ + ElementPrototype.decode = function(buffer, wireType, id) { + if (wireType != this.type.wireType) + throw Error("Unexpected wire type for element"); + + var value, nBytes; + switch (this.type) { + // 32bit signed varint + case ProtoBuf.TYPES["int32"]: + return buffer.readVarint32() | 0; + + // 32bit unsigned varint + case ProtoBuf.TYPES["uint32"]: + return buffer.readVarint32() >>> 0; + + // 32bit signed varint zig-zag + case ProtoBuf.TYPES["sint32"]: + return buffer.readVarint32ZigZag() | 0; + + // Fixed 32bit unsigned + case ProtoBuf.TYPES["fixed32"]: + return buffer.readUint32() >>> 0; + + case ProtoBuf.TYPES["sfixed32"]: + return buffer.readInt32() | 0; + + // 64bit signed varint + case ProtoBuf.TYPES["int64"]: + return buffer.readVarint64(); + + // 64bit unsigned varint + case ProtoBuf.TYPES["uint64"]: + return buffer.readVarint64().toUnsigned(); + + // 64bit signed varint zig-zag + case ProtoBuf.TYPES["sint64"]: + return buffer.readVarint64ZigZag(); + + // Fixed 64bit unsigned + case ProtoBuf.TYPES["fixed64"]: + return buffer.readUint64(); + + // Fixed 64bit signed + case ProtoBuf.TYPES["sfixed64"]: + return buffer.readInt64(); + + // Bool varint + case ProtoBuf.TYPES["bool"]: + return !!buffer.readVarint32(); + + // Constant enum value (varint) + case ProtoBuf.TYPES["enum"]: + // The following Builder.Message#set will already throw + return buffer.readVarint32(); + + // 32bit float + case ProtoBuf.TYPES["float"]: + return buffer.readFloat(); + + // 64bit float + case ProtoBuf.TYPES["double"]: + return buffer.readDouble(); + + // Length-delimited string + case ProtoBuf.TYPES["string"]: + return buffer.readVString(); + + // Length-delimited bytes + case ProtoBuf.TYPES["bytes"]: { + nBytes = buffer.readVarint32(); + if (buffer.remaining() < nBytes) + throw Error("Illegal number of bytes for "+this.toString(true)+": "+nBytes+" required but got only "+buffer.remaining()); + value = buffer.clone(); // Offset already set + value.limit = value.offset+nBytes; + buffer.offset += nBytes; + return value; + } + + // Length-delimited embedded message + case ProtoBuf.TYPES["message"]: { + nBytes = buffer.readVarint32(); + return this.resolvedType.decode(buffer, nBytes); + } + + // Legacy group + case ProtoBuf.TYPES["group"]: + return this.resolvedType.decode(buffer, -1, id); + } + + // We should never end here + throw Error("[INTERNAL] Illegal decode type"); + }; + + /** + * Converts a value from a string to the canonical element type. + * + * Legal only when isMapKey is true. + * + * @param {string} str The string value + * @returns {*} The value + */ + ElementPrototype.valueFromString = function(str) { + if (!this.isMapKey) { + throw Error("valueFromString() called on non-map-key element"); + } + + switch (this.type) { + case ProtoBuf.TYPES["int32"]: + case ProtoBuf.TYPES["sint32"]: + case ProtoBuf.TYPES["sfixed32"]: + case ProtoBuf.TYPES["uint32"]: + case ProtoBuf.TYPES["fixed32"]: + return this.verifyValue(parseInt(str)); + + case ProtoBuf.TYPES["int64"]: + case ProtoBuf.TYPES["sint64"]: + case ProtoBuf.TYPES["sfixed64"]: + case ProtoBuf.TYPES["uint64"]: + case ProtoBuf.TYPES["fixed64"]: + // Long-based fields support conversions from string already. + return this.verifyValue(str); + + case ProtoBuf.TYPES["bool"]: + return str === "true"; + + case ProtoBuf.TYPES["string"]: + return this.verifyValue(str); + + case ProtoBuf.TYPES["bytes"]: + return ByteBuffer.fromBinary(str); + } + }; + + /** + * Converts a value from the canonical element type to a string. + * + * It should be the case that `valueFromString(valueToString(val))` returns + * a value equivalent to `verifyValue(val)` for every legal value of `val` + * according to this element type. + * + * This may be used when the element must be stored or used as a string, + * e.g., as a map key on an Object. + * + * Legal only when isMapKey is true. + * + * @param {*} val The value + * @returns {string} The string form of the value. + */ + ElementPrototype.valueToString = function(value) { + if (!this.isMapKey) { + throw Error("valueToString() called on non-map-key element"); + } + + if (this.type === ProtoBuf.TYPES["bytes"]) { + return value.toString("binary"); + } else { + return value.toString(); + } + }; + + /** + * @alias ProtoBuf.Reflect.Element + * @expose + */ + Reflect.Element = Element; + + /** + * Constructs a new Message. + * @exports ProtoBuf.Reflect.Message + * @param {!ProtoBuf.Builder} builder Builder reference + * @param {!ProtoBuf.Reflect.Namespace} parent Parent message or namespace + * @param {string} name Message name + * @param {Object.=} options Message options + * @param {boolean=} isGroup `true` if this is a legacy group + * @param {string?} syntax The syntax level of this definition (e.g., proto3) + * @constructor + * @extends ProtoBuf.Reflect.Namespace + */ + var Message = function(builder, parent, name, options, isGroup, syntax) { + Namespace.call(this, builder, parent, name, options, syntax); + + /** + * @override + */ + this.className = "Message"; + + /** + * Extensions range. + * @type {!Array.|undefined} + * @expose + */ + this.extensions = undefined; + + /** + * Runtime message class. + * @type {?function(new:ProtoBuf.Builder.Message)} + * @expose + */ + this.clazz = null; + + /** + * Whether this is a legacy group or not. + * @type {boolean} + * @expose + */ + this.isGroup = !!isGroup; + + // The following cached collections are used to efficiently iterate over or look up fields when decoding. + + /** + * Cached fields. + * @type {?Array.} + * @private + */ + this._fields = null; + + /** + * Cached fields by id. + * @type {?Object.} + * @private + */ + this._fieldsById = null; + + /** + * Cached fields by name. + * @type {?Object.} + * @private + */ + this._fieldsByName = null; + }; + + /** + * @alias ProtoBuf.Reflect.Message.prototype + * @inner + */ + var MessagePrototype = Message.prototype = Object.create(Namespace.prototype); + + /** + * Builds the message and returns the runtime counterpart, which is a fully functional class. + * @see ProtoBuf.Builder.Message + * @param {boolean=} rebuild Whether to rebuild or not, defaults to false + * @return {ProtoBuf.Reflect.Message} Message class + * @throws {Error} If the message cannot be built + * @expose + */ + MessagePrototype.build = function(rebuild) { + if (this.clazz && !rebuild) + return this.clazz; + + // Create the runtime Message class in its own scope + var clazz = (function(ProtoBuf, T) { + + var fields = T.getChildren(ProtoBuf.Reflect.Message.Field), + oneofs = T.getChildren(ProtoBuf.Reflect.Message.OneOf); + + /** + * Constructs a new runtime Message. + * @name ProtoBuf.Builder.Message + * @class Barebone of all runtime messages. + * @param {!Object.|string} values Preset values + * @param {...string} var_args + * @constructor + * @throws {Error} If the message cannot be created + */ + var Message = function(values, var_args) { + ProtoBuf.Builder.Message.call(this); + + // Create virtual oneof properties + for (var i=0, k=oneofs.length; i 0) { + var value; + // Set field values from a values object + if (arguments.length === 1 && values !== null && typeof values === 'object' && + /* not _another_ Message */ (typeof values.encode !== 'function' || values instanceof Message) && + /* not a repeated field */ !Array.isArray(values) && + /* not a Map */ !(values instanceof ProtoBuf.Map) && + /* not a ByteBuffer */ !ByteBuffer.isByteBuffer(values) && + /* not an ArrayBuffer */ !(values instanceof ArrayBuffer) && + /* not a Long */ !(ProtoBuf.Long && values instanceof ProtoBuf.Long)) { + this.$set(values); + } else // Set field values from arguments, in declaration order + for (i=0, k=arguments.length; i} keyOrObj String key or plain object holding multiple values + * @param {(*|boolean)=} value Value to set if key is a string, otherwise omitted + * @param {boolean=} noAssert Whether to not assert for an actual field / proper value type, defaults to `false` + * @returns {!ProtoBuf.Builder.Message} this + * @throws {Error} If the value cannot be set + * @expose + */ + MessagePrototype.set = function(keyOrObj, value, noAssert) { + if (keyOrObj && typeof keyOrObj === 'object') { + noAssert = value; + for (var ikey in keyOrObj) + if (keyOrObj.hasOwnProperty(ikey) && typeof (value = keyOrObj[ikey]) !== 'undefined') + this.$set(ikey, value, noAssert); + return this; + } + var field = T._fieldsByName[keyOrObj]; + if (!noAssert) { + if (!field) + throw Error(this+"#"+keyOrObj+" is not a field: undefined"); + if (!(field instanceof ProtoBuf.Reflect.Message.Field)) + throw Error(this+"#"+keyOrObj+" is not a field: "+field.toString(true)); + this[field.name] = (value = field.verifyValue(value)); // May throw + } else + this[keyOrObj] = value; + if (field && field.oneof) { // Field is part of an OneOf (not a virtual OneOf field) + var currentField = this[field.oneof.name]; // Virtual field references currently set field + if (value !== null) { + if (currentField !== null && currentField !== field.name) + this[currentField] = null; // Clear currently set field + this[field.oneof.name] = field.name; // Point virtual field at this field + } else if (/* value === null && */currentField === keyOrObj) + this[field.oneof.name] = null; // Clear virtual field (current field explicitly cleared) + } + return this; + }; + + /** + * Sets a field's value. This is an alias for [@link ProtoBuf.Builder.Message#set}. + * @name ProtoBuf.Builder.Message#$set + * @function + * @param {string|!Object.} keyOrObj String key or plain object holding multiple values + * @param {(*|boolean)=} value Value to set if key is a string, otherwise omitted + * @param {boolean=} noAssert Whether to not assert the value, defaults to `false` + * @throws {Error} If the value cannot be set + * @expose + */ + MessagePrototype.$set = MessagePrototype.set; + + /** + * Gets a field's value. + * @name ProtoBuf.Builder.Message#get + * @function + * @param {string} key Key + * @param {boolean=} noAssert Whether to not assert for an actual field, defaults to `false` + * @return {*} Value + * @throws {Error} If there is no such field + * @expose + */ + MessagePrototype.get = function(key, noAssert) { + if (noAssert) + return this[key]; + var field = T._fieldsByName[key]; + if (!field || !(field instanceof ProtoBuf.Reflect.Message.Field)) + throw Error(this+"#"+key+" is not a field: undefined"); + if (!(field instanceof ProtoBuf.Reflect.Message.Field)) + throw Error(this+"#"+key+" is not a field: "+field.toString(true)); + return this[field.name]; + }; + + /** + * Gets a field's value. This is an alias for {@link ProtoBuf.Builder.Message#$get}. + * @name ProtoBuf.Builder.Message#$get + * @function + * @param {string} key Key + * @return {*} Value + * @throws {Error} If there is no such field + * @expose + */ + MessagePrototype.$get = MessagePrototype.get; + + // Getters and setters + + for (var i=0; i} data Data payload + * @param {(!ByteBuffer|boolean)=} buffer ByteBuffer to encode to. Will create a new one and flip it if omitted. + * @param {boolean=} noVerify Whether to not verify field values, defaults to `false` + * @return {!ByteBuffer} Encoded message as a ByteBuffer + * @expose + */ + Message.encode = function(data, buffer, noVerify) { + return new Message(data).encode(buffer, noVerify); + }; + + /** + * Calculates the byte length of the message. + * @name ProtoBuf.Builder.Message#calculate + * @function + * @returns {number} Byte length + * @throws {Error} If the message cannot be calculated or if required fields are missing. + * @expose + */ + MessagePrototype.calculate = function() { + return T.calculate(this); + }; + + /** + * Encodes the varint32 length-delimited message. + * @name ProtoBuf.Builder.Message#encodeDelimited + * @function + * @param {(!ByteBuffer|boolean)=} buffer ByteBuffer to encode to. Will create a new one and flip it if omitted. + * @param {boolean=} noVerify Whether to not verify field values, defaults to `false` + * @return {!ByteBuffer} Encoded message as a ByteBuffer + * @throws {Error} If the message cannot be encoded or if required fields are missing. The later still + * returns the encoded ByteBuffer in the `encoded` property on the error. + * @expose + */ + MessagePrototype.encodeDelimited = function(buffer, noVerify) { + var isNew = false; + if (!buffer) + buffer = new ByteBuffer(), + isNew = true; + var enc = new ByteBuffer().LE(); + T.encode(this, enc, noVerify).flip(); + buffer.writeVarint32(enc.remaining()); + buffer.append(enc); + return isNew ? buffer.flip() : buffer; + }; + + /** + * Directly encodes the message to an ArrayBuffer. + * @name ProtoBuf.Builder.Message#encodeAB + * @function + * @return {ArrayBuffer} Encoded message as ArrayBuffer + * @throws {Error} If the message cannot be encoded or if required fields are missing. The later still + * returns the encoded ArrayBuffer in the `encoded` property on the error. + * @expose + */ + MessagePrototype.encodeAB = function() { + try { + return this.encode().toArrayBuffer(); + } catch (e) { + if (e["encoded"]) e["encoded"] = e["encoded"].toArrayBuffer(); + throw(e); + } + }; + + /** + * Returns the message as an ArrayBuffer. This is an alias for {@link ProtoBuf.Builder.Message#encodeAB}. + * @name ProtoBuf.Builder.Message#toArrayBuffer + * @function + * @return {ArrayBuffer} Encoded message as ArrayBuffer + * @throws {Error} If the message cannot be encoded or if required fields are missing. The later still + * returns the encoded ArrayBuffer in the `encoded` property on the error. + * @expose + */ + MessagePrototype.toArrayBuffer = MessagePrototype.encodeAB; + + /** + * Directly encodes the message to a node Buffer. + * @name ProtoBuf.Builder.Message#encodeNB + * @function + * @return {!Buffer} + * @throws {Error} If the message cannot be encoded, not running under node.js or if required fields are + * missing. The later still returns the encoded node Buffer in the `encoded` property on the error. + * @expose + */ + MessagePrototype.encodeNB = function() { + try { + return this.encode().toBuffer(); + } catch (e) { + if (e["encoded"]) e["encoded"] = e["encoded"].toBuffer(); + throw(e); + } + }; + + /** + * Returns the message as a node Buffer. This is an alias for {@link ProtoBuf.Builder.Message#encodeNB}. + * @name ProtoBuf.Builder.Message#toBuffer + * @function + * @return {!Buffer} + * @throws {Error} If the message cannot be encoded or if required fields are missing. The later still + * returns the encoded node Buffer in the `encoded` property on the error. + * @expose + */ + MessagePrototype.toBuffer = MessagePrototype.encodeNB; + + /** + * Directly encodes the message to a base64 encoded string. + * @name ProtoBuf.Builder.Message#encode64 + * @function + * @return {string} Base64 encoded string + * @throws {Error} If the underlying buffer cannot be encoded or if required fields are missing. The later + * still returns the encoded base64 string in the `encoded` property on the error. + * @expose + */ + MessagePrototype.encode64 = function() { + try { + return this.encode().toBase64(); + } catch (e) { + if (e["encoded"]) e["encoded"] = e["encoded"].toBase64(); + throw(e); + } + }; + + /** + * Returns the message as a base64 encoded string. This is an alias for {@link ProtoBuf.Builder.Message#encode64}. + * @name ProtoBuf.Builder.Message#toBase64 + * @function + * @return {string} Base64 encoded string + * @throws {Error} If the message cannot be encoded or if required fields are missing. The later still + * returns the encoded base64 string in the `encoded` property on the error. + * @expose + */ + MessagePrototype.toBase64 = MessagePrototype.encode64; + + /** + * Directly encodes the message to a hex encoded string. + * @name ProtoBuf.Builder.Message#encodeHex + * @function + * @return {string} Hex encoded string + * @throws {Error} If the underlying buffer cannot be encoded or if required fields are missing. The later + * still returns the encoded hex string in the `encoded` property on the error. + * @expose + */ + MessagePrototype.encodeHex = function() { + try { + return this.encode().toHex(); + } catch (e) { + if (e["encoded"]) e["encoded"] = e["encoded"].toHex(); + throw(e); + } + }; + + /** + * Returns the message as a hex encoded string. This is an alias for {@link ProtoBuf.Builder.Message#encodeHex}. + * @name ProtoBuf.Builder.Message#toHex + * @function + * @return {string} Hex encoded string + * @throws {Error} If the message cannot be encoded or if required fields are missing. The later still + * returns the encoded hex string in the `encoded` property on the error. + * @expose + */ + MessagePrototype.toHex = MessagePrototype.encodeHex; + + /** + * Clones a message object or field value to a raw object. + * @param {*} obj Object to clone + * @param {boolean} binaryAsBase64 Whether to include binary data as base64 strings or as a buffer otherwise + * @param {boolean} longsAsStrings Whether to encode longs as strings + * @param {!ProtoBuf.Reflect.T=} resolvedType The resolved field type if a field + * @returns {*} Cloned object + * @inner + */ + function cloneRaw(obj, binaryAsBase64, longsAsStrings, resolvedType) { + if (obj === null || typeof obj !== 'object') { + // Convert enum values to their respective names + if (resolvedType && resolvedType instanceof ProtoBuf.Reflect.Enum) { + var name = ProtoBuf.Reflect.Enum.getName(resolvedType.object, obj); + if (name !== null) + return name; + } + // Pass-through string, number, boolean, null... + return obj; + } + // Convert ByteBuffers to raw buffer or strings + if (ByteBuffer.isByteBuffer(obj)) + return binaryAsBase64 ? obj.toBase64() : obj.toBuffer(); + // Convert Longs to proper objects or strings + if (ProtoBuf.Long.isLong(obj)) + return longsAsStrings ? obj.toString() : ProtoBuf.Long.fromValue(obj); + var clone; + // Clone arrays + if (Array.isArray(obj)) { + clone = []; + obj.forEach(function(v, k) { + clone[k] = cloneRaw(v, binaryAsBase64, longsAsStrings, resolvedType); + }); + return clone; + } + clone = {}; + // Convert maps to objects + if (obj instanceof ProtoBuf.Map) { + var it = obj.entries(); + for (var e = it.next(); !e.done; e = it.next()) + clone[obj.keyElem.valueToString(e.value[0])] = cloneRaw(e.value[1], binaryAsBase64, longsAsStrings, obj.valueElem.resolvedType); + return clone; + } + // Everything else is a non-null object + var type = obj.$type, + field = undefined; + for (var i in obj) + if (obj.hasOwnProperty(i)) { + if (type && (field = type.getChild(i))) + clone[i] = cloneRaw(obj[i], binaryAsBase64, longsAsStrings, field.resolvedType); + else + clone[i] = cloneRaw(obj[i], binaryAsBase64, longsAsStrings); + } + return clone; + } + + /** + * Returns the message's raw payload. + * @param {boolean=} binaryAsBase64 Whether to include binary data as base64 strings instead of Buffers, defaults to `false` + * @param {boolean} longsAsStrings Whether to encode longs as strings + * @returns {Object.} Raw payload + * @expose + */ + MessagePrototype.toRaw = function(binaryAsBase64, longsAsStrings) { + return cloneRaw(this, !!binaryAsBase64, !!longsAsStrings, this.$type); + }; + + /** + * Encodes a message to JSON. + * @returns {string} JSON string + * @expose + */ + MessagePrototype.encodeJSON = function() { + return JSON.stringify( + cloneRaw(this, + /* binary-as-base64 */ true, + /* longs-as-strings */ true, + this.$type + ) + ); + }; + + /** + * Decodes a message from the specified buffer or string. + * @name ProtoBuf.Builder.Message.decode + * @function + * @param {!ByteBuffer|!ArrayBuffer|!Buffer|string} buffer Buffer to decode from + * @param {(number|string)=} length Message length. Defaults to decode all the remainig data. + * @param {string=} enc Encoding if buffer is a string: hex, utf8 (not recommended), defaults to base64 + * @return {!ProtoBuf.Builder.Message} Decoded message + * @throws {Error} If the message cannot be decoded or if required fields are missing. The later still + * returns the decoded message with missing fields in the `decoded` property on the error. + * @expose + * @see ProtoBuf.Builder.Message.decode64 + * @see ProtoBuf.Builder.Message.decodeHex + */ + Message.decode = function(buffer, length, enc) { + if (typeof length === 'string') + enc = length, + length = -1; + if (typeof buffer === 'string') + buffer = ByteBuffer.wrap(buffer, enc ? enc : "base64"); + buffer = ByteBuffer.isByteBuffer(buffer) ? buffer : ByteBuffer.wrap(buffer); // May throw + var le = buffer.littleEndian; + try { + var msg = T.decode(buffer.LE()); + buffer.LE(le); + return msg; + } catch (e) { + buffer.LE(le); + throw(e); + } + }; + + /** + * Decodes a varint32 length-delimited message from the specified buffer or string. + * @name ProtoBuf.Builder.Message.decodeDelimited + * @function + * @param {!ByteBuffer|!ArrayBuffer|!Buffer|string} buffer Buffer to decode from + * @param {string=} enc Encoding if buffer is a string: hex, utf8 (not recommended), defaults to base64 + * @return {ProtoBuf.Builder.Message} Decoded message or `null` if not enough bytes are available yet + * @throws {Error} If the message cannot be decoded or if required fields are missing. The later still + * returns the decoded message with missing fields in the `decoded` property on the error. + * @expose + */ + Message.decodeDelimited = function(buffer, enc) { + if (typeof buffer === 'string') + buffer = ByteBuffer.wrap(buffer, enc ? enc : "base64"); + buffer = ByteBuffer.isByteBuffer(buffer) ? buffer : ByteBuffer.wrap(buffer); // May throw + if (buffer.remaining() < 1) + return null; + var off = buffer.offset, + len = buffer.readVarint32(); + if (buffer.remaining() < len) { + buffer.offset = off; + return null; + } + try { + var msg = T.decode(buffer.slice(buffer.offset, buffer.offset + len).LE()); + buffer.offset += len; + return msg; + } catch (err) { + buffer.offset += len; + throw err; + } + }; + + /** + * Decodes the message from the specified base64 encoded string. + * @name ProtoBuf.Builder.Message.decode64 + * @function + * @param {string} str String to decode from + * @return {!ProtoBuf.Builder.Message} Decoded message + * @throws {Error} If the message cannot be decoded or if required fields are missing. The later still + * returns the decoded message with missing fields in the `decoded` property on the error. + * @expose + */ + Message.decode64 = function(str) { + return Message.decode(str, "base64"); + }; + + /** + * Decodes the message from the specified hex encoded string. + * @name ProtoBuf.Builder.Message.decodeHex + * @function + * @param {string} str String to decode from + * @return {!ProtoBuf.Builder.Message} Decoded message + * @throws {Error} If the message cannot be decoded or if required fields are missing. The later still + * returns the decoded message with missing fields in the `decoded` property on the error. + * @expose + */ + Message.decodeHex = function(str) { + return Message.decode(str, "hex"); + }; + + /** + * Decodes the message from a JSON string. + * @name ProtoBuf.Builder.Message.decodeJSON + * @function + * @param {string} str String to decode from + * @return {!ProtoBuf.Builder.Message} Decoded message + * @throws {Error} If the message cannot be decoded or if required fields are + * missing. + * @expose + */ + Message.decodeJSON = function(str) { + return new Message(JSON.parse(str)); + }; + + // Utility + + /** + * Returns a string representation of this Message. + * @name ProtoBuf.Builder.Message#toString + * @function + * @return {string} String representation as of ".Fully.Qualified.MessageName" + * @expose + */ + MessagePrototype.toString = function() { + return T.toString(); + }; + + // Properties + + /** + * Message options. + * @name ProtoBuf.Builder.Message.$options + * @type {Object.} + * @expose + */ + var $optionsS; // cc needs this + + /** + * Message options. + * @name ProtoBuf.Builder.Message#$options + * @type {Object.} + * @expose + */ + var $options; + + /** + * Reflection type. + * @name ProtoBuf.Builder.Message.$type + * @type {!ProtoBuf.Reflect.Message} + * @expose + */ + var $typeS; + + /** + * Reflection type. + * @name ProtoBuf.Builder.Message#$type + * @type {!ProtoBuf.Reflect.Message} + * @expose + */ + var $type; + + if (Object.defineProperty) + Object.defineProperty(Message, '$options', { "value": T.buildOpt() }), + Object.defineProperty(MessagePrototype, "$options", { "value": Message["$options"] }), + Object.defineProperty(Message, "$type", { "value": T }), + Object.defineProperty(MessagePrototype, "$type", { "value": T }); + + return Message; + + })(ProtoBuf, this); + + // Static enums and prototyped sub-messages / cached collections + this._fields = []; + this._fieldsById = {}; + this._fieldsByName = {}; + for (var i=0, k=this.children.length, child; i>> 3; + switch (wireType) { + case ProtoBuf.WIRE_TYPES.VARINT: + do tag = buf.readUint8(); + while ((tag & 0x80) === 0x80); + break; + case ProtoBuf.WIRE_TYPES.BITS64: + buf.offset += 8; + break; + case ProtoBuf.WIRE_TYPES.LDELIM: + tag = buf.readVarint32(); // reads the varint + buf.offset += tag; // skips n bytes + break; + case ProtoBuf.WIRE_TYPES.STARTGROUP: + skipTillGroupEnd(id, buf); + break; + case ProtoBuf.WIRE_TYPES.ENDGROUP: + if (id === expectedId) + return false; + else + throw Error("Illegal GROUPEND after unknown group: "+id+" ("+expectedId+" expected)"); + case ProtoBuf.WIRE_TYPES.BITS32: + buf.offset += 4; + break; + default: + throw Error("Illegal wire type in unknown group "+expectedId+": "+wireType); + } + return true; + } + + /** + * Decodes an encoded message and returns the decoded message. + * @param {ByteBuffer} buffer ByteBuffer to decode from + * @param {number=} length Message length. Defaults to decode all remaining data. + * @param {number=} expectedGroupEndId Expected GROUPEND id if this is a legacy group + * @return {ProtoBuf.Builder.Message} Decoded message + * @throws {Error} If the message cannot be decoded + * @expose + */ + MessagePrototype.decode = function(buffer, length, expectedGroupEndId) { + length = typeof length === 'number' ? length : -1; + var start = buffer.offset, + msg = new (this.clazz)(), + tag, wireType, id, field; + while (buffer.offset < start+length || (length === -1 && buffer.remaining() > 0)) { + tag = buffer.readVarint32(); + wireType = tag & 0x07; + id = tag >>> 3; + if (wireType === ProtoBuf.WIRE_TYPES.ENDGROUP) { + if (id !== expectedGroupEndId) + throw Error("Illegal group end indicator for "+this.toString(true)+": "+id+" ("+(expectedGroupEndId ? expectedGroupEndId+" expected" : "not a group")+")"); + break; + } + if (!(field = this._fieldsById[id])) { + // "messages created by your new code can be parsed by your old code: old binaries simply ignore the new field when parsing." + switch (wireType) { + case ProtoBuf.WIRE_TYPES.VARINT: + buffer.readVarint32(); + break; + case ProtoBuf.WIRE_TYPES.BITS32: + buffer.offset += 4; + break; + case ProtoBuf.WIRE_TYPES.BITS64: + buffer.offset += 8; + break; + case ProtoBuf.WIRE_TYPES.LDELIM: + var len = buffer.readVarint32(); + buffer.offset += len; + break; + case ProtoBuf.WIRE_TYPES.STARTGROUP: + while (skipTillGroupEnd(id, buffer)) {} + break; + default: + throw Error("Illegal wire type for unknown field "+id+" in "+this.toString(true)+"#decode: "+wireType); + } + continue; + } + if (field.repeated && !field.options["packed"]) { + msg[field.name].push(field.decode(wireType, buffer)); + } else if (field.map) { + var keyval = field.decode(wireType, buffer); + msg[field.name].set(keyval[0], keyval[1]); + } else { + msg[field.name] = field.decode(wireType, buffer); + if (field.oneof) { // Field is part of an OneOf (not a virtual OneOf field) + var currentField = msg[field.oneof.name]; // Virtual field references currently set field + if (currentField !== null && currentField !== field.name) + msg[currentField] = null; // Clear currently set field + msg[field.oneof.name] = field.name; // Point virtual field at this field + } + } + } + + // Check if all required fields are present and set default values for optional fields that are not + for (var i=0, k=this._fields.length; i=} options Options + * @param {!ProtoBuf.Reflect.Message.OneOf=} oneof Enclosing OneOf + * @param {string?} syntax The syntax level of this definition (e.g., proto3) + * @constructor + * @extends ProtoBuf.Reflect.T + */ + var Field = function(builder, message, rule, keytype, type, name, id, options, oneof, syntax) { + T.call(this, builder, message, name); + + /** + * @override + */ + this.className = "Message.Field"; + + /** + * Message field required flag. + * @type {boolean} + * @expose + */ + this.required = rule === "required"; + + /** + * Message field repeated flag. + * @type {boolean} + * @expose + */ + this.repeated = rule === "repeated"; + + /** + * Message field map flag. + * @type {boolean} + * @expose + */ + this.map = rule === "map"; + + /** + * Message field key type. Type reference string if unresolved, protobuf + * type if resolved. Valid only if this.map === true, null otherwise. + * @type {string|{name: string, wireType: number}|null} + * @expose + */ + this.keyType = keytype || null; + + /** + * Message field type. Type reference string if unresolved, protobuf type if + * resolved. In a map field, this is the value type. + * @type {string|{name: string, wireType: number}} + * @expose + */ + this.type = type; + + /** + * Resolved type reference inside the global namespace. + * @type {ProtoBuf.Reflect.T|null} + * @expose + */ + this.resolvedType = null; + + /** + * Unique message field id. + * @type {number} + * @expose + */ + this.id = id; + + /** + * Message field options. + * @type {!Object.} + * @dict + * @expose + */ + this.options = options || {}; + + /** + * Default value. + * @type {*} + * @expose + */ + this.defaultValue = null; + + /** + * Enclosing OneOf. + * @type {?ProtoBuf.Reflect.Message.OneOf} + * @expose + */ + this.oneof = oneof || null; + + /** + * Syntax level of this definition (e.g., proto3). + * @type {string} + * @expose + */ + this.syntax = syntax || 'proto2'; + + /** + * Original field name. + * @type {string} + * @expose + */ + this.originalName = this.name; // Used to revert camelcase transformation on naming collisions + + /** + * Element implementation. Created in build() after types are resolved. + * @type {ProtoBuf.Element} + * @expose + */ + this.element = null; + + /** + * Key element implementation, for map fields. Created in build() after + * types are resolved. + * @type {ProtoBuf.Element} + * @expose + */ + this.keyElement = null; + + // Convert field names to camel case notation if the override is set + if (this.builder.options['convertFieldsToCamelCase'] && !(this instanceof Message.ExtensionField)) + this.name = ProtoBuf.Util.toCamelCase(this.name); + }; + + /** + * @alias ProtoBuf.Reflect.Message.Field.prototype + * @inner + */ + var FieldPrototype = Field.prototype = Object.create(T.prototype); + + /** + * Builds the field. + * @override + * @expose + */ + FieldPrototype.build = function() { + this.element = new Element(this.type, this.resolvedType, false, this.syntax); + if (this.map) + this.keyElement = new Element(this.keyType, undefined, true, this.syntax); + + // In proto3, fields do not have field presence, and every field is set to + // its type's default value ("", 0, 0.0, or false). + if (this.syntax === 'proto3' && !this.repeated && !this.map) + this.defaultValue = Element.defaultFieldValue(this.type); + + // Otherwise, default values are present when explicitly specified + else if (typeof this.options['default'] !== 'undefined') + this.defaultValue = this.verifyValue(this.options['default']); + }; + + /** + * Checks if the given value can be set for this field. + * @param {*} value Value to check + * @param {boolean=} skipRepeated Whether to skip the repeated value check or not. Defaults to false. + * @return {*} Verified, maybe adjusted, value + * @throws {Error} If the value cannot be set for this field + * @expose + */ + FieldPrototype.verifyValue = function(value, skipRepeated) { + skipRepeated = skipRepeated || false; + var self = this; + function fail(val, msg) { + throw Error("Illegal value for "+self.toString(true)+" of type "+self.type.name+": "+val+" ("+msg+")"); + } + if (value === null) { // NULL values for optional fields + if (this.required) + fail(typeof value, "required"); + if (this.syntax === 'proto3' && this.type !== ProtoBuf.TYPES["message"]) + fail(typeof value, "proto3 field without field presence cannot be null"); + return null; + } + var i; + if (this.repeated && !skipRepeated) { // Repeated values as arrays + if (!Array.isArray(value)) + value = [value]; + var res = []; + for (i=0; i 0; + + case ProtoBuf.TYPES["bytes"]: + return value.remaining() > 0; + + case ProtoBuf.TYPES["enum"]: + return value !== 0; + + case ProtoBuf.TYPES["message"]: + return value !== null; + default: + return true; + } + }; + + /** + * Encodes the specified field value to the specified buffer. + * @param {*} value Verified field value + * @param {ByteBuffer} buffer ByteBuffer to encode to + * @param {!ProtoBuf.Builder.Message} message Runtime message + * @return {ByteBuffer} The ByteBuffer for chaining + * @throws {Error} If the field cannot be encoded + * @expose + */ + FieldPrototype.encode = function(value, buffer, message) { + if (this.type === null || typeof this.type !== 'object') + throw Error("[INTERNAL] Unresolved type in "+this.toString(true)+": "+this.type); + if (value === null || (this.repeated && value.length == 0)) + return buffer; // Optional omitted + try { + if (this.repeated) { + var i; + // "Only repeated fields of primitive numeric types (types which use the varint, 32-bit, or 64-bit wire + // types) can be declared 'packed'." + if (this.options["packed"] && ProtoBuf.PACKABLE_WIRE_TYPES.indexOf(this.type.wireType) >= 0) { + // "All of the elements of the field are packed into a single key-value pair with wire type 2 + // (length-delimited). Each element is encoded the same way it would be normally, except without a + // tag preceding it." + buffer.writeVarint32((this.id << 3) | ProtoBuf.WIRE_TYPES.LDELIM); + buffer.ensureCapacity(buffer.offset += 1); // We do not know the length yet, so let's assume a varint of length 1 + var start = buffer.offset; // Remember where the contents begin + for (i=0; i 1) { // We need to move the contents + var contents = buffer.slice(start, buffer.offset); + start += varintLen-1; + buffer.offset = start; + buffer.append(contents); + } + buffer.writeVarint32(len, start-varintLen); + } else { + // "If your message definition has repeated elements (without the [packed=true] option), the encoded + // message has zero or more key-value pairs with the same tag number" + for (i=0; i= 0) { + n += ByteBuffer.calculateVarint32((this.id << 3) | ProtoBuf.WIRE_TYPES.LDELIM); + ni = 0; + for (i=0; i= 0) { + if (!skipRepeated) { + nBytes = buffer.readVarint32(); + nBytes = buffer.offset + nBytes; // Limit + var values = []; + while (buffer.offset < nBytes) + values.push(this.decode(this.type.wireType, buffer, true)); + return values; + } + // Read the next value otherwise... + } + + // Handle maps. + if (this.map) { + // Read one (key, value) submessage, and return [key, value] + var key = Element.defaultFieldValue(this.keyType); + value = Element.defaultFieldValue(this.type); + + // Read the length + nBytes = buffer.readVarint32(); + if (buffer.remaining() < nBytes) + throw Error("Illegal number of bytes for "+this.toString(true)+": "+nBytes+" required but got only "+buffer.remaining()); + + // Get a sub-buffer of this key/value submessage + var msgbuf = buffer.clone(); + msgbuf.limit = msgbuf.offset + nBytes; + buffer.offset += nBytes; + + while (msgbuf.remaining() > 0) { + var tag = msgbuf.readVarint32(); + wireType = tag & 0x07; + var id = tag >>> 3; + if (id === 1) { + key = this.keyElement.decode(msgbuf, wireType, id); + } else if (id === 2) { + value = this.element.decode(msgbuf, wireType, id); + } else { + throw Error("Unexpected tag in map field key/value submessage"); + } + } + + return [key, value]; + } + + // Handle singular and non-packed repeated field values. + return this.element.decode(buffer, wireType, this.id); + }; + + /** + * @alias ProtoBuf.Reflect.Message.Field + * @expose + */ + Reflect.Message.Field = Field; + + /** + * Constructs a new Message ExtensionField. + * @exports ProtoBuf.Reflect.Message.ExtensionField + * @param {!ProtoBuf.Builder} builder Builder reference + * @param {!ProtoBuf.Reflect.Message} message Message reference + * @param {string} rule Rule, one of requried, optional, repeated + * @param {string} type Data type, e.g. int32 + * @param {string} name Field name + * @param {number} id Unique field id + * @param {!Object.=} options Options + * @constructor + * @extends ProtoBuf.Reflect.Message.Field + */ + var ExtensionField = function(builder, message, rule, type, name, id, options) { + Field.call(this, builder, message, rule, /* keytype = */ null, type, name, id, options); + + /** + * Extension reference. + * @type {!ProtoBuf.Reflect.Extension} + * @expose + */ + this.extension; + }; + + // Extends Field + ExtensionField.prototype = Object.create(Field.prototype); + + /** + * @alias ProtoBuf.Reflect.Message.ExtensionField + * @expose + */ + Reflect.Message.ExtensionField = ExtensionField; + + /** + * Constructs a new Message OneOf. + * @exports ProtoBuf.Reflect.Message.OneOf + * @param {!ProtoBuf.Builder} builder Builder reference + * @param {!ProtoBuf.Reflect.Message} message Message reference + * @param {string} name OneOf name + * @constructor + * @extends ProtoBuf.Reflect.T + */ + var OneOf = function(builder, message, name) { + T.call(this, builder, message, name); + + /** + * Enclosed fields. + * @type {!Array.} + * @expose + */ + this.fields = []; + }; + + /** + * @alias ProtoBuf.Reflect.Message.OneOf + * @expose + */ + Reflect.Message.OneOf = OneOf; + + /** + * Constructs a new Enum. + * @exports ProtoBuf.Reflect.Enum + * @param {!ProtoBuf.Builder} builder Builder reference + * @param {!ProtoBuf.Reflect.T} parent Parent Reflect object + * @param {string} name Enum name + * @param {Object.=} options Enum options + * @param {string?} syntax The syntax level (e.g., proto3) + * @constructor + * @extends ProtoBuf.Reflect.Namespace + */ + var Enum = function(builder, parent, name, options, syntax) { + Namespace.call(this, builder, parent, name, options, syntax); + + /** + * @override + */ + this.className = "Enum"; + + /** + * Runtime enum object. + * @type {Object.|null} + * @expose + */ + this.object = null; + }; + + /** + * Gets the string name of an enum value. + * @param {!ProtoBuf.Builder.Enum} enm Runtime enum + * @param {number} value Enum value + * @returns {?string} Name or `null` if not present + * @expose + */ + Enum.getName = function(enm, value) { + var keys = Object.keys(enm); + for (var i=0, key; i} + * @expose + */ + EnumPrototype.build = function(rebuild) { + if (this.object && !rebuild) + return this.object; + var enm = new ProtoBuf.Builder.Enum(), + values = this.getChildren(Enum.Value); + for (var i=0, k=values.length; i=} options Options + * @constructor + * @extends ProtoBuf.Reflect.Namespace + */ + var Service = function(builder, root, name, options) { + Namespace.call(this, builder, root, name, options); + + /** + * @override + */ + this.className = "Service"; + + /** + * Built runtime service class. + * @type {?function(new:ProtoBuf.Builder.Service)} + */ + this.clazz = null; + }; + + /** + * @alias ProtoBuf.Reflect.Service.prototype + * @inner + */ + var ServicePrototype = Service.prototype = Object.create(Namespace.prototype); + + /** + * Builds the service and returns the runtime counterpart, which is a fully functional class. + * @see ProtoBuf.Builder.Service + * @param {boolean=} rebuild Whether to rebuild or not + * @return {Function} Service class + * @throws {Error} If the message cannot be built + * @expose + */ + ServicePrototype.build = function(rebuild) { + if (this.clazz && !rebuild) + return this.clazz; + + // Create the runtime Service class in its own scope + return this.clazz = (function(ProtoBuf, T) { + + /** + * Constructs a new runtime Service. + * @name ProtoBuf.Builder.Service + * @param {function(string, ProtoBuf.Builder.Message, function(Error, ProtoBuf.Builder.Message=))=} rpcImpl RPC implementation receiving the method name and the message + * @class Barebone of all runtime services. + * @constructor + * @throws {Error} If the service cannot be created + */ + var Service = function(rpcImpl) { + ProtoBuf.Builder.Service.call(this); + + /** + * Service implementation. + * @name ProtoBuf.Builder.Service#rpcImpl + * @type {!function(string, ProtoBuf.Builder.Message, function(Error, ProtoBuf.Builder.Message=))} + * @expose + */ + this.rpcImpl = rpcImpl || function(name, msg, callback) { + // This is what a user has to implement: A function receiving the method name, the actual message to + // send (type checked) and the callback that's either provided with the error as its first + // argument or null and the actual response message. + setTimeout(callback.bind(this, Error("Not implemented, see: https://github.com/dcodeIO/ProtoBuf.js/wiki/Services")), 0); // Must be async! + }; + }; + + /** + * @alias ProtoBuf.Builder.Service.prototype + * @inner + */ + var ServicePrototype = Service.prototype = Object.create(ProtoBuf.Builder.Service.prototype); + + /** + * Asynchronously performs an RPC call using the given RPC implementation. + * @name ProtoBuf.Builder.Service.[Method] + * @function + * @param {!function(string, ProtoBuf.Builder.Message, function(Error, ProtoBuf.Builder.Message=))} rpcImpl RPC implementation + * @param {ProtoBuf.Builder.Message} req Request + * @param {function(Error, (ProtoBuf.Builder.Message|ByteBuffer|Buffer|string)=)} callback Callback receiving + * the error if any and the response either as a pre-parsed message or as its raw bytes + * @abstract + */ + + /** + * Asynchronously performs an RPC call using the instance's RPC implementation. + * @name ProtoBuf.Builder.Service#[Method] + * @function + * @param {ProtoBuf.Builder.Message} req Request + * @param {function(Error, (ProtoBuf.Builder.Message|ByteBuffer|Buffer|string)=)} callback Callback receiving + * the error if any and the response either as a pre-parsed message or as its raw bytes + * @abstract + */ + + var rpc = T.getChildren(ProtoBuf.Reflect.Service.RPCMethod); + for (var i=0; i} + * @expose + */ + var $optionsS; // cc needs this + + /** + * Service options. + * @name ProtoBuf.Builder.Service#$options + * @type {Object.} + * @expose + */ + var $options; + + /** + * Reflection type. + * @name ProtoBuf.Builder.Service.$type + * @type {!ProtoBuf.Reflect.Service} + * @expose + */ + var $typeS; + + /** + * Reflection type. + * @name ProtoBuf.Builder.Service#$type + * @type {!ProtoBuf.Reflect.Service} + * @expose + */ + var $type; + + if (Object.defineProperty) + Object.defineProperty(Service, "$options", { "value": T.buildOpt() }), + Object.defineProperty(ServicePrototype, "$options", { "value": Service["$options"] }), + Object.defineProperty(Service, "$type", { "value": T }), + Object.defineProperty(ServicePrototype, "$type", { "value": T }); + + return Service; + + })(ProtoBuf, this); + }; + + /** + * @alias ProtoBuf.Reflect.Service + * @expose + */ + Reflect.Service = Service; + + /** + * Abstract service method. + * @exports ProtoBuf.Reflect.Service.Method + * @param {!ProtoBuf.Builder} builder Builder reference + * @param {!ProtoBuf.Reflect.Service} svc Service + * @param {string} name Method name + * @param {Object.=} options Options + * @constructor + * @extends ProtoBuf.Reflect.T + */ + var Method = function(builder, svc, name, options) { + T.call(this, builder, svc, name); + + /** + * @override + */ + this.className = "Service.Method"; + + /** + * Options. + * @type {Object.} + * @expose + */ + this.options = options || {}; + }; + + /** + * @alias ProtoBuf.Reflect.Service.Method.prototype + * @inner + */ + var MethodPrototype = Method.prototype = Object.create(T.prototype); + + /** + * Builds the method's '$options' property. + * @name ProtoBuf.Reflect.Service.Method#buildOpt + * @function + * @return {Object.} + */ + MethodPrototype.buildOpt = NamespacePrototype.buildOpt; + + /** + * @alias ProtoBuf.Reflect.Service.Method + * @expose + */ + Reflect.Service.Method = Method; + + /** + * RPC service method. + * @exports ProtoBuf.Reflect.Service.RPCMethod + * @param {!ProtoBuf.Builder} builder Builder reference + * @param {!ProtoBuf.Reflect.Service} svc Service + * @param {string} name Method name + * @param {string} request Request message name + * @param {string} response Response message name + * @param {boolean} request_stream Whether requests are streamed + * @param {boolean} response_stream Whether responses are streamed + * @param {Object.=} options Options + * @constructor + * @extends ProtoBuf.Reflect.Service.Method + */ + var RPCMethod = function(builder, svc, name, request, response, request_stream, response_stream, options) { + Method.call(this, builder, svc, name, options); + + /** + * @override + */ + this.className = "Service.RPCMethod"; + + /** + * Request message name. + * @type {string} + * @expose + */ + this.requestName = request; + + /** + * Response message name. + * @type {string} + * @expose + */ + this.responseName = response; + + /** + * Whether requests are streamed + * @type {bool} + * @expose + */ + this.requestStream = request_stream; + + /** + * Whether responses are streamed + * @type {bool} + * @expose + */ + this.responseStream = response_stream; + + /** + * Resolved request message type. + * @type {ProtoBuf.Reflect.Message} + * @expose + */ + this.resolvedRequestType = null; + + /** + * Resolved response message type. + * @type {ProtoBuf.Reflect.Message} + * @expose + */ + this.resolvedResponseType = null; + }; + + // Extends Method + RPCMethod.prototype = Object.create(Method.prototype); + + /** + * @alias ProtoBuf.Reflect.Service.RPCMethod + * @expose + */ + Reflect.Service.RPCMethod = RPCMethod; + + return Reflect; + + })(ProtoBuf); + + /** + * @alias ProtoBuf.Builder + * @expose + */ + ProtoBuf.Builder = (function(ProtoBuf, Lang, Reflect) { + "use strict"; + + /** + * Constructs a new Builder. + * @exports ProtoBuf.Builder + * @class Provides the functionality to build protocol messages. + * @param {Object.=} options Options + * @constructor + */ + var Builder = function(options) { + + /** + * Namespace. + * @type {ProtoBuf.Reflect.Namespace} + * @expose + */ + this.ns = new Reflect.Namespace(this, null, ""); // Global namespace + + /** + * Namespace pointer. + * @type {ProtoBuf.Reflect.T} + * @expose + */ + this.ptr = this.ns; + + /** + * Resolved flag. + * @type {boolean} + * @expose + */ + this.resolved = false; + + /** + * The current building result. + * @type {Object.|null} + * @expose + */ + this.result = null; + + /** + * Imported files. + * @type {Array.} + * @expose + */ + this.files = {}; + + /** + * Import root override. + * @type {?string} + * @expose + */ + this.importRoot = null; + + /** + * Options. + * @type {!Object.} + * @expose + */ + this.options = options || {}; + }; + + /** + * @alias ProtoBuf.Builder.prototype + * @inner + */ + var BuilderPrototype = Builder.prototype; + + // ----- Definition tests ----- + + /** + * Tests if a definition most likely describes a message. + * @param {!Object} def + * @returns {boolean} + * @expose + */ + Builder.isMessage = function(def) { + // Messages require a string name + if (typeof def["name"] !== 'string') + return false; + // Messages do not contain values (enum) or rpc methods (service) + if (typeof def["values"] !== 'undefined' || typeof def["rpc"] !== 'undefined') + return false; + return true; + }; + + /** + * Tests if a definition most likely describes a message field. + * @param {!Object} def + * @returns {boolean} + * @expose + */ + Builder.isMessageField = function(def) { + // Message fields require a string rule, name and type and an id + if (typeof def["rule"] !== 'string' || typeof def["name"] !== 'string' || typeof def["type"] !== 'string' || typeof def["id"] === 'undefined') + return false; + return true; + }; + + /** + * Tests if a definition most likely describes an enum. + * @param {!Object} def + * @returns {boolean} + * @expose + */ + Builder.isEnum = function(def) { + // Enums require a string name + if (typeof def["name"] !== 'string') + return false; + // Enums require at least one value + if (typeof def["values"] === 'undefined' || !Array.isArray(def["values"]) || def["values"].length === 0) + return false; + return true; + }; + + /** + * Tests if a definition most likely describes a service. + * @param {!Object} def + * @returns {boolean} + * @expose + */ + Builder.isService = function(def) { + // Services require a string name and an rpc object + if (typeof def["name"] !== 'string' || typeof def["rpc"] !== 'object' || !def["rpc"]) + return false; + return true; + }; + + /** + * Tests if a definition most likely describes an extended message + * @param {!Object} def + * @returns {boolean} + * @expose + */ + Builder.isExtend = function(def) { + // Extends rquire a string ref + if (typeof def["ref"] !== 'string') + return false; + return true; + }; + + // ----- Building ----- + + /** + * Resets the pointer to the root namespace. + * @returns {!ProtoBuf.Builder} this + * @expose + */ + BuilderPrototype.reset = function() { + this.ptr = this.ns; + return this; + }; + + /** + * Defines a namespace on top of the current pointer position and places the pointer on it. + * @param {string} namespace + * @return {!ProtoBuf.Builder} this + * @expose + */ + BuilderPrototype.define = function(namespace) { + if (typeof namespace !== 'string' || !Lang.TYPEREF.test(namespace)) + throw Error("illegal namespace: "+namespace); + namespace.split(".").forEach(function(part) { + var ns = this.ptr.getChild(part); + if (ns === null) // Keep existing + this.ptr.addChild(ns = new Reflect.Namespace(this, this.ptr, part)); + this.ptr = ns; + }, this); + return this; + }; + + /** + * Creates the specified definitions at the current pointer position. + * @param {!Array.} defs Messages, enums or services to create + * @returns {!ProtoBuf.Builder} this + * @throws {Error} If a message definition is invalid + * @expose + */ + BuilderPrototype.create = function(defs) { + if (!defs) + return this; // Nothing to create + if (!Array.isArray(defs)) + defs = [defs]; + else { + if (defs.length === 0) + return this; + defs = defs.slice(); + } + + // It's quite hard to keep track of scopes and memory here, so let's do this iteratively. + var stack = [defs]; + while (stack.length > 0) { + defs = stack.pop(); + + if (!Array.isArray(defs)) // Stack always contains entire namespaces + throw Error("not a valid namespace: "+JSON.stringify(defs)); + + while (defs.length > 0) { + var def = defs.shift(); // Namespaces always contain an array of messages, enums and services + + if (Builder.isMessage(def)) { + var obj = new Reflect.Message(this, this.ptr, def["name"], def["options"], def["isGroup"], def["syntax"]); + + // Create OneOfs + var oneofs = {}; + if (def["oneofs"]) + Object.keys(def["oneofs"]).forEach(function(name) { + obj.addChild(oneofs[name] = new Reflect.Message.OneOf(this, obj, name)); + }, this); + + // Create fields + if (def["fields"]) + def["fields"].forEach(function(fld) { + if (obj.getChild(fld["id"]|0) !== null) + throw Error("duplicate or invalid field id in "+obj.name+": "+fld['id']); + if (fld["options"] && typeof fld["options"] !== 'object') + throw Error("illegal field options in "+obj.name+"#"+fld["name"]); + var oneof = null; + if (typeof fld["oneof"] === 'string' && !(oneof = oneofs[fld["oneof"]])) + throw Error("illegal oneof in "+obj.name+"#"+fld["name"]+": "+fld["oneof"]); + fld = new Reflect.Message.Field(this, obj, fld["rule"], fld["keytype"], fld["type"], fld["name"], fld["id"], fld["options"], oneof, def["syntax"]); + if (oneof) + oneof.fields.push(fld); + obj.addChild(fld); + }, this); + + // Push children to stack + var subObj = []; + if (def["enums"]) + def["enums"].forEach(function(enm) { + subObj.push(enm); + }); + if (def["messages"]) + def["messages"].forEach(function(msg) { + subObj.push(msg); + }); + if (def["services"]) + def["services"].forEach(function(svc) { + subObj.push(svc); + }); + + // Set extension ranges + if (def["extensions"]) { + if (typeof def["extensions"][0] === 'number') // pre 5.0.1 + obj.extensions = [ def["extensions"] ]; + else + obj.extensions = def["extensions"]; + } + + // Create on top of current namespace + this.ptr.addChild(obj); + if (subObj.length > 0) { + stack.push(defs); // Push the current level back + defs = subObj; // Continue processing sub level + subObj = null; + this.ptr = obj; // And move the pointer to this namespace + obj = null; + continue; + } + subObj = null; + + } else if (Builder.isEnum(def)) { + + obj = new Reflect.Enum(this, this.ptr, def["name"], def["options"], def["syntax"]); + def["values"].forEach(function(val) { + obj.addChild(new Reflect.Enum.Value(this, obj, val["name"], val["id"])); + }, this); + this.ptr.addChild(obj); + + } else if (Builder.isService(def)) { + + obj = new Reflect.Service(this, this.ptr, def["name"], def["options"]); + Object.keys(def["rpc"]).forEach(function(name) { + var mtd = def["rpc"][name]; + obj.addChild(new Reflect.Service.RPCMethod(this, obj, name, mtd["request"], mtd["response"], !!mtd["request_stream"], !!mtd["response_stream"], mtd["options"])); + }, this); + this.ptr.addChild(obj); + + } else if (Builder.isExtend(def)) { + + obj = this.ptr.resolve(def["ref"], true); + if (obj) { + def["fields"].forEach(function(fld) { + if (obj.getChild(fld['id']|0) !== null) + throw Error("duplicate extended field id in "+obj.name+": "+fld['id']); + // Check if field id is allowed to be extended + if (obj.extensions) { + var valid = false; + obj.extensions.forEach(function(range) { + if (fld["id"] >= range[0] && fld["id"] <= range[1]) + valid = true; + }); + if (!valid) + throw Error("illegal extended field id in "+obj.name+": "+fld['id']+" (not within valid ranges)"); + } + // Convert extension field names to camel case notation if the override is set + var name = fld["name"]; + if (this.options['convertFieldsToCamelCase']) + name = ProtoBuf.Util.toCamelCase(name); + // see #161: Extensions use their fully qualified name as their runtime key and... + var field = new Reflect.Message.ExtensionField(this, obj, fld["rule"], fld["type"], this.ptr.fqn()+'.'+name, fld["id"], fld["options"]); + // ...are added on top of the current namespace as an extension which is used for + // resolving their type later on (the extension always keeps the original name to + // prevent naming collisions) + var ext = new Reflect.Extension(this, this.ptr, fld["name"], field); + field.extension = ext; + this.ptr.addChild(ext); + obj.addChild(field); + }, this); + + } else if (!/\.?google\.protobuf\./.test(def["ref"])) // Silently skip internal extensions + throw Error("extended message "+def["ref"]+" is not defined"); + + } else + throw Error("not a valid definition: "+JSON.stringify(def)); + + def = null; + obj = null; + } + // Break goes here + defs = null; + this.ptr = this.ptr.parent; // Namespace done, continue at parent + } + this.resolved = false; // Require re-resolve + this.result = null; // Require re-build + return this; + }; + + /** + * Propagates syntax to all children. + * @param {!Object} parent + * @inner + */ + function propagateSyntax(parent) { + if (parent['messages']) { + parent['messages'].forEach(function(child) { + child["syntax"] = parent["syntax"]; + propagateSyntax(child); + }); + } + if (parent['enums']) { + parent['enums'].forEach(function(child) { + child["syntax"] = parent["syntax"]; + }); + } + } + + /** + * Imports another definition into this builder. + * @param {Object.} json Parsed import + * @param {(string|{root: string, file: string})=} filename Imported file name + * @returns {!ProtoBuf.Builder} this + * @throws {Error} If the definition or file cannot be imported + * @expose + */ + BuilderPrototype["import"] = function(json, filename) { + var delim = '/'; + + // Make sure to skip duplicate imports + + if (typeof filename === 'string') { + + if (ProtoBuf.Util.IS_NODE) + filename = require("path")['resolve'](filename); + if (this.files[filename] === true) + return this.reset(); + this.files[filename] = true; + + } else if (typeof filename === 'object') { // Object with root, file. + + var root = filename.root; + if (ProtoBuf.Util.IS_NODE) + root = require("path")['resolve'](root); + if (root.indexOf("\\") >= 0 || filename.file.indexOf("\\") >= 0) + delim = '\\'; + var fname = root + delim + filename.file; + if (this.files[fname] === true) + return this.reset(); + this.files[fname] = true; + } + + // Import imports + + if (json['imports'] && json['imports'].length > 0) { + var importRoot, + resetRoot = false; + + if (typeof filename === 'object') { // If an import root is specified, override + + this.importRoot = filename["root"]; resetRoot = true; // ... and reset afterwards + importRoot = this.importRoot; + filename = filename["file"]; + if (importRoot.indexOf("\\") >= 0 || filename.indexOf("\\") >= 0) + delim = '\\'; + + } else if (typeof filename === 'string') { + + if (this.importRoot) // If import root is overridden, use it + importRoot = this.importRoot; + else { // Otherwise compute from filename + if (filename.indexOf("/") >= 0) { // Unix + importRoot = filename.replace(/\/[^\/]*$/, ""); + if (/* /file.proto */ importRoot === "") + importRoot = "/"; + } else if (filename.indexOf("\\") >= 0) { // Windows + importRoot = filename.replace(/\\[^\\]*$/, ""); + delim = '\\'; + } else + importRoot = "."; + } + + } else + importRoot = null; + + for (var i=0; i)=} path Specifies what to return. If omitted, the entire namespace will be returned. + * @returns {!ProtoBuf.Builder.Message|!Object.} + * @throws {Error} If a type could not be resolved + * @expose + */ + BuilderPrototype.build = function(path) { + this.reset(); + if (!this.resolved) + this.resolveAll(), + this.resolved = true, + this.result = null; // Require re-build + if (this.result === null) // (Re-)Build + this.result = this.ns.build(); + if (!path) + return this.result; + var part = typeof path === 'string' ? path.split(".") : path, + ptr = this.result; // Build namespace pointer (no hasChild etc.) + for (var i=0; i=} contents Initial contents + * @constructor + */ + var Map = function(field, contents) { + if (!field.map) + throw Error("field is not a map"); + + /** + * The field corresponding to this map. + * @type {!ProtoBuf.Reflect.Field} + */ + this.field = field; + + /** + * Element instance corresponding to key type. + * @type {!ProtoBuf.Reflect.Element} + */ + this.keyElem = new Reflect.Element(field.keyType, null, true, field.syntax); + + /** + * Element instance corresponding to value type. + * @type {!ProtoBuf.Reflect.Element} + */ + this.valueElem = new Reflect.Element(field.type, field.resolvedType, false, field.syntax); + + /** + * Internal map: stores mapping of (string form of key) -> (key, value) + * pair. + * + * We provide map semantics for arbitrary key types, but we build on top + * of an Object, which has only string keys. In order to avoid the need + * to convert a string key back to its native type in many situations, + * we store the native key value alongside the value. Thus, we only need + * a one-way mapping from a key type to its string form that guarantees + * uniqueness and equality (i.e., str(K1) === str(K2) if and only if K1 + * === K2). + * + * @type {!Object} + */ + this.map = {}; + + /** + * Returns the number of elements in the map. + */ + Object.defineProperty(this, "size", { + get: function() { return Object.keys(this.map).length; } + }); + + // Fill initial contents from a raw object. + if (contents) { + var keys = Object.keys(contents); + for (var i = 0; i < keys.length; i++) { + var key = this.keyElem.valueFromString(keys[i]); + var val = this.valueElem.verifyValue(contents[keys[i]]); + this.map[this.keyElem.valueToString(key)] = + { key: key, value: val }; + } + } + }; + + var MapPrototype = Map.prototype; + + /** + * Helper: return an iterator over an array. + * @param {!Array<*>} arr the array + * @returns {!Object} an iterator + * @inner + */ + function arrayIterator(arr) { + var idx = 0; + return { + next: function() { + if (idx < arr.length) + return { done: false, value: arr[idx++] }; + return { done: true }; + } + } + } + + /** + * Clears the map. + */ + MapPrototype.clear = function() { + this.map = {}; + }; + + /** + * Deletes a particular key from the map. + * @returns {boolean} Whether any entry with this key was deleted. + */ + MapPrototype["delete"] = function(key) { + var keyValue = this.keyElem.valueToString(this.keyElem.verifyValue(key)); + var hadKey = keyValue in this.map; + delete this.map[keyValue]; + return hadKey; + }; + + /** + * Returns an iterator over [key, value] pairs in the map. + * @returns {Object} The iterator + */ + MapPrototype.entries = function() { + var entries = []; + var strKeys = Object.keys(this.map); + for (var i = 0, entry; i < strKeys.length; i++) + entries.push([(entry=this.map[strKeys[i]]).key, entry.value]); + return arrayIterator(entries); + }; + + /** + * Returns an iterator over keys in the map. + * @returns {Object} The iterator + */ + MapPrototype.keys = function() { + var keys = []; + var strKeys = Object.keys(this.map); + for (var i = 0; i < strKeys.length; i++) + keys.push(this.map[strKeys[i]].key); + return arrayIterator(keys); + }; + + /** + * Returns an iterator over values in the map. + * @returns {!Object} The iterator + */ + MapPrototype.values = function() { + var values = []; + var strKeys = Object.keys(this.map); + for (var i = 0; i < strKeys.length; i++) + values.push(this.map[strKeys[i]].value); + return arrayIterator(values); + }; + + /** + * Iterates over entries in the map, calling a function on each. + * @param {function(this:*, *, *, *)} cb The callback to invoke with value, key, and map arguments. + * @param {Object=} thisArg The `this` value for the callback + */ + MapPrototype.forEach = function(cb, thisArg) { + var strKeys = Object.keys(this.map); + for (var i = 0, entry; i < strKeys.length; i++) + cb.call(thisArg, (entry=this.map[strKeys[i]]).value, entry.key, this); + }; + + /** + * Sets a key in the map to the given value. + * @param {*} key The key + * @param {*} value The value + * @returns {!ProtoBuf.Map} The map instance + */ + MapPrototype.set = function(key, value) { + var keyValue = this.keyElem.verifyValue(key); + var valValue = this.valueElem.verifyValue(value); + this.map[this.keyElem.valueToString(keyValue)] = + { key: keyValue, value: valValue }; + return this; + }; + + /** + * Gets the value corresponding to a key in the map. + * @param {*} key The key + * @returns {*|undefined} The value, or `undefined` if key not present + */ + MapPrototype.get = function(key) { + var keyValue = this.keyElem.valueToString(this.keyElem.verifyValue(key)); + if (!(keyValue in this.map)) + return undefined; + return this.map[keyValue].value; + }; + + /** + * Determines whether the given key is present in the map. + * @param {*} key The key + * @returns {boolean} `true` if the key is present + */ + MapPrototype.has = function(key) { + var keyValue = this.keyElem.valueToString(this.keyElem.verifyValue(key)); + return (keyValue in this.map); + }; + + return Map; + })(ProtoBuf, ProtoBuf.Reflect); + + + /** + * Loads a .proto string and returns the Builder. + * @param {string} proto .proto file contents + * @param {(ProtoBuf.Builder|string|{root: string, file: string})=} builder Builder to append to. Will create a new one if omitted. + * @param {(string|{root: string, file: string})=} filename The corresponding file name if known. Must be specified for imports. + * @return {ProtoBuf.Builder} Builder to create new messages + * @throws {Error} If the definition cannot be parsed or built + * @expose + */ + ProtoBuf.loadProto = function(proto, builder, filename) { + if (typeof builder === 'string' || (builder && typeof builder["file"] === 'string' && typeof builder["root"] === 'string')) + filename = builder, + builder = undefined; + return ProtoBuf.loadJson(ProtoBuf.DotProto.Parser.parse(proto), builder, filename); + }; + + /** + * Loads a .proto string and returns the Builder. This is an alias of {@link ProtoBuf.loadProto}. + * @function + * @param {string} proto .proto file contents + * @param {(ProtoBuf.Builder|string)=} builder Builder to append to. Will create a new one if omitted. + * @param {(string|{root: string, file: string})=} filename The corresponding file name if known. Must be specified for imports. + * @return {ProtoBuf.Builder} Builder to create new messages + * @throws {Error} If the definition cannot be parsed or built + * @expose + */ + ProtoBuf.protoFromString = ProtoBuf.loadProto; // Legacy + + /** + * Loads a .proto file and returns the Builder. + * @param {string|{root: string, file: string}} filename Path to proto file or an object specifying 'file' with + * an overridden 'root' path for all imported files. + * @param {function(?Error, !ProtoBuf.Builder=)=} callback Callback that will receive `null` as the first and + * the Builder as its second argument on success, otherwise the error as its first argument. If omitted, the + * file will be read synchronously and this function will return the Builder. + * @param {ProtoBuf.Builder=} builder Builder to append to. Will create a new one if omitted. + * @return {?ProtoBuf.Builder|undefined} The Builder if synchronous (no callback specified, will be NULL if the + * request has failed), else undefined + * @expose + */ + ProtoBuf.loadProtoFile = function(filename, callback, builder) { + if (callback && typeof callback === 'object') + builder = callback, + callback = null; + else if (!callback || typeof callback !== 'function') + callback = null; + if (callback) + return ProtoBuf.Util.fetch(typeof filename === 'string' ? filename : filename["root"]+"/"+filename["file"], function(contents) { + if (contents === null) { + callback(Error("Failed to fetch file")); + return; + } + try { + callback(null, ProtoBuf.loadProto(contents, builder, filename)); + } catch (e) { + callback(e); + } + }); + var contents = ProtoBuf.Util.fetch(typeof filename === 'object' ? filename["root"]+"/"+filename["file"] : filename); + return contents === null ? null : ProtoBuf.loadProto(contents, builder, filename); + }; + + /** + * Loads a .proto file and returns the Builder. This is an alias of {@link ProtoBuf.loadProtoFile}. + * @function + * @param {string|{root: string, file: string}} filename Path to proto file or an object specifying 'file' with + * an overridden 'root' path for all imported files. + * @param {function(?Error, !ProtoBuf.Builder=)=} callback Callback that will receive `null` as the first and + * the Builder as its second argument on success, otherwise the error as its first argument. If omitted, the + * file will be read synchronously and this function will return the Builder. + * @param {ProtoBuf.Builder=} builder Builder to append to. Will create a new one if omitted. + * @return {!ProtoBuf.Builder|undefined} The Builder if synchronous (no callback specified, will be NULL if the + * request has failed), else undefined + * @expose + */ + ProtoBuf.protoFromFile = ProtoBuf.loadProtoFile; // Legacy + + + /** + * Constructs a new empty Builder. + * @param {Object.=} options Builder options, defaults to global options set on ProtoBuf + * @return {!ProtoBuf.Builder} Builder + * @expose + */ + ProtoBuf.newBuilder = function(options) { + options = options || {}; + if (typeof options['convertFieldsToCamelCase'] === 'undefined') + options['convertFieldsToCamelCase'] = ProtoBuf.convertFieldsToCamelCase; + if (typeof options['populateAccessors'] === 'undefined') + options['populateAccessors'] = ProtoBuf.populateAccessors; + return new ProtoBuf.Builder(options); + }; + + /** + * Loads a .json definition and returns the Builder. + * @param {!*|string} json JSON definition + * @param {(ProtoBuf.Builder|string|{root: string, file: string})=} builder Builder to append to. Will create a new one if omitted. + * @param {(string|{root: string, file: string})=} filename The corresponding file name if known. Must be specified for imports. + * @return {ProtoBuf.Builder} Builder to create new messages + * @throws {Error} If the definition cannot be parsed or built + * @expose + */ + ProtoBuf.loadJson = function(json, builder, filename) { + if (typeof builder === 'string' || (builder && typeof builder["file"] === 'string' && typeof builder["root"] === 'string')) + filename = builder, + builder = null; + if (!builder || typeof builder !== 'object') + builder = ProtoBuf.newBuilder(); + if (typeof json === 'string') + json = JSON.parse(json); + builder["import"](json, filename); + builder.resolveAll(); + return builder; + }; + + /** + * Loads a .json file and returns the Builder. + * @param {string|!{root: string, file: string}} filename Path to json file or an object specifying 'file' with + * an overridden 'root' path for all imported files. + * @param {function(?Error, !ProtoBuf.Builder=)=} callback Callback that will receive `null` as the first and + * the Builder as its second argument on success, otherwise the error as its first argument. If omitted, the + * file will be read synchronously and this function will return the Builder. + * @param {ProtoBuf.Builder=} builder Builder to append to. Will create a new one if omitted. + * @return {?ProtoBuf.Builder|undefined} The Builder if synchronous (no callback specified, will be NULL if the + * request has failed), else undefined + * @expose + */ + ProtoBuf.loadJsonFile = function(filename, callback, builder) { + if (callback && typeof callback === 'object') + builder = callback, + callback = null; + else if (!callback || typeof callback !== 'function') + callback = null; + if (callback) + return ProtoBuf.Util.fetch(typeof filename === 'string' ? filename : filename["root"]+"/"+filename["file"], function(contents) { + if (contents === null) { + callback(Error("Failed to fetch file")); + return; + } + try { + callback(null, ProtoBuf.loadJson(JSON.parse(contents), builder, filename)); + } catch (e) { + callback(e); + } + }); + var contents = ProtoBuf.Util.fetch(typeof filename === 'object' ? filename["root"]+"/"+filename["file"] : filename); + return contents === null ? null : ProtoBuf.loadJson(JSON.parse(contents), builder, filename); + }; + + return ProtoBuf; +}); + +(function() { + 'use strict'; + + function validatePrivKey(privKey) { + if (privKey === undefined || !(privKey instanceof ArrayBuffer) || privKey.byteLength != 32) { + throw new Error("Invalid private key"); + } + } + function validatePubKeyFormat(pubKey) { + if (pubKey === undefined || ((pubKey.byteLength != 33 || new Uint8Array(pubKey)[0] != 5) && pubKey.byteLength != 32)) { + throw new Error("Invalid public key"); + } + if (pubKey.byteLength == 33) { + return pubKey.slice(1); + } else { + console.error("WARNING: Expected pubkey of length 33, please report the ST and client that generated the pubkey"); + return pubKey; + } + } + + function processKeys(raw_keys) { + // prepend version byte + var origPub = new Uint8Array(raw_keys.pubKey); + var pub = new Uint8Array(33); + pub.set(origPub, 1); + pub[0] = 5; + + return { pubKey: pub.buffer, privKey: raw_keys.privKey }; + } + + function wrapCurve25519(curve25519) { + return { + // Curve 25519 crypto + createKeyPair: function(privKey) { + validatePrivKey(privKey); + var raw_keys = curve25519.keyPair(privKey); + if (raw_keys instanceof Promise) { + return raw_keys.then(processKeys); + } else { + return processKeys(raw_keys); + } + }, + ECDHE: function(pubKey, privKey) { + pubKey = validatePubKeyFormat(pubKey); + validatePrivKey(privKey); + + if (pubKey === undefined || pubKey.byteLength != 32) { + throw new Error("Invalid public key"); + } + + return curve25519.sharedSecret(pubKey, privKey); + }, + Ed25519Sign: function(privKey, message) { + validatePrivKey(privKey); + + if (message === undefined) { + throw new Error("Invalid message"); + } + + return curve25519.sign(privKey, message); + }, + Ed25519Verify: function(pubKey, msg, sig) { + pubKey = validatePubKeyFormat(pubKey); + + if (pubKey === undefined || pubKey.byteLength != 32) { + throw new Error("Invalid public key"); + } + + if (msg === undefined) { + throw new Error("Invalid message"); + } + + if (sig === undefined || sig.byteLength != 64) { + throw new Error("Invalid signature"); + } + + return curve25519.verify(pubKey, msg, sig); + } + }; + } + + Internal.Curve = wrapCurve25519(Internal.curve25519); + Internal.Curve.async = wrapCurve25519(Internal.curve25519_async); + + function wrapCurve(curve) { + return { + generateKeyPair: function() { + var privKey = Internal.crypto.getRandomBytes(32); + return curve.createKeyPair(privKey); + }, + createKeyPair: function(privKey) { + return curve.createKeyPair(privKey); + }, + calculateAgreement: function(pubKey, privKey) { + return curve.ECDHE(pubKey, privKey); + }, + verifySignature: function(pubKey, msg, sig) { + return curve.Ed25519Verify(pubKey, msg, sig); + }, + calculateSignature: function(privKey, message) { + return curve.Ed25519Sign(privKey, message); + } + }; + } + + libsignal.Curve = wrapCurve(Internal.Curve); + libsignal.Curve.async = wrapCurve(Internal.Curve.async); + +})(); + +/* vim: ts=4:sw=4 */ + +var Internal = Internal || {}; + +(function() { + 'use strict'; + + var crypto = window.crypto; + + if (!crypto || !crypto.subtle || typeof crypto.getRandomValues !== 'function') { + throw new Error('WebCrypto not found'); + } + + Internal.crypto = { + getRandomBytes: function(size) { + var array = new Uint8Array(size); + crypto.getRandomValues(array); + return array.buffer; + }, + encrypt: function(key, data, iv) { + return crypto.subtle.importKey('raw', key, {name: 'AES-CBC'}, false, ['encrypt']).then(function(key) { + return crypto.subtle.encrypt({name: 'AES-CBC', iv: new Uint8Array(iv)}, key, data); + }); + }, + decrypt: function(key, data, iv) { + return crypto.subtle.importKey('raw', key, {name: 'AES-CBC'}, false, ['decrypt']).then(function(key) { + return crypto.subtle.decrypt({name: 'AES-CBC', iv: new Uint8Array(iv)}, key, data); + }); + }, + sign: function(key, data) { + return crypto.subtle.importKey('raw', key, {name: 'HMAC', hash: {name: 'SHA-256'}}, false, ['sign']).then(function(key) { + return crypto.subtle.sign( {name: 'HMAC', hash: 'SHA-256'}, key, data); + }); + }, + + HKDF: function(input, salt, info) { + // Specific implementation of RFC 5869 that only returns the first 3 32-byte chunks + // TODO: We dont always need the third chunk, we might skip it + return Internal.crypto.sign(salt, input).then(function(PRK) { + var infoBuffer = new ArrayBuffer(info.byteLength + 1 + 32); + var infoArray = new Uint8Array(infoBuffer); + infoArray.set(new Uint8Array(info), 32); + infoArray[infoArray.length - 1] = 1; + return Internal.crypto.sign(PRK, infoBuffer.slice(32)).then(function(T1) { + infoArray.set(new Uint8Array(T1)); + infoArray[infoArray.length - 1] = 2; + return Internal.crypto.sign(PRK, infoBuffer).then(function(T2) { + infoArray.set(new Uint8Array(T2)); + infoArray[infoArray.length - 1] = 3; + return Internal.crypto.sign(PRK, infoBuffer).then(function(T3) { + return [ T1, T2, T3 ]; + }); + }); + }); + }); + }, + + // Curve 25519 crypto + createKeyPair: function(privKey) { + if (privKey === undefined) { + privKey = Internal.crypto.getRandomBytes(32); + } + return Internal.Curve.async.createKeyPair(privKey); + }, + ECDHE: function(pubKey, privKey) { + return Internal.Curve.async.ECDHE(pubKey, privKey); + }, + Ed25519Sign: function(privKey, message) { + return Internal.Curve.async.Ed25519Sign(privKey, message); + }, + Ed25519Verify: function(pubKey, msg, sig) { + return Internal.Curve.async.Ed25519Verify(pubKey, msg, sig); + } + }; + + + // HKDF for TextSecure has a bit of additional handling - salts always end up being 32 bytes + Internal.HKDF = function(input, salt, info) { + if (salt.byteLength != 32) { + throw new Error("Got salt of incorrect length"); + } + + return Internal.crypto.HKDF(input, salt, util.toArrayBuffer(info)); + }; + + Internal.verifyMAC = function(data, key, mac, length) { + return Internal.crypto.sign(key, data).then(function(calculated_mac) { + if (mac.byteLength != length || calculated_mac.byteLength < length) { + throw new Error("Bad MAC length"); + } + var a = new Uint8Array(calculated_mac); + var b = new Uint8Array(mac); + var result = 0; + for (var i=0; i < mac.byteLength; ++i) { + result = result | (a[i] ^ b[i]); + } + if (result !== 0) { + throw new Error("Bad MAC"); + } + }); + }; + + libsignal.HKDF = { + deriveSecrets: function(input, salt, info) { + return Internal.HKDF(input, salt, info); + } + }; + + libsignal.crypto = { + encrypt: function(key, data, iv) { + return Internal.crypto.encrypt(key, data, iv); + }, + decrypt: function(key, data, iv) { + return Internal.crypto.decrypt(key, data, iv); + }, + calculateMAC: function(key, data) { + return Internal.crypto.sign(key, data); + }, + verifyMAC: function(data, key, mac, length) { + return Internal.verifyMAC(data, key, mac, length); + }, + getRandomBytes: function(size) { + return Internal.crypto.getRandomBytes(size); + } + }; + +})(); + +/* + * vim: ts=4:sw=4 + */ + +var util = (function() { + 'use strict'; + + var StaticArrayBufferProto = new ArrayBuffer().__proto__; + + return { + toString: function(thing) { + if (typeof thing == 'string') { + return thing; + } + return new dcodeIO.ByteBuffer.wrap(thing).toString('binary'); + }, + toArrayBuffer: function(thing) { + if (thing === undefined) { + return undefined; + } + if (thing === Object(thing)) { + if (thing.__proto__ == StaticArrayBufferProto) { + return thing; + } + } + + var str; + if (typeof thing == "string") { + str = thing; + } else { + throw new Error("Tried to convert a non-string of type " + typeof thing + " to an array buffer"); + } + return new dcodeIO.ByteBuffer.wrap(thing, 'binary').toArrayBuffer(); + }, + isEqual: function(a, b) { + // TODO: Special-case arraybuffers, etc + if (a === undefined || b === undefined) { + return false; + } + a = util.toString(a); + b = util.toString(b); + var maxLength = Math.max(a.length, b.length); + if (maxLength < 5) { + throw new Error("a/b compare too short"); + } + return a.substring(0, Math.min(maxLength, a.length)) == b.substring(0, Math.min(maxLength, b.length)); + } + }; +})(); + +function isNonNegativeInteger(n) { + return (typeof n === 'number' && (n % 1) === 0 && n >= 0); +} + +var KeyHelper = { + generateIdentityKeyPair: function() { + return Internal.crypto.createKeyPair(); + }, + + generateRegistrationId: function() { + var registrationId = new Uint16Array(Internal.crypto.getRandomBytes(2))[0]; + return registrationId & 0x3fff; + }, + + generateSignedPreKey: function (identityKeyPair, signedKeyId) { + if (!(identityKeyPair.privKey instanceof ArrayBuffer) || + identityKeyPair.privKey.byteLength != 32 || + !(identityKeyPair.pubKey instanceof ArrayBuffer) || + identityKeyPair.pubKey.byteLength != 33) { + throw new TypeError('Invalid argument for identityKeyPair'); + } + if (!isNonNegativeInteger(signedKeyId)) { + throw new TypeError( + 'Invalid argument for signedKeyId: ' + signedKeyId + ); + } + + return Internal.crypto.createKeyPair().then(function(keyPair) { + return Internal.crypto.Ed25519Sign(identityKeyPair.privKey, keyPair.pubKey).then(function(sig) { + return { + keyId : signedKeyId, + keyPair : keyPair, + signature : sig + }; + }); + }); + }, + + generatePreKey: function(keyId) { + if (!isNonNegativeInteger(keyId)) { + throw new TypeError('Invalid argument for keyId: ' + keyId); + } + + return Internal.crypto.createKeyPair().then(function(keyPair) { + return { keyId: keyId, keyPair: keyPair }; + }); + } +}; + +libsignal.KeyHelper = KeyHelper; + +var Internal = Internal || {}; + +Internal.protoText = function() { + var protoText = {}; + + protoText['protos/WhisperTextProtocol.proto'] = + 'package textsecure;\n' + + 'option java_package = "org.whispersystems.libsignal.protocol";\n' + + 'option java_outer_classname = "WhisperProtos";\n' + + 'message WhisperMessage {\n' + + ' optional bytes ephemeralKey = 1;\n' + + ' optional uint32 counter = 2;\n' + + ' optional uint32 previousCounter = 3;\n' + + ' optional bytes ciphertext = 4; // PushMessageContent\n' + + '}\n' + + 'message PreKeyWhisperMessage {\n' + + ' optional uint32 registrationId = 5;\n' + + ' optional uint32 preKeyId = 1;\n' + + ' optional uint32 signedPreKeyId = 6;\n' + + ' optional bytes baseKey = 2;\n' + + ' optional bytes identityKey = 3;\n' + + ' optional bytes message = 4; // WhisperMessage\n' + + '}\n' + + 'message KeyExchangeMessage {\n' + + ' optional uint32 id = 1;\n' + + ' optional bytes baseKey = 2;\n' + + ' optional bytes ephemeralKey = 3;\n' + + ' optional bytes identityKey = 4;\n' + + ' optional bytes baseKeySignature = 5;\n' + + '}\n' + +'' ; + + return protoText; +}(); +/* vim: ts=4:sw=4 */ +var Internal = Internal || {}; + +Internal.protobuf = function() { + 'use strict'; + + function loadProtoBufs(filename) { + return dcodeIO.ProtoBuf.loadProto(Internal.protoText['protos/' + filename]).build('textsecure'); + } + + var protocolMessages = loadProtoBufs('WhisperTextProtocol.proto'); + + return { + WhisperMessage : protocolMessages.WhisperMessage, + PreKeyWhisperMessage : protocolMessages.PreKeyWhisperMessage + }; +}(); + +/* vim: ts=4:sw=4 */ + +var Internal = Internal || {}; + +Internal.BaseKeyType = { + OURS: 1, + THEIRS: 2 +}; +Internal.ChainType = { + SENDING: 1, + RECEIVING: 2 +}; + +Internal.SessionRecord = function() { + 'use strict'; + var MESSAGE_LOST_THRESHOLD_MS = 1000*60*60*24*7; + + var StaticByteBufferProto = new dcodeIO.ByteBuffer().__proto__; + var StaticArrayBufferProto = new ArrayBuffer().__proto__; + var StaticUint8ArrayProto = new Uint8Array().__proto__; + + function isStringable(thing) { + return (thing === Object(thing) && + (thing.__proto__ == StaticArrayBufferProto || + thing.__proto__ == StaticUint8ArrayProto || + thing.__proto__ == StaticByteBufferProto)); + } + function ensureStringed(thing) { + if (typeof thing == "string" || typeof thing == "number" || typeof thing == "boolean") { + return thing; + } else if (isStringable(thing)) { + return util.toString(thing); + } else if (thing instanceof Array) { + var array = []; + for (var i = 0; i < thing.length; i++) { + array[i] = ensureStringed(thing[i]); + } + return array; + } else if (thing === Object(thing)) { + var obj = {}; + for (var key in thing) { + obj[key] = ensureStringed(thing[key]); + } + return obj; + } else if (thing === null) { + return null; + } else { + throw new Error("unsure of how to jsonify object of type " + typeof thing); + } + } + + function jsonThing(thing) { + return JSON.stringify(ensureStringed(thing)); //TODO: jquery??? + } + + var SessionRecord = function(identityKey, registrationId) { + this._sessions = {}; + identityKey = util.toString(identityKey); + if (typeof identityKey !== 'string') { + throw new Error('SessionRecord: Invalid identityKey'); + } + this.identityKey = identityKey; + this.registrationId = registrationId; + + if (this.registrationId === undefined || typeof this.registrationId !== 'number') { + this.registrationId = null; + } + }; + + SessionRecord.deserialize = function(serialized) { + var data = JSON.parse(serialized); + var record = new SessionRecord(data.identityKey, data.registrationId); + record._sessions = data.sessions; + if (record._sessions === undefined || record._sessions === null || typeof record._sessions !== "object" || Array.isArray(record._sessions)) { + throw new Error("Error deserializing SessionRecord"); + } + if (record.identityKey === undefined || record.registrationId === undefined) { + throw new Error("Error deserializing SessionRecord"); + } + return record; + }; + + SessionRecord.prototype = { + serialize: function() { + return jsonThing({ + sessions : this._sessions, + registrationId : this.registrationId, + identityKey : this.identityKey + }); + }, + haveOpenSession: function() { + return this.registrationId !== null; + }, + + getSessionByBaseKey: function(baseKey) { + var session = this._sessions[util.toString(baseKey)]; + if (session && session.indexInfo.baseKeyType === Internal.BaseKeyType.OURS) { + console.log("Tried to lookup a session using our basekey"); + return undefined; + } + return session; + }, + getSessionByRemoteEphemeralKey: function(remoteEphemeralKey) { + this.detectDuplicateOpenSessions(); + var sessions = this._sessions; + + var searchKey = util.toString(remoteEphemeralKey); + + var openSession; + for (var key in sessions) { + if (sessions[key].indexInfo.closed == -1) { + openSession = sessions[key]; + } + if (sessions[key][searchKey] !== undefined) { + return sessions[key]; + } + } + if (openSession !== undefined) { + return openSession; + } + + return undefined; + }, + getOpenSession: function() { + var sessions = this._sessions; + if (sessions === undefined) { + return undefined; + } + + this.detectDuplicateOpenSessions(); + + for (var key in sessions) { + if (sessions[key].indexInfo.closed == -1) { + return sessions[key]; + } + } + return undefined; + }, + detectDuplicateOpenSessions: function() { + var openSession; + var sessions = this._sessions; + for (var key in sessions) { + if (sessions[key].indexInfo.closed == -1) { + if (openSession !== undefined) { + throw new Error("Datastore inconsistensy: multiple open sessions"); + } + openSession = sessions[key]; + } + } + }, + updateSessionState: function(session, registrationId) { + var sessions = this._sessions; + + this.removeOldChains(session); + + if (this.identityKey === null) { + this.identityKey = session.indexInfo.remoteIdentityKey; + } + if (util.toString(this.identityKey) !== util.toString(session.indexInfo.remoteIdentityKey)) { + var e = new Error("Identity key changed at session save time"); + e.identityKey = session.indexInfo.remoteIdentityKey.toArrayBuffer(); + throw e; + } + + sessions[util.toString(session.indexInfo.baseKey)] = session; + + this.removeOldSessions(); + + var openSessionRemaining = false; + for (var key in sessions) { + if (sessions[key].indexInfo.closed == -1) { + openSessionRemaining = true; + } + } + if (!openSessionRemaining) { // Used as a flag to get new pre keys for the next session + this.registrationId = null; + } else if (this.registrationId === null && registrationId !== undefined) { + this.registrationId = registrationId; + } else if (this.registrationId === null) { + throw new Error("Had open sessions on a record that had no registrationId set"); + } + }, + archiveCurrentState: function() { + var open_session = this.getOpenSession(); + if (open_session !== undefined) { + this.closeSession(open_session); + this.updateSessionState(open_session); + } + }, + closeSession: function(session) { + if (session.indexInfo.closed > -1) { + return; + } + + // After this has run, we can still receive messages on ratchet chains which + // were already open (unless we know we dont need them), + // but we cannot send messages or step the ratchet + + // Delete current sending ratchet + delete session[util.toString(session.currentRatchet.ephemeralKeyPair.pubKey)]; + // Move all receive ratchets to the oldRatchetList to mark them for deletion + for (var i in session) { + if (session[i].chainKey !== undefined && session[i].chainKey.key !== undefined) { + session.oldRatchetList[session.oldRatchetList.length] = { + added: Date.now(), ephemeralKey: i + }; + } + } + // Delete current root key and our ephemeral key pair to disallow ratchet stepping + delete session.currentRatchet.rootKey; + delete session.currentRatchet.ephemeralKeyPair; + session.indexInfo.closed = Date.now(); + this.removeOldChains(session); + }, + removeOldChains: function(session) { + // Sending ratchets are always removed when we step because we never need them again + // Receiving ratchets are added to the oldRatchetList, which we parse + // here and remove all but the last four. + while (session.oldRatchetList.length > 4) { + var index = 0; + var oldest = session.oldRatchetList[0]; + for (var i = 0; i < session.oldRatchetList.length; i++) { + if (session.oldRatchetList[i].added < oldest.added) { + oldest = session.oldRatchetList[i]; + index = i; + } + } + delete session[util.toString(oldest.ephemeralKey)]; + session.oldRatchetList.splice(index, 1); + } + }, + removeOldSessions: function() { + // Retain only the last 20 sessions + var sessions = this._sessions; + var oldestBaseKey, oldestSession; + while (Object.keys(sessions).length > 20) { + for (var key in sessions) { + var session = sessions[key]; + if (session.indexInfo.closed > -1 && // session is closed + (!oldestSession || session.indexInfo.closed < oldestSession.indexInfo.closed)) { + oldestBaseKey = key; + oldestSession = session; + } + } + console.log("Deleting session closed at", oldestSession.indexInfo.closed); + delete sessions[util.toString(oldestBaseKey)]; + } + }, + }; + + return SessionRecord; +}(); + +function SignalProtocolAddress(name, deviceId) { + this.name = name; + this.deviceId = deviceId; +} + +SignalProtocolAddress.prototype = { + getName: function() { + return this.name; + }, + getDeviceId: function() { + return this.deviceId; + }, + toString: function() { + return this.name + '.' + this.deviceId; + }, + equals: function(other) { + if (!(other instanceof SignalProtocolAddress)) { return false; } + return other.name === this.name && other.deviceId === this.deviceId; + } +}; + +libsignal.SignalProtocolAddress = function(name, deviceId) { + var address = new SignalProtocolAddress(name, deviceId); + + ['getName', 'getDeviceId', 'toString', 'equals'].forEach(function(method) { + this[method] = address[method].bind(address); + }.bind(this)); +}; + +libsignal.SignalProtocolAddress.fromString = function(encodedAddress) { + if (typeof encodedAddress !== 'string' || !encodedAddress.match(/.*\.\d+/)) { + throw new Error('Invalid SignalProtocolAddress string'); + } + var parts = encodedAddress.split('.'); + return new libsignal.SignalProtocolAddress(parts[0], parseInt(parts[1])); +}; + +function SessionBuilder(storage, remoteAddress) { + this.remoteAddress = remoteAddress; + this.storage = storage; +} + +SessionBuilder.prototype = { + processPreKey: function(device) { + return Internal.SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { + return this.storage.isTrustedIdentity( + this.remoteAddress.getName(), device.identityKey + ).then(function(trusted) { + if (!trusted) { + throw new Error('Identity key changed'); + } + + return Internal.crypto.Ed25519Verify( + device.identityKey, + device.signedPreKey.publicKey, + device.signedPreKey.signature + ); + }).then(function() { + return Internal.crypto.createKeyPair(); + }).then(function(baseKey) { + var devicePreKey = (device.preKey.publicKey); + return this.initSession(true, baseKey, undefined, device.identityKey, + devicePreKey, device.signedPreKey.publicKey + ).then(function(session) { + session.pendingPreKey = { + preKeyId : device.preKey.keyId, + signedKeyId : device.signedPreKey.keyId, + baseKey : baseKey.pubKey + }; + return session; + }); + }.bind(this)).then(function(session) { + var address = this.remoteAddress.toString(); + return this.storage.loadSession(address).then(function(serialized) { + var record; + if (serialized !== undefined) { + record = Internal.SessionRecord.deserialize(serialized); + } else { + record = new Internal.SessionRecord(device.identityKey, device.registrationId); + } + + record.archiveCurrentState(); + record.updateSessionState(session, device.registrationId); + return Promise.all([ + this.storage.storeSession(address, record.serialize()), + this.storage.saveIdentity(this.remoteAddress.getName(), record.identityKey) + ]); + }.bind(this)); + }.bind(this)); + }.bind(this)); + }, + processV3: function(record, message) { + var preKeyPair, signedPreKeyPair, session; + return this.storage.isTrustedIdentity( + this.remoteAddress.getName(), message.identityKey.toArrayBuffer() + ).then(function(trusted) { + if (!trusted) { + var e = new Error('Unknown identity key'); + e.identityKey = message.identityKey.toArrayBuffer(); + throw e; + } + return Promise.all([ + this.storage.loadPreKey(message.preKeyId), + this.storage.loadSignedPreKey(message.signedPreKeyId), + ]).then(function(results) { + preKeyPair = results[0]; + signedPreKeyPair = results[1]; + }); + }.bind(this)).then(function() { + session = record.getSessionByBaseKey(message.baseKey); + if (session) { + console.log("Duplicate PreKeyMessage for session"); + return; + } + + session = record.getOpenSession(); + + if (signedPreKeyPair === undefined) { + // Session may or may not be the right one, but if its not, we + // can't do anything about it ...fall through and let + // decryptWhisperMessage handle that case + if (session !== undefined && session.currentRatchet !== undefined) { + return; + } else { + throw new Error("Missing Signed PreKey for PreKeyWhisperMessage"); + } + } + + if (session !== undefined) { + record.archiveCurrentState(); + } + if (message.preKeyId && !preKeyPair) { + console.log('Invalid prekey id'); + } + return this.initSession(false, preKeyPair, signedPreKeyPair, + message.identityKey.toArrayBuffer(), + message.baseKey.toArrayBuffer(), undefined + ).then(function(new_session) { + // Note that the session is not actually saved until the very + // end of decryptWhisperMessage ... to ensure that the sender + // actually holds the private keys for all reported pubkeys + record.updateSessionState(new_session, message.registrationId); + return this.storage.saveIdentity(this.remoteAddress.getName(), message.identityKey.toArrayBuffer()).then(function() { + return message.preKeyId; + }); + }.bind(this)); + }.bind(this)); + }, + initSession: function(isInitiator, ourEphemeralKey, ourSignedKey, + theirIdentityPubKey, theirEphemeralPubKey, + theirSignedPubKey) { + return this.storage.getIdentityKeyPair().then(function(ourIdentityKey) { + if (isInitiator) { + if (ourSignedKey !== undefined) { + throw new Error("Invalid call to initSession"); + } + ourSignedKey = ourEphemeralKey; + } else { + if (theirSignedPubKey !== undefined) { + throw new Error("Invalid call to initSession"); + } + theirSignedPubKey = theirEphemeralPubKey; + } + + var sharedSecret; + if (ourEphemeralKey === undefined || theirEphemeralPubKey === undefined) { + sharedSecret = new Uint8Array(32 * 4); + } else { + sharedSecret = new Uint8Array(32 * 5); + } + + for (var i = 0; i < 32; i++) { + sharedSecret[i] = 0xff; + } + + return Promise.all([ + Internal.crypto.ECDHE(theirSignedPubKey, ourIdentityKey.privKey), + Internal.crypto.ECDHE(theirIdentityPubKey, ourSignedKey.privKey), + Internal.crypto.ECDHE(theirSignedPubKey, ourSignedKey.privKey) + ]).then(function(ecRes) { + if (isInitiator) { + sharedSecret.set(new Uint8Array(ecRes[0]), 32); + sharedSecret.set(new Uint8Array(ecRes[1]), 32 * 2); + } else { + sharedSecret.set(new Uint8Array(ecRes[0]), 32 * 2); + sharedSecret.set(new Uint8Array(ecRes[1]), 32); + } + sharedSecret.set(new Uint8Array(ecRes[2]), 32 * 3); + + if (ourEphemeralKey !== undefined && theirEphemeralPubKey !== undefined) { + return Internal.crypto.ECDHE( + theirEphemeralPubKey, ourEphemeralKey.privKey + ).then(function(ecRes4) { + sharedSecret.set(new Uint8Array(ecRes4), 32 * 4); + }); + } + }).then(function() { + return Internal.HKDF(sharedSecret.buffer, new ArrayBuffer(32), "WhisperText"); + }).then(function(masterKey) { + var session = { + currentRatchet: { + rootKey : masterKey[0], + lastRemoteEphemeralKey : theirSignedPubKey, + previousCounter : 0 + }, + indexInfo: { + remoteIdentityKey : theirIdentityPubKey, + closed : -1 + }, + oldRatchetList: [] + }; + + // If we're initiating we go ahead and set our first sending ephemeral key now, + // otherwise we figure it out when we first maybeStepRatchet with the remote's ephemeral key + if (isInitiator) { + session.indexInfo.baseKey = ourEphemeralKey.pubKey; + session.indexInfo.baseKeyType = Internal.BaseKeyType.OURS; + return Internal.crypto.createKeyPair().then(function(ourSendingEphemeralKey) { + session.currentRatchet.ephemeralKeyPair = ourSendingEphemeralKey; + return this.calculateSendingRatchet(session, theirSignedPubKey).then(function() { + return session; + }); + }.bind(this)); + } else { + session.indexInfo.baseKey = theirEphemeralPubKey; + session.indexInfo.baseKeyType = Internal.BaseKeyType.THEIRS; + session.currentRatchet.ephemeralKeyPair = ourSignedKey; + return session; + } + }.bind(this)); + }.bind(this)); + }, + calculateSendingRatchet: function(session, remoteKey) { + var ratchet = session.currentRatchet; + + return Internal.crypto.ECDHE( + remoteKey, util.toArrayBuffer(ratchet.ephemeralKeyPair.privKey) + ).then(function(sharedSecret) { + return Internal.HKDF( + sharedSecret, util.toArrayBuffer(ratchet.rootKey), "WhisperRatchet" + ); + }).then(function(masterKey) { + session[util.toString(ratchet.ephemeralKeyPair.pubKey)] = { + messageKeys : {}, + chainKey : { counter : -1, key : masterKey[1] }, + chainType : Internal.ChainType.SENDING + }; + ratchet.rootKey = masterKey[0]; + }); + } + +}; + +libsignal.SessionBuilder = function (storage, remoteAddress) { + var builder = new SessionBuilder(storage, remoteAddress); + this.processPreKey = builder.processPreKey.bind(builder); + this.processV3 = builder.processV3.bind(builder); +}; + +function SessionCipher(storage, remoteAddress) { + this.remoteAddress = remoteAddress; + this.storage = storage; +} + +SessionCipher.prototype = { + getRecord: function(encodedNumber) { + return this.storage.loadSession(encodedNumber).then(function(serialized) { + if (serialized === undefined) { + return undefined; + } + return Internal.SessionRecord.deserialize(serialized); + }); + }, + encrypt: function(buffer, encoding) { + buffer = dcodeIO.ByteBuffer.wrap(buffer, encoding).toArrayBuffer(); + return Internal.SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { + if (!(buffer instanceof ArrayBuffer)) { + throw new Error("Expected buffer to be an ArrayBuffer"); + } + + var address = this.remoteAddress.toString(); + var ourIdentityKey, myRegistrationId, record, session, chain; + + var msg = new Internal.protobuf.WhisperMessage(); + var paddedPlaintext = new Uint8Array( + this.getPaddedMessageLength(buffer.byteLength + 1) - 1 + ); + paddedPlaintext.set(new Uint8Array(buffer)); + paddedPlaintext[buffer.byteLength] = 0x80; + + return Promise.all([ + this.storage.getIdentityKeyPair(), + this.storage.getLocalRegistrationId(), + this.getRecord(address) + ]).then(function(results) { + ourIdentityKey = results[0]; + myRegistrationId = results[1]; + record = results[2]; + if (!record) { + throw new Error("No record for " + address); + } + session = record.getOpenSession(); + if (!session) { + throw new Error("No session to encrypt message for " + address); + } + + msg.ephemeralKey = util.toArrayBuffer( + session.currentRatchet.ephemeralKeyPair.pubKey + ); + chain = session[util.toString(msg.ephemeralKey)]; + if (chain.chainType === Internal.ChainType.RECEIVING) { + throw new Error("Tried to encrypt on a receiving chain"); + } + + return this.fillMessageKeys(chain, chain.chainKey.counter + 1); + }.bind(this)).then(function() { + return Internal.HKDF( + util.toArrayBuffer(chain.messageKeys[chain.chainKey.counter]), + new ArrayBuffer(32), "WhisperMessageKeys"); + }).then(function(keys) { + delete chain.messageKeys[chain.chainKey.counter]; + msg.counter = chain.chainKey.counter; + msg.previousCounter = session.currentRatchet.previousCounter; + + return Internal.crypto.encrypt( + keys[0], paddedPlaintext.buffer, keys[2].slice(0, 16) + ).then(function(ciphertext) { + msg.ciphertext = ciphertext; + var encodedMsg = msg.toArrayBuffer(); + + var macInput = new Uint8Array(encodedMsg.byteLength + 33*2 + 1); + macInput.set(new Uint8Array(util.toArrayBuffer(ourIdentityKey.pubKey))); + macInput.set(new Uint8Array(util.toArrayBuffer(session.indexInfo.remoteIdentityKey)), 33); + macInput[33*2] = (3 << 4) | 3; + macInput.set(new Uint8Array(encodedMsg), 33*2 + 1); + + return Internal.crypto.sign(keys[1], macInput.buffer).then(function(mac) { + var result = new Uint8Array(encodedMsg.byteLength + 9); + result[0] = (3 << 4) | 3; + result.set(new Uint8Array(encodedMsg), 1); + result.set(new Uint8Array(mac, 0, 8), encodedMsg.byteLength + 1); + + record.updateSessionState(session); + return this.storage.storeSession(address, record.serialize()).then(function() { + return result; + }); + }.bind(this)); + }.bind(this)); + }.bind(this)).then(function(message) { + if (session.pendingPreKey !== undefined) { + var preKeyMsg = new Internal.protobuf.PreKeyWhisperMessage(); + preKeyMsg.identityKey = util.toArrayBuffer(ourIdentityKey.pubKey); + preKeyMsg.registrationId = myRegistrationId; + + preKeyMsg.baseKey = util.toArrayBuffer(session.pendingPreKey.baseKey); + preKeyMsg.preKeyId = session.pendingPreKey.preKeyId; + preKeyMsg.signedPreKeyId = session.pendingPreKey.signedKeyId; + + preKeyMsg.message = message; + var result = String.fromCharCode((3 << 4) | 3) + util.toString(preKeyMsg.encode()); + return {type: 3, body: result}; + } else { + return {type: 1, body: util.toString(message)}; + } + }); + }.bind(this)); + }, + getPaddedMessageLength: function(messageLength) { + var messageLengthWithTerminator = messageLength + 1; + var messagePartCount = Math.floor(messageLengthWithTerminator / 160); + + if (messageLengthWithTerminator % 160 !== 0) { + messagePartCount++; + } + + return messagePartCount * 160; + }, + decryptWhisperMessage: function(buffer, encoding) { + buffer = dcodeIO.ByteBuffer.wrap(buffer, encoding).toArrayBuffer(); + return Internal.SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { + var address = this.remoteAddress.toString(); + return this.getRecord(address).then(function(record) { + if (!record) { + throw new Error("No record for device " + address); + } + var messageProto = buffer.slice(1, buffer.byteLength - 8); + var message = Internal.protobuf.WhisperMessage.decode(messageProto); + var remoteEphemeralKey = message.ephemeralKey.toArrayBuffer(); + var session = record.getSessionByRemoteEphemeralKey(remoteEphemeralKey); + return this.doDecryptWhisperMessage(buffer, session).then(function(plaintext) { + record.updateSessionState(session); + return this.storage.storeSession(address, record.serialize()).then(function() { + return plaintext; + }); + }.bind(this)); + }.bind(this)); + }.bind(this)); + }, + decryptPreKeyWhisperMessage: function(buffer, encoding) { + buffer = dcodeIO.ByteBuffer.wrap(buffer, encoding); + var version = buffer.readUint8(); + if ((version & 0xF) > 3 || (version >> 4) < 3) { // min version > 3 or max version < 3 + throw new Error("Incompatible version number on PreKeyWhisperMessage"); + } + return Internal.SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { + var address = this.remoteAddress.toString(); + return this.getRecord(address).then(function(record) { + var preKeyProto = Internal.protobuf.PreKeyWhisperMessage.decode(buffer); + if (!record) { + if (preKeyProto.registrationId === undefined) { + throw new Error("No registrationId"); + } + record = new Internal.SessionRecord( + util.toString(preKeyProto.identityKey), + preKeyProto.registrationId + ); + } + var builder = new SessionBuilder(this.storage, this.remoteAddress); + return builder.processV3(record, preKeyProto).then(function(preKeyId) { + var session = record.getSessionByBaseKey(preKeyProto.baseKey); + return this.doDecryptWhisperMessage( + preKeyProto.message.toArrayBuffer(), session + ).then(function(plaintext) { + record.updateSessionState(session); + return this.storage.storeSession(address, record.serialize()).then(function() { + if (preKeyId !== undefined) { + return this.storage.removePreKey(preKeyId); + } + }.bind(this)).then(function() { + return plaintext; + }); + }.bind(this)); + }.bind(this)); + }.bind(this)); + }.bind(this)); + }, + doDecryptWhisperMessage: function(messageBytes, session) { + if (!messageBytes instanceof ArrayBuffer) { + throw new Error("Expected messageBytes to be an ArrayBuffer"); + } + var version = (new Uint8Array(messageBytes))[0]; + if ((version & 0xF) > 3 || (version >> 4) < 3) { // min version > 3 or max version < 3 + throw new Error("Incompatible version number on WhisperMessage"); + } + var messageProto = messageBytes.slice(1, messageBytes.byteLength- 8); + var mac = messageBytes.slice(messageBytes.byteLength - 8, messageBytes.byteLength); + + var message = Internal.protobuf.WhisperMessage.decode(messageProto); + var remoteEphemeralKey = message.ephemeralKey.toArrayBuffer(); + + if (session === undefined) { + throw new Error("No session found to decrypt message from " + this.remoteAddress.toString()); + } + if (session.indexInfo.closed != -1) { + console.log('decrypting message for closed session'); + } + + return this.maybeStepRatchet(session, remoteEphemeralKey, message.previousCounter).then(function() { + var chain = session[util.toString(message.ephemeralKey)]; + if (chain.chainType === Internal.ChainType.SENDING) { + throw new Error("Tried to decrypt on a sending chain"); + } + + return this.fillMessageKeys(chain, message.counter).then(function() { + var messageKey = chain.messageKeys[message.counter]; + if (messageKey === undefined) { + var e = new Error("Message key not found. The counter was repeated or the key was not filled."); + e.name = 'MessageCounterError'; + throw e; + } + delete chain.messageKeys[message.counter]; + return Internal.HKDF(util.toArrayBuffer(messageKey), new ArrayBuffer(32), "WhisperMessageKeys"); + }); + }.bind(this)).then(function(keys) { + return this.storage.getIdentityKeyPair().then(function(ourIdentityKey) { + + var macInput = new Uint8Array(messageProto.byteLength + 33*2 + 1); + macInput.set(new Uint8Array(util.toArrayBuffer(session.indexInfo.remoteIdentityKey))); + macInput.set(new Uint8Array(util.toArrayBuffer(ourIdentityKey.pubKey)), 33); + macInput[33*2] = (3 << 4) | 3; + macInput.set(new Uint8Array(messageProto), 33*2 + 1); + + return this.verifyMAC(macInput.buffer, keys[1], mac, 8); + }.bind(this)).then(function() { + return Internal.crypto.decrypt(keys[0], message.ciphertext.toArrayBuffer(), keys[2].slice(0, 16)); + }); + }.bind(this)).then(function(paddedPlaintext) { + paddedPlaintext = new Uint8Array(paddedPlaintext); + var plaintext; + for (var i = paddedPlaintext.length - 1; i >= 0; i--) { + if (paddedPlaintext[i] == 0x80) { + plaintext = new Uint8Array(i); + plaintext.set(paddedPlaintext.subarray(0, i)); + plaintext = plaintext.buffer; + break; + } else if (paddedPlaintext[i] !== 0x00) { + throw new Error('Invalid padding'); + } + } + + delete session.pendingPreKey; + return plaintext; + }); + }, + fillMessageKeys: function(chain, counter) { + if (Object.keys(chain.messageKeys).length >= 1000) { + console.log("Too many message keys for chain"); + return Promise.resolve(); // Stalker, much? + } + + if (chain.chainKey.counter >= counter) { + return Promise.resolve(); // Already calculated + } + + if (chain.chainKey.key === undefined) { + throw new Error("Got invalid request to extend chain after it was already closed"); + } + + var key = util.toArrayBuffer(chain.chainKey.key); + var byteArray = new Uint8Array(1); + byteArray[0] = 1; + return Internal.crypto.sign(key, byteArray.buffer).then(function(mac) { + byteArray[0] = 2; + return Internal.crypto.sign(key, byteArray.buffer).then(function(key) { + chain.messageKeys[chain.chainKey.counter + 1] = mac; + chain.chainKey.key = key; + chain.chainKey.counter += 1; + return this.fillMessageKeys(chain, counter); + }.bind(this)); + }.bind(this)); + }, + maybeStepRatchet: function(session, remoteKey, previousCounter) { + if (session[util.toString(remoteKey)] !== undefined) { + return Promise.resolve(); + } + + var ratchet = session.currentRatchet; + + return Promise.resolve().then(function() { + var previousRatchet = session[util.toString(ratchet.lastRemoteEphemeralKey)]; + if (previousRatchet !== undefined) { + return this.fillMessageKeys(previousRatchet, previousCounter).then(function() { + delete previousRatchet.chainKey.key; + session.oldRatchetList[session.oldRatchetList.length] = { + added : Date.now(), + ephemeralKey : ratchet.lastRemoteEphemeralKey + }; + }); + } + }.bind(this)).then(function() { + return this.calculateRatchet(session, remoteKey, false).then(function() { + // Now swap the ephemeral key and calculate the new sending chain + var previousRatchet = util.toString(ratchet.ephemeralKeyPair.pubKey); + if (session[previousRatchet] !== undefined) { + ratchet.previousCounter = session[previousRatchet].chainKey.counter; + delete session[previousRatchet]; + } + + return Internal.crypto.createKeyPair().then(function(keyPair) { + ratchet.ephemeralKeyPair = keyPair; + return this.calculateRatchet(session, remoteKey, true).then(function() { + ratchet.lastRemoteEphemeralKey = remoteKey; + }.bind(this)); + }.bind(this)); + }.bind(this)); + }.bind(this)); + }, + calculateRatchet: function(session, remoteKey, sending) { + var ratchet = session.currentRatchet; + + return Internal.crypto.ECDHE(remoteKey, util.toArrayBuffer(ratchet.ephemeralKeyPair.privKey)).then(function(sharedSecret) { + return Internal.HKDF(sharedSecret, util.toArrayBuffer(ratchet.rootKey), "WhisperRatchet").then(function(masterKey) { + var ephemeralPublicKey; + if (sending) { + ephemeralPublicKey = ratchet.ephemeralKeyPair.pubKey; + } + else { + ephemeralPublicKey = remoteKey; + } + session[util.toString(ephemeralPublicKey)] = { + messageKeys: {}, + chainKey: { counter: -1, key: masterKey[1] }, + chainType: sending ? Internal.ChainType.SENDING : Internal.ChainType.RECEIVING + }; + ratchet.rootKey = masterKey[0]; + }); + }); + }, + verifyMAC: function(data, key, mac, length) { + return Internal.crypto.sign(key, data).then(function(calculated_mac) { + if (mac.byteLength != length || calculated_mac.byteLength < length) { + throw new Error("Bad MAC length"); + } + var a = new Uint8Array(calculated_mac); + var b = new Uint8Array(mac); + var result = 0; + for (var i=0; i < mac.byteLength; ++i) { + result = result | (a[i] ^ b[i]); + } + if (result !== 0) { + throw new Error("Bad MAC"); + } + }); + }, + getRemoteRegistrationId: function() { + return Internal.SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { + return this.getRecord(this.remoteAddress.toString()).then(function(record) { + if (record === undefined) { + return undefined; + } + return record.registrationId; + }); + }.bind(this)); + }, + hasOpenSession: function() { + return Internal.SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { + return this.getRecord(this.remoteAddress.toString()).then(function(record) { + if (record === undefined) { + return false; + } + return record.haveOpenSession(); + }); + }.bind(this)); + }, + closeOpenSessionForDevice: function() { + var address = this.remoteAddress.toString(); + return Internal.SessionLock.queueJobForNumber(address, function() { + return this.getRecord(address).then(function(record) { + if (record === undefined || record.getOpenSession() === undefined) { + return; + } + + record.archiveCurrentState(); + return this.storage.storeSession(address, record.serialize()); + }.bind(this)); + }.bind(this)); + } +}; + +libsignal.SessionCipher = function(storage, remoteAddress) { + var cipher = new SessionCipher(storage, remoteAddress); + + // returns a Promise that resolves to a ciphertext object + this.encrypt = cipher.encrypt.bind(cipher); + + // returns a Promise that inits a session if necessary and resolves + // to a decrypted plaintext array buffer + this.decryptPreKeyWhisperMessage = cipher.decryptPreKeyWhisperMessage.bind(cipher); + + // returns a Promise that resolves to decrypted plaintext array buffer + this.decryptWhisperMessage = cipher.decryptWhisperMessage.bind(cipher); + + this.getRemoteRegistrationId = cipher.getRemoteRegistrationId.bind(cipher); + this.hasOpenSession = cipher.hasOpenSession.bind(cipher); + this.closeOpenSessionForDevice = cipher.closeOpenSessionForDevice.bind(cipher); +}; + + /* + * jobQueue manages multiple queues indexed by device to serialize + * session io ops on the database. + */ +;(function() { +'use strict'; + +Internal.SessionLock = {}; + +var jobQueue = {}; + +Internal.SessionLock.queueJobForNumber = function queueJobForNumber(number, runJob) { + var runPrevious = jobQueue[number] || Promise.resolve(); + var runCurrent = jobQueue[number] = runPrevious.then(runJob, runJob); + runCurrent.then(function() { + if (jobQueue[number] === runCurrent) { + delete jobQueue[number]; + } + }); + return runCurrent; +}; + +})(); + +})(); \ No newline at end of file diff --git a/native/curve25519-donna.c b/native/curve25519-donna.c new file mode 100644 index 0000000..f2c2ac5 --- /dev/null +++ b/native/curve25519-donna.c @@ -0,0 +1,870 @@ +/* Copyright 2008, Google Inc. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following disclaimer + * in the documentation and/or other materials provided with the + * distribution. + * * Neither the name of Google Inc. nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * curve25519-donna: Curve25519 elliptic curve, public key function + * + * http://code.google.com/p/curve25519-donna/ + * + * Adam Langley + * + * Derived from public domain C code by Daniel J. Bernstein + * + * More information about curve25519 can be found here + * http://cr.yp.to/ecdh.html + * + * djb's sample implementation of curve25519 is written in a special assembly + * language called qhasm and uses the floating point registers. + * + * This is, almost, a clean room reimplementation from the curve25519 paper. It + * uses many of the tricks described therein. Only the crecip function is taken + * from the sample implementation. */ + +#include +#include + +#ifdef _MSC_VER +#define inline __inline +#endif + +typedef uint8_t u8; +typedef int32_t s32; +typedef int64_t limb; + +/* Field element representation: + * + * Field elements are written as an array of signed, 64-bit limbs, least + * significant first. The value of the field element is: + * x[0] + 2^26·x[1] + x^51·x[2] + 2^102·x[3] + ... + * + * i.e. the limbs are 26, 25, 26, 25, ... bits wide. */ + +/* Sum two numbers: output += in */ +static void fsum(limb *output, const limb *in) { + unsigned i; + for (i = 0; i < 10; i += 2) { + output[0+i] = output[0+i] + in[0+i]; + output[1+i] = output[1+i] + in[1+i]; + } +} + +/* Find the difference of two numbers: output = in - output + * (note the order of the arguments!). */ +static void fdifference(limb *output, const limb *in) { + unsigned i; + for (i = 0; i < 10; ++i) { + output[i] = in[i] - output[i]; + } +} + +/* Multiply a number by a scalar: output = in * scalar */ +static void fscalar_product(limb *output, const limb *in, const limb scalar) { + unsigned i; + for (i = 0; i < 10; ++i) { + output[i] = in[i] * scalar; + } +} + +/* Multiply two numbers: output = in2 * in + * + * output must be distinct to both inputs. The inputs are reduced coefficient + * form, the output is not. + * + * output[x] <= 14 * the largest product of the input limbs. */ +static void fproduct(limb *output, const limb *in2, const limb *in) { + output[0] = ((limb) ((s32) in2[0])) * ((s32) in[0]); + output[1] = ((limb) ((s32) in2[0])) * ((s32) in[1]) + + ((limb) ((s32) in2[1])) * ((s32) in[0]); + output[2] = 2 * ((limb) ((s32) in2[1])) * ((s32) in[1]) + + ((limb) ((s32) in2[0])) * ((s32) in[2]) + + ((limb) ((s32) in2[2])) * ((s32) in[0]); + output[3] = ((limb) ((s32) in2[1])) * ((s32) in[2]) + + ((limb) ((s32) in2[2])) * ((s32) in[1]) + + ((limb) ((s32) in2[0])) * ((s32) in[3]) + + ((limb) ((s32) in2[3])) * ((s32) in[0]); + output[4] = ((limb) ((s32) in2[2])) * ((s32) in[2]) + + 2 * (((limb) ((s32) in2[1])) * ((s32) in[3]) + + ((limb) ((s32) in2[3])) * ((s32) in[1])) + + ((limb) ((s32) in2[0])) * ((s32) in[4]) + + ((limb) ((s32) in2[4])) * ((s32) in[0]); + output[5] = ((limb) ((s32) in2[2])) * ((s32) in[3]) + + ((limb) ((s32) in2[3])) * ((s32) in[2]) + + ((limb) ((s32) in2[1])) * ((s32) in[4]) + + ((limb) ((s32) in2[4])) * ((s32) in[1]) + + ((limb) ((s32) in2[0])) * ((s32) in[5]) + + ((limb) ((s32) in2[5])) * ((s32) in[0]); + output[6] = 2 * (((limb) ((s32) in2[3])) * ((s32) in[3]) + + ((limb) ((s32) in2[1])) * ((s32) in[5]) + + ((limb) ((s32) in2[5])) * ((s32) in[1])) + + ((limb) ((s32) in2[2])) * ((s32) in[4]) + + ((limb) ((s32) in2[4])) * ((s32) in[2]) + + ((limb) ((s32) in2[0])) * ((s32) in[6]) + + ((limb) ((s32) in2[6])) * ((s32) in[0]); + output[7] = ((limb) ((s32) in2[3])) * ((s32) in[4]) + + ((limb) ((s32) in2[4])) * ((s32) in[3]) + + ((limb) ((s32) in2[2])) * ((s32) in[5]) + + ((limb) ((s32) in2[5])) * ((s32) in[2]) + + ((limb) ((s32) in2[1])) * ((s32) in[6]) + + ((limb) ((s32) in2[6])) * ((s32) in[1]) + + ((limb) ((s32) in2[0])) * ((s32) in[7]) + + ((limb) ((s32) in2[7])) * ((s32) in[0]); + output[8] = ((limb) ((s32) in2[4])) * ((s32) in[4]) + + 2 * (((limb) ((s32) in2[3])) * ((s32) in[5]) + + ((limb) ((s32) in2[5])) * ((s32) in[3]) + + ((limb) ((s32) in2[1])) * ((s32) in[7]) + + ((limb) ((s32) in2[7])) * ((s32) in[1])) + + ((limb) ((s32) in2[2])) * ((s32) in[6]) + + ((limb) ((s32) in2[6])) * ((s32) in[2]) + + ((limb) ((s32) in2[0])) * ((s32) in[8]) + + ((limb) ((s32) in2[8])) * ((s32) in[0]); + output[9] = ((limb) ((s32) in2[4])) * ((s32) in[5]) + + ((limb) ((s32) in2[5])) * ((s32) in[4]) + + ((limb) ((s32) in2[3])) * ((s32) in[6]) + + ((limb) ((s32) in2[6])) * ((s32) in[3]) + + ((limb) ((s32) in2[2])) * ((s32) in[7]) + + ((limb) ((s32) in2[7])) * ((s32) in[2]) + + ((limb) ((s32) in2[1])) * ((s32) in[8]) + + ((limb) ((s32) in2[8])) * ((s32) in[1]) + + ((limb) ((s32) in2[0])) * ((s32) in[9]) + + ((limb) ((s32) in2[9])) * ((s32) in[0]); + output[10] = 2 * (((limb) ((s32) in2[5])) * ((s32) in[5]) + + ((limb) ((s32) in2[3])) * ((s32) in[7]) + + ((limb) ((s32) in2[7])) * ((s32) in[3]) + + ((limb) ((s32) in2[1])) * ((s32) in[9]) + + ((limb) ((s32) in2[9])) * ((s32) in[1])) + + ((limb) ((s32) in2[4])) * ((s32) in[6]) + + ((limb) ((s32) in2[6])) * ((s32) in[4]) + + ((limb) ((s32) in2[2])) * ((s32) in[8]) + + ((limb) ((s32) in2[8])) * ((s32) in[2]); + output[11] = ((limb) ((s32) in2[5])) * ((s32) in[6]) + + ((limb) ((s32) in2[6])) * ((s32) in[5]) + + ((limb) ((s32) in2[4])) * ((s32) in[7]) + + ((limb) ((s32) in2[7])) * ((s32) in[4]) + + ((limb) ((s32) in2[3])) * ((s32) in[8]) + + ((limb) ((s32) in2[8])) * ((s32) in[3]) + + ((limb) ((s32) in2[2])) * ((s32) in[9]) + + ((limb) ((s32) in2[9])) * ((s32) in[2]); + output[12] = ((limb) ((s32) in2[6])) * ((s32) in[6]) + + 2 * (((limb) ((s32) in2[5])) * ((s32) in[7]) + + ((limb) ((s32) in2[7])) * ((s32) in[5]) + + ((limb) ((s32) in2[3])) * ((s32) in[9]) + + ((limb) ((s32) in2[9])) * ((s32) in[3])) + + ((limb) ((s32) in2[4])) * ((s32) in[8]) + + ((limb) ((s32) in2[8])) * ((s32) in[4]); + output[13] = ((limb) ((s32) in2[6])) * ((s32) in[7]) + + ((limb) ((s32) in2[7])) * ((s32) in[6]) + + ((limb) ((s32) in2[5])) * ((s32) in[8]) + + ((limb) ((s32) in2[8])) * ((s32) in[5]) + + ((limb) ((s32) in2[4])) * ((s32) in[9]) + + ((limb) ((s32) in2[9])) * ((s32) in[4]); + output[14] = 2 * (((limb) ((s32) in2[7])) * ((s32) in[7]) + + ((limb) ((s32) in2[5])) * ((s32) in[9]) + + ((limb) ((s32) in2[9])) * ((s32) in[5])) + + ((limb) ((s32) in2[6])) * ((s32) in[8]) + + ((limb) ((s32) in2[8])) * ((s32) in[6]); + output[15] = ((limb) ((s32) in2[7])) * ((s32) in[8]) + + ((limb) ((s32) in2[8])) * ((s32) in[7]) + + ((limb) ((s32) in2[6])) * ((s32) in[9]) + + ((limb) ((s32) in2[9])) * ((s32) in[6]); + output[16] = ((limb) ((s32) in2[8])) * ((s32) in[8]) + + 2 * (((limb) ((s32) in2[7])) * ((s32) in[9]) + + ((limb) ((s32) in2[9])) * ((s32) in[7])); + output[17] = ((limb) ((s32) in2[8])) * ((s32) in[9]) + + ((limb) ((s32) in2[9])) * ((s32) in[8]); + output[18] = 2 * ((limb) ((s32) in2[9])) * ((s32) in[9]); +} + +/* Reduce a long form to a short form by taking the input mod 2^255 - 19. + * + * On entry: |output[i]| < 14*2^54 + * On exit: |output[0..8]| < 280*2^54 */ +static void freduce_degree(limb *output) { + /* Each of these shifts and adds ends up multiplying the value by 19. + * + * For output[0..8], the absolute entry value is < 14*2^54 and we add, at + * most, 19*14*2^54 thus, on exit, |output[0..8]| < 280*2^54. */ + output[8] += output[18] << 4; + output[8] += output[18] << 1; + output[8] += output[18]; + output[7] += output[17] << 4; + output[7] += output[17] << 1; + output[7] += output[17]; + output[6] += output[16] << 4; + output[6] += output[16] << 1; + output[6] += output[16]; + output[5] += output[15] << 4; + output[5] += output[15] << 1; + output[5] += output[15]; + output[4] += output[14] << 4; + output[4] += output[14] << 1; + output[4] += output[14]; + output[3] += output[13] << 4; + output[3] += output[13] << 1; + output[3] += output[13]; + output[2] += output[12] << 4; + output[2] += output[12] << 1; + output[2] += output[12]; + output[1] += output[11] << 4; + output[1] += output[11] << 1; + output[1] += output[11]; + output[0] += output[10] << 4; + output[0] += output[10] << 1; + output[0] += output[10]; +} + +#if (-1 & 3) != 3 +#error "This code only works on a two's complement system" +#endif + +/* return v / 2^26, using only shifts and adds. + * + * On entry: v can take any value. */ +static inline limb +div_by_2_26(const limb v) +{ + /* High word of v; no shift needed. */ + const uint32_t highword = (uint32_t) (((uint64_t) v) >> 32); + /* Set to all 1s if v was negative; else set to 0s. */ + const int32_t sign = ((int32_t) highword) >> 31; + /* Set to 0x3ffffff if v was negative; else set to 0. */ + const int32_t roundoff = ((uint32_t) sign) >> 6; + /* Should return v / (1<<26) */ + return (v + roundoff) >> 26; +} + +/* return v / (2^25), using only shifts and adds. + * + * On entry: v can take any value. */ +static inline limb +div_by_2_25(const limb v) +{ + /* High word of v; no shift needed*/ + const uint32_t highword = (uint32_t) (((uint64_t) v) >> 32); + /* Set to all 1s if v was negative; else set to 0s. */ + const int32_t sign = ((int32_t) highword) >> 31; + /* Set to 0x1ffffff if v was negative; else set to 0. */ + const int32_t roundoff = ((uint32_t) sign) >> 7; + /* Should return v / (1<<25) */ + return (v + roundoff) >> 25; +} + +/* return v / (2^25), using only shifts and adds. + * + * On entry: v can take any value. */ +static inline s32 +div_s32_by_2_25(const s32 v) +{ + const s32 roundoff = ((uint32_t)(v >> 31)) >> 7; + return (v + roundoff) >> 25; +} + +/* Reduce all coefficients of the short form input so that |x| < 2^26. + * + * On entry: |output[i]| < 280*2^54 */ +static void freduce_coefficients(limb *output) { + unsigned i; + + output[10] = 0; + + for (i = 0; i < 10; i += 2) { + limb over = div_by_2_26(output[i]); + /* The entry condition (that |output[i]| < 280*2^54) means that over is, at + * most, 280*2^28 in the first iteration of this loop. This is added to the + * next limb and we can approximate the resulting bound of that limb by + * 281*2^54. */ + output[i] -= over << 26; + output[i+1] += over; + + /* For the first iteration, |output[i+1]| < 281*2^54, thus |over| < + * 281*2^29. When this is added to the next limb, the resulting bound can + * be approximated as 281*2^54. + * + * For subsequent iterations of the loop, 281*2^54 remains a conservative + * bound and no overflow occurs. */ + over = div_by_2_25(output[i+1]); + output[i+1] -= over << 25; + output[i+2] += over; + } + /* Now |output[10]| < 281*2^29 and all other coefficients are reduced. */ + output[0] += output[10] << 4; + output[0] += output[10] << 1; + output[0] += output[10]; + + output[10] = 0; + + /* Now output[1..9] are reduced, and |output[0]| < 2^26 + 19*281*2^29 + * So |over| will be no more than 2^16. */ + { + limb over = div_by_2_26(output[0]); + output[0] -= over << 26; + output[1] += over; + } + + /* Now output[0,2..9] are reduced, and |output[1]| < 2^25 + 2^16 < 2^26. The + * bound on |output[1]| is sufficient to meet our needs. */ +} + +/* A helpful wrapper around fproduct: output = in * in2. + * + * On entry: |in[i]| < 2^27 and |in2[i]| < 2^27. + * + * output must be distinct to both inputs. The output is reduced degree + * (indeed, one need only provide storage for 10 limbs) and |output[i]| < 2^26. */ +static void +fmul(limb *output, const limb *in, const limb *in2) { + limb t[19]; + fproduct(t, in, in2); + /* |t[i]| < 14*2^54 */ + freduce_degree(t); + freduce_coefficients(t); + /* |t[i]| < 2^26 */ + memcpy(output, t, sizeof(limb) * 10); +} + +/* Square a number: output = in**2 + * + * output must be distinct from the input. The inputs are reduced coefficient + * form, the output is not. + * + * output[x] <= 14 * the largest product of the input limbs. */ +static void fsquare_inner(limb *output, const limb *in) { + output[0] = ((limb) ((s32) in[0])) * ((s32) in[0]); + output[1] = 2 * ((limb) ((s32) in[0])) * ((s32) in[1]); + output[2] = 2 * (((limb) ((s32) in[1])) * ((s32) in[1]) + + ((limb) ((s32) in[0])) * ((s32) in[2])); + output[3] = 2 * (((limb) ((s32) in[1])) * ((s32) in[2]) + + ((limb) ((s32) in[0])) * ((s32) in[3])); + output[4] = ((limb) ((s32) in[2])) * ((s32) in[2]) + + 4 * ((limb) ((s32) in[1])) * ((s32) in[3]) + + 2 * ((limb) ((s32) in[0])) * ((s32) in[4]); + output[5] = 2 * (((limb) ((s32) in[2])) * ((s32) in[3]) + + ((limb) ((s32) in[1])) * ((s32) in[4]) + + ((limb) ((s32) in[0])) * ((s32) in[5])); + output[6] = 2 * (((limb) ((s32) in[3])) * ((s32) in[3]) + + ((limb) ((s32) in[2])) * ((s32) in[4]) + + ((limb) ((s32) in[0])) * ((s32) in[6]) + + 2 * ((limb) ((s32) in[1])) * ((s32) in[5])); + output[7] = 2 * (((limb) ((s32) in[3])) * ((s32) in[4]) + + ((limb) ((s32) in[2])) * ((s32) in[5]) + + ((limb) ((s32) in[1])) * ((s32) in[6]) + + ((limb) ((s32) in[0])) * ((s32) in[7])); + output[8] = ((limb) ((s32) in[4])) * ((s32) in[4]) + + 2 * (((limb) ((s32) in[2])) * ((s32) in[6]) + + ((limb) ((s32) in[0])) * ((s32) in[8]) + + 2 * (((limb) ((s32) in[1])) * ((s32) in[7]) + + ((limb) ((s32) in[3])) * ((s32) in[5]))); + output[9] = 2 * (((limb) ((s32) in[4])) * ((s32) in[5]) + + ((limb) ((s32) in[3])) * ((s32) in[6]) + + ((limb) ((s32) in[2])) * ((s32) in[7]) + + ((limb) ((s32) in[1])) * ((s32) in[8]) + + ((limb) ((s32) in[0])) * ((s32) in[9])); + output[10] = 2 * (((limb) ((s32) in[5])) * ((s32) in[5]) + + ((limb) ((s32) in[4])) * ((s32) in[6]) + + ((limb) ((s32) in[2])) * ((s32) in[8]) + + 2 * (((limb) ((s32) in[3])) * ((s32) in[7]) + + ((limb) ((s32) in[1])) * ((s32) in[9]))); + output[11] = 2 * (((limb) ((s32) in[5])) * ((s32) in[6]) + + ((limb) ((s32) in[4])) * ((s32) in[7]) + + ((limb) ((s32) in[3])) * ((s32) in[8]) + + ((limb) ((s32) in[2])) * ((s32) in[9])); + output[12] = ((limb) ((s32) in[6])) * ((s32) in[6]) + + 2 * (((limb) ((s32) in[4])) * ((s32) in[8]) + + 2 * (((limb) ((s32) in[5])) * ((s32) in[7]) + + ((limb) ((s32) in[3])) * ((s32) in[9]))); + output[13] = 2 * (((limb) ((s32) in[6])) * ((s32) in[7]) + + ((limb) ((s32) in[5])) * ((s32) in[8]) + + ((limb) ((s32) in[4])) * ((s32) in[9])); + output[14] = 2 * (((limb) ((s32) in[7])) * ((s32) in[7]) + + ((limb) ((s32) in[6])) * ((s32) in[8]) + + 2 * ((limb) ((s32) in[5])) * ((s32) in[9])); + output[15] = 2 * (((limb) ((s32) in[7])) * ((s32) in[8]) + + ((limb) ((s32) in[6])) * ((s32) in[9])); + output[16] = ((limb) ((s32) in[8])) * ((s32) in[8]) + + 4 * ((limb) ((s32) in[7])) * ((s32) in[9]); + output[17] = 2 * ((limb) ((s32) in[8])) * ((s32) in[9]); + output[18] = 2 * ((limb) ((s32) in[9])) * ((s32) in[9]); +} + +/* fsquare sets output = in^2. + * + * On entry: The |in| argument is in reduced coefficients form and |in[i]| < + * 2^27. + * + * On exit: The |output| argument is in reduced coefficients form (indeed, one + * need only provide storage for 10 limbs) and |out[i]| < 2^26. */ +static void +fsquare(limb *output, const limb *in) { + limb t[19]; + fsquare_inner(t, in); + /* |t[i]| < 14*2^54 because the largest product of two limbs will be < + * 2^(27+27) and fsquare_inner adds together, at most, 14 of those + * products. */ + freduce_degree(t); + freduce_coefficients(t); + /* |t[i]| < 2^26 */ + memcpy(output, t, sizeof(limb) * 10); +} + +/* Take a little-endian, 32-byte number and expand it into polynomial form */ +static void +fexpand(limb *output, const u8 *input) { +#define F(n,start,shift,mask) \ + output[n] = ((((limb) input[start + 0]) | \ + ((limb) input[start + 1]) << 8 | \ + ((limb) input[start + 2]) << 16 | \ + ((limb) input[start + 3]) << 24) >> shift) & mask; + F(0, 0, 0, 0x3ffffff); + F(1, 3, 2, 0x1ffffff); + F(2, 6, 3, 0x3ffffff); + F(3, 9, 5, 0x1ffffff); + F(4, 12, 6, 0x3ffffff); + F(5, 16, 0, 0x1ffffff); + F(6, 19, 1, 0x3ffffff); + F(7, 22, 3, 0x1ffffff); + F(8, 25, 4, 0x3ffffff); + F(9, 28, 6, 0x1ffffff); +#undef F +} + +#if (-32 >> 1) != -16 +#error "This code only works when >> does sign-extension on negative numbers" +#endif + +/* s32_eq returns 0xffffffff iff a == b and zero otherwise. */ +static s32 s32_eq(s32 a, s32 b) { + a = ~(a ^ b); + a &= a << 16; + a &= a << 8; + a &= a << 4; + a &= a << 2; + a &= a << 1; + return a >> 31; +} + +/* s32_gte returns 0xffffffff if a >= b and zero otherwise, where a and b are + * both non-negative. */ +static s32 s32_gte(s32 a, s32 b) { + a -= b; + /* a >= 0 iff a >= b. */ + return ~(a >> 31); +} + +/* Take a fully reduced polynomial form number and contract it into a + * little-endian, 32-byte array. + * + * On entry: |input_limbs[i]| < 2^26 */ +static void +fcontract(u8 *output, limb *input_limbs) { + int i; + int j; + s32 input[10]; + s32 mask; + + /* |input_limbs[i]| < 2^26, so it's valid to convert to an s32. */ + for (i = 0; i < 10; i++) { + input[i] = input_limbs[i]; + } + + for (j = 0; j < 2; ++j) { + for (i = 0; i < 9; ++i) { + if ((i & 1) == 1) { + /* This calculation is a time-invariant way to make input[i] + * non-negative by borrowing from the next-larger limb. */ + const s32 mask = input[i] >> 31; + const s32 carry = -((input[i] & mask) >> 25); + input[i] = input[i] + (carry << 25); + input[i+1] = input[i+1] - carry; + } else { + const s32 mask = input[i] >> 31; + const s32 carry = -((input[i] & mask) >> 26); + input[i] = input[i] + (carry << 26); + input[i+1] = input[i+1] - carry; + } + } + + /* There's no greater limb for input[9] to borrow from, but we can multiply + * by 19 and borrow from input[0], which is valid mod 2^255-19. */ + { + const s32 mask = input[9] >> 31; + const s32 carry = -((input[9] & mask) >> 25); + input[9] = input[9] + (carry << 25); + input[0] = input[0] - (carry * 19); + } + + /* After the first iteration, input[1..9] are non-negative and fit within + * 25 or 26 bits, depending on position. However, input[0] may be + * negative. */ + } + + /* The first borrow-propagation pass above ended with every limb + except (possibly) input[0] non-negative. + + If input[0] was negative after the first pass, then it was because of a + carry from input[9]. On entry, input[9] < 2^26 so the carry was, at most, + one, since (2**26-1) >> 25 = 1. Thus input[0] >= -19. + + In the second pass, each limb is decreased by at most one. Thus the second + borrow-propagation pass could only have wrapped around to decrease + input[0] again if the first pass left input[0] negative *and* input[1] + through input[9] were all zero. In that case, input[1] is now 2^25 - 1, + and this last borrow-propagation step will leave input[1] non-negative. */ + { + const s32 mask = input[0] >> 31; + const s32 carry = -((input[0] & mask) >> 26); + input[0] = input[0] + (carry << 26); + input[1] = input[1] - carry; + } + + /* All input[i] are now non-negative. However, there might be values between + * 2^25 and 2^26 in a limb which is, nominally, 25 bits wide. */ + for (j = 0; j < 2; j++) { + for (i = 0; i < 9; i++) { + if ((i & 1) == 1) { + const s32 carry = input[i] >> 25; + input[i] &= 0x1ffffff; + input[i+1] += carry; + } else { + const s32 carry = input[i] >> 26; + input[i] &= 0x3ffffff; + input[i+1] += carry; + } + } + + { + const s32 carry = input[9] >> 25; + input[9] &= 0x1ffffff; + input[0] += 19*carry; + } + } + + /* If the first carry-chain pass, just above, ended up with a carry from + * input[9], and that caused input[0] to be out-of-bounds, then input[0] was + * < 2^26 + 2*19, because the carry was, at most, two. + * + * If the second pass carried from input[9] again then input[0] is < 2*19 and + * the input[9] -> input[0] carry didn't push input[0] out of bounds. */ + + /* It still remains the case that input might be between 2^255-19 and 2^255. + * In this case, input[1..9] must take their maximum value and input[0] must + * be >= (2^255-19) & 0x3ffffff, which is 0x3ffffed. */ + mask = s32_gte(input[0], 0x3ffffed); + for (i = 1; i < 10; i++) { + if ((i & 1) == 1) { + mask &= s32_eq(input[i], 0x1ffffff); + } else { + mask &= s32_eq(input[i], 0x3ffffff); + } + } + + /* mask is either 0xffffffff (if input >= 2^255-19) and zero otherwise. Thus + * this conditionally subtracts 2^255-19. */ + input[0] -= mask & 0x3ffffed; + + for (i = 1; i < 10; i++) { + if ((i & 1) == 1) { + input[i] -= mask & 0x1ffffff; + } else { + input[i] -= mask & 0x3ffffff; + } + } + + input[1] <<= 2; + input[2] <<= 3; + input[3] <<= 5; + input[4] <<= 6; + input[6] <<= 1; + input[7] <<= 3; + input[8] <<= 4; + input[9] <<= 6; +#define F(i, s) \ + output[s+0] |= input[i] & 0xff; \ + output[s+1] = (input[i] >> 8) & 0xff; \ + output[s+2] = (input[i] >> 16) & 0xff; \ + output[s+3] = (input[i] >> 24) & 0xff; + output[0] = 0; + output[16] = 0; + F(0,0); + F(1,3); + F(2,6); + F(3,9); + F(4,12); + F(5,16); + F(6,19); + F(7,22); + F(8,25); + F(9,28); +#undef F +} + +/* Input: Q, Q', Q-Q' + * Output: 2Q, Q+Q' + * + * x2 z3: long form + * x3 z3: long form + * x z: short form, destroyed + * xprime zprime: short form, destroyed + * qmqp: short form, preserved + * + * On entry and exit, the absolute value of the limbs of all inputs and outputs + * are < 2^26. */ +static void fmonty(limb *x2, limb *z2, /* output 2Q */ + limb *x3, limb *z3, /* output Q + Q' */ + limb *x, limb *z, /* input Q */ + limb *xprime, limb *zprime, /* input Q' */ + const limb *qmqp /* input Q - Q' */) { + limb origx[10], origxprime[10], zzz[19], xx[19], zz[19], xxprime[19], + zzprime[19], zzzprime[19], xxxprime[19]; + + memcpy(origx, x, 10 * sizeof(limb)); + fsum(x, z); + /* |x[i]| < 2^27 */ + fdifference(z, origx); /* does x - z */ + /* |z[i]| < 2^27 */ + + memcpy(origxprime, xprime, sizeof(limb) * 10); + fsum(xprime, zprime); + /* |xprime[i]| < 2^27 */ + fdifference(zprime, origxprime); + /* |zprime[i]| < 2^27 */ + fproduct(xxprime, xprime, z); + /* |xxprime[i]| < 14*2^54: the largest product of two limbs will be < + * 2^(27+27) and fproduct adds together, at most, 14 of those products. + * (Approximating that to 2^58 doesn't work out.) */ + fproduct(zzprime, x, zprime); + /* |zzprime[i]| < 14*2^54 */ + freduce_degree(xxprime); + freduce_coefficients(xxprime); + /* |xxprime[i]| < 2^26 */ + freduce_degree(zzprime); + freduce_coefficients(zzprime); + /* |zzprime[i]| < 2^26 */ + memcpy(origxprime, xxprime, sizeof(limb) * 10); + fsum(xxprime, zzprime); + /* |xxprime[i]| < 2^27 */ + fdifference(zzprime, origxprime); + /* |zzprime[i]| < 2^27 */ + fsquare(xxxprime, xxprime); + /* |xxxprime[i]| < 2^26 */ + fsquare(zzzprime, zzprime); + /* |zzzprime[i]| < 2^26 */ + fproduct(zzprime, zzzprime, qmqp); + /* |zzprime[i]| < 14*2^52 */ + freduce_degree(zzprime); + freduce_coefficients(zzprime); + /* |zzprime[i]| < 2^26 */ + memcpy(x3, xxxprime, sizeof(limb) * 10); + memcpy(z3, zzprime, sizeof(limb) * 10); + + fsquare(xx, x); + /* |xx[i]| < 2^26 */ + fsquare(zz, z); + /* |zz[i]| < 2^26 */ + fproduct(x2, xx, zz); + /* |x2[i]| < 14*2^52 */ + freduce_degree(x2); + freduce_coefficients(x2); + /* |x2[i]| < 2^26 */ + fdifference(zz, xx); // does zz = xx - zz + /* |zz[i]| < 2^27 */ + memset(zzz + 10, 0, sizeof(limb) * 9); + fscalar_product(zzz, zz, 121665); + /* |zzz[i]| < 2^(27+17) */ + /* No need to call freduce_degree here: + fscalar_product doesn't increase the degree of its input. */ + freduce_coefficients(zzz); + /* |zzz[i]| < 2^26 */ + fsum(zzz, xx); + /* |zzz[i]| < 2^27 */ + fproduct(z2, zz, zzz); + /* |z2[i]| < 14*2^(26+27) */ + freduce_degree(z2); + freduce_coefficients(z2); + /* |z2|i| < 2^26 */ +} + +/* Conditionally swap two reduced-form limb arrays if 'iswap' is 1, but leave + * them unchanged if 'iswap' is 0. Runs in data-invariant time to avoid + * side-channel attacks. + * + * NOTE that this function requires that 'iswap' be 1 or 0; other values give + * wrong results. Also, the two limb arrays must be in reduced-coefficient, + * reduced-degree form: the values in a[10..19] or b[10..19] aren't swapped, + * and all all values in a[0..9],b[0..9] must have magnitude less than + * INT32_MAX. */ +static void +swap_conditional(limb a[19], limb b[19], limb iswap) { + unsigned i; + const s32 swap = (s32) -iswap; + + for (i = 0; i < 10; ++i) { + const s32 x = swap & ( ((s32)a[i]) ^ ((s32)b[i]) ); + a[i] = ((s32)a[i]) ^ x; + b[i] = ((s32)b[i]) ^ x; + } +} + +/* Calculates nQ where Q is the x-coordinate of a point on the curve + * + * resultx/resultz: the x coordinate of the resulting curve point (short form) + * n: a little endian, 32-byte number + * q: a point of the curve (short form) */ +static void +cmult(limb *resultx, limb *resultz, const u8 *n, const limb *q) { + limb a[19] = {0}, b[19] = {1}, c[19] = {1}, d[19] = {0}; + limb *nqpqx = a, *nqpqz = b, *nqx = c, *nqz = d, *t; + limb e[19] = {0}, f[19] = {1}, g[19] = {0}, h[19] = {1}; + limb *nqpqx2 = e, *nqpqz2 = f, *nqx2 = g, *nqz2 = h; + + unsigned i, j; + + memcpy(nqpqx, q, sizeof(limb) * 10); + + for (i = 0; i < 32; ++i) { + u8 byte = n[31 - i]; + for (j = 0; j < 8; ++j) { + const limb bit = byte >> 7; + + swap_conditional(nqx, nqpqx, bit); + swap_conditional(nqz, nqpqz, bit); + fmonty(nqx2, nqz2, + nqpqx2, nqpqz2, + nqx, nqz, + nqpqx, nqpqz, + q); + swap_conditional(nqx2, nqpqx2, bit); + swap_conditional(nqz2, nqpqz2, bit); + + t = nqx; + nqx = nqx2; + nqx2 = t; + t = nqz; + nqz = nqz2; + nqz2 = t; + t = nqpqx; + nqpqx = nqpqx2; + nqpqx2 = t; + t = nqpqz; + nqpqz = nqpqz2; + nqpqz2 = t; + + byte <<= 1; + } + } + + memcpy(resultx, nqx, sizeof(limb) * 10); + memcpy(resultz, nqz, sizeof(limb) * 10); +} + +// ----------------------------------------------------------------------------- +// Shamelessly copied from djb's code +// ----------------------------------------------------------------------------- +static void +crecip(limb *out, const limb *z) { + limb z2[10]; + limb z9[10]; + limb z11[10]; + limb z2_5_0[10]; + limb z2_10_0[10]; + limb z2_20_0[10]; + limb z2_50_0[10]; + limb z2_100_0[10]; + limb t0[10]; + limb t1[10]; + int i; + + /* 2 */ fsquare(z2,z); + /* 4 */ fsquare(t1,z2); + /* 8 */ fsquare(t0,t1); + /* 9 */ fmul(z9,t0,z); + /* 11 */ fmul(z11,z9,z2); + /* 22 */ fsquare(t0,z11); + /* 2^5 - 2^0 = 31 */ fmul(z2_5_0,t0,z9); + + /* 2^6 - 2^1 */ fsquare(t0,z2_5_0); + /* 2^7 - 2^2 */ fsquare(t1,t0); + /* 2^8 - 2^3 */ fsquare(t0,t1); + /* 2^9 - 2^4 */ fsquare(t1,t0); + /* 2^10 - 2^5 */ fsquare(t0,t1); + /* 2^10 - 2^0 */ fmul(z2_10_0,t0,z2_5_0); + + /* 2^11 - 2^1 */ fsquare(t0,z2_10_0); + /* 2^12 - 2^2 */ fsquare(t1,t0); + /* 2^20 - 2^10 */ for (i = 2;i < 10;i += 2) { fsquare(t0,t1); fsquare(t1,t0); } + /* 2^20 - 2^0 */ fmul(z2_20_0,t1,z2_10_0); + + /* 2^21 - 2^1 */ fsquare(t0,z2_20_0); + /* 2^22 - 2^2 */ fsquare(t1,t0); + /* 2^40 - 2^20 */ for (i = 2;i < 20;i += 2) { fsquare(t0,t1); fsquare(t1,t0); } + /* 2^40 - 2^0 */ fmul(t0,t1,z2_20_0); + + /* 2^41 - 2^1 */ fsquare(t1,t0); + /* 2^42 - 2^2 */ fsquare(t0,t1); + /* 2^50 - 2^10 */ for (i = 2;i < 10;i += 2) { fsquare(t1,t0); fsquare(t0,t1); } + /* 2^50 - 2^0 */ fmul(z2_50_0,t0,z2_10_0); + + /* 2^51 - 2^1 */ fsquare(t0,z2_50_0); + /* 2^52 - 2^2 */ fsquare(t1,t0); + /* 2^100 - 2^50 */ for (i = 2;i < 50;i += 2) { fsquare(t0,t1); fsquare(t1,t0); } + /* 2^100 - 2^0 */ fmul(z2_100_0,t1,z2_50_0); + + /* 2^101 - 2^1 */ fsquare(t1,z2_100_0); + /* 2^102 - 2^2 */ fsquare(t0,t1); + /* 2^200 - 2^100 */ for (i = 2;i < 100;i += 2) { fsquare(t1,t0); fsquare(t0,t1); } + /* 2^200 - 2^0 */ fmul(t1,t0,z2_100_0); + + /* 2^201 - 2^1 */ fsquare(t0,t1); + /* 2^202 - 2^2 */ fsquare(t1,t0); + /* 2^250 - 2^50 */ for (i = 2;i < 50;i += 2) { fsquare(t0,t1); fsquare(t1,t0); } + /* 2^250 - 2^0 */ fmul(t0,t1,z2_50_0); + + /* 2^251 - 2^1 */ fsquare(t1,t0); + /* 2^252 - 2^2 */ fsquare(t0,t1); + /* 2^253 - 2^3 */ fsquare(t1,t0); + /* 2^254 - 2^4 */ fsquare(t0,t1); + /* 2^255 - 2^5 */ fsquare(t1,t0); + /* 2^255 - 21 */ fmul(out,t1,z11); +} + +int +curve25519_donna(u8 *mypublic, const u8 *secret, const u8 *basepoint) { + limb bp[10], x[10], z[11], zmone[10]; + uint8_t e[32]; + int i; + + for (i = 0; i < 32; ++i) e[i] = secret[i]; +// e[0] &= 248; +// e[31] &= 127; +// e[31] |= 64; + + fexpand(bp, basepoint); + cmult(x, z, e, bp); + crecip(zmone, z); + fmul(z, x, zmone); + fcontract(mypublic, z); + return 0; +} diff --git a/native/ed25519/additions/compare.c b/native/ed25519/additions/compare.c new file mode 100644 index 0000000..8b1e313 --- /dev/null +++ b/native/ed25519/additions/compare.c @@ -0,0 +1,44 @@ +#include +#include "compare.h" + +/* Const-time comparison from SUPERCOP, but here it's only used for + signature verification, so doesn't need to be const-time. But + copied the nacl version anyways. */ +int crypto_verify_32_ref(const unsigned char *x, const unsigned char *y) +{ + unsigned int differentbits = 0; +#define F(i) differentbits |= x[i] ^ y[i]; + F(0) + F(1) + F(2) + F(3) + F(4) + F(5) + F(6) + F(7) + F(8) + F(9) + F(10) + F(11) + F(12) + F(13) + F(14) + F(15) + F(16) + F(17) + F(18) + F(19) + F(20) + F(21) + F(22) + F(23) + F(24) + F(25) + F(26) + F(27) + F(28) + F(29) + F(30) + F(31) + return (1 & ((differentbits - 1) >> 8)) - 1; +} diff --git a/native/ed25519/additions/compare.h b/native/ed25519/additions/compare.h new file mode 100644 index 0000000..5a2fa91 --- /dev/null +++ b/native/ed25519/additions/compare.h @@ -0,0 +1,6 @@ +#ifndef __COMPARE_H__ +#define __COMPARE_H__ + +int crypto_verify_32_ref(const unsigned char *b1, const unsigned char *b2); + +#endif diff --git a/native/ed25519/additions/curve_sigs.c b/native/ed25519/additions/curve_sigs.c new file mode 100644 index 0000000..b002dc8 --- /dev/null +++ b/native/ed25519/additions/curve_sigs.c @@ -0,0 +1,97 @@ +#include +#include "ge.h" +#include "curve_sigs.h" +#include "crypto_sign.h" + +void curve25519_keygen(unsigned char* curve25519_pubkey_out, + unsigned char* curve25519_privkey_in) +{ + ge_p3 ed_pubkey_point; /* Ed25519 pubkey point */ + unsigned char ed_pubkey[32]; /* privkey followed by pubkey */ + fe ed_y, one, ed_y_plus_one, one_minus_ed_y, inv_one_minus_ed_y; + fe mont_x; + + /* Perform a fixed-base multiplication of the Edwards base point, + (which is efficient due to precalculated tables), then convert + to the Curve25519 montgomery-format public key. In particular, + convert Curve25519's "montgomery" x-coordinate into an Ed25519 + "edwards" y-coordinate: + + mont_x = (ed_y +1 1) / (1 - ed_y) + */ + + ge_scalarmult_base(&ed_pubkey_point, curve25519_privkey_in); + ge_p3_tobytes(ed_pubkey, &ed_pubkey_point); + ed_pubkey[31] = ed_pubkey[31] & 0x7F; /* Mask off sign bit */ + fe_frombytes(ed_y, ed_pubkey); + + fe_1(one); + fe_add(ed_y_plus_one, ed_y, one); + fe_sub(one_minus_ed_y, one, ed_y); + fe_invert(inv_one_minus_ed_y, one_minus_ed_y); + fe_mul(mont_x, ed_y_plus_one, inv_one_minus_ed_y); + fe_tobytes(curve25519_pubkey_out, mont_x); +} + +void curve25519_sign(unsigned char* signature_out, + unsigned char* curve25519_privkey, + unsigned char* msg, unsigned long msg_len) +{ + ge_p3 ed_pubkey_point; /* Ed25519 pubkey point */ + unsigned char ed_keypair[64]; /* privkey followed by pubkey */ + unsigned char sigbuf[msg_len + 64]; /* working buffer */ + unsigned long long sigbuf_out_len = 0; + unsigned char sign_bit = 0; + + /* Convert the Curve25519 privkey to an Ed25519 keypair */ + memmove(ed_keypair, curve25519_privkey, 32); + ge_scalarmult_base(&ed_pubkey_point, curve25519_privkey); + ge_p3_tobytes(ed_keypair + 32, &ed_pubkey_point); + sign_bit = ed_keypair[63] & 0x80; + + /* Perform an Ed25519 signature with explicit private key */ + crypto_sign_modified(sigbuf, &sigbuf_out_len, msg, msg_len, ed_keypair); + memmove(signature_out, sigbuf, 64); + + /* Encode the sign bit into signature (in unused high bit of S) */ + signature_out[63] |= sign_bit; +} + +int curve25519_verify(unsigned char* signature, + unsigned char* curve25519_pubkey, + unsigned char* msg, unsigned long msg_len) +{ + fe mont_x, mont_x_minus_one, mont_x_plus_one, inv_mont_x_plus_one; + fe one; + fe ed_y; + unsigned char ed_pubkey[32]; + unsigned long long some_retval; + unsigned char verifybuf[msg_len + 64]; /* working buffer */ + unsigned char verifybuf2[msg_len + 64]; /* working buffer #2 */ + + /* Convert the Curve25519 public key into an Ed25519 public key. In + particular, convert Curve25519's "montgomery" x-coordinate into an + Ed25519 "edwards" y-coordinate: + + ed_y = (mont_x - 1) / (mont_x + 1) + + Then move the sign bit into the pubkey from the signature. + */ + fe_frombytes(mont_x, curve25519_pubkey); + fe_1(one); + fe_sub(mont_x_minus_one, mont_x, one); + fe_add(mont_x_plus_one, mont_x, one); + fe_invert(inv_mont_x_plus_one, mont_x_plus_one); + fe_mul(ed_y, mont_x_minus_one, inv_mont_x_plus_one); + fe_tobytes(ed_pubkey, ed_y); + + /* Copy the sign bit, and remove it from signature */ + ed_pubkey[31] |= (signature[63] & 0x80); + signature[63] &= 0x7F; + + memmove(verifybuf, signature, 64); + memmove(verifybuf+64, msg, msg_len); + + /* Then perform a normal Ed25519 verification, return 0 on success */ + return crypto_sign_open(verifybuf2, &some_retval, verifybuf, 64 + msg_len, ed_pubkey); +} diff --git a/native/ed25519/additions/curve_sigs.h b/native/ed25519/additions/curve_sigs.h new file mode 100644 index 0000000..106bb19 --- /dev/null +++ b/native/ed25519/additions/curve_sigs.h @@ -0,0 +1,33 @@ + +#ifndef __CURVE_SIGS_H__ +#define __CURVE_SIGS_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +void curve25519_keygen(unsigned char* curve25519_pubkey_out, + unsigned char* curve25519_privkey_in); + +void curve25519_sign(unsigned char* signature_out, + unsigned char* curve25519_privkey, + unsigned char* msg, unsigned long msg_len); + +/* returns 0 on success */ +int curve25519_verify(unsigned char* signature, + unsigned char* curve25519_pubkey, + unsigned char* msg, unsigned long msg_len); + +/* helper function - modified version of crypto_sign() to use + explicit private key */ +int crypto_sign_modified( + unsigned char *sm,unsigned long long *smlen, + const unsigned char *m,unsigned long long mlen, + const unsigned char *sk + ); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/native/ed25519/additions/sha512.c b/native/ed25519/additions/sha512.c new file mode 100644 index 0000000..9540ef4 --- /dev/null +++ b/native/ed25519/additions/sha512.c @@ -0,0 +1,13 @@ +#include "sha512.h" +#include "sph_sha2.h" + +int crypto_hash_sha512_ref(unsigned char *output ,const unsigned char *input, + unsigned long long len) +{ + sph_sha512_context ctx; + sph_sha512_init(&ctx); + sph_sha512(&ctx, input, len); + sph_sha512_close(&ctx, output); + return 0; +} + diff --git a/native/ed25519/additions/sha512.h b/native/ed25519/additions/sha512.h new file mode 100644 index 0000000..51f817c --- /dev/null +++ b/native/ed25519/additions/sha512.h @@ -0,0 +1,10 @@ +#ifndef __SHA512_H__ +#define __SHA512_H__ + +#include "sha512.h" +#include "sph_sha2.h" + +int crypto_hash_sha512_ref(unsigned char *output ,const unsigned char *input, + unsigned long long len); + +#endif diff --git a/native/ed25519/additions/sign_modified.c b/native/ed25519/additions/sign_modified.c new file mode 100644 index 0000000..04ba29a --- /dev/null +++ b/native/ed25519/additions/sign_modified.c @@ -0,0 +1,40 @@ +#include +#include "crypto_sign.h" +#include "crypto_hash_sha512.h" +#include "ge.h" +#include "sc.h" + +/* NEW: Compare to pristine crypto_sign() + Uses explicit private key for nonce derivation and as scalar, + instead of deriving both from a master key. +*/ +int crypto_sign_modified( + unsigned char *sm,unsigned long long *smlen, + const unsigned char *m,unsigned long long mlen, + const unsigned char *sk +) +{ + unsigned char pk[32]; + //unsigned char az[64]; + unsigned char nonce[64]; + unsigned char hram[64]; + ge_p3 R; + + memmove(pk,sk + 32,32); + + *smlen = mlen + 64; + memmove(sm + 64,m,mlen); + memmove(sm + 32,sk,32); /* NEW: Use privkey directly for nonce derivation */ + crypto_hash_sha512(nonce,sm + 32,mlen + 32); + memmove(sm + 32,pk,32); + + sc_reduce(nonce); + ge_scalarmult_base(&R,nonce); + ge_p3_tobytes(sm,&R); + + crypto_hash_sha512(hram,sm,mlen + 64); + sc_reduce(hram); + sc_muladd(sm + 32,hram,sk,nonce); /* NEW: Use privkey directly */ + + return 0; +} diff --git a/native/ed25519/api.h b/native/ed25519/api.h new file mode 100644 index 0000000..d88dae0 --- /dev/null +++ b/native/ed25519/api.h @@ -0,0 +1,4 @@ +#define CRYPTO_SECRETKEYBYTES 64 +#define CRYPTO_PUBLICKEYBYTES 32 +#define CRYPTO_BYTES 64 +#define CRYPTO_DETERMINISTIC 1 diff --git a/native/ed25519/base.h b/native/ed25519/base.h new file mode 100644 index 0000000..573bd8a --- /dev/null +++ b/native/ed25519/base.h @@ -0,0 +1,1344 @@ +{ + { + { 25967493,-14356035,29566456,3660896,-12694345,4014787,27544626,-11754271,-6079156,2047605 }, + { -12545711,934262,-2722910,3049990,-727428,9406986,12720692,5043384,19500929,-15469378 }, + { -8738181,4489570,9688441,-14785194,10184609,-12363380,29287919,11864899,-24514362,-4438546 }, + }, + { + { -12815894,-12976347,-21581243,11784320,-25355658,-2750717,-11717903,-3814571,-358445,-10211303 }, + { -21703237,6903825,27185491,6451973,-29577724,-9554005,-15616551,11189268,-26829678,-5319081 }, + { 26966642,11152617,32442495,15396054,14353839,-12752335,-3128826,-9541118,-15472047,-4166697 }, + }, + { + { 15636291,-9688557,24204773,-7912398,616977,-16685262,27787600,-14772189,28944400,-1550024 }, + { 16568933,4717097,-11556148,-1102322,15682896,-11807043,16354577,-11775962,7689662,11199574 }, + { 30464156,-5976125,-11779434,-15670865,23220365,15915852,7512774,10017326,-17749093,-9920357 }, + }, + { + { -17036878,13921892,10945806,-6033431,27105052,-16084379,-28926210,15006023,3284568,-6276540 }, + { 23599295,-8306047,-11193664,-7687416,13236774,10506355,7464579,9656445,13059162,10374397 }, + { 7798556,16710257,3033922,2874086,28997861,2835604,32406664,-3839045,-641708,-101325 }, + }, + { + { 10861363,11473154,27284546,1981175,-30064349,12577861,32867885,14515107,-15438304,10819380 }, + { 4708026,6336745,20377586,9066809,-11272109,6594696,-25653668,12483688,-12668491,5581306 }, + { 19563160,16186464,-29386857,4097519,10237984,-4348115,28542350,13850243,-23678021,-15815942 }, + }, + { + { -15371964,-12862754,32573250,4720197,-26436522,5875511,-19188627,-15224819,-9818940,-12085777 }, + { -8549212,109983,15149363,2178705,22900618,4543417,3044240,-15689887,1762328,14866737 }, + { -18199695,-15951423,-10473290,1707278,-17185920,3916101,-28236412,3959421,27914454,4383652 }, + }, + { + { 5153746,9909285,1723747,-2777874,30523605,5516873,19480852,5230134,-23952439,-15175766 }, + { -30269007,-3463509,7665486,10083793,28475525,1649722,20654025,16520125,30598449,7715701 }, + { 28881845,14381568,9657904,3680757,-20181635,7843316,-31400660,1370708,29794553,-1409300 }, + }, + { + { 14499471,-2729599,-33191113,-4254652,28494862,14271267,30290735,10876454,-33154098,2381726 }, + { -7195431,-2655363,-14730155,462251,-27724326,3941372,-6236617,3696005,-32300832,15351955 }, + { 27431194,8222322,16448760,-3907995,-18707002,11938355,-32961401,-2970515,29551813,10109425 }, + }, +}, +{ + { + { -13657040,-13155431,-31283750,11777098,21447386,6519384,-2378284,-1627556,10092783,-4764171 }, + { 27939166,14210322,4677035,16277044,-22964462,-12398139,-32508754,12005538,-17810127,12803510 }, + { 17228999,-15661624,-1233527,300140,-1224870,-11714777,30364213,-9038194,18016357,4397660 }, + }, + { + { -10958843,-7690207,4776341,-14954238,27850028,-15602212,-26619106,14544525,-17477504,982639 }, + { 29253598,15796703,-2863982,-9908884,10057023,3163536,7332899,-4120128,-21047696,9934963 }, + { 5793303,16271923,-24131614,-10116404,29188560,1206517,-14747930,4559895,-30123922,-10897950 }, + }, + { + { -27643952,-11493006,16282657,-11036493,28414021,-15012264,24191034,4541697,-13338309,5500568 }, + { 12650548,-1497113,9052871,11355358,-17680037,-8400164,-17430592,12264343,10874051,13524335 }, + { 25556948,-3045990,714651,2510400,23394682,-10415330,33119038,5080568,-22528059,5376628 }, + }, + { + { -26088264,-4011052,-17013699,-3537628,-6726793,1920897,-22321305,-9447443,4535768,1569007 }, + { -2255422,14606630,-21692440,-8039818,28430649,8775819,-30494562,3044290,31848280,12543772 }, + { -22028579,2943893,-31857513,6777306,13784462,-4292203,-27377195,-2062731,7718482,14474653 }, + }, + { + { 2385315,2454213,-22631320,46603,-4437935,-15680415,656965,-7236665,24316168,-5253567 }, + { 13741529,10911568,-33233417,-8603737,-20177830,-1033297,33040651,-13424532,-20729456,8321686 }, + { 21060490,-2212744,15712757,-4336099,1639040,10656336,23845965,-11874838,-9984458,608372 }, + }, + { + { -13672732,-15087586,-10889693,-7557059,-6036909,11305547,1123968,-6780577,27229399,23887 }, + { -23244140,-294205,-11744728,14712571,-29465699,-2029617,12797024,-6440308,-1633405,16678954 }, + { -29500620,4770662,-16054387,14001338,7830047,9564805,-1508144,-4795045,-17169265,4904953 }, + }, + { + { 24059557,14617003,19037157,-15039908,19766093,-14906429,5169211,16191880,2128236,-4326833 }, + { -16981152,4124966,-8540610,-10653797,30336522,-14105247,-29806336,916033,-6882542,-2986532 }, + { -22630907,12419372,-7134229,-7473371,-16478904,16739175,285431,2763829,15736322,4143876 }, + }, + { + { 2379352,11839345,-4110402,-5988665,11274298,794957,212801,-14594663,23527084,-16458268 }, + { 33431127,-11130478,-17838966,-15626900,8909499,8376530,-32625340,4087881,-15188911,-14416214 }, + { 1767683,7197987,-13205226,-2022635,-13091350,448826,5799055,4357868,-4774191,-16323038 }, + }, +}, +{ + { + { 6721966,13833823,-23523388,-1551314,26354293,-11863321,23365147,-3949732,7390890,2759800 }, + { 4409041,2052381,23373853,10530217,7676779,-12885954,21302353,-4264057,1244380,-12919645 }, + { -4421239,7169619,4982368,-2957590,30256825,-2777540,14086413,9208236,15886429,16489664 }, + }, + { + { 1996075,10375649,14346367,13311202,-6874135,-16438411,-13693198,398369,-30606455,-712933 }, + { -25307465,9795880,-2777414,14878809,-33531835,14780363,13348553,12076947,-30836462,5113182 }, + { -17770784,11797796,31950843,13929123,-25888302,12288344,-30341101,-7336386,13847711,5387222 }, + }, + { + { -18582163,-3416217,17824843,-2340966,22744343,-10442611,8763061,3617786,-19600662,10370991 }, + { 20246567,-14369378,22358229,-543712,18507283,-10413996,14554437,-8746092,32232924,16763880 }, + { 9648505,10094563,26416693,14745928,-30374318,-6472621,11094161,15689506,3140038,-16510092 }, + }, + { + { -16160072,5472695,31895588,4744994,8823515,10365685,-27224800,9448613,-28774454,366295 }, + { 19153450,11523972,-11096490,-6503142,-24647631,5420647,28344573,8041113,719605,11671788 }, + { 8678025,2694440,-6808014,2517372,4964326,11152271,-15432916,-15266516,27000813,-10195553 }, + }, + { + { -15157904,7134312,8639287,-2814877,-7235688,10421742,564065,5336097,6750977,-14521026 }, + { 11836410,-3979488,26297894,16080799,23455045,15735944,1695823,-8819122,8169720,16220347 }, + { -18115838,8653647,17578566,-6092619,-8025777,-16012763,-11144307,-2627664,-5990708,-14166033 }, + }, + { + { -23308498,-10968312,15213228,-10081214,-30853605,-11050004,27884329,2847284,2655861,1738395 }, + { -27537433,-14253021,-25336301,-8002780,-9370762,8129821,21651608,-3239336,-19087449,-11005278 }, + { 1533110,3437855,23735889,459276,29970501,11335377,26030092,5821408,10478196,8544890 }, + }, + { + { 32173121,-16129311,24896207,3921497,22579056,-3410854,19270449,12217473,17789017,-3395995 }, + { -30552961,-2228401,-15578829,-10147201,13243889,517024,15479401,-3853233,30460520,1052596 }, + { -11614875,13323618,32618793,8175907,-15230173,12596687,27491595,-4612359,3179268,-9478891 }, + }, + { + { 31947069,-14366651,-4640583,-15339921,-15125977,-6039709,-14756777,-16411740,19072640,-9511060 }, + { 11685058,11822410,3158003,-13952594,33402194,-4165066,5977896,-5215017,473099,5040608 }, + { -20290863,8198642,-27410132,11602123,1290375,-2799760,28326862,1721092,-19558642,-3131606 }, + }, +}, +{ + { + { 7881532,10687937,7578723,7738378,-18951012,-2553952,21820786,8076149,-27868496,11538389 }, + { -19935666,3899861,18283497,-6801568,-15728660,-11249211,8754525,7446702,-5676054,5797016 }, + { -11295600,-3793569,-15782110,-7964573,12708869,-8456199,2014099,-9050574,-2369172,-5877341 }, + }, + { + { -22472376,-11568741,-27682020,1146375,18956691,16640559,1192730,-3714199,15123619,10811505 }, + { 14352098,-3419715,-18942044,10822655,32750596,4699007,-70363,15776356,-28886779,-11974553 }, + { -28241164,-8072475,-4978962,-5315317,29416931,1847569,-20654173,-16484855,4714547,-9600655 }, + }, + { + { 15200332,8368572,19679101,15970074,-31872674,1959451,24611599,-4543832,-11745876,12340220 }, + { 12876937,-10480056,33134381,6590940,-6307776,14872440,9613953,8241152,15370987,9608631 }, + { -4143277,-12014408,8446281,-391603,4407738,13629032,-7724868,15866074,-28210621,-8814099 }, + }, + { + { 26660628,-15677655,8393734,358047,-7401291,992988,-23904233,858697,20571223,8420556 }, + { 14620715,13067227,-15447274,8264467,14106269,15080814,33531827,12516406,-21574435,-12476749 }, + { 236881,10476226,57258,-14677024,6472998,2466984,17258519,7256740,8791136,15069930 }, + }, + { + { 1276410,-9371918,22949635,-16322807,-23493039,-5702186,14711875,4874229,-30663140,-2331391 }, + { 5855666,4990204,-13711848,7294284,-7804282,1924647,-1423175,-7912378,-33069337,9234253 }, + { 20590503,-9018988,31529744,-7352666,-2706834,10650548,31559055,-11609587,18979186,13396066 }, + }, + { + { 24474287,4968103,22267082,4407354,24063882,-8325180,-18816887,13594782,33514650,7021958 }, + { -11566906,-6565505,-21365085,15928892,-26158305,4315421,-25948728,-3916677,-21480480,12868082 }, + { -28635013,13504661,19988037,-2132761,21078225,6443208,-21446107,2244500,-12455797,-8089383 }, + }, + { + { -30595528,13793479,-5852820,319136,-25723172,-6263899,33086546,8957937,-15233648,5540521 }, + { -11630176,-11503902,-8119500,-7643073,2620056,1022908,-23710744,-1568984,-16128528,-14962807 }, + { 23152971,775386,27395463,14006635,-9701118,4649512,1689819,892185,-11513277,-15205948 }, + }, + { + { 9770129,9586738,26496094,4324120,1556511,-3550024,27453819,4763127,-19179614,5867134 }, + { -32765025,1927590,31726409,-4753295,23962434,-16019500,27846559,5931263,-29749703,-16108455 }, + { 27461885,-2977536,22380810,1815854,-23033753,-3031938,7283490,-15148073,-19526700,7734629 }, + }, +}, +{ + { + { -8010264,-9590817,-11120403,6196038,29344158,-13430885,7585295,-3176626,18549497,15302069 }, + { -32658337,-6171222,-7672793,-11051681,6258878,13504381,10458790,-6418461,-8872242,8424746 }, + { 24687205,8613276,-30667046,-3233545,1863892,-1830544,19206234,7134917,-11284482,-828919 }, + }, + { + { 11334899,-9218022,8025293,12707519,17523892,-10476071,10243738,-14685461,-5066034,16498837 }, + { 8911542,6887158,-9584260,-6958590,11145641,-9543680,17303925,-14124238,6536641,10543906 }, + { -28946384,15479763,-17466835,568876,-1497683,11223454,-2669190,-16625574,-27235709,8876771 }, + }, + { + { -25742899,-12566864,-15649966,-846607,-33026686,-796288,-33481822,15824474,-604426,-9039817 }, + { 10330056,70051,7957388,-9002667,9764902,15609756,27698697,-4890037,1657394,3084098 }, + { 10477963,-7470260,12119566,-13250805,29016247,-5365589,31280319,14396151,-30233575,15272409 }, + }, + { + { -12288309,3169463,28813183,16658753,25116432,-5630466,-25173957,-12636138,-25014757,1950504 }, + { -26180358,9489187,11053416,-14746161,-31053720,5825630,-8384306,-8767532,15341279,8373727 }, + { 28685821,7759505,-14378516,-12002860,-31971820,4079242,298136,-10232602,-2878207,15190420 }, + }, + { + { -32932876,13806336,-14337485,-15794431,-24004620,10940928,8669718,2742393,-26033313,-6875003 }, + { -1580388,-11729417,-25979658,-11445023,-17411874,-10912854,9291594,-16247779,-12154742,6048605 }, + { -30305315,14843444,1539301,11864366,20201677,1900163,13934231,5128323,11213262,9168384 }, + }, + { + { -26280513,11007847,19408960,-940758,-18592965,-4328580,-5088060,-11105150,20470157,-16398701 }, + { -23136053,9282192,14855179,-15390078,-7362815,-14408560,-22783952,14461608,14042978,5230683 }, + { 29969567,-2741594,-16711867,-8552442,9175486,-2468974,21556951,3506042,-5933891,-12449708 }, + }, + { + { -3144746,8744661,19704003,4581278,-20430686,6830683,-21284170,8971513,-28539189,15326563 }, + { -19464629,10110288,-17262528,-3503892,-23500387,1355669,-15523050,15300988,-20514118,9168260 }, + { -5353335,4488613,-23803248,16314347,7780487,-15638939,-28948358,9601605,33087103,-9011387 }, + }, + { + { -19443170,-15512900,-20797467,-12445323,-29824447,10229461,-27444329,-15000531,-5996870,15664672 }, + { 23294591,-16632613,-22650781,-8470978,27844204,11461195,13099750,-2460356,18151676,13417686 }, + { -24722913,-4176517,-31150679,5988919,-26858785,6685065,1661597,-12551441,15271676,-15452665 }, + }, +}, +{ + { + { 11433042,-13228665,8239631,-5279517,-1985436,-725718,-18698764,2167544,-6921301,-13440182 }, + { -31436171,15575146,30436815,12192228,-22463353,9395379,-9917708,-8638997,12215110,12028277 }, + { 14098400,6555944,23007258,5757252,-15427832,-12950502,30123440,4617780,-16900089,-655628 }, + }, + { + { -4026201,-15240835,11893168,13718664,-14809462,1847385,-15819999,10154009,23973261,-12684474 }, + { -26531820,-3695990,-1908898,2534301,-31870557,-16550355,18341390,-11419951,32013174,-10103539 }, + { -25479301,10876443,-11771086,-14625140,-12369567,1838104,21911214,6354752,4425632,-837822 }, + }, + { + { -10433389,-14612966,22229858,-3091047,-13191166,776729,-17415375,-12020462,4725005,14044970 }, + { 19268650,-7304421,1555349,8692754,-21474059,-9910664,6347390,-1411784,-19522291,-16109756 }, + { -24864089,12986008,-10898878,-5558584,-11312371,-148526,19541418,8180106,9282262,10282508 }, + }, + { + { -26205082,4428547,-8661196,-13194263,4098402,-14165257,15522535,8372215,5542595,-10702683 }, + { -10562541,14895633,26814552,-16673850,-17480754,-2489360,-2781891,6993761,-18093885,10114655 }, + { -20107055,-929418,31422704,10427861,-7110749,6150669,-29091755,-11529146,25953725,-106158 }, + }, + { + { -4234397,-8039292,-9119125,3046000,2101609,-12607294,19390020,6094296,-3315279,12831125 }, + { -15998678,7578152,5310217,14408357,-33548620,-224739,31575954,6326196,7381791,-2421839 }, + { -20902779,3296811,24736065,-16328389,18374254,7318640,6295303,8082724,-15362489,12339664 }, + }, + { + { 27724736,2291157,6088201,-14184798,1792727,5857634,13848414,15768922,25091167,14856294 }, + { -18866652,8331043,24373479,8541013,-701998,-9269457,12927300,-12695493,-22182473,-9012899 }, + { -11423429,-5421590,11632845,3405020,30536730,-11674039,-27260765,13866390,30146206,9142070 }, + }, + { + { 3924129,-15307516,-13817122,-10054960,12291820,-668366,-27702774,9326384,-8237858,4171294 }, + { -15921940,16037937,6713787,16606682,-21612135,2790944,26396185,3731949,345228,-5462949 }, + { -21327538,13448259,25284571,1143661,20614966,-8849387,2031539,-12391231,-16253183,-13582083 }, + }, + { + { 31016211,-16722429,26371392,-14451233,-5027349,14854137,17477601,3842657,28012650,-16405420 }, + { -5075835,9368966,-8562079,-4600902,-15249953,6970560,-9189873,16292057,-8867157,3507940 }, + { 29439664,3537914,23333589,6997794,-17555561,-11018068,-15209202,-15051267,-9164929,6580396 }, + }, +}, +{ + { + { -12185861,-7679788,16438269,10826160,-8696817,-6235611,17860444,-9273846,-2095802,9304567 }, + { 20714564,-4336911,29088195,7406487,11426967,-5095705,14792667,-14608617,5289421,-477127 }, + { -16665533,-10650790,-6160345,-13305760,9192020,-1802462,17271490,12349094,26939669,-3752294 }, + }, + { + { -12889898,9373458,31595848,16374215,21471720,13221525,-27283495,-12348559,-3698806,117887 }, + { 22263325,-6560050,3984570,-11174646,-15114008,-566785,28311253,5358056,-23319780,541964 }, + { 16259219,3261970,2309254,-15534474,-16885711,-4581916,24134070,-16705829,-13337066,-13552195 }, + }, + { + { 9378160,-13140186,-22845982,-12745264,28198281,-7244098,-2399684,-717351,690426,14876244 }, + { 24977353,-314384,-8223969,-13465086,28432343,-1176353,-13068804,-12297348,-22380984,6618999 }, + { -1538174,11685646,12944378,13682314,-24389511,-14413193,8044829,-13817328,32239829,-5652762 }, + }, + { + { -18603066,4762990,-926250,8885304,-28412480,-3187315,9781647,-10350059,32779359,5095274 }, + { -33008130,-5214506,-32264887,-3685216,9460461,-9327423,-24601656,14506724,21639561,-2630236 }, + { -16400943,-13112215,25239338,15531969,3987758,-4499318,-1289502,-6863535,17874574,558605 }, + }, + { + { -13600129,10240081,9171883,16131053,-20869254,9599700,33499487,5080151,2085892,5119761 }, + { -22205145,-2519528,-16381601,414691,-25019550,2170430,30634760,-8363614,-31999993,-5759884 }, + { -6845704,15791202,8550074,-1312654,29928809,-12092256,27534430,-7192145,-22351378,12961482 }, + }, + { + { -24492060,-9570771,10368194,11582341,-23397293,-2245287,16533930,8206996,-30194652,-5159638 }, + { -11121496,-3382234,2307366,6362031,-135455,8868177,-16835630,7031275,7589640,8945490 }, + { -32152748,8917967,6661220,-11677616,-1192060,-15793393,7251489,-11182180,24099109,-14456170 }, + }, + { + { 5019558,-7907470,4244127,-14714356,-26933272,6453165,-19118182,-13289025,-6231896,-10280736 }, + { 10853594,10721687,26480089,5861829,-22995819,1972175,-1866647,-10557898,-3363451,-6441124 }, + { -17002408,5906790,221599,-6563147,7828208,-13248918,24362661,-2008168,-13866408,7421392 }, + }, + { + { 8139927,-6546497,32257646,-5890546,30375719,1886181,-21175108,15441252,28826358,-4123029 }, + { 6267086,9695052,7709135,-16603597,-32869068,-1886135,14795160,-7840124,13746021,-1742048 }, + { 28584902,7787108,-6732942,-15050729,22846041,-7571236,-3181936,-363524,4771362,-8419958 }, + }, +}, +{ + { + { 24949256,6376279,-27466481,-8174608,-18646154,-9930606,33543569,-12141695,3569627,11342593 }, + { 26514989,4740088,27912651,3697550,19331575,-11472339,6809886,4608608,7325975,-14801071 }, + { -11618399,-14554430,-24321212,7655128,-1369274,5214312,-27400540,10258390,-17646694,-8186692 }, + }, + { + { 11431204,15823007,26570245,14329124,18029990,4796082,-31446179,15580664,9280358,-3973687 }, + { -160783,-10326257,-22855316,-4304997,-20861367,-13621002,-32810901,-11181622,-15545091,4387441 }, + { -20799378,12194512,3937617,-5805892,-27154820,9340370,-24513992,8548137,20617071,-7482001 }, + }, + { + { -938825,-3930586,-8714311,16124718,24603125,-6225393,-13775352,-11875822,24345683,10325460 }, + { -19855277,-1568885,-22202708,8714034,14007766,6928528,16318175,-1010689,4766743,3552007 }, + { -21751364,-16730916,1351763,-803421,-4009670,3950935,3217514,14481909,10988822,-3994762 }, + }, + { + { 15564307,-14311570,3101243,5684148,30446780,-8051356,12677127,-6505343,-8295852,13296005 }, + { -9442290,6624296,-30298964,-11913677,-4670981,-2057379,31521204,9614054,-30000824,12074674 }, + { 4771191,-135239,14290749,-13089852,27992298,14998318,-1413936,-1556716,29832613,-16391035 }, + }, + { + { 7064884,-7541174,-19161962,-5067537,-18891269,-2912736,25825242,5293297,-27122660,13101590 }, + { -2298563,2439670,-7466610,1719965,-27267541,-16328445,32512469,-5317593,-30356070,-4190957 }, + { -30006540,10162316,-33180176,3981723,-16482138,-13070044,14413974,9515896,19568978,9628812 }, + }, + { + { 33053803,199357,15894591,1583059,27380243,-4580435,-17838894,-6106839,-6291786,3437740 }, + { -18978877,3884493,19469877,12726490,15913552,13614290,-22961733,70104,7463304,4176122 }, + { -27124001,10659917,11482427,-16070381,12771467,-6635117,-32719404,-5322751,24216882,5944158 }, + }, + { + { 8894125,7450974,-2664149,-9765752,-28080517,-12389115,19345746,14680796,11632993,5847885 }, + { 26942781,-2315317,9129564,-4906607,26024105,11769399,-11518837,6367194,-9727230,4782140 }, + { 19916461,-4828410,-22910704,-11414391,25606324,-5972441,33253853,8220911,6358847,-1873857 }, + }, + { + { 801428,-2081702,16569428,11065167,29875704,96627,7908388,-4480480,-13538503,1387155 }, + { 19646058,5720633,-11416706,12814209,11607948,12749789,14147075,15156355,-21866831,11835260 }, + { 19299512,1155910,28703737,14890794,2925026,7269399,26121523,15467869,-26560550,5052483 }, + }, +}, +{ + { + { -3017432,10058206,1980837,3964243,22160966,12322533,-6431123,-12618185,12228557,-7003677 }, + { 32944382,14922211,-22844894,5188528,21913450,-8719943,4001465,13238564,-6114803,8653815 }, + { 22865569,-4652735,27603668,-12545395,14348958,8234005,24808405,5719875,28483275,2841751 }, + }, + { + { -16420968,-1113305,-327719,-12107856,21886282,-15552774,-1887966,-315658,19932058,-12739203 }, + { -11656086,10087521,-8864888,-5536143,-19278573,-3055912,3999228,13239134,-4777469,-13910208 }, + { 1382174,-11694719,17266790,9194690,-13324356,9720081,20403944,11284705,-14013818,3093230 }, + }, + { + { 16650921,-11037932,-1064178,1570629,-8329746,7352753,-302424,16271225,-24049421,-6691850 }, + { -21911077,-5927941,-4611316,-5560156,-31744103,-10785293,24123614,15193618,-21652117,-16739389 }, + { -9935934,-4289447,-25279823,4372842,2087473,10399484,31870908,14690798,17361620,11864968 }, + }, + { + { -11307610,6210372,13206574,5806320,-29017692,-13967200,-12331205,-7486601,-25578460,-16240689 }, + { 14668462,-12270235,26039039,15305210,25515617,4542480,10453892,6577524,9145645,-6443880 }, + { 5974874,3053895,-9433049,-10385191,-31865124,3225009,-7972642,3936128,-5652273,-3050304 }, + }, + { + { 30625386,-4729400,-25555961,-12792866,-20484575,7695099,17097188,-16303496,-27999779,1803632 }, + { -3553091,9865099,-5228566,4272701,-5673832,-16689700,14911344,12196514,-21405489,7047412 }, + { 20093277,9920966,-11138194,-5343857,13161587,12044805,-32856851,4124601,-32343828,-10257566 }, + }, + { + { -20788824,14084654,-13531713,7842147,19119038,-13822605,4752377,-8714640,-21679658,2288038 }, + { -26819236,-3283715,29965059,3039786,-14473765,2540457,29457502,14625692,-24819617,12570232 }, + { -1063558,-11551823,16920318,12494842,1278292,-5869109,-21159943,-3498680,-11974704,4724943 }, + }, + { + { 17960970,-11775534,-4140968,-9702530,-8876562,-1410617,-12907383,-8659932,-29576300,1903856 }, + { 23134274,-14279132,-10681997,-1611936,20684485,15770816,-12989750,3190296,26955097,14109738 }, + { 15308788,5320727,-30113809,-14318877,22902008,7767164,29425325,-11277562,31960942,11934971 }, + }, + { + { -27395711,8435796,4109644,12222639,-24627868,14818669,20638173,4875028,10491392,1379718 }, + { -13159415,9197841,3875503,-8936108,-1383712,-5879801,33518459,16176658,21432314,12180697 }, + { -11787308,11500838,13787581,-13832590,-22430679,10140205,1465425,12689540,-10301319,-13872883 }, + }, +}, +{ + { + { 5414091,-15386041,-21007664,9643570,12834970,1186149,-2622916,-1342231,26128231,6032912 }, + { -26337395,-13766162,32496025,-13653919,17847801,-12669156,3604025,8316894,-25875034,-10437358 }, + { 3296484,6223048,24680646,-12246460,-23052020,5903205,-8862297,-4639164,12376617,3188849 }, + }, + { + { 29190488,-14659046,27549113,-1183516,3520066,-10697301,32049515,-7309113,-16109234,-9852307 }, + { -14744486,-9309156,735818,-598978,-20407687,-5057904,25246078,-15795669,18640741,-960977 }, + { -6928835,-16430795,10361374,5642961,4910474,12345252,-31638386,-494430,10530747,1053335 }, + }, + { + { -29265967,-14186805,-13538216,-12117373,-19457059,-10655384,-31462369,-2948985,24018831,15026644 }, + { -22592535,-3145277,-2289276,5953843,-13440189,9425631,25310643,13003497,-2314791,-15145616 }, + { -27419985,-603321,-8043984,-1669117,-26092265,13987819,-27297622,187899,-23166419,-2531735 }, + }, + { + { -21744398,-13810475,1844840,5021428,-10434399,-15911473,9716667,16266922,-5070217,726099 }, + { 29370922,-6053998,7334071,-15342259,9385287,2247707,-13661962,-4839461,30007388,-15823341 }, + { -936379,16086691,23751945,-543318,-1167538,-5189036,9137109,730663,9835848,4555336 }, + }, + { + { -23376435,1410446,-22253753,-12899614,30867635,15826977,17693930,544696,-11985298,12422646 }, + { 31117226,-12215734,-13502838,6561947,-9876867,-12757670,-5118685,-4096706,29120153,13924425 }, + { -17400879,-14233209,19675799,-2734756,-11006962,-5858820,-9383939,-11317700,7240931,-237388 }, + }, + { + { -31361739,-11346780,-15007447,-5856218,-22453340,-12152771,1222336,4389483,3293637,-15551743 }, + { -16684801,-14444245,11038544,11054958,-13801175,-3338533,-24319580,7733547,12796905,-6335822 }, + { -8759414,-10817836,-25418864,10783769,-30615557,-9746811,-28253339,3647836,3222231,-11160462 }, + }, + { + { 18606113,1693100,-25448386,-15170272,4112353,10045021,23603893,-2048234,-7550776,2484985 }, + { 9255317,-3131197,-12156162,-1004256,13098013,-9214866,16377220,-2102812,-19802075,-3034702 }, + { -22729289,7496160,-5742199,11329249,19991973,-3347502,-31718148,9936966,-30097688,-10618797 }, + }, + { + { 21878590,-5001297,4338336,13643897,-3036865,13160960,19708896,5415497,-7360503,-4109293 }, + { 27736861,10103576,12500508,8502413,-3413016,-9633558,10436918,-1550276,-23659143,-8132100 }, + { 19492550,-12104365,-29681976,-852630,-3208171,12403437,30066266,8367329,13243957,8709688 }, + }, +}, +{ + { + { 12015105,2801261,28198131,10151021,24818120,-4743133,-11194191,-5645734,5150968,7274186 }, + { 2831366,-12492146,1478975,6122054,23825128,-12733586,31097299,6083058,31021603,-9793610 }, + { -2529932,-2229646,445613,10720828,-13849527,-11505937,-23507731,16354465,15067285,-14147707 }, + }, + { + { 7840942,14037873,-33364863,15934016,-728213,-3642706,21403988,1057586,-19379462,-12403220 }, + { 915865,-16469274,15608285,-8789130,-24357026,6060030,-17371319,8410997,-7220461,16527025 }, + { 32922597,-556987,20336074,-16184568,10903705,-5384487,16957574,52992,23834301,6588044 }, + }, + { + { 32752030,11232950,3381995,-8714866,22652988,-10744103,17159699,16689107,-20314580,-1305992 }, + { -4689649,9166776,-25710296,-10847306,11576752,12733943,7924251,-2752281,1976123,-7249027 }, + { 21251222,16309901,-2983015,-6783122,30810597,12967303,156041,-3371252,12331345,-8237197 }, + }, + { + { 8651614,-4477032,-16085636,-4996994,13002507,2950805,29054427,-5106970,10008136,-4667901 }, + { 31486080,15114593,-14261250,12951354,14369431,-7387845,16347321,-13662089,8684155,-10532952 }, + { 19443825,11385320,24468943,-9659068,-23919258,2187569,-26263207,-6086921,31316348,14219878 }, + }, + { + { -28594490,1193785,32245219,11392485,31092169,15722801,27146014,6992409,29126555,9207390 }, + { 32382935,1110093,18477781,11028262,-27411763,-7548111,-4980517,10843782,-7957600,-14435730 }, + { 2814918,7836403,27519878,-7868156,-20894015,-11553689,-21494559,8550130,28346258,1994730 }, + }, + { + { -19578299,8085545,-14000519,-3948622,2785838,-16231307,-19516951,7174894,22628102,8115180 }, + { -30405132,955511,-11133838,-15078069,-32447087,-13278079,-25651578,3317160,-9943017,930272 }, + { -15303681,-6833769,28856490,1357446,23421993,1057177,24091212,-1388970,-22765376,-10650715 }, + }, + { + { -22751231,-5303997,-12907607,-12768866,-15811511,-7797053,-14839018,-16554220,-1867018,8398970 }, + { -31969310,2106403,-4736360,1362501,12813763,16200670,22981545,-6291273,18009408,-15772772 }, + { -17220923,-9545221,-27784654,14166835,29815394,7444469,29551787,-3727419,19288549,1325865 }, + }, + { + { 15100157,-15835752,-23923978,-1005098,-26450192,15509408,12376730,-3479146,33166107,-8042750 }, + { 20909231,13023121,-9209752,16251778,-5778415,-8094914,12412151,10018715,2213263,-13878373 }, + { 32529814,-11074689,30361439,-16689753,-9135940,1513226,22922121,6382134,-5766928,8371348 }, + }, +}, +{ + { + { 9923462,11271500,12616794,3544722,-29998368,-1721626,12891687,-8193132,-26442943,10486144 }, + { -22597207,-7012665,8587003,-8257861,4084309,-12970062,361726,2610596,-23921530,-11455195 }, + { 5408411,-1136691,-4969122,10561668,24145918,14240566,31319731,-4235541,19985175,-3436086 }, + }, + { + { -13994457,16616821,14549246,3341099,32155958,13648976,-17577068,8849297,65030,8370684 }, + { -8320926,-12049626,31204563,5839400,-20627288,-1057277,-19442942,6922164,12743482,-9800518 }, + { -2361371,12678785,28815050,4759974,-23893047,4884717,23783145,11038569,18800704,255233 }, + }, + { + { -5269658,-1773886,13957886,7990715,23132995,728773,13393847,9066957,19258688,-14753793 }, + { -2936654,-10827535,-10432089,14516793,-3640786,4372541,-31934921,2209390,-1524053,2055794 }, + { 580882,16705327,5468415,-2683018,-30926419,-14696000,-7203346,-8994389,-30021019,7394435 }, + }, + { + { 23838809,1822728,-15738443,15242727,8318092,-3733104,-21672180,-3492205,-4821741,14799921 }, + { 13345610,9759151,3371034,-16137791,16353039,8577942,31129804,13496856,-9056018,7402518 }, + { 2286874,-4435931,-20042458,-2008336,-13696227,5038122,11006906,-15760352,8205061,1607563 }, + }, + { + { 14414086,-8002132,3331830,-3208217,22249151,-5594188,18364661,-2906958,30019587,-9029278 }, + { -27688051,1585953,-10775053,931069,-29120221,-11002319,-14410829,12029093,9944378,8024 }, + { 4368715,-3709630,29874200,-15022983,-20230386,-11410704,-16114594,-999085,-8142388,5640030 }, + }, + { + { 10299610,13746483,11661824,16234854,7630238,5998374,9809887,-16694564,15219798,-14327783 }, + { 27425505,-5719081,3055006,10660664,23458024,595578,-15398605,-1173195,-18342183,9742717 }, + { 6744077,2427284,26042789,2720740,-847906,1118974,32324614,7406442,12420155,1994844 }, + }, + { + { 14012521,-5024720,-18384453,-9578469,-26485342,-3936439,-13033478,-10909803,24319929,-6446333 }, + { 16412690,-4507367,10772641,15929391,-17068788,-4658621,10555945,-10484049,-30102368,-4739048 }, + { 22397382,-7767684,-9293161,-12792868,17166287,-9755136,-27333065,6199366,21880021,-12250760 }, + }, + { + { -4283307,5368523,-31117018,8163389,-30323063,3209128,16557151,8890729,8840445,4957760 }, + { -15447727,709327,-6919446,-10870178,-29777922,6522332,-21720181,12130072,-14796503,5005757 }, + { -2114751,-14308128,23019042,15765735,-25269683,6002752,10183197,-13239326,-16395286,-2176112 }, + }, +}, +{ + { + { -19025756,1632005,13466291,-7995100,-23640451,16573537,-32013908,-3057104,22208662,2000468 }, + { 3065073,-1412761,-25598674,-361432,-17683065,-5703415,-8164212,11248527,-3691214,-7414184 }, + { 10379208,-6045554,8877319,1473647,-29291284,-12507580,16690915,2553332,-3132688,16400289 }, + }, + { + { 15716668,1254266,-18472690,7446274,-8448918,6344164,-22097271,-7285580,26894937,9132066 }, + { 24158887,12938817,11085297,-8177598,-28063478,-4457083,-30576463,64452,-6817084,-2692882 }, + { 13488534,7794716,22236231,5989356,25426474,-12578208,2350710,-3418511,-4688006,2364226 }, + }, + { + { 16335052,9132434,25640582,6678888,1725628,8517937,-11807024,-11697457,15445875,-7798101 }, + { 29004207,-7867081,28661402,-640412,-12794003,-7943086,31863255,-4135540,-278050,-15759279 }, + { -6122061,-14866665,-28614905,14569919,-10857999,-3591829,10343412,-6976290,-29828287,-10815811 }, + }, + { + { 27081650,3463984,14099042,-4517604,1616303,-6205604,29542636,15372179,17293797,960709 }, + { 20263915,11434237,-5765435,11236810,13505955,-10857102,-16111345,6493122,-19384511,7639714 }, + { -2830798,-14839232,25403038,-8215196,-8317012,-16173699,18006287,-16043750,29994677,-15808121 }, + }, + { + { 9769828,5202651,-24157398,-13631392,-28051003,-11561624,-24613141,-13860782,-31184575,709464 }, + { 12286395,13076066,-21775189,-1176622,-25003198,4057652,-32018128,-8890874,16102007,13205847 }, + { 13733362,5599946,10557076,3195751,-5557991,8536970,-25540170,8525972,10151379,10394400 }, + }, + { + { 4024660,-16137551,22436262,12276534,-9099015,-2686099,19698229,11743039,-33302334,8934414 }, + { -15879800,-4525240,-8580747,-2934061,14634845,-698278,-9449077,3137094,-11536886,11721158 }, + { 17555939,-5013938,8268606,2331751,-22738815,9761013,9319229,8835153,-9205489,-1280045 }, + }, + { + { -461409,-7830014,20614118,16688288,-7514766,-4807119,22300304,505429,6108462,-6183415 }, + { -5070281,12367917,-30663534,3234473,32617080,-8422642,29880583,-13483331,-26898490,-7867459 }, + { -31975283,5726539,26934134,10237677,-3173717,-605053,24199304,3795095,7592688,-14992079 }, + }, + { + { 21594432,-14964228,17466408,-4077222,32537084,2739898,6407723,12018833,-28256052,4298412 }, + { -20650503,-11961496,-27236275,570498,3767144,-1717540,13891942,-1569194,13717174,10805743 }, + { -14676630,-15644296,15287174,11927123,24177847,-8175568,-796431,14860609,-26938930,-5863836 }, + }, +}, +{ + { + { 12962541,5311799,-10060768,11658280,18855286,-7954201,13286263,-12808704,-4381056,9882022 }, + { 18512079,11319350,-20123124,15090309,18818594,5271736,-22727904,3666879,-23967430,-3299429 }, + { -6789020,-3146043,16192429,13241070,15898607,-14206114,-10084880,-6661110,-2403099,5276065 }, + }, + { + { 30169808,-5317648,26306206,-11750859,27814964,7069267,7152851,3684982,1449224,13082861 }, + { 10342826,3098505,2119311,193222,25702612,12233820,23697382,15056736,-21016438,-8202000 }, + { -33150110,3261608,22745853,7948688,19370557,-15177665,-26171976,6482814,-10300080,-11060101 }, + }, + { + { 32869458,-5408545,25609743,15678670,-10687769,-15471071,26112421,2521008,-22664288,6904815 }, + { 29506923,4457497,3377935,-9796444,-30510046,12935080,1561737,3841096,-29003639,-6657642 }, + { 10340844,-6630377,-18656632,-2278430,12621151,-13339055,30878497,-11824370,-25584551,5181966 }, + }, + { + { 25940115,-12658025,17324188,-10307374,-8671468,15029094,24396252,-16450922,-2322852,-12388574 }, + { -21765684,9916823,-1300409,4079498,-1028346,11909559,1782390,12641087,20603771,-6561742 }, + { -18882287,-11673380,24849422,11501709,13161720,-4768874,1925523,11914390,4662781,7820689 }, + }, + { + { 12241050,-425982,8132691,9393934,32846760,-1599620,29749456,12172924,16136752,15264020 }, + { -10349955,-14680563,-8211979,2330220,-17662549,-14545780,10658213,6671822,19012087,3772772 }, + { 3753511,-3421066,10617074,2028709,14841030,-6721664,28718732,-15762884,20527771,12988982 }, + }, + { + { -14822485,-5797269,-3707987,12689773,-898983,-10914866,-24183046,-10564943,3299665,-12424953 }, + { -16777703,-15253301,-9642417,4978983,3308785,8755439,6943197,6461331,-25583147,8991218 }, + { -17226263,1816362,-1673288,-6086439,31783888,-8175991,-32948145,7417950,-30242287,1507265 }, + }, + { + { 29692663,6829891,-10498800,4334896,20945975,-11906496,-28887608,8209391,14606362,-10647073 }, + { -3481570,8707081,32188102,5672294,22096700,1711240,-33020695,9761487,4170404,-2085325 }, + { -11587470,14855945,-4127778,-1531857,-26649089,15084046,22186522,16002000,-14276837,-8400798 }, + }, + { + { -4811456,13761029,-31703877,-2483919,-3312471,7869047,-7113572,-9620092,13240845,10965870 }, + { -7742563,-8256762,-14768334,-13656260,-23232383,12387166,4498947,14147411,29514390,4302863 }, + { -13413405,-12407859,20757302,-13801832,14785143,8976368,-5061276,-2144373,17846988,-13971927 }, + }, +}, +{ + { + { -2244452,-754728,-4597030,-1066309,-6247172,1455299,-21647728,-9214789,-5222701,12650267 }, + { -9906797,-16070310,21134160,12198166,-27064575,708126,387813,13770293,-19134326,10958663 }, + { 22470984,12369526,23446014,-5441109,-21520802,-9698723,-11772496,-11574455,-25083830,4271862 }, + }, + { + { -25169565,-10053642,-19909332,15361595,-5984358,2159192,75375,-4278529,-32526221,8469673 }, + { 15854970,4148314,-8893890,7259002,11666551,13824734,-30531198,2697372,24154791,-9460943 }, + { 15446137,-15806644,29759747,14019369,30811221,-9610191,-31582008,12840104,24913809,9815020 }, + }, + { + { -4709286,-5614269,-31841498,-12288893,-14443537,10799414,-9103676,13438769,18735128,9466238 }, + { 11933045,9281483,5081055,-5183824,-2628162,-4905629,-7727821,-10896103,-22728655,16199064 }, + { 14576810,379472,-26786533,-8317236,-29426508,-10812974,-102766,1876699,30801119,2164795 }, + }, + { + { 15995086,3199873,13672555,13712240,-19378835,-4647646,-13081610,-15496269,-13492807,1268052 }, + { -10290614,-3659039,-3286592,10948818,23037027,3794475,-3470338,-12600221,-17055369,3565904 }, + { 29210088,-9419337,-5919792,-4952785,10834811,-13327726,-16512102,-10820713,-27162222,-14030531 }, + }, + { + { -13161890,15508588,16663704,-8156150,-28349942,9019123,-29183421,-3769423,2244111,-14001979 }, + { -5152875,-3800936,-9306475,-6071583,16243069,14684434,-25673088,-16180800,13491506,4641841 }, + { 10813417,643330,-19188515,-728916,30292062,-16600078,27548447,-7721242,14476989,-12767431 }, + }, + { + { 10292079,9984945,6481436,8279905,-7251514,7032743,27282937,-1644259,-27912810,12651324 }, + { -31185513,-813383,22271204,11835308,10201545,15351028,17099662,3988035,21721536,-3148940 }, + { 10202177,-6545839,-31373232,-9574638,-32150642,-8119683,-12906320,3852694,13216206,14842320 }, + }, + { + { -15815640,-10601066,-6538952,-7258995,-6984659,-6581778,-31500847,13765824,-27434397,9900184 }, + { 14465505,-13833331,-32133984,-14738873,-27443187,12990492,33046193,15796406,-7051866,-8040114 }, + { 30924417,-8279620,6359016,-12816335,16508377,9071735,-25488601,15413635,9524356,-7018878 }, + }, + { + { 12274201,-13175547,32627641,-1785326,6736625,13267305,5237659,-5109483,15663516,4035784 }, + { -2951309,8903985,17349946,601635,-16432815,-4612556,-13732739,-15889334,-22258478,4659091 }, + { -16916263,-4952973,-30393711,-15158821,20774812,15897498,5736189,15026997,-2178256,-13455585 }, + }, +}, +{ + { + { -8858980,-2219056,28571666,-10155518,-474467,-10105698,-3801496,278095,23440562,-290208 }, + { 10226241,-5928702,15139956,120818,-14867693,5218603,32937275,11551483,-16571960,-7442864 }, + { 17932739,-12437276,-24039557,10749060,11316803,7535897,22503767,5561594,-3646624,3898661 }, + }, + { + { 7749907,-969567,-16339731,-16464,-25018111,15122143,-1573531,7152530,21831162,1245233 }, + { 26958459,-14658026,4314586,8346991,-5677764,11960072,-32589295,-620035,-30402091,-16716212 }, + { -12165896,9166947,33491384,13673479,29787085,13096535,6280834,14587357,-22338025,13987525 }, + }, + { + { -24349909,7778775,21116000,15572597,-4833266,-5357778,-4300898,-5124639,-7469781,-2858068 }, + { 9681908,-6737123,-31951644,13591838,-6883821,386950,31622781,6439245,-14581012,4091397 }, + { -8426427,1470727,-28109679,-1596990,3978627,-5123623,-19622683,12092163,29077877,-14741988 }, + }, + { + { 5269168,-6859726,-13230211,-8020715,25932563,1763552,-5606110,-5505881,-20017847,2357889 }, + { 32264008,-15407652,-5387735,-1160093,-2091322,-3946900,23104804,-12869908,5727338,189038 }, + { 14609123,-8954470,-6000566,-16622781,-14577387,-7743898,-26745169,10942115,-25888931,-14884697 }, + }, + { + { 20513500,5557931,-15604613,7829531,26413943,-2019404,-21378968,7471781,13913677,-5137875 }, + { -25574376,11967826,29233242,12948236,-6754465,4713227,-8940970,14059180,12878652,8511905 }, + { -25656801,3393631,-2955415,-7075526,-2250709,9366908,-30223418,6812974,5568676,-3127656 }, + }, + { + { 11630004,12144454,2116339,13606037,27378885,15676917,-17408753,-13504373,-14395196,8070818 }, + { 27117696,-10007378,-31282771,-5570088,1127282,12772488,-29845906,10483306,-11552749,-1028714 }, + { 10637467,-5688064,5674781,1072708,-26343588,-6982302,-1683975,9177853,-27493162,15431203 }, + }, + { + { 20525145,10892566,-12742472,12779443,-29493034,16150075,-28240519,14943142,-15056790,-7935931 }, + { -30024462,5626926,-551567,-9981087,753598,11981191,25244767,-3239766,-3356550,9594024 }, + { -23752644,2636870,-5163910,-10103818,585134,7877383,11345683,-6492290,13352335,-10977084 }, + }, + { + { -1931799,-5407458,3304649,-12884869,17015806,-4877091,-29783850,-7752482,-13215537,-319204 }, + { 20239939,6607058,6203985,3483793,-18386976,-779229,-20723742,15077870,-22750759,14523817 }, + { 27406042,-6041657,27423596,-4497394,4996214,10002360,-28842031,-4545494,-30172742,-4805667 }, + }, +}, +{ + { + { 11374242,12660715,17861383,-12540833,10935568,1099227,-13886076,-9091740,-27727044,11358504 }, + { -12730809,10311867,1510375,10778093,-2119455,-9145702,32676003,11149336,-26123651,4985768 }, + { -19096303,341147,-6197485,-239033,15756973,-8796662,-983043,13794114,-19414307,-15621255 }, + }, + { + { 6490081,11940286,25495923,-7726360,8668373,-8751316,3367603,6970005,-1691065,-9004790 }, + { 1656497,13457317,15370807,6364910,13605745,8362338,-19174622,-5475723,-16796596,-5031438 }, + { -22273315,-13524424,-64685,-4334223,-18605636,-10921968,-20571065,-7007978,-99853,-10237333 }, + }, + { + { 17747465,10039260,19368299,-4050591,-20630635,-16041286,31992683,-15857976,-29260363,-5511971 }, + { 31932027,-4986141,-19612382,16366580,22023614,88450,11371999,-3744247,4882242,-10626905 }, + { 29796507,37186,19818052,10115756,-11829032,3352736,18551198,3272828,-5190932,-4162409 }, + }, + { + { 12501286,4044383,-8612957,-13392385,-32430052,5136599,-19230378,-3529697,330070,-3659409 }, + { 6384877,2899513,17807477,7663917,-2358888,12363165,25366522,-8573892,-271295,12071499 }, + { -8365515,-4042521,25133448,-4517355,-6211027,2265927,-32769618,1936675,-5159697,3829363 }, + }, + { + { 28425966,-5835433,-577090,-4697198,-14217555,6870930,7921550,-6567787,26333140,14267664 }, + { -11067219,11871231,27385719,-10559544,-4585914,-11189312,10004786,-8709488,-21761224,8930324 }, + { -21197785,-16396035,25654216,-1725397,12282012,11008919,1541940,4757911,-26491501,-16408940 }, + }, + { + { 13537262,-7759490,-20604840,10961927,-5922820,-13218065,-13156584,6217254,-15943699,13814990 }, + { -17422573,15157790,18705543,29619,24409717,-260476,27361681,9257833,-1956526,-1776914 }, + { -25045300,-10191966,15366585,15166509,-13105086,8423556,-29171540,12361135,-18685978,4578290 }, + }, + { + { 24579768,3711570,1342322,-11180126,-27005135,14124956,-22544529,14074919,21964432,8235257 }, + { -6528613,-2411497,9442966,-5925588,12025640,-1487420,-2981514,-1669206,13006806,2355433 }, + { -16304899,-13605259,-6632427,-5142349,16974359,-10911083,27202044,1719366,1141648,-12796236 }, + }, + { + { -12863944,-13219986,-8318266,-11018091,-6810145,-4843894,13475066,-3133972,32674895,13715045 }, + { 11423335,-5468059,32344216,8962751,24989809,9241752,-13265253,16086212,-28740881,-15642093 }, + { -1409668,12530728,-6368726,10847387,19531186,-14132160,-11709148,7791794,-27245943,4383347 }, + }, +}, +{ + { + { -28970898,5271447,-1266009,-9736989,-12455236,16732599,-4862407,-4906449,27193557,6245191 }, + { -15193956,5362278,-1783893,2695834,4960227,12840725,23061898,3260492,22510453,8577507 }, + { -12632451,11257346,-32692994,13548177,-721004,10879011,31168030,13952092,-29571492,-3635906 }, + }, + { + { 3877321,-9572739,32416692,5405324,-11004407,-13656635,3759769,11935320,5611860,8164018 }, + { -16275802,14667797,15906460,12155291,-22111149,-9039718,32003002,-8832289,5773085,-8422109 }, + { -23788118,-8254300,1950875,8937633,18686727,16459170,-905725,12376320,31632953,190926 }, + }, + { + { -24593607,-16138885,-8423991,13378746,14162407,6901328,-8288749,4508564,-25341555,-3627528 }, + { 8884438,-5884009,6023974,10104341,-6881569,-4941533,18722941,-14786005,-1672488,827625 }, + { -32720583,-16289296,-32503547,7101210,13354605,2659080,-1800575,-14108036,-24878478,1541286 }, + }, + { + { 2901347,-1117687,3880376,-10059388,-17620940,-3612781,-21802117,-3567481,20456845,-1885033 }, + { 27019610,12299467,-13658288,-1603234,-12861660,-4861471,-19540150,-5016058,29439641,15138866 }, + { 21536104,-6626420,-32447818,-10690208,-22408077,5175814,-5420040,-16361163,7779328,109896 }, + }, + { + { 30279744,14648750,-8044871,6425558,13639621,-743509,28698390,12180118,23177719,-554075 }, + { 26572847,3405927,-31701700,12890905,-19265668,5335866,-6493768,2378492,4439158,-13279347 }, + { -22716706,3489070,-9225266,-332753,18875722,-1140095,14819434,-12731527,-17717757,-5461437 }, + }, + { + { -5056483,16566551,15953661,3767752,-10436499,15627060,-820954,2177225,8550082,-15114165 }, + { -18473302,16596775,-381660,15663611,22860960,15585581,-27844109,-3582739,-23260460,-8428588 }, + { -32480551,15707275,-8205912,-5652081,29464558,2713815,-22725137,15860482,-21902570,1494193 }, + }, + { + { -19562091,-14087393,-25583872,-9299552,13127842,759709,21923482,16529112,8742704,12967017 }, + { -28464899,1553205,32536856,-10473729,-24691605,-406174,-8914625,-2933896,-29903758,15553883 }, + { 21877909,3230008,9881174,10539357,-4797115,2841332,11543572,14513274,19375923,-12647961 }, + }, + { + { 8832269,-14495485,13253511,5137575,5037871,4078777,24880818,-6222716,2862653,9455043 }, + { 29306751,5123106,20245049,-14149889,9592566,8447059,-2077124,-2990080,15511449,4789663 }, + { -20679756,7004547,8824831,-9434977,-4045704,-3750736,-5754762,108893,23513200,16652362 }, + }, +}, +{ + { + { -33256173,4144782,-4476029,-6579123,10770039,-7155542,-6650416,-12936300,-18319198,10212860 }, + { 2756081,8598110,7383731,-6859892,22312759,-1105012,21179801,2600940,-9988298,-12506466 }, + { -24645692,13317462,-30449259,-15653928,21365574,-10869657,11344424,864440,-2499677,-16710063 }, + }, + { + { -26432803,6148329,-17184412,-14474154,18782929,-275997,-22561534,211300,2719757,4940997 }, + { -1323882,3911313,-6948744,14759765,-30027150,7851207,21690126,8518463,26699843,5276295 }, + { -13149873,-6429067,9396249,365013,24703301,-10488939,1321586,149635,-15452774,7159369 }, + }, + { + { 9987780,-3404759,17507962,9505530,9731535,-2165514,22356009,8312176,22477218,-8403385 }, + { 18155857,-16504990,19744716,9006923,15154154,-10538976,24256460,-4864995,-22548173,9334109 }, + { 2986088,-4911893,10776628,-3473844,10620590,-7083203,-21413845,14253545,-22587149,536906 }, + }, + { + { 4377756,8115836,24567078,15495314,11625074,13064599,7390551,10589625,10838060,-15420424 }, + { -19342404,867880,9277171,-3218459,-14431572,-1986443,19295826,-15796950,6378260,699185 }, + { 7895026,4057113,-7081772,-13077756,-17886831,-323126,-716039,15693155,-5045064,-13373962 }, + }, + { + { -7737563,-5869402,-14566319,-7406919,11385654,13201616,31730678,-10962840,-3918636,-9669325 }, + { 10188286,-15770834,-7336361,13427543,22223443,14896287,30743455,7116568,-21786507,5427593 }, + { 696102,13206899,27047647,-10632082,15285305,-9853179,10798490,-4578720,19236243,12477404 }, + }, + { + { -11229439,11243796,-17054270,-8040865,-788228,-8167967,-3897669,11180504,-23169516,7733644 }, + { 17800790,-14036179,-27000429,-11766671,23887827,3149671,23466177,-10538171,10322027,15313801 }, + { 26246234,11968874,32263343,-5468728,6830755,-13323031,-15794704,-101982,-24449242,10890804 }, + }, + { + { -31365647,10271363,-12660625,-6267268,16690207,-13062544,-14982212,16484931,25180797,-5334884 }, + { -586574,10376444,-32586414,-11286356,19801893,10997610,2276632,9482883,316878,13820577 }, + { -9882808,-4510367,-2115506,16457136,-11100081,11674996,30756178,-7515054,30696930,-3712849 }, + }, + { + { 32988917,-9603412,12499366,7910787,-10617257,-11931514,-7342816,-9985397,-32349517,7392473 }, + { -8855661,15927861,9866406,-3649411,-2396914,-16655781,-30409476,-9134995,25112947,-2926644 }, + { -2504044,-436966,25621774,-5678772,15085042,-5479877,-24884878,-13526194,5537438,-13914319 }, + }, +}, +{ + { + { -11225584,2320285,-9584280,10149187,-33444663,5808648,-14876251,-1729667,31234590,6090599 }, + { -9633316,116426,26083934,2897444,-6364437,-2688086,609721,15878753,-6970405,-9034768 }, + { -27757857,247744,-15194774,-9002551,23288161,-10011936,-23869595,6503646,20650474,1804084 }, + }, + { + { -27589786,15456424,8972517,8469608,15640622,4439847,3121995,-10329713,27842616,-202328 }, + { -15306973,2839644,22530074,10026331,4602058,5048462,28248656,5031932,-11375082,12714369 }, + { 20807691,-7270825,29286141,11421711,-27876523,-13868230,-21227475,1035546,-19733229,12796920 }, + }, + { + { 12076899,-14301286,-8785001,-11848922,-25012791,16400684,-17591495,-12899438,3480665,-15182815 }, + { -32361549,5457597,28548107,7833186,7303070,-11953545,-24363064,-15921875,-33374054,2771025 }, + { -21389266,421932,26597266,6860826,22486084,-6737172,-17137485,-4210226,-24552282,15673397 }, + }, + { + { -20184622,2338216,19788685,-9620956,-4001265,-8740893,-20271184,4733254,3727144,-12934448 }, + { 6120119,814863,-11794402,-622716,6812205,-15747771,2019594,7975683,31123697,-10958981 }, + { 30069250,-11435332,30434654,2958439,18399564,-976289,12296869,9204260,-16432438,9648165 }, + }, + { + { 32705432,-1550977,30705658,7451065,-11805606,9631813,3305266,5248604,-26008332,-11377501 }, + { 17219865,2375039,-31570947,-5575615,-19459679,9219903,294711,15298639,2662509,-16297073 }, + { -1172927,-7558695,-4366770,-4287744,-21346413,-8434326,32087529,-1222777,32247248,-14389861 }, + }, + { + { 14312628,1221556,17395390,-8700143,-4945741,-8684635,-28197744,-9637817,-16027623,-13378845 }, + { -1428825,-9678990,-9235681,6549687,-7383069,-468664,23046502,9803137,17597934,2346211 }, + { 18510800,15337574,26171504,981392,-22241552,7827556,-23491134,-11323352,3059833,-11782870 }, + }, + { + { 10141598,6082907,17829293,-1947643,9830092,13613136,-25556636,-5544586,-33502212,3592096 }, + { 33114168,-15889352,-26525686,-13343397,33076705,8716171,1151462,1521897,-982665,-6837803 }, + { -32939165,-4255815,23947181,-324178,-33072974,-12305637,-16637686,3891704,26353178,693168 }, + }, + { + { 30374239,1595580,-16884039,13186931,4600344,406904,9585294,-400668,31375464,14369965 }, + { -14370654,-7772529,1510301,6434173,-18784789,-6262728,32732230,-13108839,17901441,16011505 }, + { 18171223,-11934626,-12500402,15197122,-11038147,-15230035,-19172240,-16046376,8764035,12309598 }, + }, +}, +{ + { + { 5975908,-5243188,-19459362,-9681747,-11541277,14015782,-23665757,1228319,17544096,-10593782 }, + { 5811932,-1715293,3442887,-2269310,-18367348,-8359541,-18044043,-15410127,-5565381,12348900 }, + { -31399660,11407555,25755363,6891399,-3256938,14872274,-24849353,8141295,-10632534,-585479 }, + }, + { + { -12675304,694026,-5076145,13300344,14015258,-14451394,-9698672,-11329050,30944593,1130208 }, + { 8247766,-6710942,-26562381,-7709309,-14401939,-14648910,4652152,2488540,23550156,-271232 }, + { 17294316,-3788438,7026748,15626851,22990044,113481,2267737,-5908146,-408818,-137719 }, + }, + { + { 16091085,-16253926,18599252,7340678,2137637,-1221657,-3364161,14550936,3260525,-7166271 }, + { -4910104,-13332887,18550887,10864893,-16459325,-7291596,-23028869,-13204905,-12748722,2701326 }, + { -8574695,16099415,4629974,-16340524,-20786213,-6005432,-10018363,9276971,11329923,1862132 }, + }, + { + { 14763076,-15903608,-30918270,3689867,3511892,10313526,-21951088,12219231,-9037963,-940300 }, + { 8894987,-3446094,6150753,3013931,301220,15693451,-31981216,-2909717,-15438168,11595570 }, + { 15214962,3537601,-26238722,-14058872,4418657,-15230761,13947276,10730794,-13489462,-4363670 }, + }, + { + { -2538306,7682793,32759013,263109,-29984731,-7955452,-22332124,-10188635,977108,699994 }, + { -12466472,4195084,-9211532,550904,-15565337,12917920,19118110,-439841,-30534533,-14337913 }, + { 31788461,-14507657,4799989,7372237,8808585,-14747943,9408237,-10051775,12493932,-5409317 }, + }, + { + { -25680606,5260744,-19235809,-6284470,-3695942,16566087,27218280,2607121,29375955,6024730 }, + { 842132,-2794693,-4763381,-8722815,26332018,-12405641,11831880,6985184,-9940361,2854096 }, + { -4847262,-7969331,2516242,-5847713,9695691,-7221186,16512645,960770,12121869,16648078 }, + }, + { + { -15218652,14667096,-13336229,2013717,30598287,-464137,-31504922,-7882064,20237806,2838411 }, + { -19288047,4453152,15298546,-16178388,22115043,-15972604,12544294,-13470457,1068881,-12499905 }, + { -9558883,-16518835,33238498,13506958,30505848,-1114596,-8486907,-2630053,12521378,4845654 }, + }, + { + { -28198521,10744108,-2958380,10199664,7759311,-13088600,3409348,-873400,-6482306,-12885870 }, + { -23561822,6230156,-20382013,10655314,-24040585,-11621172,10477734,-1240216,-3113227,13974498 }, + { 12966261,15550616,-32038948,-1615346,21025980,-629444,5642325,7188737,18895762,12629579 }, + }, +}, +{ + { + { 14741879,-14946887,22177208,-11721237,1279741,8058600,11758140,789443,32195181,3895677 }, + { 10758205,15755439,-4509950,9243698,-4879422,6879879,-2204575,-3566119,-8982069,4429647 }, + { -2453894,15725973,-20436342,-10410672,-5803908,-11040220,-7135870,-11642895,18047436,-15281743 }, + }, + { + { -25173001,-11307165,29759956,11776784,-22262383,-15820455,10993114,-12850837,-17620701,-9408468 }, + { 21987233,700364,-24505048,14972008,-7774265,-5718395,32155026,2581431,-29958985,8773375 }, + { -25568350,454463,-13211935,16126715,25240068,8594567,20656846,12017935,-7874389,-13920155 }, + }, + { + { 6028182,6263078,-31011806,-11301710,-818919,2461772,-31841174,-5468042,-1721788,-2776725 }, + { -12278994,16624277,987579,-5922598,32908203,1248608,7719845,-4166698,28408820,6816612 }, + { -10358094,-8237829,19549651,-12169222,22082623,16147817,20613181,13982702,-10339570,5067943 }, + }, + { + { -30505967,-3821767,12074681,13582412,-19877972,2443951,-19719286,12746132,5331210,-10105944 }, + { 30528811,3601899,-1957090,4619785,-27361822,-15436388,24180793,-12570394,27679908,-1648928 }, + { 9402404,-13957065,32834043,10838634,-26580150,-13237195,26653274,-8685565,22611444,-12715406 }, + }, + { + { 22190590,1118029,22736441,15130463,-30460692,-5991321,19189625,-4648942,4854859,6622139 }, + { -8310738,-2953450,-8262579,-3388049,-10401731,-271929,13424426,-3567227,26404409,13001963 }, + { -31241838,-15415700,-2994250,8939346,11562230,-12840670,-26064365,-11621720,-15405155,11020693 }, + }, + { + { 1866042,-7949489,-7898649,-10301010,12483315,13477547,3175636,-12424163,28761762,1406734 }, + { -448555,-1777666,13018551,3194501,-9580420,-11161737,24760585,-4347088,25577411,-13378680 }, + { -24290378,4759345,-690653,-1852816,2066747,10693769,-29595790,9884936,-9368926,4745410 }, + }, + { + { -9141284,6049714,-19531061,-4341411,-31260798,9944276,-15462008,-11311852,10931924,-11931931 }, + { -16561513,14112680,-8012645,4817318,-8040464,-11414606,-22853429,10856641,-20470770,13434654 }, + { 22759489,-10073434,-16766264,-1871422,13637442,-10168091,1765144,-12654326,28445307,-5364710 }, + }, + { + { 29875063,12493613,2795536,-3786330,1710620,15181182,-10195717,-8788675,9074234,1167180 }, + { -26205683,11014233,-9842651,-2635485,-26908120,7532294,-18716888,-9535498,3843903,9367684 }, + { -10969595,-6403711,9591134,9582310,11349256,108879,16235123,8601684,-139197,4242895 }, + }, +}, +{ + { + { 22092954,-13191123,-2042793,-11968512,32186753,-11517388,-6574341,2470660,-27417366,16625501 }, + { -11057722,3042016,13770083,-9257922,584236,-544855,-7770857,2602725,-27351616,14247413 }, + { 6314175,-10264892,-32772502,15957557,-10157730,168750,-8618807,14290061,27108877,-1180880 }, + }, + { + { -8586597,-7170966,13241782,10960156,-32991015,-13794596,33547976,-11058889,-27148451,981874 }, + { 22833440,9293594,-32649448,-13618667,-9136966,14756819,-22928859,-13970780,-10479804,-16197962 }, + { -7768587,3326786,-28111797,10783824,19178761,14905060,22680049,13906969,-15933690,3797899 }, + }, + { + { 21721356,-4212746,-12206123,9310182,-3882239,-13653110,23740224,-2709232,20491983,-8042152 }, + { 9209270,-15135055,-13256557,-6167798,-731016,15289673,25947805,15286587,30997318,-6703063 }, + { 7392032,16618386,23946583,-8039892,-13265164,-1533858,-14197445,-2321576,17649998,-250080 }, + }, + { + { -9301088,-14193827,30609526,-3049543,-25175069,-1283752,-15241566,-9525724,-2233253,7662146 }, + { -17558673,1763594,-33114336,15908610,-30040870,-12174295,7335080,-8472199,-3174674,3440183 }, + { -19889700,-5977008,-24111293,-9688870,10799743,-16571957,40450,-4431835,4862400,1133 }, + }, + { + { -32856209,-7873957,-5422389,14860950,-16319031,7956142,7258061,311861,-30594991,-7379421 }, + { -3773428,-1565936,28985340,7499440,24445838,9325937,29727763,16527196,18278453,15405622 }, + { -4381906,8508652,-19898366,-3674424,-5984453,15149970,-13313598,843523,-21875062,13626197 }, + }, + { + { 2281448,-13487055,-10915418,-2609910,1879358,16164207,-10783882,3953792,13340839,15928663 }, + { 31727126,-7179855,-18437503,-8283652,2875793,-16390330,-25269894,-7014826,-23452306,5964753 }, + { 4100420,-5959452,-17179337,6017714,-18705837,12227141,-26684835,11344144,2538215,-7570755 }, + }, + { + { -9433605,6123113,11159803,-2156608,30016280,14966241,-20474983,1485421,-629256,-15958862 }, + { -26804558,4260919,11851389,9658551,-32017107,16367492,-20205425,-13191288,11659922,-11115118 }, + { 26180396,10015009,-30844224,-8581293,5418197,9480663,2231568,-10170080,33100372,-1306171 }, + }, + { + { 15121113,-5201871,-10389905,15427821,-27509937,-15992507,21670947,4486675,-5931810,-14466380 }, + { 16166486,-9483733,-11104130,6023908,-31926798,-1364923,2340060,-16254968,-10735770,-10039824 }, + { 28042865,-3557089,-12126526,12259706,-3717498,-6945899,6766453,-8689599,18036436,5803270 }, + }, +}, +{ + { + { -817581,6763912,11803561,1585585,10958447,-2671165,23855391,4598332,-6159431,-14117438 }, + { -31031306,-14256194,17332029,-2383520,31312682,-5967183,696309,50292,-20095739,11763584 }, + { -594563,-2514283,-32234153,12643980,12650761,14811489,665117,-12613632,-19773211,-10713562 }, + }, + { + { 30464590,-11262872,-4127476,-12734478,19835327,-7105613,-24396175,2075773,-17020157,992471 }, + { 18357185,-6994433,7766382,16342475,-29324918,411174,14578841,8080033,-11574335,-10601610 }, + { 19598397,10334610,12555054,2555664,18821899,-10339780,21873263,16014234,26224780,16452269 }, + }, + { + { -30223925,5145196,5944548,16385966,3976735,2009897,-11377804,-7618186,-20533829,3698650 }, + { 14187449,3448569,-10636236,-10810935,-22663880,-3433596,7268410,-10890444,27394301,12015369 }, + { 19695761,16087646,28032085,12999827,6817792,11427614,20244189,-1312777,-13259127,-3402461 }, + }, + { + { 30860103,12735208,-1888245,-4699734,-16974906,2256940,-8166013,12298312,-8550524,-10393462 }, + { -5719826,-11245325,-1910649,15569035,26642876,-7587760,-5789354,-15118654,-4976164,12651793 }, + { -2848395,9953421,11531313,-5282879,26895123,-12697089,-13118820,-16517902,9768698,-2533218 }, + }, + { + { -24719459,1894651,-287698,-4704085,15348719,-8156530,32767513,12765450,4940095,10678226 }, + { 18860224,15980149,-18987240,-1562570,-26233012,-11071856,-7843882,13944024,-24372348,16582019 }, + { -15504260,4970268,-29893044,4175593,-20993212,-2199756,-11704054,15444560,-11003761,7989037 }, + }, + { + { 31490452,5568061,-2412803,2182383,-32336847,4531686,-32078269,6200206,-19686113,-14800171 }, + { -17308668,-15879940,-31522777,-2831,-32887382,16375549,8680158,-16371713,28550068,-6857132 }, + { -28126887,-5688091,16837845,-1820458,-6850681,12700016,-30039981,4364038,1155602,5988841 }, + }, + { + { 21890435,-13272907,-12624011,12154349,-7831873,15300496,23148983,-4470481,24618407,8283181 }, + { -33136107,-10512751,9975416,6841041,-31559793,16356536,3070187,-7025928,1466169,10740210 }, + { -1509399,-15488185,-13503385,-10655916,32799044,909394,-13938903,-5779719,-32164649,-15327040 }, + }, + { + { 3960823,-14267803,-28026090,-15918051,-19404858,13146868,15567327,951507,-3260321,-573935 }, + { 24740841,5052253,-30094131,8961361,25877428,6165135,-24368180,14397372,-7380369,-6144105 }, + { -28888365,3510803,-28103278,-1158478,-11238128,-10631454,-15441463,-14453128,-1625486,-6494814 }, + }, +}, +{ + { + { 793299,-9230478,8836302,-6235707,-27360908,-2369593,33152843,-4885251,-9906200,-621852 }, + { 5666233,525582,20782575,-8038419,-24538499,14657740,16099374,1468826,-6171428,-15186581 }, + { -4859255,-3779343,-2917758,-6748019,7778750,11688288,-30404353,-9871238,-1558923,-9863646 }, + }, + { + { 10896332,-7719704,824275,472601,-19460308,3009587,25248958,14783338,-30581476,-15757844 }, + { 10566929,12612572,-31944212,11118703,-12633376,12362879,21752402,8822496,24003793,14264025 }, + { 27713862,-7355973,-11008240,9227530,27050101,2504721,23886875,-13117525,13958495,-5732453 }, + }, + { + { -23481610,4867226,-27247128,3900521,29838369,-8212291,-31889399,-10041781,7340521,-15410068 }, + { 4646514,-8011124,-22766023,-11532654,23184553,8566613,31366726,-1381061,-15066784,-10375192 }, + { -17270517,12723032,-16993061,14878794,21619651,-6197576,27584817,3093888,-8843694,3849921 }, + }, + { + { -9064912,2103172,25561640,-15125738,-5239824,9582958,32477045,-9017955,5002294,-15550259 }, + { -12057553,-11177906,21115585,-13365155,8808712,-12030708,16489530,13378448,-25845716,12741426 }, + { -5946367,10645103,-30911586,15390284,-3286982,-7118677,24306472,15852464,28834118,-7646072 }, + }, + { + { -17335748,-9107057,-24531279,9434953,-8472084,-583362,-13090771,455841,20461858,5491305 }, + { 13669248,-16095482,-12481974,-10203039,-14569770,-11893198,-24995986,11293807,-28588204,-9421832 }, + { 28497928,6272777,-33022994,14470570,8906179,-1225630,18504674,-14165166,29867745,-8795943 }, + }, + { + { -16207023,13517196,-27799630,-13697798,24009064,-6373891,-6367600,-13175392,22853429,-4012011 }, + { 24191378,16712145,-13931797,15217831,14542237,1646131,18603514,-11037887,12876623,-2112447 }, + { 17902668,4518229,-411702,-2829247,26878217,5258055,-12860753,608397,16031844,3723494 }, + }, + { + { -28632773,12763728,-20446446,7577504,33001348,-13017745,17558842,-7872890,23896954,-4314245 }, + { -20005381,-12011952,31520464,605201,2543521,5991821,-2945064,7229064,-9919646,-8826859 }, + { 28816045,298879,-28165016,-15920938,19000928,-1665890,-12680833,-2949325,-18051778,-2082915 }, + }, + { + { 16000882,-344896,3493092,-11447198,-29504595,-13159789,12577740,16041268,-19715240,7847707 }, + { 10151868,10572098,27312476,7922682,14825339,4723128,-32855931,-6519018,-10020567,3852848 }, + { -11430470,15697596,-21121557,-4420647,5386314,15063598,16514493,-15932110,29330899,-15076224 }, + }, +}, +{ + { + { -25499735,-4378794,-15222908,-6901211,16615731,2051784,3303702,15490,-27548796,12314391 }, + { 15683520,-6003043,18109120,-9980648,15337968,-5997823,-16717435,15921866,16103996,-3731215 }, + { -23169824,-10781249,13588192,-1628807,-3798557,-1074929,-19273607,5402699,-29815713,-9841101 }, + }, + { + { 23190676,2384583,-32714340,3462154,-29903655,-1529132,-11266856,8911517,-25205859,2739713 }, + { 21374101,-3554250,-33524649,9874411,15377179,11831242,-33529904,6134907,4931255,11987849 }, + { -7732,-2978858,-16223486,7277597,105524,-322051,-31480539,13861388,-30076310,10117930 }, + }, + { + { -29501170,-10744872,-26163768,13051539,-25625564,5089643,-6325503,6704079,12890019,15728940 }, + { -21972360,-11771379,-951059,-4418840,14704840,2695116,903376,-10428139,12885167,8311031 }, + { -17516482,5352194,10384213,-13811658,7506451,13453191,26423267,4384730,1888765,-5435404 }, + }, + { + { -25817338,-3107312,-13494599,-3182506,30896459,-13921729,-32251644,-12707869,-19464434,-3340243 }, + { -23607977,-2665774,-526091,4651136,5765089,4618330,6092245,14845197,17151279,-9854116 }, + { -24830458,-12733720,-15165978,10367250,-29530908,-265356,22825805,-7087279,-16866484,16176525 }, + }, + { + { -23583256,6564961,20063689,3798228,-4740178,7359225,2006182,-10363426,-28746253,-10197509 }, + { -10626600,-4486402,-13320562,-5125317,3432136,-6393229,23632037,-1940610,32808310,1099883 }, + { 15030977,5768825,-27451236,-2887299,-6427378,-15361371,-15277896,-6809350,2051441,-15225865 }, + }, + { + { -3362323,-7239372,7517890,9824992,23555850,295369,5148398,-14154188,-22686354,16633660 }, + { 4577086,-16752288,13249841,-15304328,19958763,-14537274,18559670,-10759549,8402478,-9864273 }, + { -28406330,-1051581,-26790155,-907698,-17212414,-11030789,9453451,-14980072,17983010,9967138 }, + }, + { + { -25762494,6524722,26585488,9969270,24709298,1220360,-1677990,7806337,17507396,3651560 }, + { -10420457,-4118111,14584639,15971087,-15768321,8861010,26556809,-5574557,-18553322,-11357135 }, + { 2839101,14284142,4029895,3472686,14402957,12689363,-26642121,8459447,-5605463,-7621941 }, + }, + { + { -4839289,-3535444,9744961,2871048,25113978,3187018,-25110813,-849066,17258084,-7977739 }, + { 18164541,-10595176,-17154882,-1542417,19237078,-9745295,23357533,-15217008,26908270,12150756 }, + { -30264870,-7647865,5112249,-7036672,-1499807,-6974257,43168,-5537701,-32302074,16215819 }, + }, +}, +{ + { + { -6898905,9824394,-12304779,-4401089,-31397141,-6276835,32574489,12532905,-7503072,-8675347 }, + { -27343522,-16515468,-27151524,-10722951,946346,16291093,254968,7168080,21676107,-1943028 }, + { 21260961,-8424752,-16831886,-11920822,-23677961,3968121,-3651949,-6215466,-3556191,-7913075 }, + }, + { + { 16544754,13250366,-16804428,15546242,-4583003,12757258,-2462308,-8680336,-18907032,-9662799 }, + { -2415239,-15577728,18312303,4964443,-15272530,-12653564,26820651,16690659,25459437,-4564609 }, + { -25144690,11425020,28423002,-11020557,-6144921,-15826224,9142795,-2391602,-6432418,-1644817 }, + }, + { + { -23104652,6253476,16964147,-3768872,-25113972,-12296437,-27457225,-16344658,6335692,7249989 }, + { -30333227,13979675,7503222,-12368314,-11956721,-4621693,-30272269,2682242,25993170,-12478523 }, + { 4364628,5930691,32304656,-10044554,-8054781,15091131,22857016,-10598955,31820368,15075278 }, + }, + { + { 31879134,-8918693,17258761,90626,-8041836,-4917709,24162788,-9650886,-17970238,12833045 }, + { 19073683,14851414,-24403169,-11860168,7625278,11091125,-19619190,2074449,-9413939,14905377 }, + { 24483667,-11935567,-2518866,-11547418,-1553130,15355506,-25282080,9253129,27628530,-7555480 }, + }, + { + { 17597607,8340603,19355617,552187,26198470,-3176583,4593324,-9157582,-14110875,15297016 }, + { 510886,14337390,-31785257,16638632,6328095,2713355,-20217417,-11864220,8683221,2921426 }, + { 18606791,11874196,27155355,-5281482,-24031742,6265446,-25178240,-1278924,4674690,13890525 }, + }, + { + { 13609624,13069022,-27372361,-13055908,24360586,9592974,14977157,9835105,4389687,288396 }, + { 9922506,-519394,13613107,5883594,-18758345,-434263,-12304062,8317628,23388070,16052080 }, + { 12720016,11937594,-31970060,-5028689,26900120,8561328,-20155687,-11632979,-14754271,-10812892 }, + }, + { + { 15961858,14150409,26716931,-665832,-22794328,13603569,11829573,7467844,-28822128,929275 }, + { 11038231,-11582396,-27310482,-7316562,-10498527,-16307831,-23479533,-9371869,-21393143,2465074 }, + { 20017163,-4323226,27915242,1529148,12396362,15675764,13817261,-9658066,2463391,-4622140 }, + }, + { + { -16358878,-12663911,-12065183,4996454,-1256422,1073572,9583558,12851107,4003896,12673717 }, + { -1731589,-15155870,-3262930,16143082,19294135,13385325,14741514,-9103726,7903886,2348101 }, + { 24536016,-16515207,12715592,-3862155,1511293,10047386,-3842346,-7129159,-28377538,10048127 }, + }, +}, +{ + { + { -12622226,-6204820,30718825,2591312,-10617028,12192840,18873298,-7297090,-32297756,15221632 }, + { -26478122,-11103864,11546244,-1852483,9180880,7656409,-21343950,2095755,29769758,6593415 }, + { -31994208,-2907461,4176912,3264766,12538965,-868111,26312345,-6118678,30958054,8292160 }, + }, + { + { 31429822,-13959116,29173532,15632448,12174511,-2760094,32808831,3977186,26143136,-3148876 }, + { 22648901,1402143,-22799984,13746059,7936347,365344,-8668633,-1674433,-3758243,-2304625 }, + { -15491917,8012313,-2514730,-12702462,-23965846,-10254029,-1612713,-1535569,-16664475,8194478 }, + }, + { + { 27338066,-7507420,-7414224,10140405,-19026427,-6589889,27277191,8855376,28572286,3005164 }, + { 26287124,4821776,25476601,-4145903,-3764513,-15788984,-18008582,1182479,-26094821,-13079595 }, + { -7171154,3178080,23970071,6201893,-17195577,-4489192,-21876275,-13982627,32208683,-1198248 }, + }, + { + { -16657702,2817643,-10286362,14811298,6024667,13349505,-27315504,-10497842,-27672585,-11539858 }, + { 15941029,-9405932,-21367050,8062055,31876073,-238629,-15278393,-1444429,15397331,-4130193 }, + { 8934485,-13485467,-23286397,-13423241,-32446090,14047986,31170398,-1441021,-27505566,15087184 }, + }, + { + { -18357243,-2156491,24524913,-16677868,15520427,-6360776,-15502406,11461896,16788528,-5868942 }, + { -1947386,16013773,21750665,3714552,-17401782,-16055433,-3770287,-10323320,31322514,-11615635 }, + { 21426655,-5650218,-13648287,-5347537,-28812189,-4920970,-18275391,-14621414,13040862,-12112948 }, + }, + { + { 11293895,12478086,-27136401,15083750,-29307421,14748872,14555558,-13417103,1613711,4896935 }, + { -25894883,15323294,-8489791,-8057900,25967126,-13425460,2825960,-4897045,-23971776,-11267415 }, + { -15924766,-5229880,-17443532,6410664,3622847,10243618,20615400,12405433,-23753030,-8436416 }, + }, + { + { -7091295,12556208,-20191352,9025187,-17072479,4333801,4378436,2432030,23097949,-566018 }, + { 4565804,-16025654,20084412,-7842817,1724999,189254,24767264,10103221,-18512313,2424778 }, + { 366633,-11976806,8173090,-6890119,30788634,5745705,-7168678,1344109,-3642553,12412659 }, + }, + { + { -24001791,7690286,14929416,-168257,-32210835,-13412986,24162697,-15326504,-3141501,11179385 }, + { 18289522,-14724954,8056945,16430056,-21729724,7842514,-6001441,-1486897,-18684645,-11443503 }, + { 476239,6601091,-6152790,-9723375,17503545,-4863900,27672959,13403813,11052904,5219329 }, + }, +}, +{ + { + { 20678546,-8375738,-32671898,8849123,-5009758,14574752,31186971,-3973730,9014762,-8579056 }, + { -13644050,-10350239,-15962508,5075808,-1514661,-11534600,-33102500,9160280,8473550,-3256838 }, + { 24900749,14435722,17209120,-15292541,-22592275,9878983,-7689309,-16335821,-24568481,11788948 }, + }, + { + { -3118155,-11395194,-13802089,14797441,9652448,-6845904,-20037437,10410733,-24568470,-1458691 }, + { -15659161,16736706,-22467150,10215878,-9097177,7563911,11871841,-12505194,-18513325,8464118 }, + { -23400612,8348507,-14585951,-861714,-3950205,-6373419,14325289,8628612,33313881,-8370517 }, + }, + { + { -20186973,-4967935,22367356,5271547,-1097117,-4788838,-24805667,-10236854,-8940735,-5818269 }, + { -6948785,-1795212,-32625683,-16021179,32635414,-7374245,15989197,-12838188,28358192,-4253904 }, + { -23561781,-2799059,-32351682,-1661963,-9147719,10429267,-16637684,4072016,-5351664,5596589 }, + }, + { + { -28236598,-3390048,12312896,6213178,3117142,16078565,29266239,2557221,1768301,15373193 }, + { -7243358,-3246960,-4593467,-7553353,-127927,-912245,-1090902,-4504991,-24660491,3442910 }, + { -30210571,5124043,14181784,8197961,18964734,-11939093,22597931,7176455,-18585478,13365930 }, + }, + { + { -7877390,-1499958,8324673,4690079,6261860,890446,24538107,-8570186,-9689599,-3031667 }, + { 25008904,-10771599,-4305031,-9638010,16265036,15721635,683793,-11823784,15723479,-15163481 }, + { -9660625,12374379,-27006999,-7026148,-7724114,-12314514,11879682,5400171,519526,-1235876 }, + }, + { + { 22258397,-16332233,-7869817,14613016,-22520255,-2950923,-20353881,7315967,16648397,7605640 }, + { -8081308,-8464597,-8223311,9719710,19259459,-15348212,23994942,-5281555,-9468848,4763278 }, + { -21699244,9220969,-15730624,1084137,-25476107,-2852390,31088447,-7764523,-11356529,728112 }, + }, + { + { 26047220,-11751471,-6900323,-16521798,24092068,9158119,-4273545,-12555558,-29365436,-5498272 }, + { 17510331,-322857,5854289,8403524,17133918,-3112612,-28111007,12327945,10750447,10014012 }, + { -10312768,3936952,9156313,-8897683,16498692,-994647,-27481051,-666732,3424691,7540221 }, + }, + { + { 30322361,-6964110,11361005,-4143317,7433304,4989748,-7071422,-16317219,-9244265,15258046 }, + { 13054562,-2779497,19155474,469045,-12482797,4566042,5631406,2711395,1062915,-5136345 }, + { -19240248,-11254599,-29509029,-7499965,-5835763,13005411,-6066489,12194497,32960380,1459310 }, + }, +}, +{ + { + { 19852034,7027924,23669353,10020366,8586503,-6657907,394197,-6101885,18638003,-11174937 }, + { 31395534,15098109,26581030,8030562,-16527914,-5007134,9012486,-7584354,-6643087,-5442636 }, + { -9192165,-2347377,-1997099,4529534,25766844,607986,-13222,9677543,-32294889,-6456008 }, + }, + { + { -2444496,-149937,29348902,8186665,1873760,12489863,-30934579,-7839692,-7852844,-8138429 }, + { -15236356,-15433509,7766470,746860,26346930,-10221762,-27333451,10754588,-9431476,5203576 }, + { 31834314,14135496,-770007,5159118,20917671,-16768096,-7467973,-7337524,31809243,7347066 }, + }, + { + { -9606723,-11874240,20414459,13033986,13716524,-11691881,19797970,-12211255,15192876,-2087490 }, + { -12663563,-2181719,1168162,-3804809,26747877,-14138091,10609330,12694420,33473243,-13382104 }, + { 33184999,11180355,15832085,-11385430,-1633671,225884,15089336,-11023903,-6135662,14480053 }, + }, + { + { 31308717,-5619998,31030840,-1897099,15674547,-6582883,5496208,13685227,27595050,8737275 }, + { -20318852,-15150239,10933843,-16178022,8335352,-7546022,-31008351,-12610604,26498114,66511 }, + { 22644454,-8761729,-16671776,4884562,-3105614,-13559366,30540766,-4286747,-13327787,-7515095 }, + }, + { + { -28017847,9834845,18617207,-2681312,-3401956,-13307506,8205540,13585437,-17127465,15115439 }, + { 23711543,-672915,31206561,-8362711,6164647,-9709987,-33535882,-1426096,8236921,16492939 }, + { -23910559,-13515526,-26299483,-4503841,25005590,-7687270,19574902,10071562,6708380,-6222424 }, + }, + { + { 2101391,-4930054,19702731,2367575,-15427167,1047675,5301017,9328700,29955601,-11678310 }, + { 3096359,9271816,-21620864,-15521844,-14847996,-7592937,-25892142,-12635595,-9917575,6216608 }, + { -32615849,338663,-25195611,2510422,-29213566,-13820213,24822830,-6146567,-26767480,7525079 }, + }, + { + { -23066649,-13985623,16133487,-7896178,-3389565,778788,-910336,-2782495,-19386633,11994101 }, + { 21691500,-13624626,-641331,-14367021,3285881,-3483596,-25064666,9718258,-7477437,13381418 }, + { 18445390,-4202236,14979846,11622458,-1727110,-3582980,23111648,-6375247,28535282,15779576 }, + }, + { + { 30098053,3089662,-9234387,16662135,-21306940,11308411,-14068454,12021730,9955285,-16303356 }, + { 9734894,-14576830,-7473633,-9138735,2060392,11313496,-18426029,9924399,20194861,13380996 }, + { -26378102,-7965207,-22167821,15789297,-18055342,-6168792,-1984914,15707771,26342023,10146099 }, + }, +}, +{ + { + { -26016874,-219943,21339191,-41388,19745256,-2878700,-29637280,2227040,21612326,-545728 }, + { -13077387,1184228,23562814,-5970442,-20351244,-6348714,25764461,12243797,-20856566,11649658 }, + { -10031494,11262626,27384172,2271902,26947504,-15997771,39944,6114064,33514190,2333242 }, + }, + { + { -21433588,-12421821,8119782,7219913,-21830522,-9016134,-6679750,-12670638,24350578,-13450001 }, + { -4116307,-11271533,-23886186,4843615,-30088339,690623,-31536088,-10406836,8317860,12352766 }, + { 18200138,-14475911,-33087759,-2696619,-23702521,-9102511,-23552096,-2287550,20712163,6719373 }, + }, + { + { 26656208,6075253,-7858556,1886072,-28344043,4262326,11117530,-3763210,26224235,-3297458 }, + { -17168938,-14854097,-3395676,-16369877,-19954045,14050420,21728352,9493610,18620611,-16428628 }, + { -13323321,13325349,11432106,5964811,18609221,6062965,-5269471,-9725556,-30701573,-16479657 }, + }, + { + { -23860538,-11233159,26961357,1640861,-32413112,-16737940,12248509,-5240639,13735342,1934062 }, + { 25089769,6742589,17081145,-13406266,21909293,-16067981,-15136294,-3765346,-21277997,5473616 }, + { 31883677,-7961101,1083432,-11572403,22828471,13290673,-7125085,12469656,29111212,-5451014 }, + }, + { + { 24244947,-15050407,-26262976,2791540,-14997599,16666678,24367466,6388839,-10295587,452383 }, + { -25640782,-3417841,5217916,16224624,19987036,-4082269,-24236251,-5915248,15766062,8407814 }, + { -20406999,13990231,15495425,16395525,5377168,15166495,-8917023,-4388953,-8067909,2276718 }, + }, + { + { 30157918,12924066,-17712050,9245753,19895028,3368142,-23827587,5096219,22740376,-7303417 }, + { 2041139,-14256350,7783687,13876377,-25946985,-13352459,24051124,13742383,-15637599,13295222 }, + { 33338237,-8505733,12532113,7977527,9106186,-1715251,-17720195,-4612972,-4451357,-14669444 }, + }, + { + { -20045281,5454097,-14346548,6447146,28862071,1883651,-2469266,-4141880,7770569,9620597 }, + { 23208068,7979712,33071466,8149229,1758231,-10834995,30945528,-1694323,-33502340,-14767970 }, + { 1439958,-16270480,-1079989,-793782,4625402,10647766,-5043801,1220118,30494170,-11440799 }, + }, + { + { -5037580,-13028295,-2970559,-3061767,15640974,-6701666,-26739026,926050,-1684339,-13333647 }, + { 13908495,-3549272,30919928,-6273825,-21521863,7989039,9021034,9078865,3353509,4033511 }, + { -29663431,-15113610,32259991,-344482,24295849,-12912123,23161163,8839127,27485041,7356032 }, + }, +}, +{ + { + { 9661027,705443,11980065,-5370154,-1628543,14661173,-6346142,2625015,28431036,-16771834 }, + { -23839233,-8311415,-25945511,7480958,-17681669,-8354183,-22545972,14150565,15970762,4099461 }, + { 29262576,16756590,26350592,-8793563,8529671,-11208050,13617293,-9937143,11465739,8317062 }, + }, + { + { -25493081,-6962928,32500200,-9419051,-23038724,-2302222,14898637,3848455,20969334,-5157516 }, + { -20384450,-14347713,-18336405,13884722,-33039454,2842114,-21610826,-3649888,11177095,14989547 }, + { -24496721,-11716016,16959896,2278463,12066309,10137771,13515641,2581286,-28487508,9930240 }, + }, + { + { -17751622,-2097826,16544300,-13009300,-15914807,-14949081,18345767,-13403753,16291481,-5314038 }, + { -33229194,2553288,32678213,9875984,8534129,6889387,-9676774,6957617,4368891,9788741 }, + { 16660756,7281060,-10830758,12911820,20108584,-8101676,-21722536,-8613148,16250552,-11111103 }, + }, + { + { -19765507,2390526,-16551031,14161980,1905286,6414907,4689584,10604807,-30190403,4782747 }, + { -1354539,14736941,-7367442,-13292886,7710542,-14155590,-9981571,4383045,22546403,437323 }, + { 31665577,-12180464,-16186830,1491339,-18368625,3294682,27343084,2786261,-30633590,-14097016 }, + }, + { + { -14467279,-683715,-33374107,7448552,19294360,14334329,-19690631,2355319,-19284671,-6114373 }, + { 15121312,-15796162,6377020,-6031361,-10798111,-12957845,18952177,15496498,-29380133,11754228 }, + { -2637277,-13483075,8488727,-14303896,12728761,-1622493,7141596,11724556,22761615,-10134141 }, + }, + { + { 16918416,11729663,-18083579,3022987,-31015732,-13339659,-28741185,-12227393,32851222,11717399 }, + { 11166634,7338049,-6722523,4531520,-29468672,-7302055,31474879,3483633,-1193175,-4030831 }, + { -185635,9921305,31456609,-13536438,-12013818,13348923,33142652,6546660,-19985279,-3948376 }, + }, + { + { -32460596,11266712,-11197107,-7899103,31703694,3855903,-8537131,-12833048,-30772034,-15486313 }, + { -18006477,12709068,3991746,-6479188,-21491523,-10550425,-31135347,-16049879,10928917,3011958 }, + { -6957757,-15594337,31696059,334240,29576716,14796075,-30831056,-12805180,18008031,10258577 }, + }, + { + { -22448644,15655569,7018479,-4410003,-30314266,-1201591,-1853465,1367120,25127874,6671743 }, + { 29701166,-14373934,-10878120,9279288,-17568,13127210,21382910,11042292,25838796,4642684 }, + { -20430234,14955537,-24126347,8124619,-5369288,-5990470,30468147,-13900640,18423289,4177476 }, + }, +}, diff --git a/native/ed25519/base2.h b/native/ed25519/base2.h new file mode 100644 index 0000000..8c53844 --- /dev/null +++ b/native/ed25519/base2.h @@ -0,0 +1,40 @@ + { + { 25967493,-14356035,29566456,3660896,-12694345,4014787,27544626,-11754271,-6079156,2047605 }, + { -12545711,934262,-2722910,3049990,-727428,9406986,12720692,5043384,19500929,-15469378 }, + { -8738181,4489570,9688441,-14785194,10184609,-12363380,29287919,11864899,-24514362,-4438546 }, + }, + { + { 15636291,-9688557,24204773,-7912398,616977,-16685262,27787600,-14772189,28944400,-1550024 }, + { 16568933,4717097,-11556148,-1102322,15682896,-11807043,16354577,-11775962,7689662,11199574 }, + { 30464156,-5976125,-11779434,-15670865,23220365,15915852,7512774,10017326,-17749093,-9920357 }, + }, + { + { 10861363,11473154,27284546,1981175,-30064349,12577861,32867885,14515107,-15438304,10819380 }, + { 4708026,6336745,20377586,9066809,-11272109,6594696,-25653668,12483688,-12668491,5581306 }, + { 19563160,16186464,-29386857,4097519,10237984,-4348115,28542350,13850243,-23678021,-15815942 }, + }, + { + { 5153746,9909285,1723747,-2777874,30523605,5516873,19480852,5230134,-23952439,-15175766 }, + { -30269007,-3463509,7665486,10083793,28475525,1649722,20654025,16520125,30598449,7715701 }, + { 28881845,14381568,9657904,3680757,-20181635,7843316,-31400660,1370708,29794553,-1409300 }, + }, + { + { -22518993,-6692182,14201702,-8745502,-23510406,8844726,18474211,-1361450,-13062696,13821877 }, + { -6455177,-7839871,3374702,-4740862,-27098617,-10571707,31655028,-7212327,18853322,-14220951 }, + { 4566830,-12963868,-28974889,-12240689,-7602672,-2830569,-8514358,-10431137,2207753,-3209784 }, + }, + { + { -25154831,-4185821,29681144,7868801,-6854661,-9423865,-12437364,-663000,-31111463,-16132436 }, + { 25576264,-2703214,7349804,-11814844,16472782,9300885,3844789,15725684,171356,6466918 }, + { 23103977,13316479,9739013,-16149481,817875,-15038942,8965339,-14088058,-30714912,16193877 }, + }, + { + { -33521811,3180713,-2394130,14003687,-16903474,-16270840,17238398,4729455,-18074513,9256800 }, + { -25182317,-4174131,32336398,5036987,-21236817,11360617,22616405,9761698,-19827198,630305 }, + { -13720693,2639453,-24237460,-7406481,9494427,-5774029,-6554551,-15960994,-2449256,-14291300 }, + }, + { + { -3151181,-5046075,9282714,6866145,-31907062,-863023,-18940575,15033784,25105118,-7894876 }, + { -24326370,15950226,-31801215,-14592823,-11662737,-5090925,1573892,-2625887,2198790,-15804619 }, + { -3099351,10324967,-2241613,7453183,-5446979,-2735503,-13812022,-16236442,-32461234,-12290683 }, + }, diff --git a/native/ed25519/d.h b/native/ed25519/d.h new file mode 100644 index 0000000..e25f578 --- /dev/null +++ b/native/ed25519/d.h @@ -0,0 +1 @@ +-10913610,13857413,-15372611,6949391,114729,-8787816,-6275908,-3247719,-18696448,-12055116 diff --git a/native/ed25519/d2.h b/native/ed25519/d2.h new file mode 100644 index 0000000..01aaec7 --- /dev/null +++ b/native/ed25519/d2.h @@ -0,0 +1 @@ +-21827239,-5839606,-30745221,13898782,229458,15978800,-12551817,-6495438,29715968,9444199 diff --git a/native/ed25519/fe.h b/native/ed25519/fe.h new file mode 100644 index 0000000..60c308b --- /dev/null +++ b/native/ed25519/fe.h @@ -0,0 +1,56 @@ +#ifndef FE_H +#define FE_H + +#include "crypto_int32.h" + +typedef crypto_int32 fe[10]; + +/* +fe means field element. +Here the field is \Z/(2^255-19). +An element t, entries t[0]...t[9], represents the integer +t[0]+2^26 t[1]+2^51 t[2]+2^77 t[3]+2^102 t[4]+...+2^230 t[9]. +Bounds on each t[i] vary depending on context. +*/ + +#define fe_frombytes crypto_sign_ed25519_ref10_fe_frombytes +#define fe_tobytes crypto_sign_ed25519_ref10_fe_tobytes +#define fe_copy crypto_sign_ed25519_ref10_fe_copy +#define fe_isnonzero crypto_sign_ed25519_ref10_fe_isnonzero +#define fe_isnegative crypto_sign_ed25519_ref10_fe_isnegative +#define fe_0 crypto_sign_ed25519_ref10_fe_0 +#define fe_1 crypto_sign_ed25519_ref10_fe_1 +#define fe_cswap crypto_sign_ed25519_ref10_fe_cswap +#define fe_cmov crypto_sign_ed25519_ref10_fe_cmov +#define fe_add crypto_sign_ed25519_ref10_fe_add +#define fe_sub crypto_sign_ed25519_ref10_fe_sub +#define fe_neg crypto_sign_ed25519_ref10_fe_neg +#define fe_mul crypto_sign_ed25519_ref10_fe_mul +#define fe_sq crypto_sign_ed25519_ref10_fe_sq +#define fe_sq2 crypto_sign_ed25519_ref10_fe_sq2 +#define fe_mul121666 crypto_sign_ed25519_ref10_fe_mul121666 +#define fe_invert crypto_sign_ed25519_ref10_fe_invert +#define fe_pow22523 crypto_sign_ed25519_ref10_fe_pow22523 + +extern void fe_frombytes(fe,const unsigned char *); +extern void fe_tobytes(unsigned char *,const fe); + +extern void fe_copy(fe,const fe); +extern int fe_isnonzero(const fe); +extern int fe_isnegative(const fe); +extern void fe_0(fe); +extern void fe_1(fe); +extern void fe_cswap(fe,fe,unsigned int); +extern void fe_cmov(fe,const fe,unsigned int); + +extern void fe_add(fe,const fe,const fe); +extern void fe_sub(fe,const fe,const fe); +extern void fe_neg(fe,const fe); +extern void fe_mul(fe,const fe,const fe); +extern void fe_sq(fe,const fe); +extern void fe_sq2(fe,const fe); +extern void fe_mul121666(fe,const fe); +extern void fe_invert(fe,const fe); +extern void fe_pow22523(fe,const fe); + +#endif diff --git a/native/ed25519/fe_0.c b/native/ed25519/fe_0.c new file mode 100644 index 0000000..ec879d7 --- /dev/null +++ b/native/ed25519/fe_0.c @@ -0,0 +1,19 @@ +#include "fe.h" + +/* +h = 0 +*/ + +void fe_0(fe h) +{ + h[0] = 0; + h[1] = 0; + h[2] = 0; + h[3] = 0; + h[4] = 0; + h[5] = 0; + h[6] = 0; + h[7] = 0; + h[8] = 0; + h[9] = 0; +} diff --git a/native/ed25519/fe_1.c b/native/ed25519/fe_1.c new file mode 100644 index 0000000..8cf7784 --- /dev/null +++ b/native/ed25519/fe_1.c @@ -0,0 +1,19 @@ +#include "fe.h" + +/* +h = 1 +*/ + +void fe_1(fe h) +{ + h[0] = 1; + h[1] = 0; + h[2] = 0; + h[3] = 0; + h[4] = 0; + h[5] = 0; + h[6] = 0; + h[7] = 0; + h[8] = 0; + h[9] = 0; +} diff --git a/native/ed25519/fe_add.c b/native/ed25519/fe_add.c new file mode 100644 index 0000000..e6a81da --- /dev/null +++ b/native/ed25519/fe_add.c @@ -0,0 +1,57 @@ +#include "fe.h" + +/* +h = f + g +Can overlap h with f or g. + +Preconditions: + |f| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. + |g| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. + +Postconditions: + |h| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. +*/ + +void fe_add(fe h,const fe f,const fe g) +{ + crypto_int32 f0 = f[0]; + crypto_int32 f1 = f[1]; + crypto_int32 f2 = f[2]; + crypto_int32 f3 = f[3]; + crypto_int32 f4 = f[4]; + crypto_int32 f5 = f[5]; + crypto_int32 f6 = f[6]; + crypto_int32 f7 = f[7]; + crypto_int32 f8 = f[8]; + crypto_int32 f9 = f[9]; + crypto_int32 g0 = g[0]; + crypto_int32 g1 = g[1]; + crypto_int32 g2 = g[2]; + crypto_int32 g3 = g[3]; + crypto_int32 g4 = g[4]; + crypto_int32 g5 = g[5]; + crypto_int32 g6 = g[6]; + crypto_int32 g7 = g[7]; + crypto_int32 g8 = g[8]; + crypto_int32 g9 = g[9]; + crypto_int32 h0 = f0 + g0; + crypto_int32 h1 = f1 + g1; + crypto_int32 h2 = f2 + g2; + crypto_int32 h3 = f3 + g3; + crypto_int32 h4 = f4 + g4; + crypto_int32 h5 = f5 + g5; + crypto_int32 h6 = f6 + g6; + crypto_int32 h7 = f7 + g7; + crypto_int32 h8 = f8 + g8; + crypto_int32 h9 = f9 + g9; + h[0] = h0; + h[1] = h1; + h[2] = h2; + h[3] = h3; + h[4] = h4; + h[5] = h5; + h[6] = h6; + h[7] = h7; + h[8] = h8; + h[9] = h9; +} diff --git a/native/ed25519/fe_cmov.c b/native/ed25519/fe_cmov.c new file mode 100644 index 0000000..8ca584f --- /dev/null +++ b/native/ed25519/fe_cmov.c @@ -0,0 +1,63 @@ +#include "fe.h" + +/* +Replace (f,g) with (g,g) if b == 1; +replace (f,g) with (f,g) if b == 0. + +Preconditions: b in {0,1}. +*/ + +void fe_cmov(fe f,const fe g,unsigned int b) +{ + crypto_int32 f0 = f[0]; + crypto_int32 f1 = f[1]; + crypto_int32 f2 = f[2]; + crypto_int32 f3 = f[3]; + crypto_int32 f4 = f[4]; + crypto_int32 f5 = f[5]; + crypto_int32 f6 = f[6]; + crypto_int32 f7 = f[7]; + crypto_int32 f8 = f[8]; + crypto_int32 f9 = f[9]; + crypto_int32 g0 = g[0]; + crypto_int32 g1 = g[1]; + crypto_int32 g2 = g[2]; + crypto_int32 g3 = g[3]; + crypto_int32 g4 = g[4]; + crypto_int32 g5 = g[5]; + crypto_int32 g6 = g[6]; + crypto_int32 g7 = g[7]; + crypto_int32 g8 = g[8]; + crypto_int32 g9 = g[9]; + crypto_int32 x0 = f0 ^ g0; + crypto_int32 x1 = f1 ^ g1; + crypto_int32 x2 = f2 ^ g2; + crypto_int32 x3 = f3 ^ g3; + crypto_int32 x4 = f4 ^ g4; + crypto_int32 x5 = f5 ^ g5; + crypto_int32 x6 = f6 ^ g6; + crypto_int32 x7 = f7 ^ g7; + crypto_int32 x8 = f8 ^ g8; + crypto_int32 x9 = f9 ^ g9; + b = -b; + x0 &= b; + x1 &= b; + x2 &= b; + x3 &= b; + x4 &= b; + x5 &= b; + x6 &= b; + x7 &= b; + x8 &= b; + x9 &= b; + f[0] = f0 ^ x0; + f[1] = f1 ^ x1; + f[2] = f2 ^ x2; + f[3] = f3 ^ x3; + f[4] = f4 ^ x4; + f[5] = f5 ^ x5; + f[6] = f6 ^ x6; + f[7] = f7 ^ x7; + f[8] = f8 ^ x8; + f[9] = f9 ^ x9; +} diff --git a/native/ed25519/fe_copy.c b/native/ed25519/fe_copy.c new file mode 100644 index 0000000..9c5bf86 --- /dev/null +++ b/native/ed25519/fe_copy.c @@ -0,0 +1,29 @@ +#include "fe.h" + +/* +h = f +*/ + +void fe_copy(fe h,const fe f) +{ + crypto_int32 f0 = f[0]; + crypto_int32 f1 = f[1]; + crypto_int32 f2 = f[2]; + crypto_int32 f3 = f[3]; + crypto_int32 f4 = f[4]; + crypto_int32 f5 = f[5]; + crypto_int32 f6 = f[6]; + crypto_int32 f7 = f[7]; + crypto_int32 f8 = f[8]; + crypto_int32 f9 = f[9]; + h[0] = f0; + h[1] = f1; + h[2] = f2; + h[3] = f3; + h[4] = f4; + h[5] = f5; + h[6] = f6; + h[7] = f7; + h[8] = f8; + h[9] = f9; +} diff --git a/native/ed25519/fe_frombytes.c b/native/ed25519/fe_frombytes.c new file mode 100644 index 0000000..5c17917 --- /dev/null +++ b/native/ed25519/fe_frombytes.c @@ -0,0 +1,73 @@ +#include "fe.h" +#include "crypto_int64.h" +#include "crypto_uint64.h" + +static crypto_uint64 load_3(const unsigned char *in) +{ + crypto_uint64 result; + result = (crypto_uint64) in[0]; + result |= ((crypto_uint64) in[1]) << 8; + result |= ((crypto_uint64) in[2]) << 16; + return result; +} + +static crypto_uint64 load_4(const unsigned char *in) +{ + crypto_uint64 result; + result = (crypto_uint64) in[0]; + result |= ((crypto_uint64) in[1]) << 8; + result |= ((crypto_uint64) in[2]) << 16; + result |= ((crypto_uint64) in[3]) << 24; + return result; +} + +/* +Ignores top bit of h. +*/ + +void fe_frombytes(fe h,const unsigned char *s) +{ + crypto_int64 h0 = load_4(s); + crypto_int64 h1 = load_3(s + 4) << 6; + crypto_int64 h2 = load_3(s + 7) << 5; + crypto_int64 h3 = load_3(s + 10) << 3; + crypto_int64 h4 = load_3(s + 13) << 2; + crypto_int64 h5 = load_4(s + 16); + crypto_int64 h6 = load_3(s + 20) << 7; + crypto_int64 h7 = load_3(s + 23) << 5; + crypto_int64 h8 = load_3(s + 26) << 4; + crypto_int64 h9 = (load_3(s + 29) & 8388607) << 2; + crypto_int64 carry0; + crypto_int64 carry1; + crypto_int64 carry2; + crypto_int64 carry3; + crypto_int64 carry4; + crypto_int64 carry5; + crypto_int64 carry6; + crypto_int64 carry7; + crypto_int64 carry8; + crypto_int64 carry9; + + carry9 = (h9 + (crypto_int64) (1<<24)) >> 25; h0 += carry9 * 19; h9 -= carry9 << 25; + carry1 = (h1 + (crypto_int64) (1<<24)) >> 25; h2 += carry1; h1 -= carry1 << 25; + carry3 = (h3 + (crypto_int64) (1<<24)) >> 25; h4 += carry3; h3 -= carry3 << 25; + carry5 = (h5 + (crypto_int64) (1<<24)) >> 25; h6 += carry5; h5 -= carry5 << 25; + carry7 = (h7 + (crypto_int64) (1<<24)) >> 25; h8 += carry7; h7 -= carry7 << 25; + + carry0 = (h0 + (crypto_int64) (1<<25)) >> 26; h1 += carry0; h0 -= carry0 << 26; + carry2 = (h2 + (crypto_int64) (1<<25)) >> 26; h3 += carry2; h2 -= carry2 << 26; + carry4 = (h4 + (crypto_int64) (1<<25)) >> 26; h5 += carry4; h4 -= carry4 << 26; + carry6 = (h6 + (crypto_int64) (1<<25)) >> 26; h7 += carry6; h6 -= carry6 << 26; + carry8 = (h8 + (crypto_int64) (1<<25)) >> 26; h9 += carry8; h8 -= carry8 << 26; + + h[0] = h0; + h[1] = h1; + h[2] = h2; + h[3] = h3; + h[4] = h4; + h[5] = h5; + h[6] = h6; + h[7] = h7; + h[8] = h8; + h[9] = h9; +} diff --git a/native/ed25519/fe_invert.c b/native/ed25519/fe_invert.c new file mode 100644 index 0000000..bcfdb8f --- /dev/null +++ b/native/ed25519/fe_invert.c @@ -0,0 +1,14 @@ +#include "fe.h" + +void fe_invert(fe out,const fe z) +{ + fe t0; + fe t1; + fe t2; + fe t3; + int i; + +#include "pow225521.h" + + return; +} diff --git a/native/ed25519/fe_isnegative.c b/native/ed25519/fe_isnegative.c new file mode 100644 index 0000000..3b2c8b8 --- /dev/null +++ b/native/ed25519/fe_isnegative.c @@ -0,0 +1,16 @@ +#include "fe.h" + +/* +return 1 if f is in {1,3,5,...,q-2} +return 0 if f is in {0,2,4,...,q-1} + +Preconditions: + |f| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. +*/ + +int fe_isnegative(const fe f) +{ + unsigned char s[32]; + fe_tobytes(s,f); + return s[0] & 1; +} diff --git a/native/ed25519/fe_isnonzero.c b/native/ed25519/fe_isnonzero.c new file mode 100644 index 0000000..4756800 --- /dev/null +++ b/native/ed25519/fe_isnonzero.c @@ -0,0 +1,19 @@ +#include "fe.h" +#include "crypto_verify_32.h" + +/* +return 1 if f == 0 +return 0 if f != 0 + +Preconditions: + |f| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. +*/ + +static const unsigned char zero[32]; + +int fe_isnonzero(const fe f) +{ + unsigned char s[32]; + fe_tobytes(s,f); + return crypto_verify_32(s,zero); +} diff --git a/native/ed25519/fe_mul.c b/native/ed25519/fe_mul.c new file mode 100644 index 0000000..26ca8b3 --- /dev/null +++ b/native/ed25519/fe_mul.c @@ -0,0 +1,253 @@ +#include "fe.h" +#include "crypto_int64.h" + +/* +h = f * g +Can overlap h with f or g. + +Preconditions: + |f| bounded by 1.65*2^26,1.65*2^25,1.65*2^26,1.65*2^25,etc. + |g| bounded by 1.65*2^26,1.65*2^25,1.65*2^26,1.65*2^25,etc. + +Postconditions: + |h| bounded by 1.01*2^25,1.01*2^24,1.01*2^25,1.01*2^24,etc. +*/ + +/* +Notes on implementation strategy: + +Using schoolbook multiplication. +Karatsuba would save a little in some cost models. + +Most multiplications by 2 and 19 are 32-bit precomputations; +cheaper than 64-bit postcomputations. + +There is one remaining multiplication by 19 in the carry chain; +one *19 precomputation can be merged into this, +but the resulting data flow is considerably less clean. + +There are 12 carries below. +10 of them are 2-way parallelizable and vectorizable. +Can get away with 11 carries, but then data flow is much deeper. + +With tighter constraints on inputs can squeeze carries into int32. +*/ + +void fe_mul(fe h,const fe f,const fe g) +{ + crypto_int32 f0 = f[0]; + crypto_int32 f1 = f[1]; + crypto_int32 f2 = f[2]; + crypto_int32 f3 = f[3]; + crypto_int32 f4 = f[4]; + crypto_int32 f5 = f[5]; + crypto_int32 f6 = f[6]; + crypto_int32 f7 = f[7]; + crypto_int32 f8 = f[8]; + crypto_int32 f9 = f[9]; + crypto_int32 g0 = g[0]; + crypto_int32 g1 = g[1]; + crypto_int32 g2 = g[2]; + crypto_int32 g3 = g[3]; + crypto_int32 g4 = g[4]; + crypto_int32 g5 = g[5]; + crypto_int32 g6 = g[6]; + crypto_int32 g7 = g[7]; + crypto_int32 g8 = g[8]; + crypto_int32 g9 = g[9]; + crypto_int32 g1_19 = 19 * g1; /* 1.959375*2^29 */ + crypto_int32 g2_19 = 19 * g2; /* 1.959375*2^30; still ok */ + crypto_int32 g3_19 = 19 * g3; + crypto_int32 g4_19 = 19 * g4; + crypto_int32 g5_19 = 19 * g5; + crypto_int32 g6_19 = 19 * g6; + crypto_int32 g7_19 = 19 * g7; + crypto_int32 g8_19 = 19 * g8; + crypto_int32 g9_19 = 19 * g9; + crypto_int32 f1_2 = 2 * f1; + crypto_int32 f3_2 = 2 * f3; + crypto_int32 f5_2 = 2 * f5; + crypto_int32 f7_2 = 2 * f7; + crypto_int32 f9_2 = 2 * f9; + crypto_int64 f0g0 = f0 * (crypto_int64) g0; + crypto_int64 f0g1 = f0 * (crypto_int64) g1; + crypto_int64 f0g2 = f0 * (crypto_int64) g2; + crypto_int64 f0g3 = f0 * (crypto_int64) g3; + crypto_int64 f0g4 = f0 * (crypto_int64) g4; + crypto_int64 f0g5 = f0 * (crypto_int64) g5; + crypto_int64 f0g6 = f0 * (crypto_int64) g6; + crypto_int64 f0g7 = f0 * (crypto_int64) g7; + crypto_int64 f0g8 = f0 * (crypto_int64) g8; + crypto_int64 f0g9 = f0 * (crypto_int64) g9; + crypto_int64 f1g0 = f1 * (crypto_int64) g0; + crypto_int64 f1g1_2 = f1_2 * (crypto_int64) g1; + crypto_int64 f1g2 = f1 * (crypto_int64) g2; + crypto_int64 f1g3_2 = f1_2 * (crypto_int64) g3; + crypto_int64 f1g4 = f1 * (crypto_int64) g4; + crypto_int64 f1g5_2 = f1_2 * (crypto_int64) g5; + crypto_int64 f1g6 = f1 * (crypto_int64) g6; + crypto_int64 f1g7_2 = f1_2 * (crypto_int64) g7; + crypto_int64 f1g8 = f1 * (crypto_int64) g8; + crypto_int64 f1g9_38 = f1_2 * (crypto_int64) g9_19; + crypto_int64 f2g0 = f2 * (crypto_int64) g0; + crypto_int64 f2g1 = f2 * (crypto_int64) g1; + crypto_int64 f2g2 = f2 * (crypto_int64) g2; + crypto_int64 f2g3 = f2 * (crypto_int64) g3; + crypto_int64 f2g4 = f2 * (crypto_int64) g4; + crypto_int64 f2g5 = f2 * (crypto_int64) g5; + crypto_int64 f2g6 = f2 * (crypto_int64) g6; + crypto_int64 f2g7 = f2 * (crypto_int64) g7; + crypto_int64 f2g8_19 = f2 * (crypto_int64) g8_19; + crypto_int64 f2g9_19 = f2 * (crypto_int64) g9_19; + crypto_int64 f3g0 = f3 * (crypto_int64) g0; + crypto_int64 f3g1_2 = f3_2 * (crypto_int64) g1; + crypto_int64 f3g2 = f3 * (crypto_int64) g2; + crypto_int64 f3g3_2 = f3_2 * (crypto_int64) g3; + crypto_int64 f3g4 = f3 * (crypto_int64) g4; + crypto_int64 f3g5_2 = f3_2 * (crypto_int64) g5; + crypto_int64 f3g6 = f3 * (crypto_int64) g6; + crypto_int64 f3g7_38 = f3_2 * (crypto_int64) g7_19; + crypto_int64 f3g8_19 = f3 * (crypto_int64) g8_19; + crypto_int64 f3g9_38 = f3_2 * (crypto_int64) g9_19; + crypto_int64 f4g0 = f4 * (crypto_int64) g0; + crypto_int64 f4g1 = f4 * (crypto_int64) g1; + crypto_int64 f4g2 = f4 * (crypto_int64) g2; + crypto_int64 f4g3 = f4 * (crypto_int64) g3; + crypto_int64 f4g4 = f4 * (crypto_int64) g4; + crypto_int64 f4g5 = f4 * (crypto_int64) g5; + crypto_int64 f4g6_19 = f4 * (crypto_int64) g6_19; + crypto_int64 f4g7_19 = f4 * (crypto_int64) g7_19; + crypto_int64 f4g8_19 = f4 * (crypto_int64) g8_19; + crypto_int64 f4g9_19 = f4 * (crypto_int64) g9_19; + crypto_int64 f5g0 = f5 * (crypto_int64) g0; + crypto_int64 f5g1_2 = f5_2 * (crypto_int64) g1; + crypto_int64 f5g2 = f5 * (crypto_int64) g2; + crypto_int64 f5g3_2 = f5_2 * (crypto_int64) g3; + crypto_int64 f5g4 = f5 * (crypto_int64) g4; + crypto_int64 f5g5_38 = f5_2 * (crypto_int64) g5_19; + crypto_int64 f5g6_19 = f5 * (crypto_int64) g6_19; + crypto_int64 f5g7_38 = f5_2 * (crypto_int64) g7_19; + crypto_int64 f5g8_19 = f5 * (crypto_int64) g8_19; + crypto_int64 f5g9_38 = f5_2 * (crypto_int64) g9_19; + crypto_int64 f6g0 = f6 * (crypto_int64) g0; + crypto_int64 f6g1 = f6 * (crypto_int64) g1; + crypto_int64 f6g2 = f6 * (crypto_int64) g2; + crypto_int64 f6g3 = f6 * (crypto_int64) g3; + crypto_int64 f6g4_19 = f6 * (crypto_int64) g4_19; + crypto_int64 f6g5_19 = f6 * (crypto_int64) g5_19; + crypto_int64 f6g6_19 = f6 * (crypto_int64) g6_19; + crypto_int64 f6g7_19 = f6 * (crypto_int64) g7_19; + crypto_int64 f6g8_19 = f6 * (crypto_int64) g8_19; + crypto_int64 f6g9_19 = f6 * (crypto_int64) g9_19; + crypto_int64 f7g0 = f7 * (crypto_int64) g0; + crypto_int64 f7g1_2 = f7_2 * (crypto_int64) g1; + crypto_int64 f7g2 = f7 * (crypto_int64) g2; + crypto_int64 f7g3_38 = f7_2 * (crypto_int64) g3_19; + crypto_int64 f7g4_19 = f7 * (crypto_int64) g4_19; + crypto_int64 f7g5_38 = f7_2 * (crypto_int64) g5_19; + crypto_int64 f7g6_19 = f7 * (crypto_int64) g6_19; + crypto_int64 f7g7_38 = f7_2 * (crypto_int64) g7_19; + crypto_int64 f7g8_19 = f7 * (crypto_int64) g8_19; + crypto_int64 f7g9_38 = f7_2 * (crypto_int64) g9_19; + crypto_int64 f8g0 = f8 * (crypto_int64) g0; + crypto_int64 f8g1 = f8 * (crypto_int64) g1; + crypto_int64 f8g2_19 = f8 * (crypto_int64) g2_19; + crypto_int64 f8g3_19 = f8 * (crypto_int64) g3_19; + crypto_int64 f8g4_19 = f8 * (crypto_int64) g4_19; + crypto_int64 f8g5_19 = f8 * (crypto_int64) g5_19; + crypto_int64 f8g6_19 = f8 * (crypto_int64) g6_19; + crypto_int64 f8g7_19 = f8 * (crypto_int64) g7_19; + crypto_int64 f8g8_19 = f8 * (crypto_int64) g8_19; + crypto_int64 f8g9_19 = f8 * (crypto_int64) g9_19; + crypto_int64 f9g0 = f9 * (crypto_int64) g0; + crypto_int64 f9g1_38 = f9_2 * (crypto_int64) g1_19; + crypto_int64 f9g2_19 = f9 * (crypto_int64) g2_19; + crypto_int64 f9g3_38 = f9_2 * (crypto_int64) g3_19; + crypto_int64 f9g4_19 = f9 * (crypto_int64) g4_19; + crypto_int64 f9g5_38 = f9_2 * (crypto_int64) g5_19; + crypto_int64 f9g6_19 = f9 * (crypto_int64) g6_19; + crypto_int64 f9g7_38 = f9_2 * (crypto_int64) g7_19; + crypto_int64 f9g8_19 = f9 * (crypto_int64) g8_19; + crypto_int64 f9g9_38 = f9_2 * (crypto_int64) g9_19; + crypto_int64 h0 = f0g0+f1g9_38+f2g8_19+f3g7_38+f4g6_19+f5g5_38+f6g4_19+f7g3_38+f8g2_19+f9g1_38; + crypto_int64 h1 = f0g1+f1g0 +f2g9_19+f3g8_19+f4g7_19+f5g6_19+f6g5_19+f7g4_19+f8g3_19+f9g2_19; + crypto_int64 h2 = f0g2+f1g1_2 +f2g0 +f3g9_38+f4g8_19+f5g7_38+f6g6_19+f7g5_38+f8g4_19+f9g3_38; + crypto_int64 h3 = f0g3+f1g2 +f2g1 +f3g0 +f4g9_19+f5g8_19+f6g7_19+f7g6_19+f8g5_19+f9g4_19; + crypto_int64 h4 = f0g4+f1g3_2 +f2g2 +f3g1_2 +f4g0 +f5g9_38+f6g8_19+f7g7_38+f8g6_19+f9g5_38; + crypto_int64 h5 = f0g5+f1g4 +f2g3 +f3g2 +f4g1 +f5g0 +f6g9_19+f7g8_19+f8g7_19+f9g6_19; + crypto_int64 h6 = f0g6+f1g5_2 +f2g4 +f3g3_2 +f4g2 +f5g1_2 +f6g0 +f7g9_38+f8g8_19+f9g7_38; + crypto_int64 h7 = f0g7+f1g6 +f2g5 +f3g4 +f4g3 +f5g2 +f6g1 +f7g0 +f8g9_19+f9g8_19; + crypto_int64 h8 = f0g8+f1g7_2 +f2g6 +f3g5_2 +f4g4 +f5g3_2 +f6g2 +f7g1_2 +f8g0 +f9g9_38; + crypto_int64 h9 = f0g9+f1g8 +f2g7 +f3g6 +f4g5 +f5g4 +f6g3 +f7g2 +f8g1 +f9g0 ; + crypto_int64 carry0; + crypto_int64 carry1; + crypto_int64 carry2; + crypto_int64 carry3; + crypto_int64 carry4; + crypto_int64 carry5; + crypto_int64 carry6; + crypto_int64 carry7; + crypto_int64 carry8; + crypto_int64 carry9; + + /* + |h0| <= (1.65*1.65*2^52*(1+19+19+19+19)+1.65*1.65*2^50*(38+38+38+38+38)) + i.e. |h0| <= 1.4*2^60; narrower ranges for h2, h4, h6, h8 + |h1| <= (1.65*1.65*2^51*(1+1+19+19+19+19+19+19+19+19)) + i.e. |h1| <= 1.7*2^59; narrower ranges for h3, h5, h7, h9 + */ + + carry0 = (h0 + (crypto_int64) (1<<25)) >> 26; h1 += carry0; h0 -= carry0 << 26; + carry4 = (h4 + (crypto_int64) (1<<25)) >> 26; h5 += carry4; h4 -= carry4 << 26; + /* |h0| <= 2^25 */ + /* |h4| <= 2^25 */ + /* |h1| <= 1.71*2^59 */ + /* |h5| <= 1.71*2^59 */ + + carry1 = (h1 + (crypto_int64) (1<<24)) >> 25; h2 += carry1; h1 -= carry1 << 25; + carry5 = (h5 + (crypto_int64) (1<<24)) >> 25; h6 += carry5; h5 -= carry5 << 25; + /* |h1| <= 2^24; from now on fits into int32 */ + /* |h5| <= 2^24; from now on fits into int32 */ + /* |h2| <= 1.41*2^60 */ + /* |h6| <= 1.41*2^60 */ + + carry2 = (h2 + (crypto_int64) (1<<25)) >> 26; h3 += carry2; h2 -= carry2 << 26; + carry6 = (h6 + (crypto_int64) (1<<25)) >> 26; h7 += carry6; h6 -= carry6 << 26; + /* |h2| <= 2^25; from now on fits into int32 unchanged */ + /* |h6| <= 2^25; from now on fits into int32 unchanged */ + /* |h3| <= 1.71*2^59 */ + /* |h7| <= 1.71*2^59 */ + + carry3 = (h3 + (crypto_int64) (1<<24)) >> 25; h4 += carry3; h3 -= carry3 << 25; + carry7 = (h7 + (crypto_int64) (1<<24)) >> 25; h8 += carry7; h7 -= carry7 << 25; + /* |h3| <= 2^24; from now on fits into int32 unchanged */ + /* |h7| <= 2^24; from now on fits into int32 unchanged */ + /* |h4| <= 1.72*2^34 */ + /* |h8| <= 1.41*2^60 */ + + carry4 = (h4 + (crypto_int64) (1<<25)) >> 26; h5 += carry4; h4 -= carry4 << 26; + carry8 = (h8 + (crypto_int64) (1<<25)) >> 26; h9 += carry8; h8 -= carry8 << 26; + /* |h4| <= 2^25; from now on fits into int32 unchanged */ + /* |h8| <= 2^25; from now on fits into int32 unchanged */ + /* |h5| <= 1.01*2^24 */ + /* |h9| <= 1.71*2^59 */ + + carry9 = (h9 + (crypto_int64) (1<<24)) >> 25; h0 += carry9 * 19; h9 -= carry9 << 25; + /* |h9| <= 2^24; from now on fits into int32 unchanged */ + /* |h0| <= 1.1*2^39 */ + + carry0 = (h0 + (crypto_int64) (1<<25)) >> 26; h1 += carry0; h0 -= carry0 << 26; + /* |h0| <= 2^25; from now on fits into int32 unchanged */ + /* |h1| <= 1.01*2^24 */ + + h[0] = h0; + h[1] = h1; + h[2] = h2; + h[3] = h3; + h[4] = h4; + h[5] = h5; + h[6] = h6; + h[7] = h7; + h[8] = h8; + h[9] = h9; +} diff --git a/native/ed25519/fe_neg.c b/native/ed25519/fe_neg.c new file mode 100644 index 0000000..2078ce5 --- /dev/null +++ b/native/ed25519/fe_neg.c @@ -0,0 +1,45 @@ +#include "fe.h" + +/* +h = -f + +Preconditions: + |f| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. + +Postconditions: + |h| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. +*/ + +void fe_neg(fe h,const fe f) +{ + crypto_int32 f0 = f[0]; + crypto_int32 f1 = f[1]; + crypto_int32 f2 = f[2]; + crypto_int32 f3 = f[3]; + crypto_int32 f4 = f[4]; + crypto_int32 f5 = f[5]; + crypto_int32 f6 = f[6]; + crypto_int32 f7 = f[7]; + crypto_int32 f8 = f[8]; + crypto_int32 f9 = f[9]; + crypto_int32 h0 = -f0; + crypto_int32 h1 = -f1; + crypto_int32 h2 = -f2; + crypto_int32 h3 = -f3; + crypto_int32 h4 = -f4; + crypto_int32 h5 = -f5; + crypto_int32 h6 = -f6; + crypto_int32 h7 = -f7; + crypto_int32 h8 = -f8; + crypto_int32 h9 = -f9; + h[0] = h0; + h[1] = h1; + h[2] = h2; + h[3] = h3; + h[4] = h4; + h[5] = h5; + h[6] = h6; + h[7] = h7; + h[8] = h8; + h[9] = h9; +} diff --git a/native/ed25519/fe_pow22523.c b/native/ed25519/fe_pow22523.c new file mode 100644 index 0000000..56675a5 --- /dev/null +++ b/native/ed25519/fe_pow22523.c @@ -0,0 +1,13 @@ +#include "fe.h" + +void fe_pow22523(fe out,const fe z) +{ + fe t0; + fe t1; + fe t2; + int i; + +#include "pow22523.h" + + return; +} diff --git a/native/ed25519/fe_sq.c b/native/ed25519/fe_sq.c new file mode 100644 index 0000000..8dd1198 --- /dev/null +++ b/native/ed25519/fe_sq.c @@ -0,0 +1,149 @@ +#include "fe.h" +#include "crypto_int64.h" + +/* +h = f * f +Can overlap h with f. + +Preconditions: + |f| bounded by 1.65*2^26,1.65*2^25,1.65*2^26,1.65*2^25,etc. + +Postconditions: + |h| bounded by 1.01*2^25,1.01*2^24,1.01*2^25,1.01*2^24,etc. +*/ + +/* +See fe_mul.c for discussion of implementation strategy. +*/ + +void fe_sq(fe h,const fe f) +{ + crypto_int32 f0 = f[0]; + crypto_int32 f1 = f[1]; + crypto_int32 f2 = f[2]; + crypto_int32 f3 = f[3]; + crypto_int32 f4 = f[4]; + crypto_int32 f5 = f[5]; + crypto_int32 f6 = f[6]; + crypto_int32 f7 = f[7]; + crypto_int32 f8 = f[8]; + crypto_int32 f9 = f[9]; + crypto_int32 f0_2 = 2 * f0; + crypto_int32 f1_2 = 2 * f1; + crypto_int32 f2_2 = 2 * f2; + crypto_int32 f3_2 = 2 * f3; + crypto_int32 f4_2 = 2 * f4; + crypto_int32 f5_2 = 2 * f5; + crypto_int32 f6_2 = 2 * f6; + crypto_int32 f7_2 = 2 * f7; + crypto_int32 f5_38 = 38 * f5; /* 1.959375*2^30 */ + crypto_int32 f6_19 = 19 * f6; /* 1.959375*2^30 */ + crypto_int32 f7_38 = 38 * f7; /* 1.959375*2^30 */ + crypto_int32 f8_19 = 19 * f8; /* 1.959375*2^30 */ + crypto_int32 f9_38 = 38 * f9; /* 1.959375*2^30 */ + crypto_int64 f0f0 = f0 * (crypto_int64) f0; + crypto_int64 f0f1_2 = f0_2 * (crypto_int64) f1; + crypto_int64 f0f2_2 = f0_2 * (crypto_int64) f2; + crypto_int64 f0f3_2 = f0_2 * (crypto_int64) f3; + crypto_int64 f0f4_2 = f0_2 * (crypto_int64) f4; + crypto_int64 f0f5_2 = f0_2 * (crypto_int64) f5; + crypto_int64 f0f6_2 = f0_2 * (crypto_int64) f6; + crypto_int64 f0f7_2 = f0_2 * (crypto_int64) f7; + crypto_int64 f0f8_2 = f0_2 * (crypto_int64) f8; + crypto_int64 f0f9_2 = f0_2 * (crypto_int64) f9; + crypto_int64 f1f1_2 = f1_2 * (crypto_int64) f1; + crypto_int64 f1f2_2 = f1_2 * (crypto_int64) f2; + crypto_int64 f1f3_4 = f1_2 * (crypto_int64) f3_2; + crypto_int64 f1f4_2 = f1_2 * (crypto_int64) f4; + crypto_int64 f1f5_4 = f1_2 * (crypto_int64) f5_2; + crypto_int64 f1f6_2 = f1_2 * (crypto_int64) f6; + crypto_int64 f1f7_4 = f1_2 * (crypto_int64) f7_2; + crypto_int64 f1f8_2 = f1_2 * (crypto_int64) f8; + crypto_int64 f1f9_76 = f1_2 * (crypto_int64) f9_38; + crypto_int64 f2f2 = f2 * (crypto_int64) f2; + crypto_int64 f2f3_2 = f2_2 * (crypto_int64) f3; + crypto_int64 f2f4_2 = f2_2 * (crypto_int64) f4; + crypto_int64 f2f5_2 = f2_2 * (crypto_int64) f5; + crypto_int64 f2f6_2 = f2_2 * (crypto_int64) f6; + crypto_int64 f2f7_2 = f2_2 * (crypto_int64) f7; + crypto_int64 f2f8_38 = f2_2 * (crypto_int64) f8_19; + crypto_int64 f2f9_38 = f2 * (crypto_int64) f9_38; + crypto_int64 f3f3_2 = f3_2 * (crypto_int64) f3; + crypto_int64 f3f4_2 = f3_2 * (crypto_int64) f4; + crypto_int64 f3f5_4 = f3_2 * (crypto_int64) f5_2; + crypto_int64 f3f6_2 = f3_2 * (crypto_int64) f6; + crypto_int64 f3f7_76 = f3_2 * (crypto_int64) f7_38; + crypto_int64 f3f8_38 = f3_2 * (crypto_int64) f8_19; + crypto_int64 f3f9_76 = f3_2 * (crypto_int64) f9_38; + crypto_int64 f4f4 = f4 * (crypto_int64) f4; + crypto_int64 f4f5_2 = f4_2 * (crypto_int64) f5; + crypto_int64 f4f6_38 = f4_2 * (crypto_int64) f6_19; + crypto_int64 f4f7_38 = f4 * (crypto_int64) f7_38; + crypto_int64 f4f8_38 = f4_2 * (crypto_int64) f8_19; + crypto_int64 f4f9_38 = f4 * (crypto_int64) f9_38; + crypto_int64 f5f5_38 = f5 * (crypto_int64) f5_38; + crypto_int64 f5f6_38 = f5_2 * (crypto_int64) f6_19; + crypto_int64 f5f7_76 = f5_2 * (crypto_int64) f7_38; + crypto_int64 f5f8_38 = f5_2 * (crypto_int64) f8_19; + crypto_int64 f5f9_76 = f5_2 * (crypto_int64) f9_38; + crypto_int64 f6f6_19 = f6 * (crypto_int64) f6_19; + crypto_int64 f6f7_38 = f6 * (crypto_int64) f7_38; + crypto_int64 f6f8_38 = f6_2 * (crypto_int64) f8_19; + crypto_int64 f6f9_38 = f6 * (crypto_int64) f9_38; + crypto_int64 f7f7_38 = f7 * (crypto_int64) f7_38; + crypto_int64 f7f8_38 = f7_2 * (crypto_int64) f8_19; + crypto_int64 f7f9_76 = f7_2 * (crypto_int64) f9_38; + crypto_int64 f8f8_19 = f8 * (crypto_int64) f8_19; + crypto_int64 f8f9_38 = f8 * (crypto_int64) f9_38; + crypto_int64 f9f9_38 = f9 * (crypto_int64) f9_38; + crypto_int64 h0 = f0f0 +f1f9_76+f2f8_38+f3f7_76+f4f6_38+f5f5_38; + crypto_int64 h1 = f0f1_2+f2f9_38+f3f8_38+f4f7_38+f5f6_38; + crypto_int64 h2 = f0f2_2+f1f1_2 +f3f9_76+f4f8_38+f5f7_76+f6f6_19; + crypto_int64 h3 = f0f3_2+f1f2_2 +f4f9_38+f5f8_38+f6f7_38; + crypto_int64 h4 = f0f4_2+f1f3_4 +f2f2 +f5f9_76+f6f8_38+f7f7_38; + crypto_int64 h5 = f0f5_2+f1f4_2 +f2f3_2 +f6f9_38+f7f8_38; + crypto_int64 h6 = f0f6_2+f1f5_4 +f2f4_2 +f3f3_2 +f7f9_76+f8f8_19; + crypto_int64 h7 = f0f7_2+f1f6_2 +f2f5_2 +f3f4_2 +f8f9_38; + crypto_int64 h8 = f0f8_2+f1f7_4 +f2f6_2 +f3f5_4 +f4f4 +f9f9_38; + crypto_int64 h9 = f0f9_2+f1f8_2 +f2f7_2 +f3f6_2 +f4f5_2; + crypto_int64 carry0; + crypto_int64 carry1; + crypto_int64 carry2; + crypto_int64 carry3; + crypto_int64 carry4; + crypto_int64 carry5; + crypto_int64 carry6; + crypto_int64 carry7; + crypto_int64 carry8; + crypto_int64 carry9; + + carry0 = (h0 + (crypto_int64) (1<<25)) >> 26; h1 += carry0; h0 -= carry0 << 26; + carry4 = (h4 + (crypto_int64) (1<<25)) >> 26; h5 += carry4; h4 -= carry4 << 26; + + carry1 = (h1 + (crypto_int64) (1<<24)) >> 25; h2 += carry1; h1 -= carry1 << 25; + carry5 = (h5 + (crypto_int64) (1<<24)) >> 25; h6 += carry5; h5 -= carry5 << 25; + + carry2 = (h2 + (crypto_int64) (1<<25)) >> 26; h3 += carry2; h2 -= carry2 << 26; + carry6 = (h6 + (crypto_int64) (1<<25)) >> 26; h7 += carry6; h6 -= carry6 << 26; + + carry3 = (h3 + (crypto_int64) (1<<24)) >> 25; h4 += carry3; h3 -= carry3 << 25; + carry7 = (h7 + (crypto_int64) (1<<24)) >> 25; h8 += carry7; h7 -= carry7 << 25; + + carry4 = (h4 + (crypto_int64) (1<<25)) >> 26; h5 += carry4; h4 -= carry4 << 26; + carry8 = (h8 + (crypto_int64) (1<<25)) >> 26; h9 += carry8; h8 -= carry8 << 26; + + carry9 = (h9 + (crypto_int64) (1<<24)) >> 25; h0 += carry9 * 19; h9 -= carry9 << 25; + + carry0 = (h0 + (crypto_int64) (1<<25)) >> 26; h1 += carry0; h0 -= carry0 << 26; + + h[0] = h0; + h[1] = h1; + h[2] = h2; + h[3] = h3; + h[4] = h4; + h[5] = h5; + h[6] = h6; + h[7] = h7; + h[8] = h8; + h[9] = h9; +} diff --git a/native/ed25519/fe_sq2.c b/native/ed25519/fe_sq2.c new file mode 100644 index 0000000..026ed3a --- /dev/null +++ b/native/ed25519/fe_sq2.c @@ -0,0 +1,160 @@ +#include "fe.h" +#include "crypto_int64.h" + +/* +h = 2 * f * f +Can overlap h with f. + +Preconditions: + |f| bounded by 1.65*2^26,1.65*2^25,1.65*2^26,1.65*2^25,etc. + +Postconditions: + |h| bounded by 1.01*2^25,1.01*2^24,1.01*2^25,1.01*2^24,etc. +*/ + +/* +See fe_mul.c for discussion of implementation strategy. +*/ + +void fe_sq2(fe h,const fe f) +{ + crypto_int32 f0 = f[0]; + crypto_int32 f1 = f[1]; + crypto_int32 f2 = f[2]; + crypto_int32 f3 = f[3]; + crypto_int32 f4 = f[4]; + crypto_int32 f5 = f[5]; + crypto_int32 f6 = f[6]; + crypto_int32 f7 = f[7]; + crypto_int32 f8 = f[8]; + crypto_int32 f9 = f[9]; + crypto_int32 f0_2 = 2 * f0; + crypto_int32 f1_2 = 2 * f1; + crypto_int32 f2_2 = 2 * f2; + crypto_int32 f3_2 = 2 * f3; + crypto_int32 f4_2 = 2 * f4; + crypto_int32 f5_2 = 2 * f5; + crypto_int32 f6_2 = 2 * f6; + crypto_int32 f7_2 = 2 * f7; + crypto_int32 f5_38 = 38 * f5; /* 1.959375*2^30 */ + crypto_int32 f6_19 = 19 * f6; /* 1.959375*2^30 */ + crypto_int32 f7_38 = 38 * f7; /* 1.959375*2^30 */ + crypto_int32 f8_19 = 19 * f8; /* 1.959375*2^30 */ + crypto_int32 f9_38 = 38 * f9; /* 1.959375*2^30 */ + crypto_int64 f0f0 = f0 * (crypto_int64) f0; + crypto_int64 f0f1_2 = f0_2 * (crypto_int64) f1; + crypto_int64 f0f2_2 = f0_2 * (crypto_int64) f2; + crypto_int64 f0f3_2 = f0_2 * (crypto_int64) f3; + crypto_int64 f0f4_2 = f0_2 * (crypto_int64) f4; + crypto_int64 f0f5_2 = f0_2 * (crypto_int64) f5; + crypto_int64 f0f6_2 = f0_2 * (crypto_int64) f6; + crypto_int64 f0f7_2 = f0_2 * (crypto_int64) f7; + crypto_int64 f0f8_2 = f0_2 * (crypto_int64) f8; + crypto_int64 f0f9_2 = f0_2 * (crypto_int64) f9; + crypto_int64 f1f1_2 = f1_2 * (crypto_int64) f1; + crypto_int64 f1f2_2 = f1_2 * (crypto_int64) f2; + crypto_int64 f1f3_4 = f1_2 * (crypto_int64) f3_2; + crypto_int64 f1f4_2 = f1_2 * (crypto_int64) f4; + crypto_int64 f1f5_4 = f1_2 * (crypto_int64) f5_2; + crypto_int64 f1f6_2 = f1_2 * (crypto_int64) f6; + crypto_int64 f1f7_4 = f1_2 * (crypto_int64) f7_2; + crypto_int64 f1f8_2 = f1_2 * (crypto_int64) f8; + crypto_int64 f1f9_76 = f1_2 * (crypto_int64) f9_38; + crypto_int64 f2f2 = f2 * (crypto_int64) f2; + crypto_int64 f2f3_2 = f2_2 * (crypto_int64) f3; + crypto_int64 f2f4_2 = f2_2 * (crypto_int64) f4; + crypto_int64 f2f5_2 = f2_2 * (crypto_int64) f5; + crypto_int64 f2f6_2 = f2_2 * (crypto_int64) f6; + crypto_int64 f2f7_2 = f2_2 * (crypto_int64) f7; + crypto_int64 f2f8_38 = f2_2 * (crypto_int64) f8_19; + crypto_int64 f2f9_38 = f2 * (crypto_int64) f9_38; + crypto_int64 f3f3_2 = f3_2 * (crypto_int64) f3; + crypto_int64 f3f4_2 = f3_2 * (crypto_int64) f4; + crypto_int64 f3f5_4 = f3_2 * (crypto_int64) f5_2; + crypto_int64 f3f6_2 = f3_2 * (crypto_int64) f6; + crypto_int64 f3f7_76 = f3_2 * (crypto_int64) f7_38; + crypto_int64 f3f8_38 = f3_2 * (crypto_int64) f8_19; + crypto_int64 f3f9_76 = f3_2 * (crypto_int64) f9_38; + crypto_int64 f4f4 = f4 * (crypto_int64) f4; + crypto_int64 f4f5_2 = f4_2 * (crypto_int64) f5; + crypto_int64 f4f6_38 = f4_2 * (crypto_int64) f6_19; + crypto_int64 f4f7_38 = f4 * (crypto_int64) f7_38; + crypto_int64 f4f8_38 = f4_2 * (crypto_int64) f8_19; + crypto_int64 f4f9_38 = f4 * (crypto_int64) f9_38; + crypto_int64 f5f5_38 = f5 * (crypto_int64) f5_38; + crypto_int64 f5f6_38 = f5_2 * (crypto_int64) f6_19; + crypto_int64 f5f7_76 = f5_2 * (crypto_int64) f7_38; + crypto_int64 f5f8_38 = f5_2 * (crypto_int64) f8_19; + crypto_int64 f5f9_76 = f5_2 * (crypto_int64) f9_38; + crypto_int64 f6f6_19 = f6 * (crypto_int64) f6_19; + crypto_int64 f6f7_38 = f6 * (crypto_int64) f7_38; + crypto_int64 f6f8_38 = f6_2 * (crypto_int64) f8_19; + crypto_int64 f6f9_38 = f6 * (crypto_int64) f9_38; + crypto_int64 f7f7_38 = f7 * (crypto_int64) f7_38; + crypto_int64 f7f8_38 = f7_2 * (crypto_int64) f8_19; + crypto_int64 f7f9_76 = f7_2 * (crypto_int64) f9_38; + crypto_int64 f8f8_19 = f8 * (crypto_int64) f8_19; + crypto_int64 f8f9_38 = f8 * (crypto_int64) f9_38; + crypto_int64 f9f9_38 = f9 * (crypto_int64) f9_38; + crypto_int64 h0 = f0f0 +f1f9_76+f2f8_38+f3f7_76+f4f6_38+f5f5_38; + crypto_int64 h1 = f0f1_2+f2f9_38+f3f8_38+f4f7_38+f5f6_38; + crypto_int64 h2 = f0f2_2+f1f1_2 +f3f9_76+f4f8_38+f5f7_76+f6f6_19; + crypto_int64 h3 = f0f3_2+f1f2_2 +f4f9_38+f5f8_38+f6f7_38; + crypto_int64 h4 = f0f4_2+f1f3_4 +f2f2 +f5f9_76+f6f8_38+f7f7_38; + crypto_int64 h5 = f0f5_2+f1f4_2 +f2f3_2 +f6f9_38+f7f8_38; + crypto_int64 h6 = f0f6_2+f1f5_4 +f2f4_2 +f3f3_2 +f7f9_76+f8f8_19; + crypto_int64 h7 = f0f7_2+f1f6_2 +f2f5_2 +f3f4_2 +f8f9_38; + crypto_int64 h8 = f0f8_2+f1f7_4 +f2f6_2 +f3f5_4 +f4f4 +f9f9_38; + crypto_int64 h9 = f0f9_2+f1f8_2 +f2f7_2 +f3f6_2 +f4f5_2; + crypto_int64 carry0; + crypto_int64 carry1; + crypto_int64 carry2; + crypto_int64 carry3; + crypto_int64 carry4; + crypto_int64 carry5; + crypto_int64 carry6; + crypto_int64 carry7; + crypto_int64 carry8; + crypto_int64 carry9; + + h0 += h0; + h1 += h1; + h2 += h2; + h3 += h3; + h4 += h4; + h5 += h5; + h6 += h6; + h7 += h7; + h8 += h8; + h9 += h9; + + carry0 = (h0 + (crypto_int64) (1<<25)) >> 26; h1 += carry0; h0 -= carry0 << 26; + carry4 = (h4 + (crypto_int64) (1<<25)) >> 26; h5 += carry4; h4 -= carry4 << 26; + + carry1 = (h1 + (crypto_int64) (1<<24)) >> 25; h2 += carry1; h1 -= carry1 << 25; + carry5 = (h5 + (crypto_int64) (1<<24)) >> 25; h6 += carry5; h5 -= carry5 << 25; + + carry2 = (h2 + (crypto_int64) (1<<25)) >> 26; h3 += carry2; h2 -= carry2 << 26; + carry6 = (h6 + (crypto_int64) (1<<25)) >> 26; h7 += carry6; h6 -= carry6 << 26; + + carry3 = (h3 + (crypto_int64) (1<<24)) >> 25; h4 += carry3; h3 -= carry3 << 25; + carry7 = (h7 + (crypto_int64) (1<<24)) >> 25; h8 += carry7; h7 -= carry7 << 25; + + carry4 = (h4 + (crypto_int64) (1<<25)) >> 26; h5 += carry4; h4 -= carry4 << 26; + carry8 = (h8 + (crypto_int64) (1<<25)) >> 26; h9 += carry8; h8 -= carry8 << 26; + + carry9 = (h9 + (crypto_int64) (1<<24)) >> 25; h0 += carry9 * 19; h9 -= carry9 << 25; + + carry0 = (h0 + (crypto_int64) (1<<25)) >> 26; h1 += carry0; h0 -= carry0 << 26; + + h[0] = h0; + h[1] = h1; + h[2] = h2; + h[3] = h3; + h[4] = h4; + h[5] = h5; + h[6] = h6; + h[7] = h7; + h[8] = h8; + h[9] = h9; +} diff --git a/native/ed25519/fe_sub.c b/native/ed25519/fe_sub.c new file mode 100644 index 0000000..6e26b7d --- /dev/null +++ b/native/ed25519/fe_sub.c @@ -0,0 +1,57 @@ +#include "fe.h" + +/* +h = f - g +Can overlap h with f or g. + +Preconditions: + |f| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. + |g| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. + +Postconditions: + |h| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. +*/ + +void fe_sub(fe h,const fe f,const fe g) +{ + crypto_int32 f0 = f[0]; + crypto_int32 f1 = f[1]; + crypto_int32 f2 = f[2]; + crypto_int32 f3 = f[3]; + crypto_int32 f4 = f[4]; + crypto_int32 f5 = f[5]; + crypto_int32 f6 = f[6]; + crypto_int32 f7 = f[7]; + crypto_int32 f8 = f[8]; + crypto_int32 f9 = f[9]; + crypto_int32 g0 = g[0]; + crypto_int32 g1 = g[1]; + crypto_int32 g2 = g[2]; + crypto_int32 g3 = g[3]; + crypto_int32 g4 = g[4]; + crypto_int32 g5 = g[5]; + crypto_int32 g6 = g[6]; + crypto_int32 g7 = g[7]; + crypto_int32 g8 = g[8]; + crypto_int32 g9 = g[9]; + crypto_int32 h0 = f0 - g0; + crypto_int32 h1 = f1 - g1; + crypto_int32 h2 = f2 - g2; + crypto_int32 h3 = f3 - g3; + crypto_int32 h4 = f4 - g4; + crypto_int32 h5 = f5 - g5; + crypto_int32 h6 = f6 - g6; + crypto_int32 h7 = f7 - g7; + crypto_int32 h8 = f8 - g8; + crypto_int32 h9 = f9 - g9; + h[0] = h0; + h[1] = h1; + h[2] = h2; + h[3] = h3; + h[4] = h4; + h[5] = h5; + h[6] = h6; + h[7] = h7; + h[8] = h8; + h[9] = h9; +} diff --git a/native/ed25519/fe_tobytes.c b/native/ed25519/fe_tobytes.c new file mode 100644 index 0000000..0a63baf --- /dev/null +++ b/native/ed25519/fe_tobytes.c @@ -0,0 +1,119 @@ +#include "fe.h" + +/* +Preconditions: + |h| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. + +Write p=2^255-19; q=floor(h/p). +Basic claim: q = floor(2^(-255)(h + 19 2^(-25)h9 + 2^(-1))). + +Proof: + Have |h|<=p so |q|<=1 so |19^2 2^(-255) q|<1/4. + Also have |h-2^230 h9|<2^231 so |19 2^(-255)(h-2^230 h9)|<1/4. + + Write y=2^(-1)-19^2 2^(-255)q-19 2^(-255)(h-2^230 h9). + Then 0> 25; + q = (h0 + q) >> 26; + q = (h1 + q) >> 25; + q = (h2 + q) >> 26; + q = (h3 + q) >> 25; + q = (h4 + q) >> 26; + q = (h5 + q) >> 25; + q = (h6 + q) >> 26; + q = (h7 + q) >> 25; + q = (h8 + q) >> 26; + q = (h9 + q) >> 25; + + /* Goal: Output h-(2^255-19)q, which is between 0 and 2^255-20. */ + h0 += 19 * q; + /* Goal: Output h-2^255 q, which is between 0 and 2^255-20. */ + + carry0 = h0 >> 26; h1 += carry0; h0 -= carry0 << 26; + carry1 = h1 >> 25; h2 += carry1; h1 -= carry1 << 25; + carry2 = h2 >> 26; h3 += carry2; h2 -= carry2 << 26; + carry3 = h3 >> 25; h4 += carry3; h3 -= carry3 << 25; + carry4 = h4 >> 26; h5 += carry4; h4 -= carry4 << 26; + carry5 = h5 >> 25; h6 += carry5; h5 -= carry5 << 25; + carry6 = h6 >> 26; h7 += carry6; h6 -= carry6 << 26; + carry7 = h7 >> 25; h8 += carry7; h7 -= carry7 << 25; + carry8 = h8 >> 26; h9 += carry8; h8 -= carry8 << 26; + carry9 = h9 >> 25; h9 -= carry9 << 25; + /* h10 = carry9 */ + + /* + Goal: Output h0+...+2^255 h10-2^255 q, which is between 0 and 2^255-20. + Have h0+...+2^230 h9 between 0 and 2^255-1; + evidently 2^255 h10-2^255 q = 0. + Goal: Output h0+...+2^230 h9. + */ + + s[0] = h0 >> 0; + s[1] = h0 >> 8; + s[2] = h0 >> 16; + s[3] = (h0 >> 24) | (h1 << 2); + s[4] = h1 >> 6; + s[5] = h1 >> 14; + s[6] = (h1 >> 22) | (h2 << 3); + s[7] = h2 >> 5; + s[8] = h2 >> 13; + s[9] = (h2 >> 21) | (h3 << 5); + s[10] = h3 >> 3; + s[11] = h3 >> 11; + s[12] = (h3 >> 19) | (h4 << 6); + s[13] = h4 >> 2; + s[14] = h4 >> 10; + s[15] = h4 >> 18; + s[16] = h5 >> 0; + s[17] = h5 >> 8; + s[18] = h5 >> 16; + s[19] = (h5 >> 24) | (h6 << 1); + s[20] = h6 >> 7; + s[21] = h6 >> 15; + s[22] = (h6 >> 23) | (h7 << 3); + s[23] = h7 >> 5; + s[24] = h7 >> 13; + s[25] = (h7 >> 21) | (h8 << 4); + s[26] = h8 >> 4; + s[27] = h8 >> 12; + s[28] = (h8 >> 20) | (h9 << 6); + s[29] = h9 >> 2; + s[30] = h9 >> 10; + s[31] = h9 >> 18; +} diff --git a/native/ed25519/ge.h b/native/ed25519/ge.h new file mode 100644 index 0000000..55e95f9 --- /dev/null +++ b/native/ed25519/ge.h @@ -0,0 +1,95 @@ +#ifndef GE_H +#define GE_H + +/* +ge means group element. + +Here the group is the set of pairs (x,y) of field elements (see fe.h) +satisfying -x^2 + y^2 = 1 + d x^2y^2 +where d = -121665/121666. + +Representations: + ge_p2 (projective): (X:Y:Z) satisfying x=X/Z, y=Y/Z + ge_p3 (extended): (X:Y:Z:T) satisfying x=X/Z, y=Y/Z, XY=ZT + ge_p1p1 (completed): ((X:Z),(Y:T)) satisfying x=X/Z, y=Y/T + ge_precomp (Duif): (y+x,y-x,2dxy) +*/ + +#include "fe.h" + +typedef struct { + fe X; + fe Y; + fe Z; +} ge_p2; + +typedef struct { + fe X; + fe Y; + fe Z; + fe T; +} ge_p3; + +typedef struct { + fe X; + fe Y; + fe Z; + fe T; +} ge_p1p1; + +typedef struct { + fe yplusx; + fe yminusx; + fe xy2d; +} ge_precomp; + +typedef struct { + fe YplusX; + fe YminusX; + fe Z; + fe T2d; +} ge_cached; + +#define ge_frombytes_negate_vartime crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime +#define ge_tobytes crypto_sign_ed25519_ref10_ge_tobytes +#define ge_p3_tobytes crypto_sign_ed25519_ref10_ge_p3_tobytes + +#define ge_p2_0 crypto_sign_ed25519_ref10_ge_p2_0 +#define ge_p3_0 crypto_sign_ed25519_ref10_ge_p3_0 +#define ge_precomp_0 crypto_sign_ed25519_ref10_ge_precomp_0 +#define ge_p3_to_p2 crypto_sign_ed25519_ref10_ge_p3_to_p2 +#define ge_p3_to_cached crypto_sign_ed25519_ref10_ge_p3_to_cached +#define ge_p1p1_to_p2 crypto_sign_ed25519_ref10_ge_p1p1_to_p2 +#define ge_p1p1_to_p3 crypto_sign_ed25519_ref10_ge_p1p1_to_p3 +#define ge_p2_dbl crypto_sign_ed25519_ref10_ge_p2_dbl +#define ge_p3_dbl crypto_sign_ed25519_ref10_ge_p3_dbl + +#define ge_madd crypto_sign_ed25519_ref10_ge_madd +#define ge_msub crypto_sign_ed25519_ref10_ge_msub +#define ge_add crypto_sign_ed25519_ref10_ge_add +#define ge_sub crypto_sign_ed25519_ref10_ge_sub +#define ge_scalarmult_base crypto_sign_ed25519_ref10_ge_scalarmult_base +#define ge_double_scalarmult_vartime crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime + +extern void ge_tobytes(unsigned char *,const ge_p2 *); +extern void ge_p3_tobytes(unsigned char *,const ge_p3 *); +extern int ge_frombytes_negate_vartime(ge_p3 *,const unsigned char *); + +extern void ge_p2_0(ge_p2 *); +extern void ge_p3_0(ge_p3 *); +extern void ge_precomp_0(ge_precomp *); +extern void ge_p3_to_p2(ge_p2 *,const ge_p3 *); +extern void ge_p3_to_cached(ge_cached *,const ge_p3 *); +extern void ge_p1p1_to_p2(ge_p2 *,const ge_p1p1 *); +extern void ge_p1p1_to_p3(ge_p3 *,const ge_p1p1 *); +extern void ge_p2_dbl(ge_p1p1 *,const ge_p2 *); +extern void ge_p3_dbl(ge_p1p1 *,const ge_p3 *); + +extern void ge_madd(ge_p1p1 *,const ge_p3 *,const ge_precomp *); +extern void ge_msub(ge_p1p1 *,const ge_p3 *,const ge_precomp *); +extern void ge_add(ge_p1p1 *,const ge_p3 *,const ge_cached *); +extern void ge_sub(ge_p1p1 *,const ge_p3 *,const ge_cached *); +extern void ge_scalarmult_base(ge_p3 *,const unsigned char *); +extern void ge_double_scalarmult_vartime(ge_p2 *,const unsigned char *,const ge_p3 *,const unsigned char *); + +#endif diff --git a/native/ed25519/ge_add.c b/native/ed25519/ge_add.c new file mode 100644 index 0000000..da7ff5d --- /dev/null +++ b/native/ed25519/ge_add.c @@ -0,0 +1,11 @@ +#include "ge.h" + +/* +r = p + q +*/ + +void ge_add(ge_p1p1 *r,const ge_p3 *p,const ge_cached *q) +{ + fe t0; +#include "ge_add.h" +} diff --git a/native/ed25519/ge_add.h b/native/ed25519/ge_add.h new file mode 100644 index 0000000..7481f8f --- /dev/null +++ b/native/ed25519/ge_add.h @@ -0,0 +1,97 @@ + +/* qhasm: enter ge_add */ + +/* qhasm: fe X1 */ + +/* qhasm: fe Y1 */ + +/* qhasm: fe Z1 */ + +/* qhasm: fe Z2 */ + +/* qhasm: fe T1 */ + +/* qhasm: fe ZZ */ + +/* qhasm: fe YpX2 */ + +/* qhasm: fe YmX2 */ + +/* qhasm: fe T2d2 */ + +/* qhasm: fe X3 */ + +/* qhasm: fe Y3 */ + +/* qhasm: fe Z3 */ + +/* qhasm: fe T3 */ + +/* qhasm: fe YpX1 */ + +/* qhasm: fe YmX1 */ + +/* qhasm: fe A */ + +/* qhasm: fe B */ + +/* qhasm: fe C */ + +/* qhasm: fe D */ + +/* qhasm: YpX1 = Y1+X1 */ +/* asm 1: fe_add(>YpX1=fe#1,YpX1=r->X,Y,X); */ +fe_add(r->X,p->Y,p->X); + +/* qhasm: YmX1 = Y1-X1 */ +/* asm 1: fe_sub(>YmX1=fe#2,YmX1=r->Y,Y,X); */ +fe_sub(r->Y,p->Y,p->X); + +/* qhasm: A = YpX1*YpX2 */ +/* asm 1: fe_mul(>A=fe#3,A=r->Z,X,YplusX); */ +fe_mul(r->Z,r->X,q->YplusX); + +/* qhasm: B = YmX1*YmX2 */ +/* asm 1: fe_mul(>B=fe#2,B=r->Y,Y,YminusX); */ +fe_mul(r->Y,r->Y,q->YminusX); + +/* qhasm: C = T2d2*T1 */ +/* asm 1: fe_mul(>C=fe#4,C=r->T,T2d,T); */ +fe_mul(r->T,q->T2d,p->T); + +/* qhasm: ZZ = Z1*Z2 */ +/* asm 1: fe_mul(>ZZ=fe#1,ZZ=r->X,Z,Z); */ +fe_mul(r->X,p->Z,q->Z); + +/* qhasm: D = 2*ZZ */ +/* asm 1: fe_add(>D=fe#5,D=t0,X,X); */ +fe_add(t0,r->X,r->X); + +/* qhasm: X3 = A-B */ +/* asm 1: fe_sub(>X3=fe#1,X3=r->X,Z,Y); */ +fe_sub(r->X,r->Z,r->Y); + +/* qhasm: Y3 = A+B */ +/* asm 1: fe_add(>Y3=fe#2,Y3=r->Y,Z,Y); */ +fe_add(r->Y,r->Z,r->Y); + +/* qhasm: Z3 = D+C */ +/* asm 1: fe_add(>Z3=fe#3,Z3=r->Z,T); */ +fe_add(r->Z,t0,r->T); + +/* qhasm: T3 = D-C */ +/* asm 1: fe_sub(>T3=fe#4,T3=r->T,T); */ +fe_sub(r->T,t0,r->T); + +/* qhasm: return */ diff --git a/native/ed25519/ge_double_scalarmult.c b/native/ed25519/ge_double_scalarmult.c new file mode 100644 index 0000000..f8bf4bf --- /dev/null +++ b/native/ed25519/ge_double_scalarmult.c @@ -0,0 +1,96 @@ +#include "ge.h" + +static void slide(signed char *r,const unsigned char *a) +{ + int i; + int b; + int k; + + for (i = 0;i < 256;++i) + r[i] = 1 & (a[i >> 3] >> (i & 7)); + + for (i = 0;i < 256;++i) + if (r[i]) { + for (b = 1;b <= 6 && i + b < 256;++b) { + if (r[i + b]) { + if (r[i] + (r[i + b] << b) <= 15) { + r[i] += r[i + b] << b; r[i + b] = 0; + } else if (r[i] - (r[i + b] << b) >= -15) { + r[i] -= r[i + b] << b; + for (k = i + b;k < 256;++k) { + if (!r[k]) { + r[k] = 1; + break; + } + r[k] = 0; + } + } else + break; + } + } + } + +} + +static ge_precomp Bi[8] = { +#include "base2.h" +} ; + +/* +r = a * A + b * B +where a = a[0]+256*a[1]+...+256^31 a[31]. +and b = b[0]+256*b[1]+...+256^31 b[31]. +B is the Ed25519 base point (x,4/5) with x positive. +*/ + +void ge_double_scalarmult_vartime(ge_p2 *r,const unsigned char *a,const ge_p3 *A,const unsigned char *b) +{ + signed char aslide[256]; + signed char bslide[256]; + ge_cached Ai[8]; /* A,3A,5A,7A,9A,11A,13A,15A */ + ge_p1p1 t; + ge_p3 u; + ge_p3 A2; + int i; + + slide(aslide,a); + slide(bslide,b); + + ge_p3_to_cached(&Ai[0],A); + ge_p3_dbl(&t,A); ge_p1p1_to_p3(&A2,&t); + ge_add(&t,&A2,&Ai[0]); ge_p1p1_to_p3(&u,&t); ge_p3_to_cached(&Ai[1],&u); + ge_add(&t,&A2,&Ai[1]); ge_p1p1_to_p3(&u,&t); ge_p3_to_cached(&Ai[2],&u); + ge_add(&t,&A2,&Ai[2]); ge_p1p1_to_p3(&u,&t); ge_p3_to_cached(&Ai[3],&u); + ge_add(&t,&A2,&Ai[3]); ge_p1p1_to_p3(&u,&t); ge_p3_to_cached(&Ai[4],&u); + ge_add(&t,&A2,&Ai[4]); ge_p1p1_to_p3(&u,&t); ge_p3_to_cached(&Ai[5],&u); + ge_add(&t,&A2,&Ai[5]); ge_p1p1_to_p3(&u,&t); ge_p3_to_cached(&Ai[6],&u); + ge_add(&t,&A2,&Ai[6]); ge_p1p1_to_p3(&u,&t); ge_p3_to_cached(&Ai[7],&u); + + ge_p2_0(r); + + for (i = 255;i >= 0;--i) { + if (aslide[i] || bslide[i]) break; + } + + for (;i >= 0;--i) { + ge_p2_dbl(&t,r); + + if (aslide[i] > 0) { + ge_p1p1_to_p3(&u,&t); + ge_add(&t,&u,&Ai[aslide[i]/2]); + } else if (aslide[i] < 0) { + ge_p1p1_to_p3(&u,&t); + ge_sub(&t,&u,&Ai[(-aslide[i])/2]); + } + + if (bslide[i] > 0) { + ge_p1p1_to_p3(&u,&t); + ge_madd(&t,&u,&Bi[bslide[i]/2]); + } else if (bslide[i] < 0) { + ge_p1p1_to_p3(&u,&t); + ge_msub(&t,&u,&Bi[(-bslide[i])/2]); + } + + ge_p1p1_to_p2(r,&t); + } +} diff --git a/native/ed25519/ge_frombytes.c b/native/ed25519/ge_frombytes.c new file mode 100644 index 0000000..1a059ee --- /dev/null +++ b/native/ed25519/ge_frombytes.c @@ -0,0 +1,50 @@ +#include "ge.h" + +static const fe d = { +#include "d.h" +} ; + +static const fe sqrtm1 = { +#include "sqrtm1.h" +} ; + +int ge_frombytes_negate_vartime(ge_p3 *h,const unsigned char *s) +{ + fe u; + fe v; + fe v3; + fe vxx; + fe check; + + fe_frombytes(h->Y,s); + fe_1(h->Z); + fe_sq(u,h->Y); + fe_mul(v,u,d); + fe_sub(u,u,h->Z); /* u = y^2-1 */ + fe_add(v,v,h->Z); /* v = dy^2+1 */ + + fe_sq(v3,v); + fe_mul(v3,v3,v); /* v3 = v^3 */ + fe_sq(h->X,v3); + fe_mul(h->X,h->X,v); + fe_mul(h->X,h->X,u); /* x = uv^7 */ + + fe_pow22523(h->X,h->X); /* x = (uv^7)^((q-5)/8) */ + fe_mul(h->X,h->X,v3); + fe_mul(h->X,h->X,u); /* x = uv^3(uv^7)^((q-5)/8) */ + + fe_sq(vxx,h->X); + fe_mul(vxx,vxx,v); + fe_sub(check,vxx,u); /* vx^2-u */ + if (fe_isnonzero(check)) { + fe_add(check,vxx,u); /* vx^2+u */ + if (fe_isnonzero(check)) return -1; + fe_mul(h->X,h->X,sqrtm1); + } + + if (fe_isnegative(h->X) == (s[31] >> 7)) + fe_neg(h->X,h->X); + + fe_mul(h->T,h->X,h->Y); + return 0; +} diff --git a/native/ed25519/ge_madd.c b/native/ed25519/ge_madd.c new file mode 100644 index 0000000..6225717 --- /dev/null +++ b/native/ed25519/ge_madd.c @@ -0,0 +1,11 @@ +#include "ge.h" + +/* +r = p + q +*/ + +void ge_madd(ge_p1p1 *r,const ge_p3 *p,const ge_precomp *q) +{ + fe t0; +#include "ge_madd.h" +} diff --git a/native/ed25519/ge_madd.h b/native/ed25519/ge_madd.h new file mode 100644 index 0000000..ecae849 --- /dev/null +++ b/native/ed25519/ge_madd.h @@ -0,0 +1,88 @@ + +/* qhasm: enter ge_madd */ + +/* qhasm: fe X1 */ + +/* qhasm: fe Y1 */ + +/* qhasm: fe Z1 */ + +/* qhasm: fe T1 */ + +/* qhasm: fe ypx2 */ + +/* qhasm: fe ymx2 */ + +/* qhasm: fe xy2d2 */ + +/* qhasm: fe X3 */ + +/* qhasm: fe Y3 */ + +/* qhasm: fe Z3 */ + +/* qhasm: fe T3 */ + +/* qhasm: fe YpX1 */ + +/* qhasm: fe YmX1 */ + +/* qhasm: fe A */ + +/* qhasm: fe B */ + +/* qhasm: fe C */ + +/* qhasm: fe D */ + +/* qhasm: YpX1 = Y1+X1 */ +/* asm 1: fe_add(>YpX1=fe#1,YpX1=r->X,Y,X); */ +fe_add(r->X,p->Y,p->X); + +/* qhasm: YmX1 = Y1-X1 */ +/* asm 1: fe_sub(>YmX1=fe#2,YmX1=r->Y,Y,X); */ +fe_sub(r->Y,p->Y,p->X); + +/* qhasm: A = YpX1*ypx2 */ +/* asm 1: fe_mul(>A=fe#3,A=r->Z,X,yplusx); */ +fe_mul(r->Z,r->X,q->yplusx); + +/* qhasm: B = YmX1*ymx2 */ +/* asm 1: fe_mul(>B=fe#2,B=r->Y,Y,yminusx); */ +fe_mul(r->Y,r->Y,q->yminusx); + +/* qhasm: C = xy2d2*T1 */ +/* asm 1: fe_mul(>C=fe#4,C=r->T,xy2d,T); */ +fe_mul(r->T,q->xy2d,p->T); + +/* qhasm: D = 2*Z1 */ +/* asm 1: fe_add(>D=fe#5,D=t0,Z,Z); */ +fe_add(t0,p->Z,p->Z); + +/* qhasm: X3 = A-B */ +/* asm 1: fe_sub(>X3=fe#1,X3=r->X,Z,Y); */ +fe_sub(r->X,r->Z,r->Y); + +/* qhasm: Y3 = A+B */ +/* asm 1: fe_add(>Y3=fe#2,Y3=r->Y,Z,Y); */ +fe_add(r->Y,r->Z,r->Y); + +/* qhasm: Z3 = D+C */ +/* asm 1: fe_add(>Z3=fe#3,Z3=r->Z,T); */ +fe_add(r->Z,t0,r->T); + +/* qhasm: T3 = D-C */ +/* asm 1: fe_sub(>T3=fe#4,T3=r->T,T); */ +fe_sub(r->T,t0,r->T); + +/* qhasm: return */ diff --git a/native/ed25519/ge_msub.c b/native/ed25519/ge_msub.c new file mode 100644 index 0000000..741ecbf --- /dev/null +++ b/native/ed25519/ge_msub.c @@ -0,0 +1,11 @@ +#include "ge.h" + +/* +r = p - q +*/ + +void ge_msub(ge_p1p1 *r,const ge_p3 *p,const ge_precomp *q) +{ + fe t0; +#include "ge_msub.h" +} diff --git a/native/ed25519/ge_msub.h b/native/ed25519/ge_msub.h new file mode 100644 index 0000000..500f986 --- /dev/null +++ b/native/ed25519/ge_msub.h @@ -0,0 +1,88 @@ + +/* qhasm: enter ge_msub */ + +/* qhasm: fe X1 */ + +/* qhasm: fe Y1 */ + +/* qhasm: fe Z1 */ + +/* qhasm: fe T1 */ + +/* qhasm: fe ypx2 */ + +/* qhasm: fe ymx2 */ + +/* qhasm: fe xy2d2 */ + +/* qhasm: fe X3 */ + +/* qhasm: fe Y3 */ + +/* qhasm: fe Z3 */ + +/* qhasm: fe T3 */ + +/* qhasm: fe YpX1 */ + +/* qhasm: fe YmX1 */ + +/* qhasm: fe A */ + +/* qhasm: fe B */ + +/* qhasm: fe C */ + +/* qhasm: fe D */ + +/* qhasm: YpX1 = Y1+X1 */ +/* asm 1: fe_add(>YpX1=fe#1,YpX1=r->X,Y,X); */ +fe_add(r->X,p->Y,p->X); + +/* qhasm: YmX1 = Y1-X1 */ +/* asm 1: fe_sub(>YmX1=fe#2,YmX1=r->Y,Y,X); */ +fe_sub(r->Y,p->Y,p->X); + +/* qhasm: A = YpX1*ymx2 */ +/* asm 1: fe_mul(>A=fe#3,A=r->Z,X,yminusx); */ +fe_mul(r->Z,r->X,q->yminusx); + +/* qhasm: B = YmX1*ypx2 */ +/* asm 1: fe_mul(>B=fe#2,B=r->Y,Y,yplusx); */ +fe_mul(r->Y,r->Y,q->yplusx); + +/* qhasm: C = xy2d2*T1 */ +/* asm 1: fe_mul(>C=fe#4,C=r->T,xy2d,T); */ +fe_mul(r->T,q->xy2d,p->T); + +/* qhasm: D = 2*Z1 */ +/* asm 1: fe_add(>D=fe#5,D=t0,Z,Z); */ +fe_add(t0,p->Z,p->Z); + +/* qhasm: X3 = A-B */ +/* asm 1: fe_sub(>X3=fe#1,X3=r->X,Z,Y); */ +fe_sub(r->X,r->Z,r->Y); + +/* qhasm: Y3 = A+B */ +/* asm 1: fe_add(>Y3=fe#2,Y3=r->Y,Z,Y); */ +fe_add(r->Y,r->Z,r->Y); + +/* qhasm: Z3 = D-C */ +/* asm 1: fe_sub(>Z3=fe#3,Z3=r->Z,T); */ +fe_sub(r->Z,t0,r->T); + +/* qhasm: T3 = D+C */ +/* asm 1: fe_add(>T3=fe#4,T3=r->T,T); */ +fe_add(r->T,t0,r->T); + +/* qhasm: return */ diff --git a/native/ed25519/ge_p1p1_to_p2.c b/native/ed25519/ge_p1p1_to_p2.c new file mode 100644 index 0000000..9bb5013 --- /dev/null +++ b/native/ed25519/ge_p1p1_to_p2.c @@ -0,0 +1,12 @@ +#include "ge.h" + +/* +r = p +*/ + +extern void ge_p1p1_to_p2(ge_p2 *r,const ge_p1p1 *p) +{ + fe_mul(r->X,p->X,p->T); + fe_mul(r->Y,p->Y,p->Z); + fe_mul(r->Z,p->Z,p->T); +} diff --git a/native/ed25519/ge_p1p1_to_p3.c b/native/ed25519/ge_p1p1_to_p3.c new file mode 100644 index 0000000..2f57b10 --- /dev/null +++ b/native/ed25519/ge_p1p1_to_p3.c @@ -0,0 +1,13 @@ +#include "ge.h" + +/* +r = p +*/ + +extern void ge_p1p1_to_p3(ge_p3 *r,const ge_p1p1 *p) +{ + fe_mul(r->X,p->X,p->T); + fe_mul(r->Y,p->Y,p->Z); + fe_mul(r->Z,p->Z,p->T); + fe_mul(r->T,p->X,p->Y); +} diff --git a/native/ed25519/ge_p2_0.c b/native/ed25519/ge_p2_0.c new file mode 100644 index 0000000..6191d1e --- /dev/null +++ b/native/ed25519/ge_p2_0.c @@ -0,0 +1,8 @@ +#include "ge.h" + +void ge_p2_0(ge_p2 *h) +{ + fe_0(h->X); + fe_1(h->Y); + fe_1(h->Z); +} diff --git a/native/ed25519/ge_p2_dbl.c b/native/ed25519/ge_p2_dbl.c new file mode 100644 index 0000000..2e332b5 --- /dev/null +++ b/native/ed25519/ge_p2_dbl.c @@ -0,0 +1,11 @@ +#include "ge.h" + +/* +r = 2 * p +*/ + +void ge_p2_dbl(ge_p1p1 *r,const ge_p2 *p) +{ + fe t0; +#include "ge_p2_dbl.h" +} diff --git a/native/ed25519/ge_p2_dbl.h b/native/ed25519/ge_p2_dbl.h new file mode 100644 index 0000000..128efed --- /dev/null +++ b/native/ed25519/ge_p2_dbl.h @@ -0,0 +1,73 @@ + +/* qhasm: enter ge_p2_dbl */ + +/* qhasm: fe X1 */ + +/* qhasm: fe Y1 */ + +/* qhasm: fe Z1 */ + +/* qhasm: fe A */ + +/* qhasm: fe AA */ + +/* qhasm: fe XX */ + +/* qhasm: fe YY */ + +/* qhasm: fe B */ + +/* qhasm: fe X3 */ + +/* qhasm: fe Y3 */ + +/* qhasm: fe Z3 */ + +/* qhasm: fe T3 */ + +/* qhasm: XX=X1^2 */ +/* asm 1: fe_sq(>XX=fe#1,XX=r->X,X); */ +fe_sq(r->X,p->X); + +/* qhasm: YY=Y1^2 */ +/* asm 1: fe_sq(>YY=fe#3,YY=r->Z,Y); */ +fe_sq(r->Z,p->Y); + +/* qhasm: B=2*Z1^2 */ +/* asm 1: fe_sq2(>B=fe#4,B=r->T,Z); */ +fe_sq2(r->T,p->Z); + +/* qhasm: A=X1+Y1 */ +/* asm 1: fe_add(>A=fe#2,A=r->Y,X,Y); */ +fe_add(r->Y,p->X,p->Y); + +/* qhasm: AA=A^2 */ +/* asm 1: fe_sq(>AA=fe#5,AA=t0,Y); */ +fe_sq(t0,r->Y); + +/* qhasm: Y3=YY+XX */ +/* asm 1: fe_add(>Y3=fe#2,Y3=r->Y,Z,X); */ +fe_add(r->Y,r->Z,r->X); + +/* qhasm: Z3=YY-XX */ +/* asm 1: fe_sub(>Z3=fe#3,Z3=r->Z,Z,X); */ +fe_sub(r->Z,r->Z,r->X); + +/* qhasm: X3=AA-Y3 */ +/* asm 1: fe_sub(>X3=fe#1,X3=r->X,Y); */ +fe_sub(r->X,t0,r->Y); + +/* qhasm: T3=B-Z3 */ +/* asm 1: fe_sub(>T3=fe#4,T3=r->T,T,Z); */ +fe_sub(r->T,r->T,r->Z); + +/* qhasm: return */ diff --git a/native/ed25519/ge_p3_0.c b/native/ed25519/ge_p3_0.c new file mode 100644 index 0000000..401b293 --- /dev/null +++ b/native/ed25519/ge_p3_0.c @@ -0,0 +1,9 @@ +#include "ge.h" + +void ge_p3_0(ge_p3 *h) +{ + fe_0(h->X); + fe_1(h->Y); + fe_1(h->Z); + fe_0(h->T); +} diff --git a/native/ed25519/ge_p3_dbl.c b/native/ed25519/ge_p3_dbl.c new file mode 100644 index 0000000..0d8a059 --- /dev/null +++ b/native/ed25519/ge_p3_dbl.c @@ -0,0 +1,12 @@ +#include "ge.h" + +/* +r = 2 * p +*/ + +void ge_p3_dbl(ge_p1p1 *r,const ge_p3 *p) +{ + ge_p2 q; + ge_p3_to_p2(&q,p); + ge_p2_dbl(r,&q); +} diff --git a/native/ed25519/ge_p3_to_cached.c b/native/ed25519/ge_p3_to_cached.c new file mode 100644 index 0000000..bde6422 --- /dev/null +++ b/native/ed25519/ge_p3_to_cached.c @@ -0,0 +1,17 @@ +#include "ge.h" + +/* +r = p +*/ + +static const fe d2 = { +#include "d2.h" +} ; + +extern void ge_p3_to_cached(ge_cached *r,const ge_p3 *p) +{ + fe_add(r->YplusX,p->Y,p->X); + fe_sub(r->YminusX,p->Y,p->X); + fe_copy(r->Z,p->Z); + fe_mul(r->T2d,p->T,d2); +} diff --git a/native/ed25519/ge_p3_to_p2.c b/native/ed25519/ge_p3_to_p2.c new file mode 100644 index 0000000..e532a9e --- /dev/null +++ b/native/ed25519/ge_p3_to_p2.c @@ -0,0 +1,12 @@ +#include "ge.h" + +/* +r = p +*/ + +extern void ge_p3_to_p2(ge_p2 *r,const ge_p3 *p) +{ + fe_copy(r->X,p->X); + fe_copy(r->Y,p->Y); + fe_copy(r->Z,p->Z); +} diff --git a/native/ed25519/ge_p3_tobytes.c b/native/ed25519/ge_p3_tobytes.c new file mode 100644 index 0000000..21cb2fc --- /dev/null +++ b/native/ed25519/ge_p3_tobytes.c @@ -0,0 +1,14 @@ +#include "ge.h" + +void ge_p3_tobytes(unsigned char *s,const ge_p3 *h) +{ + fe recip; + fe x; + fe y; + + fe_invert(recip,h->Z); + fe_mul(x,h->X,recip); + fe_mul(y,h->Y,recip); + fe_tobytes(s,y); + s[31] ^= fe_isnegative(x) << 7; +} diff --git a/native/ed25519/ge_precomp_0.c b/native/ed25519/ge_precomp_0.c new file mode 100644 index 0000000..2e21886 --- /dev/null +++ b/native/ed25519/ge_precomp_0.c @@ -0,0 +1,8 @@ +#include "ge.h" + +void ge_precomp_0(ge_precomp *h) +{ + fe_1(h->yplusx); + fe_1(h->yminusx); + fe_0(h->xy2d); +} diff --git a/native/ed25519/ge_scalarmult_base.c b/native/ed25519/ge_scalarmult_base.c new file mode 100644 index 0000000..421e4fa --- /dev/null +++ b/native/ed25519/ge_scalarmult_base.c @@ -0,0 +1,105 @@ +#include "ge.h" +#include "crypto_uint32.h" + +static unsigned char equal(signed char b,signed char c) +{ + unsigned char ub = b; + unsigned char uc = c; + unsigned char x = ub ^ uc; /* 0: yes; 1..255: no */ + crypto_uint32 y = x; /* 0: yes; 1..255: no */ + y -= 1; /* 4294967295: yes; 0..254: no */ + y >>= 31; /* 1: yes; 0: no */ + return y; +} + +static unsigned char negative(signed char b) +{ + unsigned long long x = b; /* 18446744073709551361..18446744073709551615: yes; 0..255: no */ + x >>= 63; /* 1: yes; 0: no */ + return x; +} + +static void cmov(ge_precomp *t,ge_precomp *u,unsigned char b) +{ + fe_cmov(t->yplusx,u->yplusx,b); + fe_cmov(t->yminusx,u->yminusx,b); + fe_cmov(t->xy2d,u->xy2d,b); +} + +/* base[i][j] = (j+1)*256^i*B */ +static ge_precomp base[32][8] = { +#include "base.h" +} ; + +static void select(ge_precomp *t,int pos,signed char b) +{ + ge_precomp minust; + unsigned char bnegative = negative(b); + unsigned char babs = b - (((-bnegative) & b) << 1); + + ge_precomp_0(t); + cmov(t,&base[pos][0],equal(babs,1)); + cmov(t,&base[pos][1],equal(babs,2)); + cmov(t,&base[pos][2],equal(babs,3)); + cmov(t,&base[pos][3],equal(babs,4)); + cmov(t,&base[pos][4],equal(babs,5)); + cmov(t,&base[pos][5],equal(babs,6)); + cmov(t,&base[pos][6],equal(babs,7)); + cmov(t,&base[pos][7],equal(babs,8)); + fe_copy(minust.yplusx,t->yminusx); + fe_copy(minust.yminusx,t->yplusx); + fe_neg(minust.xy2d,t->xy2d); + cmov(t,&minust,bnegative); +} + +/* +h = a * B +where a = a[0]+256*a[1]+...+256^31 a[31] +B is the Ed25519 base point (x,4/5) with x positive. + +Preconditions: + a[31] <= 127 +*/ + +void ge_scalarmult_base(ge_p3 *h,const unsigned char *a) +{ + signed char e[64]; + signed char carry; + ge_p1p1 r; + ge_p2 s; + ge_precomp t; + int i; + + for (i = 0;i < 32;++i) { + e[2 * i + 0] = (a[i] >> 0) & 15; + e[2 * i + 1] = (a[i] >> 4) & 15; + } + /* each e[i] is between 0 and 15 */ + /* e[63] is between 0 and 7 */ + + carry = 0; + for (i = 0;i < 63;++i) { + e[i] += carry; + carry = e[i] + 8; + carry >>= 4; + e[i] -= carry << 4; + } + e[63] += carry; + /* each e[i] is between -8 and 8 */ + + ge_p3_0(h); + for (i = 1;i < 64;i += 2) { + select(&t,i / 2,e[i]); + ge_madd(&r,h,&t); ge_p1p1_to_p3(h,&r); + } + + ge_p3_dbl(&r,h); ge_p1p1_to_p2(&s,&r); + ge_p2_dbl(&r,&s); ge_p1p1_to_p2(&s,&r); + ge_p2_dbl(&r,&s); ge_p1p1_to_p2(&s,&r); + ge_p2_dbl(&r,&s); ge_p1p1_to_p3(h,&r); + + for (i = 0;i < 64;i += 2) { + select(&t,i / 2,e[i]); + ge_madd(&r,h,&t); ge_p1p1_to_p3(h,&r); + } +} diff --git a/native/ed25519/ge_sub.c b/native/ed25519/ge_sub.c new file mode 100644 index 0000000..69f3d54 --- /dev/null +++ b/native/ed25519/ge_sub.c @@ -0,0 +1,11 @@ +#include "ge.h" + +/* +r = p - q +*/ + +void ge_sub(ge_p1p1 *r,const ge_p3 *p,const ge_cached *q) +{ + fe t0; +#include "ge_sub.h" +} diff --git a/native/ed25519/ge_sub.h b/native/ed25519/ge_sub.h new file mode 100644 index 0000000..b4ef1f5 --- /dev/null +++ b/native/ed25519/ge_sub.h @@ -0,0 +1,97 @@ + +/* qhasm: enter ge_sub */ + +/* qhasm: fe X1 */ + +/* qhasm: fe Y1 */ + +/* qhasm: fe Z1 */ + +/* qhasm: fe Z2 */ + +/* qhasm: fe T1 */ + +/* qhasm: fe ZZ */ + +/* qhasm: fe YpX2 */ + +/* qhasm: fe YmX2 */ + +/* qhasm: fe T2d2 */ + +/* qhasm: fe X3 */ + +/* qhasm: fe Y3 */ + +/* qhasm: fe Z3 */ + +/* qhasm: fe T3 */ + +/* qhasm: fe YpX1 */ + +/* qhasm: fe YmX1 */ + +/* qhasm: fe A */ + +/* qhasm: fe B */ + +/* qhasm: fe C */ + +/* qhasm: fe D */ + +/* qhasm: YpX1 = Y1+X1 */ +/* asm 1: fe_add(>YpX1=fe#1,YpX1=r->X,Y,X); */ +fe_add(r->X,p->Y,p->X); + +/* qhasm: YmX1 = Y1-X1 */ +/* asm 1: fe_sub(>YmX1=fe#2,YmX1=r->Y,Y,X); */ +fe_sub(r->Y,p->Y,p->X); + +/* qhasm: A = YpX1*YmX2 */ +/* asm 1: fe_mul(>A=fe#3,A=r->Z,X,YminusX); */ +fe_mul(r->Z,r->X,q->YminusX); + +/* qhasm: B = YmX1*YpX2 */ +/* asm 1: fe_mul(>B=fe#2,B=r->Y,Y,YplusX); */ +fe_mul(r->Y,r->Y,q->YplusX); + +/* qhasm: C = T2d2*T1 */ +/* asm 1: fe_mul(>C=fe#4,C=r->T,T2d,T); */ +fe_mul(r->T,q->T2d,p->T); + +/* qhasm: ZZ = Z1*Z2 */ +/* asm 1: fe_mul(>ZZ=fe#1,ZZ=r->X,Z,Z); */ +fe_mul(r->X,p->Z,q->Z); + +/* qhasm: D = 2*ZZ */ +/* asm 1: fe_add(>D=fe#5,D=t0,X,X); */ +fe_add(t0,r->X,r->X); + +/* qhasm: X3 = A-B */ +/* asm 1: fe_sub(>X3=fe#1,X3=r->X,Z,Y); */ +fe_sub(r->X,r->Z,r->Y); + +/* qhasm: Y3 = A+B */ +/* asm 1: fe_add(>Y3=fe#2,Y3=r->Y,Z,Y); */ +fe_add(r->Y,r->Z,r->Y); + +/* qhasm: Z3 = D-C */ +/* asm 1: fe_sub(>Z3=fe#3,Z3=r->Z,T); */ +fe_sub(r->Z,t0,r->T); + +/* qhasm: T3 = D+C */ +/* asm 1: fe_add(>T3=fe#4,T3=r->T,T); */ +fe_add(r->T,t0,r->T); + +/* qhasm: return */ diff --git a/native/ed25519/ge_tobytes.c b/native/ed25519/ge_tobytes.c new file mode 100644 index 0000000..31b3d33 --- /dev/null +++ b/native/ed25519/ge_tobytes.c @@ -0,0 +1,14 @@ +#include "ge.h" + +void ge_tobytes(unsigned char *s,const ge_p2 *h) +{ + fe recip; + fe x; + fe y; + + fe_invert(recip,h->Z); + fe_mul(x,h->X,recip); + fe_mul(y,h->Y,recip); + fe_tobytes(s,y); + s[31] ^= fe_isnegative(x) << 7; +} diff --git a/native/ed25519/main/main.c b/native/ed25519/main/main.c new file mode 100644 index 0000000..657b59f --- /dev/null +++ b/native/ed25519/main/main.c @@ -0,0 +1,41 @@ +#include +#include +#include "sha512.h" +#include "curve_sigs.h" + +int main(int argc, char* argv[]) +{ + unsigned char privkey[32]; + unsigned char pubkey[32]; + unsigned char signature[64]; + unsigned char msg[100]; + unsigned long long msg_len = 100; + + /* Initialize pubkey, privkey, msg */ + memset(msg, 0, 100); + memset(privkey, 0, 32); + memset(pubkey, 0, 32); + privkey[0] &= 248; + privkey[31] &= 63; + privkey[31] |= 64; + + privkey[8] = 189; /* just so there's some bits set */ + + curve25519_keygen(pubkey, privkey); + + curve25519_sign(signature, privkey, msg, msg_len); + + if (curve25519_verify(signature, pubkey, msg, msg_len) == 0) + printf("success #1\n"); + else + printf("failure #1\n"); + + signature[0] ^= 1; + + if (curve25519_verify(signature, pubkey, msg, msg_len) == 0) + printf("failure #2\n"); + else + printf("success #2\n"); + + return 1; +} diff --git a/native/ed25519/nacl_includes/crypto_hash_sha512.h b/native/ed25519/nacl_includes/crypto_hash_sha512.h new file mode 100644 index 0000000..b77f862 --- /dev/null +++ b/native/ed25519/nacl_includes/crypto_hash_sha512.h @@ -0,0 +1,23 @@ +#ifndef crypto_hash_sha512_H +#define crypto_hash_sha512_H + +#define crypto_hash_sha512_ref_BYTES 64 +#ifdef __cplusplus +#include +extern std::string crypto_hash_sha512_ref(const std::string &); +extern "C" { +#endif +extern int crypto_hash_sha512_ref(unsigned char *,const unsigned char *,unsigned long long); +#ifdef __cplusplus +} +#endif + +#define crypto_hash_sha512 crypto_hash_sha512_ref +#define crypto_hash_sha512_BYTES crypto_hash_sha512_ref_BYTES +#define crypto_hash_sha512_IMPLEMENTATION "crypto_hash/sha512/ref" +#ifndef crypto_hash_sha512_ref_VERSION +#define crypto_hash_sha512_ref_VERSION "-" +#endif +#define crypto_hash_sha512_VERSION crypto_hash_sha512_ref_VERSION + +#endif diff --git a/native/ed25519/nacl_includes/crypto_int32.h b/native/ed25519/nacl_includes/crypto_int32.h new file mode 100644 index 0000000..cae135e --- /dev/null +++ b/native/ed25519/nacl_includes/crypto_int32.h @@ -0,0 +1,6 @@ +#ifndef crypto_int32_h +#define crypto_int32_h + +typedef int crypto_int32; + +#endif diff --git a/native/ed25519/nacl_includes/crypto_int64.h b/native/ed25519/nacl_includes/crypto_int64.h new file mode 100644 index 0000000..fc92417 --- /dev/null +++ b/native/ed25519/nacl_includes/crypto_int64.h @@ -0,0 +1,6 @@ +#ifndef crypto_int64_h +#define crypto_int64_h + +typedef long long crypto_int64; + +#endif diff --git a/native/ed25519/nacl_includes/crypto_sign.h b/native/ed25519/nacl_includes/crypto_sign.h new file mode 100644 index 0000000..8472603 --- /dev/null +++ b/native/ed25519/nacl_includes/crypto_sign.h @@ -0,0 +1,16 @@ +#ifndef crypto_sign_H +#define crypto_sign_H + +#include "crypto_sign_edwards25519sha512batch.h" + +#define crypto_sign crypto_sign_edwards25519sha512batch +#define crypto_sign_open crypto_sign_edwards25519sha512batch_open +#define crypto_sign_keypair crypto_sign_edwards25519sha512batch_keypair +#define crypto_sign_BYTES crypto_sign_edwards25519sha512batch_BYTES +#define crypto_sign_PUBLICKEYBYTES crypto_sign_edwards25519sha512batch_PUBLICKEYBYTES +#define crypto_sign_SECRETKEYBYTES crypto_sign_edwards25519sha512batch_SECRETKEYBYTES +#define crypto_sign_PRIMITIVE "edwards25519sha512batch" +#define crypto_sign_IMPLEMENTATION crypto_sign_edwards25519sha512batch_IMPLEMENTATION +#define crypto_sign_VERSION crypto_sign_edwards25519sha512batch_VERSION + +#endif diff --git a/native/ed25519/nacl_includes/crypto_sign_edwards25519sha512batch.h b/native/ed25519/nacl_includes/crypto_sign_edwards25519sha512batch.h new file mode 100644 index 0000000..62fae61 --- /dev/null +++ b/native/ed25519/nacl_includes/crypto_sign_edwards25519sha512batch.h @@ -0,0 +1,33 @@ +#ifndef crypto_sign_edwards25519sha512batch_H +#define crypto_sign_edwards25519sha512batch_H + +#define crypto_sign_edwards25519sha512batch_ref10_SECRETKEYBYTES 64 +#define crypto_sign_edwards25519sha512batch_ref10_PUBLICKEYBYTES 32 +#define crypto_sign_edwards25519sha512batch_ref10_BYTES 64 +#ifdef __cplusplus +#include +extern std::string crypto_sign_edwards25519sha512batch_ref10(const std::string &,const std::string &); +extern std::string crypto_sign_edwards25519sha512batch_ref10_open(const std::string &,const std::string &); +extern std::string crypto_sign_edwards25519sha512batch_ref10_keypair(std::string *); +extern "C" { +#endif +extern int crypto_sign_edwards25519sha512batch_ref10(unsigned char *,unsigned long long *,const unsigned char *,unsigned long long,const unsigned char *); +extern int crypto_sign_edwards25519sha512batch_ref10_open(unsigned char *,unsigned long long *,const unsigned char *,unsigned long long,const unsigned char *); +extern int crypto_sign_edwards25519sha512batch_ref10_keypair(unsigned char *,unsigned char *); +#ifdef __cplusplus +} +#endif + +#define crypto_sign_edwards25519sha512batch crypto_sign_edwards25519sha512batch_ref10 +#define crypto_sign_edwards25519sha512batch_open crypto_sign_edwards25519sha512batch_ref10_open +#define crypto_sign_edwards25519sha512batch_keypair crypto_sign_edwards25519sha512batch_ref10_keypair +#define crypto_sign_edwards25519sha512batch_BYTES crypto_sign_edwards25519sha512batch_ref10_BYTES +#define crypto_sign_edwards25519sha512batch_PUBLICKEYBYTES crypto_sign_edwards25519sha512batch_ref10_PUBLICKEYBYTES +#define crypto_sign_edwards25519sha512batch_SECRETKEYBYTES crypto_sign_edwards25519sha512batch_ref10_SECRETKEYBYTES +#define crypto_sign_edwards25519sha512batch_IMPLEMENTATION "crypto_sign/edwards25519sha512batch/ref10" +#ifndef crypto_sign_edwards25519sha512batch_ref10_VERSION +#define crypto_sign_edwards25519sha512batch_ref10_VERSION "-" +#endif +#define crypto_sign_edwards25519sha512batch_VERSION crypto_sign_edwards25519sha512batch_ref10_VERSION + +#endif diff --git a/native/ed25519/nacl_includes/crypto_uint32.h b/native/ed25519/nacl_includes/crypto_uint32.h new file mode 100644 index 0000000..21020d7 --- /dev/null +++ b/native/ed25519/nacl_includes/crypto_uint32.h @@ -0,0 +1,6 @@ +#ifndef crypto_uint32_h +#define crypto_uint32_h + +typedef unsigned int crypto_uint32; + +#endif diff --git a/native/ed25519/nacl_includes/crypto_uint64.h b/native/ed25519/nacl_includes/crypto_uint64.h new file mode 100644 index 0000000..5aa0070 --- /dev/null +++ b/native/ed25519/nacl_includes/crypto_uint64.h @@ -0,0 +1,6 @@ +#ifndef crypto_uint64_h +#define crypto_uint64_h + +typedef unsigned long long crypto_uint64; + +#endif diff --git a/native/ed25519/nacl_includes/crypto_verify_32.h b/native/ed25519/nacl_includes/crypto_verify_32.h new file mode 100644 index 0000000..978d845 --- /dev/null +++ b/native/ed25519/nacl_includes/crypto_verify_32.h @@ -0,0 +1,22 @@ +#ifndef crypto_verify_32_H +#define crypto_verify_32_H + +#define crypto_verify_32_ref_BYTES 32 +#ifdef __cplusplus +#include +extern "C" { +#endif +extern int crypto_verify_32_ref(const unsigned char *,const unsigned char *); +#ifdef __cplusplus +} +#endif + +#define crypto_verify_32 crypto_verify_32_ref +#define crypto_verify_32_BYTES crypto_verify_32_ref_BYTES +#define crypto_verify_32_IMPLEMENTATION "crypto_verify/32/ref" +#ifndef crypto_verify_32_ref_VERSION +#define crypto_verify_32_ref_VERSION "-" +#endif +#define crypto_verify_32_VERSION crypto_verify_32_ref_VERSION + +#endif diff --git a/native/ed25519/open.c b/native/ed25519/open.c new file mode 100644 index 0000000..1ec4cd2 --- /dev/null +++ b/native/ed25519/open.c @@ -0,0 +1,48 @@ +#include +#include "crypto_sign.h" +#include "crypto_hash_sha512.h" +#include "crypto_verify_32.h" +#include "ge.h" +#include "sc.h" + +int crypto_sign_open( + unsigned char *m,unsigned long long *mlen, + const unsigned char *sm,unsigned long long smlen, + const unsigned char *pk +) +{ + unsigned char pkcopy[32]; + unsigned char rcopy[32]; + unsigned char scopy[32]; + unsigned char h[64]; + unsigned char rcheck[32]; + ge_p3 A; + ge_p2 R; + + if (smlen < 64) goto badsig; + if (sm[63] & 224) goto badsig; + if (ge_frombytes_negate_vartime(&A,pk) != 0) goto badsig; + + memmove(pkcopy,pk,32); + memmove(rcopy,sm,32); + memmove(scopy,sm + 32,32); + + memmove(m,sm,smlen); + memmove(m + 32,pkcopy,32); + crypto_hash_sha512(h,m,smlen); + sc_reduce(h); + + ge_double_scalarmult_vartime(&R,h,&A,scopy); + ge_tobytes(rcheck,&R); + if (crypto_verify_32(rcheck,rcopy) == 0) { + memmove(m,m + 64,smlen - 64); + memset(m + smlen - 64,0,64); + *mlen = smlen - 64; + return 0; + } + +badsig: + *mlen = -1; + memset(m,0,smlen); + return -1; +} diff --git a/native/ed25519/pow22523.h b/native/ed25519/pow22523.h new file mode 100644 index 0000000..60ffe0d --- /dev/null +++ b/native/ed25519/pow22523.h @@ -0,0 +1,160 @@ + +/* qhasm: fe z1 */ + +/* qhasm: fe z2 */ + +/* qhasm: fe z8 */ + +/* qhasm: fe z9 */ + +/* qhasm: fe z11 */ + +/* qhasm: fe z22 */ + +/* qhasm: fe z_5_0 */ + +/* qhasm: fe z_10_5 */ + +/* qhasm: fe z_10_0 */ + +/* qhasm: fe z_20_10 */ + +/* qhasm: fe z_20_0 */ + +/* qhasm: fe z_40_20 */ + +/* qhasm: fe z_40_0 */ + +/* qhasm: fe z_50_10 */ + +/* qhasm: fe z_50_0 */ + +/* qhasm: fe z_100_50 */ + +/* qhasm: fe z_100_0 */ + +/* qhasm: fe z_200_100 */ + +/* qhasm: fe z_200_0 */ + +/* qhasm: fe z_250_50 */ + +/* qhasm: fe z_250_0 */ + +/* qhasm: fe z_252_2 */ + +/* qhasm: fe z_252_3 */ + +/* qhasm: enter pow22523 */ + +/* qhasm: z2 = z1^2^1 */ +/* asm 1: fe_sq(>z2=fe#1,z2=fe#1,>z2=fe#1); */ +/* asm 2: fe_sq(>z2=t0,z2=t0,>z2=t0); */ +fe_sq(t0,z); for (i = 1;i < 1;++i) fe_sq(t0,t0); + +/* qhasm: z8 = z2^2^2 */ +/* asm 1: fe_sq(>z8=fe#2,z8=fe#2,>z8=fe#2); */ +/* asm 2: fe_sq(>z8=t1,z8=t1,>z8=t1); */ +fe_sq(t1,t0); for (i = 1;i < 2;++i) fe_sq(t1,t1); + +/* qhasm: z9 = z1*z8 */ +/* asm 1: fe_mul(>z9=fe#2,z9=t1,z11=fe#1,z11=t0,z22=fe#1,z22=fe#1,>z22=fe#1); */ +/* asm 2: fe_sq(>z22=t0,z22=t0,>z22=t0); */ +fe_sq(t0,t0); for (i = 1;i < 1;++i) fe_sq(t0,t0); + +/* qhasm: z_5_0 = z9*z22 */ +/* asm 1: fe_mul(>z_5_0=fe#1,z_5_0=t0,z_10_5=fe#2,z_10_5=fe#2,>z_10_5=fe#2); */ +/* asm 2: fe_sq(>z_10_5=t1,z_10_5=t1,>z_10_5=t1); */ +fe_sq(t1,t0); for (i = 1;i < 5;++i) fe_sq(t1,t1); + +/* qhasm: z_10_0 = z_10_5*z_5_0 */ +/* asm 1: fe_mul(>z_10_0=fe#1,z_10_0=t0,z_20_10=fe#2,z_20_10=fe#2,>z_20_10=fe#2); */ +/* asm 2: fe_sq(>z_20_10=t1,z_20_10=t1,>z_20_10=t1); */ +fe_sq(t1,t0); for (i = 1;i < 10;++i) fe_sq(t1,t1); + +/* qhasm: z_20_0 = z_20_10*z_10_0 */ +/* asm 1: fe_mul(>z_20_0=fe#2,z_20_0=t1,z_40_20=fe#3,z_40_20=fe#3,>z_40_20=fe#3); */ +/* asm 2: fe_sq(>z_40_20=t2,z_40_20=t2,>z_40_20=t2); */ +fe_sq(t2,t1); for (i = 1;i < 20;++i) fe_sq(t2,t2); + +/* qhasm: z_40_0 = z_40_20*z_20_0 */ +/* asm 1: fe_mul(>z_40_0=fe#2,z_40_0=t1,z_50_10=fe#2,z_50_10=fe#2,>z_50_10=fe#2); */ +/* asm 2: fe_sq(>z_50_10=t1,z_50_10=t1,>z_50_10=t1); */ +fe_sq(t1,t1); for (i = 1;i < 10;++i) fe_sq(t1,t1); + +/* qhasm: z_50_0 = z_50_10*z_10_0 */ +/* asm 1: fe_mul(>z_50_0=fe#1,z_50_0=t0,z_100_50=fe#2,z_100_50=fe#2,>z_100_50=fe#2); */ +/* asm 2: fe_sq(>z_100_50=t1,z_100_50=t1,>z_100_50=t1); */ +fe_sq(t1,t0); for (i = 1;i < 50;++i) fe_sq(t1,t1); + +/* qhasm: z_100_0 = z_100_50*z_50_0 */ +/* asm 1: fe_mul(>z_100_0=fe#2,z_100_0=t1,z_200_100=fe#3,z_200_100=fe#3,>z_200_100=fe#3); */ +/* asm 2: fe_sq(>z_200_100=t2,z_200_100=t2,>z_200_100=t2); */ +fe_sq(t2,t1); for (i = 1;i < 100;++i) fe_sq(t2,t2); + +/* qhasm: z_200_0 = z_200_100*z_100_0 */ +/* asm 1: fe_mul(>z_200_0=fe#2,z_200_0=t1,z_250_50=fe#2,z_250_50=fe#2,>z_250_50=fe#2); */ +/* asm 2: fe_sq(>z_250_50=t1,z_250_50=t1,>z_250_50=t1); */ +fe_sq(t1,t1); for (i = 1;i < 50;++i) fe_sq(t1,t1); + +/* qhasm: z_250_0 = z_250_50*z_50_0 */ +/* asm 1: fe_mul(>z_250_0=fe#1,z_250_0=t0,z_252_2=fe#1,z_252_2=fe#1,>z_252_2=fe#1); */ +/* asm 2: fe_sq(>z_252_2=t0,z_252_2=t0,>z_252_2=t0); */ +fe_sq(t0,t0); for (i = 1;i < 2;++i) fe_sq(t0,t0); + +/* qhasm: z_252_3 = z_252_2*z1 */ +/* asm 1: fe_mul(>z_252_3=fe#12,z_252_3=out,z2=fe#1,z2=fe#1,>z2=fe#1); */ +/* asm 2: fe_sq(>z2=t0,z2=t0,>z2=t0); */ +fe_sq(t0,z); for (i = 1;i < 1;++i) fe_sq(t0,t0); + +/* qhasm: z8 = z2^2^2 */ +/* asm 1: fe_sq(>z8=fe#2,z8=fe#2,>z8=fe#2); */ +/* asm 2: fe_sq(>z8=t1,z8=t1,>z8=t1); */ +fe_sq(t1,t0); for (i = 1;i < 2;++i) fe_sq(t1,t1); + +/* qhasm: z9 = z1*z8 */ +/* asm 1: fe_mul(>z9=fe#2,z9=t1,z11=fe#1,z11=t0,z22=fe#3,z22=fe#3,>z22=fe#3); */ +/* asm 2: fe_sq(>z22=t2,z22=t2,>z22=t2); */ +fe_sq(t2,t0); for (i = 1;i < 1;++i) fe_sq(t2,t2); + +/* qhasm: z_5_0 = z9*z22 */ +/* asm 1: fe_mul(>z_5_0=fe#2,z_5_0=t1,z_10_5=fe#3,z_10_5=fe#3,>z_10_5=fe#3); */ +/* asm 2: fe_sq(>z_10_5=t2,z_10_5=t2,>z_10_5=t2); */ +fe_sq(t2,t1); for (i = 1;i < 5;++i) fe_sq(t2,t2); + +/* qhasm: z_10_0 = z_10_5*z_5_0 */ +/* asm 1: fe_mul(>z_10_0=fe#2,z_10_0=t1,z_20_10=fe#3,z_20_10=fe#3,>z_20_10=fe#3); */ +/* asm 2: fe_sq(>z_20_10=t2,z_20_10=t2,>z_20_10=t2); */ +fe_sq(t2,t1); for (i = 1;i < 10;++i) fe_sq(t2,t2); + +/* qhasm: z_20_0 = z_20_10*z_10_0 */ +/* asm 1: fe_mul(>z_20_0=fe#3,z_20_0=t2,z_40_20=fe#4,z_40_20=fe#4,>z_40_20=fe#4); */ +/* asm 2: fe_sq(>z_40_20=t3,z_40_20=t3,>z_40_20=t3); */ +fe_sq(t3,t2); for (i = 1;i < 20;++i) fe_sq(t3,t3); + +/* qhasm: z_40_0 = z_40_20*z_20_0 */ +/* asm 1: fe_mul(>z_40_0=fe#3,z_40_0=t2,z_50_10=fe#3,z_50_10=fe#3,>z_50_10=fe#3); */ +/* asm 2: fe_sq(>z_50_10=t2,z_50_10=t2,>z_50_10=t2); */ +fe_sq(t2,t2); for (i = 1;i < 10;++i) fe_sq(t2,t2); + +/* qhasm: z_50_0 = z_50_10*z_10_0 */ +/* asm 1: fe_mul(>z_50_0=fe#2,z_50_0=t1,z_100_50=fe#3,z_100_50=fe#3,>z_100_50=fe#3); */ +/* asm 2: fe_sq(>z_100_50=t2,z_100_50=t2,>z_100_50=t2); */ +fe_sq(t2,t1); for (i = 1;i < 50;++i) fe_sq(t2,t2); + +/* qhasm: z_100_0 = z_100_50*z_50_0 */ +/* asm 1: fe_mul(>z_100_0=fe#3,z_100_0=t2,z_200_100=fe#4,z_200_100=fe#4,>z_200_100=fe#4); */ +/* asm 2: fe_sq(>z_200_100=t3,z_200_100=t3,>z_200_100=t3); */ +fe_sq(t3,t2); for (i = 1;i < 100;++i) fe_sq(t3,t3); + +/* qhasm: z_200_0 = z_200_100*z_100_0 */ +/* asm 1: fe_mul(>z_200_0=fe#3,z_200_0=t2,z_250_50=fe#3,z_250_50=fe#3,>z_250_50=fe#3); */ +/* asm 2: fe_sq(>z_250_50=t2,z_250_50=t2,>z_250_50=t2); */ +fe_sq(t2,t2); for (i = 1;i < 50;++i) fe_sq(t2,t2); + +/* qhasm: z_250_0 = z_250_50*z_50_0 */ +/* asm 1: fe_mul(>z_250_0=fe#2,z_250_0=t1,z_255_5=fe#2,z_255_5=fe#2,>z_255_5=fe#2); */ +/* asm 2: fe_sq(>z_255_5=t1,z_255_5=t1,>z_255_5=t1); */ +fe_sq(t1,t1); for (i = 1;i < 5;++i) fe_sq(t1,t1); + +/* qhasm: z_255_21 = z_255_5*z11 */ +/* asm 1: fe_mul(>z_255_21=fe#12,z_255_21=out,> 5); + crypto_int64 a2 = 2097151 & (load_3(a + 5) >> 2); + crypto_int64 a3 = 2097151 & (load_4(a + 7) >> 7); + crypto_int64 a4 = 2097151 & (load_4(a + 10) >> 4); + crypto_int64 a5 = 2097151 & (load_3(a + 13) >> 1); + crypto_int64 a6 = 2097151 & (load_4(a + 15) >> 6); + crypto_int64 a7 = 2097151 & (load_3(a + 18) >> 3); + crypto_int64 a8 = 2097151 & load_3(a + 21); + crypto_int64 a9 = 2097151 & (load_4(a + 23) >> 5); + crypto_int64 a10 = 2097151 & (load_3(a + 26) >> 2); + crypto_int64 a11 = (load_4(a + 28) >> 7); + crypto_int64 b0 = 2097151 & load_3(b); + crypto_int64 b1 = 2097151 & (load_4(b + 2) >> 5); + crypto_int64 b2 = 2097151 & (load_3(b + 5) >> 2); + crypto_int64 b3 = 2097151 & (load_4(b + 7) >> 7); + crypto_int64 b4 = 2097151 & (load_4(b + 10) >> 4); + crypto_int64 b5 = 2097151 & (load_3(b + 13) >> 1); + crypto_int64 b6 = 2097151 & (load_4(b + 15) >> 6); + crypto_int64 b7 = 2097151 & (load_3(b + 18) >> 3); + crypto_int64 b8 = 2097151 & load_3(b + 21); + crypto_int64 b9 = 2097151 & (load_4(b + 23) >> 5); + crypto_int64 b10 = 2097151 & (load_3(b + 26) >> 2); + crypto_int64 b11 = (load_4(b + 28) >> 7); + crypto_int64 c0 = 2097151 & load_3(c); + crypto_int64 c1 = 2097151 & (load_4(c + 2) >> 5); + crypto_int64 c2 = 2097151 & (load_3(c + 5) >> 2); + crypto_int64 c3 = 2097151 & (load_4(c + 7) >> 7); + crypto_int64 c4 = 2097151 & (load_4(c + 10) >> 4); + crypto_int64 c5 = 2097151 & (load_3(c + 13) >> 1); + crypto_int64 c6 = 2097151 & (load_4(c + 15) >> 6); + crypto_int64 c7 = 2097151 & (load_3(c + 18) >> 3); + crypto_int64 c8 = 2097151 & load_3(c + 21); + crypto_int64 c9 = 2097151 & (load_4(c + 23) >> 5); + crypto_int64 c10 = 2097151 & (load_3(c + 26) >> 2); + crypto_int64 c11 = (load_4(c + 28) >> 7); + crypto_int64 s0; + crypto_int64 s1; + crypto_int64 s2; + crypto_int64 s3; + crypto_int64 s4; + crypto_int64 s5; + crypto_int64 s6; + crypto_int64 s7; + crypto_int64 s8; + crypto_int64 s9; + crypto_int64 s10; + crypto_int64 s11; + crypto_int64 s12; + crypto_int64 s13; + crypto_int64 s14; + crypto_int64 s15; + crypto_int64 s16; + crypto_int64 s17; + crypto_int64 s18; + crypto_int64 s19; + crypto_int64 s20; + crypto_int64 s21; + crypto_int64 s22; + crypto_int64 s23; + crypto_int64 carry0; + crypto_int64 carry1; + crypto_int64 carry2; + crypto_int64 carry3; + crypto_int64 carry4; + crypto_int64 carry5; + crypto_int64 carry6; + crypto_int64 carry7; + crypto_int64 carry8; + crypto_int64 carry9; + crypto_int64 carry10; + crypto_int64 carry11; + crypto_int64 carry12; + crypto_int64 carry13; + crypto_int64 carry14; + crypto_int64 carry15; + crypto_int64 carry16; + crypto_int64 carry17; + crypto_int64 carry18; + crypto_int64 carry19; + crypto_int64 carry20; + crypto_int64 carry21; + crypto_int64 carry22; + + s0 = c0 + a0*b0; + s1 = c1 + a0*b1 + a1*b0; + s2 = c2 + a0*b2 + a1*b1 + a2*b0; + s3 = c3 + a0*b3 + a1*b2 + a2*b1 + a3*b0; + s4 = c4 + a0*b4 + a1*b3 + a2*b2 + a3*b1 + a4*b0; + s5 = c5 + a0*b5 + a1*b4 + a2*b3 + a3*b2 + a4*b1 + a5*b0; + s6 = c6 + a0*b6 + a1*b5 + a2*b4 + a3*b3 + a4*b2 + a5*b1 + a6*b0; + s7 = c7 + a0*b7 + a1*b6 + a2*b5 + a3*b4 + a4*b3 + a5*b2 + a6*b1 + a7*b0; + s8 = c8 + a0*b8 + a1*b7 + a2*b6 + a3*b5 + a4*b4 + a5*b3 + a6*b2 + a7*b1 + a8*b0; + s9 = c9 + a0*b9 + a1*b8 + a2*b7 + a3*b6 + a4*b5 + a5*b4 + a6*b3 + a7*b2 + a8*b1 + a9*b0; + s10 = c10 + a0*b10 + a1*b9 + a2*b8 + a3*b7 + a4*b6 + a5*b5 + a6*b4 + a7*b3 + a8*b2 + a9*b1 + a10*b0; + s11 = c11 + a0*b11 + a1*b10 + a2*b9 + a3*b8 + a4*b7 + a5*b6 + a6*b5 + a7*b4 + a8*b3 + a9*b2 + a10*b1 + a11*b0; + s12 = a1*b11 + a2*b10 + a3*b9 + a4*b8 + a5*b7 + a6*b6 + a7*b5 + a8*b4 + a9*b3 + a10*b2 + a11*b1; + s13 = a2*b11 + a3*b10 + a4*b9 + a5*b8 + a6*b7 + a7*b6 + a8*b5 + a9*b4 + a10*b3 + a11*b2; + s14 = a3*b11 + a4*b10 + a5*b9 + a6*b8 + a7*b7 + a8*b6 + a9*b5 + a10*b4 + a11*b3; + s15 = a4*b11 + a5*b10 + a6*b9 + a7*b8 + a8*b7 + a9*b6 + a10*b5 + a11*b4; + s16 = a5*b11 + a6*b10 + a7*b9 + a8*b8 + a9*b7 + a10*b6 + a11*b5; + s17 = a6*b11 + a7*b10 + a8*b9 + a9*b8 + a10*b7 + a11*b6; + s18 = a7*b11 + a8*b10 + a9*b9 + a10*b8 + a11*b7; + s19 = a8*b11 + a9*b10 + a10*b9 + a11*b8; + s20 = a9*b11 + a10*b10 + a11*b9; + s21 = a10*b11 + a11*b10; + s22 = a11*b11; + s23 = 0; + + carry0 = (s0 + (1<<20)) >> 21; s1 += carry0; s0 -= carry0 << 21; + carry2 = (s2 + (1<<20)) >> 21; s3 += carry2; s2 -= carry2 << 21; + carry4 = (s4 + (1<<20)) >> 21; s5 += carry4; s4 -= carry4 << 21; + carry6 = (s6 + (1<<20)) >> 21; s7 += carry6; s6 -= carry6 << 21; + carry8 = (s8 + (1<<20)) >> 21; s9 += carry8; s8 -= carry8 << 21; + carry10 = (s10 + (1<<20)) >> 21; s11 += carry10; s10 -= carry10 << 21; + carry12 = (s12 + (1<<20)) >> 21; s13 += carry12; s12 -= carry12 << 21; + carry14 = (s14 + (1<<20)) >> 21; s15 += carry14; s14 -= carry14 << 21; + carry16 = (s16 + (1<<20)) >> 21; s17 += carry16; s16 -= carry16 << 21; + carry18 = (s18 + (1<<20)) >> 21; s19 += carry18; s18 -= carry18 << 21; + carry20 = (s20 + (1<<20)) >> 21; s21 += carry20; s20 -= carry20 << 21; + carry22 = (s22 + (1<<20)) >> 21; s23 += carry22; s22 -= carry22 << 21; + + carry1 = (s1 + (1<<20)) >> 21; s2 += carry1; s1 -= carry1 << 21; + carry3 = (s3 + (1<<20)) >> 21; s4 += carry3; s3 -= carry3 << 21; + carry5 = (s5 + (1<<20)) >> 21; s6 += carry5; s5 -= carry5 << 21; + carry7 = (s7 + (1<<20)) >> 21; s8 += carry7; s7 -= carry7 << 21; + carry9 = (s9 + (1<<20)) >> 21; s10 += carry9; s9 -= carry9 << 21; + carry11 = (s11 + (1<<20)) >> 21; s12 += carry11; s11 -= carry11 << 21; + carry13 = (s13 + (1<<20)) >> 21; s14 += carry13; s13 -= carry13 << 21; + carry15 = (s15 + (1<<20)) >> 21; s16 += carry15; s15 -= carry15 << 21; + carry17 = (s17 + (1<<20)) >> 21; s18 += carry17; s17 -= carry17 << 21; + carry19 = (s19 + (1<<20)) >> 21; s20 += carry19; s19 -= carry19 << 21; + carry21 = (s21 + (1<<20)) >> 21; s22 += carry21; s21 -= carry21 << 21; + + s11 += s23 * 666643; + s12 += s23 * 470296; + s13 += s23 * 654183; + s14 -= s23 * 997805; + s15 += s23 * 136657; + s16 -= s23 * 683901; + s23 = 0; + + s10 += s22 * 666643; + s11 += s22 * 470296; + s12 += s22 * 654183; + s13 -= s22 * 997805; + s14 += s22 * 136657; + s15 -= s22 * 683901; + s22 = 0; + + s9 += s21 * 666643; + s10 += s21 * 470296; + s11 += s21 * 654183; + s12 -= s21 * 997805; + s13 += s21 * 136657; + s14 -= s21 * 683901; + s21 = 0; + + s8 += s20 * 666643; + s9 += s20 * 470296; + s10 += s20 * 654183; + s11 -= s20 * 997805; + s12 += s20 * 136657; + s13 -= s20 * 683901; + s20 = 0; + + s7 += s19 * 666643; + s8 += s19 * 470296; + s9 += s19 * 654183; + s10 -= s19 * 997805; + s11 += s19 * 136657; + s12 -= s19 * 683901; + s19 = 0; + + s6 += s18 * 666643; + s7 += s18 * 470296; + s8 += s18 * 654183; + s9 -= s18 * 997805; + s10 += s18 * 136657; + s11 -= s18 * 683901; + s18 = 0; + + carry6 = (s6 + (1<<20)) >> 21; s7 += carry6; s6 -= carry6 << 21; + carry8 = (s8 + (1<<20)) >> 21; s9 += carry8; s8 -= carry8 << 21; + carry10 = (s10 + (1<<20)) >> 21; s11 += carry10; s10 -= carry10 << 21; + carry12 = (s12 + (1<<20)) >> 21; s13 += carry12; s12 -= carry12 << 21; + carry14 = (s14 + (1<<20)) >> 21; s15 += carry14; s14 -= carry14 << 21; + carry16 = (s16 + (1<<20)) >> 21; s17 += carry16; s16 -= carry16 << 21; + + carry7 = (s7 + (1<<20)) >> 21; s8 += carry7; s7 -= carry7 << 21; + carry9 = (s9 + (1<<20)) >> 21; s10 += carry9; s9 -= carry9 << 21; + carry11 = (s11 + (1<<20)) >> 21; s12 += carry11; s11 -= carry11 << 21; + carry13 = (s13 + (1<<20)) >> 21; s14 += carry13; s13 -= carry13 << 21; + carry15 = (s15 + (1<<20)) >> 21; s16 += carry15; s15 -= carry15 << 21; + + s5 += s17 * 666643; + s6 += s17 * 470296; + s7 += s17 * 654183; + s8 -= s17 * 997805; + s9 += s17 * 136657; + s10 -= s17 * 683901; + s17 = 0; + + s4 += s16 * 666643; + s5 += s16 * 470296; + s6 += s16 * 654183; + s7 -= s16 * 997805; + s8 += s16 * 136657; + s9 -= s16 * 683901; + s16 = 0; + + s3 += s15 * 666643; + s4 += s15 * 470296; + s5 += s15 * 654183; + s6 -= s15 * 997805; + s7 += s15 * 136657; + s8 -= s15 * 683901; + s15 = 0; + + s2 += s14 * 666643; + s3 += s14 * 470296; + s4 += s14 * 654183; + s5 -= s14 * 997805; + s6 += s14 * 136657; + s7 -= s14 * 683901; + s14 = 0; + + s1 += s13 * 666643; + s2 += s13 * 470296; + s3 += s13 * 654183; + s4 -= s13 * 997805; + s5 += s13 * 136657; + s6 -= s13 * 683901; + s13 = 0; + + s0 += s12 * 666643; + s1 += s12 * 470296; + s2 += s12 * 654183; + s3 -= s12 * 997805; + s4 += s12 * 136657; + s5 -= s12 * 683901; + s12 = 0; + + carry0 = (s0 + (1<<20)) >> 21; s1 += carry0; s0 -= carry0 << 21; + carry2 = (s2 + (1<<20)) >> 21; s3 += carry2; s2 -= carry2 << 21; + carry4 = (s4 + (1<<20)) >> 21; s5 += carry4; s4 -= carry4 << 21; + carry6 = (s6 + (1<<20)) >> 21; s7 += carry6; s6 -= carry6 << 21; + carry8 = (s8 + (1<<20)) >> 21; s9 += carry8; s8 -= carry8 << 21; + carry10 = (s10 + (1<<20)) >> 21; s11 += carry10; s10 -= carry10 << 21; + + carry1 = (s1 + (1<<20)) >> 21; s2 += carry1; s1 -= carry1 << 21; + carry3 = (s3 + (1<<20)) >> 21; s4 += carry3; s3 -= carry3 << 21; + carry5 = (s5 + (1<<20)) >> 21; s6 += carry5; s5 -= carry5 << 21; + carry7 = (s7 + (1<<20)) >> 21; s8 += carry7; s7 -= carry7 << 21; + carry9 = (s9 + (1<<20)) >> 21; s10 += carry9; s9 -= carry9 << 21; + carry11 = (s11 + (1<<20)) >> 21; s12 += carry11; s11 -= carry11 << 21; + + s0 += s12 * 666643; + s1 += s12 * 470296; + s2 += s12 * 654183; + s3 -= s12 * 997805; + s4 += s12 * 136657; + s5 -= s12 * 683901; + s12 = 0; + + carry0 = s0 >> 21; s1 += carry0; s0 -= carry0 << 21; + carry1 = s1 >> 21; s2 += carry1; s1 -= carry1 << 21; + carry2 = s2 >> 21; s3 += carry2; s2 -= carry2 << 21; + carry3 = s3 >> 21; s4 += carry3; s3 -= carry3 << 21; + carry4 = s4 >> 21; s5 += carry4; s4 -= carry4 << 21; + carry5 = s5 >> 21; s6 += carry5; s5 -= carry5 << 21; + carry6 = s6 >> 21; s7 += carry6; s6 -= carry6 << 21; + carry7 = s7 >> 21; s8 += carry7; s7 -= carry7 << 21; + carry8 = s8 >> 21; s9 += carry8; s8 -= carry8 << 21; + carry9 = s9 >> 21; s10 += carry9; s9 -= carry9 << 21; + carry10 = s10 >> 21; s11 += carry10; s10 -= carry10 << 21; + carry11 = s11 >> 21; s12 += carry11; s11 -= carry11 << 21; + + s0 += s12 * 666643; + s1 += s12 * 470296; + s2 += s12 * 654183; + s3 -= s12 * 997805; + s4 += s12 * 136657; + s5 -= s12 * 683901; + s12 = 0; + + carry0 = s0 >> 21; s1 += carry0; s0 -= carry0 << 21; + carry1 = s1 >> 21; s2 += carry1; s1 -= carry1 << 21; + carry2 = s2 >> 21; s3 += carry2; s2 -= carry2 << 21; + carry3 = s3 >> 21; s4 += carry3; s3 -= carry3 << 21; + carry4 = s4 >> 21; s5 += carry4; s4 -= carry4 << 21; + carry5 = s5 >> 21; s6 += carry5; s5 -= carry5 << 21; + carry6 = s6 >> 21; s7 += carry6; s6 -= carry6 << 21; + carry7 = s7 >> 21; s8 += carry7; s7 -= carry7 << 21; + carry8 = s8 >> 21; s9 += carry8; s8 -= carry8 << 21; + carry9 = s9 >> 21; s10 += carry9; s9 -= carry9 << 21; + carry10 = s10 >> 21; s11 += carry10; s10 -= carry10 << 21; + + s[0] = s0 >> 0; + s[1] = s0 >> 8; + s[2] = (s0 >> 16) | (s1 << 5); + s[3] = s1 >> 3; + s[4] = s1 >> 11; + s[5] = (s1 >> 19) | (s2 << 2); + s[6] = s2 >> 6; + s[7] = (s2 >> 14) | (s3 << 7); + s[8] = s3 >> 1; + s[9] = s3 >> 9; + s[10] = (s3 >> 17) | (s4 << 4); + s[11] = s4 >> 4; + s[12] = s4 >> 12; + s[13] = (s4 >> 20) | (s5 << 1); + s[14] = s5 >> 7; + s[15] = (s5 >> 15) | (s6 << 6); + s[16] = s6 >> 2; + s[17] = s6 >> 10; + s[18] = (s6 >> 18) | (s7 << 3); + s[19] = s7 >> 5; + s[20] = s7 >> 13; + s[21] = s8 >> 0; + s[22] = s8 >> 8; + s[23] = (s8 >> 16) | (s9 << 5); + s[24] = s9 >> 3; + s[25] = s9 >> 11; + s[26] = (s9 >> 19) | (s10 << 2); + s[27] = s10 >> 6; + s[28] = (s10 >> 14) | (s11 << 7); + s[29] = s11 >> 1; + s[30] = s11 >> 9; + s[31] = s11 >> 17; +} diff --git a/native/ed25519/sc_reduce.c b/native/ed25519/sc_reduce.c new file mode 100644 index 0000000..d01f5a5 --- /dev/null +++ b/native/ed25519/sc_reduce.c @@ -0,0 +1,275 @@ +#include "sc.h" +#include "crypto_int64.h" +#include "crypto_uint32.h" +#include "crypto_uint64.h" + +static crypto_uint64 load_3(const unsigned char *in) +{ + crypto_uint64 result; + result = (crypto_uint64) in[0]; + result |= ((crypto_uint64) in[1]) << 8; + result |= ((crypto_uint64) in[2]) << 16; + return result; +} + +static crypto_uint64 load_4(const unsigned char *in) +{ + crypto_uint64 result; + result = (crypto_uint64) in[0]; + result |= ((crypto_uint64) in[1]) << 8; + result |= ((crypto_uint64) in[2]) << 16; + result |= ((crypto_uint64) in[3]) << 24; + return result; +} + +/* +Input: + s[0]+256*s[1]+...+256^63*s[63] = s + +Output: + s[0]+256*s[1]+...+256^31*s[31] = s mod l + where l = 2^252 + 27742317777372353535851937790883648493. + Overwrites s in place. +*/ + +void sc_reduce(unsigned char *s) +{ + crypto_int64 s0 = 2097151 & load_3(s); + crypto_int64 s1 = 2097151 & (load_4(s + 2) >> 5); + crypto_int64 s2 = 2097151 & (load_3(s + 5) >> 2); + crypto_int64 s3 = 2097151 & (load_4(s + 7) >> 7); + crypto_int64 s4 = 2097151 & (load_4(s + 10) >> 4); + crypto_int64 s5 = 2097151 & (load_3(s + 13) >> 1); + crypto_int64 s6 = 2097151 & (load_4(s + 15) >> 6); + crypto_int64 s7 = 2097151 & (load_3(s + 18) >> 3); + crypto_int64 s8 = 2097151 & load_3(s + 21); + crypto_int64 s9 = 2097151 & (load_4(s + 23) >> 5); + crypto_int64 s10 = 2097151 & (load_3(s + 26) >> 2); + crypto_int64 s11 = 2097151 & (load_4(s + 28) >> 7); + crypto_int64 s12 = 2097151 & (load_4(s + 31) >> 4); + crypto_int64 s13 = 2097151 & (load_3(s + 34) >> 1); + crypto_int64 s14 = 2097151 & (load_4(s + 36) >> 6); + crypto_int64 s15 = 2097151 & (load_3(s + 39) >> 3); + crypto_int64 s16 = 2097151 & load_3(s + 42); + crypto_int64 s17 = 2097151 & (load_4(s + 44) >> 5); + crypto_int64 s18 = 2097151 & (load_3(s + 47) >> 2); + crypto_int64 s19 = 2097151 & (load_4(s + 49) >> 7); + crypto_int64 s20 = 2097151 & (load_4(s + 52) >> 4); + crypto_int64 s21 = 2097151 & (load_3(s + 55) >> 1); + crypto_int64 s22 = 2097151 & (load_4(s + 57) >> 6); + crypto_int64 s23 = (load_4(s + 60) >> 3); + crypto_int64 carry0; + crypto_int64 carry1; + crypto_int64 carry2; + crypto_int64 carry3; + crypto_int64 carry4; + crypto_int64 carry5; + crypto_int64 carry6; + crypto_int64 carry7; + crypto_int64 carry8; + crypto_int64 carry9; + crypto_int64 carry10; + crypto_int64 carry11; + crypto_int64 carry12; + crypto_int64 carry13; + crypto_int64 carry14; + crypto_int64 carry15; + crypto_int64 carry16; + + s11 += s23 * 666643; + s12 += s23 * 470296; + s13 += s23 * 654183; + s14 -= s23 * 997805; + s15 += s23 * 136657; + s16 -= s23 * 683901; + s23 = 0; + + s10 += s22 * 666643; + s11 += s22 * 470296; + s12 += s22 * 654183; + s13 -= s22 * 997805; + s14 += s22 * 136657; + s15 -= s22 * 683901; + s22 = 0; + + s9 += s21 * 666643; + s10 += s21 * 470296; + s11 += s21 * 654183; + s12 -= s21 * 997805; + s13 += s21 * 136657; + s14 -= s21 * 683901; + s21 = 0; + + s8 += s20 * 666643; + s9 += s20 * 470296; + s10 += s20 * 654183; + s11 -= s20 * 997805; + s12 += s20 * 136657; + s13 -= s20 * 683901; + s20 = 0; + + s7 += s19 * 666643; + s8 += s19 * 470296; + s9 += s19 * 654183; + s10 -= s19 * 997805; + s11 += s19 * 136657; + s12 -= s19 * 683901; + s19 = 0; + + s6 += s18 * 666643; + s7 += s18 * 470296; + s8 += s18 * 654183; + s9 -= s18 * 997805; + s10 += s18 * 136657; + s11 -= s18 * 683901; + s18 = 0; + + carry6 = (s6 + (1<<20)) >> 21; s7 += carry6; s6 -= carry6 << 21; + carry8 = (s8 + (1<<20)) >> 21; s9 += carry8; s8 -= carry8 << 21; + carry10 = (s10 + (1<<20)) >> 21; s11 += carry10; s10 -= carry10 << 21; + carry12 = (s12 + (1<<20)) >> 21; s13 += carry12; s12 -= carry12 << 21; + carry14 = (s14 + (1<<20)) >> 21; s15 += carry14; s14 -= carry14 << 21; + carry16 = (s16 + (1<<20)) >> 21; s17 += carry16; s16 -= carry16 << 21; + + carry7 = (s7 + (1<<20)) >> 21; s8 += carry7; s7 -= carry7 << 21; + carry9 = (s9 + (1<<20)) >> 21; s10 += carry9; s9 -= carry9 << 21; + carry11 = (s11 + (1<<20)) >> 21; s12 += carry11; s11 -= carry11 << 21; + carry13 = (s13 + (1<<20)) >> 21; s14 += carry13; s13 -= carry13 << 21; + carry15 = (s15 + (1<<20)) >> 21; s16 += carry15; s15 -= carry15 << 21; + + s5 += s17 * 666643; + s6 += s17 * 470296; + s7 += s17 * 654183; + s8 -= s17 * 997805; + s9 += s17 * 136657; + s10 -= s17 * 683901; + s17 = 0; + + s4 += s16 * 666643; + s5 += s16 * 470296; + s6 += s16 * 654183; + s7 -= s16 * 997805; + s8 += s16 * 136657; + s9 -= s16 * 683901; + s16 = 0; + + s3 += s15 * 666643; + s4 += s15 * 470296; + s5 += s15 * 654183; + s6 -= s15 * 997805; + s7 += s15 * 136657; + s8 -= s15 * 683901; + s15 = 0; + + s2 += s14 * 666643; + s3 += s14 * 470296; + s4 += s14 * 654183; + s5 -= s14 * 997805; + s6 += s14 * 136657; + s7 -= s14 * 683901; + s14 = 0; + + s1 += s13 * 666643; + s2 += s13 * 470296; + s3 += s13 * 654183; + s4 -= s13 * 997805; + s5 += s13 * 136657; + s6 -= s13 * 683901; + s13 = 0; + + s0 += s12 * 666643; + s1 += s12 * 470296; + s2 += s12 * 654183; + s3 -= s12 * 997805; + s4 += s12 * 136657; + s5 -= s12 * 683901; + s12 = 0; + + carry0 = (s0 + (1<<20)) >> 21; s1 += carry0; s0 -= carry0 << 21; + carry2 = (s2 + (1<<20)) >> 21; s3 += carry2; s2 -= carry2 << 21; + carry4 = (s4 + (1<<20)) >> 21; s5 += carry4; s4 -= carry4 << 21; + carry6 = (s6 + (1<<20)) >> 21; s7 += carry6; s6 -= carry6 << 21; + carry8 = (s8 + (1<<20)) >> 21; s9 += carry8; s8 -= carry8 << 21; + carry10 = (s10 + (1<<20)) >> 21; s11 += carry10; s10 -= carry10 << 21; + + carry1 = (s1 + (1<<20)) >> 21; s2 += carry1; s1 -= carry1 << 21; + carry3 = (s3 + (1<<20)) >> 21; s4 += carry3; s3 -= carry3 << 21; + carry5 = (s5 + (1<<20)) >> 21; s6 += carry5; s5 -= carry5 << 21; + carry7 = (s7 + (1<<20)) >> 21; s8 += carry7; s7 -= carry7 << 21; + carry9 = (s9 + (1<<20)) >> 21; s10 += carry9; s9 -= carry9 << 21; + carry11 = (s11 + (1<<20)) >> 21; s12 += carry11; s11 -= carry11 << 21; + + s0 += s12 * 666643; + s1 += s12 * 470296; + s2 += s12 * 654183; + s3 -= s12 * 997805; + s4 += s12 * 136657; + s5 -= s12 * 683901; + s12 = 0; + + carry0 = s0 >> 21; s1 += carry0; s0 -= carry0 << 21; + carry1 = s1 >> 21; s2 += carry1; s1 -= carry1 << 21; + carry2 = s2 >> 21; s3 += carry2; s2 -= carry2 << 21; + carry3 = s3 >> 21; s4 += carry3; s3 -= carry3 << 21; + carry4 = s4 >> 21; s5 += carry4; s4 -= carry4 << 21; + carry5 = s5 >> 21; s6 += carry5; s5 -= carry5 << 21; + carry6 = s6 >> 21; s7 += carry6; s6 -= carry6 << 21; + carry7 = s7 >> 21; s8 += carry7; s7 -= carry7 << 21; + carry8 = s8 >> 21; s9 += carry8; s8 -= carry8 << 21; + carry9 = s9 >> 21; s10 += carry9; s9 -= carry9 << 21; + carry10 = s10 >> 21; s11 += carry10; s10 -= carry10 << 21; + carry11 = s11 >> 21; s12 += carry11; s11 -= carry11 << 21; + + s0 += s12 * 666643; + s1 += s12 * 470296; + s2 += s12 * 654183; + s3 -= s12 * 997805; + s4 += s12 * 136657; + s5 -= s12 * 683901; + s12 = 0; + + carry0 = s0 >> 21; s1 += carry0; s0 -= carry0 << 21; + carry1 = s1 >> 21; s2 += carry1; s1 -= carry1 << 21; + carry2 = s2 >> 21; s3 += carry2; s2 -= carry2 << 21; + carry3 = s3 >> 21; s4 += carry3; s3 -= carry3 << 21; + carry4 = s4 >> 21; s5 += carry4; s4 -= carry4 << 21; + carry5 = s5 >> 21; s6 += carry5; s5 -= carry5 << 21; + carry6 = s6 >> 21; s7 += carry6; s6 -= carry6 << 21; + carry7 = s7 >> 21; s8 += carry7; s7 -= carry7 << 21; + carry8 = s8 >> 21; s9 += carry8; s8 -= carry8 << 21; + carry9 = s9 >> 21; s10 += carry9; s9 -= carry9 << 21; + carry10 = s10 >> 21; s11 += carry10; s10 -= carry10 << 21; + + s[0] = s0 >> 0; + s[1] = s0 >> 8; + s[2] = (s0 >> 16) | (s1 << 5); + s[3] = s1 >> 3; + s[4] = s1 >> 11; + s[5] = (s1 >> 19) | (s2 << 2); + s[6] = s2 >> 6; + s[7] = (s2 >> 14) | (s3 << 7); + s[8] = s3 >> 1; + s[9] = s3 >> 9; + s[10] = (s3 >> 17) | (s4 << 4); + s[11] = s4 >> 4; + s[12] = s4 >> 12; + s[13] = (s4 >> 20) | (s5 << 1); + s[14] = s5 >> 7; + s[15] = (s5 >> 15) | (s6 << 6); + s[16] = s6 >> 2; + s[17] = s6 >> 10; + s[18] = (s6 >> 18) | (s7 << 3); + s[19] = s7 >> 5; + s[20] = s7 >> 13; + s[21] = s8 >> 0; + s[22] = s8 >> 8; + s[23] = (s8 >> 16) | (s9 << 5); + s[24] = s9 >> 3; + s[25] = s9 >> 11; + s[26] = (s9 >> 19) | (s10 << 2); + s[27] = s10 >> 6; + s[28] = (s10 >> 14) | (s11 << 7); + s[29] = s11 >> 1; + s[30] = s11 >> 9; + s[31] = s11 >> 17; +} diff --git a/native/ed25519/sha512/LICENSE.txt b/native/ed25519/sha512/LICENSE.txt new file mode 100644 index 0000000..9789d32 --- /dev/null +++ b/native/ed25519/sha512/LICENSE.txt @@ -0,0 +1,20 @@ +Copyright (c) 2007-2011 Projet RNRT SAPHIR + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/native/ed25519/sha512/md_helper.c b/native/ed25519/sha512/md_helper.c new file mode 100644 index 0000000..5384f03 --- /dev/null +++ b/native/ed25519/sha512/md_helper.c @@ -0,0 +1,346 @@ +/* $Id: md_helper.c 216 2010-06-08 09:46:57Z tp $ */ +/* + * This file contains some functions which implement the external data + * handling and padding for Merkle-Damgard hash functions which follow + * the conventions set out by MD4 (little-endian) or SHA-1 (big-endian). + * + * API: this file is meant to be included, not compiled as a stand-alone + * file. Some macros must be defined: + * RFUN name for the round function + * HASH "short name" for the hash function + * BE32 defined for big-endian, 32-bit based (e.g. SHA-1) + * LE32 defined for little-endian, 32-bit based (e.g. MD5) + * BE64 defined for big-endian, 64-bit based (e.g. SHA-512) + * LE64 defined for little-endian, 64-bit based (no example yet) + * PW01 if defined, append 0x01 instead of 0x80 (for Tiger) + * BLEN if defined, length of a message block (in bytes) + * PLW1 if defined, length is defined on one 64-bit word only (for Tiger) + * PLW4 if defined, length is defined on four 64-bit words (for WHIRLPOOL) + * SVAL if defined, reference to the context state information + * + * BLEN is used when a message block is not 16 (32-bit or 64-bit) words: + * this is used for instance for Tiger, which works on 64-bit words but + * uses 512-bit message blocks (eight 64-bit words). PLW1 and PLW4 are + * ignored if 32-bit words are used; if 64-bit words are used and PLW1 is + * set, then only one word (64 bits) will be used to encode the input + * message length (in bits), otherwise two words will be used (as in + * SHA-384 and SHA-512). If 64-bit words are used and PLW4 is defined (but + * not PLW1), four 64-bit words will be used to encode the message length + * (in bits). Note that regardless of those settings, only 64-bit message + * lengths are supported (in bits): messages longer than 2 Exabytes will be + * improperly hashed (this is unlikely to happen soon: 2 Exabytes is about + * 2 millions Terabytes, which is huge). + * + * If CLOSE_ONLY is defined, then this file defines only the sph_XXX_close() + * function. This is used for Tiger2, which is identical to Tiger except + * when it comes to the padding (Tiger2 uses the standard 0x80 byte instead + * of the 0x01 from original Tiger). + * + * The RFUN function is invoked with two arguments, the first pointing to + * aligned data (as a "const void *"), the second being state information + * from the context structure. By default, this state information is the + * "val" field from the context, and this field is assumed to be an array + * of words ("sph_u32" or "sph_u64", depending on BE32/LE32/BE64/LE64). + * from the context structure. The "val" field can have any type, except + * for the output encoding which assumes that it is an array of "sph_u32" + * values. By defining NO_OUTPUT, this last step is deactivated; the + * includer code is then responsible for writing out the hash result. When + * NO_OUTPUT is defined, the third parameter to the "close()" function is + * ignored. + * + * ==========================(LICENSE BEGIN)============================ + * + * Copyright (c) 2007-2010 Projet RNRT SAPHIR + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * ===========================(LICENSE END)============================= + * + * @author Thomas Pornin + */ + +#ifdef _MSC_VER +#pragma warning (disable: 4146) +#endif + +#undef SPH_XCAT +#define SPH_XCAT(a, b) SPH_XCAT_(a, b) +#undef SPH_XCAT_ +#define SPH_XCAT_(a, b) a ## b + +#undef SPH_BLEN +#undef SPH_WLEN +#if defined BE64 || defined LE64 +#define SPH_BLEN 128U +#define SPH_WLEN 8U +#else +#define SPH_BLEN 64U +#define SPH_WLEN 4U +#endif + +#ifdef BLEN +#undef SPH_BLEN +#define SPH_BLEN BLEN +#endif + +#undef SPH_MAXPAD +#if defined PLW1 +#define SPH_MAXPAD (SPH_BLEN - SPH_WLEN) +#elif defined PLW4 +#define SPH_MAXPAD (SPH_BLEN - (SPH_WLEN << 2)) +#else +#define SPH_MAXPAD (SPH_BLEN - (SPH_WLEN << 1)) +#endif + +#undef SPH_VAL +#undef SPH_NO_OUTPUT +#ifdef SVAL +#define SPH_VAL SVAL +#define SPH_NO_OUTPUT 1 +#else +#define SPH_VAL sc->val +#endif + +#ifndef CLOSE_ONLY + +#ifdef SPH_UPTR +static void +SPH_XCAT(HASH, _short)(void *cc, const void *data, size_t len) +#else +void +SPH_XCAT(sph_, HASH)(void *cc, const void *data, size_t len) +#endif +{ + SPH_XCAT(sph_, SPH_XCAT(HASH, _context)) *sc; + unsigned current; + + sc = cc; +#if SPH_64 + current = (unsigned)sc->count & (SPH_BLEN - 1U); +#else + current = (unsigned)sc->count_low & (SPH_BLEN - 1U); +#endif + while (len > 0) { + unsigned clen; +#if !SPH_64 + sph_u32 clow, clow2; +#endif + + clen = SPH_BLEN - current; + if (clen > len) + clen = len; + memcpy(sc->buf + current, data, clen); + data = (const unsigned char *)data + clen; + current += clen; + len -= clen; + if (current == SPH_BLEN) { + RFUN(sc->buf, SPH_VAL); + current = 0; + } +#if SPH_64 + sc->count += clen; +#else + clow = sc->count_low; + clow2 = SPH_T32(clow + clen); + sc->count_low = clow2; + if (clow2 < clow) + sc->count_high ++; +#endif + } +} + +#ifdef SPH_UPTR +void +SPH_XCAT(sph_, HASH)(void *cc, const void *data, size_t len) +{ + SPH_XCAT(sph_, SPH_XCAT(HASH, _context)) *sc; + unsigned current; + size_t orig_len; +#if !SPH_64 + sph_u32 clow, clow2; +#endif + + if (len < (2 * SPH_BLEN)) { + SPH_XCAT(HASH, _short)(cc, data, len); + return; + } + sc = cc; +#if SPH_64 + current = (unsigned)sc->count & (SPH_BLEN - 1U); +#else + current = (unsigned)sc->count_low & (SPH_BLEN - 1U); +#endif + if (current > 0) { + unsigned t; + + t = SPH_BLEN - current; + SPH_XCAT(HASH, _short)(cc, data, t); + data = (const unsigned char *)data + t; + len -= t; + } +#if !SPH_UNALIGNED + if (((SPH_UPTR)data & (SPH_WLEN - 1U)) != 0) { + SPH_XCAT(HASH, _short)(cc, data, len); + return; + } +#endif + orig_len = len; + while (len >= SPH_BLEN) { + RFUN(data, SPH_VAL); + len -= SPH_BLEN; + data = (const unsigned char *)data + SPH_BLEN; + } + if (len > 0) + memcpy(sc->buf, data, len); +#if SPH_64 + sc->count += (sph_u64)orig_len; +#else + clow = sc->count_low; + clow2 = SPH_T32(clow + orig_len); + sc->count_low = clow2; + if (clow2 < clow) + sc->count_high ++; + /* + * This code handles the improbable situation where "size_t" is + * greater than 32 bits, and yet we do not have a 64-bit type. + */ + orig_len >>= 12; + orig_len >>= 10; + orig_len >>= 10; + sc->count_high += orig_len; +#endif +} +#endif + +#endif + +/* + * Perform padding and produce result. The context is NOT reinitialized + * by this function. + */ +static void +SPH_XCAT(HASH, _addbits_and_close)(void *cc, + unsigned ub, unsigned n, void *dst, unsigned rnum) +{ + SPH_XCAT(sph_, SPH_XCAT(HASH, _context)) *sc; + unsigned current, u; +#if !SPH_64 + sph_u32 low, high; +#endif + + sc = cc; +#if SPH_64 + current = (unsigned)sc->count & (SPH_BLEN - 1U); +#else + current = (unsigned)sc->count_low & (SPH_BLEN - 1U); +#endif +#ifdef PW01 + sc->buf[current ++] = (0x100 | (ub & 0xFF)) >> (8 - n); +#else + { + unsigned z; + + z = 0x80 >> n; + sc->buf[current ++] = ((ub & -z) | z) & 0xFF; + } +#endif + if (current > SPH_MAXPAD) { + memset(sc->buf + current, 0, SPH_BLEN - current); + RFUN(sc->buf, SPH_VAL); + memset(sc->buf, 0, SPH_MAXPAD); + } else { + memset(sc->buf + current, 0, SPH_MAXPAD - current); + } +#if defined BE64 +#if defined PLW1 + sph_enc64be_aligned(sc->buf + SPH_MAXPAD, + SPH_T64(sc->count << 3) + (sph_u64)n); +#elif defined PLW4 + memset(sc->buf + SPH_MAXPAD, 0, 2 * SPH_WLEN); + sph_enc64be_aligned(sc->buf + SPH_MAXPAD + 2 * SPH_WLEN, + sc->count >> 61); + sph_enc64be_aligned(sc->buf + SPH_MAXPAD + 3 * SPH_WLEN, + SPH_T64(sc->count << 3) + (sph_u64)n); +#else + sph_enc64be_aligned(sc->buf + SPH_MAXPAD, sc->count >> 61); + sph_enc64be_aligned(sc->buf + SPH_MAXPAD + SPH_WLEN, + SPH_T64(sc->count << 3) + (sph_u64)n); +#endif +#elif defined LE64 +#if defined PLW1 + sph_enc64le_aligned(sc->buf + SPH_MAXPAD, + SPH_T64(sc->count << 3) + (sph_u64)n); +#elif defined PLW1 + sph_enc64le_aligned(sc->buf + SPH_MAXPAD, + SPH_T64(sc->count << 3) + (sph_u64)n); + sph_enc64le_aligned(sc->buf + SPH_MAXPAD + SPH_WLEN, sc->count >> 61); + memset(sc->buf + SPH_MAXPAD + 2 * SPH_WLEN, 0, 2 * SPH_WLEN); +#else + sph_enc64le_aligned(sc->buf + SPH_MAXPAD, + SPH_T64(sc->count << 3) + (sph_u64)n); + sph_enc64le_aligned(sc->buf + SPH_MAXPAD + SPH_WLEN, sc->count >> 61); +#endif +#else +#if SPH_64 +#ifdef BE32 + sph_enc64be_aligned(sc->buf + SPH_MAXPAD, + SPH_T64(sc->count << 3) + (sph_u64)n); +#else + sph_enc64le_aligned(sc->buf + SPH_MAXPAD, + SPH_T64(sc->count << 3) + (sph_u64)n); +#endif +#else + low = sc->count_low; + high = SPH_T32((sc->count_high << 3) | (low >> 29)); + low = SPH_T32(low << 3) + (sph_u32)n; +#ifdef BE32 + sph_enc32be(sc->buf + SPH_MAXPAD, high); + sph_enc32be(sc->buf + SPH_MAXPAD + SPH_WLEN, low); +#else + sph_enc32le(sc->buf + SPH_MAXPAD, low); + sph_enc32le(sc->buf + SPH_MAXPAD + SPH_WLEN, high); +#endif +#endif +#endif + RFUN(sc->buf, SPH_VAL); +#ifdef SPH_NO_OUTPUT + (void)dst; + (void)rnum; + (void)u; +#else + for (u = 0; u < rnum; u ++) { +#if defined BE64 + sph_enc64be((unsigned char *)dst + 8 * u, sc->val[u]); +#elif defined LE64 + sph_enc64le((unsigned char *)dst + 8 * u, sc->val[u]); +#elif defined BE32 + sph_enc32be((unsigned char *)dst + 4 * u, sc->val[u]); +#else + sph_enc32le((unsigned char *)dst + 4 * u, sc->val[u]); +#endif + } +#endif +} + +static void +SPH_XCAT(HASH, _close)(void *cc, void *dst, unsigned rnum) +{ + SPH_XCAT(HASH, _addbits_and_close)(cc, 0, 0, dst, rnum); +} diff --git a/native/ed25519/sha512/sha2big.c b/native/ed25519/sha512/sha2big.c new file mode 100644 index 0000000..a699223 --- /dev/null +++ b/native/ed25519/sha512/sha2big.c @@ -0,0 +1,247 @@ +/* $Id: sha2big.c 216 2010-06-08 09:46:57Z tp $ */ +/* + * SHA-384 / SHA-512 implementation. + * + * ==========================(LICENSE BEGIN)============================ + * + * Copyright (c) 2007-2010 Projet RNRT SAPHIR + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * ===========================(LICENSE END)============================= + * + * @author Thomas Pornin + */ + +#include +#include + +#include "sph_sha2.h" + +#if SPH_64 + +#define CH(X, Y, Z) ((((Y) ^ (Z)) & (X)) ^ (Z)) +#define MAJ(X, Y, Z) (((X) & (Y)) | (((X) | (Y)) & (Z))) + +#define ROTR64 SPH_ROTR64 + +#define BSG5_0(x) (ROTR64(x, 28) ^ ROTR64(x, 34) ^ ROTR64(x, 39)) +#define BSG5_1(x) (ROTR64(x, 14) ^ ROTR64(x, 18) ^ ROTR64(x, 41)) +#define SSG5_0(x) (ROTR64(x, 1) ^ ROTR64(x, 8) ^ SPH_T64((x) >> 7)) +#define SSG5_1(x) (ROTR64(x, 19) ^ ROTR64(x, 61) ^ SPH_T64((x) >> 6)) + +static const sph_u64 K512[80] = { + SPH_C64(0x428A2F98D728AE22), SPH_C64(0x7137449123EF65CD), + SPH_C64(0xB5C0FBCFEC4D3B2F), SPH_C64(0xE9B5DBA58189DBBC), + SPH_C64(0x3956C25BF348B538), SPH_C64(0x59F111F1B605D019), + SPH_C64(0x923F82A4AF194F9B), SPH_C64(0xAB1C5ED5DA6D8118), + SPH_C64(0xD807AA98A3030242), SPH_C64(0x12835B0145706FBE), + SPH_C64(0x243185BE4EE4B28C), SPH_C64(0x550C7DC3D5FFB4E2), + SPH_C64(0x72BE5D74F27B896F), SPH_C64(0x80DEB1FE3B1696B1), + SPH_C64(0x9BDC06A725C71235), SPH_C64(0xC19BF174CF692694), + SPH_C64(0xE49B69C19EF14AD2), SPH_C64(0xEFBE4786384F25E3), + SPH_C64(0x0FC19DC68B8CD5B5), SPH_C64(0x240CA1CC77AC9C65), + SPH_C64(0x2DE92C6F592B0275), SPH_C64(0x4A7484AA6EA6E483), + SPH_C64(0x5CB0A9DCBD41FBD4), SPH_C64(0x76F988DA831153B5), + SPH_C64(0x983E5152EE66DFAB), SPH_C64(0xA831C66D2DB43210), + SPH_C64(0xB00327C898FB213F), SPH_C64(0xBF597FC7BEEF0EE4), + SPH_C64(0xC6E00BF33DA88FC2), SPH_C64(0xD5A79147930AA725), + SPH_C64(0x06CA6351E003826F), SPH_C64(0x142929670A0E6E70), + SPH_C64(0x27B70A8546D22FFC), SPH_C64(0x2E1B21385C26C926), + SPH_C64(0x4D2C6DFC5AC42AED), SPH_C64(0x53380D139D95B3DF), + SPH_C64(0x650A73548BAF63DE), SPH_C64(0x766A0ABB3C77B2A8), + SPH_C64(0x81C2C92E47EDAEE6), SPH_C64(0x92722C851482353B), + SPH_C64(0xA2BFE8A14CF10364), SPH_C64(0xA81A664BBC423001), + SPH_C64(0xC24B8B70D0F89791), SPH_C64(0xC76C51A30654BE30), + SPH_C64(0xD192E819D6EF5218), SPH_C64(0xD69906245565A910), + SPH_C64(0xF40E35855771202A), SPH_C64(0x106AA07032BBD1B8), + SPH_C64(0x19A4C116B8D2D0C8), SPH_C64(0x1E376C085141AB53), + SPH_C64(0x2748774CDF8EEB99), SPH_C64(0x34B0BCB5E19B48A8), + SPH_C64(0x391C0CB3C5C95A63), SPH_C64(0x4ED8AA4AE3418ACB), + SPH_C64(0x5B9CCA4F7763E373), SPH_C64(0x682E6FF3D6B2B8A3), + SPH_C64(0x748F82EE5DEFB2FC), SPH_C64(0x78A5636F43172F60), + SPH_C64(0x84C87814A1F0AB72), SPH_C64(0x8CC702081A6439EC), + SPH_C64(0x90BEFFFA23631E28), SPH_C64(0xA4506CEBDE82BDE9), + SPH_C64(0xBEF9A3F7B2C67915), SPH_C64(0xC67178F2E372532B), + SPH_C64(0xCA273ECEEA26619C), SPH_C64(0xD186B8C721C0C207), + SPH_C64(0xEADA7DD6CDE0EB1E), SPH_C64(0xF57D4F7FEE6ED178), + SPH_C64(0x06F067AA72176FBA), SPH_C64(0x0A637DC5A2C898A6), + SPH_C64(0x113F9804BEF90DAE), SPH_C64(0x1B710B35131C471B), + SPH_C64(0x28DB77F523047D84), SPH_C64(0x32CAAB7B40C72493), + SPH_C64(0x3C9EBE0A15C9BEBC), SPH_C64(0x431D67C49C100D4C), + SPH_C64(0x4CC5D4BECB3E42B6), SPH_C64(0x597F299CFC657E2A), + SPH_C64(0x5FCB6FAB3AD6FAEC), SPH_C64(0x6C44198C4A475817) +}; + +static const sph_u64 H384[8] = { + SPH_C64(0xCBBB9D5DC1059ED8), SPH_C64(0x629A292A367CD507), + SPH_C64(0x9159015A3070DD17), SPH_C64(0x152FECD8F70E5939), + SPH_C64(0x67332667FFC00B31), SPH_C64(0x8EB44A8768581511), + SPH_C64(0xDB0C2E0D64F98FA7), SPH_C64(0x47B5481DBEFA4FA4) +}; + +static const sph_u64 H512[8] = { + SPH_C64(0x6A09E667F3BCC908), SPH_C64(0xBB67AE8584CAA73B), + SPH_C64(0x3C6EF372FE94F82B), SPH_C64(0xA54FF53A5F1D36F1), + SPH_C64(0x510E527FADE682D1), SPH_C64(0x9B05688C2B3E6C1F), + SPH_C64(0x1F83D9ABFB41BD6B), SPH_C64(0x5BE0CD19137E2179) +}; + +/* + * This macro defines the body for a SHA-384 / SHA-512 compression function + * implementation. The "in" parameter should evaluate, when applied to a + * numerical input parameter from 0 to 15, to an expression which yields + * the corresponding input block. The "r" parameter should evaluate to + * an array or pointer expression designating the array of 8 words which + * contains the input and output of the compression function. + * + * SHA-512 is hard for the compiler. If the loop is completely unrolled, + * then the code will be quite huge (possibly more than 100 kB), and the + * performance will be degraded due to cache misses on the code. We + * unroll only eight steps, which avoids all needless copies when + * 64-bit registers are swapped. + */ + +#define SHA3_STEP(A, B, C, D, E, F, G, H, i) do { \ + sph_u64 T1, T2; \ + T1 = SPH_T64(H + BSG5_1(E) + CH(E, F, G) + K512[i] + W[i]); \ + T2 = SPH_T64(BSG5_0(A) + MAJ(A, B, C)); \ + D = SPH_T64(D + T1); \ + H = SPH_T64(T1 + T2); \ + } while (0) + +#define SHA3_ROUND_BODY(in, r) do { \ + int i; \ + sph_u64 A, B, C, D, E, F, G, H; \ + sph_u64 W[80]; \ + \ + for (i = 0; i < 16; i ++) \ + W[i] = in(i); \ + for (i = 16; i < 80; i ++) \ + W[i] = SPH_T64(SSG5_1(W[i - 2]) + W[i - 7] \ + + SSG5_0(W[i - 15]) + W[i - 16]); \ + A = (r)[0]; \ + B = (r)[1]; \ + C = (r)[2]; \ + D = (r)[3]; \ + E = (r)[4]; \ + F = (r)[5]; \ + G = (r)[6]; \ + H = (r)[7]; \ + for (i = 0; i < 80; i += 8) { \ + SHA3_STEP(A, B, C, D, E, F, G, H, i + 0); \ + SHA3_STEP(H, A, B, C, D, E, F, G, i + 1); \ + SHA3_STEP(G, H, A, B, C, D, E, F, i + 2); \ + SHA3_STEP(F, G, H, A, B, C, D, E, i + 3); \ + SHA3_STEP(E, F, G, H, A, B, C, D, i + 4); \ + SHA3_STEP(D, E, F, G, H, A, B, C, i + 5); \ + SHA3_STEP(C, D, E, F, G, H, A, B, i + 6); \ + SHA3_STEP(B, C, D, E, F, G, H, A, i + 7); \ + } \ + (r)[0] = SPH_T64((r)[0] + A); \ + (r)[1] = SPH_T64((r)[1] + B); \ + (r)[2] = SPH_T64((r)[2] + C); \ + (r)[3] = SPH_T64((r)[3] + D); \ + (r)[4] = SPH_T64((r)[4] + E); \ + (r)[5] = SPH_T64((r)[5] + F); \ + (r)[6] = SPH_T64((r)[6] + G); \ + (r)[7] = SPH_T64((r)[7] + H); \ + } while (0) + +/* + * One round of SHA-384 / SHA-512. The data must be aligned for 64-bit access. + */ +static void +sha3_round(const unsigned char *data, sph_u64 r[8]) +{ +#define SHA3_IN(x) sph_dec64be_aligned(data + (8 * (x))) + SHA3_ROUND_BODY(SHA3_IN, r); +#undef SHA3_IN +} + +/* see sph_sha3.h */ +void +sph_sha384_init(void *cc) +{ + sph_sha384_context *sc; + + sc = cc; + memcpy(sc->val, H384, sizeof H384); + sc->count = 0; +} + +/* see sph_sha3.h */ +void +sph_sha512_init(void *cc) +{ + sph_sha512_context *sc; + + sc = cc; + memcpy(sc->val, H512, sizeof H512); + sc->count = 0; +} + +#define RFUN sha3_round +#define HASH sha384 +#define BE64 1 +#include "md_helper.c" + +/* see sph_sha3.h */ +void +sph_sha384_close(void *cc, void *dst) +{ + sha384_close(cc, dst, 6); + sph_sha384_init(cc); +} + +/* see sph_sha3.h */ +void +sph_sha384_addbits_and_close(void *cc, unsigned ub, unsigned n, void *dst) +{ + sha384_addbits_and_close(cc, ub, n, dst, 6); + sph_sha384_init(cc); +} + +/* see sph_sha3.h */ +void +sph_sha512_close(void *cc, void *dst) +{ + sha384_close(cc, dst, 8); + sph_sha512_init(cc); +} + +/* see sph_sha3.h */ +void +sph_sha512_addbits_and_close(void *cc, unsigned ub, unsigned n, void *dst) +{ + sha384_addbits_and_close(cc, ub, n, dst, 8); + sph_sha512_init(cc); +} + +/* see sph_sha3.h */ +void +sph_sha384_comp(const sph_u64 msg[16], sph_u64 val[8]) +{ +#define SHA3_IN(x) msg[x] + SHA3_ROUND_BODY(SHA3_IN, val); +#undef SHA3_IN +} + +#endif diff --git a/native/ed25519/sha512/sph_sha2.h b/native/ed25519/sha512/sph_sha2.h new file mode 100644 index 0000000..d5bda73 --- /dev/null +++ b/native/ed25519/sha512/sph_sha2.h @@ -0,0 +1,370 @@ +/* $Id: sph_sha2.h 216 2010-06-08 09:46:57Z tp $ */ +/** + * SHA-224, SHA-256, SHA-384 and SHA-512 interface. + * + * SHA-256 has been published in FIPS 180-2, now amended with a change + * notice to include SHA-224 as well (which is a simple variation on + * SHA-256). SHA-384 and SHA-512 are also defined in FIPS 180-2. FIPS + * standards can be found at: + * http://csrc.nist.gov/publications/fips/ + * + * ==========================(LICENSE BEGIN)============================ + * + * Copyright (c) 2007-2010 Projet RNRT SAPHIR + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * ===========================(LICENSE END)============================= + * + * @file sph_sha2.h + * @author Thomas Pornin + */ + +#ifndef SPH_SHA2_H__ +#define SPH_SHA2_H__ + +#include +#include "sph_types.h" + +/** + * Output size (in bits) for SHA-224. + */ +#define SPH_SIZE_sha224 224 + +/** + * Output size (in bits) for SHA-256. + */ +#define SPH_SIZE_sha256 256 + +/** + * This structure is a context for SHA-224 computations: it contains the + * intermediate values and some data from the last entered block. Once + * a SHA-224 computation has been performed, the context can be reused for + * another computation. + * + * The contents of this structure are private. A running SHA-224 computation + * can be cloned by copying the context (e.g. with a simple + * memcpy()). + */ +typedef struct { +#ifndef DOXYGEN_IGNORE + unsigned char buf[64]; /* first field, for alignment */ + sph_u32 val[8]; +#if SPH_64 + sph_u64 count; +#else + sph_u32 count_high, count_low; +#endif +#endif +} sph_sha224_context; + +/** + * This structure is a context for SHA-256 computations. It is identical + * to the SHA-224 context. However, a context is initialized for SHA-224 + * or SHA-256, but not both (the internal IV is not the + * same). + */ +typedef sph_sha224_context sph_sha256_context; + +/** + * Initialize a SHA-224 context. This process performs no memory allocation. + * + * @param cc the SHA-224 context (pointer to + * a sph_sha224_context) + */ +void sph_sha224_init(void *cc); + +/** + * Process some data bytes. It is acceptable that len is zero + * (in which case this function does nothing). + * + * @param cc the SHA-224 context + * @param data the input data + * @param len the input data length (in bytes) + */ +void sph_sha224(void *cc, const void *data, size_t len); + +/** + * Terminate the current SHA-224 computation and output the result into the + * provided buffer. The destination buffer must be wide enough to + * accomodate the result (28 bytes). The context is automatically + * reinitialized. + * + * @param cc the SHA-224 context + * @param dst the destination buffer + */ +void sph_sha224_close(void *cc, void *dst); + +/** + * Add a few additional bits (0 to 7) to the current computation, then + * terminate it and output the result in the provided buffer, which must + * be wide enough to accomodate the result (28 bytes). If bit number i + * in ub has value 2^i, then the extra bits are those + * numbered 7 downto 8-n (this is the big-endian convention at the byte + * level). The context is automatically reinitialized. + * + * @param cc the SHA-224 context + * @param ub the extra bits + * @param n the number of extra bits (0 to 7) + * @param dst the destination buffer + */ +void sph_sha224_addbits_and_close(void *cc, unsigned ub, unsigned n, void *dst); + +/** + * Apply the SHA-224 compression function on the provided data. The + * msg parameter contains the 16 32-bit input blocks, + * as numerical values (hence after the big-endian decoding). The + * val parameter contains the 8 32-bit input blocks for + * the compression function; the output is written in place in this + * array. + * + * @param msg the message block (16 values) + * @param val the function 256-bit input and output + */ +void sph_sha224_comp(const sph_u32 msg[16], sph_u32 val[8]); + +/** + * Initialize a SHA-256 context. This process performs no memory allocation. + * + * @param cc the SHA-256 context (pointer to + * a sph_sha256_context) + */ +void sph_sha256_init(void *cc); + +#ifdef DOXYGEN_IGNORE +/** + * Process some data bytes, for SHA-256. This function is identical to + * sha_224() + * + * @param cc the SHA-224 context + * @param data the input data + * @param len the input data length (in bytes) + */ +void sph_sha256(void *cc, const void *data, size_t len); +#endif + +#ifndef DOXYGEN_IGNORE +#define sph_sha256 sph_sha224 +#endif + +/** + * Terminate the current SHA-256 computation and output the result into the + * provided buffer. The destination buffer must be wide enough to + * accomodate the result (32 bytes). The context is automatically + * reinitialized. + * + * @param cc the SHA-256 context + * @param dst the destination buffer + */ +void sph_sha256_close(void *cc, void *dst); + +/** + * Add a few additional bits (0 to 7) to the current computation, then + * terminate it and output the result in the provided buffer, which must + * be wide enough to accomodate the result (32 bytes). If bit number i + * in ub has value 2^i, then the extra bits are those + * numbered 7 downto 8-n (this is the big-endian convention at the byte + * level). The context is automatically reinitialized. + * + * @param cc the SHA-256 context + * @param ub the extra bits + * @param n the number of extra bits (0 to 7) + * @param dst the destination buffer + */ +void sph_sha256_addbits_and_close(void *cc, unsigned ub, unsigned n, void *dst); + +#ifdef DOXYGEN_IGNORE +/** + * Apply the SHA-256 compression function on the provided data. This + * function is identical to sha224_comp(). + * + * @param msg the message block (16 values) + * @param val the function 256-bit input and output + */ +void sph_sha256_comp(const sph_u32 msg[16], sph_u32 val[8]); +#endif + +#ifndef DOXYGEN_IGNORE +#define sph_sha256_comp sph_sha224_comp +#endif + +#if SPH_64 + +/** + * Output size (in bits) for SHA-384. + */ +#define SPH_SIZE_sha384 384 + +/** + * Output size (in bits) for SHA-512. + */ +#define SPH_SIZE_sha512 512 + +/** + * This structure is a context for SHA-384 computations: it contains the + * intermediate values and some data from the last entered block. Once + * a SHA-384 computation has been performed, the context can be reused for + * another computation. + * + * The contents of this structure are private. A running SHA-384 computation + * can be cloned by copying the context (e.g. with a simple + * memcpy()). + */ +typedef struct { +#ifndef DOXYGEN_IGNORE + unsigned char buf[128]; /* first field, for alignment */ + sph_u64 val[8]; + sph_u64 count; +#endif +} sph_sha384_context; + +/** + * Initialize a SHA-384 context. This process performs no memory allocation. + * + * @param cc the SHA-384 context (pointer to + * a sph_sha384_context) + */ +void sph_sha384_init(void *cc); + +/** + * Process some data bytes. It is acceptable that len is zero + * (in which case this function does nothing). + * + * @param cc the SHA-384 context + * @param data the input data + * @param len the input data length (in bytes) + */ +void sph_sha384(void *cc, const void *data, size_t len); + +/** + * Terminate the current SHA-384 computation and output the result into the + * provided buffer. The destination buffer must be wide enough to + * accomodate the result (48 bytes). The context is automatically + * reinitialized. + * + * @param cc the SHA-384 context + * @param dst the destination buffer + */ +void sph_sha384_close(void *cc, void *dst); + +/** + * Add a few additional bits (0 to 7) to the current computation, then + * terminate it and output the result in the provided buffer, which must + * be wide enough to accomodate the result (48 bytes). If bit number i + * in ub has value 2^i, then the extra bits are those + * numbered 7 downto 8-n (this is the big-endian convention at the byte + * level). The context is automatically reinitialized. + * + * @param cc the SHA-384 context + * @param ub the extra bits + * @param n the number of extra bits (0 to 7) + * @param dst the destination buffer + */ +void sph_sha384_addbits_and_close(void *cc, unsigned ub, unsigned n, void *dst); + +/** + * Apply the SHA-384 compression function on the provided data. The + * msg parameter contains the 16 64-bit input blocks, + * as numerical values (hence after the big-endian decoding). The + * val parameter contains the 8 64-bit input blocks for + * the compression function; the output is written in place in this + * array. + * + * @param msg the message block (16 values) + * @param val the function 512-bit input and output + */ +void sph_sha384_comp(const sph_u64 msg[16], sph_u64 val[8]); + +/** + * This structure is a context for SHA-512 computations. It is identical + * to the SHA-384 context. However, a context is initialized for SHA-384 + * or SHA-512, but not both (the internal IV is not the + * same). + */ +typedef sph_sha384_context sph_sha512_context; + +/** + * Initialize a SHA-512 context. This process performs no memory allocation. + * + * @param cc the SHA-512 context (pointer to + * a sph_sha512_context) + */ +void sph_sha512_init(void *cc); + +#ifdef DOXYGEN_IGNORE +/** + * Process some data bytes, for SHA-512. This function is identical to + * sph_sha384(). + * + * @param cc the SHA-384 context + * @param data the input data + * @param len the input data length (in bytes) + */ +void sph_sha512(void *cc, const void *data, size_t len); +#endif + +#ifndef DOXYGEN_IGNORE +#define sph_sha512 sph_sha384 +#endif + +/** + * Terminate the current SHA-512 computation and output the result into the + * provided buffer. The destination buffer must be wide enough to + * accomodate the result (64 bytes). The context is automatically + * reinitialized. + * + * @param cc the SHA-512 context + * @param dst the destination buffer + */ +void sph_sha512_close(void *cc, void *dst); + +/** + * Add a few additional bits (0 to 7) to the current computation, then + * terminate it and output the result in the provided buffer, which must + * be wide enough to accomodate the result (64 bytes). If bit number i + * in ub has value 2^i, then the extra bits are those + * numbered 7 downto 8-n (this is the big-endian convention at the byte + * level). The context is automatically reinitialized. + * + * @param cc the SHA-512 context + * @param ub the extra bits + * @param n the number of extra bits (0 to 7) + * @param dst the destination buffer + */ +void sph_sha512_addbits_and_close(void *cc, unsigned ub, unsigned n, void *dst); + +#ifdef DOXYGEN_IGNORE +/** + * Apply the SHA-512 compression function. This function is identical to + * sph_sha384_comp(). + * + * @param msg the message block (16 values) + * @param val the function 512-bit input and output + */ +void sph_sha512_comp(const sph_u64 msg[16], sph_u64 val[8]); +#endif + +#ifndef DOXYGEN_IGNORE +#define sph_sha512_comp sph_sha384_comp +#endif + +#endif + +#endif diff --git a/native/ed25519/sha512/sph_types.h b/native/ed25519/sha512/sph_types.h new file mode 100644 index 0000000..7295b0b --- /dev/null +++ b/native/ed25519/sha512/sph_types.h @@ -0,0 +1,1976 @@ +/* $Id: sph_types.h 260 2011-07-21 01:02:38Z tp $ */ +/** + * Basic type definitions. + * + * This header file defines the generic integer types that will be used + * for the implementation of hash functions; it also contains helper + * functions which encode and decode multi-byte integer values, using + * either little-endian or big-endian conventions. + * + * This file contains a compile-time test on the size of a byte + * (the unsigned char C type). If bytes are not octets, + * i.e. if they do not have a size of exactly 8 bits, then compilation + * is aborted. Architectures where bytes are not octets are relatively + * rare, even in the embedded devices market. We forbid non-octet bytes + * because there is no clear convention on how octet streams are encoded + * on such systems. + * + * ==========================(LICENSE BEGIN)============================ + * + * Copyright (c) 2007-2010 Projet RNRT SAPHIR + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * ===========================(LICENSE END)============================= + * + * @file sph_types.h + * @author Thomas Pornin + */ + +#ifndef SPH_TYPES_H__ +#define SPH_TYPES_H__ + +#include + +/* + * All our I/O functions are defined over octet streams. We do not know + * how to handle input data if bytes are not octets. + */ +#if CHAR_BIT != 8 +#error This code requires 8-bit bytes +#endif + +/* ============= BEGIN documentation block for Doxygen ============ */ + +#ifdef DOXYGEN_IGNORE + +/** @mainpage sphlib C code documentation + * + * @section overview Overview + * + * sphlib is a library which contains implementations of + * various cryptographic hash functions. These pages have been generated + * with doxygen and + * document the API for the C implementations. + * + * The API is described in appropriate header files, which are available + * in the "Files" section. Each hash function family has its own header, + * whose name begins with "sph_" and contains the family + * name. For instance, the API for the RIPEMD hash functions is available + * in the header file sph_ripemd.h. + * + * @section principles API structure and conventions + * + * @subsection io Input/output conventions + * + * In all generality, hash functions operate over strings of bits. + * Individual bits are rarely encountered in C programming or actual + * communication protocols; most protocols converge on the ubiquitous + * "octet" which is a group of eight bits. Data is thus expressed as a + * stream of octets. The C programming language contains the notion of a + * "byte", which is a data unit managed under the type "unsigned + * char". The C standard prescribes that a byte should hold at + * least eight bits, but possibly more. Most modern architectures, even + * in the embedded world, feature eight-bit bytes, i.e. map bytes to + * octets. + * + * Nevertheless, for some of the implemented hash functions, an extra + * API has been added, which allows the input of arbitrary sequences of + * bits: when the computation is about to be closed, 1 to 7 extra bits + * can be added. The functions for which this API is implemented include + * the SHA-2 functions and all SHA-3 candidates. + * + * sphlib defines hash function which may hash octet streams, + * i.e. streams of bits where the number of bits is a multiple of eight. + * The data input functions in the sphlib API expect data + * as anonymous pointers ("const void *") with a length + * (of type "size_t") which gives the input data chunk length + * in bytes. A byte is assumed to be an octet; the sph_types.h + * header contains a compile-time test which prevents compilation on + * architectures where this property is not met. + * + * The hash function output is also converted into bytes. All currently + * implemented hash functions have an output width which is a multiple of + * eight, and this is likely to remain true for new designs. + * + * Most hash functions internally convert input data into 32-bit of 64-bit + * words, using either little-endian or big-endian conversion. The hash + * output also often consists of such words, which are encoded into output + * bytes with a similar endianness convention. Some hash functions have + * been only loosely specified on that subject; when necessary, + * sphlib has been tested against published "reference" + * implementations in order to use the same conventions. + * + * @subsection shortname Function short name + * + * Each implemented hash function has a "short name" which is used + * internally to derive the identifiers for the functions and context + * structures which the function uses. For instance, MD5 has the short + * name "md5". Short names are listed in the next section, + * for the implemented hash functions. In subsequent sections, the + * short name will be assumed to be "XXX": replace with the + * actual hash function name to get the C identifier. + * + * Note: some functions within the same family share the same core + * elements, such as update function or context structure. Correspondingly, + * some of the defined types or functions may actually be macros which + * transparently evaluate to another type or function name. + * + * @subsection context Context structure + * + * Each implemented hash fonction has its own context structure, available + * under the type name "sph_XXX_context" for the hash function + * with short name "XXX". This structure holds all needed + * state for a running hash computation. + * + * The contents of these structures are meant to be opaque, and private + * to the implementation. However, these contents are specified in the + * header files so that application code which uses sphlib + * may access the size of those structures. + * + * The caller is responsible for allocating the context structure, + * whether by dynamic allocation (malloc() or equivalent), + * static allocation (a global permanent variable), as an automatic + * variable ("on the stack"), or by any other mean which ensures proper + * structure alignment. sphlib code performs no dynamic + * allocation by itself. + * + * The context must be initialized before use, using the + * sph_XXX_init() function. This function sets the context + * state to proper initial values for hashing. + * + * Since all state data is contained within the context structure, + * sphlib is thread-safe and reentrant: several hash + * computations may be performed in parallel, provided that they do not + * operate on the same context. Moreover, a running computation can be + * cloned by copying the context (with a simple memcpy()): + * the context and its clone are then independant and may be updated + * with new data and/or closed without interfering with each other. + * Similarly, a context structure can be moved in memory at will: + * context structures contain no pointer, in particular no pointer to + * themselves. + * + * @subsection dataio Data input + * + * Hashed data is input with the sph_XXX() fonction, which + * takes as parameters a pointer to the context, a pointer to the data + * to hash, and the number of data bytes to hash. The context is updated + * with the new data. + * + * Data can be input in one or several calls, with arbitrary input lengths. + * However, it is best, performance wise, to input data by relatively big + * chunks (say a few kilobytes), because this allows sphlib to + * optimize things and avoid internal copying. + * + * When all data has been input, the context can be closed with + * sph_XXX_close(). The hash output is computed and written + * into the provided buffer. The caller must take care to provide a + * buffer of appropriate length; e.g., when using SHA-1, the output is + * a 20-byte word, therefore the output buffer must be at least 20-byte + * long. + * + * For some hash functions, the sph_XXX_addbits_and_close() + * function can be used instead of sph_XXX_close(). This + * function can take a few extra bits to be added at + * the end of the input message. This allows hashing messages with a + * bit length which is not a multiple of 8. The extra bits are provided + * as an unsigned integer value, and a bit count. The bit count must be + * between 0 and 7, inclusive. The extra bits are provided as bits 7 to + * 0 (bits of numerical value 128, 64, 32... downto 0), in that order. + * For instance, to add three bits of value 1, 1 and 0, the unsigned + * integer will have value 192 (1*128 + 1*64 + 0*32) and the bit count + * will be 3. + * + * The SPH_SIZE_XXX macro is defined for each hash function; + * it evaluates to the function output size, expressed in bits. For instance, + * SPH_SIZE_sha1 evaluates to 160. + * + * When closed, the context is automatically reinitialized and can be + * immediately used for another computation. It is not necessary to call + * sph_XXX_init() after a close. Note that + * sph_XXX_init() can still be called to "reset" a context, + * i.e. forget previously input data, and get back to the initial state. + * + * @subsection alignment Data alignment + * + * "Alignment" is a property of data, which is said to be "properly + * aligned" when its emplacement in memory is such that the data can + * be optimally read by full words. This depends on the type of access; + * basically, some hash functions will read data by 32-bit or 64-bit + * words. sphlib does not mandate such alignment for input + * data, but using aligned data can substantially improve performance. + * + * As a rule, it is best to input data by chunks whose length (in bytes) + * is a multiple of eight, and which begins at "generally aligned" + * addresses, such as the base address returned by a call to + * malloc(). + * + * @section functions Implemented functions + * + * We give here the list of implemented functions. They are grouped by + * family; to each family corresponds a specific header file. Each + * individual function has its associated "short name". Please refer to + * the documentation for that header file to get details on the hash + * function denomination and provenance. + * + * Note: the functions marked with a '(64)' in the list below are + * available only if the C compiler provides an integer type of length + * 64 bits or more. Such a type is mandatory in the latest C standard + * (ISO 9899:1999, aka "C99") and is present in several older compilers + * as well, so chances are that such a type is available. + * + * - HAVAL family: file sph_haval.h + * - HAVAL-128/3 (128-bit, 3 passes): short name: haval128_3 + * - HAVAL-128/4 (128-bit, 4 passes): short name: haval128_4 + * - HAVAL-128/5 (128-bit, 5 passes): short name: haval128_5 + * - HAVAL-160/3 (160-bit, 3 passes): short name: haval160_3 + * - HAVAL-160/4 (160-bit, 4 passes): short name: haval160_4 + * - HAVAL-160/5 (160-bit, 5 passes): short name: haval160_5 + * - HAVAL-192/3 (192-bit, 3 passes): short name: haval192_3 + * - HAVAL-192/4 (192-bit, 4 passes): short name: haval192_4 + * - HAVAL-192/5 (192-bit, 5 passes): short name: haval192_5 + * - HAVAL-224/3 (224-bit, 3 passes): short name: haval224_3 + * - HAVAL-224/4 (224-bit, 4 passes): short name: haval224_4 + * - HAVAL-224/5 (224-bit, 5 passes): short name: haval224_5 + * - HAVAL-256/3 (256-bit, 3 passes): short name: haval256_3 + * - HAVAL-256/4 (256-bit, 4 passes): short name: haval256_4 + * - HAVAL-256/5 (256-bit, 5 passes): short name: haval256_5 + * - MD2: file sph_md2.h, short name: md2 + * - MD4: file sph_md4.h, short name: md4 + * - MD5: file sph_md5.h, short name: md5 + * - PANAMA: file sph_panama.h, short name: panama + * - RadioGatun family: file sph_radiogatun.h + * - RadioGatun[32]: short name: radiogatun32 + * - RadioGatun[64]: short name: radiogatun64 (64) + * - RIPEMD family: file sph_ripemd.h + * - RIPEMD: short name: ripemd + * - RIPEMD-128: short name: ripemd128 + * - RIPEMD-160: short name: ripemd160 + * - SHA-0: file sph_sha0.h, short name: sha0 + * - SHA-1: file sph_sha1.h, short name: sha1 + * - SHA-2 family, 32-bit hashes: file sph_sha2.h + * - SHA-224: short name: sha224 + * - SHA-256: short name: sha256 + * - SHA-384: short name: sha384 (64) + * - SHA-512: short name: sha512 (64) + * - Tiger family: file sph_tiger.h + * - Tiger: short name: tiger (64) + * - Tiger2: short name: tiger2 (64) + * - WHIRLPOOL family: file sph_whirlpool.h + * - WHIRLPOOL-0: short name: whirlpool0 (64) + * - WHIRLPOOL-1: short name: whirlpool1 (64) + * - WHIRLPOOL: short name: whirlpool (64) + * + * The fourteen second-round SHA-3 candidates are also implemented; + * when applicable, the implementations follow the "final" specifications + * as published for the third round of the SHA-3 competition (BLAKE, + * Groestl, JH, Keccak and Skein have been tweaked for third round). + * + * - BLAKE family: file sph_blake.h + * - BLAKE-224: short name: blake224 + * - BLAKE-256: short name: blake256 + * - BLAKE-384: short name: blake384 + * - BLAKE-512: short name: blake512 + * - BMW (Blue Midnight Wish) family: file sph_bmw.h + * - BMW-224: short name: bmw224 + * - BMW-256: short name: bmw256 + * - BMW-384: short name: bmw384 (64) + * - BMW-512: short name: bmw512 (64) + * - CubeHash family: file sph_cubehash.h (specified as + * CubeHash16/32 in the CubeHash specification) + * - CubeHash-224: short name: cubehash224 + * - CubeHash-256: short name: cubehash256 + * - CubeHash-384: short name: cubehash384 + * - CubeHash-512: short name: cubehash512 + * - ECHO family: file sph_echo.h + * - ECHO-224: short name: echo224 + * - ECHO-256: short name: echo256 + * - ECHO-384: short name: echo384 + * - ECHO-512: short name: echo512 + * - Fugue family: file sph_fugue.h + * - Fugue-224: short name: fugue224 + * - Fugue-256: short name: fugue256 + * - Fugue-384: short name: fugue384 + * - Fugue-512: short name: fugue512 + * - Groestl family: file sph_groestl.h + * - Groestl-224: short name: groestl224 + * - Groestl-256: short name: groestl256 + * - Groestl-384: short name: groestl384 + * - Groestl-512: short name: groestl512 + * - Hamsi family: file sph_hamsi.h + * - Hamsi-224: short name: hamsi224 + * - Hamsi-256: short name: hamsi256 + * - Hamsi-384: short name: hamsi384 + * - Hamsi-512: short name: hamsi512 + * - JH family: file sph_jh.h + * - JH-224: short name: jh224 + * - JH-256: short name: jh256 + * - JH-384: short name: jh384 + * - JH-512: short name: jh512 + * - Keccak family: file sph_keccak.h + * - Keccak-224: short name: keccak224 + * - Keccak-256: short name: keccak256 + * - Keccak-384: short name: keccak384 + * - Keccak-512: short name: keccak512 + * - Luffa family: file sph_luffa.h + * - Luffa-224: short name: luffa224 + * - Luffa-256: short name: luffa256 + * - Luffa-384: short name: luffa384 + * - Luffa-512: short name: luffa512 + * - Shabal family: file sph_shabal.h + * - Shabal-192: short name: shabal192 + * - Shabal-224: short name: shabal224 + * - Shabal-256: short name: shabal256 + * - Shabal-384: short name: shabal384 + * - Shabal-512: short name: shabal512 + * - SHAvite-3 family: file sph_shavite.h + * - SHAvite-224 (nominally "SHAvite-3 with 224-bit output"): + * short name: shabal224 + * - SHAvite-256 (nominally "SHAvite-3 with 256-bit output"): + * short name: shabal256 + * - SHAvite-384 (nominally "SHAvite-3 with 384-bit output"): + * short name: shabal384 + * - SHAvite-512 (nominally "SHAvite-3 with 512-bit output"): + * short name: shabal512 + * - SIMD family: file sph_simd.h + * - SIMD-224: short name: simd224 + * - SIMD-256: short name: simd256 + * - SIMD-384: short name: simd384 + * - SIMD-512: short name: simd512 + * - Skein family: file sph_skein.h + * - Skein-224 (nominally specified as Skein-512-224): short name: + * skein224 (64) + * - Skein-256 (nominally specified as Skein-512-256): short name: + * skein256 (64) + * - Skein-384 (nominally specified as Skein-512-384): short name: + * skein384 (64) + * - Skein-512 (nominally specified as Skein-512-512): short name: + * skein512 (64) + * + * For the second-round SHA-3 candidates, the functions are as specified + * for round 2, i.e. with the "tweaks" that some candidates added + * between round 1 and round 2. Also, some of the submitted packages for + * round 2 contained errors, in the specification, reference code, or + * both. sphlib implements the corrected versions. + */ + +/** @hideinitializer + * Unsigned integer type whose length is at least 32 bits; on most + * architectures, it will have a width of exactly 32 bits. Unsigned C + * types implement arithmetics modulo a power of 2; use the + * SPH_T32() macro to ensure that the value is truncated + * to exactly 32 bits. Unless otherwise specified, all macros and + * functions which accept sph_u32 values assume that these + * values fit on 32 bits, i.e. do not exceed 2^32-1, even on architectures + * where sph_u32 is larger than that. + */ +typedef __arch_dependant__ sph_u32; + +/** @hideinitializer + * Signed integer type corresponding to sph_u32; it has + * width 32 bits or more. + */ +typedef __arch_dependant__ sph_s32; + +/** @hideinitializer + * Unsigned integer type whose length is at least 64 bits; on most + * architectures which feature such a type, it will have a width of + * exactly 64 bits. C99-compliant platform will have this type; it + * is also defined when the GNU compiler (gcc) is used, and on + * platforms where unsigned long is large enough. If this + * type is not available, then some hash functions which depends on + * a 64-bit type will not be available (most notably SHA-384, SHA-512, + * Tiger and WHIRLPOOL). + */ +typedef __arch_dependant__ sph_u64; + +/** @hideinitializer + * Signed integer type corresponding to sph_u64; it has + * width 64 bits or more. + */ +typedef __arch_dependant__ sph_s64; + +/** + * This macro expands the token x into a suitable + * constant expression of type sph_u32. Depending on + * how this type is defined, a suffix such as UL may + * be appended to the argument. + * + * @param x the token to expand into a suitable constant expression + */ +#define SPH_C32(x) + +/** + * Truncate a 32-bit value to exactly 32 bits. On most systems, this is + * a no-op, recognized as such by the compiler. + * + * @param x the value to truncate (of type sph_u32) + */ +#define SPH_T32(x) + +/** + * Rotate a 32-bit value by a number of bits to the left. The rotate + * count must reside between 1 and 31. This macro assumes that its + * first argument fits in 32 bits (no extra bit allowed on machines where + * sph_u32 is wider); both arguments may be evaluated + * several times. + * + * @param x the value to rotate (of type sph_u32) + * @param n the rotation count (between 1 and 31, inclusive) + */ +#define SPH_ROTL32(x, n) + +/** + * Rotate a 32-bit value by a number of bits to the left. The rotate + * count must reside between 1 and 31. This macro assumes that its + * first argument fits in 32 bits (no extra bit allowed on machines where + * sph_u32 is wider); both arguments may be evaluated + * several times. + * + * @param x the value to rotate (of type sph_u32) + * @param n the rotation count (between 1 and 31, inclusive) + */ +#define SPH_ROTR32(x, n) + +/** + * This macro is defined on systems for which a 64-bit type has been + * detected, and is used for sph_u64. + */ +#define SPH_64 + +/** + * This macro is defined on systems for the "native" integer size is + * 64 bits (64-bit values fit in one register). + */ +#define SPH_64_TRUE + +/** + * This macro expands the token x into a suitable + * constant expression of type sph_u64. Depending on + * how this type is defined, a suffix such as ULL may + * be appended to the argument. This macro is defined only if a + * 64-bit type was detected and used for sph_u64. + * + * @param x the token to expand into a suitable constant expression + */ +#define SPH_C64(x) + +/** + * Truncate a 64-bit value to exactly 64 bits. On most systems, this is + * a no-op, recognized as such by the compiler. This macro is defined only + * if a 64-bit type was detected and used for sph_u64. + * + * @param x the value to truncate (of type sph_u64) + */ +#define SPH_T64(x) + +/** + * Rotate a 64-bit value by a number of bits to the left. The rotate + * count must reside between 1 and 63. This macro assumes that its + * first argument fits in 64 bits (no extra bit allowed on machines where + * sph_u64 is wider); both arguments may be evaluated + * several times. This macro is defined only if a 64-bit type was detected + * and used for sph_u64. + * + * @param x the value to rotate (of type sph_u64) + * @param n the rotation count (between 1 and 63, inclusive) + */ +#define SPH_ROTL64(x, n) + +/** + * Rotate a 64-bit value by a number of bits to the left. The rotate + * count must reside between 1 and 63. This macro assumes that its + * first argument fits in 64 bits (no extra bit allowed on machines where + * sph_u64 is wider); both arguments may be evaluated + * several times. This macro is defined only if a 64-bit type was detected + * and used for sph_u64. + * + * @param x the value to rotate (of type sph_u64) + * @param n the rotation count (between 1 and 63, inclusive) + */ +#define SPH_ROTR64(x, n) + +/** + * This macro evaluates to inline or an equivalent construction, + * if available on the compilation platform, or to nothing otherwise. This + * is used to declare inline functions, for which the compiler should + * endeavour to include the code directly in the caller. Inline functions + * are typically defined in header files as replacement for macros. + */ +#define SPH_INLINE + +/** + * This macro is defined if the platform has been detected as using + * little-endian convention. This implies that the sph_u32 + * type (and the sph_u64 type also, if it is defined) has + * an exact width (i.e. exactly 32-bit, respectively 64-bit). + */ +#define SPH_LITTLE_ENDIAN + +/** + * This macro is defined if the platform has been detected as using + * big-endian convention. This implies that the sph_u32 + * type (and the sph_u64 type also, if it is defined) has + * an exact width (i.e. exactly 32-bit, respectively 64-bit). + */ +#define SPH_BIG_ENDIAN + +/** + * This macro is defined if 32-bit words (and 64-bit words, if defined) + * can be read from and written to memory efficiently in little-endian + * convention. This is the case for little-endian platforms, and also + * for the big-endian platforms which have special little-endian access + * opcodes (e.g. Ultrasparc). + */ +#define SPH_LITTLE_FAST + +/** + * This macro is defined if 32-bit words (and 64-bit words, if defined) + * can be read from and written to memory efficiently in big-endian + * convention. This is the case for little-endian platforms, and also + * for the little-endian platforms which have special big-endian access + * opcodes. + */ +#define SPH_BIG_FAST + +/** + * On some platforms, this macro is defined to an unsigned integer type + * into which pointer values may be cast. The resulting value can then + * be tested for being a multiple of 2, 4 or 8, indicating an aligned + * pointer for, respectively, 16-bit, 32-bit or 64-bit memory accesses. + */ +#define SPH_UPTR + +/** + * When defined, this macro indicates that unaligned memory accesses + * are possible with only a minor penalty, and thus should be prefered + * over strategies which first copy data to an aligned buffer. + */ +#define SPH_UNALIGNED + +/** + * Byte-swap a 32-bit word (i.e. 0x12345678 becomes + * 0x78563412). This is an inline function which resorts + * to inline assembly on some platforms, for better performance. + * + * @param x the 32-bit value to byte-swap + * @return the byte-swapped value + */ +static inline sph_u32 sph_bswap32(sph_u32 x); + +/** + * Byte-swap a 64-bit word. This is an inline function which resorts + * to inline assembly on some platforms, for better performance. This + * function is defined only if a suitable 64-bit type was found for + * sph_u64 + * + * @param x the 64-bit value to byte-swap + * @return the byte-swapped value + */ +static inline sph_u64 sph_bswap64(sph_u64 x); + +/** + * Decode a 16-bit unsigned value from memory, in little-endian convention + * (least significant byte comes first). + * + * @param src the source address + * @return the decoded value + */ +static inline unsigned sph_dec16le(const void *src); + +/** + * Encode a 16-bit unsigned value into memory, in little-endian convention + * (least significant byte comes first). + * + * @param dst the destination buffer + * @param val the value to encode + */ +static inline void sph_enc16le(void *dst, unsigned val); + +/** + * Decode a 16-bit unsigned value from memory, in big-endian convention + * (most significant byte comes first). + * + * @param src the source address + * @return the decoded value + */ +static inline unsigned sph_dec16be(const void *src); + +/** + * Encode a 16-bit unsigned value into memory, in big-endian convention + * (most significant byte comes first). + * + * @param dst the destination buffer + * @param val the value to encode + */ +static inline void sph_enc16be(void *dst, unsigned val); + +/** + * Decode a 32-bit unsigned value from memory, in little-endian convention + * (least significant byte comes first). + * + * @param src the source address + * @return the decoded value + */ +static inline sph_u32 sph_dec32le(const void *src); + +/** + * Decode a 32-bit unsigned value from memory, in little-endian convention + * (least significant byte comes first). This function assumes that the + * source address is suitably aligned for a direct access, if the platform + * supports such things; it can thus be marginally faster than the generic + * sph_dec32le() function. + * + * @param src the source address + * @return the decoded value + */ +static inline sph_u32 sph_dec32le_aligned(const void *src); + +/** + * Encode a 32-bit unsigned value into memory, in little-endian convention + * (least significant byte comes first). + * + * @param dst the destination buffer + * @param val the value to encode + */ +static inline void sph_enc32le(void *dst, sph_u32 val); + +/** + * Encode a 32-bit unsigned value into memory, in little-endian convention + * (least significant byte comes first). This function assumes that the + * destination address is suitably aligned for a direct access, if the + * platform supports such things; it can thus be marginally faster than + * the generic sph_enc32le() function. + * + * @param dst the destination buffer + * @param val the value to encode + */ +static inline void sph_enc32le_aligned(void *dst, sph_u32 val); + +/** + * Decode a 32-bit unsigned value from memory, in big-endian convention + * (most significant byte comes first). + * + * @param src the source address + * @return the decoded value + */ +static inline sph_u32 sph_dec32be(const void *src); + +/** + * Decode a 32-bit unsigned value from memory, in big-endian convention + * (most significant byte comes first). This function assumes that the + * source address is suitably aligned for a direct access, if the platform + * supports such things; it can thus be marginally faster than the generic + * sph_dec32be() function. + * + * @param src the source address + * @return the decoded value + */ +static inline sph_u32 sph_dec32be_aligned(const void *src); + +/** + * Encode a 32-bit unsigned value into memory, in big-endian convention + * (most significant byte comes first). + * + * @param dst the destination buffer + * @param val the value to encode + */ +static inline void sph_enc32be(void *dst, sph_u32 val); + +/** + * Encode a 32-bit unsigned value into memory, in big-endian convention + * (most significant byte comes first). This function assumes that the + * destination address is suitably aligned for a direct access, if the + * platform supports such things; it can thus be marginally faster than + * the generic sph_enc32be() function. + * + * @param dst the destination buffer + * @param val the value to encode + */ +static inline void sph_enc32be_aligned(void *dst, sph_u32 val); + +/** + * Decode a 64-bit unsigned value from memory, in little-endian convention + * (least significant byte comes first). This function is defined only + * if a suitable 64-bit type was detected and used for sph_u64. + * + * @param src the source address + * @return the decoded value + */ +static inline sph_u64 sph_dec64le(const void *src); + +/** + * Decode a 64-bit unsigned value from memory, in little-endian convention + * (least significant byte comes first). This function assumes that the + * source address is suitably aligned for a direct access, if the platform + * supports such things; it can thus be marginally faster than the generic + * sph_dec64le() function. This function is defined only + * if a suitable 64-bit type was detected and used for sph_u64. + * + * @param src the source address + * @return the decoded value + */ +static inline sph_u64 sph_dec64le_aligned(const void *src); + +/** + * Encode a 64-bit unsigned value into memory, in little-endian convention + * (least significant byte comes first). This function is defined only + * if a suitable 64-bit type was detected and used for sph_u64. + * + * @param dst the destination buffer + * @param val the value to encode + */ +static inline void sph_enc64le(void *dst, sph_u64 val); + +/** + * Encode a 64-bit unsigned value into memory, in little-endian convention + * (least significant byte comes first). This function assumes that the + * destination address is suitably aligned for a direct access, if the + * platform supports such things; it can thus be marginally faster than + * the generic sph_enc64le() function. This function is defined + * only if a suitable 64-bit type was detected and used for + * sph_u64. + * + * @param dst the destination buffer + * @param val the value to encode + */ +static inline void sph_enc64le_aligned(void *dst, sph_u64 val); + +/** + * Decode a 64-bit unsigned value from memory, in big-endian convention + * (most significant byte comes first). This function is defined only + * if a suitable 64-bit type was detected and used for sph_u64. + * + * @param src the source address + * @return the decoded value + */ +static inline sph_u64 sph_dec64be(const void *src); + +/** + * Decode a 64-bit unsigned value from memory, in big-endian convention + * (most significant byte comes first). This function assumes that the + * source address is suitably aligned for a direct access, if the platform + * supports such things; it can thus be marginally faster than the generic + * sph_dec64be() function. This function is defined only + * if a suitable 64-bit type was detected and used for sph_u64. + * + * @param src the source address + * @return the decoded value + */ +static inline sph_u64 sph_dec64be_aligned(const void *src); + +/** + * Encode a 64-bit unsigned value into memory, in big-endian convention + * (most significant byte comes first). This function is defined only + * if a suitable 64-bit type was detected and used for sph_u64. + * + * @param dst the destination buffer + * @param val the value to encode + */ +static inline void sph_enc64be(void *dst, sph_u64 val); + +/** + * Encode a 64-bit unsigned value into memory, in big-endian convention + * (most significant byte comes first). This function assumes that the + * destination address is suitably aligned for a direct access, if the + * platform supports such things; it can thus be marginally faster than + * the generic sph_enc64be() function. This function is defined + * only if a suitable 64-bit type was detected and used for + * sph_u64. + * + * @param dst the destination buffer + * @param val the value to encode + */ +static inline void sph_enc64be_aligned(void *dst, sph_u64 val); + +#endif + +/* ============== END documentation block for Doxygen ============= */ + +#ifndef DOXYGEN_IGNORE + +/* + * We want to define the types "sph_u32" and "sph_u64" which hold + * unsigned values of at least, respectively, 32 and 64 bits. These + * tests should select appropriate types for most platforms. The + * macro "SPH_64" is defined if the 64-bit is supported. + */ + +#undef SPH_64 +#undef SPH_64_TRUE + +#if defined __STDC__ && __STDC_VERSION__ >= 199901L + +/* + * On C99 implementations, we can use to get an exact 64-bit + * type, if any, or otherwise use a wider type (which must exist, for + * C99 conformance). + */ + +#include + +#ifdef UINT32_MAX +typedef uint32_t sph_u32; +typedef int32_t sph_s32; +#else +typedef uint_fast32_t sph_u32; +typedef int_fast32_t sph_s32; +#endif +#if !SPH_NO_64 +#ifdef UINT64_MAX +typedef uint64_t sph_u64; +typedef int64_t sph_s64; +#else +typedef uint_fast64_t sph_u64; +typedef int_fast64_t sph_s64; +#endif +#endif + +#define SPH_C32(x) ((sph_u32)(x)) +#if !SPH_NO_64 +#define SPH_C64(x) ((sph_u64)(x)) +#define SPH_64 1 +#endif + +#else + +/* + * On non-C99 systems, we use "unsigned int" if it is wide enough, + * "unsigned long" otherwise. This supports all "reasonable" architectures. + * We have to be cautious: pre-C99 preprocessors handle constants + * differently in '#if' expressions. Hence the shifts to test UINT_MAX. + */ + +#if ((UINT_MAX >> 11) >> 11) >= 0x3FF + +typedef unsigned int sph_u32; +typedef int sph_s32; + +#define SPH_C32(x) ((sph_u32)(x ## U)) + +#else + +typedef unsigned long sph_u32; +typedef long sph_s32; + +#define SPH_C32(x) ((sph_u32)(x ## UL)) + +#endif + +#if !SPH_NO_64 + +/* + * We want a 64-bit type. We use "unsigned long" if it is wide enough (as + * is common on 64-bit architectures such as AMD64, Alpha or Sparcv9), + * "unsigned long long" otherwise, if available. We use ULLONG_MAX to + * test whether "unsigned long long" is available; we also know that + * gcc features this type, even if the libc header do not know it. + */ + +#if ((ULONG_MAX >> 31) >> 31) >= 3 + +typedef unsigned long sph_u64; +typedef long sph_s64; + +#define SPH_C64(x) ((sph_u64)(x ## UL)) + +#define SPH_64 1 + +#elif ((ULLONG_MAX >> 31) >> 31) >= 3 || defined __GNUC__ + +typedef unsigned long long sph_u64; +typedef long long sph_s64; + +#define SPH_C64(x) ((sph_u64)(x ## ULL)) + +#define SPH_64 1 + +#else + +/* + * No 64-bit type... + */ + +#endif + +#endif + +#endif + +/* + * If the "unsigned long" type has length 64 bits or more, then this is + * a "true" 64-bit architectures. This is also true with Visual C on + * amd64, even though the "long" type is limited to 32 bits. + */ +#if SPH_64 && (((ULONG_MAX >> 31) >> 31) >= 3 || defined _M_X64) +#define SPH_64_TRUE 1 +#endif + +/* + * Implementation note: some processors have specific opcodes to perform + * a rotation. Recent versions of gcc recognize the expression above and + * use the relevant opcodes, when appropriate. + */ + +#define SPH_T32(x) ((x) & SPH_C32(0xFFFFFFFF)) +#define SPH_ROTL32(x, n) SPH_T32(((x) << (n)) | ((x) >> (32 - (n)))) +#define SPH_ROTR32(x, n) SPH_ROTL32(x, (32 - (n))) + +#if SPH_64 + +#define SPH_T64(x) ((x) & SPH_C64(0xFFFFFFFFFFFFFFFF)) +#define SPH_ROTL64(x, n) SPH_T64(((x) << (n)) | ((x) >> (64 - (n)))) +#define SPH_ROTR64(x, n) SPH_ROTL64(x, (64 - (n))) + +#endif + +#ifndef DOXYGEN_IGNORE +/* + * Define SPH_INLINE to be an "inline" qualifier, if available. We define + * some small macro-like functions which benefit greatly from being inlined. + */ +#if (defined __STDC__ && __STDC_VERSION__ >= 199901L) || defined __GNUC__ +#define SPH_INLINE inline +#elif defined _MSC_VER +#define SPH_INLINE __inline +#else +#define SPH_INLINE +#endif +#endif + +/* + * We define some macros which qualify the architecture. These macros + * may be explicit set externally (e.g. as compiler parameters). The + * code below sets those macros if they are not already defined. + * + * Most macros are boolean, thus evaluate to either zero or non-zero. + * The SPH_UPTR macro is special, in that it evaluates to a C type, + * or is not defined. + * + * SPH_UPTR if defined: unsigned type to cast pointers into + * + * SPH_UNALIGNED non-zero if unaligned accesses are efficient + * SPH_LITTLE_ENDIAN non-zero if architecture is known to be little-endian + * SPH_BIG_ENDIAN non-zero if architecture is known to be big-endian + * SPH_LITTLE_FAST non-zero if little-endian decoding is fast + * SPH_BIG_FAST non-zero if big-endian decoding is fast + * + * If SPH_UPTR is defined, then encoding and decoding of 32-bit and 64-bit + * values will try to be "smart". Either SPH_LITTLE_ENDIAN or SPH_BIG_ENDIAN + * _must_ be non-zero in those situations. The 32-bit and 64-bit types + * _must_ also have an exact width. + * + * SPH_SPARCV9_GCC_32 UltraSPARC-compatible with gcc, 32-bit mode + * SPH_SPARCV9_GCC_64 UltraSPARC-compatible with gcc, 64-bit mode + * SPH_SPARCV9_GCC UltraSPARC-compatible with gcc + * SPH_I386_GCC x86-compatible (32-bit) with gcc + * SPH_I386_MSVC x86-compatible (32-bit) with Microsoft Visual C + * SPH_AMD64_GCC x86-compatible (64-bit) with gcc + * SPH_AMD64_MSVC x86-compatible (64-bit) with Microsoft Visual C + * SPH_PPC32_GCC PowerPC, 32-bit, with gcc + * SPH_PPC64_GCC PowerPC, 64-bit, with gcc + * + * TODO: enhance automatic detection, for more architectures and compilers. + * Endianness is the most important. SPH_UNALIGNED and SPH_UPTR help with + * some very fast functions (e.g. MD4) when using unaligned input data. + * The CPU-specific-with-GCC macros are useful only for inline assembly, + * normally restrained to this header file. + */ + +/* + * 32-bit x86, aka "i386 compatible". + */ +#if defined __i386__ || defined _M_IX86 + +#define SPH_DETECT_UNALIGNED 1 +#define SPH_DETECT_LITTLE_ENDIAN 1 +#define SPH_DETECT_UPTR sph_u32 +#ifdef __GNUC__ +#define SPH_DETECT_I386_GCC 1 +#endif +#ifdef _MSC_VER +#define SPH_DETECT_I386_MSVC 1 +#endif + +/* + * 64-bit x86, hereafter known as "amd64". + */ +#elif defined __x86_64 || defined _M_X64 + +#define SPH_DETECT_UNALIGNED 1 +#define SPH_DETECT_LITTLE_ENDIAN 1 +#define SPH_DETECT_UPTR sph_u64 +#ifdef __GNUC__ +#define SPH_DETECT_AMD64_GCC 1 +#endif +#ifdef _MSC_VER +#define SPH_DETECT_AMD64_MSVC 1 +#endif + +/* + * 64-bit Sparc architecture (implies v9). + */ +#elif ((defined __sparc__ || defined __sparc) && defined __arch64__) \ + || defined __sparcv9 + +#define SPH_DETECT_BIG_ENDIAN 1 +#define SPH_DETECT_UPTR sph_u64 +#ifdef __GNUC__ +#define SPH_DETECT_SPARCV9_GCC_64 1 +#define SPH_DETECT_LITTLE_FAST 1 +#endif + +/* + * 32-bit Sparc. + */ +#elif (defined __sparc__ || defined __sparc) \ + && !(defined __sparcv9 || defined __arch64__) + +#define SPH_DETECT_BIG_ENDIAN 1 +#define SPH_DETECT_UPTR sph_u32 +#if defined __GNUC__ && defined __sparc_v9__ +#define SPH_DETECT_SPARCV9_GCC_32 1 +#define SPH_DETECT_LITTLE_FAST 1 +#endif + +/* + * ARM, little-endian. + */ +#elif defined __arm__ && __ARMEL__ + +#define SPH_DETECT_LITTLE_ENDIAN 1 + +/* + * MIPS, little-endian. + */ +#elif MIPSEL || _MIPSEL || __MIPSEL || __MIPSEL__ + +#define SPH_DETECT_LITTLE_ENDIAN 1 + +/* + * MIPS, big-endian. + */ +#elif MIPSEB || _MIPSEB || __MIPSEB || __MIPSEB__ + +#define SPH_DETECT_BIG_ENDIAN 1 + +/* + * PowerPC. + */ +#elif defined __powerpc__ || defined __POWERPC__ || defined __ppc__ \ + || defined _ARCH_PPC + +/* + * Note: we do not declare cross-endian access to be "fast": even if + * using inline assembly, implementation should still assume that + * keeping the decoded word in a temporary is faster than decoding + * it again. + */ +#if defined __GNUC__ +#if SPH_64_TRUE +#define SPH_DETECT_PPC64_GCC 1 +#else +#define SPH_DETECT_PPC32_GCC 1 +#endif +#endif + +#if defined __BIG_ENDIAN__ || defined _BIG_ENDIAN +#define SPH_DETECT_BIG_ENDIAN 1 +#elif defined __LITTLE_ENDIAN__ || defined _LITTLE_ENDIAN +#define SPH_DETECT_LITTLE_ENDIAN 1 +#endif + +/* + * Itanium, 64-bit. + */ +#elif defined __ia64 || defined __ia64__ \ + || defined __itanium__ || defined _M_IA64 + +#if defined __BIG_ENDIAN__ || defined _BIG_ENDIAN +#define SPH_DETECT_BIG_ENDIAN 1 +#else +#define SPH_DETECT_LITTLE_ENDIAN 1 +#endif +#if defined __LP64__ || defined _LP64 +#define SPH_DETECT_UPTR sph_u64 +#else +#define SPH_DETECT_UPTR sph_u32 +#endif + +#endif + +#if defined SPH_DETECT_SPARCV9_GCC_32 || defined SPH_DETECT_SPARCV9_GCC_64 +#define SPH_DETECT_SPARCV9_GCC 1 +#endif + +#if defined SPH_DETECT_UNALIGNED && !defined SPH_UNALIGNED +#define SPH_UNALIGNED SPH_DETECT_UNALIGNED +#endif +#if defined SPH_DETECT_UPTR && !defined SPH_UPTR +#define SPH_UPTR SPH_DETECT_UPTR +#endif +#if defined SPH_DETECT_LITTLE_ENDIAN && !defined SPH_LITTLE_ENDIAN +#define SPH_LITTLE_ENDIAN SPH_DETECT_LITTLE_ENDIAN +#endif +#if defined SPH_DETECT_BIG_ENDIAN && !defined SPH_BIG_ENDIAN +#define SPH_BIG_ENDIAN SPH_DETECT_BIG_ENDIAN +#endif +#if defined SPH_DETECT_LITTLE_FAST && !defined SPH_LITTLE_FAST +#define SPH_LITTLE_FAST SPH_DETECT_LITTLE_FAST +#endif +#if defined SPH_DETECT_BIG_FAST && !defined SPH_BIG_FAST +#define SPH_BIG_FAST SPH_DETECT_BIG_FAST +#endif +#if defined SPH_DETECT_SPARCV9_GCC_32 && !defined SPH_SPARCV9_GCC_32 +#define SPH_SPARCV9_GCC_32 SPH_DETECT_SPARCV9_GCC_32 +#endif +#if defined SPH_DETECT_SPARCV9_GCC_64 && !defined SPH_SPARCV9_GCC_64 +#define SPH_SPARCV9_GCC_64 SPH_DETECT_SPARCV9_GCC_64 +#endif +#if defined SPH_DETECT_SPARCV9_GCC && !defined SPH_SPARCV9_GCC +#define SPH_SPARCV9_GCC SPH_DETECT_SPARCV9_GCC +#endif +#if defined SPH_DETECT_I386_GCC && !defined SPH_I386_GCC +#define SPH_I386_GCC SPH_DETECT_I386_GCC +#endif +#if defined SPH_DETECT_I386_MSVC && !defined SPH_I386_MSVC +#define SPH_I386_MSVC SPH_DETECT_I386_MSVC +#endif +#if defined SPH_DETECT_AMD64_GCC && !defined SPH_AMD64_GCC +#define SPH_AMD64_GCC SPH_DETECT_AMD64_GCC +#endif +#if defined SPH_DETECT_AMD64_MSVC && !defined SPH_AMD64_MSVC +#define SPH_AMD64_MSVC SPH_DETECT_AMD64_MSVC +#endif +#if defined SPH_DETECT_PPC32_GCC && !defined SPH_PPC32_GCC +#define SPH_PPC32_GCC SPH_DETECT_PPC32_GCC +#endif +#if defined SPH_DETECT_PPC64_GCC && !defined SPH_PPC64_GCC +#define SPH_PPC64_GCC SPH_DETECT_PPC64_GCC +#endif + +#if SPH_LITTLE_ENDIAN && !defined SPH_LITTLE_FAST +#define SPH_LITTLE_FAST 1 +#endif +#if SPH_BIG_ENDIAN && !defined SPH_BIG_FAST +#define SPH_BIG_FAST 1 +#endif + +#if defined SPH_UPTR && !(SPH_LITTLE_ENDIAN || SPH_BIG_ENDIAN) +#error SPH_UPTR defined, but endianness is not known. +#endif + +#if SPH_I386_GCC && !SPH_NO_ASM + +/* + * On x86 32-bit, with gcc, we use the bswapl opcode to byte-swap 32-bit + * values. + */ + +static SPH_INLINE sph_u32 +sph_bswap32(sph_u32 x) +{ + __asm__ __volatile__ ("bswapl %0" : "=r" (x) : "0" (x)); + return x; +} + +#if SPH_64 + +static SPH_INLINE sph_u64 +sph_bswap64(sph_u64 x) +{ + return ((sph_u64)sph_bswap32((sph_u32)x) << 32) + | (sph_u64)sph_bswap32((sph_u32)(x >> 32)); +} + +#endif + +#elif SPH_AMD64_GCC && !SPH_NO_ASM + +/* + * On x86 64-bit, with gcc, we use the bswapl opcode to byte-swap 32-bit + * and 64-bit values. + */ + +static SPH_INLINE sph_u32 +sph_bswap32(sph_u32 x) +{ + __asm__ __volatile__ ("bswapl %0" : "=r" (x) : "0" (x)); + return x; +} + +#if SPH_64 + +static SPH_INLINE sph_u64 +sph_bswap64(sph_u64 x) +{ + __asm__ __volatile__ ("bswapq %0" : "=r" (x) : "0" (x)); + return x; +} + +#endif + +/* + * Disabled code. Apparently, Microsoft Visual C 2005 is smart enough + * to generate proper opcodes for endianness swapping with the pure C + * implementation below. + * + +#elif SPH_I386_MSVC && !SPH_NO_ASM + +static __inline sph_u32 __declspec(naked) __fastcall +sph_bswap32(sph_u32 x) +{ + __asm { + bswap ecx + mov eax,ecx + ret + } +} + +#if SPH_64 + +static SPH_INLINE sph_u64 +sph_bswap64(sph_u64 x) +{ + return ((sph_u64)sph_bswap32((sph_u32)x) << 32) + | (sph_u64)sph_bswap32((sph_u32)(x >> 32)); +} + +#endif + + * + * [end of disabled code] + */ + +#else + +static SPH_INLINE sph_u32 +sph_bswap32(sph_u32 x) +{ + x = SPH_T32((x << 16) | (x >> 16)); + x = ((x & SPH_C32(0xFF00FF00)) >> 8) + | ((x & SPH_C32(0x00FF00FF)) << 8); + return x; +} + +#if SPH_64 + +/** + * Byte-swap a 64-bit value. + * + * @param x the input value + * @return the byte-swapped value + */ +static SPH_INLINE sph_u64 +sph_bswap64(sph_u64 x) +{ + x = SPH_T64((x << 32) | (x >> 32)); + x = ((x & SPH_C64(0xFFFF0000FFFF0000)) >> 16) + | ((x & SPH_C64(0x0000FFFF0000FFFF)) << 16); + x = ((x & SPH_C64(0xFF00FF00FF00FF00)) >> 8) + | ((x & SPH_C64(0x00FF00FF00FF00FF)) << 8); + return x; +} + +#endif + +#endif + +#if SPH_SPARCV9_GCC && !SPH_NO_ASM + +/* + * On UltraSPARC systems, native ordering is big-endian, but it is + * possible to perform little-endian read accesses by specifying the + * address space 0x88 (ASI_PRIMARY_LITTLE). Basically, either we use + * the opcode "lda [%reg]0x88,%dst", where %reg is the register which + * contains the source address and %dst is the destination register, + * or we use "lda [%reg+imm]%asi,%dst", which uses the %asi register + * to get the address space name. The latter format is better since it + * combines an addition and the actual access in a single opcode; but + * it requires the setting (and subsequent resetting) of %asi, which is + * slow. Some operations (i.e. MD5 compression function) combine many + * successive little-endian read accesses, which may share the same + * %asi setting. The macros below contain the appropriate inline + * assembly. + */ + +#define SPH_SPARCV9_SET_ASI \ + sph_u32 sph_sparcv9_asi; \ + __asm__ __volatile__ ( \ + "rd %%asi,%0\n\twr %%g0,0x88,%%asi" : "=r" (sph_sparcv9_asi)); + +#define SPH_SPARCV9_RESET_ASI \ + __asm__ __volatile__ ("wr %%g0,%0,%%asi" : : "r" (sph_sparcv9_asi)); + +#define SPH_SPARCV9_DEC32LE(base, idx) ({ \ + sph_u32 sph_sparcv9_tmp; \ + __asm__ __volatile__ ("lda [%1+" #idx "*4]%%asi,%0" \ + : "=r" (sph_sparcv9_tmp) : "r" (base)); \ + sph_sparcv9_tmp; \ + }) + +#endif + +static SPH_INLINE void +sph_enc16be(void *dst, unsigned val) +{ + ((unsigned char *)dst)[0] = (val >> 8); + ((unsigned char *)dst)[1] = val; +} + +static SPH_INLINE unsigned +sph_dec16be(const void *src) +{ + return ((unsigned)(((const unsigned char *)src)[0]) << 8) + | (unsigned)(((const unsigned char *)src)[1]); +} + +static SPH_INLINE void +sph_enc16le(void *dst, unsigned val) +{ + ((unsigned char *)dst)[0] = val; + ((unsigned char *)dst)[1] = val >> 8; +} + +static SPH_INLINE unsigned +sph_dec16le(const void *src) +{ + return (unsigned)(((const unsigned char *)src)[0]) + | ((unsigned)(((const unsigned char *)src)[1]) << 8); +} + +/** + * Encode a 32-bit value into the provided buffer (big endian convention). + * + * @param dst the destination buffer + * @param val the 32-bit value to encode + */ +static SPH_INLINE void +sph_enc32be(void *dst, sph_u32 val) +{ +#if defined SPH_UPTR +#if SPH_UNALIGNED +#if SPH_LITTLE_ENDIAN + val = sph_bswap32(val); +#endif + *(sph_u32 *)dst = val; +#else + if (((SPH_UPTR)dst & 3) == 0) { +#if SPH_LITTLE_ENDIAN + val = sph_bswap32(val); +#endif + *(sph_u32 *)dst = val; + } else { + ((unsigned char *)dst)[0] = (val >> 24); + ((unsigned char *)dst)[1] = (val >> 16); + ((unsigned char *)dst)[2] = (val >> 8); + ((unsigned char *)dst)[3] = val; + } +#endif +#else + ((unsigned char *)dst)[0] = (val >> 24); + ((unsigned char *)dst)[1] = (val >> 16); + ((unsigned char *)dst)[2] = (val >> 8); + ((unsigned char *)dst)[3] = val; +#endif +} + +/** + * Encode a 32-bit value into the provided buffer (big endian convention). + * The destination buffer must be properly aligned. + * + * @param dst the destination buffer (32-bit aligned) + * @param val the value to encode + */ +static SPH_INLINE void +sph_enc32be_aligned(void *dst, sph_u32 val) +{ +#if SPH_LITTLE_ENDIAN + *(sph_u32 *)dst = sph_bswap32(val); +#elif SPH_BIG_ENDIAN + *(sph_u32 *)dst = val; +#else + ((unsigned char *)dst)[0] = (val >> 24); + ((unsigned char *)dst)[1] = (val >> 16); + ((unsigned char *)dst)[2] = (val >> 8); + ((unsigned char *)dst)[3] = val; +#endif +} + +/** + * Decode a 32-bit value from the provided buffer (big endian convention). + * + * @param src the source buffer + * @return the decoded value + */ +static SPH_INLINE sph_u32 +sph_dec32be(const void *src) +{ +#if defined SPH_UPTR +#if SPH_UNALIGNED +#if SPH_LITTLE_ENDIAN + return sph_bswap32(*(const sph_u32 *)src); +#else + return *(const sph_u32 *)src; +#endif +#else + if (((SPH_UPTR)src & 3) == 0) { +#if SPH_LITTLE_ENDIAN + return sph_bswap32(*(const sph_u32 *)src); +#else + return *(const sph_u32 *)src; +#endif + } else { + return ((sph_u32)(((const unsigned char *)src)[0]) << 24) + | ((sph_u32)(((const unsigned char *)src)[1]) << 16) + | ((sph_u32)(((const unsigned char *)src)[2]) << 8) + | (sph_u32)(((const unsigned char *)src)[3]); + } +#endif +#else + return ((sph_u32)(((const unsigned char *)src)[0]) << 24) + | ((sph_u32)(((const unsigned char *)src)[1]) << 16) + | ((sph_u32)(((const unsigned char *)src)[2]) << 8) + | (sph_u32)(((const unsigned char *)src)[3]); +#endif +} + +/** + * Decode a 32-bit value from the provided buffer (big endian convention). + * The source buffer must be properly aligned. + * + * @param src the source buffer (32-bit aligned) + * @return the decoded value + */ +static SPH_INLINE sph_u32 +sph_dec32be_aligned(const void *src) +{ +#if SPH_LITTLE_ENDIAN + return sph_bswap32(*(const sph_u32 *)src); +#elif SPH_BIG_ENDIAN + return *(const sph_u32 *)src; +#else + return ((sph_u32)(((const unsigned char *)src)[0]) << 24) + | ((sph_u32)(((const unsigned char *)src)[1]) << 16) + | ((sph_u32)(((const unsigned char *)src)[2]) << 8) + | (sph_u32)(((const unsigned char *)src)[3]); +#endif +} + +/** + * Encode a 32-bit value into the provided buffer (little endian convention). + * + * @param dst the destination buffer + * @param val the 32-bit value to encode + */ +static SPH_INLINE void +sph_enc32le(void *dst, sph_u32 val) +{ +#if defined SPH_UPTR +#if SPH_UNALIGNED +#if SPH_BIG_ENDIAN + val = sph_bswap32(val); +#endif + *(sph_u32 *)dst = val; +#else + if (((SPH_UPTR)dst & 3) == 0) { +#if SPH_BIG_ENDIAN + val = sph_bswap32(val); +#endif + *(sph_u32 *)dst = val; + } else { + ((unsigned char *)dst)[0] = val; + ((unsigned char *)dst)[1] = (val >> 8); + ((unsigned char *)dst)[2] = (val >> 16); + ((unsigned char *)dst)[3] = (val >> 24); + } +#endif +#else + ((unsigned char *)dst)[0] = val; + ((unsigned char *)dst)[1] = (val >> 8); + ((unsigned char *)dst)[2] = (val >> 16); + ((unsigned char *)dst)[3] = (val >> 24); +#endif +} + +/** + * Encode a 32-bit value into the provided buffer (little endian convention). + * The destination buffer must be properly aligned. + * + * @param dst the destination buffer (32-bit aligned) + * @param val the value to encode + */ +static SPH_INLINE void +sph_enc32le_aligned(void *dst, sph_u32 val) +{ +#if SPH_LITTLE_ENDIAN + *(sph_u32 *)dst = val; +#elif SPH_BIG_ENDIAN + *(sph_u32 *)dst = sph_bswap32(val); +#else + ((unsigned char *)dst)[0] = val; + ((unsigned char *)dst)[1] = (val >> 8); + ((unsigned char *)dst)[2] = (val >> 16); + ((unsigned char *)dst)[3] = (val >> 24); +#endif +} + +/** + * Decode a 32-bit value from the provided buffer (little endian convention). + * + * @param src the source buffer + * @return the decoded value + */ +static SPH_INLINE sph_u32 +sph_dec32le(const void *src) +{ +#if defined SPH_UPTR +#if SPH_UNALIGNED +#if SPH_BIG_ENDIAN + return sph_bswap32(*(const sph_u32 *)src); +#else + return *(const sph_u32 *)src; +#endif +#else + if (((SPH_UPTR)src & 3) == 0) { +#if SPH_BIG_ENDIAN +#if SPH_SPARCV9_GCC && !SPH_NO_ASM + sph_u32 tmp; + + /* + * "__volatile__" is needed here because without it, + * gcc-3.4.3 miscompiles the code and performs the + * access before the test on the address, thus triggering + * a bus error... + */ + __asm__ __volatile__ ( + "lda [%1]0x88,%0" : "=r" (tmp) : "r" (src)); + return tmp; +/* + * On PowerPC, this turns out not to be worth the effort: the inline + * assembly makes GCC optimizer uncomfortable, which tends to nullify + * the decoding gains. + * + * For most hash functions, using this inline assembly trick changes + * hashing speed by less than 5% and often _reduces_ it. The biggest + * gains are for MD4 (+11%) and CubeHash (+30%). For all others, it is + * less then 10%. The speed gain on CubeHash is probably due to the + * chronic shortage of registers that CubeHash endures; for the other + * functions, the generic code appears to be efficient enough already. + * +#elif (SPH_PPC32_GCC || SPH_PPC64_GCC) && !SPH_NO_ASM + sph_u32 tmp; + + __asm__ __volatile__ ( + "lwbrx %0,0,%1" : "=r" (tmp) : "r" (src)); + return tmp; + */ +#else + return sph_bswap32(*(const sph_u32 *)src); +#endif +#else + return *(const sph_u32 *)src; +#endif + } else { + return (sph_u32)(((const unsigned char *)src)[0]) + | ((sph_u32)(((const unsigned char *)src)[1]) << 8) + | ((sph_u32)(((const unsigned char *)src)[2]) << 16) + | ((sph_u32)(((const unsigned char *)src)[3]) << 24); + } +#endif +#else + return (sph_u32)(((const unsigned char *)src)[0]) + | ((sph_u32)(((const unsigned char *)src)[1]) << 8) + | ((sph_u32)(((const unsigned char *)src)[2]) << 16) + | ((sph_u32)(((const unsigned char *)src)[3]) << 24); +#endif +} + +/** + * Decode a 32-bit value from the provided buffer (little endian convention). + * The source buffer must be properly aligned. + * + * @param src the source buffer (32-bit aligned) + * @return the decoded value + */ +static SPH_INLINE sph_u32 +sph_dec32le_aligned(const void *src) +{ +#if SPH_LITTLE_ENDIAN + return *(const sph_u32 *)src; +#elif SPH_BIG_ENDIAN +#if SPH_SPARCV9_GCC && !SPH_NO_ASM + sph_u32 tmp; + + __asm__ __volatile__ ("lda [%1]0x88,%0" : "=r" (tmp) : "r" (src)); + return tmp; +/* + * Not worth it generally. + * +#elif (SPH_PPC32_GCC || SPH_PPC64_GCC) && !SPH_NO_ASM + sph_u32 tmp; + + __asm__ __volatile__ ("lwbrx %0,0,%1" : "=r" (tmp) : "r" (src)); + return tmp; + */ +#else + return sph_bswap32(*(const sph_u32 *)src); +#endif +#else + return (sph_u32)(((const unsigned char *)src)[0]) + | ((sph_u32)(((const unsigned char *)src)[1]) << 8) + | ((sph_u32)(((const unsigned char *)src)[2]) << 16) + | ((sph_u32)(((const unsigned char *)src)[3]) << 24); +#endif +} + +#if SPH_64 + +/** + * Encode a 64-bit value into the provided buffer (big endian convention). + * + * @param dst the destination buffer + * @param val the 64-bit value to encode + */ +static SPH_INLINE void +sph_enc64be(void *dst, sph_u64 val) +{ +#if defined SPH_UPTR +#if SPH_UNALIGNED +#if SPH_LITTLE_ENDIAN + val = sph_bswap64(val); +#endif + *(sph_u64 *)dst = val; +#else + if (((SPH_UPTR)dst & 7) == 0) { +#if SPH_LITTLE_ENDIAN + val = sph_bswap64(val); +#endif + *(sph_u64 *)dst = val; + } else { + ((unsigned char *)dst)[0] = (val >> 56); + ((unsigned char *)dst)[1] = (val >> 48); + ((unsigned char *)dst)[2] = (val >> 40); + ((unsigned char *)dst)[3] = (val >> 32); + ((unsigned char *)dst)[4] = (val >> 24); + ((unsigned char *)dst)[5] = (val >> 16); + ((unsigned char *)dst)[6] = (val >> 8); + ((unsigned char *)dst)[7] = val; + } +#endif +#else + ((unsigned char *)dst)[0] = (val >> 56); + ((unsigned char *)dst)[1] = (val >> 48); + ((unsigned char *)dst)[2] = (val >> 40); + ((unsigned char *)dst)[3] = (val >> 32); + ((unsigned char *)dst)[4] = (val >> 24); + ((unsigned char *)dst)[5] = (val >> 16); + ((unsigned char *)dst)[6] = (val >> 8); + ((unsigned char *)dst)[7] = val; +#endif +} + +/** + * Encode a 64-bit value into the provided buffer (big endian convention). + * The destination buffer must be properly aligned. + * + * @param dst the destination buffer (64-bit aligned) + * @param val the value to encode + */ +static SPH_INLINE void +sph_enc64be_aligned(void *dst, sph_u64 val) +{ +#if SPH_LITTLE_ENDIAN + *(sph_u64 *)dst = sph_bswap64(val); +#elif SPH_BIG_ENDIAN + *(sph_u64 *)dst = val; +#else + ((unsigned char *)dst)[0] = (val >> 56); + ((unsigned char *)dst)[1] = (val >> 48); + ((unsigned char *)dst)[2] = (val >> 40); + ((unsigned char *)dst)[3] = (val >> 32); + ((unsigned char *)dst)[4] = (val >> 24); + ((unsigned char *)dst)[5] = (val >> 16); + ((unsigned char *)dst)[6] = (val >> 8); + ((unsigned char *)dst)[7] = val; +#endif +} + +/** + * Decode a 64-bit value from the provided buffer (big endian convention). + * + * @param src the source buffer + * @return the decoded value + */ +static SPH_INLINE sph_u64 +sph_dec64be(const void *src) +{ +#if defined SPH_UPTR +#if SPH_UNALIGNED +#if SPH_LITTLE_ENDIAN + return sph_bswap64(*(const sph_u64 *)src); +#else + return *(const sph_u64 *)src; +#endif +#else + if (((SPH_UPTR)src & 7) == 0) { +#if SPH_LITTLE_ENDIAN + return sph_bswap64(*(const sph_u64 *)src); +#else + return *(const sph_u64 *)src; +#endif + } else { + return ((sph_u64)(((const unsigned char *)src)[0]) << 56) + | ((sph_u64)(((const unsigned char *)src)[1]) << 48) + | ((sph_u64)(((const unsigned char *)src)[2]) << 40) + | ((sph_u64)(((const unsigned char *)src)[3]) << 32) + | ((sph_u64)(((const unsigned char *)src)[4]) << 24) + | ((sph_u64)(((const unsigned char *)src)[5]) << 16) + | ((sph_u64)(((const unsigned char *)src)[6]) << 8) + | (sph_u64)(((const unsigned char *)src)[7]); + } +#endif +#else + return ((sph_u64)(((const unsigned char *)src)[0]) << 56) + | ((sph_u64)(((const unsigned char *)src)[1]) << 48) + | ((sph_u64)(((const unsigned char *)src)[2]) << 40) + | ((sph_u64)(((const unsigned char *)src)[3]) << 32) + | ((sph_u64)(((const unsigned char *)src)[4]) << 24) + | ((sph_u64)(((const unsigned char *)src)[5]) << 16) + | ((sph_u64)(((const unsigned char *)src)[6]) << 8) + | (sph_u64)(((const unsigned char *)src)[7]); +#endif +} + +/** + * Decode a 64-bit value from the provided buffer (big endian convention). + * The source buffer must be properly aligned. + * + * @param src the source buffer (64-bit aligned) + * @return the decoded value + */ +static SPH_INLINE sph_u64 +sph_dec64be_aligned(const void *src) +{ +#if SPH_LITTLE_ENDIAN + return sph_bswap64(*(const sph_u64 *)src); +#elif SPH_BIG_ENDIAN + return *(const sph_u64 *)src; +#else + return ((sph_u64)(((const unsigned char *)src)[0]) << 56) + | ((sph_u64)(((const unsigned char *)src)[1]) << 48) + | ((sph_u64)(((const unsigned char *)src)[2]) << 40) + | ((sph_u64)(((const unsigned char *)src)[3]) << 32) + | ((sph_u64)(((const unsigned char *)src)[4]) << 24) + | ((sph_u64)(((const unsigned char *)src)[5]) << 16) + | ((sph_u64)(((const unsigned char *)src)[6]) << 8) + | (sph_u64)(((const unsigned char *)src)[7]); +#endif +} + +/** + * Encode a 64-bit value into the provided buffer (little endian convention). + * + * @param dst the destination buffer + * @param val the 64-bit value to encode + */ +static SPH_INLINE void +sph_enc64le(void *dst, sph_u64 val) +{ +#if defined SPH_UPTR +#if SPH_UNALIGNED +#if SPH_BIG_ENDIAN + val = sph_bswap64(val); +#endif + *(sph_u64 *)dst = val; +#else + if (((SPH_UPTR)dst & 7) == 0) { +#if SPH_BIG_ENDIAN + val = sph_bswap64(val); +#endif + *(sph_u64 *)dst = val; + } else { + ((unsigned char *)dst)[0] = val; + ((unsigned char *)dst)[1] = (val >> 8); + ((unsigned char *)dst)[2] = (val >> 16); + ((unsigned char *)dst)[3] = (val >> 24); + ((unsigned char *)dst)[4] = (val >> 32); + ((unsigned char *)dst)[5] = (val >> 40); + ((unsigned char *)dst)[6] = (val >> 48); + ((unsigned char *)dst)[7] = (val >> 56); + } +#endif +#else + ((unsigned char *)dst)[0] = val; + ((unsigned char *)dst)[1] = (val >> 8); + ((unsigned char *)dst)[2] = (val >> 16); + ((unsigned char *)dst)[3] = (val >> 24); + ((unsigned char *)dst)[4] = (val >> 32); + ((unsigned char *)dst)[5] = (val >> 40); + ((unsigned char *)dst)[6] = (val >> 48); + ((unsigned char *)dst)[7] = (val >> 56); +#endif +} + +/** + * Encode a 64-bit value into the provided buffer (little endian convention). + * The destination buffer must be properly aligned. + * + * @param dst the destination buffer (64-bit aligned) + * @param val the value to encode + */ +static SPH_INLINE void +sph_enc64le_aligned(void *dst, sph_u64 val) +{ +#if SPH_LITTLE_ENDIAN + *(sph_u64 *)dst = val; +#elif SPH_BIG_ENDIAN + *(sph_u64 *)dst = sph_bswap64(val); +#else + ((unsigned char *)dst)[0] = val; + ((unsigned char *)dst)[1] = (val >> 8); + ((unsigned char *)dst)[2] = (val >> 16); + ((unsigned char *)dst)[3] = (val >> 24); + ((unsigned char *)dst)[4] = (val >> 32); + ((unsigned char *)dst)[5] = (val >> 40); + ((unsigned char *)dst)[6] = (val >> 48); + ((unsigned char *)dst)[7] = (val >> 56); +#endif +} + +/** + * Decode a 64-bit value from the provided buffer (little endian convention). + * + * @param src the source buffer + * @return the decoded value + */ +static SPH_INLINE sph_u64 +sph_dec64le(const void *src) +{ +#if defined SPH_UPTR +#if SPH_UNALIGNED +#if SPH_BIG_ENDIAN + return sph_bswap64(*(const sph_u64 *)src); +#else + return *(const sph_u64 *)src; +#endif +#else + if (((SPH_UPTR)src & 7) == 0) { +#if SPH_BIG_ENDIAN +#if SPH_SPARCV9_GCC_64 && !SPH_NO_ASM + sph_u64 tmp; + + __asm__ __volatile__ ( + "ldxa [%1]0x88,%0" : "=r" (tmp) : "r" (src)); + return tmp; +/* + * Not worth it generally. + * +#elif SPH_PPC32_GCC && !SPH_NO_ASM + return (sph_u64)sph_dec32le_aligned(src) + | ((sph_u64)sph_dec32le_aligned( + (const char *)src + 4) << 32); +#elif SPH_PPC64_GCC && !SPH_NO_ASM + sph_u64 tmp; + + __asm__ __volatile__ ( + "ldbrx %0,0,%1" : "=r" (tmp) : "r" (src)); + return tmp; + */ +#else + return sph_bswap64(*(const sph_u64 *)src); +#endif +#else + return *(const sph_u64 *)src; +#endif + } else { + return (sph_u64)(((const unsigned char *)src)[0]) + | ((sph_u64)(((const unsigned char *)src)[1]) << 8) + | ((sph_u64)(((const unsigned char *)src)[2]) << 16) + | ((sph_u64)(((const unsigned char *)src)[3]) << 24) + | ((sph_u64)(((const unsigned char *)src)[4]) << 32) + | ((sph_u64)(((const unsigned char *)src)[5]) << 40) + | ((sph_u64)(((const unsigned char *)src)[6]) << 48) + | ((sph_u64)(((const unsigned char *)src)[7]) << 56); + } +#endif +#else + return (sph_u64)(((const unsigned char *)src)[0]) + | ((sph_u64)(((const unsigned char *)src)[1]) << 8) + | ((sph_u64)(((const unsigned char *)src)[2]) << 16) + | ((sph_u64)(((const unsigned char *)src)[3]) << 24) + | ((sph_u64)(((const unsigned char *)src)[4]) << 32) + | ((sph_u64)(((const unsigned char *)src)[5]) << 40) + | ((sph_u64)(((const unsigned char *)src)[6]) << 48) + | ((sph_u64)(((const unsigned char *)src)[7]) << 56); +#endif +} + +/** + * Decode a 64-bit value from the provided buffer (little endian convention). + * The source buffer must be properly aligned. + * + * @param src the source buffer (64-bit aligned) + * @return the decoded value + */ +static SPH_INLINE sph_u64 +sph_dec64le_aligned(const void *src) +{ +#if SPH_LITTLE_ENDIAN + return *(const sph_u64 *)src; +#elif SPH_BIG_ENDIAN +#if SPH_SPARCV9_GCC_64 && !SPH_NO_ASM + sph_u64 tmp; + + __asm__ __volatile__ ("ldxa [%1]0x88,%0" : "=r" (tmp) : "r" (src)); + return tmp; +/* + * Not worth it generally. + * +#elif SPH_PPC32_GCC && !SPH_NO_ASM + return (sph_u64)sph_dec32le_aligned(src) + | ((sph_u64)sph_dec32le_aligned((const char *)src + 4) << 32); +#elif SPH_PPC64_GCC && !SPH_NO_ASM + sph_u64 tmp; + + __asm__ __volatile__ ("ldbrx %0,0,%1" : "=r" (tmp) : "r" (src)); + return tmp; + */ +#else + return sph_bswap64(*(const sph_u64 *)src); +#endif +#else + return (sph_u64)(((const unsigned char *)src)[0]) + | ((sph_u64)(((const unsigned char *)src)[1]) << 8) + | ((sph_u64)(((const unsigned char *)src)[2]) << 16) + | ((sph_u64)(((const unsigned char *)src)[3]) << 24) + | ((sph_u64)(((const unsigned char *)src)[4]) << 32) + | ((sph_u64)(((const unsigned char *)src)[5]) << 40) + | ((sph_u64)(((const unsigned char *)src)[6]) << 48) + | ((sph_u64)(((const unsigned char *)src)[7]) << 56); +#endif +} + +#endif + +#endif /* Doxygen excluded block */ + +#endif diff --git a/native/ed25519/sign.c b/native/ed25519/sign.c new file mode 100644 index 0000000..de53742 --- /dev/null +++ b/native/ed25519/sign.c @@ -0,0 +1,41 @@ +#include +#include "crypto_sign.h" +#include "crypto_hash_sha512.h" +#include "ge.h" +#include "sc.h" + +int crypto_sign( + unsigned char *sm,unsigned long long *smlen, + const unsigned char *m,unsigned long long mlen, + const unsigned char *sk +) +{ + unsigned char pk[32]; + unsigned char az[64]; + unsigned char nonce[64]; + unsigned char hram[64]; + ge_p3 R; + + memmove(pk,sk + 32,32); + + crypto_hash_sha512(az,sk,32); + az[0] &= 248; + az[31] &= 63; + az[31] |= 64; + + *smlen = mlen + 64; + memmove(sm + 64,m,mlen); + memmove(sm + 32,az + 32,32); + crypto_hash_sha512(nonce,sm + 32,mlen + 32); + memmove(sm + 32,pk,32); + + sc_reduce(nonce); + ge_scalarmult_base(&R,nonce); + ge_p3_tobytes(sm,&R); + + crypto_hash_sha512(hram,sm,mlen + 64); + sc_reduce(hram); + sc_muladd(sm + 32,hram,az,nonce); + + return 0; +} diff --git a/native/ed25519/sqrtm1.h b/native/ed25519/sqrtm1.h new file mode 100644 index 0000000..d8caa23 --- /dev/null +++ b/native/ed25519/sqrtm1.h @@ -0,0 +1 @@ +-32595792,-7943725,9377950,3500415,12389472,-272473,-25146209,-2005654,326686,11406482 diff --git a/package.json b/package.json new file mode 100644 index 0000000..e499be3 --- /dev/null +++ b/package.json @@ -0,0 +1,31 @@ +{ + "name": "libsignal-protocol", + "repository": "https://github.com/WhisperSystems/libsignal-protocol-javascript.git", + "version": "1.0.0", + "license": "GPL-3.0", + "dependencies": { + "long": "^3.1.0", + "bytebuffer": "^3.5.5", + "protobufjs": "5.0.1" + }, + "devDependencies": { + "blanket": "1.1.7", + "chai": "^3.5.0", + "grunt": "^0.4.5", + "grunt-cli": "^0.1.13", + "grunt-contrib-concat": "^0.5.0", + "grunt-contrib-connect": "^0.9.0", + "grunt-contrib-jshint": "^0.10.0", + "grunt-contrib-sass": "^0.8.1", + "grunt-contrib-watch": "^0.6.1", + "grunt-jscs": "^1.1.0", + "grunt-preen": "^1.0.0", + "grunt-saucelabs": "^8.3.3", + "jquery": "^2.2.3", + "mocha": "^2.4.5" + }, + "scripts": { + "test": "grunt test", + "lint": "grunt jshint" + } +} diff --git a/protos/WhisperTextProtocol.proto b/protos/WhisperTextProtocol.proto new file mode 100644 index 0000000..eaa9a75 --- /dev/null +++ b/protos/WhisperTextProtocol.proto @@ -0,0 +1,28 @@ +package textsecure; + +option java_package = "org.whispersystems.libsignal.protocol"; +option java_outer_classname = "WhisperProtos"; + +message WhisperMessage { + optional bytes ephemeralKey = 1; + optional uint32 counter = 2; + optional uint32 previousCounter = 3; + optional bytes ciphertext = 4; // PushMessageContent +} + +message PreKeyWhisperMessage { + optional uint32 registrationId = 5; + optional uint32 preKeyId = 1; + optional uint32 signedPreKeyId = 6; + optional bytes baseKey = 2; + optional bytes identityKey = 3; + optional bytes message = 4; // WhisperMessage +} + +message KeyExchangeMessage { + optional uint32 id = 1; + optional bytes baseKey = 2; + optional bytes ephemeralKey = 3; + optional bytes identityKey = 4; + optional bytes baseKeySignature = 5; +} diff --git a/src/Curve.js b/src/Curve.js new file mode 100644 index 0000000..4bb7cf7 --- /dev/null +++ b/src/Curve.js @@ -0,0 +1,109 @@ +(function() { + 'use strict'; + + function validatePrivKey(privKey) { + if (privKey === undefined || !(privKey instanceof ArrayBuffer) || privKey.byteLength != 32) { + throw new Error("Invalid private key"); + } + } + function validatePubKeyFormat(pubKey) { + if (pubKey === undefined || ((pubKey.byteLength != 33 || new Uint8Array(pubKey)[0] != 5) && pubKey.byteLength != 32)) { + throw new Error("Invalid public key"); + } + if (pubKey.byteLength == 33) { + return pubKey.slice(1); + } else { + console.error("WARNING: Expected pubkey of length 33, please report the ST and client that generated the pubkey"); + return pubKey; + } + } + + function processKeys(raw_keys) { + // prepend version byte + var origPub = new Uint8Array(raw_keys.pubKey); + var pub = new Uint8Array(33); + pub.set(origPub, 1); + pub[0] = 5; + + return { pubKey: pub.buffer, privKey: raw_keys.privKey }; + } + + function wrapCurve25519(curve25519) { + return { + // Curve 25519 crypto + createKeyPair: function(privKey) { + validatePrivKey(privKey); + var raw_keys = curve25519.keyPair(privKey); + if (raw_keys instanceof Promise) { + return raw_keys.then(processKeys); + } else { + return processKeys(raw_keys); + } + }, + ECDHE: function(pubKey, privKey) { + pubKey = validatePubKeyFormat(pubKey); + validatePrivKey(privKey); + + if (pubKey === undefined || pubKey.byteLength != 32) { + throw new Error("Invalid public key"); + } + + return curve25519.sharedSecret(pubKey, privKey); + }, + Ed25519Sign: function(privKey, message) { + validatePrivKey(privKey); + + if (message === undefined) { + throw new Error("Invalid message"); + } + + return curve25519.sign(privKey, message); + }, + Ed25519Verify: function(pubKey, msg, sig) { + pubKey = validatePubKeyFormat(pubKey); + + if (pubKey === undefined || pubKey.byteLength != 32) { + throw new Error("Invalid public key"); + } + + if (msg === undefined) { + throw new Error("Invalid message"); + } + + if (sig === undefined || sig.byteLength != 64) { + throw new Error("Invalid signature"); + } + + return curve25519.verify(pubKey, msg, sig); + } + }; + } + + Internal.Curve = wrapCurve25519(Internal.curve25519); + Internal.Curve.async = wrapCurve25519(Internal.curve25519_async); + + function wrapCurve(curve) { + return { + generateKeyPair: function() { + var privKey = Internal.crypto.getRandomBytes(32); + return curve.createKeyPair(privKey); + }, + createKeyPair: function(privKey) { + return curve.createKeyPair(privKey); + }, + calculateAgreement: function(pubKey, privKey) { + return curve.ECDHE(pubKey, privKey); + }, + verifySignature: function(pubKey, msg, sig) { + return curve.Ed25519Verify(pubKey, msg, sig); + }, + calculateSignature: function(privKey, message) { + return curve.Ed25519Sign(privKey, message); + } + }; + } + + libsignal.Curve = wrapCurve(Internal.Curve); + libsignal.Curve.async = wrapCurve(Internal.Curve.async); + +})(); diff --git a/src/KeyHelper.js b/src/KeyHelper.js new file mode 100644 index 0000000..c1a3f3e --- /dev/null +++ b/src/KeyHelper.js @@ -0,0 +1,50 @@ +function isNonNegativeInteger(n) { + return (typeof n === 'number' && (n % 1) === 0 && n >= 0); +} + +var KeyHelper = { + generateIdentityKeyPair: function() { + return Internal.crypto.createKeyPair(); + }, + + generateRegistrationId: function() { + var registrationId = new Uint16Array(Internal.crypto.getRandomBytes(2))[0]; + return registrationId & 0x3fff; + }, + + generateSignedPreKey: function (identityKeyPair, signedKeyId) { + if (!(identityKeyPair.privKey instanceof ArrayBuffer) || + identityKeyPair.privKey.byteLength != 32 || + !(identityKeyPair.pubKey instanceof ArrayBuffer) || + identityKeyPair.pubKey.byteLength != 33) { + throw new TypeError('Invalid argument for identityKeyPair'); + } + if (!isNonNegativeInteger(signedKeyId)) { + throw new TypeError( + 'Invalid argument for signedKeyId: ' + signedKeyId + ); + } + + return Internal.crypto.createKeyPair().then(function(keyPair) { + return Internal.crypto.Ed25519Sign(identityKeyPair.privKey, keyPair.pubKey).then(function(sig) { + return { + keyId : signedKeyId, + keyPair : keyPair, + signature : sig + }; + }); + }); + }, + + generatePreKey: function(keyId) { + if (!isNonNegativeInteger(keyId)) { + throw new TypeError('Invalid argument for keyId: ' + keyId); + } + + return Internal.crypto.createKeyPair().then(function(keyPair) { + return { keyId: keyId, keyPair: keyPair }; + }); + } +}; + +libsignal.KeyHelper = KeyHelper; diff --git a/src/SessionBuilder.js b/src/SessionBuilder.js new file mode 100644 index 0000000..6447bac --- /dev/null +++ b/src/SessionBuilder.js @@ -0,0 +1,221 @@ +function SessionBuilder(storage, remoteAddress) { + this.remoteAddress = remoteAddress; + this.storage = storage; +} + +SessionBuilder.prototype = { + processPreKey: function(device) { + return Internal.SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { + return this.storage.isTrustedIdentity( + this.remoteAddress.getName(), device.identityKey + ).then(function(trusted) { + if (!trusted) { + throw new Error('Identity key changed'); + } + + return Internal.crypto.Ed25519Verify( + device.identityKey, + device.signedPreKey.publicKey, + device.signedPreKey.signature + ); + }).then(function() { + return Internal.crypto.createKeyPair(); + }).then(function(baseKey) { + var devicePreKey = (device.preKey.publicKey); + return this.initSession(true, baseKey, undefined, device.identityKey, + devicePreKey, device.signedPreKey.publicKey + ).then(function(session) { + session.pendingPreKey = { + preKeyId : device.preKey.keyId, + signedKeyId : device.signedPreKey.keyId, + baseKey : baseKey.pubKey + }; + return session; + }); + }.bind(this)).then(function(session) { + var address = this.remoteAddress.toString(); + return this.storage.loadSession(address).then(function(serialized) { + var record; + if (serialized !== undefined) { + record = Internal.SessionRecord.deserialize(serialized); + } else { + record = new Internal.SessionRecord(device.identityKey, device.registrationId); + } + + record.archiveCurrentState(); + record.updateSessionState(session, device.registrationId); + return Promise.all([ + this.storage.storeSession(address, record.serialize()), + this.storage.saveIdentity(this.remoteAddress.getName(), record.identityKey) + ]); + }.bind(this)); + }.bind(this)); + }.bind(this)); + }, + processV3: function(record, message) { + var preKeyPair, signedPreKeyPair, session; + return this.storage.isTrustedIdentity( + this.remoteAddress.getName(), message.identityKey.toArrayBuffer() + ).then(function(trusted) { + if (!trusted) { + var e = new Error('Unknown identity key'); + e.identityKey = message.identityKey.toArrayBuffer(); + throw e; + } + return Promise.all([ + this.storage.loadPreKey(message.preKeyId), + this.storage.loadSignedPreKey(message.signedPreKeyId), + ]).then(function(results) { + preKeyPair = results[0]; + signedPreKeyPair = results[1]; + }); + }.bind(this)).then(function() { + session = record.getSessionByBaseKey(message.baseKey); + if (session) { + console.log("Duplicate PreKeyMessage for session"); + return; + } + + session = record.getOpenSession(); + + if (signedPreKeyPair === undefined) { + // Session may or may not be the right one, but if its not, we + // can't do anything about it ...fall through and let + // decryptWhisperMessage handle that case + if (session !== undefined && session.currentRatchet !== undefined) { + return; + } else { + throw new Error("Missing Signed PreKey for PreKeyWhisperMessage"); + } + } + + if (session !== undefined) { + record.archiveCurrentState(); + } + if (message.preKeyId && !preKeyPair) { + console.log('Invalid prekey id'); + } + return this.initSession(false, preKeyPair, signedPreKeyPair, + message.identityKey.toArrayBuffer(), + message.baseKey.toArrayBuffer(), undefined + ).then(function(new_session) { + // Note that the session is not actually saved until the very + // end of decryptWhisperMessage ... to ensure that the sender + // actually holds the private keys for all reported pubkeys + record.updateSessionState(new_session, message.registrationId); + return this.storage.saveIdentity(this.remoteAddress.getName(), message.identityKey.toArrayBuffer()).then(function() { + return message.preKeyId; + }); + }.bind(this)); + }.bind(this)); + }, + initSession: function(isInitiator, ourEphemeralKey, ourSignedKey, + theirIdentityPubKey, theirEphemeralPubKey, + theirSignedPubKey) { + return this.storage.getIdentityKeyPair().then(function(ourIdentityKey) { + if (isInitiator) { + if (ourSignedKey !== undefined) { + throw new Error("Invalid call to initSession"); + } + ourSignedKey = ourEphemeralKey; + } else { + if (theirSignedPubKey !== undefined) { + throw new Error("Invalid call to initSession"); + } + theirSignedPubKey = theirEphemeralPubKey; + } + + var sharedSecret; + if (ourEphemeralKey === undefined || theirEphemeralPubKey === undefined) { + sharedSecret = new Uint8Array(32 * 4); + } else { + sharedSecret = new Uint8Array(32 * 5); + } + + for (var i = 0; i < 32; i++) { + sharedSecret[i] = 0xff; + } + + return Promise.all([ + Internal.crypto.ECDHE(theirSignedPubKey, ourIdentityKey.privKey), + Internal.crypto.ECDHE(theirIdentityPubKey, ourSignedKey.privKey), + Internal.crypto.ECDHE(theirSignedPubKey, ourSignedKey.privKey) + ]).then(function(ecRes) { + if (isInitiator) { + sharedSecret.set(new Uint8Array(ecRes[0]), 32); + sharedSecret.set(new Uint8Array(ecRes[1]), 32 * 2); + } else { + sharedSecret.set(new Uint8Array(ecRes[0]), 32 * 2); + sharedSecret.set(new Uint8Array(ecRes[1]), 32); + } + sharedSecret.set(new Uint8Array(ecRes[2]), 32 * 3); + + if (ourEphemeralKey !== undefined && theirEphemeralPubKey !== undefined) { + return Internal.crypto.ECDHE( + theirEphemeralPubKey, ourEphemeralKey.privKey + ).then(function(ecRes4) { + sharedSecret.set(new Uint8Array(ecRes4), 32 * 4); + }); + } + }).then(function() { + return Internal.HKDF(sharedSecret.buffer, new ArrayBuffer(32), "WhisperText"); + }).then(function(masterKey) { + var session = { + currentRatchet: { + rootKey : masterKey[0], + lastRemoteEphemeralKey : theirSignedPubKey, + previousCounter : 0 + }, + indexInfo: { + remoteIdentityKey : theirIdentityPubKey, + closed : -1 + }, + oldRatchetList: [] + }; + + // If we're initiating we go ahead and set our first sending ephemeral key now, + // otherwise we figure it out when we first maybeStepRatchet with the remote's ephemeral key + if (isInitiator) { + session.indexInfo.baseKey = ourEphemeralKey.pubKey; + session.indexInfo.baseKeyType = Internal.BaseKeyType.OURS; + return Internal.crypto.createKeyPair().then(function(ourSendingEphemeralKey) { + session.currentRatchet.ephemeralKeyPair = ourSendingEphemeralKey; + return this.calculateSendingRatchet(session, theirSignedPubKey).then(function() { + return session; + }); + }.bind(this)); + } else { + session.indexInfo.baseKey = theirEphemeralPubKey; + session.indexInfo.baseKeyType = Internal.BaseKeyType.THEIRS; + session.currentRatchet.ephemeralKeyPair = ourSignedKey; + return session; + } + }.bind(this)); + }.bind(this)); + }, + calculateSendingRatchet: function(session, remoteKey) { + var ratchet = session.currentRatchet; + + return Internal.crypto.ECDHE( + remoteKey, util.toArrayBuffer(ratchet.ephemeralKeyPair.privKey) + ).then(function(sharedSecret) { + return Internal.HKDF( + sharedSecret, util.toArrayBuffer(ratchet.rootKey), "WhisperRatchet" + ); + }).then(function(masterKey) { + session[util.toString(ratchet.ephemeralKeyPair.pubKey)] = { + messageKeys : {}, + chainKey : { counter : -1, key : masterKey[1] }, + chainType : Internal.ChainType.SENDING + }; + ratchet.rootKey = masterKey[0]; + }); + } + +}; + +libsignal.SessionBuilder = function (storage, remoteAddress) { + var builder = new SessionBuilder(storage, remoteAddress); + this.processPreKey = builder.processPreKey.bind(builder); + this.processV3 = builder.processV3.bind(builder); +}; diff --git a/src/SessionCipher.js b/src/SessionCipher.js new file mode 100644 index 0000000..a9cb26f --- /dev/null +++ b/src/SessionCipher.js @@ -0,0 +1,397 @@ +function SessionCipher(storage, remoteAddress) { + this.remoteAddress = remoteAddress; + this.storage = storage; +} + +SessionCipher.prototype = { + getRecord: function(encodedNumber) { + return this.storage.loadSession(encodedNumber).then(function(serialized) { + if (serialized === undefined) { + return undefined; + } + return Internal.SessionRecord.deserialize(serialized); + }); + }, + encrypt: function(buffer, encoding) { + buffer = dcodeIO.ByteBuffer.wrap(buffer, encoding).toArrayBuffer(); + return Internal.SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { + if (!(buffer instanceof ArrayBuffer)) { + throw new Error("Expected buffer to be an ArrayBuffer"); + } + + var address = this.remoteAddress.toString(); + var ourIdentityKey, myRegistrationId, record, session, chain; + + var msg = new Internal.protobuf.WhisperMessage(); + var paddedPlaintext = new Uint8Array( + this.getPaddedMessageLength(buffer.byteLength + 1) - 1 + ); + paddedPlaintext.set(new Uint8Array(buffer)); + paddedPlaintext[buffer.byteLength] = 0x80; + + return Promise.all([ + this.storage.getIdentityKeyPair(), + this.storage.getLocalRegistrationId(), + this.getRecord(address) + ]).then(function(results) { + ourIdentityKey = results[0]; + myRegistrationId = results[1]; + record = results[2]; + if (!record) { + throw new Error("No record for " + address); + } + session = record.getOpenSession(); + if (!session) { + throw new Error("No session to encrypt message for " + address); + } + + msg.ephemeralKey = util.toArrayBuffer( + session.currentRatchet.ephemeralKeyPair.pubKey + ); + chain = session[util.toString(msg.ephemeralKey)]; + if (chain.chainType === Internal.ChainType.RECEIVING) { + throw new Error("Tried to encrypt on a receiving chain"); + } + + return this.fillMessageKeys(chain, chain.chainKey.counter + 1); + }.bind(this)).then(function() { + return Internal.HKDF( + util.toArrayBuffer(chain.messageKeys[chain.chainKey.counter]), + new ArrayBuffer(32), "WhisperMessageKeys"); + }).then(function(keys) { + delete chain.messageKeys[chain.chainKey.counter]; + msg.counter = chain.chainKey.counter; + msg.previousCounter = session.currentRatchet.previousCounter; + + return Internal.crypto.encrypt( + keys[0], paddedPlaintext.buffer, keys[2].slice(0, 16) + ).then(function(ciphertext) { + msg.ciphertext = ciphertext; + var encodedMsg = msg.toArrayBuffer(); + + var macInput = new Uint8Array(encodedMsg.byteLength + 33*2 + 1); + macInput.set(new Uint8Array(util.toArrayBuffer(ourIdentityKey.pubKey))); + macInput.set(new Uint8Array(util.toArrayBuffer(session.indexInfo.remoteIdentityKey)), 33); + macInput[33*2] = (3 << 4) | 3; + macInput.set(new Uint8Array(encodedMsg), 33*2 + 1); + + return Internal.crypto.sign(keys[1], macInput.buffer).then(function(mac) { + var result = new Uint8Array(encodedMsg.byteLength + 9); + result[0] = (3 << 4) | 3; + result.set(new Uint8Array(encodedMsg), 1); + result.set(new Uint8Array(mac, 0, 8), encodedMsg.byteLength + 1); + + record.updateSessionState(session); + return this.storage.storeSession(address, record.serialize()).then(function() { + return result; + }); + }.bind(this)); + }.bind(this)); + }.bind(this)).then(function(message) { + if (session.pendingPreKey !== undefined) { + var preKeyMsg = new Internal.protobuf.PreKeyWhisperMessage(); + preKeyMsg.identityKey = util.toArrayBuffer(ourIdentityKey.pubKey); + preKeyMsg.registrationId = myRegistrationId; + + preKeyMsg.baseKey = util.toArrayBuffer(session.pendingPreKey.baseKey); + preKeyMsg.preKeyId = session.pendingPreKey.preKeyId; + preKeyMsg.signedPreKeyId = session.pendingPreKey.signedKeyId; + + preKeyMsg.message = message; + var result = String.fromCharCode((3 << 4) | 3) + util.toString(preKeyMsg.encode()); + return {type: 3, body: result}; + } else { + return {type: 1, body: util.toString(message)}; + } + }); + }.bind(this)); + }, + getPaddedMessageLength: function(messageLength) { + var messageLengthWithTerminator = messageLength + 1; + var messagePartCount = Math.floor(messageLengthWithTerminator / 160); + + if (messageLengthWithTerminator % 160 !== 0) { + messagePartCount++; + } + + return messagePartCount * 160; + }, + decryptWhisperMessage: function(buffer, encoding) { + buffer = dcodeIO.ByteBuffer.wrap(buffer, encoding).toArrayBuffer(); + return Internal.SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { + var address = this.remoteAddress.toString(); + return this.getRecord(address).then(function(record) { + if (!record) { + throw new Error("No record for device " + address); + } + var messageProto = buffer.slice(1, buffer.byteLength - 8); + var message = Internal.protobuf.WhisperMessage.decode(messageProto); + var remoteEphemeralKey = message.ephemeralKey.toArrayBuffer(); + var session = record.getSessionByRemoteEphemeralKey(remoteEphemeralKey); + return this.doDecryptWhisperMessage(buffer, session).then(function(plaintext) { + record.updateSessionState(session); + return this.storage.storeSession(address, record.serialize()).then(function() { + return plaintext; + }); + }.bind(this)); + }.bind(this)); + }.bind(this)); + }, + decryptPreKeyWhisperMessage: function(buffer, encoding) { + buffer = dcodeIO.ByteBuffer.wrap(buffer, encoding); + var version = buffer.readUint8(); + if ((version & 0xF) > 3 || (version >> 4) < 3) { // min version > 3 or max version < 3 + throw new Error("Incompatible version number on PreKeyWhisperMessage"); + } + return Internal.SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { + var address = this.remoteAddress.toString(); + return this.getRecord(address).then(function(record) { + var preKeyProto = Internal.protobuf.PreKeyWhisperMessage.decode(buffer); + if (!record) { + if (preKeyProto.registrationId === undefined) { + throw new Error("No registrationId"); + } + record = new Internal.SessionRecord( + util.toString(preKeyProto.identityKey), + preKeyProto.registrationId + ); + } + var builder = new SessionBuilder(this.storage, this.remoteAddress); + return builder.processV3(record, preKeyProto).then(function(preKeyId) { + var session = record.getSessionByBaseKey(preKeyProto.baseKey); + return this.doDecryptWhisperMessage( + preKeyProto.message.toArrayBuffer(), session + ).then(function(plaintext) { + record.updateSessionState(session); + return this.storage.storeSession(address, record.serialize()).then(function() { + if (preKeyId !== undefined) { + return this.storage.removePreKey(preKeyId); + } + }.bind(this)).then(function() { + return plaintext; + }); + }.bind(this)); + }.bind(this)); + }.bind(this)); + }.bind(this)); + }, + doDecryptWhisperMessage: function(messageBytes, session) { + if (!messageBytes instanceof ArrayBuffer) { + throw new Error("Expected messageBytes to be an ArrayBuffer"); + } + var version = (new Uint8Array(messageBytes))[0]; + if ((version & 0xF) > 3 || (version >> 4) < 3) { // min version > 3 or max version < 3 + throw new Error("Incompatible version number on WhisperMessage"); + } + var messageProto = messageBytes.slice(1, messageBytes.byteLength- 8); + var mac = messageBytes.slice(messageBytes.byteLength - 8, messageBytes.byteLength); + + var message = Internal.protobuf.WhisperMessage.decode(messageProto); + var remoteEphemeralKey = message.ephemeralKey.toArrayBuffer(); + + if (session === undefined) { + throw new Error("No session found to decrypt message from " + this.remoteAddress.toString()); + } + if (session.indexInfo.closed != -1) { + console.log('decrypting message for closed session'); + } + + return this.maybeStepRatchet(session, remoteEphemeralKey, message.previousCounter).then(function() { + var chain = session[util.toString(message.ephemeralKey)]; + if (chain.chainType === Internal.ChainType.SENDING) { + throw new Error("Tried to decrypt on a sending chain"); + } + + return this.fillMessageKeys(chain, message.counter).then(function() { + var messageKey = chain.messageKeys[message.counter]; + if (messageKey === undefined) { + var e = new Error("Message key not found. The counter was repeated or the key was not filled."); + e.name = 'MessageCounterError'; + throw e; + } + delete chain.messageKeys[message.counter]; + return Internal.HKDF(util.toArrayBuffer(messageKey), new ArrayBuffer(32), "WhisperMessageKeys"); + }); + }.bind(this)).then(function(keys) { + return this.storage.getIdentityKeyPair().then(function(ourIdentityKey) { + + var macInput = new Uint8Array(messageProto.byteLength + 33*2 + 1); + macInput.set(new Uint8Array(util.toArrayBuffer(session.indexInfo.remoteIdentityKey))); + macInput.set(new Uint8Array(util.toArrayBuffer(ourIdentityKey.pubKey)), 33); + macInput[33*2] = (3 << 4) | 3; + macInput.set(new Uint8Array(messageProto), 33*2 + 1); + + return this.verifyMAC(macInput.buffer, keys[1], mac, 8); + }.bind(this)).then(function() { + return Internal.crypto.decrypt(keys[0], message.ciphertext.toArrayBuffer(), keys[2].slice(0, 16)); + }); + }.bind(this)).then(function(paddedPlaintext) { + paddedPlaintext = new Uint8Array(paddedPlaintext); + var plaintext; + for (var i = paddedPlaintext.length - 1; i >= 0; i--) { + if (paddedPlaintext[i] == 0x80) { + plaintext = new Uint8Array(i); + plaintext.set(paddedPlaintext.subarray(0, i)); + plaintext = plaintext.buffer; + break; + } else if (paddedPlaintext[i] !== 0x00) { + throw new Error('Invalid padding'); + } + } + + delete session.pendingPreKey; + return plaintext; + }); + }, + fillMessageKeys: function(chain, counter) { + if (Object.keys(chain.messageKeys).length >= 1000) { + console.log("Too many message keys for chain"); + return Promise.resolve(); // Stalker, much? + } + + if (chain.chainKey.counter >= counter) { + return Promise.resolve(); // Already calculated + } + + if (chain.chainKey.key === undefined) { + throw new Error("Got invalid request to extend chain after it was already closed"); + } + + var key = util.toArrayBuffer(chain.chainKey.key); + var byteArray = new Uint8Array(1); + byteArray[0] = 1; + return Internal.crypto.sign(key, byteArray.buffer).then(function(mac) { + byteArray[0] = 2; + return Internal.crypto.sign(key, byteArray.buffer).then(function(key) { + chain.messageKeys[chain.chainKey.counter + 1] = mac; + chain.chainKey.key = key; + chain.chainKey.counter += 1; + return this.fillMessageKeys(chain, counter); + }.bind(this)); + }.bind(this)); + }, + maybeStepRatchet: function(session, remoteKey, previousCounter) { + if (session[util.toString(remoteKey)] !== undefined) { + return Promise.resolve(); + } + + var ratchet = session.currentRatchet; + + return Promise.resolve().then(function() { + var previousRatchet = session[util.toString(ratchet.lastRemoteEphemeralKey)]; + if (previousRatchet !== undefined) { + return this.fillMessageKeys(previousRatchet, previousCounter).then(function() { + delete previousRatchet.chainKey.key; + session.oldRatchetList[session.oldRatchetList.length] = { + added : Date.now(), + ephemeralKey : ratchet.lastRemoteEphemeralKey + }; + }); + } + }.bind(this)).then(function() { + return this.calculateRatchet(session, remoteKey, false).then(function() { + // Now swap the ephemeral key and calculate the new sending chain + var previousRatchet = util.toString(ratchet.ephemeralKeyPair.pubKey); + if (session[previousRatchet] !== undefined) { + ratchet.previousCounter = session[previousRatchet].chainKey.counter; + delete session[previousRatchet]; + } + + return Internal.crypto.createKeyPair().then(function(keyPair) { + ratchet.ephemeralKeyPair = keyPair; + return this.calculateRatchet(session, remoteKey, true).then(function() { + ratchet.lastRemoteEphemeralKey = remoteKey; + }.bind(this)); + }.bind(this)); + }.bind(this)); + }.bind(this)); + }, + calculateRatchet: function(session, remoteKey, sending) { + var ratchet = session.currentRatchet; + + return Internal.crypto.ECDHE(remoteKey, util.toArrayBuffer(ratchet.ephemeralKeyPair.privKey)).then(function(sharedSecret) { + return Internal.HKDF(sharedSecret, util.toArrayBuffer(ratchet.rootKey), "WhisperRatchet").then(function(masterKey) { + var ephemeralPublicKey; + if (sending) { + ephemeralPublicKey = ratchet.ephemeralKeyPair.pubKey; + } + else { + ephemeralPublicKey = remoteKey; + } + session[util.toString(ephemeralPublicKey)] = { + messageKeys: {}, + chainKey: { counter: -1, key: masterKey[1] }, + chainType: sending ? Internal.ChainType.SENDING : Internal.ChainType.RECEIVING + }; + ratchet.rootKey = masterKey[0]; + }); + }); + }, + verifyMAC: function(data, key, mac, length) { + return Internal.crypto.sign(key, data).then(function(calculated_mac) { + if (mac.byteLength != length || calculated_mac.byteLength < length) { + throw new Error("Bad MAC length"); + } + var a = new Uint8Array(calculated_mac); + var b = new Uint8Array(mac); + var result = 0; + for (var i=0; i < mac.byteLength; ++i) { + result = result | (a[i] ^ b[i]); + } + if (result !== 0) { + throw new Error("Bad MAC"); + } + }); + }, + getRemoteRegistrationId: function() { + return Internal.SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { + return this.getRecord(this.remoteAddress.toString()).then(function(record) { + if (record === undefined) { + return undefined; + } + return record.registrationId; + }); + }.bind(this)); + }, + hasOpenSession: function() { + return Internal.SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { + return this.getRecord(this.remoteAddress.toString()).then(function(record) { + if (record === undefined) { + return false; + } + return record.haveOpenSession(); + }); + }.bind(this)); + }, + closeOpenSessionForDevice: function() { + var address = this.remoteAddress.toString(); + return Internal.SessionLock.queueJobForNumber(address, function() { + return this.getRecord(address).then(function(record) { + if (record === undefined || record.getOpenSession() === undefined) { + return; + } + + record.archiveCurrentState(); + return this.storage.storeSession(address, record.serialize()); + }.bind(this)); + }.bind(this)); + } +}; + +libsignal.SessionCipher = function(storage, remoteAddress) { + var cipher = new SessionCipher(storage, remoteAddress); + + // returns a Promise that resolves to a ciphertext object + this.encrypt = cipher.encrypt.bind(cipher); + + // returns a Promise that inits a session if necessary and resolves + // to a decrypted plaintext array buffer + this.decryptPreKeyWhisperMessage = cipher.decryptPreKeyWhisperMessage.bind(cipher); + + // returns a Promise that resolves to decrypted plaintext array buffer + this.decryptWhisperMessage = cipher.decryptWhisperMessage.bind(cipher); + + this.getRemoteRegistrationId = cipher.getRemoteRegistrationId.bind(cipher); + this.hasOpenSession = cipher.hasOpenSession.bind(cipher); + this.closeOpenSessionForDevice = cipher.closeOpenSessionForDevice.bind(cipher); +}; diff --git a/src/SessionLock.js b/src/SessionLock.js new file mode 100644 index 0000000..31935f4 --- /dev/null +++ b/src/SessionLock.js @@ -0,0 +1,23 @@ + /* + * jobQueue manages multiple queues indexed by device to serialize + * session io ops on the database. + */ +;(function() { +'use strict'; + +Internal.SessionLock = {}; + +var jobQueue = {}; + +Internal.SessionLock.queueJobForNumber = function queueJobForNumber(number, runJob) { + var runPrevious = jobQueue[number] || Promise.resolve(); + var runCurrent = jobQueue[number] = runPrevious.then(runJob, runJob); + runCurrent.then(function() { + if (jobQueue[number] === runCurrent) { + delete jobQueue[number]; + } + }); + return runCurrent; +}; + +})(); diff --git a/src/SessionRecord.js b/src/SessionRecord.js new file mode 100644 index 0000000..fd1714e --- /dev/null +++ b/src/SessionRecord.js @@ -0,0 +1,252 @@ +/* vim: ts=4:sw=4 */ + +var Internal = Internal || {}; + +Internal.BaseKeyType = { + OURS: 1, + THEIRS: 2 +}; +Internal.ChainType = { + SENDING: 1, + RECEIVING: 2 +}; + +Internal.SessionRecord = function() { + 'use strict'; + var MESSAGE_LOST_THRESHOLD_MS = 1000*60*60*24*7; + + var StaticByteBufferProto = new dcodeIO.ByteBuffer().__proto__; + var StaticArrayBufferProto = new ArrayBuffer().__proto__; + var StaticUint8ArrayProto = new Uint8Array().__proto__; + + function isStringable(thing) { + return (thing === Object(thing) && + (thing.__proto__ == StaticArrayBufferProto || + thing.__proto__ == StaticUint8ArrayProto || + thing.__proto__ == StaticByteBufferProto)); + } + function ensureStringed(thing) { + if (typeof thing == "string" || typeof thing == "number" || typeof thing == "boolean") { + return thing; + } else if (isStringable(thing)) { + return util.toString(thing); + } else if (thing instanceof Array) { + var array = []; + for (var i = 0; i < thing.length; i++) { + array[i] = ensureStringed(thing[i]); + } + return array; + } else if (thing === Object(thing)) { + var obj = {}; + for (var key in thing) { + obj[key] = ensureStringed(thing[key]); + } + return obj; + } else if (thing === null) { + return null; + } else { + throw new Error("unsure of how to jsonify object of type " + typeof thing); + } + } + + function jsonThing(thing) { + return JSON.stringify(ensureStringed(thing)); //TODO: jquery??? + } + + var SessionRecord = function(identityKey, registrationId) { + this._sessions = {}; + identityKey = util.toString(identityKey); + if (typeof identityKey !== 'string') { + throw new Error('SessionRecord: Invalid identityKey'); + } + this.identityKey = identityKey; + this.registrationId = registrationId; + + if (this.registrationId === undefined || typeof this.registrationId !== 'number') { + this.registrationId = null; + } + }; + + SessionRecord.deserialize = function(serialized) { + var data = JSON.parse(serialized); + var record = new SessionRecord(data.identityKey, data.registrationId); + record._sessions = data.sessions; + if (record._sessions === undefined || record._sessions === null || typeof record._sessions !== "object" || Array.isArray(record._sessions)) { + throw new Error("Error deserializing SessionRecord"); + } + if (record.identityKey === undefined || record.registrationId === undefined) { + throw new Error("Error deserializing SessionRecord"); + } + return record; + }; + + SessionRecord.prototype = { + serialize: function() { + return jsonThing({ + sessions : this._sessions, + registrationId : this.registrationId, + identityKey : this.identityKey + }); + }, + haveOpenSession: function() { + return this.registrationId !== null; + }, + + getSessionByBaseKey: function(baseKey) { + var session = this._sessions[util.toString(baseKey)]; + if (session && session.indexInfo.baseKeyType === Internal.BaseKeyType.OURS) { + console.log("Tried to lookup a session using our basekey"); + return undefined; + } + return session; + }, + getSessionByRemoteEphemeralKey: function(remoteEphemeralKey) { + this.detectDuplicateOpenSessions(); + var sessions = this._sessions; + + var searchKey = util.toString(remoteEphemeralKey); + + var openSession; + for (var key in sessions) { + if (sessions[key].indexInfo.closed == -1) { + openSession = sessions[key]; + } + if (sessions[key][searchKey] !== undefined) { + return sessions[key]; + } + } + if (openSession !== undefined) { + return openSession; + } + + return undefined; + }, + getOpenSession: function() { + var sessions = this._sessions; + if (sessions === undefined) { + return undefined; + } + + this.detectDuplicateOpenSessions(); + + for (var key in sessions) { + if (sessions[key].indexInfo.closed == -1) { + return sessions[key]; + } + } + return undefined; + }, + detectDuplicateOpenSessions: function() { + var openSession; + var sessions = this._sessions; + for (var key in sessions) { + if (sessions[key].indexInfo.closed == -1) { + if (openSession !== undefined) { + throw new Error("Datastore inconsistensy: multiple open sessions"); + } + openSession = sessions[key]; + } + } + }, + updateSessionState: function(session, registrationId) { + var sessions = this._sessions; + + this.removeOldChains(session); + + if (this.identityKey === null) { + this.identityKey = session.indexInfo.remoteIdentityKey; + } + if (util.toString(this.identityKey) !== util.toString(session.indexInfo.remoteIdentityKey)) { + var e = new Error("Identity key changed at session save time"); + e.identityKey = session.indexInfo.remoteIdentityKey.toArrayBuffer(); + throw e; + } + + sessions[util.toString(session.indexInfo.baseKey)] = session; + + this.removeOldSessions(); + + var openSessionRemaining = false; + for (var key in sessions) { + if (sessions[key].indexInfo.closed == -1) { + openSessionRemaining = true; + } + } + if (!openSessionRemaining) { // Used as a flag to get new pre keys for the next session + this.registrationId = null; + } else if (this.registrationId === null && registrationId !== undefined) { + this.registrationId = registrationId; + } else if (this.registrationId === null) { + throw new Error("Had open sessions on a record that had no registrationId set"); + } + }, + archiveCurrentState: function() { + var open_session = this.getOpenSession(); + if (open_session !== undefined) { + this.closeSession(open_session); + this.updateSessionState(open_session); + } + }, + closeSession: function(session) { + if (session.indexInfo.closed > -1) { + return; + } + + // After this has run, we can still receive messages on ratchet chains which + // were already open (unless we know we dont need them), + // but we cannot send messages or step the ratchet + + // Delete current sending ratchet + delete session[util.toString(session.currentRatchet.ephemeralKeyPair.pubKey)]; + // Move all receive ratchets to the oldRatchetList to mark them for deletion + for (var i in session) { + if (session[i].chainKey !== undefined && session[i].chainKey.key !== undefined) { + session.oldRatchetList[session.oldRatchetList.length] = { + added: Date.now(), ephemeralKey: i + }; + } + } + // Delete current root key and our ephemeral key pair to disallow ratchet stepping + delete session.currentRatchet.rootKey; + delete session.currentRatchet.ephemeralKeyPair; + session.indexInfo.closed = Date.now(); + this.removeOldChains(session); + }, + removeOldChains: function(session) { + // Sending ratchets are always removed when we step because we never need them again + // Receiving ratchets are added to the oldRatchetList, which we parse + // here and remove all but the last four. + while (session.oldRatchetList.length > 4) { + var index = 0; + var oldest = session.oldRatchetList[0]; + for (var i = 0; i < session.oldRatchetList.length; i++) { + if (session.oldRatchetList[i].added < oldest.added) { + oldest = session.oldRatchetList[i]; + index = i; + } + } + delete session[util.toString(oldest.ephemeralKey)]; + session.oldRatchetList.splice(index, 1); + } + }, + removeOldSessions: function() { + // Retain only the last 20 sessions + var sessions = this._sessions; + var oldestBaseKey, oldestSession; + while (Object.keys(sessions).length > 20) { + for (var key in sessions) { + var session = sessions[key]; + if (session.indexInfo.closed > -1 && // session is closed + (!oldestSession || session.indexInfo.closed < oldestSession.indexInfo.closed)) { + oldestBaseKey = key; + oldestSession = session; + } + } + console.log("Deleting session closed at", oldestSession.indexInfo.closed); + delete sessions[util.toString(oldestBaseKey)]; + } + }, + }; + + return SessionRecord; +}(); diff --git a/src/SignalProtocolAddress.js b/src/SignalProtocolAddress.js new file mode 100644 index 0000000..bc95911 --- /dev/null +++ b/src/SignalProtocolAddress.js @@ -0,0 +1,36 @@ +function SignalProtocolAddress(name, deviceId) { + this.name = name; + this.deviceId = deviceId; +} + +SignalProtocolAddress.prototype = { + getName: function() { + return this.name; + }, + getDeviceId: function() { + return this.deviceId; + }, + toString: function() { + return this.name + '.' + this.deviceId; + }, + equals: function(other) { + if (!(other instanceof SignalProtocolAddress)) { return false; } + return other.name === this.name && other.deviceId === this.deviceId; + } +}; + +libsignal.SignalProtocolAddress = function(name, deviceId) { + var address = new SignalProtocolAddress(name, deviceId); + + ['getName', 'getDeviceId', 'toString', 'equals'].forEach(function(method) { + this[method] = address[method].bind(address); + }.bind(this)); +}; + +libsignal.SignalProtocolAddress.fromString = function(encodedAddress) { + if (typeof encodedAddress !== 'string' || !encodedAddress.match(/.*\.\d+/)) { + throw new Error('Invalid SignalProtocolAddress string'); + } + var parts = encodedAddress.split('.'); + return new libsignal.SignalProtocolAddress(parts[0], parseInt(parts[1])); +}; diff --git a/src/crypto.js b/src/crypto.js new file mode 100644 index 0000000..e077900 --- /dev/null +++ b/src/crypto.js @@ -0,0 +1,127 @@ +/* vim: ts=4:sw=4 */ + +var Internal = Internal || {}; + +(function() { + 'use strict'; + + var crypto = window.crypto; + + if (!crypto || !crypto.subtle || typeof crypto.getRandomValues !== 'function') { + throw new Error('WebCrypto not found'); + } + + Internal.crypto = { + getRandomBytes: function(size) { + var array = new Uint8Array(size); + crypto.getRandomValues(array); + return array.buffer; + }, + encrypt: function(key, data, iv) { + return crypto.subtle.importKey('raw', key, {name: 'AES-CBC'}, false, ['encrypt']).then(function(key) { + return crypto.subtle.encrypt({name: 'AES-CBC', iv: new Uint8Array(iv)}, key, data); + }); + }, + decrypt: function(key, data, iv) { + return crypto.subtle.importKey('raw', key, {name: 'AES-CBC'}, false, ['decrypt']).then(function(key) { + return crypto.subtle.decrypt({name: 'AES-CBC', iv: new Uint8Array(iv)}, key, data); + }); + }, + sign: function(key, data) { + return crypto.subtle.importKey('raw', key, {name: 'HMAC', hash: {name: 'SHA-256'}}, false, ['sign']).then(function(key) { + return crypto.subtle.sign( {name: 'HMAC', hash: 'SHA-256'}, key, data); + }); + }, + + HKDF: function(input, salt, info) { + // Specific implementation of RFC 5869 that only returns the first 3 32-byte chunks + // TODO: We dont always need the third chunk, we might skip it + return Internal.crypto.sign(salt, input).then(function(PRK) { + var infoBuffer = new ArrayBuffer(info.byteLength + 1 + 32); + var infoArray = new Uint8Array(infoBuffer); + infoArray.set(new Uint8Array(info), 32); + infoArray[infoArray.length - 1] = 1; + return Internal.crypto.sign(PRK, infoBuffer.slice(32)).then(function(T1) { + infoArray.set(new Uint8Array(T1)); + infoArray[infoArray.length - 1] = 2; + return Internal.crypto.sign(PRK, infoBuffer).then(function(T2) { + infoArray.set(new Uint8Array(T2)); + infoArray[infoArray.length - 1] = 3; + return Internal.crypto.sign(PRK, infoBuffer).then(function(T3) { + return [ T1, T2, T3 ]; + }); + }); + }); + }); + }, + + // Curve 25519 crypto + createKeyPair: function(privKey) { + if (privKey === undefined) { + privKey = Internal.crypto.getRandomBytes(32); + } + return Internal.Curve.async.createKeyPair(privKey); + }, + ECDHE: function(pubKey, privKey) { + return Internal.Curve.async.ECDHE(pubKey, privKey); + }, + Ed25519Sign: function(privKey, message) { + return Internal.Curve.async.Ed25519Sign(privKey, message); + }, + Ed25519Verify: function(pubKey, msg, sig) { + return Internal.Curve.async.Ed25519Verify(pubKey, msg, sig); + } + }; + + + // HKDF for TextSecure has a bit of additional handling - salts always end up being 32 bytes + Internal.HKDF = function(input, salt, info) { + if (salt.byteLength != 32) { + throw new Error("Got salt of incorrect length"); + } + + return Internal.crypto.HKDF(input, salt, util.toArrayBuffer(info)); + }; + + Internal.verifyMAC = function(data, key, mac, length) { + return Internal.crypto.sign(key, data).then(function(calculated_mac) { + if (mac.byteLength != length || calculated_mac.byteLength < length) { + throw new Error("Bad MAC length"); + } + var a = new Uint8Array(calculated_mac); + var b = new Uint8Array(mac); + var result = 0; + for (var i=0; i < mac.byteLength; ++i) { + result = result | (a[i] ^ b[i]); + } + if (result !== 0) { + throw new Error("Bad MAC"); + } + }); + }; + + libsignal.HKDF = { + deriveSecrets: function(input, salt, info) { + return Internal.HKDF(input, salt, info); + } + }; + + libsignal.crypto = { + encrypt: function(key, data, iv) { + return Internal.crypto.encrypt(key, data, iv); + }, + decrypt: function(key, data, iv) { + return Internal.crypto.decrypt(key, data, iv); + }, + calculateMAC: function(key, data) { + return Internal.crypto.sign(key, data); + }, + verifyMAC: function(data, key, mac, length) { + return Internal.verifyMAC(data, key, mac, length); + }, + getRandomBytes: function(size) { + return Internal.crypto.getRandomBytes(size); + } + }; + +})(); diff --git a/src/curve25519_worker.js b/src/curve25519_worker.js new file mode 100644 index 0000000..dca8d08 --- /dev/null +++ b/src/curve25519_worker.js @@ -0,0 +1,9 @@ +var Internal = Internal || {}; +// I am the worker +this.onmessage = function(e) { + Internal.curve25519_async[e.data.methodName].apply(null, e.data.args).then(function(result) { + postMessage({ id: e.data.id, result: result }); + }).catch(function(error) { + postMessage({ id: e.data.id, error: error.message }); + }); +}; diff --git a/src/curve25519_worker_manager.js b/src/curve25519_worker_manager.js new file mode 100644 index 0000000..a33b854 --- /dev/null +++ b/src/curve25519_worker_manager.js @@ -0,0 +1,64 @@ +;(function() { + +'use strict'; + +// I am the...workee? +var origCurve25519 = Internal.curve25519_async; + +Internal.startWorker = function(url) { + Internal.stopWorker(); // there can be only one + Internal.curve25519_async = new Curve25519Worker(url); +}; + +Internal.stopWorker = function() { + if (Internal.curve25519_async instanceof Curve25519Worker) { + var worker = Internal.curve25519_async.worker; + Internal.curve25519_async = origCurve25519; + worker.terminate(); + } +}; + +libsignal.worker = { + startWorker: Internal.startWorker, + stopWorker: Internal.stopWorker, +}; + +function Curve25519Worker(url) { + this.jobs = {}; + this.jobId = 0; + this.worker = new Worker(url); + this.worker.onmessage = function(e) { + var job = this.jobs[e.data.id]; + if (e.data.error && typeof job.onerror === 'function') { + job.onerror(new Error(e.data.error)); + } else if (typeof job.onsuccess === 'function') { + job.onsuccess(e.data.result); + } + delete this.jobs[e.data.id]; + }.bind(this); +} + +Curve25519Worker.prototype = { + constructor: Curve25519Worker, + postMessage: function(methodName, args, onsuccess, onerror) { + return new Promise(function(resolve, reject) { + this.jobs[this.jobId] = { onsuccess: resolve, onerror: reject }; + this.worker.postMessage({ id: this.jobId, methodName: methodName, args: args }); + this.jobId++; + }.bind(this)); + }, + keyPair: function(privKey) { + return this.postMessage('keyPair', [privKey]); + }, + sharedSecret: function(pubKey, privKey) { + return this.postMessage('sharedSecret', [pubKey, privKey]); + }, + sign: function(privKey, message) { + return this.postMessage('sign', [privKey, message]); + }, + verify: function(pubKey, message, sig) { + return this.postMessage('verify', [pubKey, message, sig]); + } +}; + +})(); diff --git a/src/curve25519_wrapper.js b/src/curve25519_wrapper.js new file mode 100644 index 0000000..ed45715 --- /dev/null +++ b/src/curve25519_wrapper.js @@ -0,0 +1,151 @@ +/* vim: ts=4:sw=4:expandtab */ +var Internal = Internal || {}; + +(function() { + 'use strict'; + + // Insert some bytes into the emscripten memory and return a pointer + function _allocate(bytes) { + var address = Module._malloc(bytes.length); + Module.HEAPU8.set(bytes, address); + + return address; + } + + function _readBytes(address, length, array) { + array.set(Module.HEAPU8.subarray(address, address + length)); + } + + var basepoint = new Uint8Array(32); + basepoint[0] = 9; + + Internal.curve25519 = { + keyPair: function(privKey) { + var priv = new Uint8Array(privKey); + priv[0] &= 248; + priv[31] &= 127; + priv[31] |= 64; + + // Where to store the result + var publicKey_ptr = Module._malloc(32); + + // Get a pointer to the private key + var privateKey_ptr = _allocate(priv); + + // The basepoint for generating public keys + var basepoint_ptr = _allocate(basepoint); + + // The return value is just 0, the operation is done in place + var err = Module._curve25519_donna(publicKey_ptr, + privateKey_ptr, + basepoint_ptr); + + var res = new Uint8Array(32); + _readBytes(publicKey_ptr, 32, res); + + Module._free(publicKey_ptr); + Module._free(privateKey_ptr); + Module._free(basepoint_ptr); + + return { pubKey: res.buffer, privKey: priv.buffer }; + }, + sharedSecret: function(pubKey, privKey) { + // Where to store the result + var sharedKey_ptr = Module._malloc(32); + + // Get a pointer to our private key + var privateKey_ptr = _allocate(new Uint8Array(privKey)); + + // Get a pointer to their public key, the basepoint when you're + // generating a shared secret + var basepoint_ptr = _allocate(new Uint8Array(pubKey)); + + // Return value is 0 here too of course + var err = Module._curve25519_donna(sharedKey_ptr, + privateKey_ptr, + basepoint_ptr); + + var res = new Uint8Array(32); + _readBytes(sharedKey_ptr, 32, res); + + Module._free(sharedKey_ptr); + Module._free(privateKey_ptr); + Module._free(basepoint_ptr); + + return res.buffer; + }, + sign: function(privKey, message) { + // Where to store the result + var signature_ptr = Module._malloc(64); + + // Get a pointer to our private key + var privateKey_ptr = _allocate(new Uint8Array(privKey)); + + // Get a pointer to the message + var message_ptr = _allocate(new Uint8Array(message)); + + var err = Module._curve25519_sign(signature_ptr, + privateKey_ptr, + message_ptr, + message.byteLength); + + var res = new Uint8Array(64); + _readBytes(signature_ptr, 64, res); + + Module._free(signature_ptr); + Module._free(privateKey_ptr); + Module._free(message_ptr); + + return res.buffer; + }, + verify: function(pubKey, message, sig) { + // Get a pointer to their public key + var publicKey_ptr = _allocate(new Uint8Array(pubKey)); + + // Get a pointer to the signature + var signature_ptr = _allocate(new Uint8Array(sig)); + + // Get a pointer to the message + var message_ptr = _allocate(new Uint8Array(message)); + + var res = Module._curve25519_verify(signature_ptr, + publicKey_ptr, + message_ptr, + message.byteLength); + + Module._free(publicKey_ptr); + Module._free(signature_ptr); + Module._free(message_ptr); + + return res !== 0; + } + }; + + Internal.curve25519_async = { + keyPair: function(privKey) { + return new Promise(function(resolve) { + resolve(Internal.curve25519.keyPair(privKey)); + }); + }, + sharedSecret: function(pubKey, privKey) { + return new Promise(function(resolve) { + resolve(Internal.curve25519.sharedSecret(pubKey, privKey)); + }); + }, + sign: function(privKey, message) { + return new Promise(function(resolve) { + resolve(Internal.curve25519.sign(privKey, message)); + }); + }, + verify: function(pubKey, message, sig) { + return new Promise(function(resolve, reject) { + if (Internal.curve25519.verify(pubKey, message, sig)) { + reject(new Error("Invalid signature")); + } else { + resolve(); + } + }); + }, + }; + +})(); diff --git a/src/helpers.js b/src/helpers.js new file mode 100644 index 0000000..b3c800f --- /dev/null +++ b/src/helpers.js @@ -0,0 +1,49 @@ +/* + * vim: ts=4:sw=4 + */ + +var util = (function() { + 'use strict'; + + var StaticArrayBufferProto = new ArrayBuffer().__proto__; + + return { + toString: function(thing) { + if (typeof thing == 'string') { + return thing; + } + return new dcodeIO.ByteBuffer.wrap(thing).toString('binary'); + }, + toArrayBuffer: function(thing) { + if (thing === undefined) { + return undefined; + } + if (thing === Object(thing)) { + if (thing.__proto__ == StaticArrayBufferProto) { + return thing; + } + } + + var str; + if (typeof thing == "string") { + str = thing; + } else { + throw new Error("Tried to convert a non-string of type " + typeof thing + " to an array buffer"); + } + return new dcodeIO.ByteBuffer.wrap(thing, 'binary').toArrayBuffer(); + }, + isEqual: function(a, b) { + // TODO: Special-case arraybuffers, etc + if (a === undefined || b === undefined) { + return false; + } + a = util.toString(a); + b = util.toString(b); + var maxLength = Math.max(a.length, b.length); + if (maxLength < 5) { + throw new Error("a/b compare too short"); + } + return a.substring(0, Math.min(maxLength, a.length)) == b.substring(0, Math.min(maxLength, b.length)); + } + }; +})(); diff --git a/src/protobufs.js b/src/protobufs.js new file mode 100644 index 0000000..a16019c --- /dev/null +++ b/src/protobufs.js @@ -0,0 +1,17 @@ +/* vim: ts=4:sw=4 */ +var Internal = Internal || {}; + +Internal.protobuf = function() { + 'use strict'; + + function loadProtoBufs(filename) { + return dcodeIO.ProtoBuf.loadProto(Internal.protoText['protos/' + filename]).build('textsecure'); + } + + var protocolMessages = loadProtoBufs('WhisperTextProtocol.proto'); + + return { + WhisperMessage : protocolMessages.WhisperMessage, + PreKeyWhisperMessage : protocolMessages.PreKeyWhisperMessage + }; +}(); diff --git a/test/IdentityKeyStore_test.js b/test/IdentityKeyStore_test.js new file mode 100644 index 0000000..45c1724 --- /dev/null +++ b/test/IdentityKeyStore_test.js @@ -0,0 +1,61 @@ +function testIdentityKeyStore(store, registrationId, identityKey) { + describe('IdentityKeyStore', function() { + var number = '+5558675309'; + var testKey; + before(function(done) { + Internal.crypto.createKeyPair().then(function(keyPair) { + testKey = keyPair; + }).then(done,done); + }); + + describe('getLocalRegistrationId', function() { + it('retrieves my registration id', function(done) { + store.getLocalRegistrationId().then(function(reg) { + assert.strictEqual(reg, registrationId); + }).then(done, done); + }); + }); + describe('getIdentityKeyPair', function() { + it('retrieves my identity key', function(done) { + store.getIdentityKeyPair().then(function(key) { + assertEqualArrayBuffers(key.pubKey, identityKey.pubKey); + assertEqualArrayBuffers(key.privKey, identityKey.privKey); + }).then(done,done); + }); + }); + describe('saveIdentity', function() { + it('stores identity keys', function(done) { + store.saveIdentity(number, testKey.pubKey).then(function() { + return store.loadIdentityKey(number).then(function(key) { + assertEqualArrayBuffers(key, testKey.pubKey); + }); + }).then(done,done); + }); + }); + describe('isTrustedIdentity', function() { + it('returns true if a key is trusted', function(done) { + store.saveIdentity(number, testKey.pubKey).then(function() { + store.isTrustedIdentity(number, testKey.pubKey).then(function(trusted) { + if (trusted) { + done(); + } else { + done(new Error('Wrong value for trusted key')); + } + }).catch(done); + }); + }); + it('returns false if a key is untrusted', function(done) { + var newIdentity = libsignal.crypto.getRandomBytes(33); + store.saveIdentity(number, testKey.pubKey).then(function() { + store.isTrustedIdentity(number, newIdentity).then(function(trusted) { + if (trusted) { + done(new Error('Wrong value for untrusted key')); + } else { + done(); + } + }).catch(done); + }); + }); + }); + }); +} diff --git a/test/InMemorySignalProtocolStore.js b/test/InMemorySignalProtocolStore.js new file mode 100644 index 0000000..35f48db --- /dev/null +++ b/test/InMemorySignalProtocolStore.js @@ -0,0 +1,103 @@ +function SignalProtocolStore() { + this.store = {}; +} + +SignalProtocolStore.prototype = { + getIdentityKeyPair: function() { + return Promise.resolve(this.get('identityKey')); + }, + getLocalRegistrationId: function() { + return Promise.resolve(this.get('registrationId')); + }, + put: function(key, value) { + if (key === undefined || value === undefined || key === null || value === null) + throw new Error("Tried to store undefined/null"); + this.store[key] = value; + }, + get: function(key, defaultValue) { + if (key === null || key === undefined) + throw new Error("Tried to get value for undefined/null key"); + if (key in this.store) { + return this.store[key]; + } else { + return defaultValue; + } + }, + remove: function(key) { + if (key === null || key === undefined) + throw new Error("Tried to remove value for undefined/null key"); + delete this.store[key]; + }, + + isTrustedIdentity: function(identifier, identityKey) { + if (identifier === null || identifier === undefined) { + throw new Error("tried to check identity key for undefined/null key"); + } + if (!(identityKey instanceof ArrayBuffer)) { + throw new Error("Expected identityKey to be an ArrayBuffer"); + } + var trusted = this.get('identityKey' + identifier); + if (trusted === undefined) { + return Promise.resolve(true); + } + return Promise.resolve(util.toString(identityKey) === util.toString(trusted)); + }, + loadIdentityKey: function(identifier) { + if (identifier === null || identifier === undefined) + throw new Error("Tried to get identity key for undefined/null key"); + return Promise.resolve(this.get('identityKey' + identifier)); + }, + saveIdentity: function(identifier, identityKey) { + if (identifier === null || identifier === undefined) + throw new Error("Tried to put identity key for undefined/null key"); + return Promise.resolve(this.put('identityKey' + identifier, identityKey)); + }, + + /* Returns a prekeypair object or undefined */ + loadPreKey: function(keyId) { + var res = this.get('25519KeypreKey' + keyId); + if (res !== undefined) { + res = { pubKey: res.pubKey, privKey: res.privKey }; + } + return Promise.resolve(res); + }, + storePreKey: function(keyId, keyPair) { + return Promise.resolve(this.put('25519KeypreKey' + keyId, keyPair)); + }, + removePreKey: function(keyId) { + return Promise.resolve(this.remove('25519KeypreKey' + keyId)); + }, + + /* Returns a signed keypair object or undefined */ + loadSignedPreKey: function(keyId) { + var res = this.get('25519KeysignedKey' + keyId); + if (res !== undefined) { + res = { pubKey: res.pubKey, privKey: res.privKey }; + } + return Promise.resolve(res); + }, + storeSignedPreKey: function(keyId, keyPair) { + return Promise.resolve(this.put('25519KeysignedKey' + keyId, keyPair)); + }, + removeSignedPreKey: function(keyId) { + return Promise.resolve(this.remove('25519KeysignedKey' + keyId)); + }, + + loadSession: function(identifier) { + return Promise.resolve(this.get('session' + identifier)); + }, + storeSession: function(identifier, record) { + return Promise.resolve(this.put('session' + identifier, record)); + }, + removeSession: function(identifier) { + return Promise.resolve(this.remove('session' + identifier)); + }, + removeAllSessions: function(identifier) { + for (var id in this.store) { + if (id.startsWith('session' + identifier)) { + delete this.store[id]; + } + } + return Promise.resolve(); + } +}; diff --git a/test/KeyHelperTest.js b/test/KeyHelperTest.js new file mode 100644 index 0000000..43651f0 --- /dev/null +++ b/test/KeyHelperTest.js @@ -0,0 +1,58 @@ +describe('KeyHelper', function() { + function validateKeyPair(keyPair) { + assert.isDefined(keyPair.pubKey); + assert.isDefined(keyPair.privKey); + assert.strictEqual(keyPair.privKey.byteLength, 32); + assert.strictEqual(keyPair.pubKey.byteLength, 33); + assert.strictEqual(new Uint8Array(keyPair.pubKey)[0], 5); + } + + describe('generateIdentityKeyPair', function() { + it ('works', function() { + libsignal.KeyHelper.generateIdentityKeyPair().then(function(keyPair) { + validateKeyPair(keyPair); + }); + }); + }); + + describe('generateRegistrationId', function() { + it('generates a 14-bit integer', function() { + var registrationId = libsignal.KeyHelper.generateRegistrationId(); + assert.isNumber(registrationId); + assert(registrationId >= 0); + assert(registrationId < 16384); + assert.strictEqual(registrationId, Math.round(registrationId)); // integer + }); + }); + + describe("generatePreKey", function() { + it('generates a preKey', function(done) { + libsignal.KeyHelper.generatePreKey(1337).then(function(result) { + validateKeyPair(result.keyPair); + assert.strictEqual(result.keyId, 1337); + }).then(done, done); + }); + it('throws on bad keyId', function() { + assert.throws(function(done) { + libsignal.KeyHelper.generatePreKey('bad'); + }, TypeError); + }); + }); + + describe("generateSignedPreKey", function() { + it('generates a preKey', function(done) { + libsignal.KeyHelper.generateIdentityKeyPair().then(function(identityKey) { + libsignal.KeyHelper.generateSignedPreKey(identityKey, 1337).then(function(result) { + validateKeyPair(result.keyPair); + assert.strictEqual(result.keyId, 1337); + //todo: validate result.signature + }); + }).then(done, done); + }); + it('throws on bad keyId', function() { + assert.throws(function(done) { + libsignal.KeyHelper.generateSignedPreKey('bad'); + }, TypeError); + }); + }); +}); diff --git a/test/PreKeyStore_test.js b/test/PreKeyStore_test.js new file mode 100644 index 0000000..27787b9 --- /dev/null +++ b/test/PreKeyStore_test.js @@ -0,0 +1,52 @@ +function testPreKeyStore(store) { + var number = '+5558675309'; + var testKey; + describe('PreKeyStore', function() { + before(function(done) { + Internal.crypto.createKeyPair().then(function(keyPair) { + testKey = keyPair; + }).then(done,done); + }); + describe('storePreKey', function() { + it('stores prekeys', function(done) { + var address = new SignalProtocolAddress(number, 1); + store.storePreKey(address.toString(), testKey).then(function() { + return store.loadPreKey(address.toString()).then(function(key) { + assertEqualArrayBuffers(key.pubKey, testKey.pubKey); + assertEqualArrayBuffers(key.privKey, testKey.privKey); + }); + }).then(done,done); + }); + }); + describe('loadPreKey', function() { + it('returns prekeys that exist', function(done) { + var address = new SignalProtocolAddress(number, 1); + store.storePreKey(address.toString(), testKey).then(function() { + return store.loadPreKey(address.toString()).then(function(key) { + assertEqualArrayBuffers(key.pubKey, testKey.pubKey); + assertEqualArrayBuffers(key.privKey, testKey.privKey); + }); + }).then(done,done); + }); + it('returns undefined for prekeys that do not exist', function(done) { + var address = new SignalProtocolAddress(number, 2); + return store.loadPreKey(2).then(function(key) { + assert.isUndefined(key); + }).then(done,done); + }); + }); + describe('removePreKey', function() { + it('deletes prekeys', function(done) { + var address = new SignalProtocolAddress(number, 2); + before(function(done) { + store.storePreKey(address.toString(), testKey).then(done); + }); + store.removePreKey(address.toString()).then(function() { + return store.loadPreKey(address.toString()).then(function(key) { + assert.isUndefined(key); + }); + }).then(done,done); + }); + }); + }); +} diff --git a/test/SessionBuilderTest.js b/test/SessionBuilderTest.js new file mode 100644 index 0000000..3f94ab8 --- /dev/null +++ b/test/SessionBuilderTest.js @@ -0,0 +1,145 @@ +describe('SessionBuilder', function() { + this.timeout(5000); + var KeyHelper = libsignal.KeyHelper; + + function generateIdentity(store) { + return Promise.all([ + KeyHelper.generateIdentityKeyPair(), + KeyHelper.generateRegistrationId(), + ]).then(function(result) { + store.put('identityKey', result[0]); + store.put('registrationId', result[1]); + }); + } + + function generatePreKeyBundle(store, preKeyId, signedPreKeyId) { + return Promise.all([ + store.getIdentityKeyPair(), + store.getLocalRegistrationId() + ]).then(function(result) { + var identity = result[0]; + var registrationId = result[1]; + + return Promise.all([ + KeyHelper.generatePreKey(preKeyId), + KeyHelper.generateSignedPreKey(identity, signedPreKeyId), + ]).then(function(keys) { + var preKey = keys[0] + var signedPreKey = keys[1]; + + store.storePreKey(preKeyId, preKey.keyPair); + store.storeSignedPreKey(signedPreKeyId, signedPreKey.keyPair); + + return { + identityKey: identity.pubKey, + registrationId : registrationId, + preKey: { + keyId : preKeyId, + publicKey : preKey.keyPair.pubKey + }, + signedPreKey: { + keyId : signedPreKeyId, + publicKey : signedPreKey.keyPair.pubKey, + signature : signedPreKey.signature + } + }; + }); + }); + } + + var ALICE_ADDRESS = new SignalProtocolAddress("+14151111111", 1); + var BOB_ADDRESS = new SignalProtocolAddress("+14152222222", 1); + + describe("basic prekey v3", function() { + var aliceStore = new SignalProtocolStore(); + + var bobStore = new SignalProtocolStore(); + var bobPreKeyId = 1337; + var bobSignedKeyId = 1; + + var Curve = libsignal.Curve; + + before(function(done) { + Promise.all([ + generateIdentity(aliceStore), + generateIdentity(bobStore), + ]).then(function() { + return generatePreKeyBundle(bobStore, bobPreKeyId, bobSignedKeyId); + }).then(function(preKeyBundle) { + var builder = new libsignal.SessionBuilder(aliceStore, BOB_ADDRESS); + return builder.processPreKey(preKeyBundle).then(function() { + done(); + }); + }).catch(done); + }); + + var originalMessage = util.toArrayBuffer("L'homme est condamné à être libre"); + var aliceSessionCipher = new libsignal.SessionCipher(aliceStore, BOB_ADDRESS); + var bobSessionCipher = new libsignal.SessionCipher(bobStore, ALICE_ADDRESS); + + it('creates a session', function(done) { + return aliceStore.loadSession(BOB_ADDRESS.toString()).then(function(record) { + assert.isDefined(record); + var sessionRecord = Internal.SessionRecord.deserialize(record); + assert.isTrue(sessionRecord.haveOpenSession()); + assert.isDefined(sessionRecord.getOpenSession()); + }).then(done, done); + }); + + it('the session can encrypt', function(done) { + aliceSessionCipher.encrypt(originalMessage).then(function(ciphertext) { + + assert.strictEqual(ciphertext.type, 3); // PREKEY_BUNDLE + + return bobSessionCipher.decryptPreKeyWhisperMessage(ciphertext.body, 'binary'); + + }).then(function(plaintext) { + + assertEqualArrayBuffers(plaintext, originalMessage); + + }).then(done, done); + }); + + it('the session can decrypt', function(done) { + bobSessionCipher.encrypt(originalMessage).then(function(ciphertext) { + + return aliceSessionCipher.decryptWhisperMessage(ciphertext.body, 'binary'); + + }).then(function(plaintext) { + + assertEqualArrayBuffers(plaintext, originalMessage); + + }).then(done, done); + }); + + it('accepts a new preKey with the same identity', function(done) { + generatePreKeyBundle(bobStore, bobPreKeyId + 1, bobSignedKeyId + 1).then(function(preKeyBundle) { + var builder = new libsignal.SessionBuilder(aliceStore, BOB_ADDRESS); + return builder.processPreKey(preKeyBundle).then(function() { + return aliceStore.loadSession(BOB_ADDRESS.toString()).then(function(record) { + assert.isDefined(record); + var sessionRecord = Internal.SessionRecord.deserialize(record); + assert.isTrue(sessionRecord.haveOpenSession()); + assert.isDefined(sessionRecord.getOpenSession()); + done(); + }); + }); + }).catch(done); + }); + + it('rejects untrusted identity keys', function(done) { + KeyHelper.generateIdentityKeyPair().then(function(newIdentity) { + var builder = new libsignal.SessionBuilder(aliceStore, BOB_ADDRESS); + return builder.processPreKey({ + identityKey: newIdentity.pubKey, + registrationId : 12356 + }).then(function(e) { + assert.fail('should not be trusted'); + }).catch(function(e) { + assert.strictEqual(e.message, 'Identity key changed'); + done(); + }).catch(done); + }); + }); + }); +}); diff --git a/test/SessionCipherTest.js b/test/SessionCipherTest.js new file mode 100644 index 0000000..e70a41f --- /dev/null +++ b/test/SessionCipherTest.js @@ -0,0 +1,297 @@ +/* vim: ts=4:sw=4 */ + +'use strict'; +describe('SessionCipher', function() { + describe('getRemoteRegistrationId', function() { + var store = new SignalProtocolStore(); + var registrationId = 1337; + var address = new libsignal.SignalProtocolAddress('foo', 1); + var sessionCipher = new libsignal.SessionCipher(store, address.toString()); + describe('when a record exists', function() { + before(function(done) { + var record = new Internal.SessionRecord('identityKey', registrationId); + store.storeSession(address.toString(), record.serialize()).then(done); + }); + it('returns a valid registrationId', function(done) { + sessionCipher.getRemoteRegistrationId().then(function(value) { + assert.strictEqual(value, registrationId); + }).then(done,done); + }); + }); + describe('when a record does not exist', function() { + it('returns undefined', function(done) { + var sessionCipher = new libsignal.SessionCipher(store, 'bar.1'); + sessionCipher.getRemoteRegistrationId().then(function(value) { + assert.isUndefined(value); + }).then(done,done); + }); + }); + }); + + describe('hasOpenSession', function() { + var store = new SignalProtocolStore(); + var address = new libsignal.SignalProtocolAddress('foo', 1); + var sessionCipher = new libsignal.SessionCipher(store, address.toString()); + describe('registrationId is valid', function() { + before(function(done) { + var record = new Internal.SessionRecord('identityKey', 1); + store.storeSession(address.toString(), record.serialize()).then(done); + }); + it('returns true for a session with a valid registrationId', function(done) { + sessionCipher.hasOpenSession(address.toString()).then(function(value) { + assert.isTrue(value); + }).then(done,done); + }); + }); + describe('registrationId is null', function() { + before(function(done) { + var record = new Internal.SessionRecord('identityKey'); + store.storeSession(address.toString(), record.serialize()).then(done); + }); + it('returns false for a session with a null registrationId', function(done) { + sessionCipher.hasOpenSession(address.toString()).then(function(value) { + assert.isFalse(value); + }).then(done,done); + }); + }); + describe('when there is no session', function() { + it('returns false', function(done) { + sessionCipher.hasOpenSession('bar').then(function(value) { + assert.isFalse(value); + }).then(done,done); + }); + }); + }); + + + function setupReceiveStep(store, data, privKeyQueue) { + if (data.newEphemeralKey !== undefined) { + privKeyQueue.push(data.newEphemeralKey); + } + + if (data.ourIdentityKey === undefined) { + return Promise.resolve(); + } + + return Internal.crypto.createKeyPair(data.ourIdentityKey).then(function(keyPair) { + store.put('identityKey', keyPair); + }).then(function() { + return Internal.crypto.createKeyPair(data.ourSignedPreKey); + }).then(function(signedKeyPair) { + store.storeSignedPreKey(data.signedPreKeyId, signedKeyPair); + }).then(function() { + if (data.ourPreKey !== undefined) { + return Internal.crypto.createKeyPair(data.ourPreKey).then(function(keyPair) { + store.storePreKey(data.preKeyId, keyPair); + }); + } + }); + } + + function doReceiveStep(store, data, privKeyQueue, address) { + return setupReceiveStep(store, data, privKeyQueue).then(function() { + var sessionCipher = new libsignal.SessionCipher(store, address); + + if (data.type == textsecure.protobuf.IncomingPushMessageSignal.Type.CIPHERTEXT) { + return sessionCipher.decryptWhisperMessage(data.message); + } + else if (data.type == textsecure.protobuf.IncomingPushMessageSignal.Type.PREKEY_BUNDLE) { + return sessionCipher.decryptPreKeyWhisperMessage(data.message); + } else { + throw new Error("Unknown data type in test vector"); + } + + }).then(function checkResult(plaintext) { + var content = textsecure.protobuf.PushMessageContent.decode(plaintext); + if (data.expectTerminateSession) { + if (content.flags == textsecure.protobuf.PushMessageContent.Flags.END_SESSION) { + return true; + } else { + return false; + } + } + return content.body == data.expectedSmsText; + }).catch(function checkException(e) { + if (data.expectException) { + return true; + } + throw e; + }); + } + + function setupSendStep(store, data, privKeyQueue) { + if (data.registrationId !== undefined) { + store.put('registrationId', data.registrationId); + } + if (data.ourBaseKey !== undefined) { + privKeyQueue.push(data.ourBaseKey); + } + if (data.ourEphemeralKey !== undefined) { + privKeyQueue.push(data.ourEphemeralKey); + } + + if (data.ourIdentityKey !== undefined) { + return Internal.crypto.createKeyPair(data.ourIdentityKey).then(function(keyPair) { + store.put('identityKey', keyPair); + }); + } + return Promise.resolve(); + } + + function doSendStep(store, data, privKeyQueue, address) { + return setupSendStep(store, data, privKeyQueue).then(function() { + if (data.getKeys !== undefined) { + var deviceObject = { + encodedNumber : address.toString(), + identityKey : data.getKeys.identityKey, + preKey : data.getKeys.devices[0].preKey, + signedPreKey : data.getKeys.devices[0].signedPreKey, + registrationId : data.getKeys.devices[0].registrationId + }; + + var builder = new libsignal.SessionBuilder(store, address); + + return builder.processPreKey(deviceObject); + } + }).then(function() { + + var proto = new textsecure.protobuf.PushMessageContent(); + if (data.endSession) { + proto.flags = textsecure.protobuf.PushMessageContent.Flags.END_SESSION; + } else { + proto.body = data.smsText; + } + + var sessionCipher = new SessionCipher(store, address); + return sessionCipher.encrypt(proto.toArrayBuffer()).then(function(msg) { + //XXX: This should be all we do: isEqual(data.expectedCiphertext, encryptedMsg, false); + if (msg.type == 1) { + return util.isEqual(data.expectedCiphertext, msg.body); + } else { + if (new Uint8Array(data.expectedCiphertext)[0] !== msg.body.charCodeAt(0)) { + throw new Error("Bad version byte"); + } + + var expected = Internal.protobuf.PreKeyWhisperMessage.decode( + data.expectedCiphertext.slice(1) + ).encode(); + + if (!util.isEqual(expected, msg.body.substring(1))) { + throw new Error("Result does not match expected ciphertext"); + } + + return true; + } + }).then(function(res) { + if (data.endSession) { + return sessionCipher.closeOpenSessionForDevice().then(function() { + return res; + }); + } + return res; + }); + }); + } + + function getDescription(step) { + var direction = step[0]; + var data = step[1]; + if (direction === "receiveMessage") { + if (data.expectTerminateSession) { + return 'receive end session message'; + } else if (data.type === 3) { + return 'receive prekey message ' + data.expectedSmsText; + } else { + return 'receive message ' + data.expectedSmsText; + } + } else if (direction === "sendMessage") { + if (data.endSession) { + return 'send end session message'; + } else if (data.ourIdentityKey) { + return 'send prekey message ' + data.smsText; + } else { + return 'send message ' + data.smsText; + } + } + } + + TestVectors.forEach(function(test) { + describe(test.name, function(done) { + this.timeout(20000); + + var privKeyQueue = []; + var origCreateKeyPair = Internal.crypto.createKeyPair; + + before(function() { + // Shim createKeyPair to return predetermined keys from + // privKeyQueue instead of random keys. + Internal.crypto.createKeyPair = function(privKey) { + if (privKey !== undefined) { + return origCreateKeyPair(privKey); + } + if (privKeyQueue.length == 0) { + throw new Error('Out of private keys'); + } else { + var privKey = privKeyQueue.shift(); + return Internal.crypto.createKeyPair(privKey).then(function(keyPair) { + var a = btoa(util.toString(keyPair.privKey)); + var b = btoa(util.toString(privKey)); + if (util.toString(keyPair.privKey) != util.toString(privKey)) + throw new Error('Failed to rederive private key!'); + else + return keyPair; + }); + } + } + }); + + after(function() { + Internal.crypto.createKeyPair = origCreateKeyPair; + if (privKeyQueue.length != 0) { + throw new Error('Leftover private keys'); + } + }); + + function describeStep(step) { + var direction = step[0]; + var data = step[1]; + if (direction === "receiveMessage") { + if (data.expectTerminateSession) { + return 'receive end session message'; + } else if (data.type === 3) { + return 'receive prekey message ' + data.expectedSmsText; + } else { + return 'receive message ' + data.expectedSmsText; + } + } else if (direction === "sendMessage") { + if (data.endSession) { + return 'send end session message'; + } else if (data.ourIdentityKey) { + return 'send prekey message ' + data.smsText; + } else { + return 'send message ' + data.smsText; + } + } + } + + var store = new SignalProtocolStore(); + var address = libsignal.SignalProtocolAddress.fromString("SNOWDEN.1"); + test.vectors.forEach(function(step) { + it(getDescription(step), function(done) { + var doStep; + + if (step[0] === "receiveMessage") { + doStep = doReceiveStep; + } else if (step[0] === "sendMessage") { + doStep = doSendStep; + } else { + throw new Error('Invalid test'); + } + + doStep(store, step[1], privKeyQueue, address) + .then(assert).then(done, done); + }); + }); + }); + }); +}); diff --git a/test/SessionStore_test.js b/test/SessionStore_test.js new file mode 100644 index 0000000..2ecb932 --- /dev/null +++ b/test/SessionStore_test.js @@ -0,0 +1,77 @@ +function testSessionStore(store) { + describe('SessionStore', function() { + var number = '+5558675309'; + var testRecord = 'an opaque string'; + describe('storeSession', function() { + var address = new SignalProtocolAddress(number, 1); + it('stores sessions encoded as strings', function(done) { + store.storeSession(address.toString(), testRecord).then(function() { + return store.loadSession(address.toString()).then(function(record) { + assert.strictEqual(record, testRecord); + }); + }).then(done,done); + }); + it('stores sessions encoded as array buffers', function(done) { + var testRecord = new Uint8Array([1,2,3]).buffer; + store.storeSession(address.toString(), testRecord).then(function() { + return store.loadSession(address.toString()).then(function(record) { + assertEqualArrayBuffers(testRecord, record); + }); + }).then(done,done); + }); + }); + describe('loadSession', function() { + it('returns sessions that exist', function(done) { + var address = new SignalProtocolAddress(number, 1); + var testRecord = 'an opaque string'; + store.storeSession(address.toString(), testRecord).then(function() { + return store.loadSession(address.toString()).then(function(record) { + assert.strictEqual(record, testRecord); + }); + }).then(done,done); + }); + it('returns undefined for sessions that do not exist', function(done) { + var address = new SignalProtocolAddress(number, 2); + return store.loadSession(address.toString()).then(function(record) { + assert.isUndefined(record); + }).then(done,done); + }); + }); + describe('removeSession', function() { + it('deletes sessions', function(done) { + var address = new SignalProtocolAddress(number, 1); + before(function(done) { + store.storeSession(address.toString(), testRecord).then(done); + }); + store.removeSession(address.toString()).then(function() { + return store.loadSession(address.toString()).then(function(record) { + assert.isUndefined(record); + }); + }).then(done,done); + }); + }); + describe('removeAllSessions', function() { + it('removes all sessions for a number', function(done) { + var devices = [1, 2, 3].map(function(deviceId) { + var address = new SignalProtocolAddress(number, deviceId); + return address.toString(); + }); + var promise = Promise.resolve(); + devices.forEach(function(encodedNumber) { + promise = promise.then(function() { + return store.storeSession(encodedNumber, testRecord + encodedNumber); + }); + }); + promise.then(function() { + return store.removeAllSessions(number).then(function(record) { + return Promise.all(devices.map(store.loadSession.bind(store))).then(function(records) { + for (var i in records) { + assert.isUndefined(records[i]); + }; + }); + }); + }).then(done,done); + }); + }); + }); +} diff --git a/test/SignalProtocolAddressTest.js b/test/SignalProtocolAddressTest.js new file mode 100644 index 0000000..5e52f76 --- /dev/null +++ b/test/SignalProtocolAddressTest.js @@ -0,0 +1,37 @@ +describe('SignalProtocolAddress', function() { + var name = 'name'; + var deviceId = 42; + var string = 'name.42'; + describe('getName', function() { + it('returns the name', function() { + var address = new SignalProtocolAddress(name, 1); + assert.strictEqual(name, address.getName()); + }); + }); + describe('getDeviceId', function() { + it('returns the deviceId', function() { + var address = new SignalProtocolAddress(name, deviceId); + assert.strictEqual(deviceId, address.getDeviceId()); + }); + }); + describe('toString', function() { + it('returns the address', function() { + var address = new SignalProtocolAddress(name, deviceId); + assert.strictEqual(string, address.toString()); + }); + }); + describe('fromString', function() { + it('throws on a bad inputs', function() { + [ '', null, {} ].forEach(function(input) { + assert.throws(function() { + var address = libsignal.SignalProtocolAddress.fromString(input); + }); + }); + }); + it('constructs the address', function() { + var address = libsignal.SignalProtocolAddress.fromString(string); + assert.strictEqual(deviceId, address.getDeviceId()); + assert.strictEqual(name, address.getName()); + }); + }); +}); diff --git a/test/SignalProtocolStore_test.js b/test/SignalProtocolStore_test.js new file mode 100644 index 0000000..97d40f2 --- /dev/null +++ b/test/SignalProtocolStore_test.js @@ -0,0 +1,20 @@ +/* vim: ts=4:sw=4 */ + +'use strict'; + +describe("SignalProtocolStore", function() { + var store = new SignalProtocolStore(); + var registrationId = 1337; + var identityKey = { + pubKey: Internal.crypto.getRandomBytes(33), + privKey: Internal.crypto.getRandomBytes(32), + }; + before(function() { + store.put('registrationId', registrationId); + store.put('identityKey', identityKey); + }); + testIdentityKeyStore(store, registrationId, identityKey); + testPreKeyStore(store); + testSignedPreKeyStore(store); + testSessionStore(store); +}); diff --git a/test/SignedPreKeyStore_test.js b/test/SignedPreKeyStore_test.js new file mode 100644 index 0000000..4df15a7 --- /dev/null +++ b/test/SignedPreKeyStore_test.js @@ -0,0 +1,49 @@ +function testSignedPreKeyStore(store) { + describe('SignedPreKeyStore', function() { + var testKey; + before(function(done) { + Internal.crypto.createKeyPair().then(function(keyPair) { + testKey = keyPair; + }).then(done,done); + }); + describe('storeSignedPreKey', function() { + it('stores signed prekeys', function(done) { + store.storeSignedPreKey(3, testKey).then(function() { + return store.loadSignedPreKey(3).then(function(key) { + assertEqualArrayBuffers(key.pubKey, testKey.pubKey); + assertEqualArrayBuffers(key.privKey, testKey.privKey); + }); + }).then(done,done); + }); + }); + describe('loadSignedPreKey', function() { + it('returns prekeys that exist', function(done) { + store.storeSignedPreKey(1, testKey).then(function() { + return store.loadSignedPreKey(1).then(function(key) { + assertEqualArrayBuffers(key.pubKey, testKey.pubKey); + assertEqualArrayBuffers(key.privKey, testKey.privKey); + }); + }).then(done,done); + }); + it('returns undefined for prekeys that do not exist', function(done) { + store.storeSignedPreKey(1, testKey).then(function() { + return store.loadSignedPreKey(2).then(function(key) { + assert.isUndefined(key); + }); + }).then(done,done); + }); + }); + describe('removeSignedPreKey', function() { + it('deletes signed prekeys', function(done) { + before(function(done) { + store.storeSignedPreKey(4, testKey).then(done); + }); + store.removeSignedPreKey(4, testKey).then(function() { + return store.loadSignedPreKey(4).then(function(key) { + assert.isUndefined(key); + }); + }).then(done,done); + }); + }); + }); +} diff --git a/test/_test.js b/test/_test.js new file mode 100644 index 0000000..d4d557b --- /dev/null +++ b/test/_test.js @@ -0,0 +1,54 @@ +mocha.setup("bdd"); +window.assert = chai.assert; + +(function() { + var OriginalReporter = mocha._reporter; + + var SauceReporter = function(runner) { + var failedTests = []; + + runner.on('end', function() { + window.mochaResults = runner.stats; + window.mochaResults.reports = failedTests; + }); + + runner.on('fail', function(test, err) { + var flattenTitles = function(test) { + var titles = []; + while (test.parent.title) { + titles.push(test.parent.title); + test = test.parent; + } + return titles.reverse(); + }; + failedTests.push({ + name: test.title, + result: false, + message: err.message, + stack: err.stack, + titles: flattenTitles(test) + }); + }); + + new OriginalReporter(runner); + }; + + SauceReporter.prototype = OriginalReporter.prototype; + + mocha.reporter(SauceReporter); +}()); + +/* + * global helpers for tests + */ +function assertEqualArrayBuffers(ab1, ab2) { + assert.deepEqual(new Uint8Array(ab1), new Uint8Array(ab2)); +}; + +function hexToArrayBuffer(str) { + var ret = new ArrayBuffer(str.length / 2); + var array = new Uint8Array(ret); + for (var i = 0; i < str.length/2; i++) + array[i] = parseInt(str.substr(i*2, 2), 16); + return ret; +}; diff --git a/test/crypto_test.js b/test/crypto_test.js new file mode 100644 index 0000000..b9c3b98 --- /dev/null +++ b/test/crypto_test.js @@ -0,0 +1,159 @@ +/* vim: ts=4:sw=4 */ + +'use strict'; +window.assert = chai.assert; + +describe("Crypto", function() { + describe("Encrypt AES-CBC", function() { + it('works', function(done) { + var key = hexToArrayBuffer('603deb1015ca71be2b73aef0857d77811f352c073b6108d72d9810a30914dff4'); + var iv = hexToArrayBuffer('000102030405060708090a0b0c0d0e0f'); + var plaintext = hexToArrayBuffer('6bc1bee22e409f96e93d7e117393172aae2d8a571e03ac9c9eb76fac45af8e5130c81c46a35ce411e5fbc1191a0a52eff69f2445df4f9b17ad2b417be66c3710'); + var ciphertext = hexToArrayBuffer('f58c4c04d6e5f1ba779eabfb5f7bfbd69cfc4e967edb808d679f777bc6702c7d39f23369a9d9bacfa530e26304231461b2eb05e2c39be9fcda6c19078c6a9d1b3f461796d6b0d6b2e0c2a72b4d80e644'); + Internal.crypto.encrypt(key, plaintext, iv).then(function(result) { + assertEqualArrayBuffers(result, ciphertext); + }).then(done).catch(done); + }); + }); + + describe("Decrypt AES-CBC", function() { + it('works', function(done) { + var key = hexToArrayBuffer('603deb1015ca71be2b73aef0857d77811f352c073b6108d72d9810a30914dff4'); + var iv = hexToArrayBuffer('000102030405060708090a0b0c0d0e0f'); + var plaintext = hexToArrayBuffer('6bc1bee22e409f96e93d7e117393172aae2d8a571e03ac9c9eb76fac45af8e5130c81c46a35ce411e5fbc1191a0a52eff69f2445df4f9b17ad2b417be66c3710'); + var ciphertext = hexToArrayBuffer('f58c4c04d6e5f1ba779eabfb5f7bfbd69cfc4e967edb808d679f777bc6702c7d39f23369a9d9bacfa530e26304231461b2eb05e2c39be9fcda6c19078c6a9d1b3f461796d6b0d6b2e0c2a72b4d80e644'); + Internal.crypto.decrypt(key, ciphertext, iv).then(function(result) { + assertEqualArrayBuffers(result, plaintext); + }).then(done).catch(done); + }); + }); + + describe("HMAC SHA-256", function() { + it("works", function(done) { + var key = hexToArrayBuffer('6f35628d65813435534b5d67fbdb54cb33403d04e843103e6399f806cb5df95febbdd61236f33245'); + var input = hexToArrayBuffer('752cff52e4b90768558e5369e75d97c69643509a5e5904e0a386cbe4d0970ef73f918f675945a9aefe26daea27587e8dc909dd56fd0468805f834039b345f855cfe19c44b55af241fff3ffcd8045cd5c288e6c4e284c3720570b58e4d47b8feeedc52fd1401f698a209fccfa3b4c0d9a797b046a2759f82a54c41ccd7b5f592b'); + var mac = hexToArrayBuffer('05d1243e6465ed9620c9aec1c351a186'); + Internal.crypto.sign(key, input).then(function(result) { + assertEqualArrayBuffers(result.slice(0, mac.byteLength), mac); + }).then(done).catch(done); + }); + }); + + + describe("HKDF", function() { + it('works', function(done) { + // HMAC RFC5869 Test vectors + var T1 = hexToArrayBuffer("3cb25f25faacd57a90434f64d0362f2a2d2d0a90cf1a5a4c5db02d56ecc4c5bf"); + var T2 = hexToArrayBuffer("34007208d5b887185865"); + var IKM = new Uint8Array(new ArrayBuffer(22)); + for (var i = 0; i < 22; i++) + IKM[i] = 11; + + var salt = new Uint8Array(new ArrayBuffer(13)); + for (var i = 0; i < 13; i++) + salt[i] = i; + + var info = new Uint8Array(new ArrayBuffer(10)); + for (var i = 0; i < 10; i++) + info[i] = 240 + i; + + return Internal.crypto.HKDF(IKM.buffer, salt.buffer, info.buffer).then(function(OKM){ + assertEqualArrayBuffers(OKM[0], T1); + assertEqualArrayBuffers(OKM[1].slice(0, 10), T2); + }).then(done).catch(done); + }); + }); + + function testCurve25519() { + var alice_bytes = hexToArrayBuffer("77076d0a7318a57d3c16c17251b26645df4c2f87ebc0992ab177fba51db92c2a"); + var alice_priv = hexToArrayBuffer("70076d0a7318a57d3c16c17251b26645df4c2f87ebc0992ab177fba51db92c6a"); + var alice_pub = hexToArrayBuffer("058520f0098930a754748b7ddcb43ef75a0dbf3a0d26381af4eba4a98eaa9b4e6a"); + var bob_bytes = hexToArrayBuffer("5dab087e624a8a4b79e17f8b83800ee66f3bb1292618b6fd1c2f8b27ff88e0eb"); + var bob_priv = hexToArrayBuffer("58ab087e624a8a4b79e17f8b83800ee66f3bb1292618b6fd1c2f8b27ff88e06b"); + var bob_pub = hexToArrayBuffer("05de9edb7d7b7dc1b4d35b61c2ece435373f8343c85b78674dadfc7e146f882b4f"); + var shared_sec = hexToArrayBuffer("4a5d9d5ba4ce2de1728e3bf480350f25e07e21c947d19e3376f09b3c1e161742"); + + describe("createKeyPair", function() { + it ('converts alice private keys to a keypair', function(done) { + Internal.crypto.createKeyPair(alice_bytes).then(function(keypair) { + assertEqualArrayBuffers(keypair.privKey, alice_priv); + assertEqualArrayBuffers(keypair.pubKey, alice_pub); + done(); + }).catch(done); + }); + it ('converts bob private keys to a keypair', function(done) { + Internal.crypto.createKeyPair(bob_bytes).then(function(keypair) { + assertEqualArrayBuffers(keypair.privKey, bob_priv); + assertEqualArrayBuffers(keypair.pubKey, bob_pub); + done(); + }).catch(done); + }); + it ('generates a key if one is not provided', function(done) { + Internal.crypto.createKeyPair().then(function(keypair) { + assert.strictEqual(keypair.privKey.byteLength, 32); + assert.strictEqual(keypair.pubKey.byteLength, 33); + assert.strictEqual(new Uint8Array(keypair.pubKey)[0], 5); + done(); + }).catch(done); + }); + }); + + describe("ECDHE", function() { + it("computes the shared secret for alice", function(done) { + Internal.crypto.ECDHE(bob_pub, alice_priv).then(function(secret) { + assertEqualArrayBuffers(shared_sec, secret); + done(); + }).catch(done); + }); + it("computes the shared secret for bob", function(done) { + Internal.crypto.ECDHE(alice_pub, bob_priv).then(function(secret) { + assertEqualArrayBuffers(shared_sec, secret); + done(); + }).catch(done); + }); + }); + + var priv = hexToArrayBuffer("48a8892cc4e49124b7b57d94fa15becfce071830d6449004685e387c62409973"); + var pub = hexToArrayBuffer("0555f1bfede27b6a03e0dd389478ffb01462e5c52dbbac32cf870f00af1ed9af3a"); + var msg = hexToArrayBuffer("617364666173646661736466"); + var sig = hexToArrayBuffer("2bc06c745acb8bae10fbc607ee306084d0c28e2b3bb819133392473431291fd0dfa9c7f11479996cf520730d2901267387e08d85bbf2af941590e3035a545285"); + describe("Ed25519Sign", function() { + // Some self-generated test vectors + it('works', function(done) { + return Internal.crypto.Ed25519Sign(priv, msg).then(function(sigCalc) { + assertEqualArrayBuffers(sig, sigCalc); + }).then(done).catch(done); + }); + }); + + describe("Ed25519Verify", function() { + it("throws on bad signature", function(done) { + var badsig = sig.slice(0); + new Uint8Array(badsig).set([0], 0); + + Internal.crypto.Ed25519Verify(pub, msg, badsig).catch(function(e) { + if (e.message === 'Invalid signature') { + done(); + } else { throw e; } + }).catch(done); + }); + + it("does not throw on good signature", function(done) { + return Internal.crypto.Ed25519Verify(pub, msg, sig).then(done).catch(done); + }); + }); + } + + describe('curve25519', function() { + testCurve25519(); + }); + describe('curve25519 in a worker', function() { + before(function() { + libsignal.worker.startWorker('../../dist/libsignal-protocol-worker.js'); + }); + after(function() { + libsignal.worker.stopWorker(); + }); + testCurve25519(); + }); +}); diff --git a/test/helpers_test.js b/test/helpers_test.js new file mode 100644 index 0000000..0b671b0 --- /dev/null +++ b/test/helpers_test.js @@ -0,0 +1,27 @@ +/* vim: ts=4:sw=4 */ + +'use strict'; +describe('util', function() { + describe("isEqual", function(){ + it('returns false when a or b is undefined', function(){ + assert.isFalse(util.isEqual("defined value", undefined)); + assert.isFalse(util.isEqual(undefined, "defined value")); + }); + it('returns true when a and b are equal', function(){ + var a = "same value"; + var b = "same value"; + assert.isTrue(util.isEqual(a, b)); + }); + it('returns false when a and b are not equal', function(){ + var a = "same value"; + var b = "diferent value"; + assert.isFalse(util.isEqual(a, b)); + }); + it('throws an error when a/b compare is too short', function(){ + var a = "1234"; + var b = "1234"; + assert.throw(function() { util.isEqual(a, b) }, + Error, /a\/b compare too short/); + }); + }); +}); diff --git a/test/index.html b/test/index.html new file mode 100644 index 0000000..c0f66e6 --- /dev/null +++ b/test/index.html @@ -0,0 +1,49 @@ + + + libsignal-protocol tests + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/protos b/test/protos new file mode 120000 index 0000000..3d021e5 --- /dev/null +++ b/test/protos @@ -0,0 +1 @@ +../../protos/ \ No newline at end of file diff --git a/test/temp_helpers.js b/test/temp_helpers.js new file mode 100644 index 0000000..d3ee2f8 --- /dev/null +++ b/test/temp_helpers.js @@ -0,0 +1,63 @@ +var pushMessages = dcodeIO.ProtoBuf.loadProto('package textsecure;\n' + +'\n' + +'option java_package = "org.whispersystems.textsecure.push";\n' + +'option java_outer_classname = "PushMessageProtos";\n' + +'\n' + +'message IncomingPushMessageSignal {\n' + +' enum Type {\n' + +' UNKNOWN = 0;\n' + +' CIPHERTEXT = 1;\n' + +' KEY_EXCHANGE = 2;\n' + +' PREKEY_BUNDLE = 3;\n' + +' PLAINTEXT = 4;\n' + +' RECEIPT = 5;\n' + +' PREKEY_BUNDLE_DEVICE_CONTROL = 6;\n' + +' DEVICE_CONTROL = 7;\n' + +' }\n' + +' optional Type type = 1;\n' + +' optional string source = 2;\n' + +' optional uint32 sourceDevice = 7;\n' + +' optional string relay = 3;\n' + +' optional uint64 timestamp = 5;\n' + +' optional bytes message = 6; // Contains an encrypted PushMessageContent\n' + +'// repeated string destinations = 4; // No longer supported\n' + +'}\n' + +'\n' + +'message PushMessageContent {\n' + +' message AttachmentPointer {\n' + +' optional fixed64 id = 1;\n' + +' optional string contentType = 2;\n' + +' optional bytes key = 3;\n' + +' }\n' + +'\n' + +' message GroupContext {\n' + +' enum Type {\n' + +' UNKNOWN = 0;\n' + +' UPDATE = 1;\n' + +' DELIVER = 2;\n' + +' QUIT = 3;\n' + +' }\n' + +' optional bytes id = 1;\n' + +' optional Type type = 2;\n' + +' optional string name = 3;\n' + +' repeated string members = 4;\n' + +' optional AttachmentPointer avatar = 5;\n' + +' }\n' + +'\n' + +' enum Flags {\n' + +' END_SESSION = 1;\n' + +' }\n' + +'\n' + +' optional string body = 1;\n' + +' repeated AttachmentPointer attachments = 2;\n' + +' optional GroupContext group = 3;\n' + +' optional uint32 flags = 4;\n' + +'}').build('textsecure'); + +window.textsecure = { + protobuf: { + IncomingPushMessageSignal : pushMessages.IncomingPushMessageSignal, + PushMessageContent : pushMessages.PushMessageContent, + } + +}; diff --git a/test/test.js b/test/test.js new file mode 100644 index 0000000..3ce94b3 --- /dev/null +++ b/test/test.js @@ -0,0 +1,34455 @@ +var Internal = {}; +window.libsignal = {}; +(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o 1) { + suites.shift(); + } + var suite = Suite.create(suites[0], title); + suite.file = file; + suites.unshift(suite); + return suite; + }; + + /** + * Exclusive test-case. + */ + + context.suite.only = function(title, fn) { + var suite = context.suite(title, fn); + mocha.grep(suite.fullTitle()); + }; + + /** + * Describe a specification or test-case + * with the given `title` and callback `fn` + * acting as a thunk. + */ + + context.test = function(title, fn) { + var test = new Test(title, fn); + test.file = file; + suites[0].addTest(test); + return test; + }; + + /** + * Exclusive test-case. + */ + + context.test.only = function(title, fn) { + var test = context.test(title, fn); + var reString = '^' + escapeRe(test.fullTitle()) + '$'; + mocha.grep(new RegExp(reString)); + }; + + context.test.skip = common.test.skip; + context.test.retries = common.test.retries; + }); +}; + +},{"../suite":37,"../test":38,"./common":9,"escape-string-regexp":49}],13:[function(require,module,exports){ +/** + * Module dependencies. + */ + +var Suite = require('../suite'); +var Test = require('../test'); +var escapeRe = require('escape-string-regexp'); + +/** + * TDD-style interface: + * + * suite('Array', function() { + * suite('#indexOf()', function() { + * suiteSetup(function() { + * + * }); + * + * test('should return -1 when not present', function() { + * + * }); + * + * test('should return the index when present', function() { + * + * }); + * + * suiteTeardown(function() { + * + * }); + * }); + * }); + * + * @param {Suite} suite Root suite. + */ +module.exports = function(suite) { + var suites = [suite]; + + suite.on('pre-require', function(context, file, mocha) { + var common = require('./common')(suites, context); + + context.setup = common.beforeEach; + context.teardown = common.afterEach; + context.suiteSetup = common.before; + context.suiteTeardown = common.after; + context.run = mocha.options.delay && common.runWithSuite(suite); + + /** + * Describe a "suite" with the given `title` and callback `fn` containing + * nested suites and/or tests. + */ + context.suite = function(title, fn) { + var suite = Suite.create(suites[0], title); + suite.file = file; + suites.unshift(suite); + fn.call(suite); + suites.shift(); + return suite; + }; + + /** + * Pending suite. + */ + context.suite.skip = function(title, fn) { + var suite = Suite.create(suites[0], title); + suite.pending = true; + suites.unshift(suite); + fn.call(suite); + suites.shift(); + }; + + /** + * Exclusive test-case. + */ + context.suite.only = function(title, fn) { + var suite = context.suite(title, fn); + mocha.grep(suite.fullTitle()); + }; + + /** + * Describe a specification or test-case with the given `title` and + * callback `fn` acting as a thunk. + */ + context.test = function(title, fn) { + var suite = suites[0]; + if (suite.isPending()) { + fn = null; + } + var test = new Test(title, fn); + test.file = file; + suite.addTest(test); + return test; + }; + + /** + * Exclusive test-case. + */ + + context.test.only = function(title, fn) { + var test = context.test(title, fn); + var reString = '^' + escapeRe(test.fullTitle()) + '$'; + mocha.grep(new RegExp(reString)); + }; + + context.test.skip = common.test.skip; + context.test.retries = common.test.retries; + }); +}; + +},{"../suite":37,"../test":38,"./common":9,"escape-string-regexp":49}],14:[function(require,module,exports){ +(function (process,global,__dirname){ +/*! + * mocha + * Copyright(c) 2011 TJ Holowaychuk + * MIT Licensed + */ + +/** + * Module dependencies. + */ + +var escapeRe = require('escape-string-regexp'); +var path = require('path'); +var reporters = require('./reporters'); +var utils = require('./utils'); + +/** + * Expose `Mocha`. + */ + +exports = module.exports = Mocha; + +/** + * To require local UIs and reporters when running in node. + */ + +if (!process.browser) { + var cwd = process.cwd(); + module.paths.push(cwd, path.join(cwd, 'node_modules')); +} + +/** + * Expose internals. + */ + +exports.utils = utils; +exports.interfaces = require('./interfaces'); +exports.reporters = reporters; +exports.Runnable = require('./runnable'); +exports.Context = require('./context'); +exports.Runner = require('./runner'); +exports.Suite = require('./suite'); +exports.Hook = require('./hook'); +exports.Test = require('./test'); + +/** + * Return image `name` path. + * + * @api private + * @param {string} name + * @return {string} + */ +function image(name) { + return path.join(__dirname, '../images', name + '.png'); +} + +/** + * Set up mocha with `options`. + * + * Options: + * + * - `ui` name "bdd", "tdd", "exports" etc + * - `reporter` reporter instance, defaults to `mocha.reporters.spec` + * - `globals` array of accepted globals + * - `timeout` timeout in milliseconds + * - `retries` number of times to retry failed tests + * - `bail` bail on the first test failure + * - `slow` milliseconds to wait before considering a test slow + * - `ignoreLeaks` ignore global leaks + * - `fullTrace` display the full stack-trace on failing + * - `grep` string or regexp to filter tests with + * + * @param {Object} options + * @api public + */ +function Mocha(options) { + options = options || {}; + this.files = []; + this.options = options; + if (options.grep) { + this.grep(new RegExp(options.grep)); + } + if (options.fgrep) { + this.grep(options.fgrep); + } + this.suite = new exports.Suite('', new exports.Context()); + this.ui(options.ui); + this.bail(options.bail); + this.reporter(options.reporter, options.reporterOptions); + if (typeof options.timeout !== 'undefined' && options.timeout !== null) { + this.timeout(options.timeout); + } + if (typeof options.retries !== 'undefined' && options.retries !== null) { + this.retries(options.retries); + } + this.useColors(options.useColors); + if (options.enableTimeouts !== null) { + this.enableTimeouts(options.enableTimeouts); + } + if (options.slow) { + this.slow(options.slow); + } +} + +/** + * Enable or disable bailing on the first failure. + * + * @api public + * @param {boolean} [bail] + */ +Mocha.prototype.bail = function(bail) { + if (!arguments.length) { + bail = true; + } + this.suite.bail(bail); + return this; +}; + +/** + * Add test `file`. + * + * @api public + * @param {string} file + */ +Mocha.prototype.addFile = function(file) { + this.files.push(file); + return this; +}; + +/** + * Set reporter to `reporter`, defaults to "spec". + * + * @param {String|Function} reporter name or constructor + * @param {Object} reporterOptions optional options + * @api public + * @param {string|Function} reporter name or constructor + * @param {Object} reporterOptions optional options + */ +Mocha.prototype.reporter = function(reporter, reporterOptions) { + if (typeof reporter === 'function') { + this._reporter = reporter; + } else { + reporter = reporter || 'spec'; + var _reporter; + // Try to load a built-in reporter. + if (reporters[reporter]) { + _reporter = reporters[reporter]; + } + // Try to load reporters from process.cwd() and node_modules + if (!_reporter) { + try { + _reporter = require(reporter); + } catch (err) { + err.message.indexOf('Cannot find module') !== -1 + ? console.warn('"' + reporter + '" reporter not found') + : console.warn('"' + reporter + '" reporter blew up with error:\n' + err.stack); + } + } + if (!_reporter && reporter === 'teamcity') { + console.warn('The Teamcity reporter was moved to a package named ' + + 'mocha-teamcity-reporter ' + + '(https://npmjs.org/package/mocha-teamcity-reporter).'); + } + if (!_reporter) { + throw new Error('invalid reporter "' + reporter + '"'); + } + this._reporter = _reporter; + } + this.options.reporterOptions = reporterOptions; + return this; +}; + +/** + * Set test UI `name`, defaults to "bdd". + * + * @api public + * @param {string} bdd + */ +Mocha.prototype.ui = function(name) { + name = name || 'bdd'; + this._ui = exports.interfaces[name]; + if (!this._ui) { + try { + this._ui = require(name); + } catch (err) { + throw new Error('invalid interface "' + name + '"'); + } + } + this._ui = this._ui(this.suite); + + this.suite.on('pre-require', function(context) { + exports.afterEach = context.afterEach || context.teardown; + exports.after = context.after || context.suiteTeardown; + exports.beforeEach = context.beforeEach || context.setup; + exports.before = context.before || context.suiteSetup; + exports.describe = context.describe || context.suite; + exports.it = context.it || context.test; + exports.setup = context.setup || context.beforeEach; + exports.suiteSetup = context.suiteSetup || context.before; + exports.suiteTeardown = context.suiteTeardown || context.after; + exports.suite = context.suite || context.describe; + exports.teardown = context.teardown || context.afterEach; + exports.test = context.test || context.it; + exports.run = context.run; + }); + + return this; +}; + +/** + * Load registered files. + * + * @api private + */ +Mocha.prototype.loadFiles = function(fn) { + var self = this; + var suite = this.suite; + this.files.forEach(function(file) { + file = path.resolve(file); + suite.emit('pre-require', global, file, self); + suite.emit('require', require(file), file, self); + suite.emit('post-require', global, file, self); + }); + fn && fn(); +}; + +/** + * Enable growl support. + * + * @api private + */ +Mocha.prototype._growl = function(runner, reporter) { + var notify = require('growl'); + + runner.on('end', function() { + var stats = reporter.stats; + if (stats.failures) { + var msg = stats.failures + ' of ' + runner.total + ' tests failed'; + notify(msg, { name: 'mocha', title: 'Failed', image: image('error') }); + } else { + notify(stats.passes + ' tests passed in ' + stats.duration + 'ms', { + name: 'mocha', + title: 'Passed', + image: image('ok') + }); + } + }); +}; + +/** + * Add regexp to grep, if `re` is a string it is escaped. + * + * @param {RegExp|String} re + * @return {Mocha} + * @api public + * @param {RegExp|string} re + * @return {Mocha} + */ +Mocha.prototype.grep = function(re) { + this.options.grep = typeof re === 'string' ? new RegExp(escapeRe(re)) : re; + return this; +}; + +/** + * Invert `.grep()` matches. + * + * @return {Mocha} + * @api public + */ +Mocha.prototype.invert = function() { + this.options.invert = true; + return this; +}; + +/** + * Ignore global leaks. + * + * @param {Boolean} ignore + * @return {Mocha} + * @api public + * @param {boolean} ignore + * @return {Mocha} + */ +Mocha.prototype.ignoreLeaks = function(ignore) { + this.options.ignoreLeaks = Boolean(ignore); + return this; +}; + +/** + * Enable global leak checking. + * + * @return {Mocha} + * @api public + */ +Mocha.prototype.checkLeaks = function() { + this.options.ignoreLeaks = false; + return this; +}; + +/** + * Display long stack-trace on failing + * + * @return {Mocha} + * @api public + */ +Mocha.prototype.fullTrace = function() { + this.options.fullStackTrace = true; + return this; +}; + +/** + * Enable growl support. + * + * @return {Mocha} + * @api public + */ +Mocha.prototype.growl = function() { + this.options.growl = true; + return this; +}; + +/** + * Ignore `globals` array or string. + * + * @param {Array|String} globals + * @return {Mocha} + * @api public + * @param {Array|string} globals + * @return {Mocha} + */ +Mocha.prototype.globals = function(globals) { + this.options.globals = (this.options.globals || []).concat(globals); + return this; +}; + +/** + * Emit color output. + * + * @param {Boolean} colors + * @return {Mocha} + * @api public + * @param {boolean} colors + * @return {Mocha} + */ +Mocha.prototype.useColors = function(colors) { + if (colors !== undefined) { + this.options.useColors = colors; + } + return this; +}; + +/** + * Use inline diffs rather than +/-. + * + * @param {Boolean} inlineDiffs + * @return {Mocha} + * @api public + * @param {boolean} inlineDiffs + * @return {Mocha} + */ +Mocha.prototype.useInlineDiffs = function(inlineDiffs) { + this.options.useInlineDiffs = inlineDiffs !== undefined && inlineDiffs; + return this; +}; + +/** + * Set the timeout in milliseconds. + * + * @param {Number} timeout + * @return {Mocha} + * @api public + * @param {number} timeout + * @return {Mocha} + */ +Mocha.prototype.timeout = function(timeout) { + this.suite.timeout(timeout); + return this; +}; + +/** + * Set the number of times to retry failed tests. + * + * @param {Number} retry times + * @return {Mocha} + * @api public + */ +Mocha.prototype.retries = function(n) { + this.suite.retries(n); + return this; +}; + +/** + * Set slowness threshold in milliseconds. + * + * @param {Number} slow + * @return {Mocha} + * @api public + * @param {number} slow + * @return {Mocha} + */ +Mocha.prototype.slow = function(slow) { + this.suite.slow(slow); + return this; +}; + +/** + * Enable timeouts. + * + * @param {Boolean} enabled + * @return {Mocha} + * @api public + * @param {boolean} enabled + * @return {Mocha} + */ +Mocha.prototype.enableTimeouts = function(enabled) { + this.suite.enableTimeouts(arguments.length && enabled !== undefined ? enabled : true); + return this; +}; + +/** + * Makes all tests async (accepting a callback) + * + * @return {Mocha} + * @api public + */ +Mocha.prototype.asyncOnly = function() { + this.options.asyncOnly = true; + return this; +}; + +/** + * Disable syntax highlighting (in browser). + * + * @api public + */ +Mocha.prototype.noHighlighting = function() { + this.options.noHighlighting = true; + return this; +}; + +/** + * Enable uncaught errors to propagate (in browser). + * + * @return {Mocha} + * @api public + */ +Mocha.prototype.allowUncaught = function() { + this.options.allowUncaught = true; + return this; +}; + +/** + * Delay root suite execution. + * @returns {Mocha} + */ +Mocha.prototype.delay = function delay() { + this.options.delay = true; + return this; +}; + +/** + * Run tests and invoke `fn()` when complete. + * + * @api public + * @param {Function} fn + * @return {Runner} + */ +Mocha.prototype.run = function(fn) { + if (this.files.length) { + this.loadFiles(); + } + var suite = this.suite; + var options = this.options; + options.files = this.files; + var runner = new exports.Runner(suite, options.delay); + var reporter = new this._reporter(runner, options); + runner.ignoreLeaks = options.ignoreLeaks !== false; + runner.fullStackTrace = options.fullStackTrace; + runner.asyncOnly = options.asyncOnly; + runner.allowUncaught = options.allowUncaught; + if (options.grep) { + runner.grep(options.grep, options.invert); + } + if (options.globals) { + runner.globals(options.globals); + } + if (options.growl) { + this._growl(runner, reporter); + } + if (options.useColors !== undefined) { + exports.reporters.Base.useColors = options.useColors; + } + exports.reporters.Base.inlineDiffs = options.useInlineDiffs; + + function done(failures) { + if (reporter.done) { + reporter.done(failures, fn); + } else { + fn && fn(failures); + } + } + + return runner.run(done); +}; + +}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},"/lib") +},{"./context":6,"./hook":7,"./interfaces":11,"./reporters":22,"./runnable":35,"./runner":36,"./suite":37,"./test":38,"./utils":39,"_process":58,"escape-string-regexp":49,"growl":51,"path":43}],15:[function(require,module,exports){ +/** + * Helpers. + */ + +var s = 1000; +var m = s * 60; +var h = m * 60; +var d = h * 24; +var y = d * 365.25; + +/** + * Parse or format the given `val`. + * + * Options: + * + * - `long` verbose formatting [false] + * + * @api public + * @param {string|number} val + * @param {Object} options + * @return {string|number} + */ +module.exports = function(val, options) { + options = options || {}; + if (typeof val === 'string') { + return parse(val); + } + // https://github.com/mochajs/mocha/pull/1035 + return options['long'] ? longFormat(val) : shortFormat(val); +}; + +/** + * Parse the given `str` and return milliseconds. + * + * @api private + * @param {string} str + * @return {number} + */ +function parse(str) { + var match = (/^((?:\d+)?\.?\d+) *(ms|seconds?|s|minutes?|m|hours?|h|days?|d|years?|y)?$/i).exec(str); + if (!match) { + return; + } + var n = parseFloat(match[1]); + var type = (match[2] || 'ms').toLowerCase(); + switch (type) { + case 'years': + case 'year': + case 'y': + return n * y; + case 'days': + case 'day': + case 'd': + return n * d; + case 'hours': + case 'hour': + case 'h': + return n * h; + case 'minutes': + case 'minute': + case 'm': + return n * m; + case 'seconds': + case 'second': + case 's': + return n * s; + case 'ms': + return n; + default: + // No default case + } +} + +/** + * Short format for `ms`. + * + * @api private + * @param {number} ms + * @return {string} + */ +function shortFormat(ms) { + if (ms >= d) { + return Math.round(ms / d) + 'd'; + } + if (ms >= h) { + return Math.round(ms / h) + 'h'; + } + if (ms >= m) { + return Math.round(ms / m) + 'm'; + } + if (ms >= s) { + return Math.round(ms / s) + 's'; + } + return ms + 'ms'; +} + +/** + * Long format for `ms`. + * + * @api private + * @param {number} ms + * @return {string} + */ +function longFormat(ms) { + return plural(ms, d, 'day') + || plural(ms, h, 'hour') + || plural(ms, m, 'minute') + || plural(ms, s, 'second') + || ms + ' ms'; +} + +/** + * Pluralization helper. + * + * @api private + * @param {number} ms + * @param {number} n + * @param {string} name + */ +function plural(ms, n, name) { + if (ms < n) { + return; + } + if (ms < n * 1.5) { + return Math.floor(ms / n) + ' ' + name; + } + return Math.ceil(ms / n) + ' ' + name + 's'; +} + +},{}],16:[function(require,module,exports){ + +/** + * Expose `Pending`. + */ + +module.exports = Pending; + +/** + * Initialize a new `Pending` error with the given message. + * + * @param {string} message + */ +function Pending(message) { + this.message = message; +} + +},{}],17:[function(require,module,exports){ +(function (process,global){ +/** + * Module dependencies. + */ + +var tty = require('tty'); +var diff = require('diff'); +var ms = require('../ms'); +var utils = require('../utils'); +var supportsColor = process.browser ? null : require('supports-color'); + +/** + * Expose `Base`. + */ + +exports = module.exports = Base; + +/** + * Save timer references to avoid Sinon interfering. + * See: https://github.com/mochajs/mocha/issues/237 + */ + +/* eslint-disable no-unused-vars, no-native-reassign */ +var Date = global.Date; +var setTimeout = global.setTimeout; +var setInterval = global.setInterval; +var clearTimeout = global.clearTimeout; +var clearInterval = global.clearInterval; +/* eslint-enable no-unused-vars, no-native-reassign */ + +/** + * Check if both stdio streams are associated with a tty. + */ + +var isatty = tty.isatty(1) && tty.isatty(2); + +/** + * Enable coloring by default, except in the browser interface. + */ + +exports.useColors = !process.browser && (supportsColor || (process.env.MOCHA_COLORS !== undefined)); + +/** + * Inline diffs instead of +/- + */ + +exports.inlineDiffs = false; + +/** + * Default color map. + */ + +exports.colors = { + pass: 90, + fail: 31, + 'bright pass': 92, + 'bright fail': 91, + 'bright yellow': 93, + pending: 36, + suite: 0, + 'error title': 0, + 'error message': 31, + 'error stack': 90, + checkmark: 32, + fast: 90, + medium: 33, + slow: 31, + green: 32, + light: 90, + 'diff gutter': 90, + 'diff added': 32, + 'diff removed': 31 +}; + +/** + * Default symbol map. + */ + +exports.symbols = { + ok: '✓', + err: '✖', + dot: '․' +}; + +// With node.js on Windows: use symbols available in terminal default fonts +if (process.platform === 'win32') { + exports.symbols.ok = '\u221A'; + exports.symbols.err = '\u00D7'; + exports.symbols.dot = '.'; +} + +/** + * Color `str` with the given `type`, + * allowing colors to be disabled, + * as well as user-defined color + * schemes. + * + * @param {string} type + * @param {string} str + * @return {string} + * @api private + */ +var color = exports.color = function(type, str) { + if (!exports.useColors) { + return String(str); + } + return '\u001b[' + exports.colors[type] + 'm' + str + '\u001b[0m'; +}; + +/** + * Expose term window size, with some defaults for when stderr is not a tty. + */ + +exports.window = { + width: 75 +}; + +if (isatty) { + exports.window.width = process.stdout.getWindowSize + ? process.stdout.getWindowSize(1)[0] + : tty.getWindowSize()[1]; +} + +/** + * Expose some basic cursor interactions that are common among reporters. + */ + +exports.cursor = { + hide: function() { + isatty && process.stdout.write('\u001b[?25l'); + }, + + show: function() { + isatty && process.stdout.write('\u001b[?25h'); + }, + + deleteLine: function() { + isatty && process.stdout.write('\u001b[2K'); + }, + + beginningOfLine: function() { + isatty && process.stdout.write('\u001b[0G'); + }, + + CR: function() { + if (isatty) { + exports.cursor.deleteLine(); + exports.cursor.beginningOfLine(); + } else { + process.stdout.write('\r'); + } + } +}; + +/** + * Outut the given `failures` as a list. + * + * @param {Array} failures + * @api public + */ + +exports.list = function(failures) { + console.log(); + failures.forEach(function(test, i) { + // format + var fmt = color('error title', ' %s) %s:\n') + + color('error message', ' %s') + + color('error stack', '\n%s\n'); + + // msg + var msg; + var err = test.err; + var message; + if (err.message && typeof err.message.toString === 'function') { + message = err.message + ''; + } else if (typeof err.inspect === 'function') { + message = err.inspect() + ''; + } else { + message = ''; + } + var stack = err.stack || message; + var index = stack.indexOf(message); + var actual = err.actual; + var expected = err.expected; + var escape = true; + + if (index === -1) { + msg = message; + } else { + index += message.length; + msg = stack.slice(0, index); + // remove msg from stack + stack = stack.slice(index + 1); + } + + // uncaught + if (err.uncaught) { + msg = 'Uncaught ' + msg; + } + // explicitly show diff + if (err.showDiff !== false && sameType(actual, expected) && expected !== undefined) { + escape = false; + if (!(utils.isString(actual) && utils.isString(expected))) { + err.actual = actual = utils.stringify(actual); + err.expected = expected = utils.stringify(expected); + } + + fmt = color('error title', ' %s) %s:\n%s') + color('error stack', '\n%s\n'); + var match = message.match(/^([^:]+): expected/); + msg = '\n ' + color('error message', match ? match[1] : msg); + + if (exports.inlineDiffs) { + msg += inlineDiff(err, escape); + } else { + msg += unifiedDiff(err, escape); + } + } + + // indent stack trace + stack = stack.replace(/^/gm, ' '); + + console.log(fmt, (i + 1), test.fullTitle(), msg, stack); + }); +}; + +/** + * Initialize a new `Base` reporter. + * + * All other reporters generally + * inherit from this reporter, providing + * stats such as test duration, number + * of tests passed / failed etc. + * + * @param {Runner} runner + * @api public + */ + +function Base(runner) { + var stats = this.stats = { suites: 0, tests: 0, passes: 0, pending: 0, failures: 0 }; + var failures = this.failures = []; + + if (!runner) { + return; + } + this.runner = runner; + + runner.stats = stats; + + runner.on('start', function() { + stats.start = new Date(); + }); + + runner.on('suite', function(suite) { + stats.suites = stats.suites || 0; + suite.root || stats.suites++; + }); + + runner.on('test end', function() { + stats.tests = stats.tests || 0; + stats.tests++; + }); + + runner.on('pass', function(test) { + stats.passes = stats.passes || 0; + + if (test.duration > test.slow()) { + test.speed = 'slow'; + } else if (test.duration > test.slow() / 2) { + test.speed = 'medium'; + } else { + test.speed = 'fast'; + } + + stats.passes++; + }); + + runner.on('fail', function(test, err) { + stats.failures = stats.failures || 0; + stats.failures++; + test.err = err; + failures.push(test); + }); + + runner.on('end', function() { + stats.end = new Date(); + stats.duration = new Date() - stats.start; + }); + + runner.on('pending', function() { + stats.pending++; + }); +} + +/** + * Output common epilogue used by many of + * the bundled reporters. + * + * @api public + */ +Base.prototype.epilogue = function() { + var stats = this.stats; + var fmt; + + console.log(); + + // passes + fmt = color('bright pass', ' ') + + color('green', ' %d passing') + + color('light', ' (%s)'); + + console.log(fmt, + stats.passes || 0, + ms(stats.duration)); + + // pending + if (stats.pending) { + fmt = color('pending', ' ') + + color('pending', ' %d pending'); + + console.log(fmt, stats.pending); + } + + // failures + if (stats.failures) { + fmt = color('fail', ' %d failing'); + + console.log(fmt, stats.failures); + + Base.list(this.failures); + console.log(); + } + + console.log(); +}; + +/** + * Pad the given `str` to `len`. + * + * @api private + * @param {string} str + * @param {string} len + * @return {string} + */ +function pad(str, len) { + str = String(str); + return Array(len - str.length + 1).join(' ') + str; +} + +/** + * Returns an inline diff between 2 strings with coloured ANSI output + * + * @api private + * @param {Error} err with actual/expected + * @param {boolean} escape + * @return {string} Diff + */ +function inlineDiff(err, escape) { + var msg = errorDiff(err, 'WordsWithSpace', escape); + + // linenos + var lines = msg.split('\n'); + if (lines.length > 4) { + var width = String(lines.length).length; + msg = lines.map(function(str, i) { + return pad(++i, width) + ' |' + ' ' + str; + }).join('\n'); + } + + // legend + msg = '\n' + + color('diff removed', 'actual') + + ' ' + + color('diff added', 'expected') + + '\n\n' + + msg + + '\n'; + + // indent + msg = msg.replace(/^/gm, ' '); + return msg; +} + +/** + * Returns a unified diff between two strings. + * + * @api private + * @param {Error} err with actual/expected + * @param {boolean} escape + * @return {string} The diff. + */ +function unifiedDiff(err, escape) { + var indent = ' '; + function cleanUp(line) { + if (escape) { + line = escapeInvisibles(line); + } + if (line[0] === '+') { + return indent + colorLines('diff added', line); + } + if (line[0] === '-') { + return indent + colorLines('diff removed', line); + } + if (line.match(/\@\@/)) { + return null; + } + if (line.match(/\\ No newline/)) { + return null; + } + return indent + line; + } + function notBlank(line) { + return typeof line !== 'undefined' && line !== null; + } + var msg = diff.createPatch('string', err.actual, err.expected); + var lines = msg.split('\n').splice(4); + return '\n ' + + colorLines('diff added', '+ expected') + ' ' + + colorLines('diff removed', '- actual') + + '\n\n' + + lines.map(cleanUp).filter(notBlank).join('\n'); +} + +/** + * Return a character diff for `err`. + * + * @api private + * @param {Error} err + * @param {string} type + * @param {boolean} escape + * @return {string} + */ +function errorDiff(err, type, escape) { + var actual = escape ? escapeInvisibles(err.actual) : err.actual; + var expected = escape ? escapeInvisibles(err.expected) : err.expected; + return diff['diff' + type](actual, expected).map(function(str) { + if (str.added) { + return colorLines('diff added', str.value); + } + if (str.removed) { + return colorLines('diff removed', str.value); + } + return str.value; + }).join(''); +} + +/** + * Returns a string with all invisible characters in plain text + * + * @api private + * @param {string} line + * @return {string} + */ +function escapeInvisibles(line) { + return line.replace(/\t/g, '') + .replace(/\r/g, '') + .replace(/\n/g, '\n'); +} + +/** + * Color lines for `str`, using the color `name`. + * + * @api private + * @param {string} name + * @param {string} str + * @return {string} + */ +function colorLines(name, str) { + return str.split('\n').map(function(str) { + return color(name, str); + }).join('\n'); +} + +/** + * Object#toString reference. + */ +var objToString = Object.prototype.toString; + +/** + * Check that a / b have the same type. + * + * @api private + * @param {Object} a + * @param {Object} b + * @return {boolean} + */ +function sameType(a, b) { + return objToString.call(a) === objToString.call(b); +} + +}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) +},{"../ms":15,"../utils":39,"_process":58,"diff":48,"supports-color":43,"tty":5}],18:[function(require,module,exports){ +/** + * Module dependencies. + */ + +var Base = require('./base'); +var utils = require('../utils'); + +/** + * Expose `Doc`. + */ + +exports = module.exports = Doc; + +/** + * Initialize a new `Doc` reporter. + * + * @param {Runner} runner + * @api public + */ +function Doc(runner) { + Base.call(this, runner); + + var indents = 2; + + function indent() { + return Array(indents).join(' '); + } + + runner.on('suite', function(suite) { + if (suite.root) { + return; + } + ++indents; + console.log('%s
', indent()); + ++indents; + console.log('%s

%s

', indent(), utils.escape(suite.title)); + console.log('%s
', indent()); + }); + + runner.on('suite end', function(suite) { + if (suite.root) { + return; + } + console.log('%s
', indent()); + --indents; + console.log('%s
', indent()); + --indents; + }); + + runner.on('pass', function(test) { + console.log('%s
%s
', indent(), utils.escape(test.title)); + var code = utils.escape(utils.clean(test.body)); + console.log('%s
%s
', indent(), code); + }); + + runner.on('fail', function(test, err) { + console.log('%s
%s
', indent(), utils.escape(test.title)); + var code = utils.escape(utils.clean(test.fn.body)); + console.log('%s
%s
', indent(), code); + console.log('%s
%s
', indent(), utils.escape(err)); + }); +} + +},{"../utils":39,"./base":17}],19:[function(require,module,exports){ +(function (process){ +/** + * Module dependencies. + */ + +var Base = require('./base'); +var inherits = require('../utils').inherits; +var color = Base.color; + +/** + * Expose `Dot`. + */ + +exports = module.exports = Dot; + +/** + * Initialize a new `Dot` matrix test reporter. + * + * @api public + * @param {Runner} runner + */ +function Dot(runner) { + Base.call(this, runner); + + var self = this; + var width = Base.window.width * .75 | 0; + var n = -1; + + runner.on('start', function() { + process.stdout.write('\n'); + }); + + runner.on('pending', function() { + if (++n % width === 0) { + process.stdout.write('\n '); + } + process.stdout.write(color('pending', Base.symbols.dot)); + }); + + runner.on('pass', function(test) { + if (++n % width === 0) { + process.stdout.write('\n '); + } + if (test.speed === 'slow') { + process.stdout.write(color('bright yellow', Base.symbols.dot)); + } else { + process.stdout.write(color(test.speed, Base.symbols.dot)); + } + }); + + runner.on('fail', function() { + if (++n % width === 0) { + process.stdout.write('\n '); + } + process.stdout.write(color('fail', Base.symbols.dot)); + }); + + runner.on('end', function() { + console.log(); + self.epilogue(); + }); +} + +/** + * Inherit from `Base.prototype`. + */ +inherits(Dot, Base); + +}).call(this,require('_process')) +},{"../utils":39,"./base":17,"_process":58}],20:[function(require,module,exports){ +(function (process,__dirname){ +/** + * Module dependencies. + */ + +var JSONCov = require('./json-cov'); +var readFileSync = require('fs').readFileSync; +var join = require('path').join; + +/** + * Expose `HTMLCov`. + */ + +exports = module.exports = HTMLCov; + +/** + * Initialize a new `JsCoverage` reporter. + * + * @api public + * @param {Runner} runner + */ +function HTMLCov(runner) { + var jade = require('jade'); + var file = join(__dirname, '/templates/coverage.jade'); + var str = readFileSync(file, 'utf8'); + var fn = jade.compile(str, { filename: file }); + var self = this; + + JSONCov.call(this, runner, false); + + runner.on('end', function() { + process.stdout.write(fn({ + cov: self.cov, + coverageClass: coverageClass + })); + }); +} + +/** + * Return coverage class for a given coverage percentage. + * + * @api private + * @param {number} coveragePctg + * @return {string} + */ +function coverageClass(coveragePctg) { + if (coveragePctg >= 75) { + return 'high'; + } + if (coveragePctg >= 50) { + return 'medium'; + } + if (coveragePctg >= 25) { + return 'low'; + } + return 'terrible'; +} + +}).call(this,require('_process'),"/lib/reporters") +},{"./json-cov":23,"_process":58,"fs":43,"jade":43,"path":43}],21:[function(require,module,exports){ +(function (global){ +/* eslint-env browser */ + +/** + * Module dependencies. + */ + +var Base = require('./base'); +var utils = require('../utils'); +var Progress = require('../browser/progress'); +var escapeRe = require('escape-string-regexp'); +var escape = utils.escape; + +/** + * Save timer references to avoid Sinon interfering (see GH-237). + */ + +/* eslint-disable no-unused-vars, no-native-reassign */ +var Date = global.Date; +var setTimeout = global.setTimeout; +var setInterval = global.setInterval; +var clearTimeout = global.clearTimeout; +var clearInterval = global.clearInterval; +/* eslint-enable no-unused-vars, no-native-reassign */ + +/** + * Expose `HTML`. + */ + +exports = module.exports = HTML; + +/** + * Stats template. + */ + +var statsTemplate = ''; + +/** + * Initialize a new `HTML` reporter. + * + * @api public + * @param {Runner} runner + */ +function HTML(runner) { + Base.call(this, runner); + + var self = this; + var stats = this.stats; + var stat = fragment(statsTemplate); + var items = stat.getElementsByTagName('li'); + var passes = items[1].getElementsByTagName('em')[0]; + var passesLink = items[1].getElementsByTagName('a')[0]; + var failures = items[2].getElementsByTagName('em')[0]; + var failuresLink = items[2].getElementsByTagName('a')[0]; + var duration = items[3].getElementsByTagName('em')[0]; + var canvas = stat.getElementsByTagName('canvas')[0]; + var report = fragment('
    '); + var stack = [report]; + var progress; + var ctx; + var root = document.getElementById('mocha'); + + if (canvas.getContext) { + var ratio = window.devicePixelRatio || 1; + canvas.style.width = canvas.width; + canvas.style.height = canvas.height; + canvas.width *= ratio; + canvas.height *= ratio; + ctx = canvas.getContext('2d'); + ctx.scale(ratio, ratio); + progress = new Progress(); + } + + if (!root) { + return error('#mocha div missing, add it to your document'); + } + + // pass toggle + on(passesLink, 'click', function(evt) { + evt.preventDefault(); + unhide(); + var name = (/pass/).test(report.className) ? '' : ' pass'; + report.className = report.className.replace(/fail|pass/g, '') + name; + if (report.className.trim()) { + hideSuitesWithout('test pass'); + } + }); + + // failure toggle + on(failuresLink, 'click', function(evt) { + evt.preventDefault(); + unhide(); + var name = (/fail/).test(report.className) ? '' : ' fail'; + report.className = report.className.replace(/fail|pass/g, '') + name; + if (report.className.trim()) { + hideSuitesWithout('test fail'); + } + }); + + root.appendChild(stat); + root.appendChild(report); + + if (progress) { + progress.size(40); + } + + runner.on('suite', function(suite) { + if (suite.root) { + return; + } + + // suite + var url = self.suiteURL(suite); + var el = fragment('
  • %s

  • ', url, escape(suite.title)); + + // container + stack[0].appendChild(el); + stack.unshift(document.createElement('ul')); + el.appendChild(stack[0]); + }); + + runner.on('suite end', function(suite) { + if (suite.root) { + return; + } + stack.shift(); + }); + + runner.on('pass', function(test) { + var url = self.testURL(test); + var markup = '
  • %e%ems ' + + '‣

  • '; + var el = fragment(markup, test.speed, test.title, test.duration, url); + self.addCodeToggle(el, test.body); + appendToStack(el); + updateStats(); + }); + + runner.on('fail', function(test) { + var el = fragment('
  • %e ‣

  • ', + test.title, self.testURL(test)); + var stackString; // Note: Includes leading newline + var message = test.err.toString(); + + // <=IE7 stringifies to [Object Error]. Since it can be overloaded, we + // check for the result of the stringifying. + if (message === '[object Error]') { + message = test.err.message; + } + + if (test.err.stack) { + var indexOfMessage = test.err.stack.indexOf(test.err.message); + if (indexOfMessage === -1) { + stackString = test.err.stack; + } else { + stackString = test.err.stack.substr(test.err.message.length + indexOfMessage); + } + } else if (test.err.sourceURL && test.err.line !== undefined) { + // Safari doesn't give you a stack. Let's at least provide a source line. + stackString = '\n(' + test.err.sourceURL + ':' + test.err.line + ')'; + } + + stackString = stackString || ''; + + if (test.err.htmlMessage && stackString) { + el.appendChild(fragment('
    %s\n
    %e
    ', + test.err.htmlMessage, stackString)); + } else if (test.err.htmlMessage) { + el.appendChild(fragment('
    %s
    ', test.err.htmlMessage)); + } else { + el.appendChild(fragment('
    %e%e
    ', message, stackString)); + } + + self.addCodeToggle(el, test.body); + appendToStack(el); + updateStats(); + }); + + runner.on('pending', function(test) { + var el = fragment('
  • %e

  • ', test.title); + appendToStack(el); + updateStats(); + }); + + function appendToStack(el) { + // Don't call .appendChild if #mocha-report was already .shift()'ed off the stack. + if (stack[0]) { + stack[0].appendChild(el); + } + } + + function updateStats() { + // TODO: add to stats + var percent = stats.tests / this.total * 100 | 0; + if (progress) { + progress.update(percent).draw(ctx); + } + + // update stats + var ms = new Date() - stats.start; + text(passes, stats.passes); + text(failures, stats.failures); + text(duration, (ms / 1000).toFixed(2)); + } +} + +/** + * Makes a URL, preserving querystring ("search") parameters. + * + * @param {string} s + * @return {string} A new URL. + */ +function makeUrl(s) { + var search = window.location.search; + + // Remove previous grep query parameter if present + if (search) { + search = search.replace(/[?&]grep=[^&\s]*/g, '').replace(/^&/, '?'); + } + + return window.location.pathname + (search ? search + '&' : '?') + 'grep=' + encodeURIComponent(escapeRe(s)); +} + +/** + * Provide suite URL. + * + * @param {Object} [suite] + */ +HTML.prototype.suiteURL = function(suite) { + return makeUrl(suite.fullTitle()); +}; + +/** + * Provide test URL. + * + * @param {Object} [test] + */ +HTML.prototype.testURL = function(test) { + return makeUrl(test.fullTitle()); +}; + +/** + * Adds code toggle functionality for the provided test's list element. + * + * @param {HTMLLIElement} el + * @param {string} contents + */ +HTML.prototype.addCodeToggle = function(el, contents) { + var h2 = el.getElementsByTagName('h2')[0]; + + on(h2, 'click', function() { + pre.style.display = pre.style.display === 'none' ? 'block' : 'none'; + }); + + var pre = fragment('
    %e
    ', utils.clean(contents)); + el.appendChild(pre); + pre.style.display = 'none'; +}; + +/** + * Display error `msg`. + * + * @param {string} msg + */ +function error(msg) { + document.body.appendChild(fragment('
    %s
    ', msg)); +} + +/** + * Return a DOM fragment from `html`. + * + * @param {string} html + */ +function fragment(html) { + var args = arguments; + var div = document.createElement('div'); + var i = 1; + + div.innerHTML = html.replace(/%([se])/g, function(_, type) { + switch (type) { + case 's': return String(args[i++]); + case 'e': return escape(args[i++]); + // no default + } + }); + + return div.firstChild; +} + +/** + * Check for suites that do not have elements + * with `classname`, and hide them. + * + * @param {text} classname + */ +function hideSuitesWithout(classname) { + var suites = document.getElementsByClassName('suite'); + for (var i = 0; i < suites.length; i++) { + var els = suites[i].getElementsByClassName(classname); + if (!els.length) { + suites[i].className += ' hidden'; + } + } +} + +/** + * Unhide .hidden suites. + */ +function unhide() { + var els = document.getElementsByClassName('suite hidden'); + for (var i = 0; i < els.length; ++i) { + els[i].className = els[i].className.replace('suite hidden', 'suite'); + } +} + +/** + * Set an element's text contents. + * + * @param {HTMLElement} el + * @param {string} contents + */ +function text(el, contents) { + if (el.textContent) { + el.textContent = contents; + } else { + el.innerText = contents; + } +} + +/** + * Listen on `event` with callback `fn`. + */ +function on(el, event, fn) { + if (el.addEventListener) { + el.addEventListener(event, fn, false); + } else { + el.attachEvent('on' + event, fn); + } +} + +}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) +},{"../browser/progress":4,"../utils":39,"./base":17,"escape-string-regexp":49}],22:[function(require,module,exports){ +// Alias exports to a their normalized format Mocha#reporter to prevent a need +// for dynamic (try/catch) requires, which Browserify doesn't handle. +exports.Base = exports.base = require('./base'); +exports.Dot = exports.dot = require('./dot'); +exports.Doc = exports.doc = require('./doc'); +exports.TAP = exports.tap = require('./tap'); +exports.JSON = exports.json = require('./json'); +exports.HTML = exports.html = require('./html'); +exports.List = exports.list = require('./list'); +exports.Min = exports.min = require('./min'); +exports.Spec = exports.spec = require('./spec'); +exports.Nyan = exports.nyan = require('./nyan'); +exports.XUnit = exports.xunit = require('./xunit'); +exports.Markdown = exports.markdown = require('./markdown'); +exports.Progress = exports.progress = require('./progress'); +exports.Landing = exports.landing = require('./landing'); +exports.JSONCov = exports['json-cov'] = require('./json-cov'); +exports.HTMLCov = exports['html-cov'] = require('./html-cov'); +exports.JSONStream = exports['json-stream'] = require('./json-stream'); + +},{"./base":17,"./doc":18,"./dot":19,"./html":21,"./html-cov":20,"./json":25,"./json-cov":23,"./json-stream":24,"./landing":26,"./list":27,"./markdown":28,"./min":29,"./nyan":30,"./progress":31,"./spec":32,"./tap":33,"./xunit":34}],23:[function(require,module,exports){ +(function (process,global){ +/** + * Module dependencies. + */ + +var Base = require('./base'); + +/** + * Expose `JSONCov`. + */ + +exports = module.exports = JSONCov; + +/** + * Initialize a new `JsCoverage` reporter. + * + * @api public + * @param {Runner} runner + * @param {boolean} output + */ +function JSONCov(runner, output) { + Base.call(this, runner); + + output = arguments.length === 1 || output; + var self = this; + var tests = []; + var failures = []; + var passes = []; + + runner.on('test end', function(test) { + tests.push(test); + }); + + runner.on('pass', function(test) { + passes.push(test); + }); + + runner.on('fail', function(test) { + failures.push(test); + }); + + runner.on('end', function() { + var cov = global._$jscoverage || {}; + var result = self.cov = map(cov); + result.stats = self.stats; + result.tests = tests.map(clean); + result.failures = failures.map(clean); + result.passes = passes.map(clean); + if (!output) { + return; + } + process.stdout.write(JSON.stringify(result, null, 2)); + }); +} + +/** + * Map jscoverage data to a JSON structure + * suitable for reporting. + * + * @api private + * @param {Object} cov + * @return {Object} + */ + +function map(cov) { + var ret = { + instrumentation: 'node-jscoverage', + sloc: 0, + hits: 0, + misses: 0, + coverage: 0, + files: [] + }; + + for (var filename in cov) { + if (Object.prototype.hasOwnProperty.call(cov, filename)) { + var data = coverage(filename, cov[filename]); + ret.files.push(data); + ret.hits += data.hits; + ret.misses += data.misses; + ret.sloc += data.sloc; + } + } + + ret.files.sort(function(a, b) { + return a.filename.localeCompare(b.filename); + }); + + if (ret.sloc > 0) { + ret.coverage = (ret.hits / ret.sloc) * 100; + } + + return ret; +} + +/** + * Map jscoverage data for a single source file + * to a JSON structure suitable for reporting. + * + * @api private + * @param {string} filename name of the source file + * @param {Object} data jscoverage coverage data + * @return {Object} + */ +function coverage(filename, data) { + var ret = { + filename: filename, + coverage: 0, + hits: 0, + misses: 0, + sloc: 0, + source: {} + }; + + data.source.forEach(function(line, num) { + num++; + + if (data[num] === 0) { + ret.misses++; + ret.sloc++; + } else if (data[num] !== undefined) { + ret.hits++; + ret.sloc++; + } + + ret.source[num] = { + source: line, + coverage: data[num] === undefined ? '' : data[num] + }; + }); + + ret.coverage = ret.hits / ret.sloc * 100; + + return ret; +} + +/** + * Return a plain-object representation of `test` + * free of cyclic properties etc. + * + * @api private + * @param {Object} test + * @return {Object} + */ +function clean(test) { + return { + duration: test.duration, + currentRetry: test.currentRetry(), + fullTitle: test.fullTitle(), + title: test.title + }; +} + +}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) +},{"./base":17,"_process":58}],24:[function(require,module,exports){ +(function (process){ +/** + * Module dependencies. + */ + +var Base = require('./base'); + +/** + * Expose `List`. + */ + +exports = module.exports = List; + +/** + * Initialize a new `List` test reporter. + * + * @api public + * @param {Runner} runner + */ +function List(runner) { + Base.call(this, runner); + + var self = this; + var total = runner.total; + + runner.on('start', function() { + console.log(JSON.stringify(['start', { total: total }])); + }); + + runner.on('pass', function(test) { + console.log(JSON.stringify(['pass', clean(test)])); + }); + + runner.on('fail', function(test, err) { + test = clean(test); + test.err = err.message; + test.stack = err.stack || null; + console.log(JSON.stringify(['fail', test])); + }); + + runner.on('end', function() { + process.stdout.write(JSON.stringify(['end', self.stats])); + }); +} + +/** + * Return a plain-object representation of `test` + * free of cyclic properties etc. + * + * @api private + * @param {Object} test + * @return {Object} + */ +function clean(test) { + return { + title: test.title, + fullTitle: test.fullTitle(), + duration: test.duration, + currentRetry: test.currentRetry() + }; +} + +}).call(this,require('_process')) +},{"./base":17,"_process":58}],25:[function(require,module,exports){ +(function (process){ +/** + * Module dependencies. + */ + +var Base = require('./base'); + +/** + * Expose `JSON`. + */ + +exports = module.exports = JSONReporter; + +/** + * Initialize a new `JSON` reporter. + * + * @api public + * @param {Runner} runner + */ +function JSONReporter(runner) { + Base.call(this, runner); + + var self = this; + var tests = []; + var pending = []; + var failures = []; + var passes = []; + + runner.on('test end', function(test) { + tests.push(test); + }); + + runner.on('pass', function(test) { + passes.push(test); + }); + + runner.on('fail', function(test) { + failures.push(test); + }); + + runner.on('pending', function(test) { + pending.push(test); + }); + + runner.on('end', function() { + var obj = { + stats: self.stats, + tests: tests.map(clean), + pending: pending.map(clean), + failures: failures.map(clean), + passes: passes.map(clean) + }; + + runner.testResults = obj; + + process.stdout.write(JSON.stringify(obj, null, 2)); + }); +} + +/** + * Return a plain-object representation of `test` + * free of cyclic properties etc. + * + * @api private + * @param {Object} test + * @return {Object} + */ +function clean(test) { + return { + title: test.title, + fullTitle: test.fullTitle(), + duration: test.duration, + currentRetry: test.currentRetry(), + err: errorJSON(test.err || {}) + }; +} + +/** + * Transform `error` into a JSON object. + * + * @api private + * @param {Error} err + * @return {Object} + */ +function errorJSON(err) { + var res = {}; + Object.getOwnPropertyNames(err).forEach(function(key) { + res[key] = err[key]; + }, err); + return res; +} + +}).call(this,require('_process')) +},{"./base":17,"_process":58}],26:[function(require,module,exports){ +(function (process){ +/** + * Module dependencies. + */ + +var Base = require('./base'); +var inherits = require('../utils').inherits; +var cursor = Base.cursor; +var color = Base.color; + +/** + * Expose `Landing`. + */ + +exports = module.exports = Landing; + +/** + * Airplane color. + */ + +Base.colors.plane = 0; + +/** + * Airplane crash color. + */ + +Base.colors['plane crash'] = 31; + +/** + * Runway color. + */ + +Base.colors.runway = 90; + +/** + * Initialize a new `Landing` reporter. + * + * @api public + * @param {Runner} runner + */ +function Landing(runner) { + Base.call(this, runner); + + var self = this; + var width = Base.window.width * .75 | 0; + var total = runner.total; + var stream = process.stdout; + var plane = color('plane', '✈'); + var crashed = -1; + var n = 0; + + function runway() { + var buf = Array(width).join('-'); + return ' ' + color('runway', buf); + } + + runner.on('start', function() { + stream.write('\n\n\n '); + cursor.hide(); + }); + + runner.on('test end', function(test) { + // check if the plane crashed + var col = crashed === -1 ? width * ++n / total | 0 : crashed; + + // show the crash + if (test.state === 'failed') { + plane = color('plane crash', '✈'); + crashed = col; + } + + // render landing strip + stream.write('\u001b[' + (width + 1) + 'D\u001b[2A'); + stream.write(runway()); + stream.write('\n '); + stream.write(color('runway', Array(col).join('⋅'))); + stream.write(plane); + stream.write(color('runway', Array(width - col).join('⋅') + '\n')); + stream.write(runway()); + stream.write('\u001b[0m'); + }); + + runner.on('end', function() { + cursor.show(); + console.log(); + self.epilogue(); + }); +} + +/** + * Inherit from `Base.prototype`. + */ +inherits(Landing, Base); + +}).call(this,require('_process')) +},{"../utils":39,"./base":17,"_process":58}],27:[function(require,module,exports){ +(function (process){ +/** + * Module dependencies. + */ + +var Base = require('./base'); +var inherits = require('../utils').inherits; +var color = Base.color; +var cursor = Base.cursor; + +/** + * Expose `List`. + */ + +exports = module.exports = List; + +/** + * Initialize a new `List` test reporter. + * + * @api public + * @param {Runner} runner + */ +function List(runner) { + Base.call(this, runner); + + var self = this; + var n = 0; + + runner.on('start', function() { + console.log(); + }); + + runner.on('test', function(test) { + process.stdout.write(color('pass', ' ' + test.fullTitle() + ': ')); + }); + + runner.on('pending', function(test) { + var fmt = color('checkmark', ' -') + + color('pending', ' %s'); + console.log(fmt, test.fullTitle()); + }); + + runner.on('pass', function(test) { + var fmt = color('checkmark', ' ' + Base.symbols.dot) + + color('pass', ' %s: ') + + color(test.speed, '%dms'); + cursor.CR(); + console.log(fmt, test.fullTitle(), test.duration); + }); + + runner.on('fail', function(test) { + cursor.CR(); + console.log(color('fail', ' %d) %s'), ++n, test.fullTitle()); + }); + + runner.on('end', self.epilogue.bind(self)); +} + +/** + * Inherit from `Base.prototype`. + */ +inherits(List, Base); + +}).call(this,require('_process')) +},{"../utils":39,"./base":17,"_process":58}],28:[function(require,module,exports){ +(function (process){ +/** + * Module dependencies. + */ + +var Base = require('./base'); +var utils = require('../utils'); + +/** + * Constants + */ + +var SUITE_PREFIX = '$'; + +/** + * Expose `Markdown`. + */ + +exports = module.exports = Markdown; + +/** + * Initialize a new `Markdown` reporter. + * + * @api public + * @param {Runner} runner + */ +function Markdown(runner) { + Base.call(this, runner); + + var level = 0; + var buf = ''; + + function title(str) { + return Array(level).join('#') + ' ' + str; + } + + function mapTOC(suite, obj) { + var ret = obj; + var key = SUITE_PREFIX + suite.title; + + obj = obj[key] = obj[key] || { suite: suite }; + suite.suites.forEach(function(suite) { + mapTOC(suite, obj); + }); + + return ret; + } + + function stringifyTOC(obj, level) { + ++level; + var buf = ''; + var link; + for (var key in obj) { + if (key === 'suite') { + continue; + } + if (key !== SUITE_PREFIX) { + link = ' - [' + key.substring(1) + ']'; + link += '(#' + utils.slug(obj[key].suite.fullTitle()) + ')\n'; + buf += Array(level).join(' ') + link; + } + buf += stringifyTOC(obj[key], level); + } + return buf; + } + + function generateTOC(suite) { + var obj = mapTOC(suite, {}); + return stringifyTOC(obj, 0); + } + + generateTOC(runner.suite); + + runner.on('suite', function(suite) { + ++level; + var slug = utils.slug(suite.fullTitle()); + buf += '' + '\n'; + buf += title(suite.title) + '\n'; + }); + + runner.on('suite end', function() { + --level; + }); + + runner.on('pass', function(test) { + var code = utils.clean(test.body); + buf += test.title + '.\n'; + buf += '\n```js\n'; + buf += code + '\n'; + buf += '```\n\n'; + }); + + runner.on('end', function() { + process.stdout.write('# TOC\n'); + process.stdout.write(generateTOC(runner.suite)); + process.stdout.write(buf); + }); +} + +}).call(this,require('_process')) +},{"../utils":39,"./base":17,"_process":58}],29:[function(require,module,exports){ +(function (process){ +/** + * Module dependencies. + */ + +var Base = require('./base'); +var inherits = require('../utils').inherits; + +/** + * Expose `Min`. + */ + +exports = module.exports = Min; + +/** + * Initialize a new `Min` minimal test reporter (best used with --watch). + * + * @api public + * @param {Runner} runner + */ +function Min(runner) { + Base.call(this, runner); + + runner.on('start', function() { + // clear screen + process.stdout.write('\u001b[2J'); + // set cursor position + process.stdout.write('\u001b[1;3H'); + }); + + runner.on('end', this.epilogue.bind(this)); +} + +/** + * Inherit from `Base.prototype`. + */ +inherits(Min, Base); + +}).call(this,require('_process')) +},{"../utils":39,"./base":17,"_process":58}],30:[function(require,module,exports){ +(function (process){ +/** + * Module dependencies. + */ + +var Base = require('./base'); +var inherits = require('../utils').inherits; + +/** + * Expose `Dot`. + */ + +exports = module.exports = NyanCat; + +/** + * Initialize a new `Dot` matrix test reporter. + * + * @param {Runner} runner + * @api public + */ + +function NyanCat(runner) { + Base.call(this, runner); + + var self = this; + var width = Base.window.width * .75 | 0; + var nyanCatWidth = this.nyanCatWidth = 11; + + this.colorIndex = 0; + this.numberOfLines = 4; + this.rainbowColors = self.generateColors(); + this.scoreboardWidth = 5; + this.tick = 0; + this.trajectories = [[], [], [], []]; + this.trajectoryWidthMax = (width - nyanCatWidth); + + runner.on('start', function() { + Base.cursor.hide(); + self.draw(); + }); + + runner.on('pending', function() { + self.draw(); + }); + + runner.on('pass', function() { + self.draw(); + }); + + runner.on('fail', function() { + self.draw(); + }); + + runner.on('end', function() { + Base.cursor.show(); + for (var i = 0; i < self.numberOfLines; i++) { + write('\n'); + } + self.epilogue(); + }); +} + +/** + * Inherit from `Base.prototype`. + */ +inherits(NyanCat, Base); + +/** + * Draw the nyan cat + * + * @api private + */ + +NyanCat.prototype.draw = function() { + this.appendRainbow(); + this.drawScoreboard(); + this.drawRainbow(); + this.drawNyanCat(); + this.tick = !this.tick; +}; + +/** + * Draw the "scoreboard" showing the number + * of passes, failures and pending tests. + * + * @api private + */ + +NyanCat.prototype.drawScoreboard = function() { + var stats = this.stats; + + function draw(type, n) { + write(' '); + write(Base.color(type, n)); + write('\n'); + } + + draw('green', stats.passes); + draw('fail', stats.failures); + draw('pending', stats.pending); + write('\n'); + + this.cursorUp(this.numberOfLines); +}; + +/** + * Append the rainbow. + * + * @api private + */ + +NyanCat.prototype.appendRainbow = function() { + var segment = this.tick ? '_' : '-'; + var rainbowified = this.rainbowify(segment); + + for (var index = 0; index < this.numberOfLines; index++) { + var trajectory = this.trajectories[index]; + if (trajectory.length >= this.trajectoryWidthMax) { + trajectory.shift(); + } + trajectory.push(rainbowified); + } +}; + +/** + * Draw the rainbow. + * + * @api private + */ + +NyanCat.prototype.drawRainbow = function() { + var self = this; + + this.trajectories.forEach(function(line) { + write('\u001b[' + self.scoreboardWidth + 'C'); + write(line.join('')); + write('\n'); + }); + + this.cursorUp(this.numberOfLines); +}; + +/** + * Draw the nyan cat + * + * @api private + */ +NyanCat.prototype.drawNyanCat = function() { + var self = this; + var startWidth = this.scoreboardWidth + this.trajectories[0].length; + var dist = '\u001b[' + startWidth + 'C'; + var padding = ''; + + write(dist); + write('_,------,'); + write('\n'); + + write(dist); + padding = self.tick ? ' ' : ' '; + write('_|' + padding + '/\\_/\\ '); + write('\n'); + + write(dist); + padding = self.tick ? '_' : '__'; + var tail = self.tick ? '~' : '^'; + write(tail + '|' + padding + this.face() + ' '); + write('\n'); + + write(dist); + padding = self.tick ? ' ' : ' '; + write(padding + '"" "" '); + write('\n'); + + this.cursorUp(this.numberOfLines); +}; + +/** + * Draw nyan cat face. + * + * @api private + * @return {string} + */ + +NyanCat.prototype.face = function() { + var stats = this.stats; + if (stats.failures) { + return '( x .x)'; + } else if (stats.pending) { + return '( o .o)'; + } else if (stats.passes) { + return '( ^ .^)'; + } + return '( - .-)'; +}; + +/** + * Move cursor up `n`. + * + * @api private + * @param {number} n + */ + +NyanCat.prototype.cursorUp = function(n) { + write('\u001b[' + n + 'A'); +}; + +/** + * Move cursor down `n`. + * + * @api private + * @param {number} n + */ + +NyanCat.prototype.cursorDown = function(n) { + write('\u001b[' + n + 'B'); +}; + +/** + * Generate rainbow colors. + * + * @api private + * @return {Array} + */ +NyanCat.prototype.generateColors = function() { + var colors = []; + + for (var i = 0; i < (6 * 7); i++) { + var pi3 = Math.floor(Math.PI / 3); + var n = (i * (1.0 / 6)); + var r = Math.floor(3 * Math.sin(n) + 3); + var g = Math.floor(3 * Math.sin(n + 2 * pi3) + 3); + var b = Math.floor(3 * Math.sin(n + 4 * pi3) + 3); + colors.push(36 * r + 6 * g + b + 16); + } + + return colors; +}; + +/** + * Apply rainbow to the given `str`. + * + * @api private + * @param {string} str + * @return {string} + */ +NyanCat.prototype.rainbowify = function(str) { + if (!Base.useColors) { + return str; + } + var color = this.rainbowColors[this.colorIndex % this.rainbowColors.length]; + this.colorIndex += 1; + return '\u001b[38;5;' + color + 'm' + str + '\u001b[0m'; +}; + +/** + * Stdout helper. + * + * @param {string} string A message to write to stdout. + */ +function write(string) { + process.stdout.write(string); +} + +}).call(this,require('_process')) +},{"../utils":39,"./base":17,"_process":58}],31:[function(require,module,exports){ +(function (process){ +/** + * Module dependencies. + */ + +var Base = require('./base'); +var inherits = require('../utils').inherits; +var color = Base.color; +var cursor = Base.cursor; + +/** + * Expose `Progress`. + */ + +exports = module.exports = Progress; + +/** + * General progress bar color. + */ + +Base.colors.progress = 90; + +/** + * Initialize a new `Progress` bar test reporter. + * + * @api public + * @param {Runner} runner + * @param {Object} options + */ +function Progress(runner, options) { + Base.call(this, runner); + + var self = this; + var width = Base.window.width * .50 | 0; + var total = runner.total; + var complete = 0; + var lastN = -1; + + // default chars + options = options || {}; + options.open = options.open || '['; + options.complete = options.complete || '▬'; + options.incomplete = options.incomplete || Base.symbols.dot; + options.close = options.close || ']'; + options.verbose = false; + + // tests started + runner.on('start', function() { + console.log(); + cursor.hide(); + }); + + // tests complete + runner.on('test end', function() { + complete++; + + var percent = complete / total; + var n = width * percent | 0; + var i = width - n; + + if (n === lastN && !options.verbose) { + // Don't re-render the line if it hasn't changed + return; + } + lastN = n; + + cursor.CR(); + process.stdout.write('\u001b[J'); + process.stdout.write(color('progress', ' ' + options.open)); + process.stdout.write(Array(n).join(options.complete)); + process.stdout.write(Array(i).join(options.incomplete)); + process.stdout.write(color('progress', options.close)); + if (options.verbose) { + process.stdout.write(color('progress', ' ' + complete + ' of ' + total)); + } + }); + + // tests are complete, output some stats + // and the failures if any + runner.on('end', function() { + cursor.show(); + console.log(); + self.epilogue(); + }); +} + +/** + * Inherit from `Base.prototype`. + */ +inherits(Progress, Base); + +}).call(this,require('_process')) +},{"../utils":39,"./base":17,"_process":58}],32:[function(require,module,exports){ +/** + * Module dependencies. + */ + +var Base = require('./base'); +var inherits = require('../utils').inherits; +var color = Base.color; +var cursor = Base.cursor; + +/** + * Expose `Spec`. + */ + +exports = module.exports = Spec; + +/** + * Initialize a new `Spec` test reporter. + * + * @api public + * @param {Runner} runner + */ +function Spec(runner) { + Base.call(this, runner); + + var self = this; + var indents = 0; + var n = 0; + + function indent() { + return Array(indents).join(' '); + } + + runner.on('start', function() { + console.log(); + }); + + runner.on('suite', function(suite) { + ++indents; + console.log(color('suite', '%s%s'), indent(), suite.title); + }); + + runner.on('suite end', function() { + --indents; + if (indents === 1) { + console.log(); + } + }); + + runner.on('pending', function(test) { + var fmt = indent() + color('pending', ' - %s'); + console.log(fmt, test.title); + }); + + runner.on('pass', function(test) { + var fmt; + if (test.speed === 'fast') { + fmt = indent() + + color('checkmark', ' ' + Base.symbols.ok) + + color('pass', ' %s'); + cursor.CR(); + console.log(fmt, test.title); + } else { + fmt = indent() + + color('checkmark', ' ' + Base.symbols.ok) + + color('pass', ' %s') + + color(test.speed, ' (%dms)'); + cursor.CR(); + console.log(fmt, test.title, test.duration); + } + }); + + runner.on('fail', function(test) { + cursor.CR(); + console.log(indent() + color('fail', ' %d) %s'), ++n, test.title); + }); + + runner.on('end', self.epilogue.bind(self)); +} + +/** + * Inherit from `Base.prototype`. + */ +inherits(Spec, Base); + +},{"../utils":39,"./base":17}],33:[function(require,module,exports){ +/** + * Module dependencies. + */ + +var Base = require('./base'); + +/** + * Expose `TAP`. + */ + +exports = module.exports = TAP; + +/** + * Initialize a new `TAP` reporter. + * + * @api public + * @param {Runner} runner + */ +function TAP(runner) { + Base.call(this, runner); + + var n = 1; + var passes = 0; + var failures = 0; + + runner.on('start', function() { + var total = runner.grepTotal(runner.suite); + console.log('%d..%d', 1, total); + }); + + runner.on('test end', function() { + ++n; + }); + + runner.on('pending', function(test) { + console.log('ok %d %s # SKIP -', n, title(test)); + }); + + runner.on('pass', function(test) { + passes++; + console.log('ok %d %s', n, title(test)); + }); + + runner.on('fail', function(test, err) { + failures++; + console.log('not ok %d %s', n, title(test)); + if (err.stack) { + console.log(err.stack.replace(/^/gm, ' ')); + } + }); + + runner.on('end', function() { + console.log('# tests ' + (passes + failures)); + console.log('# pass ' + passes); + console.log('# fail ' + failures); + }); +} + +/** + * Return a TAP-safe title of `test` + * + * @api private + * @param {Object} test + * @return {String} + */ +function title(test) { + return test.fullTitle().replace(/#/g, ''); +} + +},{"./base":17}],34:[function(require,module,exports){ +(function (process,global){ +/** + * Module dependencies. + */ + +var Base = require('./base'); +var utils = require('../utils'); +var inherits = utils.inherits; +var fs = require('fs'); +var escape = utils.escape; +var mkdirp = require('mkdirp'); +var path = require('path'); + +/** + * Save timer references to avoid Sinon interfering (see GH-237). + */ + +/* eslint-disable no-unused-vars, no-native-reassign */ +var Date = global.Date; +var setTimeout = global.setTimeout; +var setInterval = global.setInterval; +var clearTimeout = global.clearTimeout; +var clearInterval = global.clearInterval; +/* eslint-enable no-unused-vars, no-native-reassign */ + +/** + * Expose `XUnit`. + */ + +exports = module.exports = XUnit; + +/** + * Initialize a new `XUnit` reporter. + * + * @api public + * @param {Runner} runner + */ +function XUnit(runner, options) { + Base.call(this, runner); + + var stats = this.stats; + var tests = []; + var self = this; + + if (options.reporterOptions && options.reporterOptions.output) { + if (!fs.createWriteStream) { + throw new Error('file output not supported in browser'); + } + mkdirp.sync(path.dirname(options.reporterOptions.output)); + self.fileStream = fs.createWriteStream(options.reporterOptions.output); + } + + runner.on('pending', function(test) { + tests.push(test); + }); + + runner.on('pass', function(test) { + tests.push(test); + }); + + runner.on('fail', function(test) { + tests.push(test); + }); + + runner.on('end', function() { + self.write(tag('testsuite', { + name: 'Mocha Tests', + tests: stats.tests, + failures: stats.failures, + errors: stats.failures, + skipped: stats.tests - stats.failures - stats.passes, + timestamp: (new Date()).toUTCString(), + time: (stats.duration / 1000) || 0 + }, false)); + + tests.forEach(function(t) { + self.test(t); + }); + + self.write(''); + }); +} + +/** + * Inherit from `Base.prototype`. + */ +inherits(XUnit, Base); + +/** + * Override done to close the stream (if it's a file). + * + * @param failures + * @param {Function} fn + */ +XUnit.prototype.done = function(failures, fn) { + if (this.fileStream) { + this.fileStream.end(function() { + fn(failures); + }); + } else { + fn(failures); + } +}; + +/** + * Write out the given line. + * + * @param {string} line + */ +XUnit.prototype.write = function(line) { + if (this.fileStream) { + this.fileStream.write(line + '\n'); + } else if (typeof process === 'object' && process.stdout) { + process.stdout.write(line + '\n'); + } else { + console.log(line); + } +}; + +/** + * Output tag for the given `test.` + * + * @param {Test} test + */ +XUnit.prototype.test = function(test) { + var attrs = { + classname: test.parent.fullTitle(), + name: test.title, + time: (test.duration / 1000) || 0 + }; + + if (test.state === 'failed') { + var err = test.err; + this.write(tag('testcase', attrs, false, tag('failure', {}, false, escape(err.message) + '\n' + escape(err.stack)))); + } else if (test.isPending()) { + this.write(tag('testcase', attrs, false, tag('skipped', {}, true))); + } else { + this.write(tag('testcase', attrs, true)); + } +}; + +/** + * HTML tag helper. + * + * @param name + * @param attrs + * @param close + * @param content + * @return {string} + */ +function tag(name, attrs, close, content) { + var end = close ? '/>' : '>'; + var pairs = []; + var tag; + + for (var key in attrs) { + if (Object.prototype.hasOwnProperty.call(attrs, key)) { + pairs.push(key + '="' + escape(attrs[key]) + '"'); + } + } + + tag = '<' + name + (pairs.length ? ' ' + pairs.join(' ') : '') + end; + if (content) { + tag += content + ''; + } + if (key === 'ctx') { + return '#'; + } + return val; + }, 2); +}; + +/** + * Reset the timeout. + * + * @api private + */ +Runnable.prototype.resetTimeout = function() { + var self = this; + var ms = this.timeout() || 1e9; + + if (!this._enableTimeouts) { + return; + } + this.clearTimeout(); + this.timer = setTimeout(function() { + if (!self._enableTimeouts) { + return; + } + self.callback(new Error('timeout of ' + ms + 'ms exceeded. Ensure the done() callback is being called in this test.')); + self.timedOut = true; + }, ms); +}; + +/** + * Whitelist a list of globals for this test run. + * + * @api private + * @param {string[]} globals + */ +Runnable.prototype.globals = function(globals) { + if (!arguments.length) { + return this._allowedGlobals; + } + this._allowedGlobals = globals; +}; + +/** + * Run the test and invoke `fn(err)`. + * + * @param {Function} fn + * @api private + */ +Runnable.prototype.run = function(fn) { + var self = this; + var start = new Date(); + var ctx = this.ctx; + var finished; + var emitted; + + // Sometimes the ctx exists, but it is not runnable + if (ctx && ctx.runnable) { + ctx.runnable(this); + } + + // called multiple times + function multiple(err) { + if (emitted) { + return; + } + emitted = true; + self.emit('error', err || new Error('done() called multiple times; stacktrace may be inaccurate')); + } + + // finished + function done(err) { + var ms = self.timeout(); + if (self.timedOut) { + return; + } + if (finished) { + return multiple(err || self._trace); + } + + self.clearTimeout(); + self.duration = new Date() - start; + finished = true; + if (!err && self.duration > ms && self._enableTimeouts) { + err = new Error('timeout of ' + ms + 'ms exceeded. Ensure the done() callback is being called in this test.'); + } + fn(err); + } + + // for .resetTimeout() + this.callback = done; + + // explicit async with `done` argument + if (this.async) { + this.resetTimeout(); + + if (this.allowUncaught) { + return callFnAsync(this.fn); + } + try { + callFnAsync(this.fn); + } catch (err) { + done(utils.getError(err)); + } + return; + } + + if (this.allowUncaught) { + callFn(this.fn); + done(); + return; + } + + // sync or promise-returning + try { + if (this.isPending()) { + done(); + } else { + callFn(this.fn); + } + } catch (err) { + done(utils.getError(err)); + } + + function callFn(fn) { + var result = fn.call(ctx); + if (result && typeof result.then === 'function') { + self.resetTimeout(); + result + .then(function() { + done(); + // Return null so libraries like bluebird do not warn about + // subsequently constructed Promises. + return null; + }, + function(reason) { + done(reason || new Error('Promise rejected with no or falsy reason')); + }); + } else { + if (self.asyncOnly) { + return done(new Error('--async-only option in use without declaring `done()` or returning a promise')); + } + + done(); + } + } + + function callFnAsync(fn) { + fn.call(ctx, function(err) { + if (err instanceof Error || toString.call(err) === '[object Error]') { + return done(err); + } + if (err) { + if (Object.prototype.toString.call(err) === '[object Object]') { + return done(new Error('done() invoked with non-Error: ' + + JSON.stringify(err))); + } + return done(new Error('done() invoked with non-Error: ' + err)); + } + done(); + }); + } +}; + +}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) +},{"./ms":15,"./pending":16,"./utils":39,"debug":2,"events":3}],36:[function(require,module,exports){ +(function (process,global){ +/** + * Module dependencies. + */ + +var EventEmitter = require('events').EventEmitter; +var Pending = require('./pending'); +var utils = require('./utils'); +var inherits = utils.inherits; +var debug = require('debug')('mocha:runner'); +var Runnable = require('./runnable'); +var filter = utils.filter; +var indexOf = utils.indexOf; +var keys = utils.keys; +var stackFilter = utils.stackTraceFilter(); +var stringify = utils.stringify; +var type = utils.type; +var undefinedError = utils.undefinedError; +var isArray = utils.isArray; + +/** + * Non-enumerable globals. + */ + +var globals = [ + 'setTimeout', + 'clearTimeout', + 'setInterval', + 'clearInterval', + 'XMLHttpRequest', + 'Date', + 'setImmediate', + 'clearImmediate' +]; + +/** + * Expose `Runner`. + */ + +module.exports = Runner; + +/** + * Initialize a `Runner` for the given `suite`. + * + * Events: + * + * - `start` execution started + * - `end` execution complete + * - `suite` (suite) test suite execution started + * - `suite end` (suite) all tests (and sub-suites) have finished + * - `test` (test) test execution started + * - `test end` (test) test completed + * - `hook` (hook) hook execution started + * - `hook end` (hook) hook complete + * - `pass` (test) test passed + * - `fail` (test, err) test failed + * - `pending` (test) test pending + * + * @api public + * @param {Suite} suite Root suite + * @param {boolean} [delay] Whether or not to delay execution of root suite + * until ready. + */ +function Runner(suite, delay) { + var self = this; + this._globals = []; + this._abort = false; + this._delay = delay; + this.suite = suite; + this.started = false; + this.total = suite.total(); + this.failures = 0; + this.on('test end', function(test) { + self.checkGlobals(test); + }); + this.on('hook end', function(hook) { + self.checkGlobals(hook); + }); + this._defaultGrep = /.*/; + this.grep(this._defaultGrep); + this.globals(this.globalProps().concat(extraGlobals())); +} + +/** + * Wrapper for setImmediate, process.nextTick, or browser polyfill. + * + * @param {Function} fn + * @api private + */ +Runner.immediately = global.setImmediate || process.nextTick; + +/** + * Inherit from `EventEmitter.prototype`. + */ +inherits(Runner, EventEmitter); + +/** + * Run tests with full titles matching `re`. Updates runner.total + * with number of tests matched. + * + * @param {RegExp} re + * @param {Boolean} invert + * @return {Runner} for chaining + * @api public + * @param {RegExp} re + * @param {boolean} invert + * @return {Runner} Runner instance. + */ +Runner.prototype.grep = function(re, invert) { + debug('grep %s', re); + this._grep = re; + this._invert = invert; + this.total = this.grepTotal(this.suite); + return this; +}; + +/** + * Returns the number of tests matching the grep search for the + * given suite. + * + * @param {Suite} suite + * @return {Number} + * @api public + * @param {Suite} suite + * @return {number} + */ +Runner.prototype.grepTotal = function(suite) { + var self = this; + var total = 0; + + suite.eachTest(function(test) { + var match = self._grep.test(test.fullTitle()); + if (self._invert) { + match = !match; + } + if (match) { + total++; + } + }); + + return total; +}; + +/** + * Return a list of global properties. + * + * @return {Array} + * @api private + */ +Runner.prototype.globalProps = function() { + var props = keys(global); + + // non-enumerables + for (var i = 0; i < globals.length; ++i) { + if (~indexOf(props, globals[i])) { + continue; + } + props.push(globals[i]); + } + + return props; +}; + +/** + * Allow the given `arr` of globals. + * + * @param {Array} arr + * @return {Runner} for chaining + * @api public + * @param {Array} arr + * @return {Runner} Runner instance. + */ +Runner.prototype.globals = function(arr) { + if (!arguments.length) { + return this._globals; + } + debug('globals %j', arr); + this._globals = this._globals.concat(arr); + return this; +}; + +/** + * Check for global variable leaks. + * + * @api private + */ +Runner.prototype.checkGlobals = function(test) { + if (this.ignoreLeaks) { + return; + } + var ok = this._globals; + + var globals = this.globalProps(); + var leaks; + + if (test) { + ok = ok.concat(test._allowedGlobals || []); + } + + if (this.prevGlobalsLength === globals.length) { + return; + } + this.prevGlobalsLength = globals.length; + + leaks = filterLeaks(ok, globals); + this._globals = this._globals.concat(leaks); + + if (leaks.length > 1) { + this.fail(test, new Error('global leaks detected: ' + leaks.join(', ') + '')); + } else if (leaks.length) { + this.fail(test, new Error('global leak detected: ' + leaks[0])); + } +}; + +/** + * Fail the given `test`. + * + * @api private + * @param {Test} test + * @param {Error} err + */ +Runner.prototype.fail = function(test, err) { + ++this.failures; + test.state = 'failed'; + + if (!(err instanceof Error || err && typeof err.message === 'string')) { + err = new Error('the ' + type(err) + ' ' + stringify(err) + ' was thrown, throw an Error :)'); + } + + err.stack = (this.fullStackTrace || !err.stack) + ? err.stack + : stackFilter(err.stack); + + this.emit('fail', test, err); +}; + +/** + * Fail the given `hook` with `err`. + * + * Hook failures work in the following pattern: + * - If bail, then exit + * - Failed `before` hook skips all tests in a suite and subsuites, + * but jumps to corresponding `after` hook + * - Failed `before each` hook skips remaining tests in a + * suite and jumps to corresponding `after each` hook, + * which is run only once + * - Failed `after` hook does not alter + * execution order + * - Failed `after each` hook skips remaining tests in a + * suite and subsuites, but executes other `after each` + * hooks + * + * @api private + * @param {Hook} hook + * @param {Error} err + */ +Runner.prototype.failHook = function(hook, err) { + if (hook.ctx && hook.ctx.currentTest) { + hook.originalTitle = hook.originalTitle || hook.title; + hook.title = hook.originalTitle + ' for "' + hook.ctx.currentTest.title + '"'; + } + + this.fail(hook, err); + if (this.suite.bail()) { + this.emit('end'); + } +}; + +/** + * Run hook `name` callbacks and then invoke `fn()`. + * + * @api private + * @param {string} name + * @param {Function} fn + */ + +Runner.prototype.hook = function(name, fn) { + var suite = this.suite; + var hooks = suite['_' + name]; + var self = this; + + function next(i) { + var hook = hooks[i]; + if (!hook) { + return fn(); + } + self.currentRunnable = hook; + + hook.ctx.currentTest = self.test; + + self.emit('hook', hook); + + if (!hook.listeners('error').length) { + hook.on('error', function(err) { + self.failHook(hook, err); + }); + } + + hook.run(function(err) { + var testError = hook.error(); + if (testError) { + self.fail(self.test, testError); + } + if (err) { + if (err instanceof Pending) { + suite.pending = true; + } else { + self.failHook(hook, err); + + // stop executing hooks, notify callee of hook err + return fn(err); + } + } + self.emit('hook end', hook); + delete hook.ctx.currentTest; + next(++i); + }); + } + + Runner.immediately(function() { + next(0); + }); +}; + +/** + * Run hook `name` for the given array of `suites` + * in order, and callback `fn(err, errSuite)`. + * + * @api private + * @param {string} name + * @param {Array} suites + * @param {Function} fn + */ +Runner.prototype.hooks = function(name, suites, fn) { + var self = this; + var orig = this.suite; + + function next(suite) { + self.suite = suite; + + if (!suite) { + self.suite = orig; + return fn(); + } + + self.hook(name, function(err) { + if (err) { + var errSuite = self.suite; + self.suite = orig; + return fn(err, errSuite); + } + + next(suites.pop()); + }); + } + + next(suites.pop()); +}; + +/** + * Run hooks from the top level down. + * + * @param {String} name + * @param {Function} fn + * @api private + */ +Runner.prototype.hookUp = function(name, fn) { + var suites = [this.suite].concat(this.parents()).reverse(); + this.hooks(name, suites, fn); +}; + +/** + * Run hooks from the bottom up. + * + * @param {String} name + * @param {Function} fn + * @api private + */ +Runner.prototype.hookDown = function(name, fn) { + var suites = [this.suite].concat(this.parents()); + this.hooks(name, suites, fn); +}; + +/** + * Return an array of parent Suites from + * closest to furthest. + * + * @return {Array} + * @api private + */ +Runner.prototype.parents = function() { + var suite = this.suite; + var suites = []; + while (suite.parent) { + suite = suite.parent; + suites.push(suite); + } + return suites; +}; + +/** + * Run the current test and callback `fn(err)`. + * + * @param {Function} fn + * @api private + */ +Runner.prototype.runTest = function(fn) { + var self = this; + var test = this.test; + + if (this.asyncOnly) { + test.asyncOnly = true; + } + + if (this.allowUncaught) { + test.allowUncaught = true; + return test.run(fn); + } + try { + test.on('error', function(err) { + self.fail(test, err); + }); + test.run(fn); + } catch (err) { + fn(err); + } +}; + +/** + * Run tests in the given `suite` and invoke the callback `fn()` when complete. + * + * @api private + * @param {Suite} suite + * @param {Function} fn + */ +Runner.prototype.runTests = function(suite, fn) { + var self = this; + var tests = suite.tests.slice(); + var test; + + function hookErr(_, errSuite, after) { + // before/after Each hook for errSuite failed: + var orig = self.suite; + + // for failed 'after each' hook start from errSuite parent, + // otherwise start from errSuite itself + self.suite = after ? errSuite.parent : errSuite; + + if (self.suite) { + // call hookUp afterEach + self.hookUp('afterEach', function(err2, errSuite2) { + self.suite = orig; + // some hooks may fail even now + if (err2) { + return hookErr(err2, errSuite2, true); + } + // report error suite + fn(errSuite); + }); + } else { + // there is no need calling other 'after each' hooks + self.suite = orig; + fn(errSuite); + } + } + + function next(err, errSuite) { + // if we bail after first err + if (self.failures && suite._bail) { + return fn(); + } + + if (self._abort) { + return fn(); + } + + if (err) { + return hookErr(err, errSuite, true); + } + + // next test + test = tests.shift(); + + // all done + if (!test) { + return fn(); + } + + // grep + var match = self._grep.test(test.fullTitle()); + if (self._invert) { + match = !match; + } + if (!match) { + // Run immediately only if we have defined a grep. When we + // define a grep — It can cause maximum callstack error if + // the grep is doing a large recursive loop by neglecting + // all tests. The run immediately function also comes with + // a performance cost. So we don't want to run immediately + // if we run the whole test suite, because running the whole + // test suite don't do any immediate recursive loops. Thus, + // allowing a JS runtime to breathe. + if (self._grep !== self._defaultGrep) { + Runner.immediately(next); + } else { + next(); + } + return; + } + + if (test.isPending()) { + self.emit('pending', test); + self.emit('test end', test); + return next(); + } + + // execute test and hook(s) + self.emit('test', self.test = test); + self.hookDown('beforeEach', function(err, errSuite) { + if (suite.isPending()) { + self.emit('pending', test); + self.emit('test end', test); + return next(); + } + if (err) { + return hookErr(err, errSuite, false); + } + self.currentRunnable = self.test; + self.runTest(function(err) { + test = self.test; + if (err) { + var retry = test.currentRetry(); + if (err instanceof Pending) { + test.pending = true; + self.emit('pending', test); + } else if (retry < test.retries()) { + var clonedTest = test.clone(); + clonedTest.currentRetry(retry + 1); + tests.unshift(clonedTest); + + // Early return + hook trigger so that it doesn't + // increment the count wrong + return self.hookUp('afterEach', next); + } else { + self.fail(test, err); + } + self.emit('test end', test); + + if (err instanceof Pending) { + return next(); + } + + return self.hookUp('afterEach', next); + } + + test.state = 'passed'; + self.emit('pass', test); + self.emit('test end', test); + self.hookUp('afterEach', next); + }); + }); + } + + this.next = next; + this.hookErr = hookErr; + next(); +}; + +/** + * Run the given `suite` and invoke the callback `fn()` when complete. + * + * @api private + * @param {Suite} suite + * @param {Function} fn + */ +Runner.prototype.runSuite = function(suite, fn) { + var i = 0; + var self = this; + var total = this.grepTotal(suite); + var afterAllHookCalled = false; + + debug('run suite %s', suite.fullTitle()); + + if (!total || (self.failures && suite._bail)) { + return fn(); + } + + this.emit('suite', this.suite = suite); + + function next(errSuite) { + if (errSuite) { + // current suite failed on a hook from errSuite + if (errSuite === suite) { + // if errSuite is current suite + // continue to the next sibling suite + return done(); + } + // errSuite is among the parents of current suite + // stop execution of errSuite and all sub-suites + return done(errSuite); + } + + if (self._abort) { + return done(); + } + + var curr = suite.suites[i++]; + if (!curr) { + return done(); + } + + // Avoid grep neglecting large number of tests causing a + // huge recursive loop and thus a maximum call stack error. + // See comment in `this.runTests()` for more information. + if (self._grep !== self._defaultGrep) { + Runner.immediately(function() { + self.runSuite(curr, next); + }); + } else { + self.runSuite(curr, next); + } + } + + function done(errSuite) { + self.suite = suite; + self.nextSuite = next; + + if (afterAllHookCalled) { + fn(errSuite); + } else { + // mark that the afterAll block has been called once + // and so can be skipped if there is an error in it. + afterAllHookCalled = true; + + // remove reference to test + delete self.test; + + self.hook('afterAll', function() { + self.emit('suite end', suite); + fn(errSuite); + }); + } + } + + this.nextSuite = next; + + this.hook('beforeAll', function(err) { + if (err) { + return done(); + } + self.runTests(suite, next); + }); +}; + +/** + * Handle uncaught exceptions. + * + * @param {Error} err + * @api private + */ +Runner.prototype.uncaught = function(err) { + if (err) { + debug('uncaught exception %s', err !== function() { + return this; + }.call(err) ? err : (err.message || err)); + } else { + debug('uncaught undefined exception'); + err = undefinedError(); + } + err.uncaught = true; + + var runnable = this.currentRunnable; + + if (!runnable) { + runnable = new Runnable('Uncaught error outside test suite'); + runnable.parent = this.suite; + + if (this.started) { + this.fail(runnable, err); + } else { + // Can't recover from this failure + this.emit('start'); + this.fail(runnable, err); + this.emit('end'); + } + + return; + } + + runnable.clearTimeout(); + + // Ignore errors if complete + if (runnable.state) { + return; + } + this.fail(runnable, err); + + // recover from test + if (runnable.type === 'test') { + this.emit('test end', runnable); + this.hookUp('afterEach', this.next); + return; + } + + // recover from hooks + if (runnable.type === 'hook') { + var errSuite = this.suite; + // if hook failure is in afterEach block + if (runnable.fullTitle().indexOf('after each') > -1) { + return this.hookErr(err, errSuite, true); + } + // if hook failure is in beforeEach block + if (runnable.fullTitle().indexOf('before each') > -1) { + return this.hookErr(err, errSuite, false); + } + // if hook failure is in after or before blocks + return this.nextSuite(errSuite); + } + + // bail + this.emit('end'); +}; + +/** + * Cleans up the references to all the deferred functions + * (before/after/beforeEach/afterEach) and tests of a Suite. + * These must be deleted otherwise a memory leak can happen, + * as those functions may reference variables from closures, + * thus those variables can never be garbage collected as long + * as the deferred functions exist. + * + * @param {Suite} suite + */ +function cleanSuiteReferences(suite) { + function cleanArrReferences(arr) { + for (var i = 0; i < arr.length; i++) { + delete arr[i].fn; + } + } + + if (isArray(suite._beforeAll)) { + cleanArrReferences(suite._beforeAll); + } + + if (isArray(suite._beforeEach)) { + cleanArrReferences(suite._beforeEach); + } + + if (isArray(suite._afterAll)) { + cleanArrReferences(suite._afterAll); + } + + if (isArray(suite._afterEach)) { + cleanArrReferences(suite._afterEach); + } + + for (var i = 0; i < suite.tests.length; i++) { + delete suite.tests[i].fn; + } +} + +/** + * Run the root suite and invoke `fn(failures)` + * on completion. + * + * @param {Function} fn + * @return {Runner} for chaining + * @api public + * @param {Function} fn + * @return {Runner} Runner instance. + */ +Runner.prototype.run = function(fn) { + var self = this; + var rootSuite = this.suite; + + fn = fn || function() {}; + + function uncaught(err) { + self.uncaught(err); + } + + function start() { + self.started = true; + self.emit('start'); + self.runSuite(rootSuite, function() { + debug('finished running'); + self.emit('end'); + }); + } + + debug('start'); + + // references cleanup to avoid memory leaks + this.on('suite end', cleanSuiteReferences); + + // callback + this.on('end', function() { + debug('end'); + process.removeListener('uncaughtException', uncaught); + fn(self.failures); + }); + + // uncaught exception + process.on('uncaughtException', uncaught); + + if (this._delay) { + // for reporters, I guess. + // might be nice to debounce some dots while we wait. + this.emit('waiting', rootSuite); + rootSuite.once('run', start); + } else { + start(); + } + + return this; +}; + +/** + * Cleanly abort execution. + * + * @api public + * @return {Runner} Runner instance. + */ +Runner.prototype.abort = function() { + debug('aborting'); + this._abort = true; + + return this; +}; + +/** + * Filter leaks with the given globals flagged as `ok`. + * + * @api private + * @param {Array} ok + * @param {Array} globals + * @return {Array} + */ +function filterLeaks(ok, globals) { + return filter(globals, function(key) { + // Firefox and Chrome exposes iframes as index inside the window object + if (/^d+/.test(key)) { + return false; + } + + // in firefox + // if runner runs in an iframe, this iframe's window.getInterface method not init at first + // it is assigned in some seconds + if (global.navigator && (/^getInterface/).test(key)) { + return false; + } + + // an iframe could be approached by window[iframeIndex] + // in ie6,7,8 and opera, iframeIndex is enumerable, this could cause leak + if (global.navigator && (/^\d+/).test(key)) { + return false; + } + + // Opera and IE expose global variables for HTML element IDs (issue #243) + if (/^mocha-/.test(key)) { + return false; + } + + var matched = filter(ok, function(ok) { + if (~ok.indexOf('*')) { + return key.indexOf(ok.split('*')[0]) === 0; + } + return key === ok; + }); + return !matched.length && (!global.navigator || key !== 'onerror'); + }); +} + +/** + * Array of globals dependent on the environment. + * + * @return {Array} + * @api private + */ +function extraGlobals() { + if (typeof process === 'object' && typeof process.version === 'string') { + var parts = process.version.split('.'); + var nodeVersion = utils.reduce(parts, function(a, v) { + return a << 8 | v; + }); + + // 'errno' was renamed to process._errno in v0.9.11. + + if (nodeVersion < 0x00090B) { + return ['errno']; + } + } + + return []; +} + +}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) +},{"./pending":16,"./runnable":35,"./utils":39,"_process":58,"debug":2,"events":3}],37:[function(require,module,exports){ +/** + * Module dependencies. + */ + +var EventEmitter = require('events').EventEmitter; +var Hook = require('./hook'); +var utils = require('./utils'); +var inherits = utils.inherits; +var debug = require('debug')('mocha:suite'); +var milliseconds = require('./ms'); + +/** + * Expose `Suite`. + */ + +exports = module.exports = Suite; + +/** + * Create a new `Suite` with the given `title` and parent `Suite`. When a suite + * with the same title is already present, that suite is returned to provide + * nicer reporter and more flexible meta-testing. + * + * @api public + * @param {Suite} parent + * @param {string} title + * @return {Suite} + */ +exports.create = function(parent, title) { + var suite = new Suite(title, parent.ctx); + suite.parent = parent; + title = suite.fullTitle(); + parent.addSuite(suite); + return suite; +}; + +/** + * Initialize a new `Suite` with the given `title` and `ctx`. + * + * @api private + * @param {string} title + * @param {Context} parentContext + */ +function Suite(title, parentContext) { + this.title = title; + function Context() {} + Context.prototype = parentContext; + this.ctx = new Context(); + this.suites = []; + this.tests = []; + this.pending = false; + this._beforeEach = []; + this._beforeAll = []; + this._afterEach = []; + this._afterAll = []; + this.root = !title; + this._timeout = 2000; + this._enableTimeouts = true; + this._slow = 75; + this._bail = false; + this._retries = -1; + this.delayed = false; +} + +/** + * Inherit from `EventEmitter.prototype`. + */ +inherits(Suite, EventEmitter); + +/** + * Return a clone of this `Suite`. + * + * @api private + * @return {Suite} + */ +Suite.prototype.clone = function() { + var suite = new Suite(this.title); + debug('clone'); + suite.ctx = this.ctx; + suite.timeout(this.timeout()); + suite.retries(this.retries()); + suite.enableTimeouts(this.enableTimeouts()); + suite.slow(this.slow()); + suite.bail(this.bail()); + return suite; +}; + +/** + * Set timeout `ms` or short-hand such as "2s". + * + * @api private + * @param {number|string} ms + * @return {Suite|number} for chaining + */ +Suite.prototype.timeout = function(ms) { + if (!arguments.length) { + return this._timeout; + } + if (ms.toString() === '0') { + this._enableTimeouts = false; + } + if (typeof ms === 'string') { + ms = milliseconds(ms); + } + debug('timeout %d', ms); + this._timeout = parseInt(ms, 10); + return this; +}; + +/** + * Set number of times to retry a failed test. + * + * @api private + * @param {number|string} n + * @return {Suite|number} for chaining + */ +Suite.prototype.retries = function(n) { + if (!arguments.length) { + return this._retries; + } + debug('retries %d', n); + this._retries = parseInt(n, 10) || 0; + return this; +}; + +/** + * Set timeout to `enabled`. + * + * @api private + * @param {boolean} enabled + * @return {Suite|boolean} self or enabled + */ +Suite.prototype.enableTimeouts = function(enabled) { + if (!arguments.length) { + return this._enableTimeouts; + } + debug('enableTimeouts %s', enabled); + this._enableTimeouts = enabled; + return this; +}; + +/** + * Set slow `ms` or short-hand such as "2s". + * + * @api private + * @param {number|string} ms + * @return {Suite|number} for chaining + */ +Suite.prototype.slow = function(ms) { + if (!arguments.length) { + return this._slow; + } + if (typeof ms === 'string') { + ms = milliseconds(ms); + } + debug('slow %d', ms); + this._slow = ms; + return this; +}; + +/** + * Sets whether to bail after first error. + * + * @api private + * @param {boolean} bail + * @return {Suite|number} for chaining + */ +Suite.prototype.bail = function(bail) { + if (!arguments.length) { + return this._bail; + } + debug('bail %s', bail); + this._bail = bail; + return this; +}; + +/** + * Check if this suite or its parent suite is marked as pending. + * + * @api private + */ +Suite.prototype.isPending = function() { + return this.pending || (this.parent && this.parent.isPending()); +}; + +/** + * Run `fn(test[, done])` before running tests. + * + * @api private + * @param {string} title + * @param {Function} fn + * @return {Suite} for chaining + */ +Suite.prototype.beforeAll = function(title, fn) { + if (this.isPending()) { + return this; + } + if (typeof title === 'function') { + fn = title; + title = fn.name; + } + title = '"before all" hook' + (title ? ': ' + title : ''); + + var hook = new Hook(title, fn); + hook.parent = this; + hook.timeout(this.timeout()); + hook.retries(this.retries()); + hook.enableTimeouts(this.enableTimeouts()); + hook.slow(this.slow()); + hook.ctx = this.ctx; + this._beforeAll.push(hook); + this.emit('beforeAll', hook); + return this; +}; + +/** + * Run `fn(test[, done])` after running tests. + * + * @api private + * @param {string} title + * @param {Function} fn + * @return {Suite} for chaining + */ +Suite.prototype.afterAll = function(title, fn) { + if (this.isPending()) { + return this; + } + if (typeof title === 'function') { + fn = title; + title = fn.name; + } + title = '"after all" hook' + (title ? ': ' + title : ''); + + var hook = new Hook(title, fn); + hook.parent = this; + hook.timeout(this.timeout()); + hook.retries(this.retries()); + hook.enableTimeouts(this.enableTimeouts()); + hook.slow(this.slow()); + hook.ctx = this.ctx; + this._afterAll.push(hook); + this.emit('afterAll', hook); + return this; +}; + +/** + * Run `fn(test[, done])` before each test case. + * + * @api private + * @param {string} title + * @param {Function} fn + * @return {Suite} for chaining + */ +Suite.prototype.beforeEach = function(title, fn) { + if (this.isPending()) { + return this; + } + if (typeof title === 'function') { + fn = title; + title = fn.name; + } + title = '"before each" hook' + (title ? ': ' + title : ''); + + var hook = new Hook(title, fn); + hook.parent = this; + hook.timeout(this.timeout()); + hook.retries(this.retries()); + hook.enableTimeouts(this.enableTimeouts()); + hook.slow(this.slow()); + hook.ctx = this.ctx; + this._beforeEach.push(hook); + this.emit('beforeEach', hook); + return this; +}; + +/** + * Run `fn(test[, done])` after each test case. + * + * @api private + * @param {string} title + * @param {Function} fn + * @return {Suite} for chaining + */ +Suite.prototype.afterEach = function(title, fn) { + if (this.isPending()) { + return this; + } + if (typeof title === 'function') { + fn = title; + title = fn.name; + } + title = '"after each" hook' + (title ? ': ' + title : ''); + + var hook = new Hook(title, fn); + hook.parent = this; + hook.timeout(this.timeout()); + hook.retries(this.retries()); + hook.enableTimeouts(this.enableTimeouts()); + hook.slow(this.slow()); + hook.ctx = this.ctx; + this._afterEach.push(hook); + this.emit('afterEach', hook); + return this; +}; + +/** + * Add a test `suite`. + * + * @api private + * @param {Suite} suite + * @return {Suite} for chaining + */ +Suite.prototype.addSuite = function(suite) { + suite.parent = this; + suite.timeout(this.timeout()); + suite.retries(this.retries()); + suite.enableTimeouts(this.enableTimeouts()); + suite.slow(this.slow()); + suite.bail(this.bail()); + this.suites.push(suite); + this.emit('suite', suite); + return this; +}; + +/** + * Add a `test` to this suite. + * + * @api private + * @param {Test} test + * @return {Suite} for chaining + */ +Suite.prototype.addTest = function(test) { + test.parent = this; + test.timeout(this.timeout()); + test.retries(this.retries()); + test.enableTimeouts(this.enableTimeouts()); + test.slow(this.slow()); + test.ctx = this.ctx; + this.tests.push(test); + this.emit('test', test); + return this; +}; + +/** + * Return the full title generated by recursively concatenating the parent's + * full title. + * + * @api public + * @return {string} + */ +Suite.prototype.fullTitle = function() { + if (this.parent) { + var full = this.parent.fullTitle(); + if (full) { + return full + ' ' + this.title; + } + } + return this.title; +}; + +/** + * Return the total number of tests. + * + * @api public + * @return {number} + */ +Suite.prototype.total = function() { + return utils.reduce(this.suites, function(sum, suite) { + return sum + suite.total(); + }, 0) + this.tests.length; +}; + +/** + * Iterates through each suite recursively to find all tests. Applies a + * function in the format `fn(test)`. + * + * @api private + * @param {Function} fn + * @return {Suite} + */ +Suite.prototype.eachTest = function(fn) { + utils.forEach(this.tests, fn); + utils.forEach(this.suites, function(suite) { + suite.eachTest(fn); + }); + return this; +}; + +/** + * This will run the root suite if we happen to be running in delayed mode. + */ +Suite.prototype.run = function run() { + if (this.root) { + this.emit('run'); + } +}; + +},{"./hook":7,"./ms":15,"./utils":39,"debug":2,"events":3}],38:[function(require,module,exports){ +/** + * Module dependencies. + */ + +var Runnable = require('./runnable'); +var inherits = require('./utils').inherits; + +/** + * Expose `Test`. + */ + +module.exports = Test; + +/** + * Initialize a new `Test` with the given `title` and callback `fn`. + * + * @api private + * @param {String} title + * @param {Function} fn + */ +function Test(title, fn) { + Runnable.call(this, title, fn); + this.pending = !fn; + this.type = 'test'; +} + +/** + * Inherit from `Runnable.prototype`. + */ +inherits(Test, Runnable); + +Test.prototype.clone = function() { + var test = new Test(this.title, this.fn); + test.timeout(this.timeout()); + test.slow(this.slow()); + test.enableTimeouts(this.enableTimeouts()); + test.retries(this.retries()); + test.currentRetry(this.currentRetry()); + test.globals(this.globals()); + test.parent = this.parent; + test.file = this.file; + test.ctx = this.ctx; + return test; +}; + +},{"./runnable":35,"./utils":39}],39:[function(require,module,exports){ +(function (process,Buffer){ +/* eslint-env browser */ + +/** + * Module dependencies. + */ + +var basename = require('path').basename; +var debug = require('debug')('mocha:watch'); +var exists = require('fs').existsSync || require('path').existsSync; +var glob = require('glob'); +var join = require('path').join; +var readdirSync = require('fs').readdirSync; +var statSync = require('fs').statSync; +var watchFile = require('fs').watchFile; +var toISOString = require('to-iso-string'); + +/** + * Ignored directories. + */ + +var ignore = ['node_modules', '.git']; + +exports.inherits = require('util').inherits; + +/** + * Escape special characters in the given string of html. + * + * @api private + * @param {string} html + * @return {string} + */ +exports.escape = function(html) { + return String(html) + .replace(/&/g, '&') + .replace(/"/g, '"') + .replace(//g, '>'); +}; + +/** + * Array#forEach (<=IE8) + * + * @api private + * @param {Array} arr + * @param {Function} fn + * @param {Object} scope + */ +exports.forEach = function(arr, fn, scope) { + for (var i = 0, l = arr.length; i < l; i++) { + fn.call(scope, arr[i], i); + } +}; + +/** + * Test if the given obj is type of string. + * + * @api private + * @param {Object} obj + * @return {boolean} + */ +exports.isString = function(obj) { + return typeof obj === 'string'; +}; + +/** + * Array#map (<=IE8) + * + * @api private + * @param {Array} arr + * @param {Function} fn + * @param {Object} scope + * @return {Array} + */ +exports.map = function(arr, fn, scope) { + var result = []; + for (var i = 0, l = arr.length; i < l; i++) { + result.push(fn.call(scope, arr[i], i, arr)); + } + return result; +}; + +/** + * Array#indexOf (<=IE8) + * + * @api private + * @param {Array} arr + * @param {Object} obj to find index of + * @param {number} start + * @return {number} + */ +exports.indexOf = function(arr, obj, start) { + for (var i = start || 0, l = arr.length; i < l; i++) { + if (arr[i] === obj) { + return i; + } + } + return -1; +}; + +/** + * Array#reduce (<=IE8) + * + * @api private + * @param {Array} arr + * @param {Function} fn + * @param {Object} val Initial value. + * @return {*} + */ +exports.reduce = function(arr, fn, val) { + var rval = val; + + for (var i = 0, l = arr.length; i < l; i++) { + rval = fn(rval, arr[i], i, arr); + } + + return rval; +}; + +/** + * Array#filter (<=IE8) + * + * @api private + * @param {Array} arr + * @param {Function} fn + * @return {Array} + */ +exports.filter = function(arr, fn) { + var ret = []; + + for (var i = 0, l = arr.length; i < l; i++) { + var val = arr[i]; + if (fn(val, i, arr)) { + ret.push(val); + } + } + + return ret; +}; + +/** + * Object.keys (<=IE8) + * + * @api private + * @param {Object} obj + * @return {Array} keys + */ +exports.keys = typeof Object.keys === 'function' ? Object.keys : function(obj) { + var keys = []; + var has = Object.prototype.hasOwnProperty; // for `window` on <=IE8 + + for (var key in obj) { + if (has.call(obj, key)) { + keys.push(key); + } + } + + return keys; +}; + +/** + * Watch the given `files` for changes + * and invoke `fn(file)` on modification. + * + * @api private + * @param {Array} files + * @param {Function} fn + */ +exports.watch = function(files, fn) { + var options = { interval: 100 }; + files.forEach(function(file) { + debug('file %s', file); + watchFile(file, options, function(curr, prev) { + if (prev.mtime < curr.mtime) { + fn(file); + } + }); + }); +}; + +/** + * Array.isArray (<=IE8) + * + * @api private + * @param {Object} obj + * @return {Boolean} + */ +var isArray = typeof Array.isArray === 'function' ? Array.isArray : function(obj) { + return Object.prototype.toString.call(obj) === '[object Array]'; +}; + +exports.isArray = isArray; + +/** + * Buffer.prototype.toJSON polyfill. + * + * @type {Function} + */ +if (typeof Buffer !== 'undefined' && Buffer.prototype) { + Buffer.prototype.toJSON = Buffer.prototype.toJSON || function() { + return Array.prototype.slice.call(this, 0); + }; +} + +/** + * Ignored files. + * + * @api private + * @param {string} path + * @return {boolean} + */ +function ignored(path) { + return !~ignore.indexOf(path); +} + +/** + * Lookup files in the given `dir`. + * + * @api private + * @param {string} dir + * @param {string[]} [ext=['.js']] + * @param {Array} [ret=[]] + * @return {Array} + */ +exports.files = function(dir, ext, ret) { + ret = ret || []; + ext = ext || ['js']; + + var re = new RegExp('\\.(' + ext.join('|') + ')$'); + + readdirSync(dir) + .filter(ignored) + .forEach(function(path) { + path = join(dir, path); + if (statSync(path).isDirectory()) { + exports.files(path, ext, ret); + } else if (path.match(re)) { + ret.push(path); + } + }); + + return ret; +}; + +/** + * Compute a slug from the given `str`. + * + * @api private + * @param {string} str + * @return {string} + */ +exports.slug = function(str) { + return str + .toLowerCase() + .replace(/ +/g, '-') + .replace(/[^-\w]/g, ''); +}; + +/** + * Strip the function definition from `str`, and re-indent for pre whitespace. + * + * @param {string} str + * @return {string} + */ +exports.clean = function(str) { + str = str + .replace(/\r\n?|[\n\u2028\u2029]/g, '\n').replace(/^\uFEFF/, '') + .replace(/^function *\(.*\)\s*\{|\(.*\) *=> *\{?/, '') + .replace(/\s+\}$/, ''); + + var spaces = str.match(/^\n?( *)/)[1].length; + var tabs = str.match(/^\n?(\t*)/)[1].length; + var re = new RegExp('^\n?' + (tabs ? '\t' : ' ') + '{' + (tabs ? tabs : spaces) + '}', 'gm'); + + str = str.replace(re, ''); + + return exports.trim(str); +}; + +/** + * Trim the given `str`. + * + * @api private + * @param {string} str + * @return {string} + */ +exports.trim = function(str) { + return str.replace(/^\s+|\s+$/g, ''); +}; + +/** + * Parse the given `qs`. + * + * @api private + * @param {string} qs + * @return {Object} + */ +exports.parseQuery = function(qs) { + return exports.reduce(qs.replace('?', '').split('&'), function(obj, pair) { + var i = pair.indexOf('='); + var key = pair.slice(0, i); + var val = pair.slice(++i); + + obj[key] = decodeURIComponent(val); + return obj; + }, {}); +}; + +/** + * Highlight the given string of `js`. + * + * @api private + * @param {string} js + * @return {string} + */ +function highlight(js) { + return js + .replace(//g, '>') + .replace(/\/\/(.*)/gm, '//$1') + .replace(/('.*?')/gm, '$1') + .replace(/(\d+\.\d+)/gm, '$1') + .replace(/(\d+)/gm, '$1') + .replace(/\bnew[ \t]+(\w+)/gm, 'new $1') + .replace(/\b(function|new|throw|return|var|if|else)\b/gm, '$1'); +} + +/** + * Highlight the contents of tag `name`. + * + * @api private + * @param {string} name + */ +exports.highlightTags = function(name) { + var code = document.getElementById('mocha').getElementsByTagName(name); + for (var i = 0, len = code.length; i < len; ++i) { + code[i].innerHTML = highlight(code[i].innerHTML); + } +}; + +/** + * If a value could have properties, and has none, this function is called, + * which returns a string representation of the empty value. + * + * Functions w/ no properties return `'[Function]'` + * Arrays w/ length === 0 return `'[]'` + * Objects w/ no properties return `'{}'` + * All else: return result of `value.toString()` + * + * @api private + * @param {*} value The value to inspect. + * @param {string} [type] The type of the value, if known. + * @returns {string} + */ +function emptyRepresentation(value, type) { + type = type || exports.type(value); + + switch (type) { + case 'function': + return '[Function]'; + case 'object': + return '{}'; + case 'array': + return '[]'; + default: + return value.toString(); + } +} + +/** + * Takes some variable and asks `Object.prototype.toString()` what it thinks it + * is. + * + * @api private + * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/toString + * @param {*} value The value to test. + * @returns {string} + * @example + * type({}) // 'object' + * type([]) // 'array' + * type(1) // 'number' + * type(false) // 'boolean' + * type(Infinity) // 'number' + * type(null) // 'null' + * type(new Date()) // 'date' + * type(/foo/) // 'regexp' + * type('type') // 'string' + * type(global) // 'global' + */ +exports.type = function type(value) { + if (value === undefined) { + return 'undefined'; + } else if (value === null) { + return 'null'; + } else if (typeof Buffer !== 'undefined' && Buffer.isBuffer(value)) { + return 'buffer'; + } + return Object.prototype.toString.call(value) + .replace(/^\[.+\s(.+?)\]$/, '$1') + .toLowerCase(); +}; + +/** + * Stringify `value`. Different behavior depending on type of value: + * + * - If `value` is undefined or null, return `'[undefined]'` or `'[null]'`, respectively. + * - If `value` is not an object, function or array, return result of `value.toString()` wrapped in double-quotes. + * - If `value` is an *empty* object, function, or array, return result of function + * {@link emptyRepresentation}. + * - If `value` has properties, call {@link exports.canonicalize} on it, then return result of + * JSON.stringify(). + * + * @api private + * @see exports.type + * @param {*} value + * @return {string} + */ +exports.stringify = function(value) { + var type = exports.type(value); + + if (!~exports.indexOf(['object', 'array', 'function'], type)) { + if (type !== 'buffer') { + return jsonStringify(value); + } + var json = value.toJSON(); + // Based on the toJSON result + return jsonStringify(json.data && json.type ? json.data : json, 2) + .replace(/,(\n|$)/g, '$1'); + } + + for (var prop in value) { + if (Object.prototype.hasOwnProperty.call(value, prop)) { + return jsonStringify(exports.canonicalize(value), 2).replace(/,(\n|$)/g, '$1'); + } + } + + return emptyRepresentation(value, type); +}; + +/** + * like JSON.stringify but more sense. + * + * @api private + * @param {Object} object + * @param {number=} spaces + * @param {number=} depth + * @returns {*} + */ +function jsonStringify(object, spaces, depth) { + if (typeof spaces === 'undefined') { + // primitive types + return _stringify(object); + } + + depth = depth || 1; + var space = spaces * depth; + var str = isArray(object) ? '[' : '{'; + var end = isArray(object) ? ']' : '}'; + var length = typeof object.length === 'number' ? object.length : exports.keys(object).length; + // `.repeat()` polyfill + function repeat(s, n) { + return new Array(n).join(s); + } + + function _stringify(val) { + switch (exports.type(val)) { + case 'null': + case 'undefined': + val = '[' + val + ']'; + break; + case 'array': + case 'object': + val = jsonStringify(val, spaces, depth + 1); + break; + case 'boolean': + case 'regexp': + case 'symbol': + case 'number': + val = val === 0 && (1 / val) === -Infinity // `-0` + ? '-0' + : val.toString(); + break; + case 'date': + var sDate; + if (isNaN(val.getTime())) { // Invalid date + sDate = val.toString(); + } else { + sDate = val.toISOString ? val.toISOString() : toISOString(val); + } + val = '[Date: ' + sDate + ']'; + break; + case 'buffer': + var json = val.toJSON(); + // Based on the toJSON result + json = json.data && json.type ? json.data : json; + val = '[Buffer: ' + jsonStringify(json, 2, depth + 1) + ']'; + break; + default: + val = (val === '[Function]' || val === '[Circular]') + ? val + : JSON.stringify(val); // string + } + return val; + } + + for (var i in object) { + if (!Object.prototype.hasOwnProperty.call(object, i)) { + continue; // not my business + } + --length; + str += '\n ' + repeat(' ', space) + + (isArray(object) ? '' : '"' + i + '": ') // key + + _stringify(object[i]) // value + + (length ? ',' : ''); // comma + } + + return str + // [], {} + + (str.length !== 1 ? '\n' + repeat(' ', --space) + end : end); +} + +/** + * Test if a value is a buffer. + * + * @api private + * @param {*} value The value to test. + * @return {boolean} True if `value` is a buffer, otherwise false + */ +exports.isBuffer = function(value) { + return typeof Buffer !== 'undefined' && Buffer.isBuffer(value); +}; + +/** + * Return a new Thing that has the keys in sorted order. Recursive. + * + * If the Thing... + * - has already been seen, return string `'[Circular]'` + * - is `undefined`, return string `'[undefined]'` + * - is `null`, return value `null` + * - is some other primitive, return the value + * - is not a primitive or an `Array`, `Object`, or `Function`, return the value of the Thing's `toString()` method + * - is a non-empty `Array`, `Object`, or `Function`, return the result of calling this function again. + * - is an empty `Array`, `Object`, or `Function`, return the result of calling `emptyRepresentation()` + * + * @api private + * @see {@link exports.stringify} + * @param {*} value Thing to inspect. May or may not have properties. + * @param {Array} [stack=[]] Stack of seen values + * @return {(Object|Array|Function|string|undefined)} + */ +exports.canonicalize = function(value, stack) { + var canonicalizedObj; + /* eslint-disable no-unused-vars */ + var prop; + /* eslint-enable no-unused-vars */ + var type = exports.type(value); + function withStack(value, fn) { + stack.push(value); + fn(); + stack.pop(); + } + + stack = stack || []; + + if (exports.indexOf(stack, value) !== -1) { + return '[Circular]'; + } + + switch (type) { + case 'undefined': + case 'buffer': + case 'null': + canonicalizedObj = value; + break; + case 'array': + withStack(value, function() { + canonicalizedObj = exports.map(value, function(item) { + return exports.canonicalize(item, stack); + }); + }); + break; + case 'function': + /* eslint-disable guard-for-in */ + for (prop in value) { + canonicalizedObj = {}; + break; + } + /* eslint-enable guard-for-in */ + if (!canonicalizedObj) { + canonicalizedObj = emptyRepresentation(value, type); + break; + } + /* falls through */ + case 'object': + canonicalizedObj = canonicalizedObj || {}; + withStack(value, function() { + exports.forEach(exports.keys(value).sort(), function(key) { + canonicalizedObj[key] = exports.canonicalize(value[key], stack); + }); + }); + break; + case 'date': + case 'number': + case 'regexp': + case 'boolean': + case 'symbol': + canonicalizedObj = value; + break; + default: + canonicalizedObj = value + ''; + } + + return canonicalizedObj; +}; + +/** + * Lookup file names at the given `path`. + * + * @api public + * @param {string} path Base path to start searching from. + * @param {string[]} extensions File extensions to look for. + * @param {boolean} recursive Whether or not to recurse into subdirectories. + * @return {string[]} An array of paths. + */ +exports.lookupFiles = function lookupFiles(path, extensions, recursive) { + var files = []; + var re = new RegExp('\\.(' + extensions.join('|') + ')$'); + + if (!exists(path)) { + if (exists(path + '.js')) { + path += '.js'; + } else { + files = glob.sync(path); + if (!files.length) { + throw new Error("cannot resolve path (or pattern) '" + path + "'"); + } + return files; + } + } + + try { + var stat = statSync(path); + if (stat.isFile()) { + return path; + } + } catch (err) { + // ignore error + return; + } + + readdirSync(path).forEach(function(file) { + file = join(path, file); + try { + var stat = statSync(file); + if (stat.isDirectory()) { + if (recursive) { + files = files.concat(lookupFiles(file, extensions, recursive)); + } + return; + } + } catch (err) { + // ignore error + return; + } + if (!stat.isFile() || !re.test(file) || basename(file)[0] === '.') { + return; + } + files.push(file); + }); + + return files; +}; + +/** + * Generate an undefined error with a message warning the user. + * + * @return {Error} + */ + +exports.undefinedError = function() { + return new Error('Caught undefined error, did you throw without specifying what?'); +}; + +/** + * Generate an undefined error if `err` is not defined. + * + * @param {Error} err + * @return {Error} + */ + +exports.getError = function(err) { + return err || exports.undefinedError(); +}; + +/** + * @summary + * This Filter based on `mocha-clean` module.(see: `github.com/rstacruz/mocha-clean`) + * @description + * When invoking this function you get a filter function that get the Error.stack as an input, + * and return a prettify output. + * (i.e: strip Mocha and internal node functions from stack trace). + * @returns {Function} + */ +exports.stackTraceFilter = function() { + // TODO: Replace with `process.browser` + var slash = '/'; + var is = typeof document === 'undefined' ? { node: true } : { browser: true }; + var cwd = is.node + ? process.cwd() + slash + : (typeof location === 'undefined' ? window.location : location).href.replace(/\/[^\/]*$/, '/'); + + function isMochaInternal(line) { + return (~line.indexOf('node_modules' + slash + 'mocha' + slash)) + || (~line.indexOf('components' + slash + 'mochajs' + slash)) + || (~line.indexOf('components' + slash + 'mocha' + slash)) + || (~line.indexOf(slash + 'mocha.js')); + } + + function isNodeInternal(line) { + return (~line.indexOf('(timers.js:')) + || (~line.indexOf('(events.js:')) + || (~line.indexOf('(node.js:')) + || (~line.indexOf('(module.js:')) + || (~line.indexOf('GeneratorFunctionPrototype.next (native)')) + || false; + } + + return function(stack) { + stack = stack.split('\n'); + + stack = exports.reduce(stack, function(list, line) { + if (isMochaInternal(line)) { + return list; + } + + if (is.node && isNodeInternal(line)) { + return list; + } + + // Clean up cwd(absolute) + if (/\(?.+:\d+:\d+\)?$/.test(line)) { + line = line.replace(cwd, ''); + } + + list.push(line); + return list; + }, []); + + return stack.join('\n'); + }; +}; + +}).call(this,require('_process'),require("buffer").Buffer) +},{"_process":58,"buffer":45,"debug":2,"fs":43,"glob":43,"path":43,"to-iso-string":72,"util":75}],40:[function(require,module,exports){ +'use strict' + +exports.toByteArray = toByteArray +exports.fromByteArray = fromByteArray + +var lookup = [] +var revLookup = [] +var Arr = typeof Uint8Array !== 'undefined' ? Uint8Array : Array + +function init () { + var code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/' + for (var i = 0, len = code.length; i < len; ++i) { + lookup[i] = code[i] + revLookup[code.charCodeAt(i)] = i + } + + revLookup['-'.charCodeAt(0)] = 62 + revLookup['_'.charCodeAt(0)] = 63 +} + +init() + +function toByteArray (b64) { + var i, j, l, tmp, placeHolders, arr + var len = b64.length + + if (len % 4 > 0) { + throw new Error('Invalid string. Length must be a multiple of 4') + } + + // the number of equal signs (place holders) + // if there are two placeholders, than the two characters before it + // represent one byte + // if there is only one, then the three characters before it represent 2 bytes + // this is just a cheap hack to not do indexOf twice + placeHolders = b64[len - 2] === '=' ? 2 : b64[len - 1] === '=' ? 1 : 0 + + // base64 is 4/3 + up to two characters of the original data + arr = new Arr(len * 3 / 4 - placeHolders) + + // if there are placeholders, only get up to the last complete 4 chars + l = placeHolders > 0 ? len - 4 : len + + var L = 0 + + for (i = 0, j = 0; i < l; i += 4, j += 3) { + tmp = (revLookup[b64.charCodeAt(i)] << 18) | (revLookup[b64.charCodeAt(i + 1)] << 12) | (revLookup[b64.charCodeAt(i + 2)] << 6) | revLookup[b64.charCodeAt(i + 3)] + arr[L++] = (tmp >> 16) & 0xFF + arr[L++] = (tmp >> 8) & 0xFF + arr[L++] = tmp & 0xFF + } + + if (placeHolders === 2) { + tmp = (revLookup[b64.charCodeAt(i)] << 2) | (revLookup[b64.charCodeAt(i + 1)] >> 4) + arr[L++] = tmp & 0xFF + } else if (placeHolders === 1) { + tmp = (revLookup[b64.charCodeAt(i)] << 10) | (revLookup[b64.charCodeAt(i + 1)] << 4) | (revLookup[b64.charCodeAt(i + 2)] >> 2) + arr[L++] = (tmp >> 8) & 0xFF + arr[L++] = tmp & 0xFF + } + + return arr +} + +function tripletToBase64 (num) { + return lookup[num >> 18 & 0x3F] + lookup[num >> 12 & 0x3F] + lookup[num >> 6 & 0x3F] + lookup[num & 0x3F] +} + +function encodeChunk (uint8, start, end) { + var tmp + var output = [] + for (var i = start; i < end; i += 3) { + tmp = (uint8[i] << 16) + (uint8[i + 1] << 8) + (uint8[i + 2]) + output.push(tripletToBase64(tmp)) + } + return output.join('') +} + +function fromByteArray (uint8) { + var tmp + var len = uint8.length + var extraBytes = len % 3 // if we have 1 byte left, pad 2 bytes + var output = '' + var parts = [] + var maxChunkLength = 16383 // must be multiple of 3 + + // go through the array every three bytes, we'll deal with trailing stuff later + for (var i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) { + parts.push(encodeChunk(uint8, i, (i + maxChunkLength) > len2 ? len2 : (i + maxChunkLength))) + } + + // pad the end with zeros, but make sure to not forget the extra bytes + if (extraBytes === 1) { + tmp = uint8[len - 1] + output += lookup[tmp >> 2] + output += lookup[(tmp << 4) & 0x3F] + output += '==' + } else if (extraBytes === 2) { + tmp = (uint8[len - 2] << 8) + (uint8[len - 1]) + output += lookup[tmp >> 10] + output += lookup[(tmp >> 4) & 0x3F] + output += lookup[(tmp << 2) & 0x3F] + output += '=' + } + + parts.push(output) + + return parts.join('') +} + +},{}],41:[function(require,module,exports){ + +},{}],42:[function(require,module,exports){ +(function (process){ +var WritableStream = require('stream').Writable +var inherits = require('util').inherits + +module.exports = BrowserStdout + + +inherits(BrowserStdout, WritableStream) + +function BrowserStdout(opts) { + if (!(this instanceof BrowserStdout)) return new BrowserStdout(opts) + + opts = opts || {} + WritableStream.call(this, opts) + this.label = (opts.label !== undefined) ? opts.label : 'stdout' +} + +BrowserStdout.prototype._write = function(chunks, encoding, cb) { + var output = chunks.toString ? chunks.toString() : chunks + if (this.label === false) { + console.log(output) + } else { + console.log(this.label+':', output) + } + process.nextTick(cb) +} + +}).call(this,require('_process')) +},{"_process":58,"stream":59,"util":75}],43:[function(require,module,exports){ +arguments[4][41][0].apply(exports,arguments) +},{"dup":41}],44:[function(require,module,exports){ +(function (global){ +'use strict'; + +var buffer = require('buffer'); +var Buffer = buffer.Buffer; +var SlowBuffer = buffer.SlowBuffer; +var MAX_LEN = buffer.kMaxLength || 2147483647; +exports.alloc = function alloc(size, fill, encoding) { + if (typeof Buffer.alloc === 'function') { + return Buffer.alloc(size, fill, encoding); + } + if (typeof encoding === 'number') { + throw new TypeError('encoding must not be number'); + } + if (typeof size !== 'number') { + throw new TypeError('size must be a number'); + } + if (size > MAX_LEN) { + throw new RangeError('size is too large'); + } + var enc = encoding; + var _fill = fill; + if (_fill === undefined) { + enc = undefined; + _fill = 0; + } + var buf = new Buffer(size); + if (typeof _fill === 'string') { + var fillBuf = new Buffer(_fill, enc); + var flen = fillBuf.length; + var i = -1; + while (++i < size) { + buf[i] = fillBuf[i % flen]; + } + } else { + buf.fill(_fill); + } + return buf; +} +exports.allocUnsafe = function allocUnsafe(size) { + if (typeof Buffer.allocUnsafe === 'function') { + return Buffer.allocUnsafe(size); + } + if (typeof size !== 'number') { + throw new TypeError('size must be a number'); + } + if (size > MAX_LEN) { + throw new RangeError('size is too large'); + } + return new Buffer(size); +} +exports.from = function from(value, encodingOrOffset, length) { + if (typeof Buffer.from === 'function' && (!global.Uint8Array || Uint8Array.from !== Buffer.from)) { + return Buffer.from(value, encodingOrOffset, length); + } + if (typeof value === 'number') { + throw new TypeError('"value" argument must not be a number'); + } + if (typeof value === 'string') { + return new Buffer(value, encodingOrOffset); + } + if (typeof ArrayBuffer !== 'undefined' && value instanceof ArrayBuffer) { + var offset = encodingOrOffset; + if (arguments.length === 1) { + return new Buffer(value); + } + if (typeof offset === 'undefined') { + offset = 0; + } + var len = length; + if (typeof len === 'undefined') { + len = value.byteLength - offset; + } + if (offset >= value.byteLength) { + throw new RangeError('\'offset\' is out of bounds'); + } + if (len > value.byteLength - offset) { + throw new RangeError('\'length\' is out of bounds'); + } + return new Buffer(value.slice(offset, offset + len)); + } + if (Buffer.isBuffer(value)) { + var out = new Buffer(value.length); + value.copy(out, 0, 0, value.length); + return out; + } + if (value) { + if (Array.isArray(value) || (typeof ArrayBuffer !== 'undefined' && value.buffer instanceof ArrayBuffer) || 'length' in value) { + return new Buffer(value); + } + if (value.type === 'Buffer' && Array.isArray(value.data)) { + return new Buffer(value.data); + } + } + + throw new TypeError('First argument must be a string, Buffer, ' + 'ArrayBuffer, Array, or array-like object.'); +} +exports.allocUnsafeSlow = function allocUnsafeSlow(size) { + if (typeof Buffer.allocUnsafeSlow === 'function') { + return Buffer.allocUnsafeSlow(size); + } + if (typeof size !== 'number') { + throw new TypeError('size must be a number'); + } + if (size >= MAX_LEN) { + throw new RangeError('size is too large'); + } + return new SlowBuffer(size); +} + +}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) +},{"buffer":45}],45:[function(require,module,exports){ +(function (global){ +/*! + * The buffer module from node.js, for the browser. + * + * @author Feross Aboukhadijeh + * @license MIT + */ +/* eslint-disable no-proto */ + +'use strict' + +var base64 = require('base64-js') +var ieee754 = require('ieee754') +var isArray = require('isarray') + +exports.Buffer = Buffer +exports.SlowBuffer = SlowBuffer +exports.INSPECT_MAX_BYTES = 50 + +/** + * If `Buffer.TYPED_ARRAY_SUPPORT`: + * === true Use Uint8Array implementation (fastest) + * === false Use Object implementation (most compatible, even IE6) + * + * Browsers that support typed arrays are IE 10+, Firefox 4+, Chrome 7+, Safari 5.1+, + * Opera 11.6+, iOS 4.2+. + * + * Due to various browser bugs, sometimes the Object implementation will be used even + * when the browser supports typed arrays. + * + * Note: + * + * - Firefox 4-29 lacks support for adding new properties to `Uint8Array` instances, + * See: https://bugzilla.mozilla.org/show_bug.cgi?id=695438. + * + * - Chrome 9-10 is missing the `TypedArray.prototype.subarray` function. + * + * - IE10 has a broken `TypedArray.prototype.subarray` function which returns arrays of + * incorrect length in some situations. + + * We detect these buggy browsers and set `Buffer.TYPED_ARRAY_SUPPORT` to `false` so they + * get the Object implementation, which is slower but behaves correctly. + */ +Buffer.TYPED_ARRAY_SUPPORT = global.TYPED_ARRAY_SUPPORT !== undefined + ? global.TYPED_ARRAY_SUPPORT + : typedArraySupport() + +/* + * Export kMaxLength after typed array support is determined. + */ +exports.kMaxLength = kMaxLength() + +function typedArraySupport () { + try { + var arr = new Uint8Array(1) + arr.foo = function () { return 42 } + return arr.foo() === 42 && // typed array instances can be augmented + typeof arr.subarray === 'function' && // chrome 9-10 lack `subarray` + arr.subarray(1, 1).byteLength === 0 // ie10 has broken `subarray` + } catch (e) { + return false + } +} + +function kMaxLength () { + return Buffer.TYPED_ARRAY_SUPPORT + ? 0x7fffffff + : 0x3fffffff +} + +function createBuffer (that, length) { + if (kMaxLength() < length) { + throw new RangeError('Invalid typed array length') + } + if (Buffer.TYPED_ARRAY_SUPPORT) { + // Return an augmented `Uint8Array` instance, for best performance + that = new Uint8Array(length) + that.__proto__ = Buffer.prototype + } else { + // Fallback: Return an object instance of the Buffer class + if (that === null) { + that = new Buffer(length) + } + that.length = length + } + + return that +} + +/** + * The Buffer constructor returns instances of `Uint8Array` that have their + * prototype changed to `Buffer.prototype`. Furthermore, `Buffer` is a subclass of + * `Uint8Array`, so the returned instances will have all the node `Buffer` methods + * and the `Uint8Array` methods. Square bracket notation works as expected -- it + * returns a single octet. + * + * The `Uint8Array` prototype remains unmodified. + */ + +function Buffer (arg, encodingOrOffset, length) { + if (!Buffer.TYPED_ARRAY_SUPPORT && !(this instanceof Buffer)) { + return new Buffer(arg, encodingOrOffset, length) + } + + // Common case. + if (typeof arg === 'number') { + if (typeof encodingOrOffset === 'string') { + throw new Error( + 'If encoding is specified then the first argument must be a string' + ) + } + return allocUnsafe(this, arg) + } + return from(this, arg, encodingOrOffset, length) +} + +Buffer.poolSize = 8192 // not used by this implementation + +// TODO: Legacy, not needed anymore. Remove in next major version. +Buffer._augment = function (arr) { + arr.__proto__ = Buffer.prototype + return arr +} + +function from (that, value, encodingOrOffset, length) { + if (typeof value === 'number') { + throw new TypeError('"value" argument must not be a number') + } + + if (typeof ArrayBuffer !== 'undefined' && value instanceof ArrayBuffer) { + return fromArrayBuffer(that, value, encodingOrOffset, length) + } + + if (typeof value === 'string') { + return fromString(that, value, encodingOrOffset) + } + + return fromObject(that, value) +} + +/** + * Functionally equivalent to Buffer(arg, encoding) but throws a TypeError + * if value is a number. + * Buffer.from(str[, encoding]) + * Buffer.from(array) + * Buffer.from(buffer) + * Buffer.from(arrayBuffer[, byteOffset[, length]]) + **/ +Buffer.from = function (value, encodingOrOffset, length) { + return from(null, value, encodingOrOffset, length) +} + +if (Buffer.TYPED_ARRAY_SUPPORT) { + Buffer.prototype.__proto__ = Uint8Array.prototype + Buffer.__proto__ = Uint8Array + if (typeof Symbol !== 'undefined' && Symbol.species && + Buffer[Symbol.species] === Buffer) { + // Fix subarray() in ES2016. See: https://github.com/feross/buffer/pull/97 + Object.defineProperty(Buffer, Symbol.species, { + value: null, + configurable: true + }) + } +} + +function assertSize (size) { + if (typeof size !== 'number') { + throw new TypeError('"size" argument must be a number') + } +} + +function alloc (that, size, fill, encoding) { + assertSize(size) + if (size <= 0) { + return createBuffer(that, size) + } + if (fill !== undefined) { + // Only pay attention to encoding if it's a string. This + // prevents accidentally sending in a number that would + // be interpretted as a start offset. + return typeof encoding === 'string' + ? createBuffer(that, size).fill(fill, encoding) + : createBuffer(that, size).fill(fill) + } + return createBuffer(that, size) +} + +/** + * Creates a new filled Buffer instance. + * alloc(size[, fill[, encoding]]) + **/ +Buffer.alloc = function (size, fill, encoding) { + return alloc(null, size, fill, encoding) +} + +function allocUnsafe (that, size) { + assertSize(size) + that = createBuffer(that, size < 0 ? 0 : checked(size) | 0) + if (!Buffer.TYPED_ARRAY_SUPPORT) { + for (var i = 0; i < size; i++) { + that[i] = 0 + } + } + return that +} + +/** + * Equivalent to Buffer(num), by default creates a non-zero-filled Buffer instance. + * */ +Buffer.allocUnsafe = function (size) { + return allocUnsafe(null, size) +} +/** + * Equivalent to SlowBuffer(num), by default creates a non-zero-filled Buffer instance. + */ +Buffer.allocUnsafeSlow = function (size) { + return allocUnsafe(null, size) +} + +function fromString (that, string, encoding) { + if (typeof encoding !== 'string' || encoding === '') { + encoding = 'utf8' + } + + if (!Buffer.isEncoding(encoding)) { + throw new TypeError('"encoding" must be a valid string encoding') + } + + var length = byteLength(string, encoding) | 0 + that = createBuffer(that, length) + + that.write(string, encoding) + return that +} + +function fromArrayLike (that, array) { + var length = checked(array.length) | 0 + that = createBuffer(that, length) + for (var i = 0; i < length; i += 1) { + that[i] = array[i] & 255 + } + return that +} + +function fromArrayBuffer (that, array, byteOffset, length) { + array.byteLength // this throws if `array` is not a valid ArrayBuffer + + if (byteOffset < 0 || array.byteLength < byteOffset) { + throw new RangeError('\'offset\' is out of bounds') + } + + if (array.byteLength < byteOffset + (length || 0)) { + throw new RangeError('\'length\' is out of bounds') + } + + if (length === undefined) { + array = new Uint8Array(array, byteOffset) + } else { + array = new Uint8Array(array, byteOffset, length) + } + + if (Buffer.TYPED_ARRAY_SUPPORT) { + // Return an augmented `Uint8Array` instance, for best performance + that = array + that.__proto__ = Buffer.prototype + } else { + // Fallback: Return an object instance of the Buffer class + that = fromArrayLike(that, array) + } + return that +} + +function fromObject (that, obj) { + if (Buffer.isBuffer(obj)) { + var len = checked(obj.length) | 0 + that = createBuffer(that, len) + + if (that.length === 0) { + return that + } + + obj.copy(that, 0, 0, len) + return that + } + + if (obj) { + if ((typeof ArrayBuffer !== 'undefined' && + obj.buffer instanceof ArrayBuffer) || 'length' in obj) { + if (typeof obj.length !== 'number' || isnan(obj.length)) { + return createBuffer(that, 0) + } + return fromArrayLike(that, obj) + } + + if (obj.type === 'Buffer' && isArray(obj.data)) { + return fromArrayLike(that, obj.data) + } + } + + throw new TypeError('First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.') +} + +function checked (length) { + // Note: cannot use `length < kMaxLength` here because that fails when + // length is NaN (which is otherwise coerced to zero.) + if (length >= kMaxLength()) { + throw new RangeError('Attempt to allocate Buffer larger than maximum ' + + 'size: 0x' + kMaxLength().toString(16) + ' bytes') + } + return length | 0 +} + +function SlowBuffer (length) { + if (+length != length) { // eslint-disable-line eqeqeq + length = 0 + } + return Buffer.alloc(+length) +} + +Buffer.isBuffer = function isBuffer (b) { + return !!(b != null && b._isBuffer) +} + +Buffer.compare = function compare (a, b) { + if (!Buffer.isBuffer(a) || !Buffer.isBuffer(b)) { + throw new TypeError('Arguments must be Buffers') + } + + if (a === b) return 0 + + var x = a.length + var y = b.length + + for (var i = 0, len = Math.min(x, y); i < len; ++i) { + if (a[i] !== b[i]) { + x = a[i] + y = b[i] + break + } + } + + if (x < y) return -1 + if (y < x) return 1 + return 0 +} + +Buffer.isEncoding = function isEncoding (encoding) { + switch (String(encoding).toLowerCase()) { + case 'hex': + case 'utf8': + case 'utf-8': + case 'ascii': + case 'binary': + case 'base64': + case 'raw': + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return true + default: + return false + } +} + +Buffer.concat = function concat (list, length) { + if (!isArray(list)) { + throw new TypeError('"list" argument must be an Array of Buffers') + } + + if (list.length === 0) { + return Buffer.alloc(0) + } + + var i + if (length === undefined) { + length = 0 + for (i = 0; i < list.length; i++) { + length += list[i].length + } + } + + var buffer = Buffer.allocUnsafe(length) + var pos = 0 + for (i = 0; i < list.length; i++) { + var buf = list[i] + if (!Buffer.isBuffer(buf)) { + throw new TypeError('"list" argument must be an Array of Buffers') + } + buf.copy(buffer, pos) + pos += buf.length + } + return buffer +} + +function byteLength (string, encoding) { + if (Buffer.isBuffer(string)) { + return string.length + } + if (typeof ArrayBuffer !== 'undefined' && typeof ArrayBuffer.isView === 'function' && + (ArrayBuffer.isView(string) || string instanceof ArrayBuffer)) { + return string.byteLength + } + if (typeof string !== 'string') { + string = '' + string + } + + var len = string.length + if (len === 0) return 0 + + // Use a for loop to avoid recursion + var loweredCase = false + for (;;) { + switch (encoding) { + case 'ascii': + case 'binary': + // Deprecated + case 'raw': + case 'raws': + return len + case 'utf8': + case 'utf-8': + case undefined: + return utf8ToBytes(string).length + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return len * 2 + case 'hex': + return len >>> 1 + case 'base64': + return base64ToBytes(string).length + default: + if (loweredCase) return utf8ToBytes(string).length // assume utf8 + encoding = ('' + encoding).toLowerCase() + loweredCase = true + } + } +} +Buffer.byteLength = byteLength + +function slowToString (encoding, start, end) { + var loweredCase = false + + // No need to verify that "this.length <= MAX_UINT32" since it's a read-only + // property of a typed array. + + // This behaves neither like String nor Uint8Array in that we set start/end + // to their upper/lower bounds if the value passed is out of range. + // undefined is handled specially as per ECMA-262 6th Edition, + // Section 13.3.3.7 Runtime Semantics: KeyedBindingInitialization. + if (start === undefined || start < 0) { + start = 0 + } + // Return early if start > this.length. Done here to prevent potential uint32 + // coercion fail below. + if (start > this.length) { + return '' + } + + if (end === undefined || end > this.length) { + end = this.length + } + + if (end <= 0) { + return '' + } + + // Force coersion to uint32. This will also coerce falsey/NaN values to 0. + end >>>= 0 + start >>>= 0 + + if (end <= start) { + return '' + } + + if (!encoding) encoding = 'utf8' + + while (true) { + switch (encoding) { + case 'hex': + return hexSlice(this, start, end) + + case 'utf8': + case 'utf-8': + return utf8Slice(this, start, end) + + case 'ascii': + return asciiSlice(this, start, end) + + case 'binary': + return binarySlice(this, start, end) + + case 'base64': + return base64Slice(this, start, end) + + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return utf16leSlice(this, start, end) + + default: + if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding) + encoding = (encoding + '').toLowerCase() + loweredCase = true + } + } +} + +// The property is used by `Buffer.isBuffer` and `is-buffer` (in Safari 5-7) to detect +// Buffer instances. +Buffer.prototype._isBuffer = true + +function swap (b, n, m) { + var i = b[n] + b[n] = b[m] + b[m] = i +} + +Buffer.prototype.swap16 = function swap16 () { + var len = this.length + if (len % 2 !== 0) { + throw new RangeError('Buffer size must be a multiple of 16-bits') + } + for (var i = 0; i < len; i += 2) { + swap(this, i, i + 1) + } + return this +} + +Buffer.prototype.swap32 = function swap32 () { + var len = this.length + if (len % 4 !== 0) { + throw new RangeError('Buffer size must be a multiple of 32-bits') + } + for (var i = 0; i < len; i += 4) { + swap(this, i, i + 3) + swap(this, i + 1, i + 2) + } + return this +} + +Buffer.prototype.toString = function toString () { + var length = this.length | 0 + if (length === 0) return '' + if (arguments.length === 0) return utf8Slice(this, 0, length) + return slowToString.apply(this, arguments) +} + +Buffer.prototype.equals = function equals (b) { + if (!Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer') + if (this === b) return true + return Buffer.compare(this, b) === 0 +} + +Buffer.prototype.inspect = function inspect () { + var str = '' + var max = exports.INSPECT_MAX_BYTES + if (this.length > 0) { + str = this.toString('hex', 0, max).match(/.{2}/g).join(' ') + if (this.length > max) str += ' ... ' + } + return '' +} + +Buffer.prototype.compare = function compare (target, start, end, thisStart, thisEnd) { + if (!Buffer.isBuffer(target)) { + throw new TypeError('Argument must be a Buffer') + } + + if (start === undefined) { + start = 0 + } + if (end === undefined) { + end = target ? target.length : 0 + } + if (thisStart === undefined) { + thisStart = 0 + } + if (thisEnd === undefined) { + thisEnd = this.length + } + + if (start < 0 || end > target.length || thisStart < 0 || thisEnd > this.length) { + throw new RangeError('out of range index') + } + + if (thisStart >= thisEnd && start >= end) { + return 0 + } + if (thisStart >= thisEnd) { + return -1 + } + if (start >= end) { + return 1 + } + + start >>>= 0 + end >>>= 0 + thisStart >>>= 0 + thisEnd >>>= 0 + + if (this === target) return 0 + + var x = thisEnd - thisStart + var y = end - start + var len = Math.min(x, y) + + var thisCopy = this.slice(thisStart, thisEnd) + var targetCopy = target.slice(start, end) + + for (var i = 0; i < len; ++i) { + if (thisCopy[i] !== targetCopy[i]) { + x = thisCopy[i] + y = targetCopy[i] + break + } + } + + if (x < y) return -1 + if (y < x) return 1 + return 0 +} + +function arrayIndexOf (arr, val, byteOffset, encoding) { + var indexSize = 1 + var arrLength = arr.length + var valLength = val.length + + if (encoding !== undefined) { + encoding = String(encoding).toLowerCase() + if (encoding === 'ucs2' || encoding === 'ucs-2' || + encoding === 'utf16le' || encoding === 'utf-16le') { + if (arr.length < 2 || val.length < 2) { + return -1 + } + indexSize = 2 + arrLength /= 2 + valLength /= 2 + byteOffset /= 2 + } + } + + function read (buf, i) { + if (indexSize === 1) { + return buf[i] + } else { + return buf.readUInt16BE(i * indexSize) + } + } + + var foundIndex = -1 + for (var i = 0; byteOffset + i < arrLength; i++) { + if (read(arr, byteOffset + i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) { + if (foundIndex === -1) foundIndex = i + if (i - foundIndex + 1 === valLength) return (byteOffset + foundIndex) * indexSize + } else { + if (foundIndex !== -1) i -= i - foundIndex + foundIndex = -1 + } + } + return -1 +} + +Buffer.prototype.indexOf = function indexOf (val, byteOffset, encoding) { + if (typeof byteOffset === 'string') { + encoding = byteOffset + byteOffset = 0 + } else if (byteOffset > 0x7fffffff) { + byteOffset = 0x7fffffff + } else if (byteOffset < -0x80000000) { + byteOffset = -0x80000000 + } + byteOffset >>= 0 + + if (this.length === 0) return -1 + if (byteOffset >= this.length) return -1 + + // Negative offsets start from the end of the buffer + if (byteOffset < 0) byteOffset = Math.max(this.length + byteOffset, 0) + + if (typeof val === 'string') { + val = Buffer.from(val, encoding) + } + + if (Buffer.isBuffer(val)) { + // special case: looking for empty string/buffer always fails + if (val.length === 0) { + return -1 + } + return arrayIndexOf(this, val, byteOffset, encoding) + } + if (typeof val === 'number') { + if (Buffer.TYPED_ARRAY_SUPPORT && Uint8Array.prototype.indexOf === 'function') { + return Uint8Array.prototype.indexOf.call(this, val, byteOffset) + } + return arrayIndexOf(this, [ val ], byteOffset, encoding) + } + + throw new TypeError('val must be string, number or Buffer') +} + +Buffer.prototype.includes = function includes (val, byteOffset, encoding) { + return this.indexOf(val, byteOffset, encoding) !== -1 +} + +function hexWrite (buf, string, offset, length) { + offset = Number(offset) || 0 + var remaining = buf.length - offset + if (!length) { + length = remaining + } else { + length = Number(length) + if (length > remaining) { + length = remaining + } + } + + // must be an even number of digits + var strLen = string.length + if (strLen % 2 !== 0) throw new Error('Invalid hex string') + + if (length > strLen / 2) { + length = strLen / 2 + } + for (var i = 0; i < length; i++) { + var parsed = parseInt(string.substr(i * 2, 2), 16) + if (isNaN(parsed)) return i + buf[offset + i] = parsed + } + return i +} + +function utf8Write (buf, string, offset, length) { + return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length) +} + +function asciiWrite (buf, string, offset, length) { + return blitBuffer(asciiToBytes(string), buf, offset, length) +} + +function binaryWrite (buf, string, offset, length) { + return asciiWrite(buf, string, offset, length) +} + +function base64Write (buf, string, offset, length) { + return blitBuffer(base64ToBytes(string), buf, offset, length) +} + +function ucs2Write (buf, string, offset, length) { + return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length) +} + +Buffer.prototype.write = function write (string, offset, length, encoding) { + // Buffer#write(string) + if (offset === undefined) { + encoding = 'utf8' + length = this.length + offset = 0 + // Buffer#write(string, encoding) + } else if (length === undefined && typeof offset === 'string') { + encoding = offset + length = this.length + offset = 0 + // Buffer#write(string, offset[, length][, encoding]) + } else if (isFinite(offset)) { + offset = offset | 0 + if (isFinite(length)) { + length = length | 0 + if (encoding === undefined) encoding = 'utf8' + } else { + encoding = length + length = undefined + } + // legacy write(string, encoding, offset, length) - remove in v0.13 + } else { + throw new Error( + 'Buffer.write(string, encoding, offset[, length]) is no longer supported' + ) + } + + var remaining = this.length - offset + if (length === undefined || length > remaining) length = remaining + + if ((string.length > 0 && (length < 0 || offset < 0)) || offset > this.length) { + throw new RangeError('Attempt to write outside buffer bounds') + } + + if (!encoding) encoding = 'utf8' + + var loweredCase = false + for (;;) { + switch (encoding) { + case 'hex': + return hexWrite(this, string, offset, length) + + case 'utf8': + case 'utf-8': + return utf8Write(this, string, offset, length) + + case 'ascii': + return asciiWrite(this, string, offset, length) + + case 'binary': + return binaryWrite(this, string, offset, length) + + case 'base64': + // Warning: maxLength not taken into account in base64Write + return base64Write(this, string, offset, length) + + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return ucs2Write(this, string, offset, length) + + default: + if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding) + encoding = ('' + encoding).toLowerCase() + loweredCase = true + } + } +} + +Buffer.prototype.toJSON = function toJSON () { + return { + type: 'Buffer', + data: Array.prototype.slice.call(this._arr || this, 0) + } +} + +function base64Slice (buf, start, end) { + if (start === 0 && end === buf.length) { + return base64.fromByteArray(buf) + } else { + return base64.fromByteArray(buf.slice(start, end)) + } +} + +function utf8Slice (buf, start, end) { + end = Math.min(buf.length, end) + var res = [] + + var i = start + while (i < end) { + var firstByte = buf[i] + var codePoint = null + var bytesPerSequence = (firstByte > 0xEF) ? 4 + : (firstByte > 0xDF) ? 3 + : (firstByte > 0xBF) ? 2 + : 1 + + if (i + bytesPerSequence <= end) { + var secondByte, thirdByte, fourthByte, tempCodePoint + + switch (bytesPerSequence) { + case 1: + if (firstByte < 0x80) { + codePoint = firstByte + } + break + case 2: + secondByte = buf[i + 1] + if ((secondByte & 0xC0) === 0x80) { + tempCodePoint = (firstByte & 0x1F) << 0x6 | (secondByte & 0x3F) + if (tempCodePoint > 0x7F) { + codePoint = tempCodePoint + } + } + break + case 3: + secondByte = buf[i + 1] + thirdByte = buf[i + 2] + if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80) { + tempCodePoint = (firstByte & 0xF) << 0xC | (secondByte & 0x3F) << 0x6 | (thirdByte & 0x3F) + if (tempCodePoint > 0x7FF && (tempCodePoint < 0xD800 || tempCodePoint > 0xDFFF)) { + codePoint = tempCodePoint + } + } + break + case 4: + secondByte = buf[i + 1] + thirdByte = buf[i + 2] + fourthByte = buf[i + 3] + if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80 && (fourthByte & 0xC0) === 0x80) { + tempCodePoint = (firstByte & 0xF) << 0x12 | (secondByte & 0x3F) << 0xC | (thirdByte & 0x3F) << 0x6 | (fourthByte & 0x3F) + if (tempCodePoint > 0xFFFF && tempCodePoint < 0x110000) { + codePoint = tempCodePoint + } + } + } + } + + if (codePoint === null) { + // we did not generate a valid codePoint so insert a + // replacement char (U+FFFD) and advance only 1 byte + codePoint = 0xFFFD + bytesPerSequence = 1 + } else if (codePoint > 0xFFFF) { + // encode to utf16 (surrogate pair dance) + codePoint -= 0x10000 + res.push(codePoint >>> 10 & 0x3FF | 0xD800) + codePoint = 0xDC00 | codePoint & 0x3FF + } + + res.push(codePoint) + i += bytesPerSequence + } + + return decodeCodePointsArray(res) +} + +// Based on http://stackoverflow.com/a/22747272/680742, the browser with +// the lowest limit is Chrome, with 0x10000 args. +// We go 1 magnitude less, for safety +var MAX_ARGUMENTS_LENGTH = 0x1000 + +function decodeCodePointsArray (codePoints) { + var len = codePoints.length + if (len <= MAX_ARGUMENTS_LENGTH) { + return String.fromCharCode.apply(String, codePoints) // avoid extra slice() + } + + // Decode in chunks to avoid "call stack size exceeded". + var res = '' + var i = 0 + while (i < len) { + res += String.fromCharCode.apply( + String, + codePoints.slice(i, i += MAX_ARGUMENTS_LENGTH) + ) + } + return res +} + +function asciiSlice (buf, start, end) { + var ret = '' + end = Math.min(buf.length, end) + + for (var i = start; i < end; i++) { + ret += String.fromCharCode(buf[i] & 0x7F) + } + return ret +} + +function binarySlice (buf, start, end) { + var ret = '' + end = Math.min(buf.length, end) + + for (var i = start; i < end; i++) { + ret += String.fromCharCode(buf[i]) + } + return ret +} + +function hexSlice (buf, start, end) { + var len = buf.length + + if (!start || start < 0) start = 0 + if (!end || end < 0 || end > len) end = len + + var out = '' + for (var i = start; i < end; i++) { + out += toHex(buf[i]) + } + return out +} + +function utf16leSlice (buf, start, end) { + var bytes = buf.slice(start, end) + var res = '' + for (var i = 0; i < bytes.length; i += 2) { + res += String.fromCharCode(bytes[i] + bytes[i + 1] * 256) + } + return res +} + +Buffer.prototype.slice = function slice (start, end) { + var len = this.length + start = ~~start + end = end === undefined ? len : ~~end + + if (start < 0) { + start += len + if (start < 0) start = 0 + } else if (start > len) { + start = len + } + + if (end < 0) { + end += len + if (end < 0) end = 0 + } else if (end > len) { + end = len + } + + if (end < start) end = start + + var newBuf + if (Buffer.TYPED_ARRAY_SUPPORT) { + newBuf = this.subarray(start, end) + newBuf.__proto__ = Buffer.prototype + } else { + var sliceLen = end - start + newBuf = new Buffer(sliceLen, undefined) + for (var i = 0; i < sliceLen; i++) { + newBuf[i] = this[i + start] + } + } + + return newBuf +} + +/* + * Need to make sure that buffer isn't trying to write out of bounds. + */ +function checkOffset (offset, ext, length) { + if ((offset % 1) !== 0 || offset < 0) throw new RangeError('offset is not uint') + if (offset + ext > length) throw new RangeError('Trying to access beyond buffer length') +} + +Buffer.prototype.readUIntLE = function readUIntLE (offset, byteLength, noAssert) { + offset = offset | 0 + byteLength = byteLength | 0 + if (!noAssert) checkOffset(offset, byteLength, this.length) + + var val = this[offset] + var mul = 1 + var i = 0 + while (++i < byteLength && (mul *= 0x100)) { + val += this[offset + i] * mul + } + + return val +} + +Buffer.prototype.readUIntBE = function readUIntBE (offset, byteLength, noAssert) { + offset = offset | 0 + byteLength = byteLength | 0 + if (!noAssert) { + checkOffset(offset, byteLength, this.length) + } + + var val = this[offset + --byteLength] + var mul = 1 + while (byteLength > 0 && (mul *= 0x100)) { + val += this[offset + --byteLength] * mul + } + + return val +} + +Buffer.prototype.readUInt8 = function readUInt8 (offset, noAssert) { + if (!noAssert) checkOffset(offset, 1, this.length) + return this[offset] +} + +Buffer.prototype.readUInt16LE = function readUInt16LE (offset, noAssert) { + if (!noAssert) checkOffset(offset, 2, this.length) + return this[offset] | (this[offset + 1] << 8) +} + +Buffer.prototype.readUInt16BE = function readUInt16BE (offset, noAssert) { + if (!noAssert) checkOffset(offset, 2, this.length) + return (this[offset] << 8) | this[offset + 1] +} + +Buffer.prototype.readUInt32LE = function readUInt32LE (offset, noAssert) { + if (!noAssert) checkOffset(offset, 4, this.length) + + return ((this[offset]) | + (this[offset + 1] << 8) | + (this[offset + 2] << 16)) + + (this[offset + 3] * 0x1000000) +} + +Buffer.prototype.readUInt32BE = function readUInt32BE (offset, noAssert) { + if (!noAssert) checkOffset(offset, 4, this.length) + + return (this[offset] * 0x1000000) + + ((this[offset + 1] << 16) | + (this[offset + 2] << 8) | + this[offset + 3]) +} + +Buffer.prototype.readIntLE = function readIntLE (offset, byteLength, noAssert) { + offset = offset | 0 + byteLength = byteLength | 0 + if (!noAssert) checkOffset(offset, byteLength, this.length) + + var val = this[offset] + var mul = 1 + var i = 0 + while (++i < byteLength && (mul *= 0x100)) { + val += this[offset + i] * mul + } + mul *= 0x80 + + if (val >= mul) val -= Math.pow(2, 8 * byteLength) + + return val +} + +Buffer.prototype.readIntBE = function readIntBE (offset, byteLength, noAssert) { + offset = offset | 0 + byteLength = byteLength | 0 + if (!noAssert) checkOffset(offset, byteLength, this.length) + + var i = byteLength + var mul = 1 + var val = this[offset + --i] + while (i > 0 && (mul *= 0x100)) { + val += this[offset + --i] * mul + } + mul *= 0x80 + + if (val >= mul) val -= Math.pow(2, 8 * byteLength) + + return val +} + +Buffer.prototype.readInt8 = function readInt8 (offset, noAssert) { + if (!noAssert) checkOffset(offset, 1, this.length) + if (!(this[offset] & 0x80)) return (this[offset]) + return ((0xff - this[offset] + 1) * -1) +} + +Buffer.prototype.readInt16LE = function readInt16LE (offset, noAssert) { + if (!noAssert) checkOffset(offset, 2, this.length) + var val = this[offset] | (this[offset + 1] << 8) + return (val & 0x8000) ? val | 0xFFFF0000 : val +} + +Buffer.prototype.readInt16BE = function readInt16BE (offset, noAssert) { + if (!noAssert) checkOffset(offset, 2, this.length) + var val = this[offset + 1] | (this[offset] << 8) + return (val & 0x8000) ? val | 0xFFFF0000 : val +} + +Buffer.prototype.readInt32LE = function readInt32LE (offset, noAssert) { + if (!noAssert) checkOffset(offset, 4, this.length) + + return (this[offset]) | + (this[offset + 1] << 8) | + (this[offset + 2] << 16) | + (this[offset + 3] << 24) +} + +Buffer.prototype.readInt32BE = function readInt32BE (offset, noAssert) { + if (!noAssert) checkOffset(offset, 4, this.length) + + return (this[offset] << 24) | + (this[offset + 1] << 16) | + (this[offset + 2] << 8) | + (this[offset + 3]) +} + +Buffer.prototype.readFloatLE = function readFloatLE (offset, noAssert) { + if (!noAssert) checkOffset(offset, 4, this.length) + return ieee754.read(this, offset, true, 23, 4) +} + +Buffer.prototype.readFloatBE = function readFloatBE (offset, noAssert) { + if (!noAssert) checkOffset(offset, 4, this.length) + return ieee754.read(this, offset, false, 23, 4) +} + +Buffer.prototype.readDoubleLE = function readDoubleLE (offset, noAssert) { + if (!noAssert) checkOffset(offset, 8, this.length) + return ieee754.read(this, offset, true, 52, 8) +} + +Buffer.prototype.readDoubleBE = function readDoubleBE (offset, noAssert) { + if (!noAssert) checkOffset(offset, 8, this.length) + return ieee754.read(this, offset, false, 52, 8) +} + +function checkInt (buf, value, offset, ext, max, min) { + if (!Buffer.isBuffer(buf)) throw new TypeError('"buffer" argument must be a Buffer instance') + if (value > max || value < min) throw new RangeError('"value" argument is out of bounds') + if (offset + ext > buf.length) throw new RangeError('Index out of range') +} + +Buffer.prototype.writeUIntLE = function writeUIntLE (value, offset, byteLength, noAssert) { + value = +value + offset = offset | 0 + byteLength = byteLength | 0 + if (!noAssert) { + var maxBytes = Math.pow(2, 8 * byteLength) - 1 + checkInt(this, value, offset, byteLength, maxBytes, 0) + } + + var mul = 1 + var i = 0 + this[offset] = value & 0xFF + while (++i < byteLength && (mul *= 0x100)) { + this[offset + i] = (value / mul) & 0xFF + } + + return offset + byteLength +} + +Buffer.prototype.writeUIntBE = function writeUIntBE (value, offset, byteLength, noAssert) { + value = +value + offset = offset | 0 + byteLength = byteLength | 0 + if (!noAssert) { + var maxBytes = Math.pow(2, 8 * byteLength) - 1 + checkInt(this, value, offset, byteLength, maxBytes, 0) + } + + var i = byteLength - 1 + var mul = 1 + this[offset + i] = value & 0xFF + while (--i >= 0 && (mul *= 0x100)) { + this[offset + i] = (value / mul) & 0xFF + } + + return offset + byteLength +} + +Buffer.prototype.writeUInt8 = function writeUInt8 (value, offset, noAssert) { + value = +value + offset = offset | 0 + if (!noAssert) checkInt(this, value, offset, 1, 0xff, 0) + if (!Buffer.TYPED_ARRAY_SUPPORT) value = Math.floor(value) + this[offset] = (value & 0xff) + return offset + 1 +} + +function objectWriteUInt16 (buf, value, offset, littleEndian) { + if (value < 0) value = 0xffff + value + 1 + for (var i = 0, j = Math.min(buf.length - offset, 2); i < j; i++) { + buf[offset + i] = (value & (0xff << (8 * (littleEndian ? i : 1 - i)))) >>> + (littleEndian ? i : 1 - i) * 8 + } +} + +Buffer.prototype.writeUInt16LE = function writeUInt16LE (value, offset, noAssert) { + value = +value + offset = offset | 0 + if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0) + if (Buffer.TYPED_ARRAY_SUPPORT) { + this[offset] = (value & 0xff) + this[offset + 1] = (value >>> 8) + } else { + objectWriteUInt16(this, value, offset, true) + } + return offset + 2 +} + +Buffer.prototype.writeUInt16BE = function writeUInt16BE (value, offset, noAssert) { + value = +value + offset = offset | 0 + if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0) + if (Buffer.TYPED_ARRAY_SUPPORT) { + this[offset] = (value >>> 8) + this[offset + 1] = (value & 0xff) + } else { + objectWriteUInt16(this, value, offset, false) + } + return offset + 2 +} + +function objectWriteUInt32 (buf, value, offset, littleEndian) { + if (value < 0) value = 0xffffffff + value + 1 + for (var i = 0, j = Math.min(buf.length - offset, 4); i < j; i++) { + buf[offset + i] = (value >>> (littleEndian ? i : 3 - i) * 8) & 0xff + } +} + +Buffer.prototype.writeUInt32LE = function writeUInt32LE (value, offset, noAssert) { + value = +value + offset = offset | 0 + if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0) + if (Buffer.TYPED_ARRAY_SUPPORT) { + this[offset + 3] = (value >>> 24) + this[offset + 2] = (value >>> 16) + this[offset + 1] = (value >>> 8) + this[offset] = (value & 0xff) + } else { + objectWriteUInt32(this, value, offset, true) + } + return offset + 4 +} + +Buffer.prototype.writeUInt32BE = function writeUInt32BE (value, offset, noAssert) { + value = +value + offset = offset | 0 + if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0) + if (Buffer.TYPED_ARRAY_SUPPORT) { + this[offset] = (value >>> 24) + this[offset + 1] = (value >>> 16) + this[offset + 2] = (value >>> 8) + this[offset + 3] = (value & 0xff) + } else { + objectWriteUInt32(this, value, offset, false) + } + return offset + 4 +} + +Buffer.prototype.writeIntLE = function writeIntLE (value, offset, byteLength, noAssert) { + value = +value + offset = offset | 0 + if (!noAssert) { + var limit = Math.pow(2, 8 * byteLength - 1) + + checkInt(this, value, offset, byteLength, limit - 1, -limit) + } + + var i = 0 + var mul = 1 + var sub = 0 + this[offset] = value & 0xFF + while (++i < byteLength && (mul *= 0x100)) { + if (value < 0 && sub === 0 && this[offset + i - 1] !== 0) { + sub = 1 + } + this[offset + i] = ((value / mul) >> 0) - sub & 0xFF + } + + return offset + byteLength +} + +Buffer.prototype.writeIntBE = function writeIntBE (value, offset, byteLength, noAssert) { + value = +value + offset = offset | 0 + if (!noAssert) { + var limit = Math.pow(2, 8 * byteLength - 1) + + checkInt(this, value, offset, byteLength, limit - 1, -limit) + } + + var i = byteLength - 1 + var mul = 1 + var sub = 0 + this[offset + i] = value & 0xFF + while (--i >= 0 && (mul *= 0x100)) { + if (value < 0 && sub === 0 && this[offset + i + 1] !== 0) { + sub = 1 + } + this[offset + i] = ((value / mul) >> 0) - sub & 0xFF + } + + return offset + byteLength +} + +Buffer.prototype.writeInt8 = function writeInt8 (value, offset, noAssert) { + value = +value + offset = offset | 0 + if (!noAssert) checkInt(this, value, offset, 1, 0x7f, -0x80) + if (!Buffer.TYPED_ARRAY_SUPPORT) value = Math.floor(value) + if (value < 0) value = 0xff + value + 1 + this[offset] = (value & 0xff) + return offset + 1 +} + +Buffer.prototype.writeInt16LE = function writeInt16LE (value, offset, noAssert) { + value = +value + offset = offset | 0 + if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000) + if (Buffer.TYPED_ARRAY_SUPPORT) { + this[offset] = (value & 0xff) + this[offset + 1] = (value >>> 8) + } else { + objectWriteUInt16(this, value, offset, true) + } + return offset + 2 +} + +Buffer.prototype.writeInt16BE = function writeInt16BE (value, offset, noAssert) { + value = +value + offset = offset | 0 + if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000) + if (Buffer.TYPED_ARRAY_SUPPORT) { + this[offset] = (value >>> 8) + this[offset + 1] = (value & 0xff) + } else { + objectWriteUInt16(this, value, offset, false) + } + return offset + 2 +} + +Buffer.prototype.writeInt32LE = function writeInt32LE (value, offset, noAssert) { + value = +value + offset = offset | 0 + if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000) + if (Buffer.TYPED_ARRAY_SUPPORT) { + this[offset] = (value & 0xff) + this[offset + 1] = (value >>> 8) + this[offset + 2] = (value >>> 16) + this[offset + 3] = (value >>> 24) + } else { + objectWriteUInt32(this, value, offset, true) + } + return offset + 4 +} + +Buffer.prototype.writeInt32BE = function writeInt32BE (value, offset, noAssert) { + value = +value + offset = offset | 0 + if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000) + if (value < 0) value = 0xffffffff + value + 1 + if (Buffer.TYPED_ARRAY_SUPPORT) { + this[offset] = (value >>> 24) + this[offset + 1] = (value >>> 16) + this[offset + 2] = (value >>> 8) + this[offset + 3] = (value & 0xff) + } else { + objectWriteUInt32(this, value, offset, false) + } + return offset + 4 +} + +function checkIEEE754 (buf, value, offset, ext, max, min) { + if (offset + ext > buf.length) throw new RangeError('Index out of range') + if (offset < 0) throw new RangeError('Index out of range') +} + +function writeFloat (buf, value, offset, littleEndian, noAssert) { + if (!noAssert) { + checkIEEE754(buf, value, offset, 4, 3.4028234663852886e+38, -3.4028234663852886e+38) + } + ieee754.write(buf, value, offset, littleEndian, 23, 4) + return offset + 4 +} + +Buffer.prototype.writeFloatLE = function writeFloatLE (value, offset, noAssert) { + return writeFloat(this, value, offset, true, noAssert) +} + +Buffer.prototype.writeFloatBE = function writeFloatBE (value, offset, noAssert) { + return writeFloat(this, value, offset, false, noAssert) +} + +function writeDouble (buf, value, offset, littleEndian, noAssert) { + if (!noAssert) { + checkIEEE754(buf, value, offset, 8, 1.7976931348623157E+308, -1.7976931348623157E+308) + } + ieee754.write(buf, value, offset, littleEndian, 52, 8) + return offset + 8 +} + +Buffer.prototype.writeDoubleLE = function writeDoubleLE (value, offset, noAssert) { + return writeDouble(this, value, offset, true, noAssert) +} + +Buffer.prototype.writeDoubleBE = function writeDoubleBE (value, offset, noAssert) { + return writeDouble(this, value, offset, false, noAssert) +} + +// copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length) +Buffer.prototype.copy = function copy (target, targetStart, start, end) { + if (!start) start = 0 + if (!end && end !== 0) end = this.length + if (targetStart >= target.length) targetStart = target.length + if (!targetStart) targetStart = 0 + if (end > 0 && end < start) end = start + + // Copy 0 bytes; we're done + if (end === start) return 0 + if (target.length === 0 || this.length === 0) return 0 + + // Fatal error conditions + if (targetStart < 0) { + throw new RangeError('targetStart out of bounds') + } + if (start < 0 || start >= this.length) throw new RangeError('sourceStart out of bounds') + if (end < 0) throw new RangeError('sourceEnd out of bounds') + + // Are we oob? + if (end > this.length) end = this.length + if (target.length - targetStart < end - start) { + end = target.length - targetStart + start + } + + var len = end - start + var i + + if (this === target && start < targetStart && targetStart < end) { + // descending copy from end + for (i = len - 1; i >= 0; i--) { + target[i + targetStart] = this[i + start] + } + } else if (len < 1000 || !Buffer.TYPED_ARRAY_SUPPORT) { + // ascending copy from start + for (i = 0; i < len; i++) { + target[i + targetStart] = this[i + start] + } + } else { + Uint8Array.prototype.set.call( + target, + this.subarray(start, start + len), + targetStart + ) + } + + return len +} + +// Usage: +// buffer.fill(number[, offset[, end]]) +// buffer.fill(buffer[, offset[, end]]) +// buffer.fill(string[, offset[, end]][, encoding]) +Buffer.prototype.fill = function fill (val, start, end, encoding) { + // Handle string cases: + if (typeof val === 'string') { + if (typeof start === 'string') { + encoding = start + start = 0 + end = this.length + } else if (typeof end === 'string') { + encoding = end + end = this.length + } + if (val.length === 1) { + var code = val.charCodeAt(0) + if (code < 256) { + val = code + } + } + if (encoding !== undefined && typeof encoding !== 'string') { + throw new TypeError('encoding must be a string') + } + if (typeof encoding === 'string' && !Buffer.isEncoding(encoding)) { + throw new TypeError('Unknown encoding: ' + encoding) + } + } else if (typeof val === 'number') { + val = val & 255 + } + + // Invalid ranges are not set to a default, so can range check early. + if (start < 0 || this.length < start || this.length < end) { + throw new RangeError('Out of range index') + } + + if (end <= start) { + return this + } + + start = start >>> 0 + end = end === undefined ? this.length : end >>> 0 + + if (!val) val = 0 + + var i + if (typeof val === 'number') { + for (i = start; i < end; i++) { + this[i] = val + } + } else { + var bytes = Buffer.isBuffer(val) + ? val + : utf8ToBytes(new Buffer(val, encoding).toString()) + var len = bytes.length + for (i = 0; i < end - start; i++) { + this[i + start] = bytes[i % len] + } + } + + return this +} + +// HELPER FUNCTIONS +// ================ + +var INVALID_BASE64_RE = /[^+\/0-9A-Za-z-_]/g + +function base64clean (str) { + // Node strips out invalid characters like \n and \t from the string, base64-js does not + str = stringtrim(str).replace(INVALID_BASE64_RE, '') + // Node converts strings with length < 2 to '' + if (str.length < 2) return '' + // Node allows for non-padded base64 strings (missing trailing ===), base64-js does not + while (str.length % 4 !== 0) { + str = str + '=' + } + return str +} + +function stringtrim (str) { + if (str.trim) return str.trim() + return str.replace(/^\s+|\s+$/g, '') +} + +function toHex (n) { + if (n < 16) return '0' + n.toString(16) + return n.toString(16) +} + +function utf8ToBytes (string, units) { + units = units || Infinity + var codePoint + var length = string.length + var leadSurrogate = null + var bytes = [] + + for (var i = 0; i < length; i++) { + codePoint = string.charCodeAt(i) + + // is surrogate component + if (codePoint > 0xD7FF && codePoint < 0xE000) { + // last char was a lead + if (!leadSurrogate) { + // no lead yet + if (codePoint > 0xDBFF) { + // unexpected trail + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD) + continue + } else if (i + 1 === length) { + // unpaired lead + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD) + continue + } + + // valid lead + leadSurrogate = codePoint + + continue + } + + // 2 leads in a row + if (codePoint < 0xDC00) { + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD) + leadSurrogate = codePoint + continue + } + + // valid surrogate pair + codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000 + } else if (leadSurrogate) { + // valid bmp char, but last char was a lead + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD) + } + + leadSurrogate = null + + // encode utf8 + if (codePoint < 0x80) { + if ((units -= 1) < 0) break + bytes.push(codePoint) + } else if (codePoint < 0x800) { + if ((units -= 2) < 0) break + bytes.push( + codePoint >> 0x6 | 0xC0, + codePoint & 0x3F | 0x80 + ) + } else if (codePoint < 0x10000) { + if ((units -= 3) < 0) break + bytes.push( + codePoint >> 0xC | 0xE0, + codePoint >> 0x6 & 0x3F | 0x80, + codePoint & 0x3F | 0x80 + ) + } else if (codePoint < 0x110000) { + if ((units -= 4) < 0) break + bytes.push( + codePoint >> 0x12 | 0xF0, + codePoint >> 0xC & 0x3F | 0x80, + codePoint >> 0x6 & 0x3F | 0x80, + codePoint & 0x3F | 0x80 + ) + } else { + throw new Error('Invalid code point') + } + } + + return bytes +} + +function asciiToBytes (str) { + var byteArray = [] + for (var i = 0; i < str.length; i++) { + // Node's code seems to be doing this and not & 0x7F.. + byteArray.push(str.charCodeAt(i) & 0xFF) + } + return byteArray +} + +function utf16leToBytes (str, units) { + var c, hi, lo + var byteArray = [] + for (var i = 0; i < str.length; i++) { + if ((units -= 2) < 0) break + + c = str.charCodeAt(i) + hi = c >> 8 + lo = c % 256 + byteArray.push(lo) + byteArray.push(hi) + } + + return byteArray +} + +function base64ToBytes (str) { + return base64.toByteArray(base64clean(str)) +} + +function blitBuffer (src, dst, offset, length) { + for (var i = 0; i < length; i++) { + if ((i + offset >= dst.length) || (i >= src.length)) break + dst[i + offset] = src[i] + } + return i +} + +function isnan (val) { + return val !== val // eslint-disable-line no-self-compare +} + +}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) +},{"base64-js":40,"ieee754":52,"isarray":46}],46:[function(require,module,exports){ +var toString = {}.toString; + +module.exports = Array.isArray || function (arr) { + return toString.call(arr) == '[object Array]'; +}; + +},{}],47:[function(require,module,exports){ +(function (Buffer){ +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + +// NOTE: These type checking functions intentionally don't use `instanceof` +// because it is fragile and can be easily faked with `Object.create()`. + +function isArray(arg) { + if (Array.isArray) { + return Array.isArray(arg); + } + return objectToString(arg) === '[object Array]'; +} +exports.isArray = isArray; + +function isBoolean(arg) { + return typeof arg === 'boolean'; +} +exports.isBoolean = isBoolean; + +function isNull(arg) { + return arg === null; +} +exports.isNull = isNull; + +function isNullOrUndefined(arg) { + return arg == null; +} +exports.isNullOrUndefined = isNullOrUndefined; + +function isNumber(arg) { + return typeof arg === 'number'; +} +exports.isNumber = isNumber; + +function isString(arg) { + return typeof arg === 'string'; +} +exports.isString = isString; + +function isSymbol(arg) { + return typeof arg === 'symbol'; +} +exports.isSymbol = isSymbol; + +function isUndefined(arg) { + return arg === void 0; +} +exports.isUndefined = isUndefined; + +function isRegExp(re) { + return objectToString(re) === '[object RegExp]'; +} +exports.isRegExp = isRegExp; + +function isObject(arg) { + return typeof arg === 'object' && arg !== null; +} +exports.isObject = isObject; + +function isDate(d) { + return objectToString(d) === '[object Date]'; +} +exports.isDate = isDate; + +function isError(e) { + return (objectToString(e) === '[object Error]' || e instanceof Error); +} +exports.isError = isError; + +function isFunction(arg) { + return typeof arg === 'function'; +} +exports.isFunction = isFunction; + +function isPrimitive(arg) { + return arg === null || + typeof arg === 'boolean' || + typeof arg === 'number' || + typeof arg === 'string' || + typeof arg === 'symbol' || // ES6 symbol + typeof arg === 'undefined'; +} +exports.isPrimitive = isPrimitive; + +exports.isBuffer = Buffer.isBuffer; + +function objectToString(o) { + return Object.prototype.toString.call(o); +} + +}).call(this,{"isBuffer":require("../../is-buffer/index.js")}) +},{"../../is-buffer/index.js":54}],48:[function(require,module,exports){ +/* See LICENSE file for terms of use */ + +/* + * Text diff implementation. + * + * This library supports the following APIS: + * JsDiff.diffChars: Character by character diff + * JsDiff.diffWords: Word (as defined by \b regex) diff which ignores whitespace + * JsDiff.diffLines: Line based diff + * + * JsDiff.diffCss: Diff targeted at CSS content + * + * These methods are based on the implementation proposed in + * "An O(ND) Difference Algorithm and its Variations" (Myers, 1986). + * http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.4.6927 + */ +(function(global, undefined) { + var objectPrototypeToString = Object.prototype.toString; + + /*istanbul ignore next*/ + function map(arr, mapper, that) { + if (Array.prototype.map) { + return Array.prototype.map.call(arr, mapper, that); + } + + var other = new Array(arr.length); + + for (var i = 0, n = arr.length; i < n; i++) { + other[i] = mapper.call(that, arr[i], i, arr); + } + return other; + } + function clonePath(path) { + return { newPos: path.newPos, components: path.components.slice(0) }; + } + function removeEmpty(array) { + var ret = []; + for (var i = 0; i < array.length; i++) { + if (array[i]) { + ret.push(array[i]); + } + } + return ret; + } + function escapeHTML(s) { + var n = s; + n = n.replace(/&/g, '&'); + n = n.replace(//g, '>'); + n = n.replace(/"/g, '"'); + + return n; + } + + // This function handles the presence of circular references by bailing out when encountering an + // object that is already on the "stack" of items being processed. + function canonicalize(obj, stack, replacementStack) { + stack = stack || []; + replacementStack = replacementStack || []; + + var i; + + for (i = 0; i < stack.length; i += 1) { + if (stack[i] === obj) { + return replacementStack[i]; + } + } + + var canonicalizedObj; + + if ('[object Array]' === objectPrototypeToString.call(obj)) { + stack.push(obj); + canonicalizedObj = new Array(obj.length); + replacementStack.push(canonicalizedObj); + for (i = 0; i < obj.length; i += 1) { + canonicalizedObj[i] = canonicalize(obj[i], stack, replacementStack); + } + stack.pop(); + replacementStack.pop(); + } else if (typeof obj === 'object' && obj !== null) { + stack.push(obj); + canonicalizedObj = {}; + replacementStack.push(canonicalizedObj); + var sortedKeys = [], + key; + for (key in obj) { + sortedKeys.push(key); + } + sortedKeys.sort(); + for (i = 0; i < sortedKeys.length; i += 1) { + key = sortedKeys[i]; + canonicalizedObj[key] = canonicalize(obj[key], stack, replacementStack); + } + stack.pop(); + replacementStack.pop(); + } else { + canonicalizedObj = obj; + } + return canonicalizedObj; + } + + function buildValues(components, newString, oldString, useLongestToken) { + var componentPos = 0, + componentLen = components.length, + newPos = 0, + oldPos = 0; + + for (; componentPos < componentLen; componentPos++) { + var component = components[componentPos]; + if (!component.removed) { + if (!component.added && useLongestToken) { + var value = newString.slice(newPos, newPos + component.count); + value = map(value, function(value, i) { + var oldValue = oldString[oldPos + i]; + return oldValue.length > value.length ? oldValue : value; + }); + + component.value = value.join(''); + } else { + component.value = newString.slice(newPos, newPos + component.count).join(''); + } + newPos += component.count; + + // Common case + if (!component.added) { + oldPos += component.count; + } + } else { + component.value = oldString.slice(oldPos, oldPos + component.count).join(''); + oldPos += component.count; + + // Reverse add and remove so removes are output first to match common convention + // The diffing algorithm is tied to add then remove output and this is the simplest + // route to get the desired output with minimal overhead. + if (componentPos && components[componentPos - 1].added) { + var tmp = components[componentPos - 1]; + components[componentPos - 1] = components[componentPos]; + components[componentPos] = tmp; + } + } + } + + return components; + } + + function Diff(ignoreWhitespace) { + this.ignoreWhitespace = ignoreWhitespace; + } + Diff.prototype = { + diff: function(oldString, newString, callback) { + var self = this; + + function done(value) { + if (callback) { + setTimeout(function() { callback(undefined, value); }, 0); + return true; + } else { + return value; + } + } + + // Handle the identity case (this is due to unrolling editLength == 0 + if (newString === oldString) { + return done([{ value: newString }]); + } + if (!newString) { + return done([{ value: oldString, removed: true }]); + } + if (!oldString) { + return done([{ value: newString, added: true }]); + } + + newString = this.tokenize(newString); + oldString = this.tokenize(oldString); + + var newLen = newString.length, oldLen = oldString.length; + var editLength = 1; + var maxEditLength = newLen + oldLen; + var bestPath = [{ newPos: -1, components: [] }]; + + // Seed editLength = 0, i.e. the content starts with the same values + var oldPos = this.extractCommon(bestPath[0], newString, oldString, 0); + if (bestPath[0].newPos + 1 >= newLen && oldPos + 1 >= oldLen) { + // Identity per the equality and tokenizer + return done([{value: newString.join('')}]); + } + + // Main worker method. checks all permutations of a given edit length for acceptance. + function execEditLength() { + for (var diagonalPath = -1 * editLength; diagonalPath <= editLength; diagonalPath += 2) { + var basePath; + var addPath = bestPath[diagonalPath - 1], + removePath = bestPath[diagonalPath + 1], + oldPos = (removePath ? removePath.newPos : 0) - diagonalPath; + if (addPath) { + // No one else is going to attempt to use this value, clear it + bestPath[diagonalPath - 1] = undefined; + } + + var canAdd = addPath && addPath.newPos + 1 < newLen, + canRemove = removePath && 0 <= oldPos && oldPos < oldLen; + if (!canAdd && !canRemove) { + // If this path is a terminal then prune + bestPath[diagonalPath] = undefined; + continue; + } + + // Select the diagonal that we want to branch from. We select the prior + // path whose position in the new string is the farthest from the origin + // and does not pass the bounds of the diff graph + if (!canAdd || (canRemove && addPath.newPos < removePath.newPos)) { + basePath = clonePath(removePath); + self.pushComponent(basePath.components, undefined, true); + } else { + basePath = addPath; // No need to clone, we've pulled it from the list + basePath.newPos++; + self.pushComponent(basePath.components, true, undefined); + } + + oldPos = self.extractCommon(basePath, newString, oldString, diagonalPath); + + // If we have hit the end of both strings, then we are done + if (basePath.newPos + 1 >= newLen && oldPos + 1 >= oldLen) { + return done(buildValues(basePath.components, newString, oldString, self.useLongestToken)); + } else { + // Otherwise track this path as a potential candidate and continue. + bestPath[diagonalPath] = basePath; + } + } + + editLength++; + } + + // Performs the length of edit iteration. Is a bit fugly as this has to support the + // sync and async mode which is never fun. Loops over execEditLength until a value + // is produced. + if (callback) { + (function exec() { + setTimeout(function() { + // This should not happen, but we want to be safe. + /*istanbul ignore next */ + if (editLength > maxEditLength) { + return callback(); + } + + if (!execEditLength()) { + exec(); + } + }, 0); + }()); + } else { + while (editLength <= maxEditLength) { + var ret = execEditLength(); + if (ret) { + return ret; + } + } + } + }, + + pushComponent: function(components, added, removed) { + var last = components[components.length - 1]; + if (last && last.added === added && last.removed === removed) { + // We need to clone here as the component clone operation is just + // as shallow array clone + components[components.length - 1] = {count: last.count + 1, added: added, removed: removed }; + } else { + components.push({count: 1, added: added, removed: removed }); + } + }, + extractCommon: function(basePath, newString, oldString, diagonalPath) { + var newLen = newString.length, + oldLen = oldString.length, + newPos = basePath.newPos, + oldPos = newPos - diagonalPath, + + commonCount = 0; + while (newPos + 1 < newLen && oldPos + 1 < oldLen && this.equals(newString[newPos + 1], oldString[oldPos + 1])) { + newPos++; + oldPos++; + commonCount++; + } + + if (commonCount) { + basePath.components.push({count: commonCount}); + } + + basePath.newPos = newPos; + return oldPos; + }, + + equals: function(left, right) { + var reWhitespace = /\S/; + return left === right || (this.ignoreWhitespace && !reWhitespace.test(left) && !reWhitespace.test(right)); + }, + tokenize: function(value) { + return value.split(''); + } + }; + + var CharDiff = new Diff(); + + var WordDiff = new Diff(true); + var WordWithSpaceDiff = new Diff(); + WordDiff.tokenize = WordWithSpaceDiff.tokenize = function(value) { + return removeEmpty(value.split(/(\s+|\b)/)); + }; + + var CssDiff = new Diff(true); + CssDiff.tokenize = function(value) { + return removeEmpty(value.split(/([{}:;,]|\s+)/)); + }; + + var LineDiff = new Diff(); + + var TrimmedLineDiff = new Diff(); + TrimmedLineDiff.ignoreTrim = true; + + LineDiff.tokenize = TrimmedLineDiff.tokenize = function(value) { + var retLines = [], + lines = value.split(/^/m); + for (var i = 0; i < lines.length; i++) { + var line = lines[i], + lastLine = lines[i - 1], + lastLineLastChar = lastLine && lastLine[lastLine.length - 1]; + + // Merge lines that may contain windows new lines + if (line === '\n' && lastLineLastChar === '\r') { + retLines[retLines.length - 1] = retLines[retLines.length - 1].slice(0, -1) + '\r\n'; + } else { + if (this.ignoreTrim) { + line = line.trim(); + // add a newline unless this is the last line. + if (i < lines.length - 1) { + line += '\n'; + } + } + retLines.push(line); + } + } + + return retLines; + }; + + var PatchDiff = new Diff(); + PatchDiff.tokenize = function(value) { + var ret = [], + linesAndNewlines = value.split(/(\n|\r\n)/); + + // Ignore the final empty token that occurs if the string ends with a new line + if (!linesAndNewlines[linesAndNewlines.length - 1]) { + linesAndNewlines.pop(); + } + + // Merge the content and line separators into single tokens + for (var i = 0; i < linesAndNewlines.length; i++) { + var line = linesAndNewlines[i]; + + if (i % 2) { + ret[ret.length - 1] += line; + } else { + ret.push(line); + } + } + return ret; + }; + + var SentenceDiff = new Diff(); + SentenceDiff.tokenize = function(value) { + return removeEmpty(value.split(/(\S.+?[.!?])(?=\s+|$)/)); + }; + + var JsonDiff = new Diff(); + // Discriminate between two lines of pretty-printed, serialized JSON where one of them has a + // dangling comma and the other doesn't. Turns out including the dangling comma yields the nicest output: + JsonDiff.useLongestToken = true; + JsonDiff.tokenize = LineDiff.tokenize; + JsonDiff.equals = function(left, right) { + return LineDiff.equals(left.replace(/,([\r\n])/g, '$1'), right.replace(/,([\r\n])/g, '$1')); + }; + + var JsDiff = { + Diff: Diff, + + diffChars: function(oldStr, newStr, callback) { return CharDiff.diff(oldStr, newStr, callback); }, + diffWords: function(oldStr, newStr, callback) { return WordDiff.diff(oldStr, newStr, callback); }, + diffWordsWithSpace: function(oldStr, newStr, callback) { return WordWithSpaceDiff.diff(oldStr, newStr, callback); }, + diffLines: function(oldStr, newStr, callback) { return LineDiff.diff(oldStr, newStr, callback); }, + diffTrimmedLines: function(oldStr, newStr, callback) { return TrimmedLineDiff.diff(oldStr, newStr, callback); }, + + diffSentences: function(oldStr, newStr, callback) { return SentenceDiff.diff(oldStr, newStr, callback); }, + + diffCss: function(oldStr, newStr, callback) { return CssDiff.diff(oldStr, newStr, callback); }, + diffJson: function(oldObj, newObj, callback) { + return JsonDiff.diff( + typeof oldObj === 'string' ? oldObj : JSON.stringify(canonicalize(oldObj), undefined, ' '), + typeof newObj === 'string' ? newObj : JSON.stringify(canonicalize(newObj), undefined, ' '), + callback + ); + }, + + createTwoFilesPatch: function(oldFileName, newFileName, oldStr, newStr, oldHeader, newHeader) { + var ret = []; + + if (oldFileName == newFileName) { + ret.push('Index: ' + oldFileName); + } + ret.push('==================================================================='); + ret.push('--- ' + oldFileName + (typeof oldHeader === 'undefined' ? '' : '\t' + oldHeader)); + ret.push('+++ ' + newFileName + (typeof newHeader === 'undefined' ? '' : '\t' + newHeader)); + + var diff = PatchDiff.diff(oldStr, newStr); + diff.push({value: '', lines: []}); // Append an empty value to make cleanup easier + + // Formats a given set of lines for printing as context lines in a patch + function contextLines(lines) { + return map(lines, function(entry) { return ' ' + entry; }); + } + + // Outputs the no newline at end of file warning if needed + function eofNL(curRange, i, current) { + var last = diff[diff.length - 2], + isLast = i === diff.length - 2, + isLastOfType = i === diff.length - 3 && current.added !== last.added; + + // Figure out if this is the last line for the given file and missing NL + if (!(/\n$/.test(current.value)) && (isLast || isLastOfType)) { + curRange.push('\\ No newline at end of file'); + } + } + + var oldRangeStart = 0, newRangeStart = 0, curRange = [], + oldLine = 1, newLine = 1; + for (var i = 0; i < diff.length; i++) { + var current = diff[i], + lines = current.lines || current.value.replace(/\n$/, '').split('\n'); + current.lines = lines; + + if (current.added || current.removed) { + // If we have previous context, start with that + if (!oldRangeStart) { + var prev = diff[i - 1]; + oldRangeStart = oldLine; + newRangeStart = newLine; + + if (prev) { + curRange = contextLines(prev.lines.slice(-4)); + oldRangeStart -= curRange.length; + newRangeStart -= curRange.length; + } + } + + // Output our changes + curRange.push.apply(curRange, map(lines, function(entry) { + return (current.added ? '+' : '-') + entry; + })); + eofNL(curRange, i, current); + + // Track the updated file position + if (current.added) { + newLine += lines.length; + } else { + oldLine += lines.length; + } + } else { + // Identical context lines. Track line changes + if (oldRangeStart) { + // Close out any changes that have been output (or join overlapping) + if (lines.length <= 8 && i < diff.length - 2) { + // Overlapping + curRange.push.apply(curRange, contextLines(lines)); + } else { + // end the range and output + var contextSize = Math.min(lines.length, 4); + ret.push( + '@@ -' + oldRangeStart + ',' + (oldLine - oldRangeStart + contextSize) + + ' +' + newRangeStart + ',' + (newLine - newRangeStart + contextSize) + + ' @@'); + ret.push.apply(ret, curRange); + ret.push.apply(ret, contextLines(lines.slice(0, contextSize))); + if (lines.length <= 4) { + eofNL(ret, i, current); + } + + oldRangeStart = 0; + newRangeStart = 0; + curRange = []; + } + } + oldLine += lines.length; + newLine += lines.length; + } + } + + return ret.join('\n') + '\n'; + }, + + createPatch: function(fileName, oldStr, newStr, oldHeader, newHeader) { + return JsDiff.createTwoFilesPatch(fileName, fileName, oldStr, newStr, oldHeader, newHeader); + }, + + applyPatch: function(oldStr, uniDiff) { + var diffstr = uniDiff.split('\n'), + hunks = [], + i = 0, + remEOFNL = false, + addEOFNL = false; + + // Skip to the first change hunk + while (i < diffstr.length && !(/^@@/.test(diffstr[i]))) { + i++; + } + + // Parse the unified diff + for (; i < diffstr.length; i++) { + if (diffstr[i][0] === '@') { + var chnukHeader = diffstr[i].split(/@@ -(\d+),(\d+) \+(\d+),(\d+) @@/); + hunks.unshift({ + start: chnukHeader[3], + oldlength: +chnukHeader[2], + removed: [], + newlength: chnukHeader[4], + added: [] + }); + } else if (diffstr[i][0] === '+') { + hunks[0].added.push(diffstr[i].substr(1)); + } else if (diffstr[i][0] === '-') { + hunks[0].removed.push(diffstr[i].substr(1)); + } else if (diffstr[i][0] === ' ') { + hunks[0].added.push(diffstr[i].substr(1)); + hunks[0].removed.push(diffstr[i].substr(1)); + } else if (diffstr[i][0] === '\\') { + if (diffstr[i - 1][0] === '+') { + remEOFNL = true; + } else if (diffstr[i - 1][0] === '-') { + addEOFNL = true; + } + } + } + + // Apply the diff to the input + var lines = oldStr.split('\n'); + for (i = hunks.length - 1; i >= 0; i--) { + var hunk = hunks[i]; + // Sanity check the input string. Bail if we don't match. + for (var j = 0; j < hunk.oldlength; j++) { + if (lines[hunk.start - 1 + j] !== hunk.removed[j]) { + return false; + } + } + Array.prototype.splice.apply(lines, [hunk.start - 1, hunk.oldlength].concat(hunk.added)); + } + + // Handle EOFNL insertion/removal + if (remEOFNL) { + while (!lines[lines.length - 1]) { + lines.pop(); + } + } else if (addEOFNL) { + lines.push(''); + } + return lines.join('\n'); + }, + + convertChangesToXML: function(changes) { + var ret = []; + for (var i = 0; i < changes.length; i++) { + var change = changes[i]; + if (change.added) { + ret.push(''); + } else if (change.removed) { + ret.push(''); + } + + ret.push(escapeHTML(change.value)); + + if (change.added) { + ret.push(''); + } else if (change.removed) { + ret.push(''); + } + } + return ret.join(''); + }, + + // See: http://code.google.com/p/google-diff-match-patch/wiki/API + convertChangesToDMP: function(changes) { + var ret = [], + change, + operation; + for (var i = 0; i < changes.length; i++) { + change = changes[i]; + if (change.added) { + operation = 1; + } else if (change.removed) { + operation = -1; + } else { + operation = 0; + } + + ret.push([operation, change.value]); + } + return ret; + }, + + canonicalize: canonicalize + }; + + /*istanbul ignore next */ + /*global module */ + if (typeof module !== 'undefined' && module.exports) { + module.exports = JsDiff; + } else if (typeof define === 'function' && define.amd) { + /*global define */ + define([], function() { return JsDiff; }); + } else if (typeof global.JsDiff === 'undefined') { + global.JsDiff = JsDiff; + } +}(this)); + +},{}],49:[function(require,module,exports){ +'use strict'; + +var matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g; + +module.exports = function (str) { + if (typeof str !== 'string') { + throw new TypeError('Expected a string'); + } + + return str.replace(matchOperatorsRe, '\\$&'); +}; + +},{}],50:[function(require,module,exports){ +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + +function EventEmitter() { + this._events = this._events || {}; + this._maxListeners = this._maxListeners || undefined; +} +module.exports = EventEmitter; + +// Backwards-compat with node 0.10.x +EventEmitter.EventEmitter = EventEmitter; + +EventEmitter.prototype._events = undefined; +EventEmitter.prototype._maxListeners = undefined; + +// By default EventEmitters will print a warning if more than 10 listeners are +// added to it. This is a useful default which helps finding memory leaks. +EventEmitter.defaultMaxListeners = 10; + +// Obviously not all Emitters should be limited to 10. This function allows +// that to be increased. Set to zero for unlimited. +EventEmitter.prototype.setMaxListeners = function(n) { + if (!isNumber(n) || n < 0 || isNaN(n)) + throw TypeError('n must be a positive number'); + this._maxListeners = n; + return this; +}; + +EventEmitter.prototype.emit = function(type) { + var er, handler, len, args, i, listeners; + + if (!this._events) + this._events = {}; + + // If there is no 'error' event listener then throw. + if (type === 'error') { + if (!this._events.error || + (isObject(this._events.error) && !this._events.error.length)) { + er = arguments[1]; + if (er instanceof Error) { + throw er; // Unhandled 'error' event + } + throw TypeError('Uncaught, unspecified "error" event.'); + } + } + + handler = this._events[type]; + + if (isUndefined(handler)) + return false; + + if (isFunction(handler)) { + switch (arguments.length) { + // fast cases + case 1: + handler.call(this); + break; + case 2: + handler.call(this, arguments[1]); + break; + case 3: + handler.call(this, arguments[1], arguments[2]); + break; + // slower + default: + args = Array.prototype.slice.call(arguments, 1); + handler.apply(this, args); + } + } else if (isObject(handler)) { + args = Array.prototype.slice.call(arguments, 1); + listeners = handler.slice(); + len = listeners.length; + for (i = 0; i < len; i++) + listeners[i].apply(this, args); + } + + return true; +}; + +EventEmitter.prototype.addListener = function(type, listener) { + var m; + + if (!isFunction(listener)) + throw TypeError('listener must be a function'); + + if (!this._events) + this._events = {}; + + // To avoid recursion in the case that type === "newListener"! Before + // adding it to the listeners, first emit "newListener". + if (this._events.newListener) + this.emit('newListener', type, + isFunction(listener.listener) ? + listener.listener : listener); + + if (!this._events[type]) + // Optimize the case of one listener. Don't need the extra array object. + this._events[type] = listener; + else if (isObject(this._events[type])) + // If we've already got an array, just append. + this._events[type].push(listener); + else + // Adding the second element, need to change to array. + this._events[type] = [this._events[type], listener]; + + // Check for listener leak + if (isObject(this._events[type]) && !this._events[type].warned) { + if (!isUndefined(this._maxListeners)) { + m = this._maxListeners; + } else { + m = EventEmitter.defaultMaxListeners; + } + + if (m && m > 0 && this._events[type].length > m) { + this._events[type].warned = true; + console.error('(node) warning: possible EventEmitter memory ' + + 'leak detected. %d listeners added. ' + + 'Use emitter.setMaxListeners() to increase limit.', + this._events[type].length); + if (typeof console.trace === 'function') { + // not supported in IE 10 + console.trace(); + } + } + } + + return this; +}; + +EventEmitter.prototype.on = EventEmitter.prototype.addListener; + +EventEmitter.prototype.once = function(type, listener) { + if (!isFunction(listener)) + throw TypeError('listener must be a function'); + + var fired = false; + + function g() { + this.removeListener(type, g); + + if (!fired) { + fired = true; + listener.apply(this, arguments); + } + } + + g.listener = listener; + this.on(type, g); + + return this; +}; + +// emits a 'removeListener' event iff the listener was removed +EventEmitter.prototype.removeListener = function(type, listener) { + var list, position, length, i; + + if (!isFunction(listener)) + throw TypeError('listener must be a function'); + + if (!this._events || !this._events[type]) + return this; + + list = this._events[type]; + length = list.length; + position = -1; + + if (list === listener || + (isFunction(list.listener) && list.listener === listener)) { + delete this._events[type]; + if (this._events.removeListener) + this.emit('removeListener', type, listener); + + } else if (isObject(list)) { + for (i = length; i-- > 0;) { + if (list[i] === listener || + (list[i].listener && list[i].listener === listener)) { + position = i; + break; + } + } + + if (position < 0) + return this; + + if (list.length === 1) { + list.length = 0; + delete this._events[type]; + } else { + list.splice(position, 1); + } + + if (this._events.removeListener) + this.emit('removeListener', type, listener); + } + + return this; +}; + +EventEmitter.prototype.removeAllListeners = function(type) { + var key, listeners; + + if (!this._events) + return this; + + // not listening for removeListener, no need to emit + if (!this._events.removeListener) { + if (arguments.length === 0) + this._events = {}; + else if (this._events[type]) + delete this._events[type]; + return this; + } + + // emit removeListener for all listeners on all events + if (arguments.length === 0) { + for (key in this._events) { + if (key === 'removeListener') continue; + this.removeAllListeners(key); + } + this.removeAllListeners('removeListener'); + this._events = {}; + return this; + } + + listeners = this._events[type]; + + if (isFunction(listeners)) { + this.removeListener(type, listeners); + } else if (listeners) { + // LIFO order + while (listeners.length) + this.removeListener(type, listeners[listeners.length - 1]); + } + delete this._events[type]; + + return this; +}; + +EventEmitter.prototype.listeners = function(type) { + var ret; + if (!this._events || !this._events[type]) + ret = []; + else if (isFunction(this._events[type])) + ret = [this._events[type]]; + else + ret = this._events[type].slice(); + return ret; +}; + +EventEmitter.prototype.listenerCount = function(type) { + if (this._events) { + var evlistener = this._events[type]; + + if (isFunction(evlistener)) + return 1; + else if (evlistener) + return evlistener.length; + } + return 0; +}; + +EventEmitter.listenerCount = function(emitter, type) { + return emitter.listenerCount(type); +}; + +function isFunction(arg) { + return typeof arg === 'function'; +} + +function isNumber(arg) { + return typeof arg === 'number'; +} + +function isObject(arg) { + return typeof arg === 'object' && arg !== null; +} + +function isUndefined(arg) { + return arg === void 0; +} + +},{}],51:[function(require,module,exports){ +(function (process){ +// Growl - Copyright TJ Holowaychuk (MIT Licensed) + +/** + * Module dependencies. + */ + +var exec = require('child_process').exec + , fs = require('fs') + , path = require('path') + , exists = fs.existsSync || path.existsSync + , os = require('os') + , quote = JSON.stringify + , cmd; + +function which(name) { + var paths = process.env.PATH.split(':'); + var loc; + + for (var i = 0, len = paths.length; i < len; ++i) { + loc = path.join(paths[i], name); + if (exists(loc)) return loc; + } +} + +switch(os.type()) { + case 'Darwin': + if (which('terminal-notifier')) { + cmd = { + type: "Darwin-NotificationCenter" + , pkg: "terminal-notifier" + , msg: '-message' + , title: '-title' + , subtitle: '-subtitle' + , icon: '-appIcon' + , sound: '-sound' + , url: '-open' + , priority: { + cmd: '-execute' + , range: [] + } + }; + } else { + cmd = { + type: "Darwin-Growl" + , pkg: "growlnotify" + , msg: '-m' + , sticky: '--sticky' + , priority: { + cmd: '--priority' + , range: [ + -2 + , -1 + , 0 + , 1 + , 2 + , "Very Low" + , "Moderate" + , "Normal" + , "High" + , "Emergency" + ] + } + }; + } + break; + case 'Linux': + if (which('growl')) { + cmd = { + type: "Linux-Growl" + , pkg: "growl" + , msg: '-m' + , title: '-title' + , subtitle: '-subtitle' + , host: { + cmd: '-H' + , hostname: '192.168.33.1' + } + }; + } else { + cmd = { + type: "Linux" + , pkg: "notify-send" + , msg: '' + , sticky: '-t 0' + , icon: '-i' + , priority: { + cmd: '-u' + , range: [ + "low" + , "normal" + , "critical" + ] + } + }; + } + break; + case 'Windows_NT': + cmd = { + type: "Windows" + , pkg: "growlnotify" + , msg: '' + , sticky: '/s:true' + , title: '/t:' + , icon: '/i:' + , url: '/cu:' + , priority: { + cmd: '/p:' + , range: [ + -2 + , -1 + , 0 + , 1 + , 2 + ] + } + }; + break; +} + +/** + * Expose `growl`. + */ + +exports = module.exports = growl; + +/** + * Node-growl version. + */ + +exports.version = '1.4.1' + +/** + * Send growl notification _msg_ with _options_. + * + * Options: + * + * - title Notification title + * - sticky Make the notification stick (defaults to false) + * - priority Specify an int or named key (default is 0) + * - name Application name (defaults to growlnotify) + * - sound Sound efect ( in OSx defined in preferences -> sound -> effects) * works only in OSX > 10.8x + * - image + * - path to an icon sets --iconpath + * - path to an image sets --image + * - capitalized word sets --appIcon + * - filename uses extname as --icon + * - otherwise treated as --icon + * + * Examples: + * + * growl('New email') + * growl('5 new emails', { title: 'Thunderbird' }) + * growl('5 new emails', { title: 'Thunderbird', sound: 'Purr' }) + * growl('Email sent', function(){ + * // ... notification sent + * }) + * + * @param {string} msg + * @param {object} options + * @param {function} fn + * @api public + */ + +function growl(msg, options, fn) { + var image + , args + , options = options || {} + , fn = fn || function(){}; + + if (options.exec) { + cmd = { + type: "Custom" + , pkg: options.exec + , range: [] + }; + } + + // noop + if (!cmd) return fn(new Error('growl not supported on this platform')); + args = [cmd.pkg]; + + // image + if (image = options.image) { + switch(cmd.type) { + case 'Darwin-Growl': + var flag, ext = path.extname(image).substr(1) + flag = flag || ext == 'icns' && 'iconpath' + flag = flag || /^[A-Z]/.test(image) && 'appIcon' + flag = flag || /^png|gif|jpe?g$/.test(ext) && 'image' + flag = flag || ext && (image = ext) && 'icon' + flag = flag || 'icon' + args.push('--' + flag, quote(image)) + break; + case 'Darwin-NotificationCenter': + args.push(cmd.icon, quote(image)); + break; + case 'Linux': + args.push(cmd.icon, quote(image)); + // libnotify defaults to sticky, set a hint for transient notifications + if (!options.sticky) args.push('--hint=int:transient:1'); + break; + case 'Windows': + args.push(cmd.icon + quote(image)); + break; + } + } + + // sticky + if (options.sticky) args.push(cmd.sticky); + + // priority + if (options.priority) { + var priority = options.priority + ''; + var checkindexOf = cmd.priority.range.indexOf(priority); + if (~cmd.priority.range.indexOf(priority)) { + args.push(cmd.priority, options.priority); + } + } + + //sound + if(options.sound && cmd.type === 'Darwin-NotificationCenter'){ + args.push(cmd.sound, options.sound) + } + + // name + if (options.name && cmd.type === "Darwin-Growl") { + args.push('--name', options.name); + } + + switch(cmd.type) { + case 'Darwin-Growl': + args.push(cmd.msg); + args.push(quote(msg).replace(/\\n/g, '\n')); + if (options.title) args.push(quote(options.title)); + break; + case 'Darwin-NotificationCenter': + args.push(cmd.msg); + var stringifiedMsg = quote(msg); + var escapedMsg = stringifiedMsg.replace(/\\n/g, '\n'); + args.push(escapedMsg); + if (options.title) { + args.push(cmd.title); + args.push(quote(options.title)); + } + if (options.subtitle) { + args.push(cmd.subtitle); + args.push(quote(options.subtitle)); + } + if (options.url) { + args.push(cmd.url); + args.push(quote(options.url)); + } + break; + case 'Linux-Growl': + args.push(cmd.msg); + args.push(quote(msg).replace(/\\n/g, '\n')); + if (options.title) args.push(quote(options.title)); + if (cmd.host) { + args.push(cmd.host.cmd, cmd.host.hostname) + } + break; + case 'Linux': + if (options.title) { + args.push(quote(options.title)); + args.push(cmd.msg); + args.push(quote(msg).replace(/\\n/g, '\n')); + } else { + args.push(quote(msg).replace(/\\n/g, '\n')); + } + break; + case 'Windows': + args.push(quote(msg).replace(/\\n/g, '\n')); + if (options.title) args.push(cmd.title + quote(options.title)); + if (options.url) args.push(cmd.url + quote(options.url)); + break; + case 'Custom': + args[0] = (function(origCommand) { + var message = options.title + ? options.title + ': ' + msg + : msg; + var command = origCommand.replace(/(^|[^%])%s/g, '$1' + quote(message)); + if (command === origCommand) args.push(quote(message)); + return command; + })(args[0]); + break; + } + + // execute + exec(args.join(' '), fn); +}; + +}).call(this,require('_process')) +},{"_process":58,"child_process":43,"fs":43,"os":56,"path":43}],52:[function(require,module,exports){ +exports.read = function (buffer, offset, isLE, mLen, nBytes) { + var e, m + var eLen = nBytes * 8 - mLen - 1 + var eMax = (1 << eLen) - 1 + var eBias = eMax >> 1 + var nBits = -7 + var i = isLE ? (nBytes - 1) : 0 + var d = isLE ? -1 : 1 + var s = buffer[offset + i] + + i += d + + e = s & ((1 << (-nBits)) - 1) + s >>= (-nBits) + nBits += eLen + for (; nBits > 0; e = e * 256 + buffer[offset + i], i += d, nBits -= 8) {} + + m = e & ((1 << (-nBits)) - 1) + e >>= (-nBits) + nBits += mLen + for (; nBits > 0; m = m * 256 + buffer[offset + i], i += d, nBits -= 8) {} + + if (e === 0) { + e = 1 - eBias + } else if (e === eMax) { + return m ? NaN : ((s ? -1 : 1) * Infinity) + } else { + m = m + Math.pow(2, mLen) + e = e - eBias + } + return (s ? -1 : 1) * m * Math.pow(2, e - mLen) +} + +exports.write = function (buffer, value, offset, isLE, mLen, nBytes) { + var e, m, c + var eLen = nBytes * 8 - mLen - 1 + var eMax = (1 << eLen) - 1 + var eBias = eMax >> 1 + var rt = (mLen === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0) + var i = isLE ? 0 : (nBytes - 1) + var d = isLE ? 1 : -1 + var s = value < 0 || (value === 0 && 1 / value < 0) ? 1 : 0 + + value = Math.abs(value) + + if (isNaN(value) || value === Infinity) { + m = isNaN(value) ? 1 : 0 + e = eMax + } else { + e = Math.floor(Math.log(value) / Math.LN2) + if (value * (c = Math.pow(2, -e)) < 1) { + e-- + c *= 2 + } + if (e + eBias >= 1) { + value += rt / c + } else { + value += rt * Math.pow(2, 1 - eBias) + } + if (value * c >= 2) { + e++ + c /= 2 + } + + if (e + eBias >= eMax) { + m = 0 + e = eMax + } else if (e + eBias >= 1) { + m = (value * c - 1) * Math.pow(2, mLen) + e = e + eBias + } else { + m = value * Math.pow(2, eBias - 1) * Math.pow(2, mLen) + e = 0 + } + } + + for (; mLen >= 8; buffer[offset + i] = m & 0xff, i += d, m /= 256, mLen -= 8) {} + + e = (e << mLen) | m + eLen += mLen + for (; eLen > 0; buffer[offset + i] = e & 0xff, i += d, e /= 256, eLen -= 8) {} + + buffer[offset + i - d] |= s * 128 +} + +},{}],53:[function(require,module,exports){ +if (typeof Object.create === 'function') { + // implementation from standard node.js 'util' module + module.exports = function inherits(ctor, superCtor) { + ctor.super_ = superCtor + ctor.prototype = Object.create(superCtor.prototype, { + constructor: { + value: ctor, + enumerable: false, + writable: true, + configurable: true + } + }); + }; +} else { + // old school shim for old browsers + module.exports = function inherits(ctor, superCtor) { + ctor.super_ = superCtor + var TempCtor = function () {} + TempCtor.prototype = superCtor.prototype + ctor.prototype = new TempCtor() + ctor.prototype.constructor = ctor + } +} + +},{}],54:[function(require,module,exports){ +/** + * Determine if an object is Buffer + * + * Author: Feross Aboukhadijeh + * License: MIT + * + * `npm install is-buffer` + */ + +module.exports = function (obj) { + return !!(obj != null && + (obj._isBuffer || // For Safari 5-7 (missing Object.prototype.constructor) + (obj.constructor && + typeof obj.constructor.isBuffer === 'function' && + obj.constructor.isBuffer(obj)) + )) +} + +},{}],55:[function(require,module,exports){ +(function (process){ +var path = require('path'); +var fs = require('fs'); +var _0777 = parseInt('0777', 8); + +module.exports = mkdirP.mkdirp = mkdirP.mkdirP = mkdirP; + +function mkdirP (p, opts, f, made) { + if (typeof opts === 'function') { + f = opts; + opts = {}; + } + else if (!opts || typeof opts !== 'object') { + opts = { mode: opts }; + } + + var mode = opts.mode; + var xfs = opts.fs || fs; + + if (mode === undefined) { + mode = _0777 & (~process.umask()); + } + if (!made) made = null; + + var cb = f || function () {}; + p = path.resolve(p); + + xfs.mkdir(p, mode, function (er) { + if (!er) { + made = made || p; + return cb(null, made); + } + switch (er.code) { + case 'ENOENT': + mkdirP(path.dirname(p), opts, function (er, made) { + if (er) cb(er, made); + else mkdirP(p, opts, cb, made); + }); + break; + + // In the case of any other error, just see if there's a dir + // there already. If so, then hooray! If not, then something + // is borked. + default: + xfs.stat(p, function (er2, stat) { + // if the stat fails, then that's super weird. + // let the original error be the failure reason. + if (er2 || !stat.isDirectory()) cb(er, made) + else cb(null, made); + }); + break; + } + }); +} + +mkdirP.sync = function sync (p, opts, made) { + if (!opts || typeof opts !== 'object') { + opts = { mode: opts }; + } + + var mode = opts.mode; + var xfs = opts.fs || fs; + + if (mode === undefined) { + mode = _0777 & (~process.umask()); + } + if (!made) made = null; + + p = path.resolve(p); + + try { + xfs.mkdirSync(p, mode); + made = made || p; + } + catch (err0) { + switch (err0.code) { + case 'ENOENT' : + made = sync(path.dirname(p), opts, made); + sync(p, opts, made); + break; + + // In the case of any other error, just see if there's a dir + // there already. If so, then hooray! If not, then something + // is borked. + default: + var stat; + try { + stat = xfs.statSync(p); + } + catch (err1) { + throw err0; + } + if (!stat.isDirectory()) throw err0; + break; + } + } + + return made; +}; + +}).call(this,require('_process')) +},{"_process":58,"fs":43,"path":43}],56:[function(require,module,exports){ +exports.endianness = function () { return 'LE' }; + +exports.hostname = function () { + if (typeof location !== 'undefined') { + return location.hostname + } + else return ''; +}; + +exports.loadavg = function () { return [] }; + +exports.uptime = function () { return 0 }; + +exports.freemem = function () { + return Number.MAX_VALUE; +}; + +exports.totalmem = function () { + return Number.MAX_VALUE; +}; + +exports.cpus = function () { return [] }; + +exports.type = function () { return 'Browser' }; + +exports.release = function () { + if (typeof navigator !== 'undefined') { + return navigator.appVersion; + } + return ''; +}; + +exports.networkInterfaces += exports.getNetworkInterfaces += function () { return {} }; + +exports.arch = function () { return 'javascript' }; + +exports.platform = function () { return 'browser' }; + +exports.tmpdir = exports.tmpDir = function () { + return '/tmp'; +}; + +exports.EOL = '\n'; + +},{}],57:[function(require,module,exports){ +(function (process){ +'use strict'; + +if (!process.version || + process.version.indexOf('v0.') === 0 || + process.version.indexOf('v1.') === 0 && process.version.indexOf('v1.8.') !== 0) { + module.exports = nextTick; +} else { + module.exports = process.nextTick; +} + +function nextTick(fn, arg1, arg2, arg3) { + if (typeof fn !== 'function') { + throw new TypeError('"callback" argument must be a function'); + } + var len = arguments.length; + var args, i; + switch (len) { + case 0: + case 1: + return process.nextTick(fn); + case 2: + return process.nextTick(function afterTickOne() { + fn.call(null, arg1); + }); + case 3: + return process.nextTick(function afterTickTwo() { + fn.call(null, arg1, arg2); + }); + case 4: + return process.nextTick(function afterTickThree() { + fn.call(null, arg1, arg2, arg3); + }); + default: + args = new Array(len - 1); + i = 0; + while (i < args.length) { + args[i++] = arguments[i]; + } + return process.nextTick(function afterTick() { + fn.apply(null, args); + }); + } +} + +}).call(this,require('_process')) +},{"_process":58}],58:[function(require,module,exports){ +// shim for using process in browser + +var process = module.exports = {}; +var queue = []; +var draining = false; +var currentQueue; +var queueIndex = -1; + +function cleanUpNextTick() { + if (!draining || !currentQueue) { + return; + } + draining = false; + if (currentQueue.length) { + queue = currentQueue.concat(queue); + } else { + queueIndex = -1; + } + if (queue.length) { + drainQueue(); + } +} + +function drainQueue() { + if (draining) { + return; + } + var timeout = setTimeout(cleanUpNextTick); + draining = true; + + var len = queue.length; + while(len) { + currentQueue = queue; + queue = []; + while (++queueIndex < len) { + if (currentQueue) { + currentQueue[queueIndex].run(); + } + } + queueIndex = -1; + len = queue.length; + } + currentQueue = null; + draining = false; + clearTimeout(timeout); +} + +process.nextTick = function (fun) { + var args = new Array(arguments.length - 1); + if (arguments.length > 1) { + for (var i = 1; i < arguments.length; i++) { + args[i - 1] = arguments[i]; + } + } + queue.push(new Item(fun, args)); + if (queue.length === 1 && !draining) { + setTimeout(drainQueue, 0); + } +}; + +// v8 likes predictible objects +function Item(fun, array) { + this.fun = fun; + this.array = array; +} +Item.prototype.run = function () { + this.fun.apply(null, this.array); +}; +process.title = 'browser'; +process.browser = true; +process.env = {}; +process.argv = []; +process.version = ''; // empty string to avoid regexp issues +process.versions = {}; + +function noop() {} + +process.on = noop; +process.addListener = noop; +process.once = noop; +process.off = noop; +process.removeListener = noop; +process.removeAllListeners = noop; +process.emit = noop; + +process.binding = function (name) { + throw new Error('process.binding is not supported'); +}; + +process.cwd = function () { return '/' }; +process.chdir = function (dir) { + throw new Error('process.chdir is not supported'); +}; +process.umask = function() { return 0; }; + +},{}],59:[function(require,module,exports){ +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + +module.exports = Stream; + +var EE = require('events').EventEmitter; +var inherits = require('inherits'); + +inherits(Stream, EE); +Stream.Readable = require('readable-stream/readable.js'); +Stream.Writable = require('readable-stream/writable.js'); +Stream.Duplex = require('readable-stream/duplex.js'); +Stream.Transform = require('readable-stream/transform.js'); +Stream.PassThrough = require('readable-stream/passthrough.js'); + +// Backwards-compat with node 0.4.x +Stream.Stream = Stream; + + + +// old-style streams. Note that the pipe method (the only relevant +// part of this class) is overridden in the Readable class. + +function Stream() { + EE.call(this); +} + +Stream.prototype.pipe = function(dest, options) { + var source = this; + + function ondata(chunk) { + if (dest.writable) { + if (false === dest.write(chunk) && source.pause) { + source.pause(); + } + } + } + + source.on('data', ondata); + + function ondrain() { + if (source.readable && source.resume) { + source.resume(); + } + } + + dest.on('drain', ondrain); + + // If the 'end' option is not supplied, dest.end() will be called when + // source gets the 'end' or 'close' events. Only dest.end() once. + if (!dest._isStdio && (!options || options.end !== false)) { + source.on('end', onend); + source.on('close', onclose); + } + + var didOnEnd = false; + function onend() { + if (didOnEnd) return; + didOnEnd = true; + + dest.end(); + } + + + function onclose() { + if (didOnEnd) return; + didOnEnd = true; + + if (typeof dest.destroy === 'function') dest.destroy(); + } + + // don't leave dangling pipes when there are errors. + function onerror(er) { + cleanup(); + if (EE.listenerCount(this, 'error') === 0) { + throw er; // Unhandled stream error in pipe. + } + } + + source.on('error', onerror); + dest.on('error', onerror); + + // remove all the event listeners that were added. + function cleanup() { + source.removeListener('data', ondata); + dest.removeListener('drain', ondrain); + + source.removeListener('end', onend); + source.removeListener('close', onclose); + + source.removeListener('error', onerror); + dest.removeListener('error', onerror); + + source.removeListener('end', cleanup); + source.removeListener('close', cleanup); + + dest.removeListener('close', cleanup); + } + + source.on('end', cleanup); + source.on('close', cleanup); + + dest.on('close', cleanup); + + dest.emit('pipe', source); + + // Allow for unix-like usage: A.pipe(B).pipe(C) + return dest; +}; + +},{"events":50,"inherits":53,"readable-stream/duplex.js":61,"readable-stream/passthrough.js":67,"readable-stream/readable.js":68,"readable-stream/transform.js":69,"readable-stream/writable.js":70}],60:[function(require,module,exports){ +arguments[4][46][0].apply(exports,arguments) +},{"dup":46}],61:[function(require,module,exports){ +module.exports = require("./lib/_stream_duplex.js") + +},{"./lib/_stream_duplex.js":62}],62:[function(require,module,exports){ +// a duplex stream is just a stream that is both readable and writable. +// Since JS doesn't have multiple prototypal inheritance, this class +// prototypally inherits from Readable, and then parasitically from +// Writable. + +'use strict'; + +/**/ + +var objectKeys = Object.keys || function (obj) { + var keys = []; + for (var key in obj) { + keys.push(key); + }return keys; +}; +/**/ + +module.exports = Duplex; + +/**/ +var processNextTick = require('process-nextick-args'); +/**/ + +/**/ +var util = require('core-util-is'); +util.inherits = require('inherits'); +/**/ + +var Readable = require('./_stream_readable'); +var Writable = require('./_stream_writable'); + +util.inherits(Duplex, Readable); + +var keys = objectKeys(Writable.prototype); +for (var v = 0; v < keys.length; v++) { + var method = keys[v]; + if (!Duplex.prototype[method]) Duplex.prototype[method] = Writable.prototype[method]; +} + +function Duplex(options) { + if (!(this instanceof Duplex)) return new Duplex(options); + + Readable.call(this, options); + Writable.call(this, options); + + if (options && options.readable === false) this.readable = false; + + if (options && options.writable === false) this.writable = false; + + this.allowHalfOpen = true; + if (options && options.allowHalfOpen === false) this.allowHalfOpen = false; + + this.once('end', onend); +} + +// the no-half-open enforcer +function onend() { + // if we allow half-open state, or if the writable side ended, + // then we're ok. + if (this.allowHalfOpen || this._writableState.ended) return; + + // no more data can be written. + // But allow more writes to happen in this tick. + processNextTick(onEndNT, this); +} + +function onEndNT(self) { + self.end(); +} + +function forEach(xs, f) { + for (var i = 0, l = xs.length; i < l; i++) { + f(xs[i], i); + } +} +},{"./_stream_readable":64,"./_stream_writable":66,"core-util-is":47,"inherits":53,"process-nextick-args":57}],63:[function(require,module,exports){ +// a passthrough stream. +// basically just the most minimal sort of Transform stream. +// Every written chunk gets output as-is. + +'use strict'; + +module.exports = PassThrough; + +var Transform = require('./_stream_transform'); + +/**/ +var util = require('core-util-is'); +util.inherits = require('inherits'); +/**/ + +util.inherits(PassThrough, Transform); + +function PassThrough(options) { + if (!(this instanceof PassThrough)) return new PassThrough(options); + + Transform.call(this, options); +} + +PassThrough.prototype._transform = function (chunk, encoding, cb) { + cb(null, chunk); +}; +},{"./_stream_transform":65,"core-util-is":47,"inherits":53}],64:[function(require,module,exports){ +(function (process){ +'use strict'; + +module.exports = Readable; + +/**/ +var processNextTick = require('process-nextick-args'); +/**/ + +/**/ +var isArray = require('isarray'); +/**/ + +Readable.ReadableState = ReadableState; + +/**/ +var EE = require('events').EventEmitter; + +var EElistenerCount = function (emitter, type) { + return emitter.listeners(type).length; +}; +/**/ + +/**/ +var Stream; +(function () { + try { + Stream = require('st' + 'ream'); + } catch (_) {} finally { + if (!Stream) Stream = require('events').EventEmitter; + } +})(); +/**/ + +var Buffer = require('buffer').Buffer; +/**/ +var bufferShim = require('buffer-shims'); +/**/ + +/**/ +var util = require('core-util-is'); +util.inherits = require('inherits'); +/**/ + +/**/ +var debugUtil = require('util'); +var debug = void 0; +if (debugUtil && debugUtil.debuglog) { + debug = debugUtil.debuglog('stream'); +} else { + debug = function () {}; +} +/**/ + +var StringDecoder; + +util.inherits(Readable, Stream); + +var hasPrependListener = typeof EE.prototype.prependListener === 'function'; + +function prependListener(emitter, event, fn) { + if (hasPrependListener) return emitter.prependListener(event, fn); + + // This is a brutally ugly hack to make sure that our error handler + // is attached before any userland ones. NEVER DO THIS. This is here + // only because this code needs to continue to work with older versions + // of Node.js that do not include the prependListener() method. The goal + // is to eventually remove this hack. + if (!emitter._events || !emitter._events[event]) emitter.on(event, fn);else if (isArray(emitter._events[event])) emitter._events[event].unshift(fn);else emitter._events[event] = [fn, emitter._events[event]]; +} + +var Duplex; +function ReadableState(options, stream) { + Duplex = Duplex || require('./_stream_duplex'); + + options = options || {}; + + // object stream flag. Used to make read(n) ignore n and to + // make all the buffer merging and length checks go away + this.objectMode = !!options.objectMode; + + if (stream instanceof Duplex) this.objectMode = this.objectMode || !!options.readableObjectMode; + + // the point at which it stops calling _read() to fill the buffer + // Note: 0 is a valid value, means "don't call _read preemptively ever" + var hwm = options.highWaterMark; + var defaultHwm = this.objectMode ? 16 : 16 * 1024; + this.highWaterMark = hwm || hwm === 0 ? hwm : defaultHwm; + + // cast to ints. + this.highWaterMark = ~ ~this.highWaterMark; + + this.buffer = []; + this.length = 0; + this.pipes = null; + this.pipesCount = 0; + this.flowing = null; + this.ended = false; + this.endEmitted = false; + this.reading = false; + + // a flag to be able to tell if the onwrite cb is called immediately, + // or on a later tick. We set this to true at first, because any + // actions that shouldn't happen until "later" should generally also + // not happen before the first write call. + this.sync = true; + + // whenever we return null, then we set a flag to say + // that we're awaiting a 'readable' event emission. + this.needReadable = false; + this.emittedReadable = false; + this.readableListening = false; + this.resumeScheduled = false; + + // Crypto is kind of old and crusty. Historically, its default string + // encoding is 'binary' so we have to make this configurable. + // Everything else in the universe uses 'utf8', though. + this.defaultEncoding = options.defaultEncoding || 'utf8'; + + // when piping, we only care about 'readable' events that happen + // after read()ing all the bytes and not getting any pushback. + this.ranOut = false; + + // the number of writers that are awaiting a drain event in .pipe()s + this.awaitDrain = 0; + + // if true, a maybeReadMore has been scheduled + this.readingMore = false; + + this.decoder = null; + this.encoding = null; + if (options.encoding) { + if (!StringDecoder) StringDecoder = require('string_decoder/').StringDecoder; + this.decoder = new StringDecoder(options.encoding); + this.encoding = options.encoding; + } +} + +var Duplex; +function Readable(options) { + Duplex = Duplex || require('./_stream_duplex'); + + if (!(this instanceof Readable)) return new Readable(options); + + this._readableState = new ReadableState(options, this); + + // legacy + this.readable = true; + + if (options && typeof options.read === 'function') this._read = options.read; + + Stream.call(this); +} + +// Manually shove something into the read() buffer. +// This returns true if the highWaterMark has not been hit yet, +// similar to how Writable.write() returns true if you should +// write() some more. +Readable.prototype.push = function (chunk, encoding) { + var state = this._readableState; + + if (!state.objectMode && typeof chunk === 'string') { + encoding = encoding || state.defaultEncoding; + if (encoding !== state.encoding) { + chunk = bufferShim.from(chunk, encoding); + encoding = ''; + } + } + + return readableAddChunk(this, state, chunk, encoding, false); +}; + +// Unshift should *always* be something directly out of read() +Readable.prototype.unshift = function (chunk) { + var state = this._readableState; + return readableAddChunk(this, state, chunk, '', true); +}; + +Readable.prototype.isPaused = function () { + return this._readableState.flowing === false; +}; + +function readableAddChunk(stream, state, chunk, encoding, addToFront) { + var er = chunkInvalid(state, chunk); + if (er) { + stream.emit('error', er); + } else if (chunk === null) { + state.reading = false; + onEofChunk(stream, state); + } else if (state.objectMode || chunk && chunk.length > 0) { + if (state.ended && !addToFront) { + var e = new Error('stream.push() after EOF'); + stream.emit('error', e); + } else if (state.endEmitted && addToFront) { + var _e = new Error('stream.unshift() after end event'); + stream.emit('error', _e); + } else { + var skipAdd; + if (state.decoder && !addToFront && !encoding) { + chunk = state.decoder.write(chunk); + skipAdd = !state.objectMode && chunk.length === 0; + } + + if (!addToFront) state.reading = false; + + // Don't add to the buffer if we've decoded to an empty string chunk and + // we're not in object mode + if (!skipAdd) { + // if we want the data now, just emit it. + if (state.flowing && state.length === 0 && !state.sync) { + stream.emit('data', chunk); + stream.read(0); + } else { + // update the buffer info. + state.length += state.objectMode ? 1 : chunk.length; + if (addToFront) state.buffer.unshift(chunk);else state.buffer.push(chunk); + + if (state.needReadable) emitReadable(stream); + } + } + + maybeReadMore(stream, state); + } + } else if (!addToFront) { + state.reading = false; + } + + return needMoreData(state); +} + +// if it's past the high water mark, we can push in some more. +// Also, if we have no data yet, we can stand some +// more bytes. This is to work around cases where hwm=0, +// such as the repl. Also, if the push() triggered a +// readable event, and the user called read(largeNumber) such that +// needReadable was set, then we ought to push more, so that another +// 'readable' event will be triggered. +function needMoreData(state) { + return !state.ended && (state.needReadable || state.length < state.highWaterMark || state.length === 0); +} + +// backwards compatibility. +Readable.prototype.setEncoding = function (enc) { + if (!StringDecoder) StringDecoder = require('string_decoder/').StringDecoder; + this._readableState.decoder = new StringDecoder(enc); + this._readableState.encoding = enc; + return this; +}; + +// Don't raise the hwm > 8MB +var MAX_HWM = 0x800000; +function computeNewHighWaterMark(n) { + if (n >= MAX_HWM) { + n = MAX_HWM; + } else { + // Get the next highest power of 2 + n--; + n |= n >>> 1; + n |= n >>> 2; + n |= n >>> 4; + n |= n >>> 8; + n |= n >>> 16; + n++; + } + return n; +} + +function howMuchToRead(n, state) { + if (state.length === 0 && state.ended) return 0; + + if (state.objectMode) return n === 0 ? 0 : 1; + + if (n === null || isNaN(n)) { + // only flow one buffer at a time + if (state.flowing && state.buffer.length) return state.buffer[0].length;else return state.length; + } + + if (n <= 0) return 0; + + // If we're asking for more than the target buffer level, + // then raise the water mark. Bump up to the next highest + // power of 2, to prevent increasing it excessively in tiny + // amounts. + if (n > state.highWaterMark) state.highWaterMark = computeNewHighWaterMark(n); + + // don't have that much. return null, unless we've ended. + if (n > state.length) { + if (!state.ended) { + state.needReadable = true; + return 0; + } else { + return state.length; + } + } + + return n; +} + +// you can override either this method, or the async _read(n) below. +Readable.prototype.read = function (n) { + debug('read', n); + var state = this._readableState; + var nOrig = n; + + if (typeof n !== 'number' || n > 0) state.emittedReadable = false; + + // if we're doing read(0) to trigger a readable event, but we + // already have a bunch of data in the buffer, then just trigger + // the 'readable' event and move on. + if (n === 0 && state.needReadable && (state.length >= state.highWaterMark || state.ended)) { + debug('read: emitReadable', state.length, state.ended); + if (state.length === 0 && state.ended) endReadable(this);else emitReadable(this); + return null; + } + + n = howMuchToRead(n, state); + + // if we've ended, and we're now clear, then finish it up. + if (n === 0 && state.ended) { + if (state.length === 0) endReadable(this); + return null; + } + + // All the actual chunk generation logic needs to be + // *below* the call to _read. The reason is that in certain + // synthetic stream cases, such as passthrough streams, _read + // may be a completely synchronous operation which may change + // the state of the read buffer, providing enough data when + // before there was *not* enough. + // + // So, the steps are: + // 1. Figure out what the state of things will be after we do + // a read from the buffer. + // + // 2. If that resulting state will trigger a _read, then call _read. + // Note that this may be asynchronous, or synchronous. Yes, it is + // deeply ugly to write APIs this way, but that still doesn't mean + // that the Readable class should behave improperly, as streams are + // designed to be sync/async agnostic. + // Take note if the _read call is sync or async (ie, if the read call + // has returned yet), so that we know whether or not it's safe to emit + // 'readable' etc. + // + // 3. Actually pull the requested chunks out of the buffer and return. + + // if we need a readable event, then we need to do some reading. + var doRead = state.needReadable; + debug('need readable', doRead); + + // if we currently have less than the highWaterMark, then also read some + if (state.length === 0 || state.length - n < state.highWaterMark) { + doRead = true; + debug('length less than watermark', doRead); + } + + // however, if we've ended, then there's no point, and if we're already + // reading, then it's unnecessary. + if (state.ended || state.reading) { + doRead = false; + debug('reading or ended', doRead); + } + + if (doRead) { + debug('do read'); + state.reading = true; + state.sync = true; + // if the length is currently zero, then we *need* a readable event. + if (state.length === 0) state.needReadable = true; + // call internal read method + this._read(state.highWaterMark); + state.sync = false; + } + + // If _read pushed data synchronously, then `reading` will be false, + // and we need to re-evaluate how much data we can return to the user. + if (doRead && !state.reading) n = howMuchToRead(nOrig, state); + + var ret; + if (n > 0) ret = fromList(n, state);else ret = null; + + if (ret === null) { + state.needReadable = true; + n = 0; + } + + state.length -= n; + + // If we have nothing in the buffer, then we want to know + // as soon as we *do* get something into the buffer. + if (state.length === 0 && !state.ended) state.needReadable = true; + + // If we tried to read() past the EOF, then emit end on the next tick. + if (nOrig !== n && state.ended && state.length === 0) endReadable(this); + + if (ret !== null) this.emit('data', ret); + + return ret; +}; + +function chunkInvalid(state, chunk) { + var er = null; + if (!Buffer.isBuffer(chunk) && typeof chunk !== 'string' && chunk !== null && chunk !== undefined && !state.objectMode) { + er = new TypeError('Invalid non-string/buffer chunk'); + } + return er; +} + +function onEofChunk(stream, state) { + if (state.ended) return; + if (state.decoder) { + var chunk = state.decoder.end(); + if (chunk && chunk.length) { + state.buffer.push(chunk); + state.length += state.objectMode ? 1 : chunk.length; + } + } + state.ended = true; + + // emit 'readable' now to make sure it gets picked up. + emitReadable(stream); +} + +// Don't emit readable right away in sync mode, because this can trigger +// another read() call => stack overflow. This way, it might trigger +// a nextTick recursion warning, but that's not so bad. +function emitReadable(stream) { + var state = stream._readableState; + state.needReadable = false; + if (!state.emittedReadable) { + debug('emitReadable', state.flowing); + state.emittedReadable = true; + if (state.sync) processNextTick(emitReadable_, stream);else emitReadable_(stream); + } +} + +function emitReadable_(stream) { + debug('emit readable'); + stream.emit('readable'); + flow(stream); +} + +// at this point, the user has presumably seen the 'readable' event, +// and called read() to consume some data. that may have triggered +// in turn another _read(n) call, in which case reading = true if +// it's in progress. +// However, if we're not ended, or reading, and the length < hwm, +// then go ahead and try to read some more preemptively. +function maybeReadMore(stream, state) { + if (!state.readingMore) { + state.readingMore = true; + processNextTick(maybeReadMore_, stream, state); + } +} + +function maybeReadMore_(stream, state) { + var len = state.length; + while (!state.reading && !state.flowing && !state.ended && state.length < state.highWaterMark) { + debug('maybeReadMore read 0'); + stream.read(0); + if (len === state.length) + // didn't get any data, stop spinning. + break;else len = state.length; + } + state.readingMore = false; +} + +// abstract method. to be overridden in specific implementation classes. +// call cb(er, data) where data is <= n in length. +// for virtual (non-string, non-buffer) streams, "length" is somewhat +// arbitrary, and perhaps not very meaningful. +Readable.prototype._read = function (n) { + this.emit('error', new Error('not implemented')); +}; + +Readable.prototype.pipe = function (dest, pipeOpts) { + var src = this; + var state = this._readableState; + + switch (state.pipesCount) { + case 0: + state.pipes = dest; + break; + case 1: + state.pipes = [state.pipes, dest]; + break; + default: + state.pipes.push(dest); + break; + } + state.pipesCount += 1; + debug('pipe count=%d opts=%j', state.pipesCount, pipeOpts); + + var doEnd = (!pipeOpts || pipeOpts.end !== false) && dest !== process.stdout && dest !== process.stderr; + + var endFn = doEnd ? onend : cleanup; + if (state.endEmitted) processNextTick(endFn);else src.once('end', endFn); + + dest.on('unpipe', onunpipe); + function onunpipe(readable) { + debug('onunpipe'); + if (readable === src) { + cleanup(); + } + } + + function onend() { + debug('onend'); + dest.end(); + } + + // when the dest drains, it reduces the awaitDrain counter + // on the source. This would be more elegant with a .once() + // handler in flow(), but adding and removing repeatedly is + // too slow. + var ondrain = pipeOnDrain(src); + dest.on('drain', ondrain); + + var cleanedUp = false; + function cleanup() { + debug('cleanup'); + // cleanup event handlers once the pipe is broken + dest.removeListener('close', onclose); + dest.removeListener('finish', onfinish); + dest.removeListener('drain', ondrain); + dest.removeListener('error', onerror); + dest.removeListener('unpipe', onunpipe); + src.removeListener('end', onend); + src.removeListener('end', cleanup); + src.removeListener('data', ondata); + + cleanedUp = true; + + // if the reader is waiting for a drain event from this + // specific writer, then it would cause it to never start + // flowing again. + // So, if this is awaiting a drain, then we just call it now. + // If we don't know, then assume that we are waiting for one. + if (state.awaitDrain && (!dest._writableState || dest._writableState.needDrain)) ondrain(); + } + + src.on('data', ondata); + function ondata(chunk) { + debug('ondata'); + var ret = dest.write(chunk); + if (false === ret) { + // If the user unpiped during `dest.write()`, it is possible + // to get stuck in a permanently paused state if that write + // also returned false. + // => Check whether `dest` is still a piping destination. + if ((state.pipesCount === 1 && state.pipes === dest || state.pipesCount > 1 && indexOf(state.pipes, dest) !== -1) && !cleanedUp) { + debug('false write response, pause', src._readableState.awaitDrain); + src._readableState.awaitDrain++; + } + src.pause(); + } + } + + // if the dest has an error, then stop piping into it. + // however, don't suppress the throwing behavior for this. + function onerror(er) { + debug('onerror', er); + unpipe(); + dest.removeListener('error', onerror); + if (EElistenerCount(dest, 'error') === 0) dest.emit('error', er); + } + + // Make sure our error handler is attached before userland ones. + prependListener(dest, 'error', onerror); + + // Both close and finish should trigger unpipe, but only once. + function onclose() { + dest.removeListener('finish', onfinish); + unpipe(); + } + dest.once('close', onclose); + function onfinish() { + debug('onfinish'); + dest.removeListener('close', onclose); + unpipe(); + } + dest.once('finish', onfinish); + + function unpipe() { + debug('unpipe'); + src.unpipe(dest); + } + + // tell the dest that it's being piped to + dest.emit('pipe', src); + + // start the flow if it hasn't been started already. + if (!state.flowing) { + debug('pipe resume'); + src.resume(); + } + + return dest; +}; + +function pipeOnDrain(src) { + return function () { + var state = src._readableState; + debug('pipeOnDrain', state.awaitDrain); + if (state.awaitDrain) state.awaitDrain--; + if (state.awaitDrain === 0 && EElistenerCount(src, 'data')) { + state.flowing = true; + flow(src); + } + }; +} + +Readable.prototype.unpipe = function (dest) { + var state = this._readableState; + + // if we're not piping anywhere, then do nothing. + if (state.pipesCount === 0) return this; + + // just one destination. most common case. + if (state.pipesCount === 1) { + // passed in one, but it's not the right one. + if (dest && dest !== state.pipes) return this; + + if (!dest) dest = state.pipes; + + // got a match. + state.pipes = null; + state.pipesCount = 0; + state.flowing = false; + if (dest) dest.emit('unpipe', this); + return this; + } + + // slow case. multiple pipe destinations. + + if (!dest) { + // remove all. + var dests = state.pipes; + var len = state.pipesCount; + state.pipes = null; + state.pipesCount = 0; + state.flowing = false; + + for (var _i = 0; _i < len; _i++) { + dests[_i].emit('unpipe', this); + }return this; + } + + // try to find the right one. + var i = indexOf(state.pipes, dest); + if (i === -1) return this; + + state.pipes.splice(i, 1); + state.pipesCount -= 1; + if (state.pipesCount === 1) state.pipes = state.pipes[0]; + + dest.emit('unpipe', this); + + return this; +}; + +// set up data events if they are asked for +// Ensure readable listeners eventually get something +Readable.prototype.on = function (ev, fn) { + var res = Stream.prototype.on.call(this, ev, fn); + + // If listening to data, and it has not explicitly been paused, + // then call resume to start the flow of data on the next tick. + if (ev === 'data' && false !== this._readableState.flowing) { + this.resume(); + } + + if (ev === 'readable' && !this._readableState.endEmitted) { + var state = this._readableState; + if (!state.readableListening) { + state.readableListening = true; + state.emittedReadable = false; + state.needReadable = true; + if (!state.reading) { + processNextTick(nReadingNextTick, this); + } else if (state.length) { + emitReadable(this, state); + } + } + } + + return res; +}; +Readable.prototype.addListener = Readable.prototype.on; + +function nReadingNextTick(self) { + debug('readable nexttick read 0'); + self.read(0); +} + +// pause() and resume() are remnants of the legacy readable stream API +// If the user uses them, then switch into old mode. +Readable.prototype.resume = function () { + var state = this._readableState; + if (!state.flowing) { + debug('resume'); + state.flowing = true; + resume(this, state); + } + return this; +}; + +function resume(stream, state) { + if (!state.resumeScheduled) { + state.resumeScheduled = true; + processNextTick(resume_, stream, state); + } +} + +function resume_(stream, state) { + if (!state.reading) { + debug('resume read 0'); + stream.read(0); + } + + state.resumeScheduled = false; + stream.emit('resume'); + flow(stream); + if (state.flowing && !state.reading) stream.read(0); +} + +Readable.prototype.pause = function () { + debug('call pause flowing=%j', this._readableState.flowing); + if (false !== this._readableState.flowing) { + debug('pause'); + this._readableState.flowing = false; + this.emit('pause'); + } + return this; +}; + +function flow(stream) { + var state = stream._readableState; + debug('flow', state.flowing); + if (state.flowing) { + do { + var chunk = stream.read(); + } while (null !== chunk && state.flowing); + } +} + +// wrap an old-style stream as the async data source. +// This is *not* part of the readable stream interface. +// It is an ugly unfortunate mess of history. +Readable.prototype.wrap = function (stream) { + var state = this._readableState; + var paused = false; + + var self = this; + stream.on('end', function () { + debug('wrapped end'); + if (state.decoder && !state.ended) { + var chunk = state.decoder.end(); + if (chunk && chunk.length) self.push(chunk); + } + + self.push(null); + }); + + stream.on('data', function (chunk) { + debug('wrapped data'); + if (state.decoder) chunk = state.decoder.write(chunk); + + // don't skip over falsy values in objectMode + if (state.objectMode && (chunk === null || chunk === undefined)) return;else if (!state.objectMode && (!chunk || !chunk.length)) return; + + var ret = self.push(chunk); + if (!ret) { + paused = true; + stream.pause(); + } + }); + + // proxy all the other methods. + // important when wrapping filters and duplexes. + for (var i in stream) { + if (this[i] === undefined && typeof stream[i] === 'function') { + this[i] = function (method) { + return function () { + return stream[method].apply(stream, arguments); + }; + }(i); + } + } + + // proxy certain important events. + var events = ['error', 'close', 'destroy', 'pause', 'resume']; + forEach(events, function (ev) { + stream.on(ev, self.emit.bind(self, ev)); + }); + + // when we try to consume some more bytes, simply unpause the + // underlying stream. + self._read = function (n) { + debug('wrapped _read', n); + if (paused) { + paused = false; + stream.resume(); + } + }; + + return self; +}; + +// exposed for testing purposes only. +Readable._fromList = fromList; + +// Pluck off n bytes from an array of buffers. +// Length is the combined lengths of all the buffers in the list. +function fromList(n, state) { + var list = state.buffer; + var length = state.length; + var stringMode = !!state.decoder; + var objectMode = !!state.objectMode; + var ret; + + // nothing in the list, definitely empty. + if (list.length === 0) return null; + + if (length === 0) ret = null;else if (objectMode) ret = list.shift();else if (!n || n >= length) { + // read it all, truncate the array. + if (stringMode) ret = list.join('');else if (list.length === 1) ret = list[0];else ret = Buffer.concat(list, length); + list.length = 0; + } else { + // read just some of it. + if (n < list[0].length) { + // just take a part of the first list item. + // slice is the same for buffers and strings. + var buf = list[0]; + ret = buf.slice(0, n); + list[0] = buf.slice(n); + } else if (n === list[0].length) { + // first list is a perfect match + ret = list.shift(); + } else { + // complex case. + // we have enough to cover it, but it spans past the first buffer. + if (stringMode) ret = '';else ret = bufferShim.allocUnsafe(n); + + var c = 0; + for (var i = 0, l = list.length; i < l && c < n; i++) { + var _buf = list[0]; + var cpy = Math.min(n - c, _buf.length); + + if (stringMode) ret += _buf.slice(0, cpy);else _buf.copy(ret, c, 0, cpy); + + if (cpy < _buf.length) list[0] = _buf.slice(cpy);else list.shift(); + + c += cpy; + } + } + } + + return ret; +} + +function endReadable(stream) { + var state = stream._readableState; + + // If we get here before consuming all the bytes, then that is a + // bug in node. Should never happen. + if (state.length > 0) throw new Error('"endReadable()" called on non-empty stream'); + + if (!state.endEmitted) { + state.ended = true; + processNextTick(endReadableNT, state, stream); + } +} + +function endReadableNT(state, stream) { + // Check that we didn't get one last unshift. + if (!state.endEmitted && state.length === 0) { + state.endEmitted = true; + stream.readable = false; + stream.emit('end'); + } +} + +function forEach(xs, f) { + for (var i = 0, l = xs.length; i < l; i++) { + f(xs[i], i); + } +} + +function indexOf(xs, x) { + for (var i = 0, l = xs.length; i < l; i++) { + if (xs[i] === x) return i; + } + return -1; +} +}).call(this,require('_process')) +},{"./_stream_duplex":62,"_process":58,"buffer":45,"buffer-shims":44,"core-util-is":47,"events":50,"inherits":53,"isarray":60,"process-nextick-args":57,"string_decoder/":71,"util":41}],65:[function(require,module,exports){ +// a transform stream is a readable/writable stream where you do +// something with the data. Sometimes it's called a "filter", +// but that's not a great name for it, since that implies a thing where +// some bits pass through, and others are simply ignored. (That would +// be a valid example of a transform, of course.) +// +// While the output is causally related to the input, it's not a +// necessarily symmetric or synchronous transformation. For example, +// a zlib stream might take multiple plain-text writes(), and then +// emit a single compressed chunk some time in the future. +// +// Here's how this works: +// +// The Transform stream has all the aspects of the readable and writable +// stream classes. When you write(chunk), that calls _write(chunk,cb) +// internally, and returns false if there's a lot of pending writes +// buffered up. When you call read(), that calls _read(n) until +// there's enough pending readable data buffered up. +// +// In a transform stream, the written data is placed in a buffer. When +// _read(n) is called, it transforms the queued up data, calling the +// buffered _write cb's as it consumes chunks. If consuming a single +// written chunk would result in multiple output chunks, then the first +// outputted bit calls the readcb, and subsequent chunks just go into +// the read buffer, and will cause it to emit 'readable' if necessary. +// +// This way, back-pressure is actually determined by the reading side, +// since _read has to be called to start processing a new chunk. However, +// a pathological inflate type of transform can cause excessive buffering +// here. For example, imagine a stream where every byte of input is +// interpreted as an integer from 0-255, and then results in that many +// bytes of output. Writing the 4 bytes {ff,ff,ff,ff} would result in +// 1kb of data being output. In this case, you could write a very small +// amount of input, and end up with a very large amount of output. In +// such a pathological inflating mechanism, there'd be no way to tell +// the system to stop doing the transform. A single 4MB write could +// cause the system to run out of memory. +// +// However, even in such a pathological case, only a single written chunk +// would be consumed, and then the rest would wait (un-transformed) until +// the results of the previous transformed chunk were consumed. + +'use strict'; + +module.exports = Transform; + +var Duplex = require('./_stream_duplex'); + +/**/ +var util = require('core-util-is'); +util.inherits = require('inherits'); +/**/ + +util.inherits(Transform, Duplex); + +function TransformState(stream) { + this.afterTransform = function (er, data) { + return afterTransform(stream, er, data); + }; + + this.needTransform = false; + this.transforming = false; + this.writecb = null; + this.writechunk = null; + this.writeencoding = null; +} + +function afterTransform(stream, er, data) { + var ts = stream._transformState; + ts.transforming = false; + + var cb = ts.writecb; + + if (!cb) return stream.emit('error', new Error('no writecb in Transform class')); + + ts.writechunk = null; + ts.writecb = null; + + if (data !== null && data !== undefined) stream.push(data); + + cb(er); + + var rs = stream._readableState; + rs.reading = false; + if (rs.needReadable || rs.length < rs.highWaterMark) { + stream._read(rs.highWaterMark); + } +} + +function Transform(options) { + if (!(this instanceof Transform)) return new Transform(options); + + Duplex.call(this, options); + + this._transformState = new TransformState(this); + + // when the writable side finishes, then flush out anything remaining. + var stream = this; + + // start out asking for a readable event once data is transformed. + this._readableState.needReadable = true; + + // we have implemented the _read method, and done the other things + // that Readable wants before the first _read call, so unset the + // sync guard flag. + this._readableState.sync = false; + + if (options) { + if (typeof options.transform === 'function') this._transform = options.transform; + + if (typeof options.flush === 'function') this._flush = options.flush; + } + + this.once('prefinish', function () { + if (typeof this._flush === 'function') this._flush(function (er) { + done(stream, er); + });else done(stream); + }); +} + +Transform.prototype.push = function (chunk, encoding) { + this._transformState.needTransform = false; + return Duplex.prototype.push.call(this, chunk, encoding); +}; + +// This is the part where you do stuff! +// override this function in implementation classes. +// 'chunk' is an input chunk. +// +// Call `push(newChunk)` to pass along transformed output +// to the readable side. You may call 'push' zero or more times. +// +// Call `cb(err)` when you are done with this chunk. If you pass +// an error, then that'll put the hurt on the whole operation. If you +// never call cb(), then you'll never get another chunk. +Transform.prototype._transform = function (chunk, encoding, cb) { + throw new Error('Not implemented'); +}; + +Transform.prototype._write = function (chunk, encoding, cb) { + var ts = this._transformState; + ts.writecb = cb; + ts.writechunk = chunk; + ts.writeencoding = encoding; + if (!ts.transforming) { + var rs = this._readableState; + if (ts.needTransform || rs.needReadable || rs.length < rs.highWaterMark) this._read(rs.highWaterMark); + } +}; + +// Doesn't matter what the args are here. +// _transform does all the work. +// That we got here means that the readable side wants more data. +Transform.prototype._read = function (n) { + var ts = this._transformState; + + if (ts.writechunk !== null && ts.writecb && !ts.transforming) { + ts.transforming = true; + this._transform(ts.writechunk, ts.writeencoding, ts.afterTransform); + } else { + // mark that we need a transform, so that any data that comes in + // will get processed, now that we've asked for it. + ts.needTransform = true; + } +}; + +function done(stream, er) { + if (er) return stream.emit('error', er); + + // if there's nothing in the write buffer, then that means + // that nothing more will ever be provided + var ws = stream._writableState; + var ts = stream._transformState; + + if (ws.length) throw new Error('Calling transform done when ws.length != 0'); + + if (ts.transforming) throw new Error('Calling transform done when still transforming'); + + return stream.push(null); +} +},{"./_stream_duplex":62,"core-util-is":47,"inherits":53}],66:[function(require,module,exports){ +(function (process){ +// A bit simpler than readable streams. +// Implement an async ._write(chunk, encoding, cb), and it'll handle all +// the drain event emission and buffering. + +'use strict'; + +module.exports = Writable; + +/**/ +var processNextTick = require('process-nextick-args'); +/**/ + +/**/ +var asyncWrite = !process.browser && ['v0.10', 'v0.9.'].indexOf(process.version.slice(0, 5)) > -1 ? setImmediate : processNextTick; +/**/ + +Writable.WritableState = WritableState; + +/**/ +var util = require('core-util-is'); +util.inherits = require('inherits'); +/**/ + +/**/ +var internalUtil = { + deprecate: require('util-deprecate') +}; +/**/ + +/**/ +var Stream; +(function () { + try { + Stream = require('st' + 'ream'); + } catch (_) {} finally { + if (!Stream) Stream = require('events').EventEmitter; + } +})(); +/**/ + +var Buffer = require('buffer').Buffer; +/**/ +var bufferShim = require('buffer-shims'); +/**/ + +util.inherits(Writable, Stream); + +function nop() {} + +function WriteReq(chunk, encoding, cb) { + this.chunk = chunk; + this.encoding = encoding; + this.callback = cb; + this.next = null; +} + +var Duplex; +function WritableState(options, stream) { + Duplex = Duplex || require('./_stream_duplex'); + + options = options || {}; + + // object stream flag to indicate whether or not this stream + // contains buffers or objects. + this.objectMode = !!options.objectMode; + + if (stream instanceof Duplex) this.objectMode = this.objectMode || !!options.writableObjectMode; + + // the point at which write() starts returning false + // Note: 0 is a valid value, means that we always return false if + // the entire buffer is not flushed immediately on write() + var hwm = options.highWaterMark; + var defaultHwm = this.objectMode ? 16 : 16 * 1024; + this.highWaterMark = hwm || hwm === 0 ? hwm : defaultHwm; + + // cast to ints. + this.highWaterMark = ~ ~this.highWaterMark; + + this.needDrain = false; + // at the start of calling end() + this.ending = false; + // when end() has been called, and returned + this.ended = false; + // when 'finish' is emitted + this.finished = false; + + // should we decode strings into buffers before passing to _write? + // this is here so that some node-core streams can optimize string + // handling at a lower level. + var noDecode = options.decodeStrings === false; + this.decodeStrings = !noDecode; + + // Crypto is kind of old and crusty. Historically, its default string + // encoding is 'binary' so we have to make this configurable. + // Everything else in the universe uses 'utf8', though. + this.defaultEncoding = options.defaultEncoding || 'utf8'; + + // not an actual buffer we keep track of, but a measurement + // of how much we're waiting to get pushed to some underlying + // socket or file. + this.length = 0; + + // a flag to see when we're in the middle of a write. + this.writing = false; + + // when true all writes will be buffered until .uncork() call + this.corked = 0; + + // a flag to be able to tell if the onwrite cb is called immediately, + // or on a later tick. We set this to true at first, because any + // actions that shouldn't happen until "later" should generally also + // not happen before the first write call. + this.sync = true; + + // a flag to know if we're processing previously buffered items, which + // may call the _write() callback in the same tick, so that we don't + // end up in an overlapped onwrite situation. + this.bufferProcessing = false; + + // the callback that's passed to _write(chunk,cb) + this.onwrite = function (er) { + onwrite(stream, er); + }; + + // the callback that the user supplies to write(chunk,encoding,cb) + this.writecb = null; + + // the amount that is being written when _write is called. + this.writelen = 0; + + this.bufferedRequest = null; + this.lastBufferedRequest = null; + + // number of pending user-supplied write callbacks + // this must be 0 before 'finish' can be emitted + this.pendingcb = 0; + + // emit prefinish if the only thing we're waiting for is _write cbs + // This is relevant for synchronous Transform streams + this.prefinished = false; + + // True if the error was already emitted and should not be thrown again + this.errorEmitted = false; + + // count buffered requests + this.bufferedRequestCount = 0; + + // allocate the first CorkedRequest, there is always + // one allocated and free to use, and we maintain at most two + this.corkedRequestsFree = new CorkedRequest(this); +} + +WritableState.prototype.getBuffer = function writableStateGetBuffer() { + var current = this.bufferedRequest; + var out = []; + while (current) { + out.push(current); + current = current.next; + } + return out; +}; + +(function () { + try { + Object.defineProperty(WritableState.prototype, 'buffer', { + get: internalUtil.deprecate(function () { + return this.getBuffer(); + }, '_writableState.buffer is deprecated. Use _writableState.getBuffer ' + 'instead.') + }); + } catch (_) {} +})(); + +var Duplex; +function Writable(options) { + Duplex = Duplex || require('./_stream_duplex'); + + // Writable ctor is applied to Duplexes, though they're not + // instanceof Writable, they're instanceof Readable. + if (!(this instanceof Writable) && !(this instanceof Duplex)) return new Writable(options); + + this._writableState = new WritableState(options, this); + + // legacy. + this.writable = true; + + if (options) { + if (typeof options.write === 'function') this._write = options.write; + + if (typeof options.writev === 'function') this._writev = options.writev; + } + + Stream.call(this); +} + +// Otherwise people can pipe Writable streams, which is just wrong. +Writable.prototype.pipe = function () { + this.emit('error', new Error('Cannot pipe, not readable')); +}; + +function writeAfterEnd(stream, cb) { + var er = new Error('write after end'); + // TODO: defer error events consistently everywhere, not just the cb + stream.emit('error', er); + processNextTick(cb, er); +} + +// If we get something that is not a buffer, string, null, or undefined, +// and we're not in objectMode, then that's an error. +// Otherwise stream chunks are all considered to be of length=1, and the +// watermarks determine how many objects to keep in the buffer, rather than +// how many bytes or characters. +function validChunk(stream, state, chunk, cb) { + var valid = true; + var er = false; + // Always throw error if a null is written + // if we are not in object mode then throw + // if it is not a buffer, string, or undefined. + if (chunk === null) { + er = new TypeError('May not write null values to stream'); + } else if (!Buffer.isBuffer(chunk) && typeof chunk !== 'string' && chunk !== undefined && !state.objectMode) { + er = new TypeError('Invalid non-string/buffer chunk'); + } + if (er) { + stream.emit('error', er); + processNextTick(cb, er); + valid = false; + } + return valid; +} + +Writable.prototype.write = function (chunk, encoding, cb) { + var state = this._writableState; + var ret = false; + + if (typeof encoding === 'function') { + cb = encoding; + encoding = null; + } + + if (Buffer.isBuffer(chunk)) encoding = 'buffer';else if (!encoding) encoding = state.defaultEncoding; + + if (typeof cb !== 'function') cb = nop; + + if (state.ended) writeAfterEnd(this, cb);else if (validChunk(this, state, chunk, cb)) { + state.pendingcb++; + ret = writeOrBuffer(this, state, chunk, encoding, cb); + } + + return ret; +}; + +Writable.prototype.cork = function () { + var state = this._writableState; + + state.corked++; +}; + +Writable.prototype.uncork = function () { + var state = this._writableState; + + if (state.corked) { + state.corked--; + + if (!state.writing && !state.corked && !state.finished && !state.bufferProcessing && state.bufferedRequest) clearBuffer(this, state); + } +}; + +Writable.prototype.setDefaultEncoding = function setDefaultEncoding(encoding) { + // node::ParseEncoding() requires lower case. + if (typeof encoding === 'string') encoding = encoding.toLowerCase(); + if (!(['hex', 'utf8', 'utf-8', 'ascii', 'binary', 'base64', 'ucs2', 'ucs-2', 'utf16le', 'utf-16le', 'raw'].indexOf((encoding + '').toLowerCase()) > -1)) throw new TypeError('Unknown encoding: ' + encoding); + this._writableState.defaultEncoding = encoding; + return this; +}; + +function decodeChunk(state, chunk, encoding) { + if (!state.objectMode && state.decodeStrings !== false && typeof chunk === 'string') { + chunk = bufferShim.from(chunk, encoding); + } + return chunk; +} + +// if we're already writing something, then just put this +// in the queue, and wait our turn. Otherwise, call _write +// If we return false, then we need a drain event, so set that flag. +function writeOrBuffer(stream, state, chunk, encoding, cb) { + chunk = decodeChunk(state, chunk, encoding); + + if (Buffer.isBuffer(chunk)) encoding = 'buffer'; + var len = state.objectMode ? 1 : chunk.length; + + state.length += len; + + var ret = state.length < state.highWaterMark; + // we must ensure that previous needDrain will not be reset to false. + if (!ret) state.needDrain = true; + + if (state.writing || state.corked) { + var last = state.lastBufferedRequest; + state.lastBufferedRequest = new WriteReq(chunk, encoding, cb); + if (last) { + last.next = state.lastBufferedRequest; + } else { + state.bufferedRequest = state.lastBufferedRequest; + } + state.bufferedRequestCount += 1; + } else { + doWrite(stream, state, false, len, chunk, encoding, cb); + } + + return ret; +} + +function doWrite(stream, state, writev, len, chunk, encoding, cb) { + state.writelen = len; + state.writecb = cb; + state.writing = true; + state.sync = true; + if (writev) stream._writev(chunk, state.onwrite);else stream._write(chunk, encoding, state.onwrite); + state.sync = false; +} + +function onwriteError(stream, state, sync, er, cb) { + --state.pendingcb; + if (sync) processNextTick(cb, er);else cb(er); + + stream._writableState.errorEmitted = true; + stream.emit('error', er); +} + +function onwriteStateUpdate(state) { + state.writing = false; + state.writecb = null; + state.length -= state.writelen; + state.writelen = 0; +} + +function onwrite(stream, er) { + var state = stream._writableState; + var sync = state.sync; + var cb = state.writecb; + + onwriteStateUpdate(state); + + if (er) onwriteError(stream, state, sync, er, cb);else { + // Check if we're actually ready to finish, but don't emit yet + var finished = needFinish(state); + + if (!finished && !state.corked && !state.bufferProcessing && state.bufferedRequest) { + clearBuffer(stream, state); + } + + if (sync) { + /**/ + asyncWrite(afterWrite, stream, state, finished, cb); + /**/ + } else { + afterWrite(stream, state, finished, cb); + } + } +} + +function afterWrite(stream, state, finished, cb) { + if (!finished) onwriteDrain(stream, state); + state.pendingcb--; + cb(); + finishMaybe(stream, state); +} + +// Must force callback to be called on nextTick, so that we don't +// emit 'drain' before the write() consumer gets the 'false' return +// value, and has a chance to attach a 'drain' listener. +function onwriteDrain(stream, state) { + if (state.length === 0 && state.needDrain) { + state.needDrain = false; + stream.emit('drain'); + } +} + +// if there's something in the buffer waiting, then process it +function clearBuffer(stream, state) { + state.bufferProcessing = true; + var entry = state.bufferedRequest; + + if (stream._writev && entry && entry.next) { + // Fast case, write everything using _writev() + var l = state.bufferedRequestCount; + var buffer = new Array(l); + var holder = state.corkedRequestsFree; + holder.entry = entry; + + var count = 0; + while (entry) { + buffer[count] = entry; + entry = entry.next; + count += 1; + } + + doWrite(stream, state, true, state.length, buffer, '', holder.finish); + + // doWrite is almost always async, defer these to save a bit of time + // as the hot path ends with doWrite + state.pendingcb++; + state.lastBufferedRequest = null; + if (holder.next) { + state.corkedRequestsFree = holder.next; + holder.next = null; + } else { + state.corkedRequestsFree = new CorkedRequest(state); + } + } else { + // Slow case, write chunks one-by-one + while (entry) { + var chunk = entry.chunk; + var encoding = entry.encoding; + var cb = entry.callback; + var len = state.objectMode ? 1 : chunk.length; + + doWrite(stream, state, false, len, chunk, encoding, cb); + entry = entry.next; + // if we didn't call the onwrite immediately, then + // it means that we need to wait until it does. + // also, that means that the chunk and cb are currently + // being processed, so move the buffer counter past them. + if (state.writing) { + break; + } + } + + if (entry === null) state.lastBufferedRequest = null; + } + + state.bufferedRequestCount = 0; + state.bufferedRequest = entry; + state.bufferProcessing = false; +} + +Writable.prototype._write = function (chunk, encoding, cb) { + cb(new Error('not implemented')); +}; + +Writable.prototype._writev = null; + +Writable.prototype.end = function (chunk, encoding, cb) { + var state = this._writableState; + + if (typeof chunk === 'function') { + cb = chunk; + chunk = null; + encoding = null; + } else if (typeof encoding === 'function') { + cb = encoding; + encoding = null; + } + + if (chunk !== null && chunk !== undefined) this.write(chunk, encoding); + + // .end() fully uncorks + if (state.corked) { + state.corked = 1; + this.uncork(); + } + + // ignore unnecessary end() calls. + if (!state.ending && !state.finished) endWritable(this, state, cb); +}; + +function needFinish(state) { + return state.ending && state.length === 0 && state.bufferedRequest === null && !state.finished && !state.writing; +} + +function prefinish(stream, state) { + if (!state.prefinished) { + state.prefinished = true; + stream.emit('prefinish'); + } +} + +function finishMaybe(stream, state) { + var need = needFinish(state); + if (need) { + if (state.pendingcb === 0) { + prefinish(stream, state); + state.finished = true; + stream.emit('finish'); + } else { + prefinish(stream, state); + } + } + return need; +} + +function endWritable(stream, state, cb) { + state.ending = true; + finishMaybe(stream, state); + if (cb) { + if (state.finished) processNextTick(cb);else stream.once('finish', cb); + } + state.ended = true; + stream.writable = false; +} + +// It seems a linked list but it is not +// there will be only 2 of these for each stream +function CorkedRequest(state) { + var _this = this; + + this.next = null; + this.entry = null; + + this.finish = function (err) { + var entry = _this.entry; + _this.entry = null; + while (entry) { + var cb = entry.callback; + state.pendingcb--; + cb(err); + entry = entry.next; + } + if (state.corkedRequestsFree) { + state.corkedRequestsFree.next = _this; + } else { + state.corkedRequestsFree = _this; + } + }; +} +}).call(this,require('_process')) +},{"./_stream_duplex":62,"_process":58,"buffer":45,"buffer-shims":44,"core-util-is":47,"events":50,"inherits":53,"process-nextick-args":57,"util-deprecate":73}],67:[function(require,module,exports){ +module.exports = require("./lib/_stream_passthrough.js") + +},{"./lib/_stream_passthrough.js":63}],68:[function(require,module,exports){ +(function (process){ +var Stream = (function (){ + try { + return require('st' + 'ream'); // hack to fix a circular dependency issue when used with browserify + } catch(_){} +}()); +exports = module.exports = require('./lib/_stream_readable.js'); +exports.Stream = Stream || exports; +exports.Readable = exports; +exports.Writable = require('./lib/_stream_writable.js'); +exports.Duplex = require('./lib/_stream_duplex.js'); +exports.Transform = require('./lib/_stream_transform.js'); +exports.PassThrough = require('./lib/_stream_passthrough.js'); + +if (!process.browser && process.env.READABLE_STREAM === 'disable' && Stream) { + module.exports = Stream; +} + +}).call(this,require('_process')) +},{"./lib/_stream_duplex.js":62,"./lib/_stream_passthrough.js":63,"./lib/_stream_readable.js":64,"./lib/_stream_transform.js":65,"./lib/_stream_writable.js":66,"_process":58}],69:[function(require,module,exports){ +module.exports = require("./lib/_stream_transform.js") + +},{"./lib/_stream_transform.js":65}],70:[function(require,module,exports){ +module.exports = require("./lib/_stream_writable.js") + +},{"./lib/_stream_writable.js":66}],71:[function(require,module,exports){ +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + +var Buffer = require('buffer').Buffer; + +var isBufferEncoding = Buffer.isEncoding + || function(encoding) { + switch (encoding && encoding.toLowerCase()) { + case 'hex': case 'utf8': case 'utf-8': case 'ascii': case 'binary': case 'base64': case 'ucs2': case 'ucs-2': case 'utf16le': case 'utf-16le': case 'raw': return true; + default: return false; + } + } + + +function assertEncoding(encoding) { + if (encoding && !isBufferEncoding(encoding)) { + throw new Error('Unknown encoding: ' + encoding); + } +} + +// StringDecoder provides an interface for efficiently splitting a series of +// buffers into a series of JS strings without breaking apart multi-byte +// characters. CESU-8 is handled as part of the UTF-8 encoding. +// +// @TODO Handling all encodings inside a single object makes it very difficult +// to reason about this code, so it should be split up in the future. +// @TODO There should be a utf8-strict encoding that rejects invalid UTF-8 code +// points as used by CESU-8. +var StringDecoder = exports.StringDecoder = function(encoding) { + this.encoding = (encoding || 'utf8').toLowerCase().replace(/[-_]/, ''); + assertEncoding(encoding); + switch (this.encoding) { + case 'utf8': + // CESU-8 represents each of Surrogate Pair by 3-bytes + this.surrogateSize = 3; + break; + case 'ucs2': + case 'utf16le': + // UTF-16 represents each of Surrogate Pair by 2-bytes + this.surrogateSize = 2; + this.detectIncompleteChar = utf16DetectIncompleteChar; + break; + case 'base64': + // Base-64 stores 3 bytes in 4 chars, and pads the remainder. + this.surrogateSize = 3; + this.detectIncompleteChar = base64DetectIncompleteChar; + break; + default: + this.write = passThroughWrite; + return; + } + + // Enough space to store all bytes of a single character. UTF-8 needs 4 + // bytes, but CESU-8 may require up to 6 (3 bytes per surrogate). + this.charBuffer = new Buffer(6); + // Number of bytes received for the current incomplete multi-byte character. + this.charReceived = 0; + // Number of bytes expected for the current incomplete multi-byte character. + this.charLength = 0; +}; + + +// write decodes the given buffer and returns it as JS string that is +// guaranteed to not contain any partial multi-byte characters. Any partial +// character found at the end of the buffer is buffered up, and will be +// returned when calling write again with the remaining bytes. +// +// Note: Converting a Buffer containing an orphan surrogate to a String +// currently works, but converting a String to a Buffer (via `new Buffer`, or +// Buffer#write) will replace incomplete surrogates with the unicode +// replacement character. See https://codereview.chromium.org/121173009/ . +StringDecoder.prototype.write = function(buffer) { + var charStr = ''; + // if our last write ended with an incomplete multibyte character + while (this.charLength) { + // determine how many remaining bytes this buffer has to offer for this char + var available = (buffer.length >= this.charLength - this.charReceived) ? + this.charLength - this.charReceived : + buffer.length; + + // add the new bytes to the char buffer + buffer.copy(this.charBuffer, this.charReceived, 0, available); + this.charReceived += available; + + if (this.charReceived < this.charLength) { + // still not enough chars in this buffer? wait for more ... + return ''; + } + + // remove bytes belonging to the current character from the buffer + buffer = buffer.slice(available, buffer.length); + + // get the character that was split + charStr = this.charBuffer.slice(0, this.charLength).toString(this.encoding); + + // CESU-8: lead surrogate (D800-DBFF) is also the incomplete character + var charCode = charStr.charCodeAt(charStr.length - 1); + if (charCode >= 0xD800 && charCode <= 0xDBFF) { + this.charLength += this.surrogateSize; + charStr = ''; + continue; + } + this.charReceived = this.charLength = 0; + + // if there are no more bytes in this buffer, just emit our char + if (buffer.length === 0) { + return charStr; + } + break; + } + + // determine and set charLength / charReceived + this.detectIncompleteChar(buffer); + + var end = buffer.length; + if (this.charLength) { + // buffer the incomplete character bytes we got + buffer.copy(this.charBuffer, 0, buffer.length - this.charReceived, end); + end -= this.charReceived; + } + + charStr += buffer.toString(this.encoding, 0, end); + + var end = charStr.length - 1; + var charCode = charStr.charCodeAt(end); + // CESU-8: lead surrogate (D800-DBFF) is also the incomplete character + if (charCode >= 0xD800 && charCode <= 0xDBFF) { + var size = this.surrogateSize; + this.charLength += size; + this.charReceived += size; + this.charBuffer.copy(this.charBuffer, size, 0, size); + buffer.copy(this.charBuffer, 0, 0, size); + return charStr.substring(0, end); + } + + // or just emit the charStr + return charStr; +}; + +// detectIncompleteChar determines if there is an incomplete UTF-8 character at +// the end of the given buffer. If so, it sets this.charLength to the byte +// length that character, and sets this.charReceived to the number of bytes +// that are available for this character. +StringDecoder.prototype.detectIncompleteChar = function(buffer) { + // determine how many bytes we have to check at the end of this buffer + var i = (buffer.length >= 3) ? 3 : buffer.length; + + // Figure out if one of the last i bytes of our buffer announces an + // incomplete char. + for (; i > 0; i--) { + var c = buffer[buffer.length - i]; + + // See http://en.wikipedia.org/wiki/UTF-8#Description + + // 110XXXXX + if (i == 1 && c >> 5 == 0x06) { + this.charLength = 2; + break; + } + + // 1110XXXX + if (i <= 2 && c >> 4 == 0x0E) { + this.charLength = 3; + break; + } + + // 11110XXX + if (i <= 3 && c >> 3 == 0x1E) { + this.charLength = 4; + break; + } + } + this.charReceived = i; +}; + +StringDecoder.prototype.end = function(buffer) { + var res = ''; + if (buffer && buffer.length) + res = this.write(buffer); + + if (this.charReceived) { + var cr = this.charReceived; + var buf = this.charBuffer; + var enc = this.encoding; + res += buf.slice(0, cr).toString(enc); + } + + return res; +}; + +function passThroughWrite(buffer) { + return buffer.toString(this.encoding); +} + +function utf16DetectIncompleteChar(buffer) { + this.charReceived = buffer.length % 2; + this.charLength = this.charReceived ? 2 : 0; +} + +function base64DetectIncompleteChar(buffer) { + this.charReceived = buffer.length % 3; + this.charLength = this.charReceived ? 3 : 0; +} + +},{"buffer":45}],72:[function(require,module,exports){ + +/** + * Expose `toIsoString`. + */ + +module.exports = toIsoString; + + +/** + * Turn a `date` into an ISO string. + * + * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString + * + * @param {Date} date + * @return {String} + */ + +function toIsoString (date) { + return date.getUTCFullYear() + + '-' + pad(date.getUTCMonth() + 1) + + '-' + pad(date.getUTCDate()) + + 'T' + pad(date.getUTCHours()) + + ':' + pad(date.getUTCMinutes()) + + ':' + pad(date.getUTCSeconds()) + + '.' + String((date.getUTCMilliseconds()/1000).toFixed(3)).slice(2, 5) + + 'Z'; +} + + +/** + * Pad a `number` with a ten's place zero. + * + * @param {Number} number + * @return {String} + */ + +function pad (number) { + var n = number.toString(); + return n.length === 1 ? '0' + n : n; +} +},{}],73:[function(require,module,exports){ +(function (global){ + +/** + * Module exports. + */ + +module.exports = deprecate; + +/** + * Mark that a method should not be used. + * Returns a modified function which warns once by default. + * + * If `localStorage.noDeprecation = true` is set, then it is a no-op. + * + * If `localStorage.throwDeprecation = true` is set, then deprecated functions + * will throw an Error when invoked. + * + * If `localStorage.traceDeprecation = true` is set, then deprecated functions + * will invoke `console.trace()` instead of `console.error()`. + * + * @param {Function} fn - the function to deprecate + * @param {String} msg - the string to print to the console when `fn` is invoked + * @returns {Function} a new "deprecated" version of `fn` + * @api public + */ + +function deprecate (fn, msg) { + if (config('noDeprecation')) { + return fn; + } + + var warned = false; + function deprecated() { + if (!warned) { + if (config('throwDeprecation')) { + throw new Error(msg); + } else if (config('traceDeprecation')) { + console.trace(msg); + } else { + console.warn(msg); + } + warned = true; + } + return fn.apply(this, arguments); + } + + return deprecated; +} + +/** + * Checks `localStorage` for boolean values for the given `name`. + * + * @param {String} name + * @returns {Boolean} + * @api private + */ + +function config (name) { + // accessing global.localStorage can trigger a DOMException in sandboxed iframes + try { + if (!global.localStorage) return false; + } catch (_) { + return false; + } + var val = global.localStorage[name]; + if (null == val) return false; + return String(val).toLowerCase() === 'true'; +} + +}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) +},{}],74:[function(require,module,exports){ +module.exports = function isBuffer(arg) { + return arg && typeof arg === 'object' + && typeof arg.copy === 'function' + && typeof arg.fill === 'function' + && typeof arg.readUInt8 === 'function'; +} +},{}],75:[function(require,module,exports){ +(function (process,global){ +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + +var formatRegExp = /%[sdj%]/g; +exports.format = function(f) { + if (!isString(f)) { + var objects = []; + for (var i = 0; i < arguments.length; i++) { + objects.push(inspect(arguments[i])); + } + return objects.join(' '); + } + + var i = 1; + var args = arguments; + var len = args.length; + var str = String(f).replace(formatRegExp, function(x) { + if (x === '%%') return '%'; + if (i >= len) return x; + switch (x) { + case '%s': return String(args[i++]); + case '%d': return Number(args[i++]); + case '%j': + try { + return JSON.stringify(args[i++]); + } catch (_) { + return '[Circular]'; + } + default: + return x; + } + }); + for (var x = args[i]; i < len; x = args[++i]) { + if (isNull(x) || !isObject(x)) { + str += ' ' + x; + } else { + str += ' ' + inspect(x); + } + } + return str; +}; + + +// Mark that a method should not be used. +// Returns a modified function which warns once by default. +// If --no-deprecation is set, then it is a no-op. +exports.deprecate = function(fn, msg) { + // Allow for deprecating things in the process of starting up. + if (isUndefined(global.process)) { + return function() { + return exports.deprecate(fn, msg).apply(this, arguments); + }; + } + + if (process.noDeprecation === true) { + return fn; + } + + var warned = false; + function deprecated() { + if (!warned) { + if (process.throwDeprecation) { + throw new Error(msg); + } else if (process.traceDeprecation) { + console.trace(msg); + } else { + console.error(msg); + } + warned = true; + } + return fn.apply(this, arguments); + } + + return deprecated; +}; + + +var debugs = {}; +var debugEnviron; +exports.debuglog = function(set) { + if (isUndefined(debugEnviron)) + debugEnviron = process.env.NODE_DEBUG || ''; + set = set.toUpperCase(); + if (!debugs[set]) { + if (new RegExp('\\b' + set + '\\b', 'i').test(debugEnviron)) { + var pid = process.pid; + debugs[set] = function() { + var msg = exports.format.apply(exports, arguments); + console.error('%s %d: %s', set, pid, msg); + }; + } else { + debugs[set] = function() {}; + } + } + return debugs[set]; +}; + + +/** + * Echos the value of a value. Trys to print the value out + * in the best way possible given the different types. + * + * @param {Object} obj The object to print out. + * @param {Object} opts Optional options object that alters the output. + */ +/* legacy: obj, showHidden, depth, colors*/ +function inspect(obj, opts) { + // default options + var ctx = { + seen: [], + stylize: stylizeNoColor + }; + // legacy... + if (arguments.length >= 3) ctx.depth = arguments[2]; + if (arguments.length >= 4) ctx.colors = arguments[3]; + if (isBoolean(opts)) { + // legacy... + ctx.showHidden = opts; + } else if (opts) { + // got an "options" object + exports._extend(ctx, opts); + } + // set default options + if (isUndefined(ctx.showHidden)) ctx.showHidden = false; + if (isUndefined(ctx.depth)) ctx.depth = 2; + if (isUndefined(ctx.colors)) ctx.colors = false; + if (isUndefined(ctx.customInspect)) ctx.customInspect = true; + if (ctx.colors) ctx.stylize = stylizeWithColor; + return formatValue(ctx, obj, ctx.depth); +} +exports.inspect = inspect; + + +// http://en.wikipedia.org/wiki/ANSI_escape_code#graphics +inspect.colors = { + 'bold' : [1, 22], + 'italic' : [3, 23], + 'underline' : [4, 24], + 'inverse' : [7, 27], + 'white' : [37, 39], + 'grey' : [90, 39], + 'black' : [30, 39], + 'blue' : [34, 39], + 'cyan' : [36, 39], + 'green' : [32, 39], + 'magenta' : [35, 39], + 'red' : [31, 39], + 'yellow' : [33, 39] +}; + +// Don't use 'blue' not visible on cmd.exe +inspect.styles = { + 'special': 'cyan', + 'number': 'yellow', + 'boolean': 'yellow', + 'undefined': 'grey', + 'null': 'bold', + 'string': 'green', + 'date': 'magenta', + // "name": intentionally not styling + 'regexp': 'red' +}; + + +function stylizeWithColor(str, styleType) { + var style = inspect.styles[styleType]; + + if (style) { + return '\u001b[' + inspect.colors[style][0] + 'm' + str + + '\u001b[' + inspect.colors[style][1] + 'm'; + } else { + return str; + } +} + + +function stylizeNoColor(str, styleType) { + return str; +} + + +function arrayToHash(array) { + var hash = {}; + + array.forEach(function(val, idx) { + hash[val] = true; + }); + + return hash; +} + + +function formatValue(ctx, value, recurseTimes) { + // Provide a hook for user-specified inspect functions. + // Check that value is an object with an inspect function on it + if (ctx.customInspect && + value && + isFunction(value.inspect) && + // Filter out the util module, it's inspect function is special + value.inspect !== exports.inspect && + // Also filter out any prototype objects using the circular check. + !(value.constructor && value.constructor.prototype === value)) { + var ret = value.inspect(recurseTimes, ctx); + if (!isString(ret)) { + ret = formatValue(ctx, ret, recurseTimes); + } + return ret; + } + + // Primitive types cannot have properties + var primitive = formatPrimitive(ctx, value); + if (primitive) { + return primitive; + } + + // Look up the keys of the object. + var keys = Object.keys(value); + var visibleKeys = arrayToHash(keys); + + if (ctx.showHidden) { + keys = Object.getOwnPropertyNames(value); + } + + // IE doesn't make error fields non-enumerable + // http://msdn.microsoft.com/en-us/library/ie/dww52sbt(v=vs.94).aspx + if (isError(value) + && (keys.indexOf('message') >= 0 || keys.indexOf('description') >= 0)) { + return formatError(value); + } + + // Some type of object without properties can be shortcutted. + if (keys.length === 0) { + if (isFunction(value)) { + var name = value.name ? ': ' + value.name : ''; + return ctx.stylize('[Function' + name + ']', 'special'); + } + if (isRegExp(value)) { + return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp'); + } + if (isDate(value)) { + return ctx.stylize(Date.prototype.toString.call(value), 'date'); + } + if (isError(value)) { + return formatError(value); + } + } + + var base = '', array = false, braces = ['{', '}']; + + // Make Array say that they are Array + if (isArray(value)) { + array = true; + braces = ['[', ']']; + } + + // Make functions say that they are functions + if (isFunction(value)) { + var n = value.name ? ': ' + value.name : ''; + base = ' [Function' + n + ']'; + } + + // Make RegExps say that they are RegExps + if (isRegExp(value)) { + base = ' ' + RegExp.prototype.toString.call(value); + } + + // Make dates with properties first say the date + if (isDate(value)) { + base = ' ' + Date.prototype.toUTCString.call(value); + } + + // Make error with message first say the error + if (isError(value)) { + base = ' ' + formatError(value); + } + + if (keys.length === 0 && (!array || value.length == 0)) { + return braces[0] + base + braces[1]; + } + + if (recurseTimes < 0) { + if (isRegExp(value)) { + return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp'); + } else { + return ctx.stylize('[Object]', 'special'); + } + } + + ctx.seen.push(value); + + var output; + if (array) { + output = formatArray(ctx, value, recurseTimes, visibleKeys, keys); + } else { + output = keys.map(function(key) { + return formatProperty(ctx, value, recurseTimes, visibleKeys, key, array); + }); + } + + ctx.seen.pop(); + + return reduceToSingleString(output, base, braces); +} + + +function formatPrimitive(ctx, value) { + if (isUndefined(value)) + return ctx.stylize('undefined', 'undefined'); + if (isString(value)) { + var simple = '\'' + JSON.stringify(value).replace(/^"|"$/g, '') + .replace(/'/g, "\\'") + .replace(/\\"/g, '"') + '\''; + return ctx.stylize(simple, 'string'); + } + if (isNumber(value)) + return ctx.stylize('' + value, 'number'); + if (isBoolean(value)) + return ctx.stylize('' + value, 'boolean'); + // For some reason typeof null is "object", so special case here. + if (isNull(value)) + return ctx.stylize('null', 'null'); +} + + +function formatError(value) { + return '[' + Error.prototype.toString.call(value) + ']'; +} + + +function formatArray(ctx, value, recurseTimes, visibleKeys, keys) { + var output = []; + for (var i = 0, l = value.length; i < l; ++i) { + if (hasOwnProperty(value, String(i))) { + output.push(formatProperty(ctx, value, recurseTimes, visibleKeys, + String(i), true)); + } else { + output.push(''); + } + } + keys.forEach(function(key) { + if (!key.match(/^\d+$/)) { + output.push(formatProperty(ctx, value, recurseTimes, visibleKeys, + key, true)); + } + }); + return output; +} + + +function formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) { + var name, str, desc; + desc = Object.getOwnPropertyDescriptor(value, key) || { value: value[key] }; + if (desc.get) { + if (desc.set) { + str = ctx.stylize('[Getter/Setter]', 'special'); + } else { + str = ctx.stylize('[Getter]', 'special'); + } + } else { + if (desc.set) { + str = ctx.stylize('[Setter]', 'special'); + } + } + if (!hasOwnProperty(visibleKeys, key)) { + name = '[' + key + ']'; + } + if (!str) { + if (ctx.seen.indexOf(desc.value) < 0) { + if (isNull(recurseTimes)) { + str = formatValue(ctx, desc.value, null); + } else { + str = formatValue(ctx, desc.value, recurseTimes - 1); + } + if (str.indexOf('\n') > -1) { + if (array) { + str = str.split('\n').map(function(line) { + return ' ' + line; + }).join('\n').substr(2); + } else { + str = '\n' + str.split('\n').map(function(line) { + return ' ' + line; + }).join('\n'); + } + } + } else { + str = ctx.stylize('[Circular]', 'special'); + } + } + if (isUndefined(name)) { + if (array && key.match(/^\d+$/)) { + return str; + } + name = JSON.stringify('' + key); + if (name.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)) { + name = name.substr(1, name.length - 2); + name = ctx.stylize(name, 'name'); + } else { + name = name.replace(/'/g, "\\'") + .replace(/\\"/g, '"') + .replace(/(^"|"$)/g, "'"); + name = ctx.stylize(name, 'string'); + } + } + + return name + ': ' + str; +} + + +function reduceToSingleString(output, base, braces) { + var numLinesEst = 0; + var length = output.reduce(function(prev, cur) { + numLinesEst++; + if (cur.indexOf('\n') >= 0) numLinesEst++; + return prev + cur.replace(/\u001b\[\d\d?m/g, '').length + 1; + }, 0); + + if (length > 60) { + return braces[0] + + (base === '' ? '' : base + '\n ') + + ' ' + + output.join(',\n ') + + ' ' + + braces[1]; + } + + return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1]; +} + + +// NOTE: These type checking functions intentionally don't use `instanceof` +// because it is fragile and can be easily faked with `Object.create()`. +function isArray(ar) { + return Array.isArray(ar); +} +exports.isArray = isArray; + +function isBoolean(arg) { + return typeof arg === 'boolean'; +} +exports.isBoolean = isBoolean; + +function isNull(arg) { + return arg === null; +} +exports.isNull = isNull; + +function isNullOrUndefined(arg) { + return arg == null; +} +exports.isNullOrUndefined = isNullOrUndefined; + +function isNumber(arg) { + return typeof arg === 'number'; +} +exports.isNumber = isNumber; + +function isString(arg) { + return typeof arg === 'string'; +} +exports.isString = isString; + +function isSymbol(arg) { + return typeof arg === 'symbol'; +} +exports.isSymbol = isSymbol; + +function isUndefined(arg) { + return arg === void 0; +} +exports.isUndefined = isUndefined; + +function isRegExp(re) { + return isObject(re) && objectToString(re) === '[object RegExp]'; +} +exports.isRegExp = isRegExp; + +function isObject(arg) { + return typeof arg === 'object' && arg !== null; +} +exports.isObject = isObject; + +function isDate(d) { + return isObject(d) && objectToString(d) === '[object Date]'; +} +exports.isDate = isDate; + +function isError(e) { + return isObject(e) && + (objectToString(e) === '[object Error]' || e instanceof Error); +} +exports.isError = isError; + +function isFunction(arg) { + return typeof arg === 'function'; +} +exports.isFunction = isFunction; + +function isPrimitive(arg) { + return arg === null || + typeof arg === 'boolean' || + typeof arg === 'number' || + typeof arg === 'string' || + typeof arg === 'symbol' || // ES6 symbol + typeof arg === 'undefined'; +} +exports.isPrimitive = isPrimitive; + +exports.isBuffer = require('./support/isBuffer'); + +function objectToString(o) { + return Object.prototype.toString.call(o); +} + + +function pad(n) { + return n < 10 ? '0' + n.toString(10) : n.toString(10); +} + + +var months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', + 'Oct', 'Nov', 'Dec']; + +// 26 Feb 16:19:34 +function timestamp() { + var d = new Date(); + var time = [pad(d.getHours()), + pad(d.getMinutes()), + pad(d.getSeconds())].join(':'); + return [d.getDate(), months[d.getMonth()], time].join(' '); +} + + +// log is just a thin wrapper to console.log that prepends a timestamp +exports.log = function() { + console.log('%s - %s', timestamp(), exports.format.apply(exports, arguments)); +}; + + +/** + * Inherit the prototype methods from one constructor into another. + * + * The Function.prototype.inherits from lang.js rewritten as a standalone + * function (not on Function.prototype). NOTE: If this file is to be loaded + * during bootstrapping this function needs to be rewritten using some native + * functions as prototype setup using normal JavaScript does not work as + * expected during bootstrapping (see mirror.js in r114903). + * + * @param {function} ctor Constructor function which needs to inherit the + * prototype. + * @param {function} superCtor Constructor function to inherit prototype from. + */ +exports.inherits = require('inherits'); + +exports._extend = function(origin, add) { + // Don't do anything if add isn't an object + if (!add || !isObject(add)) return origin; + + var keys = Object.keys(add); + var i = keys.length; + while (i--) { + origin[keys[i]] = add[keys[i]]; + } + return origin; +}; + +function hasOwnProperty(obj, prop) { + return Object.prototype.hasOwnProperty.call(obj, prop); +} + +}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) +},{"./support/isBuffer":74,"_process":58,"inherits":53}]},{},[1]); + +(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.chai = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o + * MIT Licensed + */ + +var used = [] + , exports = module.exports = {}; + +/*! + * Chai version + */ + +exports.version = '3.5.0'; + +/*! + * Assertion Error + */ + +exports.AssertionError = require('assertion-error'); + +/*! + * Utils for plugins (not exported) + */ + +var util = require('./chai/utils'); + +/** + * # .use(function) + * + * Provides a way to extend the internals of Chai + * + * @param {Function} + * @returns {this} for chaining + * @api public + */ + +exports.use = function (fn) { + if (!~used.indexOf(fn)) { + fn(this, util); + used.push(fn); + } + + return this; +}; + +/*! + * Utility Functions + */ + +exports.util = util; + +/*! + * Configuration + */ + +var config = require('./chai/config'); +exports.config = config; + +/*! + * Primary `Assertion` prototype + */ + +var assertion = require('./chai/assertion'); +exports.use(assertion); + +/*! + * Core Assertions + */ + +var core = require('./chai/core/assertions'); +exports.use(core); + +/*! + * Expect interface + */ + +var expect = require('./chai/interface/expect'); +exports.use(expect); + +/*! + * Should interface + */ + +var should = require('./chai/interface/should'); +exports.use(should); + +/*! + * Assert interface + */ + +var assert = require('./chai/interface/assert'); +exports.use(assert); + +},{"./chai/assertion":3,"./chai/config":4,"./chai/core/assertions":5,"./chai/interface/assert":6,"./chai/interface/expect":7,"./chai/interface/should":8,"./chai/utils":22,"assertion-error":30}],3:[function(require,module,exports){ +/*! + * chai + * http://chaijs.com + * Copyright(c) 2011-2014 Jake Luer + * MIT Licensed + */ + +var config = require('./config'); + +module.exports = function (_chai, util) { + /*! + * Module dependencies. + */ + + var AssertionError = _chai.AssertionError + , flag = util.flag; + + /*! + * Module export. + */ + + _chai.Assertion = Assertion; + + /*! + * Assertion Constructor + * + * Creates object for chaining. + * + * @api private + */ + + function Assertion (obj, msg, stack) { + flag(this, 'ssfi', stack || arguments.callee); + flag(this, 'object', obj); + flag(this, 'message', msg); + } + + Object.defineProperty(Assertion, 'includeStack', { + get: function() { + console.warn('Assertion.includeStack is deprecated, use chai.config.includeStack instead.'); + return config.includeStack; + }, + set: function(value) { + console.warn('Assertion.includeStack is deprecated, use chai.config.includeStack instead.'); + config.includeStack = value; + } + }); + + Object.defineProperty(Assertion, 'showDiff', { + get: function() { + console.warn('Assertion.showDiff is deprecated, use chai.config.showDiff instead.'); + return config.showDiff; + }, + set: function(value) { + console.warn('Assertion.showDiff is deprecated, use chai.config.showDiff instead.'); + config.showDiff = value; + } + }); + + Assertion.addProperty = function (name, fn) { + util.addProperty(this.prototype, name, fn); + }; + + Assertion.addMethod = function (name, fn) { + util.addMethod(this.prototype, name, fn); + }; + + Assertion.addChainableMethod = function (name, fn, chainingBehavior) { + util.addChainableMethod(this.prototype, name, fn, chainingBehavior); + }; + + Assertion.overwriteProperty = function (name, fn) { + util.overwriteProperty(this.prototype, name, fn); + }; + + Assertion.overwriteMethod = function (name, fn) { + util.overwriteMethod(this.prototype, name, fn); + }; + + Assertion.overwriteChainableMethod = function (name, fn, chainingBehavior) { + util.overwriteChainableMethod(this.prototype, name, fn, chainingBehavior); + }; + + /** + * ### .assert(expression, message, negateMessage, expected, actual, showDiff) + * + * Executes an expression and check expectations. Throws AssertionError for reporting if test doesn't pass. + * + * @name assert + * @param {Philosophical} expression to be tested + * @param {String|Function} message or function that returns message to display if expression fails + * @param {String|Function} negatedMessage or function that returns negatedMessage to display if negated expression fails + * @param {Mixed} expected value (remember to check for negation) + * @param {Mixed} actual (optional) will default to `this.obj` + * @param {Boolean} showDiff (optional) when set to `true`, assert will display a diff in addition to the message if expression fails + * @api private + */ + + Assertion.prototype.assert = function (expr, msg, negateMsg, expected, _actual, showDiff) { + var ok = util.test(this, arguments); + if (true !== showDiff) showDiff = false; + if (true !== config.showDiff) showDiff = false; + + if (!ok) { + var msg = util.getMessage(this, arguments) + , actual = util.getActual(this, arguments); + throw new AssertionError(msg, { + actual: actual + , expected: expected + , showDiff: showDiff + }, (config.includeStack) ? this.assert : flag(this, 'ssfi')); + } + }; + + /*! + * ### ._obj + * + * Quick reference to stored `actual` value for plugin developers. + * + * @api private + */ + + Object.defineProperty(Assertion.prototype, '_obj', + { get: function () { + return flag(this, 'object'); + } + , set: function (val) { + flag(this, 'object', val); + } + }); +}; + +},{"./config":4}],4:[function(require,module,exports){ +module.exports = { + + /** + * ### config.includeStack + * + * User configurable property, influences whether stack trace + * is included in Assertion error message. Default of false + * suppresses stack trace in the error message. + * + * chai.config.includeStack = true; // enable stack on error + * + * @param {Boolean} + * @api public + */ + + includeStack: false, + + /** + * ### config.showDiff + * + * User configurable property, influences whether or not + * the `showDiff` flag should be included in the thrown + * AssertionErrors. `false` will always be `false`; `true` + * will be true when the assertion has requested a diff + * be shown. + * + * @param {Boolean} + * @api public + */ + + showDiff: true, + + /** + * ### config.truncateThreshold + * + * User configurable property, sets length threshold for actual and + * expected values in assertion errors. If this threshold is exceeded, for + * example for large data structures, the value is replaced with something + * like `[ Array(3) ]` or `{ Object (prop1, prop2) }`. + * + * Set it to zero if you want to disable truncating altogether. + * + * This is especially userful when doing assertions on arrays: having this + * set to a reasonable large value makes the failure messages readily + * inspectable. + * + * chai.config.truncateThreshold = 0; // disable truncating + * + * @param {Number} + * @api public + */ + + truncateThreshold: 40 + +}; + +},{}],5:[function(require,module,exports){ +/*! + * chai + * http://chaijs.com + * Copyright(c) 2011-2014 Jake Luer + * MIT Licensed + */ + +module.exports = function (chai, _) { + var Assertion = chai.Assertion + , toString = Object.prototype.toString + , flag = _.flag; + + /** + * ### Language Chains + * + * The following are provided as chainable getters to + * improve the readability of your assertions. They + * do not provide testing capabilities unless they + * have been overwritten by a plugin. + * + * **Chains** + * + * - to + * - be + * - been + * - is + * - that + * - which + * - and + * - has + * - have + * - with + * - at + * - of + * - same + * + * @name language chains + * @namespace BDD + * @api public + */ + + [ 'to', 'be', 'been' + , 'is', 'and', 'has', 'have' + , 'with', 'that', 'which', 'at' + , 'of', 'same' ].forEach(function (chain) { + Assertion.addProperty(chain, function () { + return this; + }); + }); + + /** + * ### .not + * + * Negates any of assertions following in the chain. + * + * expect(foo).to.not.equal('bar'); + * expect(goodFn).to.not.throw(Error); + * expect({ foo: 'baz' }).to.have.property('foo') + * .and.not.equal('bar'); + * + * @name not + * @namespace BDD + * @api public + */ + + Assertion.addProperty('not', function () { + flag(this, 'negate', true); + }); + + /** + * ### .deep + * + * Sets the `deep` flag, later used by the `equal` and + * `property` assertions. + * + * expect(foo).to.deep.equal({ bar: 'baz' }); + * expect({ foo: { bar: { baz: 'quux' } } }) + * .to.have.deep.property('foo.bar.baz', 'quux'); + * + * `.deep.property` special characters can be escaped + * by adding two slashes before the `.` or `[]`. + * + * var deepCss = { '.link': { '[target]': 42 }}; + * expect(deepCss).to.have.deep.property('\\.link.\\[target\\]', 42); + * + * @name deep + * @namespace BDD + * @api public + */ + + Assertion.addProperty('deep', function () { + flag(this, 'deep', true); + }); + + /** + * ### .any + * + * Sets the `any` flag, (opposite of the `all` flag) + * later used in the `keys` assertion. + * + * expect(foo).to.have.any.keys('bar', 'baz'); + * + * @name any + * @namespace BDD + * @api public + */ + + Assertion.addProperty('any', function () { + flag(this, 'any', true); + flag(this, 'all', false) + }); + + + /** + * ### .all + * + * Sets the `all` flag (opposite of the `any` flag) + * later used by the `keys` assertion. + * + * expect(foo).to.have.all.keys('bar', 'baz'); + * + * @name all + * @namespace BDD + * @api public + */ + + Assertion.addProperty('all', function () { + flag(this, 'all', true); + flag(this, 'any', false); + }); + + /** + * ### .a(type) + * + * The `a` and `an` assertions are aliases that can be + * used either as language chains or to assert a value's + * type. + * + * // typeof + * expect('test').to.be.a('string'); + * expect({ foo: 'bar' }).to.be.an('object'); + * expect(null).to.be.a('null'); + * expect(undefined).to.be.an('undefined'); + * expect(new Error).to.be.an('error'); + * expect(new Promise).to.be.a('promise'); + * expect(new Float32Array()).to.be.a('float32array'); + * expect(Symbol()).to.be.a('symbol'); + * + * // es6 overrides + * expect({[Symbol.toStringTag]:()=>'foo'}).to.be.a('foo'); + * + * // language chain + * expect(foo).to.be.an.instanceof(Foo); + * + * @name a + * @alias an + * @param {String} type + * @param {String} message _optional_ + * @namespace BDD + * @api public + */ + + function an (type, msg) { + if (msg) flag(this, 'message', msg); + type = type.toLowerCase(); + var obj = flag(this, 'object') + , article = ~[ 'a', 'e', 'i', 'o', 'u' ].indexOf(type.charAt(0)) ? 'an ' : 'a '; + + this.assert( + type === _.type(obj) + , 'expected #{this} to be ' + article + type + , 'expected #{this} not to be ' + article + type + ); + } + + Assertion.addChainableMethod('an', an); + Assertion.addChainableMethod('a', an); + + /** + * ### .include(value) + * + * The `include` and `contain` assertions can be used as either property + * based language chains or as methods to assert the inclusion of an object + * in an array or a substring in a string. When used as language chains, + * they toggle the `contains` flag for the `keys` assertion. + * + * expect([1,2,3]).to.include(2); + * expect('foobar').to.contain('foo'); + * expect({ foo: 'bar', hello: 'universe' }).to.include.keys('foo'); + * + * @name include + * @alias contain + * @alias includes + * @alias contains + * @param {Object|String|Number} obj + * @param {String} message _optional_ + * @namespace BDD + * @api public + */ + + function includeChainingBehavior () { + flag(this, 'contains', true); + } + + function include (val, msg) { + _.expectTypes(this, ['array', 'object', 'string']); + + if (msg) flag(this, 'message', msg); + var obj = flag(this, 'object'); + var expected = false; + + if (_.type(obj) === 'array' && _.type(val) === 'object') { + for (var i in obj) { + if (_.eql(obj[i], val)) { + expected = true; + break; + } + } + } else if (_.type(val) === 'object') { + if (!flag(this, 'negate')) { + for (var k in val) new Assertion(obj).property(k, val[k]); + return; + } + var subset = {}; + for (var k in val) subset[k] = obj[k]; + expected = _.eql(subset, val); + } else { + expected = (obj != undefined) && ~obj.indexOf(val); + } + this.assert( + expected + , 'expected #{this} to include ' + _.inspect(val) + , 'expected #{this} to not include ' + _.inspect(val)); + } + + Assertion.addChainableMethod('include', include, includeChainingBehavior); + Assertion.addChainableMethod('contain', include, includeChainingBehavior); + Assertion.addChainableMethod('contains', include, includeChainingBehavior); + Assertion.addChainableMethod('includes', include, includeChainingBehavior); + + /** + * ### .ok + * + * Asserts that the target is truthy. + * + * expect('everything').to.be.ok; + * expect(1).to.be.ok; + * expect(false).to.not.be.ok; + * expect(undefined).to.not.be.ok; + * expect(null).to.not.be.ok; + * + * @name ok + * @namespace BDD + * @api public + */ + + Assertion.addProperty('ok', function () { + this.assert( + flag(this, 'object') + , 'expected #{this} to be truthy' + , 'expected #{this} to be falsy'); + }); + + /** + * ### .true + * + * Asserts that the target is `true`. + * + * expect(true).to.be.true; + * expect(1).to.not.be.true; + * + * @name true + * @namespace BDD + * @api public + */ + + Assertion.addProperty('true', function () { + this.assert( + true === flag(this, 'object') + , 'expected #{this} to be true' + , 'expected #{this} to be false' + , this.negate ? false : true + ); + }); + + /** + * ### .false + * + * Asserts that the target is `false`. + * + * expect(false).to.be.false; + * expect(0).to.not.be.false; + * + * @name false + * @namespace BDD + * @api public + */ + + Assertion.addProperty('false', function () { + this.assert( + false === flag(this, 'object') + , 'expected #{this} to be false' + , 'expected #{this} to be true' + , this.negate ? true : false + ); + }); + + /** + * ### .null + * + * Asserts that the target is `null`. + * + * expect(null).to.be.null; + * expect(undefined).to.not.be.null; + * + * @name null + * @namespace BDD + * @api public + */ + + Assertion.addProperty('null', function () { + this.assert( + null === flag(this, 'object') + , 'expected #{this} to be null' + , 'expected #{this} not to be null' + ); + }); + + /** + * ### .undefined + * + * Asserts that the target is `undefined`. + * + * expect(undefined).to.be.undefined; + * expect(null).to.not.be.undefined; + * + * @name undefined + * @namespace BDD + * @api public + */ + + Assertion.addProperty('undefined', function () { + this.assert( + undefined === flag(this, 'object') + , 'expected #{this} to be undefined' + , 'expected #{this} not to be undefined' + ); + }); + + /** + * ### .NaN + * Asserts that the target is `NaN`. + * + * expect('foo').to.be.NaN; + * expect(4).not.to.be.NaN; + * + * @name NaN + * @namespace BDD + * @api public + */ + + Assertion.addProperty('NaN', function () { + this.assert( + isNaN(flag(this, 'object')) + , 'expected #{this} to be NaN' + , 'expected #{this} not to be NaN' + ); + }); + + /** + * ### .exist + * + * Asserts that the target is neither `null` nor `undefined`. + * + * var foo = 'hi' + * , bar = null + * , baz; + * + * expect(foo).to.exist; + * expect(bar).to.not.exist; + * expect(baz).to.not.exist; + * + * @name exist + * @namespace BDD + * @api public + */ + + Assertion.addProperty('exist', function () { + this.assert( + null != flag(this, 'object') + , 'expected #{this} to exist' + , 'expected #{this} to not exist' + ); + }); + + + /** + * ### .empty + * + * Asserts that the target's length is `0`. For arrays and strings, it checks + * the `length` property. For objects, it gets the count of + * enumerable keys. + * + * expect([]).to.be.empty; + * expect('').to.be.empty; + * expect({}).to.be.empty; + * + * @name empty + * @namespace BDD + * @api public + */ + + Assertion.addProperty('empty', function () { + var obj = flag(this, 'object') + , expected = obj; + + if (Array.isArray(obj) || 'string' === typeof object) { + expected = obj.length; + } else if (typeof obj === 'object') { + expected = Object.keys(obj).length; + } + + this.assert( + !expected + , 'expected #{this} to be empty' + , 'expected #{this} not to be empty' + ); + }); + + /** + * ### .arguments + * + * Asserts that the target is an arguments object. + * + * function test () { + * expect(arguments).to.be.arguments; + * } + * + * @name arguments + * @alias Arguments + * @namespace BDD + * @api public + */ + + function checkArguments () { + var obj = flag(this, 'object') + , type = Object.prototype.toString.call(obj); + this.assert( + '[object Arguments]' === type + , 'expected #{this} to be arguments but got ' + type + , 'expected #{this} to not be arguments' + ); + } + + Assertion.addProperty('arguments', checkArguments); + Assertion.addProperty('Arguments', checkArguments); + + /** + * ### .equal(value) + * + * Asserts that the target is strictly equal (`===`) to `value`. + * Alternately, if the `deep` flag is set, asserts that + * the target is deeply equal to `value`. + * + * expect('hello').to.equal('hello'); + * expect(42).to.equal(42); + * expect(1).to.not.equal(true); + * expect({ foo: 'bar' }).to.not.equal({ foo: 'bar' }); + * expect({ foo: 'bar' }).to.deep.equal({ foo: 'bar' }); + * + * @name equal + * @alias equals + * @alias eq + * @alias deep.equal + * @param {Mixed} value + * @param {String} message _optional_ + * @namespace BDD + * @api public + */ + + function assertEqual (val, msg) { + if (msg) flag(this, 'message', msg); + var obj = flag(this, 'object'); + if (flag(this, 'deep')) { + return this.eql(val); + } else { + this.assert( + val === obj + , 'expected #{this} to equal #{exp}' + , 'expected #{this} to not equal #{exp}' + , val + , this._obj + , true + ); + } + } + + Assertion.addMethod('equal', assertEqual); + Assertion.addMethod('equals', assertEqual); + Assertion.addMethod('eq', assertEqual); + + /** + * ### .eql(value) + * + * Asserts that the target is deeply equal to `value`. + * + * expect({ foo: 'bar' }).to.eql({ foo: 'bar' }); + * expect([ 1, 2, 3 ]).to.eql([ 1, 2, 3 ]); + * + * @name eql + * @alias eqls + * @param {Mixed} value + * @param {String} message _optional_ + * @namespace BDD + * @api public + */ + + function assertEql(obj, msg) { + if (msg) flag(this, 'message', msg); + this.assert( + _.eql(obj, flag(this, 'object')) + , 'expected #{this} to deeply equal #{exp}' + , 'expected #{this} to not deeply equal #{exp}' + , obj + , this._obj + , true + ); + } + + Assertion.addMethod('eql', assertEql); + Assertion.addMethod('eqls', assertEql); + + /** + * ### .above(value) + * + * Asserts that the target is greater than `value`. + * + * expect(10).to.be.above(5); + * + * Can also be used in conjunction with `length` to + * assert a minimum length. The benefit being a + * more informative error message than if the length + * was supplied directly. + * + * expect('foo').to.have.length.above(2); + * expect([ 1, 2, 3 ]).to.have.length.above(2); + * + * @name above + * @alias gt + * @alias greaterThan + * @param {Number} value + * @param {String} message _optional_ + * @namespace BDD + * @api public + */ + + function assertAbove (n, msg) { + if (msg) flag(this, 'message', msg); + var obj = flag(this, 'object'); + if (flag(this, 'doLength')) { + new Assertion(obj, msg).to.have.property('length'); + var len = obj.length; + this.assert( + len > n + , 'expected #{this} to have a length above #{exp} but got #{act}' + , 'expected #{this} to not have a length above #{exp}' + , n + , len + ); + } else { + this.assert( + obj > n + , 'expected #{this} to be above ' + n + , 'expected #{this} to be at most ' + n + ); + } + } + + Assertion.addMethod('above', assertAbove); + Assertion.addMethod('gt', assertAbove); + Assertion.addMethod('greaterThan', assertAbove); + + /** + * ### .least(value) + * + * Asserts that the target is greater than or equal to `value`. + * + * expect(10).to.be.at.least(10); + * + * Can also be used in conjunction with `length` to + * assert a minimum length. The benefit being a + * more informative error message than if the length + * was supplied directly. + * + * expect('foo').to.have.length.of.at.least(2); + * expect([ 1, 2, 3 ]).to.have.length.of.at.least(3); + * + * @name least + * @alias gte + * @param {Number} value + * @param {String} message _optional_ + * @namespace BDD + * @api public + */ + + function assertLeast (n, msg) { + if (msg) flag(this, 'message', msg); + var obj = flag(this, 'object'); + if (flag(this, 'doLength')) { + new Assertion(obj, msg).to.have.property('length'); + var len = obj.length; + this.assert( + len >= n + , 'expected #{this} to have a length at least #{exp} but got #{act}' + , 'expected #{this} to have a length below #{exp}' + , n + , len + ); + } else { + this.assert( + obj >= n + , 'expected #{this} to be at least ' + n + , 'expected #{this} to be below ' + n + ); + } + } + + Assertion.addMethod('least', assertLeast); + Assertion.addMethod('gte', assertLeast); + + /** + * ### .below(value) + * + * Asserts that the target is less than `value`. + * + * expect(5).to.be.below(10); + * + * Can also be used in conjunction with `length` to + * assert a maximum length. The benefit being a + * more informative error message than if the length + * was supplied directly. + * + * expect('foo').to.have.length.below(4); + * expect([ 1, 2, 3 ]).to.have.length.below(4); + * + * @name below + * @alias lt + * @alias lessThan + * @param {Number} value + * @param {String} message _optional_ + * @namespace BDD + * @api public + */ + + function assertBelow (n, msg) { + if (msg) flag(this, 'message', msg); + var obj = flag(this, 'object'); + if (flag(this, 'doLength')) { + new Assertion(obj, msg).to.have.property('length'); + var len = obj.length; + this.assert( + len < n + , 'expected #{this} to have a length below #{exp} but got #{act}' + , 'expected #{this} to not have a length below #{exp}' + , n + , len + ); + } else { + this.assert( + obj < n + , 'expected #{this} to be below ' + n + , 'expected #{this} to be at least ' + n + ); + } + } + + Assertion.addMethod('below', assertBelow); + Assertion.addMethod('lt', assertBelow); + Assertion.addMethod('lessThan', assertBelow); + + /** + * ### .most(value) + * + * Asserts that the target is less than or equal to `value`. + * + * expect(5).to.be.at.most(5); + * + * Can also be used in conjunction with `length` to + * assert a maximum length. The benefit being a + * more informative error message than if the length + * was supplied directly. + * + * expect('foo').to.have.length.of.at.most(4); + * expect([ 1, 2, 3 ]).to.have.length.of.at.most(3); + * + * @name most + * @alias lte + * @param {Number} value + * @param {String} message _optional_ + * @namespace BDD + * @api public + */ + + function assertMost (n, msg) { + if (msg) flag(this, 'message', msg); + var obj = flag(this, 'object'); + if (flag(this, 'doLength')) { + new Assertion(obj, msg).to.have.property('length'); + var len = obj.length; + this.assert( + len <= n + , 'expected #{this} to have a length at most #{exp} but got #{act}' + , 'expected #{this} to have a length above #{exp}' + , n + , len + ); + } else { + this.assert( + obj <= n + , 'expected #{this} to be at most ' + n + , 'expected #{this} to be above ' + n + ); + } + } + + Assertion.addMethod('most', assertMost); + Assertion.addMethod('lte', assertMost); + + /** + * ### .within(start, finish) + * + * Asserts that the target is within a range. + * + * expect(7).to.be.within(5,10); + * + * Can also be used in conjunction with `length` to + * assert a length range. The benefit being a + * more informative error message than if the length + * was supplied directly. + * + * expect('foo').to.have.length.within(2,4); + * expect([ 1, 2, 3 ]).to.have.length.within(2,4); + * + * @name within + * @param {Number} start lowerbound inclusive + * @param {Number} finish upperbound inclusive + * @param {String} message _optional_ + * @namespace BDD + * @api public + */ + + Assertion.addMethod('within', function (start, finish, msg) { + if (msg) flag(this, 'message', msg); + var obj = flag(this, 'object') + , range = start + '..' + finish; + if (flag(this, 'doLength')) { + new Assertion(obj, msg).to.have.property('length'); + var len = obj.length; + this.assert( + len >= start && len <= finish + , 'expected #{this} to have a length within ' + range + , 'expected #{this} to not have a length within ' + range + ); + } else { + this.assert( + obj >= start && obj <= finish + , 'expected #{this} to be within ' + range + , 'expected #{this} to not be within ' + range + ); + } + }); + + /** + * ### .instanceof(constructor) + * + * Asserts that the target is an instance of `constructor`. + * + * var Tea = function (name) { this.name = name; } + * , Chai = new Tea('chai'); + * + * expect(Chai).to.be.an.instanceof(Tea); + * expect([ 1, 2, 3 ]).to.be.instanceof(Array); + * + * @name instanceof + * @param {Constructor} constructor + * @param {String} message _optional_ + * @alias instanceOf + * @namespace BDD + * @api public + */ + + function assertInstanceOf (constructor, msg) { + if (msg) flag(this, 'message', msg); + var name = _.getName(constructor); + this.assert( + flag(this, 'object') instanceof constructor + , 'expected #{this} to be an instance of ' + name + , 'expected #{this} to not be an instance of ' + name + ); + }; + + Assertion.addMethod('instanceof', assertInstanceOf); + Assertion.addMethod('instanceOf', assertInstanceOf); + + /** + * ### .property(name, [value]) + * + * Asserts that the target has a property `name`, optionally asserting that + * the value of that property is strictly equal to `value`. + * If the `deep` flag is set, you can use dot- and bracket-notation for deep + * references into objects and arrays. + * + * // simple referencing + * var obj = { foo: 'bar' }; + * expect(obj).to.have.property('foo'); + * expect(obj).to.have.property('foo', 'bar'); + * + * // deep referencing + * var deepObj = { + * green: { tea: 'matcha' } + * , teas: [ 'chai', 'matcha', { tea: 'konacha' } ] + * }; + * + * expect(deepObj).to.have.deep.property('green.tea', 'matcha'); + * expect(deepObj).to.have.deep.property('teas[1]', 'matcha'); + * expect(deepObj).to.have.deep.property('teas[2].tea', 'konacha'); + * + * You can also use an array as the starting point of a `deep.property` + * assertion, or traverse nested arrays. + * + * var arr = [ + * [ 'chai', 'matcha', 'konacha' ] + * , [ { tea: 'chai' } + * , { tea: 'matcha' } + * , { tea: 'konacha' } ] + * ]; + * + * expect(arr).to.have.deep.property('[0][1]', 'matcha'); + * expect(arr).to.have.deep.property('[1][2].tea', 'konacha'); + * + * Furthermore, `property` changes the subject of the assertion + * to be the value of that property from the original object. This + * permits for further chainable assertions on that property. + * + * expect(obj).to.have.property('foo') + * .that.is.a('string'); + * expect(deepObj).to.have.property('green') + * .that.is.an('object') + * .that.deep.equals({ tea: 'matcha' }); + * expect(deepObj).to.have.property('teas') + * .that.is.an('array') + * .with.deep.property('[2]') + * .that.deep.equals({ tea: 'konacha' }); + * + * Note that dots and bracket in `name` must be backslash-escaped when + * the `deep` flag is set, while they must NOT be escaped when the `deep` + * flag is not set. + * + * // simple referencing + * var css = { '.link[target]': 42 }; + * expect(css).to.have.property('.link[target]', 42); + * + * // deep referencing + * var deepCss = { '.link': { '[target]': 42 }}; + * expect(deepCss).to.have.deep.property('\\.link.\\[target\\]', 42); + * + * @name property + * @alias deep.property + * @param {String} name + * @param {Mixed} value (optional) + * @param {String} message _optional_ + * @returns value of property for chaining + * @namespace BDD + * @api public + */ + + Assertion.addMethod('property', function (name, val, msg) { + if (msg) flag(this, 'message', msg); + + var isDeep = !!flag(this, 'deep') + , descriptor = isDeep ? 'deep property ' : 'property ' + , negate = flag(this, 'negate') + , obj = flag(this, 'object') + , pathInfo = isDeep ? _.getPathInfo(name, obj) : null + , hasProperty = isDeep + ? pathInfo.exists + : _.hasProperty(name, obj) + , value = isDeep + ? pathInfo.value + : obj[name]; + + if (negate && arguments.length > 1) { + if (undefined === value) { + msg = (msg != null) ? msg + ': ' : ''; + throw new Error(msg + _.inspect(obj) + ' has no ' + descriptor + _.inspect(name)); + } + } else { + this.assert( + hasProperty + , 'expected #{this} to have a ' + descriptor + _.inspect(name) + , 'expected #{this} to not have ' + descriptor + _.inspect(name)); + } + + if (arguments.length > 1) { + this.assert( + val === value + , 'expected #{this} to have a ' + descriptor + _.inspect(name) + ' of #{exp}, but got #{act}' + , 'expected #{this} to not have a ' + descriptor + _.inspect(name) + ' of #{act}' + , val + , value + ); + } + + flag(this, 'object', value); + }); + + + /** + * ### .ownProperty(name) + * + * Asserts that the target has an own property `name`. + * + * expect('test').to.have.ownProperty('length'); + * + * @name ownProperty + * @alias haveOwnProperty + * @param {String} name + * @param {String} message _optional_ + * @namespace BDD + * @api public + */ + + function assertOwnProperty (name, msg) { + if (msg) flag(this, 'message', msg); + var obj = flag(this, 'object'); + this.assert( + obj.hasOwnProperty(name) + , 'expected #{this} to have own property ' + _.inspect(name) + , 'expected #{this} to not have own property ' + _.inspect(name) + ); + } + + Assertion.addMethod('ownProperty', assertOwnProperty); + Assertion.addMethod('haveOwnProperty', assertOwnProperty); + + /** + * ### .ownPropertyDescriptor(name[, descriptor[, message]]) + * + * Asserts that the target has an own property descriptor `name`, that optionally matches `descriptor`. + * + * expect('test').to.have.ownPropertyDescriptor('length'); + * expect('test').to.have.ownPropertyDescriptor('length', { enumerable: false, configurable: false, writable: false, value: 4 }); + * expect('test').not.to.have.ownPropertyDescriptor('length', { enumerable: false, configurable: false, writable: false, value: 3 }); + * expect('test').ownPropertyDescriptor('length').to.have.property('enumerable', false); + * expect('test').ownPropertyDescriptor('length').to.have.keys('value'); + * + * @name ownPropertyDescriptor + * @alias haveOwnPropertyDescriptor + * @param {String} name + * @param {Object} descriptor _optional_ + * @param {String} message _optional_ + * @namespace BDD + * @api public + */ + + function assertOwnPropertyDescriptor (name, descriptor, msg) { + if (typeof descriptor === 'string') { + msg = descriptor; + descriptor = null; + } + if (msg) flag(this, 'message', msg); + var obj = flag(this, 'object'); + var actualDescriptor = Object.getOwnPropertyDescriptor(Object(obj), name); + if (actualDescriptor && descriptor) { + this.assert( + _.eql(descriptor, actualDescriptor) + , 'expected the own property descriptor for ' + _.inspect(name) + ' on #{this} to match ' + _.inspect(descriptor) + ', got ' + _.inspect(actualDescriptor) + , 'expected the own property descriptor for ' + _.inspect(name) + ' on #{this} to not match ' + _.inspect(descriptor) + , descriptor + , actualDescriptor + , true + ); + } else { + this.assert( + actualDescriptor + , 'expected #{this} to have an own property descriptor for ' + _.inspect(name) + , 'expected #{this} to not have an own property descriptor for ' + _.inspect(name) + ); + } + flag(this, 'object', actualDescriptor); + } + + Assertion.addMethod('ownPropertyDescriptor', assertOwnPropertyDescriptor); + Assertion.addMethod('haveOwnPropertyDescriptor', assertOwnPropertyDescriptor); + + /** + * ### .length + * + * Sets the `doLength` flag later used as a chain precursor to a value + * comparison for the `length` property. + * + * expect('foo').to.have.length.above(2); + * expect([ 1, 2, 3 ]).to.have.length.above(2); + * expect('foo').to.have.length.below(4); + * expect([ 1, 2, 3 ]).to.have.length.below(4); + * expect('foo').to.have.length.within(2,4); + * expect([ 1, 2, 3 ]).to.have.length.within(2,4); + * + * *Deprecation notice:* Using `length` as an assertion will be deprecated + * in version 2.4.0 and removed in 3.0.0. Code using the old style of + * asserting for `length` property value using `length(value)` should be + * switched to use `lengthOf(value)` instead. + * + * @name length + * @namespace BDD + * @api public + */ + + /** + * ### .lengthOf(value[, message]) + * + * Asserts that the target's `length` property has + * the expected value. + * + * expect([ 1, 2, 3]).to.have.lengthOf(3); + * expect('foobar').to.have.lengthOf(6); + * + * @name lengthOf + * @param {Number} length + * @param {String} message _optional_ + * @namespace BDD + * @api public + */ + + function assertLengthChain () { + flag(this, 'doLength', true); + } + + function assertLength (n, msg) { + if (msg) flag(this, 'message', msg); + var obj = flag(this, 'object'); + new Assertion(obj, msg).to.have.property('length'); + var len = obj.length; + + this.assert( + len == n + , 'expected #{this} to have a length of #{exp} but got #{act}' + , 'expected #{this} to not have a length of #{act}' + , n + , len + ); + } + + Assertion.addChainableMethod('length', assertLength, assertLengthChain); + Assertion.addMethod('lengthOf', assertLength); + + /** + * ### .match(regexp) + * + * Asserts that the target matches a regular expression. + * + * expect('foobar').to.match(/^foo/); + * + * @name match + * @alias matches + * @param {RegExp} RegularExpression + * @param {String} message _optional_ + * @namespace BDD + * @api public + */ + function assertMatch(re, msg) { + if (msg) flag(this, 'message', msg); + var obj = flag(this, 'object'); + this.assert( + re.exec(obj) + , 'expected #{this} to match ' + re + , 'expected #{this} not to match ' + re + ); + } + + Assertion.addMethod('match', assertMatch); + Assertion.addMethod('matches', assertMatch); + + /** + * ### .string(string) + * + * Asserts that the string target contains another string. + * + * expect('foobar').to.have.string('bar'); + * + * @name string + * @param {String} string + * @param {String} message _optional_ + * @namespace BDD + * @api public + */ + + Assertion.addMethod('string', function (str, msg) { + if (msg) flag(this, 'message', msg); + var obj = flag(this, 'object'); + new Assertion(obj, msg).is.a('string'); + + this.assert( + ~obj.indexOf(str) + , 'expected #{this} to contain ' + _.inspect(str) + , 'expected #{this} to not contain ' + _.inspect(str) + ); + }); + + + /** + * ### .keys(key1, [key2], [...]) + * + * Asserts that the target contains any or all of the passed-in keys. + * Use in combination with `any`, `all`, `contains`, or `have` will affect + * what will pass. + * + * When used in conjunction with `any`, at least one key that is passed + * in must exist in the target object. This is regardless whether or not + * the `have` or `contain` qualifiers are used. Note, either `any` or `all` + * should be used in the assertion. If neither are used, the assertion is + * defaulted to `all`. + * + * When both `all` and `contain` are used, the target object must have at + * least all of the passed-in keys but may have more keys not listed. + * + * When both `all` and `have` are used, the target object must both contain + * all of the passed-in keys AND the number of keys in the target object must + * match the number of keys passed in (in other words, a target object must + * have all and only all of the passed-in keys). + * + * expect({ foo: 1, bar: 2 }).to.have.any.keys('foo', 'baz'); + * expect({ foo: 1, bar: 2 }).to.have.any.keys('foo'); + * expect({ foo: 1, bar: 2 }).to.contain.any.keys('bar', 'baz'); + * expect({ foo: 1, bar: 2 }).to.contain.any.keys(['foo']); + * expect({ foo: 1, bar: 2 }).to.contain.any.keys({'foo': 6}); + * expect({ foo: 1, bar: 2 }).to.have.all.keys(['bar', 'foo']); + * expect({ foo: 1, bar: 2 }).to.have.all.keys({'bar': 6, 'foo': 7}); + * expect({ foo: 1, bar: 2, baz: 3 }).to.contain.all.keys(['bar', 'foo']); + * expect({ foo: 1, bar: 2, baz: 3 }).to.contain.all.keys({'bar': 6}); + * + * + * @name keys + * @alias key + * @param {...String|Array|Object} keys + * @namespace BDD + * @api public + */ + + function assertKeys (keys) { + var obj = flag(this, 'object') + , str + , ok = true + , mixedArgsMsg = 'keys must be given single argument of Array|Object|String, or multiple String arguments'; + + switch (_.type(keys)) { + case "array": + if (arguments.length > 1) throw (new Error(mixedArgsMsg)); + break; + case "object": + if (arguments.length > 1) throw (new Error(mixedArgsMsg)); + keys = Object.keys(keys); + break; + default: + keys = Array.prototype.slice.call(arguments); + } + + if (!keys.length) throw new Error('keys required'); + + var actual = Object.keys(obj) + , expected = keys + , len = keys.length + , any = flag(this, 'any') + , all = flag(this, 'all'); + + if (!any && !all) { + all = true; + } + + // Has any + if (any) { + var intersection = expected.filter(function(key) { + return ~actual.indexOf(key); + }); + ok = intersection.length > 0; + } + + // Has all + if (all) { + ok = keys.every(function(key){ + return ~actual.indexOf(key); + }); + if (!flag(this, 'negate') && !flag(this, 'contains')) { + ok = ok && keys.length == actual.length; + } + } + + // Key string + if (len > 1) { + keys = keys.map(function(key){ + return _.inspect(key); + }); + var last = keys.pop(); + if (all) { + str = keys.join(', ') + ', and ' + last; + } + if (any) { + str = keys.join(', ') + ', or ' + last; + } + } else { + str = _.inspect(keys[0]); + } + + // Form + str = (len > 1 ? 'keys ' : 'key ') + str; + + // Have / include + str = (flag(this, 'contains') ? 'contain ' : 'have ') + str; + + // Assertion + this.assert( + ok + , 'expected #{this} to ' + str + , 'expected #{this} to not ' + str + , expected.slice(0).sort() + , actual.sort() + , true + ); + } + + Assertion.addMethod('keys', assertKeys); + Assertion.addMethod('key', assertKeys); + + /** + * ### .throw(constructor) + * + * Asserts that the function target will throw a specific error, or specific type of error + * (as determined using `instanceof`), optionally with a RegExp or string inclusion test + * for the error's message. + * + * var err = new ReferenceError('This is a bad function.'); + * var fn = function () { throw err; } + * expect(fn).to.throw(ReferenceError); + * expect(fn).to.throw(Error); + * expect(fn).to.throw(/bad function/); + * expect(fn).to.not.throw('good function'); + * expect(fn).to.throw(ReferenceError, /bad function/); + * expect(fn).to.throw(err); + * + * Please note that when a throw expectation is negated, it will check each + * parameter independently, starting with error constructor type. The appropriate way + * to check for the existence of a type of error but for a message that does not match + * is to use `and`. + * + * expect(fn).to.throw(ReferenceError) + * .and.not.throw(/good function/); + * + * @name throw + * @alias throws + * @alias Throw + * @param {ErrorConstructor} constructor + * @param {String|RegExp} expected error message + * @param {String} message _optional_ + * @see https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Error#Error_types + * @returns error for chaining (null if no error) + * @namespace BDD + * @api public + */ + + function assertThrows (constructor, errMsg, msg) { + if (msg) flag(this, 'message', msg); + var obj = flag(this, 'object'); + new Assertion(obj, msg).is.a('function'); + + var thrown = false + , desiredError = null + , name = null + , thrownError = null; + + if (arguments.length === 0) { + errMsg = null; + constructor = null; + } else if (constructor && (constructor instanceof RegExp || 'string' === typeof constructor)) { + errMsg = constructor; + constructor = null; + } else if (constructor && constructor instanceof Error) { + desiredError = constructor; + constructor = null; + errMsg = null; + } else if (typeof constructor === 'function') { + name = constructor.prototype.name; + if (!name || (name === 'Error' && constructor !== Error)) { + name = constructor.name || (new constructor()).name; + } + } else { + constructor = null; + } + + try { + obj(); + } catch (err) { + // first, check desired error + if (desiredError) { + this.assert( + err === desiredError + , 'expected #{this} to throw #{exp} but #{act} was thrown' + , 'expected #{this} to not throw #{exp}' + , (desiredError instanceof Error ? desiredError.toString() : desiredError) + , (err instanceof Error ? err.toString() : err) + ); + + flag(this, 'object', err); + return this; + } + + // next, check constructor + if (constructor) { + this.assert( + err instanceof constructor + , 'expected #{this} to throw #{exp} but #{act} was thrown' + , 'expected #{this} to not throw #{exp} but #{act} was thrown' + , name + , (err instanceof Error ? err.toString() : err) + ); + + if (!errMsg) { + flag(this, 'object', err); + return this; + } + } + + // next, check message + var message = 'error' === _.type(err) && "message" in err + ? err.message + : '' + err; + + if ((message != null) && errMsg && errMsg instanceof RegExp) { + this.assert( + errMsg.exec(message) + , 'expected #{this} to throw error matching #{exp} but got #{act}' + , 'expected #{this} to throw error not matching #{exp}' + , errMsg + , message + ); + + flag(this, 'object', err); + return this; + } else if ((message != null) && errMsg && 'string' === typeof errMsg) { + this.assert( + ~message.indexOf(errMsg) + , 'expected #{this} to throw error including #{exp} but got #{act}' + , 'expected #{this} to throw error not including #{act}' + , errMsg + , message + ); + + flag(this, 'object', err); + return this; + } else { + thrown = true; + thrownError = err; + } + } + + var actuallyGot = '' + , expectedThrown = name !== null + ? name + : desiredError + ? '#{exp}' //_.inspect(desiredError) + : 'an error'; + + if (thrown) { + actuallyGot = ' but #{act} was thrown' + } + + this.assert( + thrown === true + , 'expected #{this} to throw ' + expectedThrown + actuallyGot + , 'expected #{this} to not throw ' + expectedThrown + actuallyGot + , (desiredError instanceof Error ? desiredError.toString() : desiredError) + , (thrownError instanceof Error ? thrownError.toString() : thrownError) + ); + + flag(this, 'object', thrownError); + }; + + Assertion.addMethod('throw', assertThrows); + Assertion.addMethod('throws', assertThrows); + Assertion.addMethod('Throw', assertThrows); + + /** + * ### .respondTo(method) + * + * Asserts that the object or class target will respond to a method. + * + * Klass.prototype.bar = function(){}; + * expect(Klass).to.respondTo('bar'); + * expect(obj).to.respondTo('bar'); + * + * To check if a constructor will respond to a static function, + * set the `itself` flag. + * + * Klass.baz = function(){}; + * expect(Klass).itself.to.respondTo('baz'); + * + * @name respondTo + * @alias respondsTo + * @param {String} method + * @param {String} message _optional_ + * @namespace BDD + * @api public + */ + + function respondTo (method, msg) { + if (msg) flag(this, 'message', msg); + var obj = flag(this, 'object') + , itself = flag(this, 'itself') + , context = ('function' === _.type(obj) && !itself) + ? obj.prototype[method] + : obj[method]; + + this.assert( + 'function' === typeof context + , 'expected #{this} to respond to ' + _.inspect(method) + , 'expected #{this} to not respond to ' + _.inspect(method) + ); + } + + Assertion.addMethod('respondTo', respondTo); + Assertion.addMethod('respondsTo', respondTo); + + /** + * ### .itself + * + * Sets the `itself` flag, later used by the `respondTo` assertion. + * + * function Foo() {} + * Foo.bar = function() {} + * Foo.prototype.baz = function() {} + * + * expect(Foo).itself.to.respondTo('bar'); + * expect(Foo).itself.not.to.respondTo('baz'); + * + * @name itself + * @namespace BDD + * @api public + */ + + Assertion.addProperty('itself', function () { + flag(this, 'itself', true); + }); + + /** + * ### .satisfy(method) + * + * Asserts that the target passes a given truth test. + * + * expect(1).to.satisfy(function(num) { return num > 0; }); + * + * @name satisfy + * @alias satisfies + * @param {Function} matcher + * @param {String} message _optional_ + * @namespace BDD + * @api public + */ + + function satisfy (matcher, msg) { + if (msg) flag(this, 'message', msg); + var obj = flag(this, 'object'); + var result = matcher(obj); + this.assert( + result + , 'expected #{this} to satisfy ' + _.objDisplay(matcher) + , 'expected #{this} to not satisfy' + _.objDisplay(matcher) + , this.negate ? false : true + , result + ); + } + + Assertion.addMethod('satisfy', satisfy); + Assertion.addMethod('satisfies', satisfy); + + /** + * ### .closeTo(expected, delta) + * + * Asserts that the target is equal `expected`, to within a +/- `delta` range. + * + * expect(1.5).to.be.closeTo(1, 0.5); + * + * @name closeTo + * @alias approximately + * @param {Number} expected + * @param {Number} delta + * @param {String} message _optional_ + * @namespace BDD + * @api public + */ + + function closeTo(expected, delta, msg) { + if (msg) flag(this, 'message', msg); + var obj = flag(this, 'object'); + + new Assertion(obj, msg).is.a('number'); + if (_.type(expected) !== 'number' || _.type(delta) !== 'number') { + throw new Error('the arguments to closeTo or approximately must be numbers'); + } + + this.assert( + Math.abs(obj - expected) <= delta + , 'expected #{this} to be close to ' + expected + ' +/- ' + delta + , 'expected #{this} not to be close to ' + expected + ' +/- ' + delta + ); + } + + Assertion.addMethod('closeTo', closeTo); + Assertion.addMethod('approximately', closeTo); + + function isSubsetOf(subset, superset, cmp) { + return subset.every(function(elem) { + if (!cmp) return superset.indexOf(elem) !== -1; + + return superset.some(function(elem2) { + return cmp(elem, elem2); + }); + }) + } + + /** + * ### .members(set) + * + * Asserts that the target is a superset of `set`, + * or that the target and `set` have the same strictly-equal (===) members. + * Alternately, if the `deep` flag is set, set members are compared for deep + * equality. + * + * expect([1, 2, 3]).to.include.members([3, 2]); + * expect([1, 2, 3]).to.not.include.members([3, 2, 8]); + * + * expect([4, 2]).to.have.members([2, 4]); + * expect([5, 2]).to.not.have.members([5, 2, 1]); + * + * expect([{ id: 1 }]).to.deep.include.members([{ id: 1 }]); + * + * @name members + * @param {Array} set + * @param {String} message _optional_ + * @namespace BDD + * @api public + */ + + Assertion.addMethod('members', function (subset, msg) { + if (msg) flag(this, 'message', msg); + var obj = flag(this, 'object'); + + new Assertion(obj).to.be.an('array'); + new Assertion(subset).to.be.an('array'); + + var cmp = flag(this, 'deep') ? _.eql : undefined; + + if (flag(this, 'contains')) { + return this.assert( + isSubsetOf(subset, obj, cmp) + , 'expected #{this} to be a superset of #{act}' + , 'expected #{this} to not be a superset of #{act}' + , obj + , subset + ); + } + + this.assert( + isSubsetOf(obj, subset, cmp) && isSubsetOf(subset, obj, cmp) + , 'expected #{this} to have the same members as #{act}' + , 'expected #{this} to not have the same members as #{act}' + , obj + , subset + ); + }); + + /** + * ### .oneOf(list) + * + * Assert that a value appears somewhere in the top level of array `list`. + * + * expect('a').to.be.oneOf(['a', 'b', 'c']); + * expect(9).to.not.be.oneOf(['z']); + * expect([3]).to.not.be.oneOf([1, 2, [3]]); + * + * var three = [3]; + * // for object-types, contents are not compared + * expect(three).to.not.be.oneOf([1, 2, [3]]); + * // comparing references works + * expect(three).to.be.oneOf([1, 2, three]); + * + * @name oneOf + * @param {Array<*>} list + * @param {String} message _optional_ + * @namespace BDD + * @api public + */ + + function oneOf (list, msg) { + if (msg) flag(this, 'message', msg); + var expected = flag(this, 'object'); + new Assertion(list).to.be.an('array'); + + this.assert( + list.indexOf(expected) > -1 + , 'expected #{this} to be one of #{exp}' + , 'expected #{this} to not be one of #{exp}' + , list + , expected + ); + } + + Assertion.addMethod('oneOf', oneOf); + + + /** + * ### .change(function) + * + * Asserts that a function changes an object property + * + * var obj = { val: 10 }; + * var fn = function() { obj.val += 3 }; + * var noChangeFn = function() { return 'foo' + 'bar'; } + * expect(fn).to.change(obj, 'val'); + * expect(noChangeFn).to.not.change(obj, 'val') + * + * @name change + * @alias changes + * @alias Change + * @param {String} object + * @param {String} property name + * @param {String} message _optional_ + * @namespace BDD + * @api public + */ + + function assertChanges (object, prop, msg) { + if (msg) flag(this, 'message', msg); + var fn = flag(this, 'object'); + new Assertion(object, msg).to.have.property(prop); + new Assertion(fn).is.a('function'); + + var initial = object[prop]; + fn(); + + this.assert( + initial !== object[prop] + , 'expected .' + prop + ' to change' + , 'expected .' + prop + ' to not change' + ); + } + + Assertion.addChainableMethod('change', assertChanges); + Assertion.addChainableMethod('changes', assertChanges); + + /** + * ### .increase(function) + * + * Asserts that a function increases an object property + * + * var obj = { val: 10 }; + * var fn = function() { obj.val = 15 }; + * expect(fn).to.increase(obj, 'val'); + * + * @name increase + * @alias increases + * @alias Increase + * @param {String} object + * @param {String} property name + * @param {String} message _optional_ + * @namespace BDD + * @api public + */ + + function assertIncreases (object, prop, msg) { + if (msg) flag(this, 'message', msg); + var fn = flag(this, 'object'); + new Assertion(object, msg).to.have.property(prop); + new Assertion(fn).is.a('function'); + + var initial = object[prop]; + fn(); + + this.assert( + object[prop] - initial > 0 + , 'expected .' + prop + ' to increase' + , 'expected .' + prop + ' to not increase' + ); + } + + Assertion.addChainableMethod('increase', assertIncreases); + Assertion.addChainableMethod('increases', assertIncreases); + + /** + * ### .decrease(function) + * + * Asserts that a function decreases an object property + * + * var obj = { val: 10 }; + * var fn = function() { obj.val = 5 }; + * expect(fn).to.decrease(obj, 'val'); + * + * @name decrease + * @alias decreases + * @alias Decrease + * @param {String} object + * @param {String} property name + * @param {String} message _optional_ + * @namespace BDD + * @api public + */ + + function assertDecreases (object, prop, msg) { + if (msg) flag(this, 'message', msg); + var fn = flag(this, 'object'); + new Assertion(object, msg).to.have.property(prop); + new Assertion(fn).is.a('function'); + + var initial = object[prop]; + fn(); + + this.assert( + object[prop] - initial < 0 + , 'expected .' + prop + ' to decrease' + , 'expected .' + prop + ' to not decrease' + ); + } + + Assertion.addChainableMethod('decrease', assertDecreases); + Assertion.addChainableMethod('decreases', assertDecreases); + + /** + * ### .extensible + * + * Asserts that the target is extensible (can have new properties added to + * it). + * + * var nonExtensibleObject = Object.preventExtensions({}); + * var sealedObject = Object.seal({}); + * var frozenObject = Object.freeze({}); + * + * expect({}).to.be.extensible; + * expect(nonExtensibleObject).to.not.be.extensible; + * expect(sealedObject).to.not.be.extensible; + * expect(frozenObject).to.not.be.extensible; + * + * @name extensible + * @namespace BDD + * @api public + */ + + Assertion.addProperty('extensible', function() { + var obj = flag(this, 'object'); + + // In ES5, if the argument to this method is not an object (a primitive), then it will cause a TypeError. + // In ES6, a non-object argument will be treated as if it was a non-extensible ordinary object, simply return false. + // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/isExtensible + // The following provides ES6 behavior when a TypeError is thrown under ES5. + + var isExtensible; + + try { + isExtensible = Object.isExtensible(obj); + } catch (err) { + if (err instanceof TypeError) isExtensible = false; + else throw err; + } + + this.assert( + isExtensible + , 'expected #{this} to be extensible' + , 'expected #{this} to not be extensible' + ); + }); + + /** + * ### .sealed + * + * Asserts that the target is sealed (cannot have new properties added to it + * and its existing properties cannot be removed). + * + * var sealedObject = Object.seal({}); + * var frozenObject = Object.freeze({}); + * + * expect(sealedObject).to.be.sealed; + * expect(frozenObject).to.be.sealed; + * expect({}).to.not.be.sealed; + * + * @name sealed + * @namespace BDD + * @api public + */ + + Assertion.addProperty('sealed', function() { + var obj = flag(this, 'object'); + + // In ES5, if the argument to this method is not an object (a primitive), then it will cause a TypeError. + // In ES6, a non-object argument will be treated as if it was a sealed ordinary object, simply return true. + // See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/isSealed + // The following provides ES6 behavior when a TypeError is thrown under ES5. + + var isSealed; + + try { + isSealed = Object.isSealed(obj); + } catch (err) { + if (err instanceof TypeError) isSealed = true; + else throw err; + } + + this.assert( + isSealed + , 'expected #{this} to be sealed' + , 'expected #{this} to not be sealed' + ); + }); + + /** + * ### .frozen + * + * Asserts that the target is frozen (cannot have new properties added to it + * and its existing properties cannot be modified). + * + * var frozenObject = Object.freeze({}); + * + * expect(frozenObject).to.be.frozen; + * expect({}).to.not.be.frozen; + * + * @name frozen + * @namespace BDD + * @api public + */ + + Assertion.addProperty('frozen', function() { + var obj = flag(this, 'object'); + + // In ES5, if the argument to this method is not an object (a primitive), then it will cause a TypeError. + // In ES6, a non-object argument will be treated as if it was a frozen ordinary object, simply return true. + // See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/isFrozen + // The following provides ES6 behavior when a TypeError is thrown under ES5. + + var isFrozen; + + try { + isFrozen = Object.isFrozen(obj); + } catch (err) { + if (err instanceof TypeError) isFrozen = true; + else throw err; + } + + this.assert( + isFrozen + , 'expected #{this} to be frozen' + , 'expected #{this} to not be frozen' + ); + }); +}; + +},{}],6:[function(require,module,exports){ +/*! + * chai + * Copyright(c) 2011-2014 Jake Luer + * MIT Licensed + */ + + +module.exports = function (chai, util) { + + /*! + * Chai dependencies. + */ + + var Assertion = chai.Assertion + , flag = util.flag; + + /*! + * Module export. + */ + + /** + * ### assert(expression, message) + * + * Write your own test expressions. + * + * assert('foo' !== 'bar', 'foo is not bar'); + * assert(Array.isArray([]), 'empty arrays are arrays'); + * + * @param {Mixed} expression to test for truthiness + * @param {String} message to display on error + * @name assert + * @namespace Assert + * @api public + */ + + var assert = chai.assert = function (express, errmsg) { + var test = new Assertion(null, null, chai.assert); + test.assert( + express + , errmsg + , '[ negation message unavailable ]' + ); + }; + + /** + * ### .fail(actual, expected, [message], [operator]) + * + * Throw a failure. Node.js `assert` module-compatible. + * + * @name fail + * @param {Mixed} actual + * @param {Mixed} expected + * @param {String} message + * @param {String} operator + * @namespace Assert + * @api public + */ + + assert.fail = function (actual, expected, message, operator) { + message = message || 'assert.fail()'; + throw new chai.AssertionError(message, { + actual: actual + , expected: expected + , operator: operator + }, assert.fail); + }; + + /** + * ### .isOk(object, [message]) + * + * Asserts that `object` is truthy. + * + * assert.isOk('everything', 'everything is ok'); + * assert.isOk(false, 'this will fail'); + * + * @name isOk + * @alias ok + * @param {Mixed} object to test + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isOk = function (val, msg) { + new Assertion(val, msg).is.ok; + }; + + /** + * ### .isNotOk(object, [message]) + * + * Asserts that `object` is falsy. + * + * assert.isNotOk('everything', 'this will fail'); + * assert.isNotOk(false, 'this will pass'); + * + * @name isNotOk + * @alias notOk + * @param {Mixed} object to test + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isNotOk = function (val, msg) { + new Assertion(val, msg).is.not.ok; + }; + + /** + * ### .equal(actual, expected, [message]) + * + * Asserts non-strict equality (`==`) of `actual` and `expected`. + * + * assert.equal(3, '3', '== coerces values to strings'); + * + * @name equal + * @param {Mixed} actual + * @param {Mixed} expected + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.equal = function (act, exp, msg) { + var test = new Assertion(act, msg, assert.equal); + + test.assert( + exp == flag(test, 'object') + , 'expected #{this} to equal #{exp}' + , 'expected #{this} to not equal #{act}' + , exp + , act + ); + }; + + /** + * ### .notEqual(actual, expected, [message]) + * + * Asserts non-strict inequality (`!=`) of `actual` and `expected`. + * + * assert.notEqual(3, 4, 'these numbers are not equal'); + * + * @name notEqual + * @param {Mixed} actual + * @param {Mixed} expected + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.notEqual = function (act, exp, msg) { + var test = new Assertion(act, msg, assert.notEqual); + + test.assert( + exp != flag(test, 'object') + , 'expected #{this} to not equal #{exp}' + , 'expected #{this} to equal #{act}' + , exp + , act + ); + }; + + /** + * ### .strictEqual(actual, expected, [message]) + * + * Asserts strict equality (`===`) of `actual` and `expected`. + * + * assert.strictEqual(true, true, 'these booleans are strictly equal'); + * + * @name strictEqual + * @param {Mixed} actual + * @param {Mixed} expected + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.strictEqual = function (act, exp, msg) { + new Assertion(act, msg).to.equal(exp); + }; + + /** + * ### .notStrictEqual(actual, expected, [message]) + * + * Asserts strict inequality (`!==`) of `actual` and `expected`. + * + * assert.notStrictEqual(3, '3', 'no coercion for strict equality'); + * + * @name notStrictEqual + * @param {Mixed} actual + * @param {Mixed} expected + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.notStrictEqual = function (act, exp, msg) { + new Assertion(act, msg).to.not.equal(exp); + }; + + /** + * ### .deepEqual(actual, expected, [message]) + * + * Asserts that `actual` is deeply equal to `expected`. + * + * assert.deepEqual({ tea: 'green' }, { tea: 'green' }); + * + * @name deepEqual + * @param {Mixed} actual + * @param {Mixed} expected + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.deepEqual = function (act, exp, msg) { + new Assertion(act, msg).to.eql(exp); + }; + + /** + * ### .notDeepEqual(actual, expected, [message]) + * + * Assert that `actual` is not deeply equal to `expected`. + * + * assert.notDeepEqual({ tea: 'green' }, { tea: 'jasmine' }); + * + * @name notDeepEqual + * @param {Mixed} actual + * @param {Mixed} expected + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.notDeepEqual = function (act, exp, msg) { + new Assertion(act, msg).to.not.eql(exp); + }; + + /** + * ### .isAbove(valueToCheck, valueToBeAbove, [message]) + * + * Asserts `valueToCheck` is strictly greater than (>) `valueToBeAbove` + * + * assert.isAbove(5, 2, '5 is strictly greater than 2'); + * + * @name isAbove + * @param {Mixed} valueToCheck + * @param {Mixed} valueToBeAbove + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isAbove = function (val, abv, msg) { + new Assertion(val, msg).to.be.above(abv); + }; + + /** + * ### .isAtLeast(valueToCheck, valueToBeAtLeast, [message]) + * + * Asserts `valueToCheck` is greater than or equal to (>=) `valueToBeAtLeast` + * + * assert.isAtLeast(5, 2, '5 is greater or equal to 2'); + * assert.isAtLeast(3, 3, '3 is greater or equal to 3'); + * + * @name isAtLeast + * @param {Mixed} valueToCheck + * @param {Mixed} valueToBeAtLeast + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isAtLeast = function (val, atlst, msg) { + new Assertion(val, msg).to.be.least(atlst); + }; + + /** + * ### .isBelow(valueToCheck, valueToBeBelow, [message]) + * + * Asserts `valueToCheck` is strictly less than (<) `valueToBeBelow` + * + * assert.isBelow(3, 6, '3 is strictly less than 6'); + * + * @name isBelow + * @param {Mixed} valueToCheck + * @param {Mixed} valueToBeBelow + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isBelow = function (val, blw, msg) { + new Assertion(val, msg).to.be.below(blw); + }; + + /** + * ### .isAtMost(valueToCheck, valueToBeAtMost, [message]) + * + * Asserts `valueToCheck` is less than or equal to (<=) `valueToBeAtMost` + * + * assert.isAtMost(3, 6, '3 is less than or equal to 6'); + * assert.isAtMost(4, 4, '4 is less than or equal to 4'); + * + * @name isAtMost + * @param {Mixed} valueToCheck + * @param {Mixed} valueToBeAtMost + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isAtMost = function (val, atmst, msg) { + new Assertion(val, msg).to.be.most(atmst); + }; + + /** + * ### .isTrue(value, [message]) + * + * Asserts that `value` is true. + * + * var teaServed = true; + * assert.isTrue(teaServed, 'the tea has been served'); + * + * @name isTrue + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isTrue = function (val, msg) { + new Assertion(val, msg).is['true']; + }; + + /** + * ### .isNotTrue(value, [message]) + * + * Asserts that `value` is not true. + * + * var tea = 'tasty chai'; + * assert.isNotTrue(tea, 'great, time for tea!'); + * + * @name isNotTrue + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isNotTrue = function (val, msg) { + new Assertion(val, msg).to.not.equal(true); + }; + + /** + * ### .isFalse(value, [message]) + * + * Asserts that `value` is false. + * + * var teaServed = false; + * assert.isFalse(teaServed, 'no tea yet? hmm...'); + * + * @name isFalse + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isFalse = function (val, msg) { + new Assertion(val, msg).is['false']; + }; + + /** + * ### .isNotFalse(value, [message]) + * + * Asserts that `value` is not false. + * + * var tea = 'tasty chai'; + * assert.isNotFalse(tea, 'great, time for tea!'); + * + * @name isNotFalse + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isNotFalse = function (val, msg) { + new Assertion(val, msg).to.not.equal(false); + }; + + /** + * ### .isNull(value, [message]) + * + * Asserts that `value` is null. + * + * assert.isNull(err, 'there was no error'); + * + * @name isNull + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isNull = function (val, msg) { + new Assertion(val, msg).to.equal(null); + }; + + /** + * ### .isNotNull(value, [message]) + * + * Asserts that `value` is not null. + * + * var tea = 'tasty chai'; + * assert.isNotNull(tea, 'great, time for tea!'); + * + * @name isNotNull + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isNotNull = function (val, msg) { + new Assertion(val, msg).to.not.equal(null); + }; + + /** + * ### .isNaN + * Asserts that value is NaN + * + * assert.isNaN('foo', 'foo is NaN'); + * + * @name isNaN + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isNaN = function (val, msg) { + new Assertion(val, msg).to.be.NaN; + }; + + /** + * ### .isNotNaN + * Asserts that value is not NaN + * + * assert.isNotNaN(4, '4 is not NaN'); + * + * @name isNotNaN + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + assert.isNotNaN = function (val, msg) { + new Assertion(val, msg).not.to.be.NaN; + }; + + /** + * ### .isUndefined(value, [message]) + * + * Asserts that `value` is `undefined`. + * + * var tea; + * assert.isUndefined(tea, 'no tea defined'); + * + * @name isUndefined + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isUndefined = function (val, msg) { + new Assertion(val, msg).to.equal(undefined); + }; + + /** + * ### .isDefined(value, [message]) + * + * Asserts that `value` is not `undefined`. + * + * var tea = 'cup of chai'; + * assert.isDefined(tea, 'tea has been defined'); + * + * @name isDefined + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isDefined = function (val, msg) { + new Assertion(val, msg).to.not.equal(undefined); + }; + + /** + * ### .isFunction(value, [message]) + * + * Asserts that `value` is a function. + * + * function serveTea() { return 'cup of tea'; }; + * assert.isFunction(serveTea, 'great, we can have tea now'); + * + * @name isFunction + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isFunction = function (val, msg) { + new Assertion(val, msg).to.be.a('function'); + }; + + /** + * ### .isNotFunction(value, [message]) + * + * Asserts that `value` is _not_ a function. + * + * var serveTea = [ 'heat', 'pour', 'sip' ]; + * assert.isNotFunction(serveTea, 'great, we have listed the steps'); + * + * @name isNotFunction + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isNotFunction = function (val, msg) { + new Assertion(val, msg).to.not.be.a('function'); + }; + + /** + * ### .isObject(value, [message]) + * + * Asserts that `value` is an object of type 'Object' (as revealed by `Object.prototype.toString`). + * _The assertion does not match subclassed objects._ + * + * var selection = { name: 'Chai', serve: 'with spices' }; + * assert.isObject(selection, 'tea selection is an object'); + * + * @name isObject + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isObject = function (val, msg) { + new Assertion(val, msg).to.be.a('object'); + }; + + /** + * ### .isNotObject(value, [message]) + * + * Asserts that `value` is _not_ an object of type 'Object' (as revealed by `Object.prototype.toString`). + * + * var selection = 'chai' + * assert.isNotObject(selection, 'tea selection is not an object'); + * assert.isNotObject(null, 'null is not an object'); + * + * @name isNotObject + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isNotObject = function (val, msg) { + new Assertion(val, msg).to.not.be.a('object'); + }; + + /** + * ### .isArray(value, [message]) + * + * Asserts that `value` is an array. + * + * var menu = [ 'green', 'chai', 'oolong' ]; + * assert.isArray(menu, 'what kind of tea do we want?'); + * + * @name isArray + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isArray = function (val, msg) { + new Assertion(val, msg).to.be.an('array'); + }; + + /** + * ### .isNotArray(value, [message]) + * + * Asserts that `value` is _not_ an array. + * + * var menu = 'green|chai|oolong'; + * assert.isNotArray(menu, 'what kind of tea do we want?'); + * + * @name isNotArray + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isNotArray = function (val, msg) { + new Assertion(val, msg).to.not.be.an('array'); + }; + + /** + * ### .isString(value, [message]) + * + * Asserts that `value` is a string. + * + * var teaOrder = 'chai'; + * assert.isString(teaOrder, 'order placed'); + * + * @name isString + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isString = function (val, msg) { + new Assertion(val, msg).to.be.a('string'); + }; + + /** + * ### .isNotString(value, [message]) + * + * Asserts that `value` is _not_ a string. + * + * var teaOrder = 4; + * assert.isNotString(teaOrder, 'order placed'); + * + * @name isNotString + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isNotString = function (val, msg) { + new Assertion(val, msg).to.not.be.a('string'); + }; + + /** + * ### .isNumber(value, [message]) + * + * Asserts that `value` is a number. + * + * var cups = 2; + * assert.isNumber(cups, 'how many cups'); + * + * @name isNumber + * @param {Number} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isNumber = function (val, msg) { + new Assertion(val, msg).to.be.a('number'); + }; + + /** + * ### .isNotNumber(value, [message]) + * + * Asserts that `value` is _not_ a number. + * + * var cups = '2 cups please'; + * assert.isNotNumber(cups, 'how many cups'); + * + * @name isNotNumber + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isNotNumber = function (val, msg) { + new Assertion(val, msg).to.not.be.a('number'); + }; + + /** + * ### .isBoolean(value, [message]) + * + * Asserts that `value` is a boolean. + * + * var teaReady = true + * , teaServed = false; + * + * assert.isBoolean(teaReady, 'is the tea ready'); + * assert.isBoolean(teaServed, 'has tea been served'); + * + * @name isBoolean + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isBoolean = function (val, msg) { + new Assertion(val, msg).to.be.a('boolean'); + }; + + /** + * ### .isNotBoolean(value, [message]) + * + * Asserts that `value` is _not_ a boolean. + * + * var teaReady = 'yep' + * , teaServed = 'nope'; + * + * assert.isNotBoolean(teaReady, 'is the tea ready'); + * assert.isNotBoolean(teaServed, 'has tea been served'); + * + * @name isNotBoolean + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.isNotBoolean = function (val, msg) { + new Assertion(val, msg).to.not.be.a('boolean'); + }; + + /** + * ### .typeOf(value, name, [message]) + * + * Asserts that `value`'s type is `name`, as determined by + * `Object.prototype.toString`. + * + * assert.typeOf({ tea: 'chai' }, 'object', 'we have an object'); + * assert.typeOf(['chai', 'jasmine'], 'array', 'we have an array'); + * assert.typeOf('tea', 'string', 'we have a string'); + * assert.typeOf(/tea/, 'regexp', 'we have a regular expression'); + * assert.typeOf(null, 'null', 'we have a null'); + * assert.typeOf(undefined, 'undefined', 'we have an undefined'); + * + * @name typeOf + * @param {Mixed} value + * @param {String} name + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.typeOf = function (val, type, msg) { + new Assertion(val, msg).to.be.a(type); + }; + + /** + * ### .notTypeOf(value, name, [message]) + * + * Asserts that `value`'s type is _not_ `name`, as determined by + * `Object.prototype.toString`. + * + * assert.notTypeOf('tea', 'number', 'strings are not numbers'); + * + * @name notTypeOf + * @param {Mixed} value + * @param {String} typeof name + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.notTypeOf = function (val, type, msg) { + new Assertion(val, msg).to.not.be.a(type); + }; + + /** + * ### .instanceOf(object, constructor, [message]) + * + * Asserts that `value` is an instance of `constructor`. + * + * var Tea = function (name) { this.name = name; } + * , chai = new Tea('chai'); + * + * assert.instanceOf(chai, Tea, 'chai is an instance of tea'); + * + * @name instanceOf + * @param {Object} object + * @param {Constructor} constructor + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.instanceOf = function (val, type, msg) { + new Assertion(val, msg).to.be.instanceOf(type); + }; + + /** + * ### .notInstanceOf(object, constructor, [message]) + * + * Asserts `value` is not an instance of `constructor`. + * + * var Tea = function (name) { this.name = name; } + * , chai = new String('chai'); + * + * assert.notInstanceOf(chai, Tea, 'chai is not an instance of tea'); + * + * @name notInstanceOf + * @param {Object} object + * @param {Constructor} constructor + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.notInstanceOf = function (val, type, msg) { + new Assertion(val, msg).to.not.be.instanceOf(type); + }; + + /** + * ### .include(haystack, needle, [message]) + * + * Asserts that `haystack` includes `needle`. Works + * for strings and arrays. + * + * assert.include('foobar', 'bar', 'foobar contains string "bar"'); + * assert.include([ 1, 2, 3 ], 3, 'array contains value'); + * + * @name include + * @param {Array|String} haystack + * @param {Mixed} needle + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.include = function (exp, inc, msg) { + new Assertion(exp, msg, assert.include).include(inc); + }; + + /** + * ### .notInclude(haystack, needle, [message]) + * + * Asserts that `haystack` does not include `needle`. Works + * for strings and arrays. + * + * assert.notInclude('foobar', 'baz', 'string not include substring'); + * assert.notInclude([ 1, 2, 3 ], 4, 'array not include contain value'); + * + * @name notInclude + * @param {Array|String} haystack + * @param {Mixed} needle + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.notInclude = function (exp, inc, msg) { + new Assertion(exp, msg, assert.notInclude).not.include(inc); + }; + + /** + * ### .match(value, regexp, [message]) + * + * Asserts that `value` matches the regular expression `regexp`. + * + * assert.match('foobar', /^foo/, 'regexp matches'); + * + * @name match + * @param {Mixed} value + * @param {RegExp} regexp + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.match = function (exp, re, msg) { + new Assertion(exp, msg).to.match(re); + }; + + /** + * ### .notMatch(value, regexp, [message]) + * + * Asserts that `value` does not match the regular expression `regexp`. + * + * assert.notMatch('foobar', /^foo/, 'regexp does not match'); + * + * @name notMatch + * @param {Mixed} value + * @param {RegExp} regexp + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.notMatch = function (exp, re, msg) { + new Assertion(exp, msg).to.not.match(re); + }; + + /** + * ### .property(object, property, [message]) + * + * Asserts that `object` has a property named by `property`. + * + * assert.property({ tea: { green: 'matcha' }}, 'tea'); + * + * @name property + * @param {Object} object + * @param {String} property + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.property = function (obj, prop, msg) { + new Assertion(obj, msg).to.have.property(prop); + }; + + /** + * ### .notProperty(object, property, [message]) + * + * Asserts that `object` does _not_ have a property named by `property`. + * + * assert.notProperty({ tea: { green: 'matcha' }}, 'coffee'); + * + * @name notProperty + * @param {Object} object + * @param {String} property + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.notProperty = function (obj, prop, msg) { + new Assertion(obj, msg).to.not.have.property(prop); + }; + + /** + * ### .deepProperty(object, property, [message]) + * + * Asserts that `object` has a property named by `property`, which can be a + * string using dot- and bracket-notation for deep reference. + * + * assert.deepProperty({ tea: { green: 'matcha' }}, 'tea.green'); + * + * @name deepProperty + * @param {Object} object + * @param {String} property + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.deepProperty = function (obj, prop, msg) { + new Assertion(obj, msg).to.have.deep.property(prop); + }; + + /** + * ### .notDeepProperty(object, property, [message]) + * + * Asserts that `object` does _not_ have a property named by `property`, which + * can be a string using dot- and bracket-notation for deep reference. + * + * assert.notDeepProperty({ tea: { green: 'matcha' }}, 'tea.oolong'); + * + * @name notDeepProperty + * @param {Object} object + * @param {String} property + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.notDeepProperty = function (obj, prop, msg) { + new Assertion(obj, msg).to.not.have.deep.property(prop); + }; + + /** + * ### .propertyVal(object, property, value, [message]) + * + * Asserts that `object` has a property named by `property` with value given + * by `value`. + * + * assert.propertyVal({ tea: 'is good' }, 'tea', 'is good'); + * + * @name propertyVal + * @param {Object} object + * @param {String} property + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.propertyVal = function (obj, prop, val, msg) { + new Assertion(obj, msg).to.have.property(prop, val); + }; + + /** + * ### .propertyNotVal(object, property, value, [message]) + * + * Asserts that `object` has a property named by `property`, but with a value + * different from that given by `value`. + * + * assert.propertyNotVal({ tea: 'is good' }, 'tea', 'is bad'); + * + * @name propertyNotVal + * @param {Object} object + * @param {String} property + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.propertyNotVal = function (obj, prop, val, msg) { + new Assertion(obj, msg).to.not.have.property(prop, val); + }; + + /** + * ### .deepPropertyVal(object, property, value, [message]) + * + * Asserts that `object` has a property named by `property` with value given + * by `value`. `property` can use dot- and bracket-notation for deep + * reference. + * + * assert.deepPropertyVal({ tea: { green: 'matcha' }}, 'tea.green', 'matcha'); + * + * @name deepPropertyVal + * @param {Object} object + * @param {String} property + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.deepPropertyVal = function (obj, prop, val, msg) { + new Assertion(obj, msg).to.have.deep.property(prop, val); + }; + + /** + * ### .deepPropertyNotVal(object, property, value, [message]) + * + * Asserts that `object` has a property named by `property`, but with a value + * different from that given by `value`. `property` can use dot- and + * bracket-notation for deep reference. + * + * assert.deepPropertyNotVal({ tea: { green: 'matcha' }}, 'tea.green', 'konacha'); + * + * @name deepPropertyNotVal + * @param {Object} object + * @param {String} property + * @param {Mixed} value + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.deepPropertyNotVal = function (obj, prop, val, msg) { + new Assertion(obj, msg).to.not.have.deep.property(prop, val); + }; + + /** + * ### .lengthOf(object, length, [message]) + * + * Asserts that `object` has a `length` property with the expected value. + * + * assert.lengthOf([1,2,3], 3, 'array has length of 3'); + * assert.lengthOf('foobar', 6, 'string has length of 6'); + * + * @name lengthOf + * @param {Mixed} object + * @param {Number} length + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.lengthOf = function (exp, len, msg) { + new Assertion(exp, msg).to.have.length(len); + }; + + /** + * ### .throws(function, [constructor/string/regexp], [string/regexp], [message]) + * + * Asserts that `function` will throw an error that is an instance of + * `constructor`, or alternately that it will throw an error with message + * matching `regexp`. + * + * assert.throws(fn, 'function throws a reference error'); + * assert.throws(fn, /function throws a reference error/); + * assert.throws(fn, ReferenceError); + * assert.throws(fn, ReferenceError, 'function throws a reference error'); + * assert.throws(fn, ReferenceError, /function throws a reference error/); + * + * @name throws + * @alias throw + * @alias Throw + * @param {Function} function + * @param {ErrorConstructor} constructor + * @param {RegExp} regexp + * @param {String} message + * @see https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Error#Error_types + * @namespace Assert + * @api public + */ + + assert.throws = function (fn, errt, errs, msg) { + if ('string' === typeof errt || errt instanceof RegExp) { + errs = errt; + errt = null; + } + + var assertErr = new Assertion(fn, msg).to.throw(errt, errs); + return flag(assertErr, 'object'); + }; + + /** + * ### .doesNotThrow(function, [constructor/regexp], [message]) + * + * Asserts that `function` will _not_ throw an error that is an instance of + * `constructor`, or alternately that it will not throw an error with message + * matching `regexp`. + * + * assert.doesNotThrow(fn, Error, 'function does not throw'); + * + * @name doesNotThrow + * @param {Function} function + * @param {ErrorConstructor} constructor + * @param {RegExp} regexp + * @param {String} message + * @see https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Error#Error_types + * @namespace Assert + * @api public + */ + + assert.doesNotThrow = function (fn, type, msg) { + if ('string' === typeof type) { + msg = type; + type = null; + } + + new Assertion(fn, msg).to.not.Throw(type); + }; + + /** + * ### .operator(val1, operator, val2, [message]) + * + * Compares two values using `operator`. + * + * assert.operator(1, '<', 2, 'everything is ok'); + * assert.operator(1, '>', 2, 'this will fail'); + * + * @name operator + * @param {Mixed} val1 + * @param {String} operator + * @param {Mixed} val2 + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.operator = function (val, operator, val2, msg) { + var ok; + switch(operator) { + case '==': + ok = val == val2; + break; + case '===': + ok = val === val2; + break; + case '>': + ok = val > val2; + break; + case '>=': + ok = val >= val2; + break; + case '<': + ok = val < val2; + break; + case '<=': + ok = val <= val2; + break; + case '!=': + ok = val != val2; + break; + case '!==': + ok = val !== val2; + break; + default: + throw new Error('Invalid operator "' + operator + '"'); + } + var test = new Assertion(ok, msg); + test.assert( + true === flag(test, 'object') + , 'expected ' + util.inspect(val) + ' to be ' + operator + ' ' + util.inspect(val2) + , 'expected ' + util.inspect(val) + ' to not be ' + operator + ' ' + util.inspect(val2) ); + }; + + /** + * ### .closeTo(actual, expected, delta, [message]) + * + * Asserts that the target is equal `expected`, to within a +/- `delta` range. + * + * assert.closeTo(1.5, 1, 0.5, 'numbers are close'); + * + * @name closeTo + * @param {Number} actual + * @param {Number} expected + * @param {Number} delta + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.closeTo = function (act, exp, delta, msg) { + new Assertion(act, msg).to.be.closeTo(exp, delta); + }; + + /** + * ### .approximately(actual, expected, delta, [message]) + * + * Asserts that the target is equal `expected`, to within a +/- `delta` range. + * + * assert.approximately(1.5, 1, 0.5, 'numbers are close'); + * + * @name approximately + * @param {Number} actual + * @param {Number} expected + * @param {Number} delta + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.approximately = function (act, exp, delta, msg) { + new Assertion(act, msg).to.be.approximately(exp, delta); + }; + + /** + * ### .sameMembers(set1, set2, [message]) + * + * Asserts that `set1` and `set2` have the same members. + * Order is not taken into account. + * + * assert.sameMembers([ 1, 2, 3 ], [ 2, 1, 3 ], 'same members'); + * + * @name sameMembers + * @param {Array} set1 + * @param {Array} set2 + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.sameMembers = function (set1, set2, msg) { + new Assertion(set1, msg).to.have.same.members(set2); + } + + /** + * ### .sameDeepMembers(set1, set2, [message]) + * + * Asserts that `set1` and `set2` have the same members - using a deep equality checking. + * Order is not taken into account. + * + * assert.sameDeepMembers([ {b: 3}, {a: 2}, {c: 5} ], [ {c: 5}, {b: 3}, {a: 2} ], 'same deep members'); + * + * @name sameDeepMembers + * @param {Array} set1 + * @param {Array} set2 + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.sameDeepMembers = function (set1, set2, msg) { + new Assertion(set1, msg).to.have.same.deep.members(set2); + } + + /** + * ### .includeMembers(superset, subset, [message]) + * + * Asserts that `subset` is included in `superset`. + * Order is not taken into account. + * + * assert.includeMembers([ 1, 2, 3 ], [ 2, 1 ], 'include members'); + * + * @name includeMembers + * @param {Array} superset + * @param {Array} subset + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.includeMembers = function (superset, subset, msg) { + new Assertion(superset, msg).to.include.members(subset); + } + + /** + * ### .includeDeepMembers(superset, subset, [message]) + * + * Asserts that `subset` is included in `superset` - using deep equality checking. + * Order is not taken into account. + * Duplicates are ignored. + * + * assert.includeDeepMembers([ {a: 1}, {b: 2}, {c: 3} ], [ {b: 2}, {a: 1}, {b: 2} ], 'include deep members'); + * + * @name includeDeepMembers + * @param {Array} superset + * @param {Array} subset + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.includeDeepMembers = function (superset, subset, msg) { + new Assertion(superset, msg).to.include.deep.members(subset); + } + + /** + * ### .oneOf(inList, list, [message]) + * + * Asserts that non-object, non-array value `inList` appears in the flat array `list`. + * + * assert.oneOf(1, [ 2, 1 ], 'Not found in list'); + * + * @name oneOf + * @param {*} inList + * @param {Array<*>} list + * @param {String} message + * @namespace Assert + * @api public + */ + + assert.oneOf = function (inList, list, msg) { + new Assertion(inList, msg).to.be.oneOf(list); + } + + /** + * ### .changes(function, object, property) + * + * Asserts that a function changes the value of a property + * + * var obj = { val: 10 }; + * var fn = function() { obj.val = 22 }; + * assert.changes(fn, obj, 'val'); + * + * @name changes + * @param {Function} modifier function + * @param {Object} object + * @param {String} property name + * @param {String} message _optional_ + * @namespace Assert + * @api public + */ + + assert.changes = function (fn, obj, prop) { + new Assertion(fn).to.change(obj, prop); + } + + /** + * ### .doesNotChange(function, object, property) + * + * Asserts that a function does not changes the value of a property + * + * var obj = { val: 10 }; + * var fn = function() { console.log('foo'); }; + * assert.doesNotChange(fn, obj, 'val'); + * + * @name doesNotChange + * @param {Function} modifier function + * @param {Object} object + * @param {String} property name + * @param {String} message _optional_ + * @namespace Assert + * @api public + */ + + assert.doesNotChange = function (fn, obj, prop) { + new Assertion(fn).to.not.change(obj, prop); + } + + /** + * ### .increases(function, object, property) + * + * Asserts that a function increases an object property + * + * var obj = { val: 10 }; + * var fn = function() { obj.val = 13 }; + * assert.increases(fn, obj, 'val'); + * + * @name increases + * @param {Function} modifier function + * @param {Object} object + * @param {String} property name + * @param {String} message _optional_ + * @namespace Assert + * @api public + */ + + assert.increases = function (fn, obj, prop) { + new Assertion(fn).to.increase(obj, prop); + } + + /** + * ### .doesNotIncrease(function, object, property) + * + * Asserts that a function does not increase object property + * + * var obj = { val: 10 }; + * var fn = function() { obj.val = 8 }; + * assert.doesNotIncrease(fn, obj, 'val'); + * + * @name doesNotIncrease + * @param {Function} modifier function + * @param {Object} object + * @param {String} property name + * @param {String} message _optional_ + * @namespace Assert + * @api public + */ + + assert.doesNotIncrease = function (fn, obj, prop) { + new Assertion(fn).to.not.increase(obj, prop); + } + + /** + * ### .decreases(function, object, property) + * + * Asserts that a function decreases an object property + * + * var obj = { val: 10 }; + * var fn = function() { obj.val = 5 }; + * assert.decreases(fn, obj, 'val'); + * + * @name decreases + * @param {Function} modifier function + * @param {Object} object + * @param {String} property name + * @param {String} message _optional_ + * @namespace Assert + * @api public + */ + + assert.decreases = function (fn, obj, prop) { + new Assertion(fn).to.decrease(obj, prop); + } + + /** + * ### .doesNotDecrease(function, object, property) + * + * Asserts that a function does not decreases an object property + * + * var obj = { val: 10 }; + * var fn = function() { obj.val = 15 }; + * assert.doesNotDecrease(fn, obj, 'val'); + * + * @name doesNotDecrease + * @param {Function} modifier function + * @param {Object} object + * @param {String} property name + * @param {String} message _optional_ + * @namespace Assert + * @api public + */ + + assert.doesNotDecrease = function (fn, obj, prop) { + new Assertion(fn).to.not.decrease(obj, prop); + } + + /*! + * ### .ifError(object) + * + * Asserts if value is not a false value, and throws if it is a true value. + * This is added to allow for chai to be a drop-in replacement for Node's + * assert class. + * + * var err = new Error('I am a custom error'); + * assert.ifError(err); // Rethrows err! + * + * @name ifError + * @param {Object} object + * @namespace Assert + * @api public + */ + + assert.ifError = function (val) { + if (val) { + throw(val); + } + }; + + /** + * ### .isExtensible(object) + * + * Asserts that `object` is extensible (can have new properties added to it). + * + * assert.isExtensible({}); + * + * @name isExtensible + * @alias extensible + * @param {Object} object + * @param {String} message _optional_ + * @namespace Assert + * @api public + */ + + assert.isExtensible = function (obj, msg) { + new Assertion(obj, msg).to.be.extensible; + }; + + /** + * ### .isNotExtensible(object) + * + * Asserts that `object` is _not_ extensible. + * + * var nonExtensibleObject = Object.preventExtensions({}); + * var sealedObject = Object.seal({}); + * var frozenObject = Object.freese({}); + * + * assert.isNotExtensible(nonExtensibleObject); + * assert.isNotExtensible(sealedObject); + * assert.isNotExtensible(frozenObject); + * + * @name isNotExtensible + * @alias notExtensible + * @param {Object} object + * @param {String} message _optional_ + * @namespace Assert + * @api public + */ + + assert.isNotExtensible = function (obj, msg) { + new Assertion(obj, msg).to.not.be.extensible; + }; + + /** + * ### .isSealed(object) + * + * Asserts that `object` is sealed (cannot have new properties added to it + * and its existing properties cannot be removed). + * + * var sealedObject = Object.seal({}); + * var frozenObject = Object.seal({}); + * + * assert.isSealed(sealedObject); + * assert.isSealed(frozenObject); + * + * @name isSealed + * @alias sealed + * @param {Object} object + * @param {String} message _optional_ + * @namespace Assert + * @api public + */ + + assert.isSealed = function (obj, msg) { + new Assertion(obj, msg).to.be.sealed; + }; + + /** + * ### .isNotSealed(object) + * + * Asserts that `object` is _not_ sealed. + * + * assert.isNotSealed({}); + * + * @name isNotSealed + * @alias notSealed + * @param {Object} object + * @param {String} message _optional_ + * @namespace Assert + * @api public + */ + + assert.isNotSealed = function (obj, msg) { + new Assertion(obj, msg).to.not.be.sealed; + }; + + /** + * ### .isFrozen(object) + * + * Asserts that `object` is frozen (cannot have new properties added to it + * and its existing properties cannot be modified). + * + * var frozenObject = Object.freeze({}); + * assert.frozen(frozenObject); + * + * @name isFrozen + * @alias frozen + * @param {Object} object + * @param {String} message _optional_ + * @namespace Assert + * @api public + */ + + assert.isFrozen = function (obj, msg) { + new Assertion(obj, msg).to.be.frozen; + }; + + /** + * ### .isNotFrozen(object) + * + * Asserts that `object` is _not_ frozen. + * + * assert.isNotFrozen({}); + * + * @name isNotFrozen + * @alias notFrozen + * @param {Object} object + * @param {String} message _optional_ + * @namespace Assert + * @api public + */ + + assert.isNotFrozen = function (obj, msg) { + new Assertion(obj, msg).to.not.be.frozen; + }; + + /*! + * Aliases. + */ + + (function alias(name, as){ + assert[as] = assert[name]; + return alias; + }) + ('isOk', 'ok') + ('isNotOk', 'notOk') + ('throws', 'throw') + ('throws', 'Throw') + ('isExtensible', 'extensible') + ('isNotExtensible', 'notExtensible') + ('isSealed', 'sealed') + ('isNotSealed', 'notSealed') + ('isFrozen', 'frozen') + ('isNotFrozen', 'notFrozen'); +}; + +},{}],7:[function(require,module,exports){ +/*! + * chai + * Copyright(c) 2011-2014 Jake Luer + * MIT Licensed + */ + +module.exports = function (chai, util) { + chai.expect = function (val, message) { + return new chai.Assertion(val, message); + }; + + /** + * ### .fail(actual, expected, [message], [operator]) + * + * Throw a failure. + * + * @name fail + * @param {Mixed} actual + * @param {Mixed} expected + * @param {String} message + * @param {String} operator + * @namespace Expect + * @api public + */ + + chai.expect.fail = function (actual, expected, message, operator) { + message = message || 'expect.fail()'; + throw new chai.AssertionError(message, { + actual: actual + , expected: expected + , operator: operator + }, chai.expect.fail); + }; +}; + +},{}],8:[function(require,module,exports){ +/*! + * chai + * Copyright(c) 2011-2014 Jake Luer + * MIT Licensed + */ + +module.exports = function (chai, util) { + var Assertion = chai.Assertion; + + function loadShould () { + // explicitly define this method as function as to have it's name to include as `ssfi` + function shouldGetter() { + if (this instanceof String || this instanceof Number || this instanceof Boolean ) { + return new Assertion(this.valueOf(), null, shouldGetter); + } + return new Assertion(this, null, shouldGetter); + } + function shouldSetter(value) { + // See https://github.com/chaijs/chai/issues/86: this makes + // `whatever.should = someValue` actually set `someValue`, which is + // especially useful for `global.should = require('chai').should()`. + // + // Note that we have to use [[DefineProperty]] instead of [[Put]] + // since otherwise we would trigger this very setter! + Object.defineProperty(this, 'should', { + value: value, + enumerable: true, + configurable: true, + writable: true + }); + } + // modify Object.prototype to have `should` + Object.defineProperty(Object.prototype, 'should', { + set: shouldSetter + , get: shouldGetter + , configurable: true + }); + + var should = {}; + + /** + * ### .fail(actual, expected, [message], [operator]) + * + * Throw a failure. + * + * @name fail + * @param {Mixed} actual + * @param {Mixed} expected + * @param {String} message + * @param {String} operator + * @namespace Should + * @api public + */ + + should.fail = function (actual, expected, message, operator) { + message = message || 'should.fail()'; + throw new chai.AssertionError(message, { + actual: actual + , expected: expected + , operator: operator + }, should.fail); + }; + + /** + * ### .equal(actual, expected, [message]) + * + * Asserts non-strict equality (`==`) of `actual` and `expected`. + * + * should.equal(3, '3', '== coerces values to strings'); + * + * @name equal + * @param {Mixed} actual + * @param {Mixed} expected + * @param {String} message + * @namespace Should + * @api public + */ + + should.equal = function (val1, val2, msg) { + new Assertion(val1, msg).to.equal(val2); + }; + + /** + * ### .throw(function, [constructor/string/regexp], [string/regexp], [message]) + * + * Asserts that `function` will throw an error that is an instance of + * `constructor`, or alternately that it will throw an error with message + * matching `regexp`. + * + * should.throw(fn, 'function throws a reference error'); + * should.throw(fn, /function throws a reference error/); + * should.throw(fn, ReferenceError); + * should.throw(fn, ReferenceError, 'function throws a reference error'); + * should.throw(fn, ReferenceError, /function throws a reference error/); + * + * @name throw + * @alias Throw + * @param {Function} function + * @param {ErrorConstructor} constructor + * @param {RegExp} regexp + * @param {String} message + * @see https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Error#Error_types + * @namespace Should + * @api public + */ + + should.Throw = function (fn, errt, errs, msg) { + new Assertion(fn, msg).to.Throw(errt, errs); + }; + + /** + * ### .exist + * + * Asserts that the target is neither `null` nor `undefined`. + * + * var foo = 'hi'; + * + * should.exist(foo, 'foo exists'); + * + * @name exist + * @namespace Should + * @api public + */ + + should.exist = function (val, msg) { + new Assertion(val, msg).to.exist; + } + + // negation + should.not = {} + + /** + * ### .not.equal(actual, expected, [message]) + * + * Asserts non-strict inequality (`!=`) of `actual` and `expected`. + * + * should.not.equal(3, 4, 'these numbers are not equal'); + * + * @name not.equal + * @param {Mixed} actual + * @param {Mixed} expected + * @param {String} message + * @namespace Should + * @api public + */ + + should.not.equal = function (val1, val2, msg) { + new Assertion(val1, msg).to.not.equal(val2); + }; + + /** + * ### .throw(function, [constructor/regexp], [message]) + * + * Asserts that `function` will _not_ throw an error that is an instance of + * `constructor`, or alternately that it will not throw an error with message + * matching `regexp`. + * + * should.not.throw(fn, Error, 'function does not throw'); + * + * @name not.throw + * @alias not.Throw + * @param {Function} function + * @param {ErrorConstructor} constructor + * @param {RegExp} regexp + * @param {String} message + * @see https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Error#Error_types + * @namespace Should + * @api public + */ + + should.not.Throw = function (fn, errt, errs, msg) { + new Assertion(fn, msg).to.not.Throw(errt, errs); + }; + + /** + * ### .not.exist + * + * Asserts that the target is neither `null` nor `undefined`. + * + * var bar = null; + * + * should.not.exist(bar, 'bar does not exist'); + * + * @name not.exist + * @namespace Should + * @api public + */ + + should.not.exist = function (val, msg) { + new Assertion(val, msg).to.not.exist; + } + + should['throw'] = should['Throw']; + should.not['throw'] = should.not['Throw']; + + return should; + }; + + chai.should = loadShould; + chai.Should = loadShould; +}; + +},{}],9:[function(require,module,exports){ +/*! + * Chai - addChainingMethod utility + * Copyright(c) 2012-2014 Jake Luer + * MIT Licensed + */ + +/*! + * Module dependencies + */ + +var transferFlags = require('./transferFlags'); +var flag = require('./flag'); +var config = require('../config'); + +/*! + * Module variables + */ + +// Check whether `__proto__` is supported +var hasProtoSupport = '__proto__' in Object; + +// Without `__proto__` support, this module will need to add properties to a function. +// However, some Function.prototype methods cannot be overwritten, +// and there seems no easy cross-platform way to detect them (@see chaijs/chai/issues/69). +var excludeNames = /^(?:length|name|arguments|caller)$/; + +// Cache `Function` properties +var call = Function.prototype.call, + apply = Function.prototype.apply; + +/** + * ### addChainableMethod (ctx, name, method, chainingBehavior) + * + * Adds a method to an object, such that the method can also be chained. + * + * utils.addChainableMethod(chai.Assertion.prototype, 'foo', function (str) { + * var obj = utils.flag(this, 'object'); + * new chai.Assertion(obj).to.be.equal(str); + * }); + * + * Can also be accessed directly from `chai.Assertion`. + * + * chai.Assertion.addChainableMethod('foo', fn, chainingBehavior); + * + * The result can then be used as both a method assertion, executing both `method` and + * `chainingBehavior`, or as a language chain, which only executes `chainingBehavior`. + * + * expect(fooStr).to.be.foo('bar'); + * expect(fooStr).to.be.foo.equal('foo'); + * + * @param {Object} ctx object to which the method is added + * @param {String} name of method to add + * @param {Function} method function to be used for `name`, when called + * @param {Function} chainingBehavior function to be called every time the property is accessed + * @namespace Utils + * @name addChainableMethod + * @api public + */ + +module.exports = function (ctx, name, method, chainingBehavior) { + if (typeof chainingBehavior !== 'function') { + chainingBehavior = function () { }; + } + + var chainableBehavior = { + method: method + , chainingBehavior: chainingBehavior + }; + + // save the methods so we can overwrite them later, if we need to. + if (!ctx.__methods) { + ctx.__methods = {}; + } + ctx.__methods[name] = chainableBehavior; + + Object.defineProperty(ctx, name, + { get: function () { + chainableBehavior.chainingBehavior.call(this); + + var assert = function assert() { + var old_ssfi = flag(this, 'ssfi'); + if (old_ssfi && config.includeStack === false) + flag(this, 'ssfi', assert); + var result = chainableBehavior.method.apply(this, arguments); + return result === undefined ? this : result; + }; + + // Use `__proto__` if available + if (hasProtoSupport) { + // Inherit all properties from the object by replacing the `Function` prototype + var prototype = assert.__proto__ = Object.create(this); + // Restore the `call` and `apply` methods from `Function` + prototype.call = call; + prototype.apply = apply; + } + // Otherwise, redefine all properties (slow!) + else { + var asserterNames = Object.getOwnPropertyNames(ctx); + asserterNames.forEach(function (asserterName) { + if (!excludeNames.test(asserterName)) { + var pd = Object.getOwnPropertyDescriptor(ctx, asserterName); + Object.defineProperty(assert, asserterName, pd); + } + }); + } + + transferFlags(this, assert); + return assert; + } + , configurable: true + }); +}; + +},{"../config":4,"./flag":13,"./transferFlags":29}],10:[function(require,module,exports){ +/*! + * Chai - addMethod utility + * Copyright(c) 2012-2014 Jake Luer + * MIT Licensed + */ + +var config = require('../config'); + +/** + * ### .addMethod (ctx, name, method) + * + * Adds a method to the prototype of an object. + * + * utils.addMethod(chai.Assertion.prototype, 'foo', function (str) { + * var obj = utils.flag(this, 'object'); + * new chai.Assertion(obj).to.be.equal(str); + * }); + * + * Can also be accessed directly from `chai.Assertion`. + * + * chai.Assertion.addMethod('foo', fn); + * + * Then can be used as any other assertion. + * + * expect(fooStr).to.be.foo('bar'); + * + * @param {Object} ctx object to which the method is added + * @param {String} name of method to add + * @param {Function} method function to be used for name + * @namespace Utils + * @name addMethod + * @api public + */ +var flag = require('./flag'); + +module.exports = function (ctx, name, method) { + ctx[name] = function () { + var old_ssfi = flag(this, 'ssfi'); + if (old_ssfi && config.includeStack === false) + flag(this, 'ssfi', ctx[name]); + var result = method.apply(this, arguments); + return result === undefined ? this : result; + }; +}; + +},{"../config":4,"./flag":13}],11:[function(require,module,exports){ +/*! + * Chai - addProperty utility + * Copyright(c) 2012-2014 Jake Luer + * MIT Licensed + */ + +var config = require('../config'); +var flag = require('./flag'); + +/** + * ### addProperty (ctx, name, getter) + * + * Adds a property to the prototype of an object. + * + * utils.addProperty(chai.Assertion.prototype, 'foo', function () { + * var obj = utils.flag(this, 'object'); + * new chai.Assertion(obj).to.be.instanceof(Foo); + * }); + * + * Can also be accessed directly from `chai.Assertion`. + * + * chai.Assertion.addProperty('foo', fn); + * + * Then can be used as any other assertion. + * + * expect(myFoo).to.be.foo; + * + * @param {Object} ctx object to which the property is added + * @param {String} name of property to add + * @param {Function} getter function to be used for name + * @namespace Utils + * @name addProperty + * @api public + */ + +module.exports = function (ctx, name, getter) { + Object.defineProperty(ctx, name, + { get: function addProperty() { + var old_ssfi = flag(this, 'ssfi'); + if (old_ssfi && config.includeStack === false) + flag(this, 'ssfi', addProperty); + + var result = getter.call(this); + return result === undefined ? this : result; + } + , configurable: true + }); +}; + +},{"../config":4,"./flag":13}],12:[function(require,module,exports){ +/*! + * Chai - expectTypes utility + * Copyright(c) 2012-2014 Jake Luer + * MIT Licensed + */ + +/** + * ### expectTypes(obj, types) + * + * Ensures that the object being tested against is of a valid type. + * + * utils.expectTypes(this, ['array', 'object', 'string']); + * + * @param {Mixed} obj constructed Assertion + * @param {Array} type A list of allowed types for this assertion + * @namespace Utils + * @name expectTypes + * @api public + */ + +var AssertionError = require('assertion-error'); +var flag = require('./flag'); +var type = require('type-detect'); + +module.exports = function (obj, types) { + var obj = flag(obj, 'object'); + types = types.map(function (t) { return t.toLowerCase(); }); + types.sort(); + + // Transforms ['lorem', 'ipsum'] into 'a lirum, or an ipsum' + var str = types.map(function (t, index) { + var art = ~[ 'a', 'e', 'i', 'o', 'u' ].indexOf(t.charAt(0)) ? 'an' : 'a'; + var or = types.length > 1 && index === types.length - 1 ? 'or ' : ''; + return or + art + ' ' + t; + }).join(', '); + + if (!types.some(function (expected) { return type(obj) === expected; })) { + throw new AssertionError( + 'object tested must be ' + str + ', but ' + type(obj) + ' given' + ); + } +}; + +},{"./flag":13,"assertion-error":30,"type-detect":35}],13:[function(require,module,exports){ +/*! + * Chai - flag utility + * Copyright(c) 2012-2014 Jake Luer + * MIT Licensed + */ + +/** + * ### flag(object, key, [value]) + * + * Get or set a flag value on an object. If a + * value is provided it will be set, else it will + * return the currently set value or `undefined` if + * the value is not set. + * + * utils.flag(this, 'foo', 'bar'); // setter + * utils.flag(this, 'foo'); // getter, returns `bar` + * + * @param {Object} object constructed Assertion + * @param {String} key + * @param {Mixed} value (optional) + * @namespace Utils + * @name flag + * @api private + */ + +module.exports = function (obj, key, value) { + var flags = obj.__flags || (obj.__flags = Object.create(null)); + if (arguments.length === 3) { + flags[key] = value; + } else { + return flags[key]; + } +}; + +},{}],14:[function(require,module,exports){ +/*! + * Chai - getActual utility + * Copyright(c) 2012-2014 Jake Luer + * MIT Licensed + */ + +/** + * # getActual(object, [actual]) + * + * Returns the `actual` value for an Assertion + * + * @param {Object} object (constructed Assertion) + * @param {Arguments} chai.Assertion.prototype.assert arguments + * @namespace Utils + * @name getActual + */ + +module.exports = function (obj, args) { + return args.length > 4 ? args[4] : obj._obj; +}; + +},{}],15:[function(require,module,exports){ +/*! + * Chai - getEnumerableProperties utility + * Copyright(c) 2012-2014 Jake Luer + * MIT Licensed + */ + +/** + * ### .getEnumerableProperties(object) + * + * This allows the retrieval of enumerable property names of an object, + * inherited or not. + * + * @param {Object} object + * @returns {Array} + * @namespace Utils + * @name getEnumerableProperties + * @api public + */ + +module.exports = function getEnumerableProperties(object) { + var result = []; + for (var name in object) { + result.push(name); + } + return result; +}; + +},{}],16:[function(require,module,exports){ +/*! + * Chai - message composition utility + * Copyright(c) 2012-2014 Jake Luer + * MIT Licensed + */ + +/*! + * Module dependancies + */ + +var flag = require('./flag') + , getActual = require('./getActual') + , inspect = require('./inspect') + , objDisplay = require('./objDisplay'); + +/** + * ### .getMessage(object, message, negateMessage) + * + * Construct the error message based on flags + * and template tags. Template tags will return + * a stringified inspection of the object referenced. + * + * Message template tags: + * - `#{this}` current asserted object + * - `#{act}` actual value + * - `#{exp}` expected value + * + * @param {Object} object (constructed Assertion) + * @param {Arguments} chai.Assertion.prototype.assert arguments + * @namespace Utils + * @name getMessage + * @api public + */ + +module.exports = function (obj, args) { + var negate = flag(obj, 'negate') + , val = flag(obj, 'object') + , expected = args[3] + , actual = getActual(obj, args) + , msg = negate ? args[2] : args[1] + , flagMsg = flag(obj, 'message'); + + if(typeof msg === "function") msg = msg(); + msg = msg || ''; + msg = msg + .replace(/#\{this\}/g, function () { return objDisplay(val); }) + .replace(/#\{act\}/g, function () { return objDisplay(actual); }) + .replace(/#\{exp\}/g, function () { return objDisplay(expected); }); + + return flagMsg ? flagMsg + ': ' + msg : msg; +}; + +},{"./flag":13,"./getActual":14,"./inspect":23,"./objDisplay":24}],17:[function(require,module,exports){ +/*! + * Chai - getName utility + * Copyright(c) 2012-2014 Jake Luer + * MIT Licensed + */ + +/** + * # getName(func) + * + * Gets the name of a function, in a cross-browser way. + * + * @param {Function} a function (usually a constructor) + * @namespace Utils + * @name getName + */ + +module.exports = function (func) { + if (func.name) return func.name; + + var match = /^\s?function ([^(]*)\(/.exec(func); + return match && match[1] ? match[1] : ""; +}; + +},{}],18:[function(require,module,exports){ +/*! + * Chai - getPathInfo utility + * Copyright(c) 2012-2014 Jake Luer + * MIT Licensed + */ + +var hasProperty = require('./hasProperty'); + +/** + * ### .getPathInfo(path, object) + * + * This allows the retrieval of property info in an + * object given a string path. + * + * The path info consists of an object with the + * following properties: + * + * * parent - The parent object of the property referenced by `path` + * * name - The name of the final property, a number if it was an array indexer + * * value - The value of the property, if it exists, otherwise `undefined` + * * exists - Whether the property exists or not + * + * @param {String} path + * @param {Object} object + * @returns {Object} info + * @namespace Utils + * @name getPathInfo + * @api public + */ + +module.exports = function getPathInfo(path, obj) { + var parsed = parsePath(path), + last = parsed[parsed.length - 1]; + + var info = { + parent: parsed.length > 1 ? _getPathValue(parsed, obj, parsed.length - 1) : obj, + name: last.p || last.i, + value: _getPathValue(parsed, obj) + }; + info.exists = hasProperty(info.name, info.parent); + + return info; +}; + + +/*! + * ## parsePath(path) + * + * Helper function used to parse string object + * paths. Use in conjunction with `_getPathValue`. + * + * var parsed = parsePath('myobject.property.subprop'); + * + * ### Paths: + * + * * Can be as near infinitely deep and nested + * * Arrays are also valid using the formal `myobject.document[3].property`. + * * Literal dots and brackets (not delimiter) must be backslash-escaped. + * + * @param {String} path + * @returns {Object} parsed + * @api private + */ + +function parsePath (path) { + var str = path.replace(/([^\\])\[/g, '$1.[') + , parts = str.match(/(\\\.|[^.]+?)+/g); + return parts.map(function (value) { + var re = /^\[(\d+)\]$/ + , mArr = re.exec(value); + if (mArr) return { i: parseFloat(mArr[1]) }; + else return { p: value.replace(/\\([.\[\]])/g, '$1') }; + }); +} + + +/*! + * ## _getPathValue(parsed, obj) + * + * Helper companion function for `.parsePath` that returns + * the value located at the parsed address. + * + * var value = getPathValue(parsed, obj); + * + * @param {Object} parsed definition from `parsePath`. + * @param {Object} object to search against + * @param {Number} object to search against + * @returns {Object|Undefined} value + * @api private + */ + +function _getPathValue (parsed, obj, index) { + var tmp = obj + , res; + + index = (index === undefined ? parsed.length : index); + + for (var i = 0, l = index; i < l; i++) { + var part = parsed[i]; + if (tmp) { + if ('undefined' !== typeof part.p) + tmp = tmp[part.p]; + else if ('undefined' !== typeof part.i) + tmp = tmp[part.i]; + if (i == (l - 1)) res = tmp; + } else { + res = undefined; + } + } + return res; +} + +},{"./hasProperty":21}],19:[function(require,module,exports){ +/*! + * Chai - getPathValue utility + * Copyright(c) 2012-2014 Jake Luer + * @see https://github.com/logicalparadox/filtr + * MIT Licensed + */ + +var getPathInfo = require('./getPathInfo'); + +/** + * ### .getPathValue(path, object) + * + * This allows the retrieval of values in an + * object given a string path. + * + * var obj = { + * prop1: { + * arr: ['a', 'b', 'c'] + * , str: 'Hello' + * } + * , prop2: { + * arr: [ { nested: 'Universe' } ] + * , str: 'Hello again!' + * } + * } + * + * The following would be the results. + * + * getPathValue('prop1.str', obj); // Hello + * getPathValue('prop1.att[2]', obj); // b + * getPathValue('prop2.arr[0].nested', obj); // Universe + * + * @param {String} path + * @param {Object} object + * @returns {Object} value or `undefined` + * @namespace Utils + * @name getPathValue + * @api public + */ +module.exports = function(path, obj) { + var info = getPathInfo(path, obj); + return info.value; +}; + +},{"./getPathInfo":18}],20:[function(require,module,exports){ +/*! + * Chai - getProperties utility + * Copyright(c) 2012-2014 Jake Luer + * MIT Licensed + */ + +/** + * ### .getProperties(object) + * + * This allows the retrieval of property names of an object, enumerable or not, + * inherited or not. + * + * @param {Object} object + * @returns {Array} + * @namespace Utils + * @name getProperties + * @api public + */ + +module.exports = function getProperties(object) { + var result = Object.getOwnPropertyNames(object); + + function addProperty(property) { + if (result.indexOf(property) === -1) { + result.push(property); + } + } + + var proto = Object.getPrototypeOf(object); + while (proto !== null) { + Object.getOwnPropertyNames(proto).forEach(addProperty); + proto = Object.getPrototypeOf(proto); + } + + return result; +}; + +},{}],21:[function(require,module,exports){ +/*! + * Chai - hasProperty utility + * Copyright(c) 2012-2014 Jake Luer + * MIT Licensed + */ + +var type = require('type-detect'); + +/** + * ### .hasProperty(object, name) + * + * This allows checking whether an object has + * named property or numeric array index. + * + * Basically does the same thing as the `in` + * operator but works properly with natives + * and null/undefined values. + * + * var obj = { + * arr: ['a', 'b', 'c'] + * , str: 'Hello' + * } + * + * The following would be the results. + * + * hasProperty('str', obj); // true + * hasProperty('constructor', obj); // true + * hasProperty('bar', obj); // false + * + * hasProperty('length', obj.str); // true + * hasProperty(1, obj.str); // true + * hasProperty(5, obj.str); // false + * + * hasProperty('length', obj.arr); // true + * hasProperty(2, obj.arr); // true + * hasProperty(3, obj.arr); // false + * + * @param {Objuect} object + * @param {String|Number} name + * @returns {Boolean} whether it exists + * @namespace Utils + * @name getPathInfo + * @api public + */ + +var literals = { + 'number': Number + , 'string': String +}; + +module.exports = function hasProperty(name, obj) { + var ot = type(obj); + + // Bad Object, obviously no props at all + if(ot === 'null' || ot === 'undefined') + return false; + + // The `in` operator does not work with certain literals + // box these before the check + if(literals[ot] && typeof obj !== 'object') + obj = new literals[ot](obj); + + return name in obj; +}; + +},{"type-detect":35}],22:[function(require,module,exports){ +/*! + * chai + * Copyright(c) 2011 Jake Luer + * MIT Licensed + */ + +/*! + * Main exports + */ + +var exports = module.exports = {}; + +/*! + * test utility + */ + +exports.test = require('./test'); + +/*! + * type utility + */ + +exports.type = require('type-detect'); + +/*! + * expectTypes utility + */ +exports.expectTypes = require('./expectTypes'); + +/*! + * message utility + */ + +exports.getMessage = require('./getMessage'); + +/*! + * actual utility + */ + +exports.getActual = require('./getActual'); + +/*! + * Inspect util + */ + +exports.inspect = require('./inspect'); + +/*! + * Object Display util + */ + +exports.objDisplay = require('./objDisplay'); + +/*! + * Flag utility + */ + +exports.flag = require('./flag'); + +/*! + * Flag transferring utility + */ + +exports.transferFlags = require('./transferFlags'); + +/*! + * Deep equal utility + */ + +exports.eql = require('deep-eql'); + +/*! + * Deep path value + */ + +exports.getPathValue = require('./getPathValue'); + +/*! + * Deep path info + */ + +exports.getPathInfo = require('./getPathInfo'); + +/*! + * Check if a property exists + */ + +exports.hasProperty = require('./hasProperty'); + +/*! + * Function name + */ + +exports.getName = require('./getName'); + +/*! + * add Property + */ + +exports.addProperty = require('./addProperty'); + +/*! + * add Method + */ + +exports.addMethod = require('./addMethod'); + +/*! + * overwrite Property + */ + +exports.overwriteProperty = require('./overwriteProperty'); + +/*! + * overwrite Method + */ + +exports.overwriteMethod = require('./overwriteMethod'); + +/*! + * Add a chainable method + */ + +exports.addChainableMethod = require('./addChainableMethod'); + +/*! + * Overwrite chainable method + */ + +exports.overwriteChainableMethod = require('./overwriteChainableMethod'); + +},{"./addChainableMethod":9,"./addMethod":10,"./addProperty":11,"./expectTypes":12,"./flag":13,"./getActual":14,"./getMessage":16,"./getName":17,"./getPathInfo":18,"./getPathValue":19,"./hasProperty":21,"./inspect":23,"./objDisplay":24,"./overwriteChainableMethod":25,"./overwriteMethod":26,"./overwriteProperty":27,"./test":28,"./transferFlags":29,"deep-eql":31,"type-detect":35}],23:[function(require,module,exports){ +// This is (almost) directly from Node.js utils +// https://github.com/joyent/node/blob/f8c335d0caf47f16d31413f89aa28eda3878e3aa/lib/util.js + +var getName = require('./getName'); +var getProperties = require('./getProperties'); +var getEnumerableProperties = require('./getEnumerableProperties'); + +module.exports = inspect; + +/** + * Echos the value of a value. Trys to print the value out + * in the best way possible given the different types. + * + * @param {Object} obj The object to print out. + * @param {Boolean} showHidden Flag that shows hidden (not enumerable) + * properties of objects. + * @param {Number} depth Depth in which to descend in object. Default is 2. + * @param {Boolean} colors Flag to turn on ANSI escape codes to color the + * output. Default is false (no coloring). + * @namespace Utils + * @name inspect + */ +function inspect(obj, showHidden, depth, colors) { + var ctx = { + showHidden: showHidden, + seen: [], + stylize: function (str) { return str; } + }; + return formatValue(ctx, obj, (typeof depth === 'undefined' ? 2 : depth)); +} + +// Returns true if object is a DOM element. +var isDOMElement = function (object) { + if (typeof HTMLElement === 'object') { + return object instanceof HTMLElement; + } else { + return object && + typeof object === 'object' && + object.nodeType === 1 && + typeof object.nodeName === 'string'; + } +}; + +function formatValue(ctx, value, recurseTimes) { + // Provide a hook for user-specified inspect functions. + // Check that value is an object with an inspect function on it + if (value && typeof value.inspect === 'function' && + // Filter out the util module, it's inspect function is special + value.inspect !== exports.inspect && + // Also filter out any prototype objects using the circular check. + !(value.constructor && value.constructor.prototype === value)) { + var ret = value.inspect(recurseTimes); + if (typeof ret !== 'string') { + ret = formatValue(ctx, ret, recurseTimes); + } + return ret; + } + + // Primitive types cannot have properties + var primitive = formatPrimitive(ctx, value); + if (primitive) { + return primitive; + } + + // If this is a DOM element, try to get the outer HTML. + if (isDOMElement(value)) { + if ('outerHTML' in value) { + return value.outerHTML; + // This value does not have an outerHTML attribute, + // it could still be an XML element + } else { + // Attempt to serialize it + try { + if (document.xmlVersion) { + var xmlSerializer = new XMLSerializer(); + return xmlSerializer.serializeToString(value); + } else { + // Firefox 11- do not support outerHTML + // It does, however, support innerHTML + // Use the following to render the element + var ns = "http://www.w3.org/1999/xhtml"; + var container = document.createElementNS(ns, '_'); + + container.appendChild(value.cloneNode(false)); + html = container.innerHTML + .replace('><', '>' + value.innerHTML + '<'); + container.innerHTML = ''; + return html; + } + } catch (err) { + // This could be a non-native DOM implementation, + // continue with the normal flow: + // printing the element as if it is an object. + } + } + } + + // Look up the keys of the object. + var visibleKeys = getEnumerableProperties(value); + var keys = ctx.showHidden ? getProperties(value) : visibleKeys; + + // Some type of object without properties can be shortcutted. + // In IE, errors have a single `stack` property, or if they are vanilla `Error`, + // a `stack` plus `description` property; ignore those for consistency. + if (keys.length === 0 || (isError(value) && ( + (keys.length === 1 && keys[0] === 'stack') || + (keys.length === 2 && keys[0] === 'description' && keys[1] === 'stack') + ))) { + if (typeof value === 'function') { + var name = getName(value); + var nameSuffix = name ? ': ' + name : ''; + return ctx.stylize('[Function' + nameSuffix + ']', 'special'); + } + if (isRegExp(value)) { + return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp'); + } + if (isDate(value)) { + return ctx.stylize(Date.prototype.toUTCString.call(value), 'date'); + } + if (isError(value)) { + return formatError(value); + } + } + + var base = '', array = false, braces = ['{', '}']; + + // Make Array say that they are Array + if (isArray(value)) { + array = true; + braces = ['[', ']']; + } + + // Make functions say that they are functions + if (typeof value === 'function') { + var name = getName(value); + var nameSuffix = name ? ': ' + name : ''; + base = ' [Function' + nameSuffix + ']'; + } + + // Make RegExps say that they are RegExps + if (isRegExp(value)) { + base = ' ' + RegExp.prototype.toString.call(value); + } + + // Make dates with properties first say the date + if (isDate(value)) { + base = ' ' + Date.prototype.toUTCString.call(value); + } + + // Make error with message first say the error + if (isError(value)) { + return formatError(value); + } + + if (keys.length === 0 && (!array || value.length == 0)) { + return braces[0] + base + braces[1]; + } + + if (recurseTimes < 0) { + if (isRegExp(value)) { + return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp'); + } else { + return ctx.stylize('[Object]', 'special'); + } + } + + ctx.seen.push(value); + + var output; + if (array) { + output = formatArray(ctx, value, recurseTimes, visibleKeys, keys); + } else { + output = keys.map(function(key) { + return formatProperty(ctx, value, recurseTimes, visibleKeys, key, array); + }); + } + + ctx.seen.pop(); + + return reduceToSingleString(output, base, braces); +} + + +function formatPrimitive(ctx, value) { + switch (typeof value) { + case 'undefined': + return ctx.stylize('undefined', 'undefined'); + + case 'string': + var simple = '\'' + JSON.stringify(value).replace(/^"|"$/g, '') + .replace(/'/g, "\\'") + .replace(/\\"/g, '"') + '\''; + return ctx.stylize(simple, 'string'); + + case 'number': + if (value === 0 && (1/value) === -Infinity) { + return ctx.stylize('-0', 'number'); + } + return ctx.stylize('' + value, 'number'); + + case 'boolean': + return ctx.stylize('' + value, 'boolean'); + } + // For some reason typeof null is "object", so special case here. + if (value === null) { + return ctx.stylize('null', 'null'); + } +} + + +function formatError(value) { + return '[' + Error.prototype.toString.call(value) + ']'; +} + + +function formatArray(ctx, value, recurseTimes, visibleKeys, keys) { + var output = []; + for (var i = 0, l = value.length; i < l; ++i) { + if (Object.prototype.hasOwnProperty.call(value, String(i))) { + output.push(formatProperty(ctx, value, recurseTimes, visibleKeys, + String(i), true)); + } else { + output.push(''); + } + } + keys.forEach(function(key) { + if (!key.match(/^\d+$/)) { + output.push(formatProperty(ctx, value, recurseTimes, visibleKeys, + key, true)); + } + }); + return output; +} + + +function formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) { + var name, str; + if (value.__lookupGetter__) { + if (value.__lookupGetter__(key)) { + if (value.__lookupSetter__(key)) { + str = ctx.stylize('[Getter/Setter]', 'special'); + } else { + str = ctx.stylize('[Getter]', 'special'); + } + } else { + if (value.__lookupSetter__(key)) { + str = ctx.stylize('[Setter]', 'special'); + } + } + } + if (visibleKeys.indexOf(key) < 0) { + name = '[' + key + ']'; + } + if (!str) { + if (ctx.seen.indexOf(value[key]) < 0) { + if (recurseTimes === null) { + str = formatValue(ctx, value[key], null); + } else { + str = formatValue(ctx, value[key], recurseTimes - 1); + } + if (str.indexOf('\n') > -1) { + if (array) { + str = str.split('\n').map(function(line) { + return ' ' + line; + }).join('\n').substr(2); + } else { + str = '\n' + str.split('\n').map(function(line) { + return ' ' + line; + }).join('\n'); + } + } + } else { + str = ctx.stylize('[Circular]', 'special'); + } + } + if (typeof name === 'undefined') { + if (array && key.match(/^\d+$/)) { + return str; + } + name = JSON.stringify('' + key); + if (name.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)) { + name = name.substr(1, name.length - 2); + name = ctx.stylize(name, 'name'); + } else { + name = name.replace(/'/g, "\\'") + .replace(/\\"/g, '"') + .replace(/(^"|"$)/g, "'"); + name = ctx.stylize(name, 'string'); + } + } + + return name + ': ' + str; +} + + +function reduceToSingleString(output, base, braces) { + var numLinesEst = 0; + var length = output.reduce(function(prev, cur) { + numLinesEst++; + if (cur.indexOf('\n') >= 0) numLinesEst++; + return prev + cur.length + 1; + }, 0); + + if (length > 60) { + return braces[0] + + (base === '' ? '' : base + '\n ') + + ' ' + + output.join(',\n ') + + ' ' + + braces[1]; + } + + return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1]; +} + +function isArray(ar) { + return Array.isArray(ar) || + (typeof ar === 'object' && objectToString(ar) === '[object Array]'); +} + +function isRegExp(re) { + return typeof re === 'object' && objectToString(re) === '[object RegExp]'; +} + +function isDate(d) { + return typeof d === 'object' && objectToString(d) === '[object Date]'; +} + +function isError(e) { + return typeof e === 'object' && objectToString(e) === '[object Error]'; +} + +function objectToString(o) { + return Object.prototype.toString.call(o); +} + +},{"./getEnumerableProperties":15,"./getName":17,"./getProperties":20}],24:[function(require,module,exports){ +/*! + * Chai - flag utility + * Copyright(c) 2012-2014 Jake Luer + * MIT Licensed + */ + +/*! + * Module dependancies + */ + +var inspect = require('./inspect'); +var config = require('../config'); + +/** + * ### .objDisplay (object) + * + * Determines if an object or an array matches + * criteria to be inspected in-line for error + * messages or should be truncated. + * + * @param {Mixed} javascript object to inspect + * @name objDisplay + * @namespace Utils + * @api public + */ + +module.exports = function (obj) { + var str = inspect(obj) + , type = Object.prototype.toString.call(obj); + + if (config.truncateThreshold && str.length >= config.truncateThreshold) { + if (type === '[object Function]') { + return !obj.name || obj.name === '' + ? '[Function]' + : '[Function: ' + obj.name + ']'; + } else if (type === '[object Array]') { + return '[ Array(' + obj.length + ') ]'; + } else if (type === '[object Object]') { + var keys = Object.keys(obj) + , kstr = keys.length > 2 + ? keys.splice(0, 2).join(', ') + ', ...' + : keys.join(', '); + return '{ Object (' + kstr + ') }'; + } else { + return str; + } + } else { + return str; + } +}; + +},{"../config":4,"./inspect":23}],25:[function(require,module,exports){ +/*! + * Chai - overwriteChainableMethod utility + * Copyright(c) 2012-2014 Jake Luer + * MIT Licensed + */ + +/** + * ### overwriteChainableMethod (ctx, name, method, chainingBehavior) + * + * Overwites an already existing chainable method + * and provides access to the previous function or + * property. Must return functions to be used for + * name. + * + * utils.overwriteChainableMethod(chai.Assertion.prototype, 'length', + * function (_super) { + * } + * , function (_super) { + * } + * ); + * + * Can also be accessed directly from `chai.Assertion`. + * + * chai.Assertion.overwriteChainableMethod('foo', fn, fn); + * + * Then can be used as any other assertion. + * + * expect(myFoo).to.have.length(3); + * expect(myFoo).to.have.length.above(3); + * + * @param {Object} ctx object whose method / property is to be overwritten + * @param {String} name of method / property to overwrite + * @param {Function} method function that returns a function to be used for name + * @param {Function} chainingBehavior function that returns a function to be used for property + * @namespace Utils + * @name overwriteChainableMethod + * @api public + */ + +module.exports = function (ctx, name, method, chainingBehavior) { + var chainableBehavior = ctx.__methods[name]; + + var _chainingBehavior = chainableBehavior.chainingBehavior; + chainableBehavior.chainingBehavior = function () { + var result = chainingBehavior(_chainingBehavior).call(this); + return result === undefined ? this : result; + }; + + var _method = chainableBehavior.method; + chainableBehavior.method = function () { + var result = method(_method).apply(this, arguments); + return result === undefined ? this : result; + }; +}; + +},{}],26:[function(require,module,exports){ +/*! + * Chai - overwriteMethod utility + * Copyright(c) 2012-2014 Jake Luer + * MIT Licensed + */ + +/** + * ### overwriteMethod (ctx, name, fn) + * + * Overwites an already existing method and provides + * access to previous function. Must return function + * to be used for name. + * + * utils.overwriteMethod(chai.Assertion.prototype, 'equal', function (_super) { + * return function (str) { + * var obj = utils.flag(this, 'object'); + * if (obj instanceof Foo) { + * new chai.Assertion(obj.value).to.equal(str); + * } else { + * _super.apply(this, arguments); + * } + * } + * }); + * + * Can also be accessed directly from `chai.Assertion`. + * + * chai.Assertion.overwriteMethod('foo', fn); + * + * Then can be used as any other assertion. + * + * expect(myFoo).to.equal('bar'); + * + * @param {Object} ctx object whose method is to be overwritten + * @param {String} name of method to overwrite + * @param {Function} method function that returns a function to be used for name + * @namespace Utils + * @name overwriteMethod + * @api public + */ + +module.exports = function (ctx, name, method) { + var _method = ctx[name] + , _super = function () { return this; }; + + if (_method && 'function' === typeof _method) + _super = _method; + + ctx[name] = function () { + var result = method(_super).apply(this, arguments); + return result === undefined ? this : result; + } +}; + +},{}],27:[function(require,module,exports){ +/*! + * Chai - overwriteProperty utility + * Copyright(c) 2012-2014 Jake Luer + * MIT Licensed + */ + +/** + * ### overwriteProperty (ctx, name, fn) + * + * Overwites an already existing property getter and provides + * access to previous value. Must return function to use as getter. + * + * utils.overwriteProperty(chai.Assertion.prototype, 'ok', function (_super) { + * return function () { + * var obj = utils.flag(this, 'object'); + * if (obj instanceof Foo) { + * new chai.Assertion(obj.name).to.equal('bar'); + * } else { + * _super.call(this); + * } + * } + * }); + * + * + * Can also be accessed directly from `chai.Assertion`. + * + * chai.Assertion.overwriteProperty('foo', fn); + * + * Then can be used as any other assertion. + * + * expect(myFoo).to.be.ok; + * + * @param {Object} ctx object whose property is to be overwritten + * @param {String} name of property to overwrite + * @param {Function} getter function that returns a getter function to be used for name + * @namespace Utils + * @name overwriteProperty + * @api public + */ + +module.exports = function (ctx, name, getter) { + var _get = Object.getOwnPropertyDescriptor(ctx, name) + , _super = function () {}; + + if (_get && 'function' === typeof _get.get) + _super = _get.get + + Object.defineProperty(ctx, name, + { get: function () { + var result = getter(_super).call(this); + return result === undefined ? this : result; + } + , configurable: true + }); +}; + +},{}],28:[function(require,module,exports){ +/*! + * Chai - test utility + * Copyright(c) 2012-2014 Jake Luer + * MIT Licensed + */ + +/*! + * Module dependancies + */ + +var flag = require('./flag'); + +/** + * # test(object, expression) + * + * Test and object for expression. + * + * @param {Object} object (constructed Assertion) + * @param {Arguments} chai.Assertion.prototype.assert arguments + * @namespace Utils + * @name test + */ + +module.exports = function (obj, args) { + var negate = flag(obj, 'negate') + , expr = args[0]; + return negate ? !expr : expr; +}; + +},{"./flag":13}],29:[function(require,module,exports){ +/*! + * Chai - transferFlags utility + * Copyright(c) 2012-2014 Jake Luer + * MIT Licensed + */ + +/** + * ### transferFlags(assertion, object, includeAll = true) + * + * Transfer all the flags for `assertion` to `object`. If + * `includeAll` is set to `false`, then the base Chai + * assertion flags (namely `object`, `ssfi`, and `message`) + * will not be transferred. + * + * + * var newAssertion = new Assertion(); + * utils.transferFlags(assertion, newAssertion); + * + * var anotherAsseriton = new Assertion(myObj); + * utils.transferFlags(assertion, anotherAssertion, false); + * + * @param {Assertion} assertion the assertion to transfer the flags from + * @param {Object} object the object to transfer the flags to; usually a new assertion + * @param {Boolean} includeAll + * @namespace Utils + * @name transferFlags + * @api private + */ + +module.exports = function (assertion, object, includeAll) { + var flags = assertion.__flags || (assertion.__flags = Object.create(null)); + + if (!object.__flags) { + object.__flags = Object.create(null); + } + + includeAll = arguments.length === 3 ? includeAll : true; + + for (var flag in flags) { + if (includeAll || + (flag !== 'object' && flag !== 'ssfi' && flag != 'message')) { + object.__flags[flag] = flags[flag]; + } + } +}; + +},{}],30:[function(require,module,exports){ +/*! + * assertion-error + * Copyright(c) 2013 Jake Luer + * MIT Licensed + */ + +/*! + * Return a function that will copy properties from + * one object to another excluding any originally + * listed. Returned function will create a new `{}`. + * + * @param {String} excluded properties ... + * @return {Function} + */ + +function exclude () { + var excludes = [].slice.call(arguments); + + function excludeProps (res, obj) { + Object.keys(obj).forEach(function (key) { + if (!~excludes.indexOf(key)) res[key] = obj[key]; + }); + } + + return function extendExclude () { + var args = [].slice.call(arguments) + , i = 0 + , res = {}; + + for (; i < args.length; i++) { + excludeProps(res, args[i]); + } + + return res; + }; +}; + +/*! + * Primary Exports + */ + +module.exports = AssertionError; + +/** + * ### AssertionError + * + * An extension of the JavaScript `Error` constructor for + * assertion and validation scenarios. + * + * @param {String} message + * @param {Object} properties to include (optional) + * @param {callee} start stack function (optional) + */ + +function AssertionError (message, _props, ssf) { + var extend = exclude('name', 'message', 'stack', 'constructor', 'toJSON') + , props = extend(_props || {}); + + // default values + this.message = message || 'Unspecified AssertionError'; + this.showDiff = false; + + // copy from properties + for (var key in props) { + this[key] = props[key]; + } + + // capture stack trace + ssf = ssf || arguments.callee; + if (ssf && Error.captureStackTrace) { + Error.captureStackTrace(this, ssf); + } else { + this.stack = new Error().stack; + } +} + +/*! + * Inherit from Error.prototype + */ + +AssertionError.prototype = Object.create(Error.prototype); + +/*! + * Statically set name + */ + +AssertionError.prototype.name = 'AssertionError'; + +/*! + * Ensure correct constructor + */ + +AssertionError.prototype.constructor = AssertionError; + +/** + * Allow errors to be converted to JSON for static transfer. + * + * @param {Boolean} include stack (default: `true`) + * @return {Object} object that can be `JSON.stringify` + */ + +AssertionError.prototype.toJSON = function (stack) { + var extend = exclude('constructor', 'toJSON', 'stack') + , props = extend({ name: this.name }, this); + + // include stack if exists and not turned off + if (false !== stack && this.stack) { + props.stack = this.stack; + } + + return props; +}; + +},{}],31:[function(require,module,exports){ +module.exports = require('./lib/eql'); + +},{"./lib/eql":32}],32:[function(require,module,exports){ +/*! + * deep-eql + * Copyright(c) 2013 Jake Luer + * MIT Licensed + */ + +/*! + * Module dependencies + */ + +var type = require('type-detect'); + +/*! + * Buffer.isBuffer browser shim + */ + +var Buffer; +try { Buffer = require('buffer').Buffer; } +catch(ex) { + Buffer = {}; + Buffer.isBuffer = function() { return false; } +} + +/*! + * Primary Export + */ + +module.exports = deepEqual; + +/** + * Assert super-strict (egal) equality between + * two objects of any type. + * + * @param {Mixed} a + * @param {Mixed} b + * @param {Array} memoised (optional) + * @return {Boolean} equal match + */ + +function deepEqual(a, b, m) { + if (sameValue(a, b)) { + return true; + } else if ('date' === type(a)) { + return dateEqual(a, b); + } else if ('regexp' === type(a)) { + return regexpEqual(a, b); + } else if (Buffer.isBuffer(a)) { + return bufferEqual(a, b); + } else if ('arguments' === type(a)) { + return argumentsEqual(a, b, m); + } else if (!typeEqual(a, b)) { + return false; + } else if (('object' !== type(a) && 'object' !== type(b)) + && ('array' !== type(a) && 'array' !== type(b))) { + return sameValue(a, b); + } else { + return objectEqual(a, b, m); + } +} + +/*! + * Strict (egal) equality test. Ensures that NaN always + * equals NaN and `-0` does not equal `+0`. + * + * @param {Mixed} a + * @param {Mixed} b + * @return {Boolean} equal match + */ + +function sameValue(a, b) { + if (a === b) return a !== 0 || 1 / a === 1 / b; + return a !== a && b !== b; +} + +/*! + * Compare the types of two given objects and + * return if they are equal. Note that an Array + * has a type of `array` (not `object`) and arguments + * have a type of `arguments` (not `array`/`object`). + * + * @param {Mixed} a + * @param {Mixed} b + * @return {Boolean} result + */ + +function typeEqual(a, b) { + return type(a) === type(b); +} + +/*! + * Compare two Date objects by asserting that + * the time values are equal using `saveValue`. + * + * @param {Date} a + * @param {Date} b + * @return {Boolean} result + */ + +function dateEqual(a, b) { + if ('date' !== type(b)) return false; + return sameValue(a.getTime(), b.getTime()); +} + +/*! + * Compare two regular expressions by converting them + * to string and checking for `sameValue`. + * + * @param {RegExp} a + * @param {RegExp} b + * @return {Boolean} result + */ + +function regexpEqual(a, b) { + if ('regexp' !== type(b)) return false; + return sameValue(a.toString(), b.toString()); +} + +/*! + * Assert deep equality of two `arguments` objects. + * Unfortunately, these must be sliced to arrays + * prior to test to ensure no bad behavior. + * + * @param {Arguments} a + * @param {Arguments} b + * @param {Array} memoize (optional) + * @return {Boolean} result + */ + +function argumentsEqual(a, b, m) { + if ('arguments' !== type(b)) return false; + a = [].slice.call(a); + b = [].slice.call(b); + return deepEqual(a, b, m); +} + +/*! + * Get enumerable properties of a given object. + * + * @param {Object} a + * @return {Array} property names + */ + +function enumerable(a) { + var res = []; + for (var key in a) res.push(key); + return res; +} + +/*! + * Simple equality for flat iterable objects + * such as Arrays or Node.js buffers. + * + * @param {Iterable} a + * @param {Iterable} b + * @return {Boolean} result + */ + +function iterableEqual(a, b) { + if (a.length !== b.length) return false; + + var i = 0; + var match = true; + + for (; i < a.length; i++) { + if (a[i] !== b[i]) { + match = false; + break; + } + } + + return match; +} + +/*! + * Extension to `iterableEqual` specifically + * for Node.js Buffers. + * + * @param {Buffer} a + * @param {Mixed} b + * @return {Boolean} result + */ + +function bufferEqual(a, b) { + if (!Buffer.isBuffer(b)) return false; + return iterableEqual(a, b); +} + +/*! + * Block for `objectEqual` ensuring non-existing + * values don't get in. + * + * @param {Mixed} object + * @return {Boolean} result + */ + +function isValue(a) { + return a !== null && a !== undefined; +} + +/*! + * Recursively check the equality of two objects. + * Once basic sameness has been established it will + * defer to `deepEqual` for each enumerable key + * in the object. + * + * @param {Mixed} a + * @param {Mixed} b + * @return {Boolean} result + */ + +function objectEqual(a, b, m) { + if (!isValue(a) || !isValue(b)) { + return false; + } + + if (a.prototype !== b.prototype) { + return false; + } + + var i; + if (m) { + for (i = 0; i < m.length; i++) { + if ((m[i][0] === a && m[i][1] === b) + || (m[i][0] === b && m[i][1] === a)) { + return true; + } + } + } else { + m = []; + } + + try { + var ka = enumerable(a); + var kb = enumerable(b); + } catch (ex) { + return false; + } + + ka.sort(); + kb.sort(); + + if (!iterableEqual(ka, kb)) { + return false; + } + + m.push([ a, b ]); + + var key; + for (i = ka.length - 1; i >= 0; i--) { + key = ka[i]; + if (!deepEqual(a[key], b[key], m)) { + return false; + } + } + + return true; +} + +},{"buffer":undefined,"type-detect":33}],33:[function(require,module,exports){ +module.exports = require('./lib/type'); + +},{"./lib/type":34}],34:[function(require,module,exports){ +/*! + * type-detect + * Copyright(c) 2013 jake luer + * MIT Licensed + */ + +/*! + * Primary Exports + */ + +var exports = module.exports = getType; + +/*! + * Detectable javascript natives + */ + +var natives = { + '[object Array]': 'array' + , '[object RegExp]': 'regexp' + , '[object Function]': 'function' + , '[object Arguments]': 'arguments' + , '[object Date]': 'date' +}; + +/** + * ### typeOf (obj) + * + * Use several different techniques to determine + * the type of object being tested. + * + * + * @param {Mixed} object + * @return {String} object type + * @api public + */ + +function getType (obj) { + var str = Object.prototype.toString.call(obj); + if (natives[str]) return natives[str]; + if (obj === null) return 'null'; + if (obj === undefined) return 'undefined'; + if (obj === Object(obj)) return 'object'; + return typeof obj; +} + +exports.Library = Library; + +/** + * ### Library + * + * Create a repository for custom type detection. + * + * ```js + * var lib = new type.Library; + * ``` + * + */ + +function Library () { + this.tests = {}; +} + +/** + * #### .of (obj) + * + * Expose replacement `typeof` detection to the library. + * + * ```js + * if ('string' === lib.of('hello world')) { + * // ... + * } + * ``` + * + * @param {Mixed} object to test + * @return {String} type + */ + +Library.prototype.of = getType; + +/** + * #### .define (type, test) + * + * Add a test to for the `.test()` assertion. + * + * Can be defined as a regular expression: + * + * ```js + * lib.define('int', /^[0-9]+$/); + * ``` + * + * ... or as a function: + * + * ```js + * lib.define('bln', function (obj) { + * if ('boolean' === lib.of(obj)) return true; + * var blns = [ 'yes', 'no', 'true', 'false', 1, 0 ]; + * if ('string' === lib.of(obj)) obj = obj.toLowerCase(); + * return !! ~blns.indexOf(obj); + * }); + * ``` + * + * @param {String} type + * @param {RegExp|Function} test + * @api public + */ + +Library.prototype.define = function (type, test) { + if (arguments.length === 1) return this.tests[type]; + this.tests[type] = test; + return this; +}; + +/** + * #### .test (obj, test) + * + * Assert that an object is of type. Will first + * check natives, and if that does not pass it will + * use the user defined custom tests. + * + * ```js + * assert(lib.test('1', 'int')); + * assert(lib.test('yes', 'bln')); + * ``` + * + * @param {Mixed} object + * @param {String} type + * @return {Boolean} result + * @api public + */ + +Library.prototype.test = function (obj, type) { + if (type === getType(obj)) return true; + var test = this.tests[type]; + + if (test && 'regexp' === getType(test)) { + return test.test(obj); + } else if (test && 'function' === getType(test)) { + return test(obj); + } else { + throw new ReferenceError('Type test "' + type + '" not defined or invalid.'); + } +}; + +},{}],35:[function(require,module,exports){ +arguments[4][33][0].apply(exports,arguments) +},{"./lib/type":36,"dup":33}],36:[function(require,module,exports){ +/*! + * type-detect + * Copyright(c) 2013 jake luer + * MIT Licensed + */ + +/*! + * Primary Exports + */ + +var exports = module.exports = getType; + +/** + * ### typeOf (obj) + * + * Use several different techniques to determine + * the type of object being tested. + * + * + * @param {Mixed} object + * @return {String} object type + * @api public + */ +var objectTypeRegexp = /^\[object (.*)\]$/; + +function getType(obj) { + var type = Object.prototype.toString.call(obj).match(objectTypeRegexp)[1].toLowerCase(); + // Let "new String('')" return 'object' + if (typeof Promise === 'function' && obj instanceof Promise) return 'promise'; + // PhantomJS has type "DOMWindow" for null + if (obj === null) return 'null'; + // PhantomJS has type "DOMWindow" for undefined + if (obj === undefined) return 'undefined'; + return type; +} + +exports.Library = Library; + +/** + * ### Library + * + * Create a repository for custom type detection. + * + * ```js + * var lib = new type.Library; + * ``` + * + */ + +function Library() { + if (!(this instanceof Library)) return new Library(); + this.tests = {}; +} + +/** + * #### .of (obj) + * + * Expose replacement `typeof` detection to the library. + * + * ```js + * if ('string' === lib.of('hello world')) { + * // ... + * } + * ``` + * + * @param {Mixed} object to test + * @return {String} type + */ + +Library.prototype.of = getType; + +/** + * #### .define (type, test) + * + * Add a test to for the `.test()` assertion. + * + * Can be defined as a regular expression: + * + * ```js + * lib.define('int', /^[0-9]+$/); + * ``` + * + * ... or as a function: + * + * ```js + * lib.define('bln', function (obj) { + * if ('boolean' === lib.of(obj)) return true; + * var blns = [ 'yes', 'no', 'true', 'false', 1, 0 ]; + * if ('string' === lib.of(obj)) obj = obj.toLowerCase(); + * return !! ~blns.indexOf(obj); + * }); + * ``` + * + * @param {String} type + * @param {RegExp|Function} test + * @api public + */ + +Library.prototype.define = function(type, test) { + if (arguments.length === 1) return this.tests[type]; + this.tests[type] = test; + return this; +}; + +/** + * #### .test (obj, test) + * + * Assert that an object is of type. Will first + * check natives, and if that does not pass it will + * use the user defined custom tests. + * + * ```js + * assert(lib.test('1', 'int')); + * assert(lib.test('yes', 'bln')); + * ``` + * + * @param {Mixed} object + * @param {String} type + * @return {Boolean} result + * @api public + */ + +Library.prototype.test = function(obj, type) { + if (type === getType(obj)) return true; + var test = this.tests[type]; + + if (test && 'regexp' === getType(test)) { + return test.test(obj); + } else if (test && 'function' === getType(test)) { + return test(obj); + } else { + throw new ReferenceError('Type test "' + type + '" not defined or invalid.'); + } +}; + +},{}]},{},[1])(1) +}); +/*! + * jQuery JavaScript Library v2.2.4 + * http://jquery.com/ + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * + * Copyright jQuery Foundation and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2016-05-20T17:23Z + */ + +(function( global, factory ) { + + if ( typeof module === "object" && typeof module.exports === "object" ) { + // For CommonJS and CommonJS-like environments where a proper `window` + // is present, execute the factory and get jQuery. + // For environments that do not have a `window` with a `document` + // (such as Node.js), expose a factory as module.exports. + // This accentuates the need for the creation of a real `window`. + // e.g. var jQuery = require("jquery")(window); + // See ticket #14549 for more info. + module.exports = global.document ? + factory( global, true ) : + function( w ) { + if ( !w.document ) { + throw new Error( "jQuery requires a window with a document" ); + } + return factory( w ); + }; + } else { + factory( global ); + } + +// Pass this if window is not defined yet +}(typeof window !== "undefined" ? window : this, function( window, noGlobal ) { + +// Support: Firefox 18+ +// Can't be in strict mode, several libs including ASP.NET trace +// the stack via arguments.caller.callee and Firefox dies if +// you try to trace through "use strict" call chains. (#13335) +//"use strict"; +var arr = []; + +var document = window.document; + +var slice = arr.slice; + +var concat = arr.concat; + +var push = arr.push; + +var indexOf = arr.indexOf; + +var class2type = {}; + +var toString = class2type.toString; + +var hasOwn = class2type.hasOwnProperty; + +var support = {}; + + + +var + version = "2.2.4", + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + + // The jQuery object is actually just the init constructor 'enhanced' + // Need init if jQuery is called (just allow error to be thrown if not included) + return new jQuery.fn.init( selector, context ); + }, + + // Support: Android<4.1 + // Make sure we trim BOM and NBSP + rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, + + // Matches dashed string for camelizing + rmsPrefix = /^-ms-/, + rdashAlpha = /-([\da-z])/gi, + + // Used by jQuery.camelCase as callback to replace() + fcamelCase = function( all, letter ) { + return letter.toUpperCase(); + }; + +jQuery.fn = jQuery.prototype = { + + // The current version of jQuery being used + jquery: version, + + constructor: jQuery, + + // Start with an empty selector + selector: "", + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + return num != null ? + + // Return just the one element from the set + ( num < 0 ? this[ num + this.length ] : this[ num ] ) : + + // Return all the elements in a clean array + slice.call( this ); + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + ret.context = this.context; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + each: function( callback ) { + return jQuery.each( this, callback ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map( this, function( elem, i ) { + return callback.call( elem, i, elem ); + } ) ); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); + }, + + end: function() { + return this.prevObject || this.constructor(); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: arr.sort, + splice: arr.splice +}; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[ 0 ] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + + // Skip the boolean and the target + target = arguments[ i ] || {}; + i++; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !jQuery.isFunction( target ) ) { + target = {}; + } + + // Extend jQuery itself if only one argument is passed + if ( i === length ) { + target = this; + i--; + } + + for ( ; i < length; i++ ) { + + // Only deal with non-null/undefined values + if ( ( options = arguments[ i ] ) != null ) { + + // Extend the base object + for ( name in options ) { + src = target[ name ]; + copy = options[ name ]; + + // Prevent never-ending loop + if ( target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject( copy ) || + ( copyIsArray = jQuery.isArray( copy ) ) ) ) { + + if ( copyIsArray ) { + copyIsArray = false; + clone = src && jQuery.isArray( src ) ? src : []; + + } else { + clone = src && jQuery.isPlainObject( src ) ? src : {}; + } + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend( { + + // Unique for each copy of jQuery on the page + expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), + + // Assume jQuery is ready without the ready module + isReady: true, + + error: function( msg ) { + throw new Error( msg ); + }, + + noop: function() {}, + + isFunction: function( obj ) { + return jQuery.type( obj ) === "function"; + }, + + isArray: Array.isArray, + + isWindow: function( obj ) { + return obj != null && obj === obj.window; + }, + + isNumeric: function( obj ) { + + // parseFloat NaNs numeric-cast false positives (null|true|false|"") + // ...but misinterprets leading-number strings, particularly hex literals ("0x...") + // subtraction forces infinities to NaN + // adding 1 corrects loss of precision from parseFloat (#15100) + var realStringObj = obj && obj.toString(); + return !jQuery.isArray( obj ) && ( realStringObj - parseFloat( realStringObj ) + 1 ) >= 0; + }, + + isPlainObject: function( obj ) { + var key; + + // Not plain objects: + // - Any object or value whose internal [[Class]] property is not "[object Object]" + // - DOM nodes + // - window + if ( jQuery.type( obj ) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { + return false; + } + + // Not own constructor property must be Object + if ( obj.constructor && + !hasOwn.call( obj, "constructor" ) && + !hasOwn.call( obj.constructor.prototype || {}, "isPrototypeOf" ) ) { + return false; + } + + // Own properties are enumerated firstly, so to speed up, + // if last one is own, then all properties are own + for ( key in obj ) {} + + return key === undefined || hasOwn.call( obj, key ); + }, + + isEmptyObject: function( obj ) { + var name; + for ( name in obj ) { + return false; + } + return true; + }, + + type: function( obj ) { + if ( obj == null ) { + return obj + ""; + } + + // Support: Android<4.0, iOS<6 (functionish RegExp) + return typeof obj === "object" || typeof obj === "function" ? + class2type[ toString.call( obj ) ] || "object" : + typeof obj; + }, + + // Evaluates a script in a global context + globalEval: function( code ) { + var script, + indirect = eval; + + code = jQuery.trim( code ); + + if ( code ) { + + // If the code includes a valid, prologue position + // strict mode pragma, execute code by injecting a + // script tag into the document. + if ( code.indexOf( "use strict" ) === 1 ) { + script = document.createElement( "script" ); + script.text = code; + document.head.appendChild( script ).parentNode.removeChild( script ); + } else { + + // Otherwise, avoid the DOM node creation, insertion + // and removal by using an indirect global eval + + indirect( code ); + } + } + }, + + // Convert dashed to camelCase; used by the css and data modules + // Support: IE9-11+ + // Microsoft forgot to hump their vendor prefix (#9572) + camelCase: function( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); + }, + + nodeName: function( elem, name ) { + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + }, + + each: function( obj, callback ) { + var length, i = 0; + + if ( isArrayLike( obj ) ) { + length = obj.length; + for ( ; i < length; i++ ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } else { + for ( i in obj ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } + + return obj; + }, + + // Support: Android<4.1 + trim: function( text ) { + return text == null ? + "" : + ( text + "" ).replace( rtrim, "" ); + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArrayLike( Object( arr ) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + return arr == null ? -1 : indexOf.call( arr, elem, i ); + }, + + merge: function( first, second ) { + var len = +second.length, + j = 0, + i = first.length; + + for ( ; j < len; j++ ) { + first[ i++ ] = second[ j ]; + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, invert ) { + var callbackInverse, + matches = [], + i = 0, + length = elems.length, + callbackExpect = !invert; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + callbackInverse = !callback( elems[ i ], i ); + if ( callbackInverse !== callbackExpect ) { + matches.push( elems[ i ] ); + } + } + + return matches; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var length, value, + i = 0, + ret = []; + + // Go through the array, translating each of the items to their new values + if ( isArrayLike( elems ) ) { + length = elems.length; + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + } + + // Flatten any nested arrays + return concat.apply( [], ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // Bind a function to a context, optionally partially applying any + // arguments. + proxy: function( fn, context ) { + var tmp, args, proxy; + + if ( typeof context === "string" ) { + tmp = fn[ context ]; + context = fn; + fn = tmp; + } + + // Quick check to determine if target is callable, in the spec + // this throws a TypeError, but we will just return undefined. + if ( !jQuery.isFunction( fn ) ) { + return undefined; + } + + // Simulated bind + args = slice.call( arguments, 2 ); + proxy = function() { + return fn.apply( context || this, args.concat( slice.call( arguments ) ) ); + }; + + // Set the guid of unique handler to the same of original handler, so it can be removed + proxy.guid = fn.guid = fn.guid || jQuery.guid++; + + return proxy; + }, + + now: Date.now, + + // jQuery.support is not used in Core but other projects attach their + // properties to it so it needs to exist. + support: support +} ); + +// JSHint would error on this code due to the Symbol not being defined in ES5. +// Defining this global in .jshintrc would create a danger of using the global +// unguarded in another place, it seems safer to just disable JSHint for these +// three lines. +/* jshint ignore: start */ +if ( typeof Symbol === "function" ) { + jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; +} +/* jshint ignore: end */ + +// Populate the class2type map +jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), +function( i, name ) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +} ); + +function isArrayLike( obj ) { + + // Support: iOS 8.2 (not reproducible in simulator) + // `in` check used to prevent JIT error (gh-2145) + // hasOwn isn't used here due to false negatives + // regarding Nodelist length in IE + var length = !!obj && "length" in obj && obj.length, + type = jQuery.type( obj ); + + if ( type === "function" || jQuery.isWindow( obj ) ) { + return false; + } + + return type === "array" || length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj; +} +var Sizzle = +/*! + * Sizzle CSS Selector Engine v2.2.1 + * http://sizzlejs.com/ + * + * Copyright jQuery Foundation and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2015-10-17 + */ +(function( window ) { + +var i, + support, + Expr, + getText, + isXML, + tokenize, + compile, + select, + outermostContext, + sortInput, + hasDuplicate, + + // Local document vars + setDocument, + document, + docElem, + documentIsHTML, + rbuggyQSA, + rbuggyMatches, + matches, + contains, + + // Instance-specific data + expando = "sizzle" + 1 * new Date(), + preferredDoc = window.document, + dirruns = 0, + done = 0, + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + } + return 0; + }, + + // General-purpose constants + MAX_NEGATIVE = 1 << 31, + + // Instance methods + hasOwn = ({}).hasOwnProperty, + arr = [], + pop = arr.pop, + push_native = arr.push, + push = arr.push, + slice = arr.slice, + // Use a stripped-down indexOf as it's faster than native + // http://jsperf.com/thor-indexof-vs-for/5 + indexOf = function( list, elem ) { + var i = 0, + len = list.length; + for ( ; i < len; i++ ) { + if ( list[i] === elem ) { + return i; + } + } + return -1; + }, + + booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", + + // Regular expressions + + // http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + + // http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier + identifier = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+", + + // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors + attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + + // Operator (capture 2) + "*([*^$|!~]?=)" + whitespace + + // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]" + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace + + "*\\]", + + pseudos = ":(" + identifier + ")(?:\\((" + + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: + // 1. quoted (capture 3; capture 4 or capture 5) + "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + + // 2. simple (capture 6) + "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + + // 3. anything else (capture 2) + ".*" + + ")\\)|)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rwhitespace = new RegExp( whitespace + "+", "g" ), + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ), + + rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ), + + rpseudo = new RegExp( pseudos ), + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = { + "ID": new RegExp( "^#(" + identifier + ")" ), + "CLASS": new RegExp( "^\\.(" + identifier + ")" ), + "TAG": new RegExp( "^(" + identifier + "|[*])" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), + // For use in libraries implementing .is() + // We use this for POS matching in `select` + "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + + whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, + + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + rnative = /^[^{]+\{\s*\[native \w/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rsibling = /[+~]/, + rescape = /'|\\/g, + + // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), + funescape = function( _, escaped, escapedWhitespace ) { + var high = "0x" + escaped - 0x10000; + // NaN means non-codepoint + // Support: Firefox<24 + // Workaround erroneous numeric interpretation of +"0x" + return high !== high || escapedWhitespace ? + escaped : + high < 0 ? + // BMP codepoint + String.fromCharCode( high + 0x10000 ) : + // Supplemental Plane codepoint (surrogate pair) + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }, + + // Used for iframes + // See setDocument() + // Removing the function wrapper causes a "Permission Denied" + // error in IE + unloadHandler = function() { + setDocument(); + }; + +// Optimize for push.apply( _, NodeList ) +try { + push.apply( + (arr = slice.call( preferredDoc.childNodes )), + preferredDoc.childNodes + ); + // Support: Android<4.0 + // Detect silently failing push.apply + arr[ preferredDoc.childNodes.length ].nodeType; +} catch ( e ) { + push = { apply: arr.length ? + + // Leverage slice if possible + function( target, els ) { + push_native.apply( target, slice.call(els) ); + } : + + // Support: IE<9 + // Otherwise append directly + function( target, els ) { + var j = target.length, + i = 0; + // Can't trust NodeList.length + while ( (target[j++] = els[i++]) ) {} + target.length = j - 1; + } + }; +} + +function Sizzle( selector, context, results, seed ) { + var m, i, elem, nid, nidselect, match, groups, newSelector, + newContext = context && context.ownerDocument, + + // nodeType defaults to 9, since context defaults to document + nodeType = context ? context.nodeType : 9; + + results = results || []; + + // Return early from calls with invalid selector or context + if ( typeof selector !== "string" || !selector || + nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { + + return results; + } + + // Try to shortcut find operations (as opposed to filters) in HTML documents + if ( !seed ) { + + if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { + setDocument( context ); + } + context = context || document; + + if ( documentIsHTML ) { + + // If the selector is sufficiently simple, try using a "get*By*" DOM method + // (excepting DocumentFragment context, where the methods don't exist) + if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) { + + // ID selector + if ( (m = match[1]) ) { + + // Document context + if ( nodeType === 9 ) { + if ( (elem = context.getElementById( m )) ) { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + + // Element context + } else { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( newContext && (elem = newContext.getElementById( m )) && + contains( context, elem ) && + elem.id === m ) { + + results.push( elem ); + return results; + } + } + + // Type selector + } else if ( match[2] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; + + // Class selector + } else if ( (m = match[3]) && support.getElementsByClassName && + context.getElementsByClassName ) { + + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } + + // Take advantage of querySelectorAll + if ( support.qsa && + !compilerCache[ selector + " " ] && + (!rbuggyQSA || !rbuggyQSA.test( selector )) ) { + + if ( nodeType !== 1 ) { + newContext = context; + newSelector = selector; + + // qSA looks outside Element context, which is not what we want + // Thanks to Andrew Dupont for this workaround technique + // Support: IE <=8 + // Exclude object elements + } else if ( context.nodeName.toLowerCase() !== "object" ) { + + // Capture the context ID, setting it first if necessary + if ( (nid = context.getAttribute( "id" )) ) { + nid = nid.replace( rescape, "\\$&" ); + } else { + context.setAttribute( "id", (nid = expando) ); + } + + // Prefix every selector in the list + groups = tokenize( selector ); + i = groups.length; + nidselect = ridentifier.test( nid ) ? "#" + nid : "[id='" + nid + "']"; + while ( i-- ) { + groups[i] = nidselect + " " + toSelector( groups[i] ); + } + newSelector = groups.join( "," ); + + // Expand context for sibling selectors + newContext = rsibling.test( selector ) && testContext( context.parentNode ) || + context; + } + + if ( newSelector ) { + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch ( qsaError ) { + } finally { + if ( nid === expando ) { + context.removeAttribute( "id" ); + } + } + } + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed ); +} + +/** + * Create key-value caches of limited size + * @returns {function(string, object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var keys = []; + + function cache( key, value ) { + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) + if ( keys.push( key + " " ) > Expr.cacheLength ) { + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return (cache[ key + " " ] = value); + } + return cache; +} + +/** + * Mark a function for special use by Sizzle + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ expando ] = true; + return fn; +} + +/** + * Support testing using an element + * @param {Function} fn Passed the created div and expects a boolean result + */ +function assert( fn ) { + var div = document.createElement("div"); + + try { + return !!fn( div ); + } catch (e) { + return false; + } finally { + // Remove from its parent by default + if ( div.parentNode ) { + div.parentNode.removeChild( div ); + } + // release memory in IE + div = null; + } +} + +/** + * Adds the same handler for all of the specified attrs + * @param {String} attrs Pipe-separated list of attributes + * @param {Function} handler The method that will be applied + */ +function addHandle( attrs, handler ) { + var arr = attrs.split("|"), + i = arr.length; + + while ( i-- ) { + Expr.attrHandle[ arr[i] ] = handler; + } +} + +/** + * Checks document order of two siblings + * @param {Element} a + * @param {Element} b + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b + */ +function siblingCheck( a, b ) { + var cur = b && a, + diff = cur && a.nodeType === 1 && b.nodeType === 1 && + ( ~b.sourceIndex || MAX_NEGATIVE ) - + ( ~a.sourceIndex || MAX_NEGATIVE ); + + // Use IE sourceIndex if available on both nodes + if ( diff ) { + return diff; + } + + // Check if b follows a + if ( cur ) { + while ( (cur = cur.nextSibling) ) { + if ( cur === b ) { + return -1; + } + } + } + + return a ? 1 : -1; +} + +/** + * Returns a function to use in pseudos for input types + * @param {String} type + */ +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for buttons + * @param {String} type + */ +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return (name === "input" || name === "button") && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for positionals + * @param {Function} fn + */ +function createPositionalPseudo( fn ) { + return markFunction(function( argument ) { + argument = +argument; + return markFunction(function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ (j = matchIndexes[i]) ] ) { + seed[j] = !(matches[j] = seed[j]); + } + } + }); + }); +} + +/** + * Checks a node for validity as a Sizzle context + * @param {Element|Object=} context + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value + */ +function testContext( context ) { + return context && typeof context.getElementsByTagName !== "undefined" && context; +} + +// Expose support vars for convenience +support = Sizzle.support = {}; + +/** + * Detects XML nodes + * @param {Element|Object} elem An element or a document + * @returns {Boolean} True iff elem is a non-HTML XML node + */ +isXML = Sizzle.isXML = function( elem ) { + // documentElement is verified for cases where it doesn't yet exist + // (such as loading iframes in IE - #4833) + var documentElement = elem && (elem.ownerDocument || elem).documentElement; + return documentElement ? documentElement.nodeName !== "HTML" : false; +}; + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [doc] An element or document object to use to set the document + * @returns {Object} Returns the current document + */ +setDocument = Sizzle.setDocument = function( node ) { + var hasCompare, parent, + doc = node ? node.ownerDocument || node : preferredDoc; + + // Return early if doc is invalid or already selected + if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { + return document; + } + + // Update global variables + document = doc; + docElem = document.documentElement; + documentIsHTML = !isXML( document ); + + // Support: IE 9-11, Edge + // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) + if ( (parent = document.defaultView) && parent.top !== parent ) { + // Support: IE 11 + if ( parent.addEventListener ) { + parent.addEventListener( "unload", unloadHandler, false ); + + // Support: IE 9 - 10 only + } else if ( parent.attachEvent ) { + parent.attachEvent( "onunload", unloadHandler ); + } + } + + /* Attributes + ---------------------------------------------------------------------- */ + + // Support: IE<8 + // Verify that getAttribute really returns attributes and not properties + // (excepting IE8 booleans) + support.attributes = assert(function( div ) { + div.className = "i"; + return !div.getAttribute("className"); + }); + + /* getElement(s)By* + ---------------------------------------------------------------------- */ + + // Check if getElementsByTagName("*") returns only elements + support.getElementsByTagName = assert(function( div ) { + div.appendChild( document.createComment("") ); + return !div.getElementsByTagName("*").length; + }); + + // Support: IE<9 + support.getElementsByClassName = rnative.test( document.getElementsByClassName ); + + // Support: IE<10 + // Check if getElementById returns elements by name + // The broken getElementById methods don't pick up programatically-set names, + // so use a roundabout getElementsByName test + support.getById = assert(function( div ) { + docElem.appendChild( div ).id = expando; + return !document.getElementsByName || !document.getElementsByName( expando ).length; + }); + + // ID find and filter + if ( support.getById ) { + Expr.find["ID"] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var m = context.getElementById( id ); + return m ? [ m ] : []; + } + }; + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + return elem.getAttribute("id") === attrId; + }; + }; + } else { + // Support: IE6/7 + // getElementById is not reliable as a find shortcut + delete Expr.find["ID"]; + + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== "undefined" && + elem.getAttributeNode("id"); + return node && node.value === attrId; + }; + }; + } + + // Tag + Expr.find["TAG"] = support.getElementsByTagName ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== "undefined" ) { + return context.getElementsByTagName( tag ); + + // DocumentFragment nodes don't have gEBTN + } else if ( support.qsa ) { + return context.querySelectorAll( tag ); + } + } : + + function( tag, context ) { + var elem, + tmp = [], + i = 0, + // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too + results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + while ( (elem = results[i++]) ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }; + + // Class + Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) { + if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { + return context.getElementsByClassName( className ); + } + }; + + /* QSA/matchesSelector + ---------------------------------------------------------------------- */ + + // QSA and matchesSelector support + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + rbuggyMatches = []; + + // qSa(:focus) reports false when true (Chrome 21) + // We allow this because of a bug in IE8/9 that throws an error + // whenever `document.activeElement` is accessed on an iframe + // So, we allow :focus to pass through QSA all the time to avoid the IE error + // See http://bugs.jquery.com/ticket/13378 + rbuggyQSA = []; + + if ( (support.qsa = rnative.test( document.querySelectorAll )) ) { + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert(function( div ) { + // Select is set to empty string on purpose + // This is to test IE's treatment of not explicitly + // setting a boolean content attribute, + // since its presence should be enough + // http://bugs.jquery.com/ticket/12359 + docElem.appendChild( div ).innerHTML = "" + + ""; + + // Support: IE8, Opera 11-12.16 + // Nothing should be selected when empty strings follow ^= or $= or *= + // The test attribute must be unknown in Opera but "safe" for WinRT + // http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section + if ( div.querySelectorAll("[msallowcapture^='']").length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); + } + + // Support: IE8 + // Boolean attributes and "value" are not treated correctly + if ( !div.querySelectorAll("[selected]").length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); + } + + // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ + if ( !div.querySelectorAll( "[id~=" + expando + "-]" ).length ) { + rbuggyQSA.push("~="); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here and will not see later tests + if ( !div.querySelectorAll(":checked").length ) { + rbuggyQSA.push(":checked"); + } + + // Support: Safari 8+, iOS 8+ + // https://bugs.webkit.org/show_bug.cgi?id=136851 + // In-page `selector#id sibing-combinator selector` fails + if ( !div.querySelectorAll( "a#" + expando + "+*" ).length ) { + rbuggyQSA.push(".#.+[+~]"); + } + }); + + assert(function( div ) { + // Support: Windows 8 Native Apps + // The type and name attributes are restricted during .innerHTML assignment + var input = document.createElement("input"); + input.setAttribute( "type", "hidden" ); + div.appendChild( input ).setAttribute( "name", "D" ); + + // Support: IE8 + // Enforce case-sensitivity of name attribute + if ( div.querySelectorAll("[name=d]").length ) { + rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here and will not see later tests + if ( !div.querySelectorAll(":enabled").length ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Opera 10-11 does not throw on post-comma invalid pseudos + div.querySelectorAll("*,:x"); + rbuggyQSA.push(",.*:"); + }); + } + + if ( (support.matchesSelector = rnative.test( (matches = docElem.matches || + docElem.webkitMatchesSelector || + docElem.mozMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector) )) ) { + + assert(function( div ) { + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + support.disconnectedMatch = matches.call( div, "div" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( div, "[s!='']:x" ); + rbuggyMatches.push( "!=", pseudos ); + }); + } + + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") ); + rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") ); + + /* Contains + ---------------------------------------------------------------------- */ + hasCompare = rnative.test( docElem.compareDocumentPosition ); + + // Element contains another + // Purposefully self-exclusive + // As in, an element does not contain itself + contains = hasCompare || rnative.test( docElem.contains ) ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && ( + adown.contains ? + adown.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + )); + } : + function( a, b ) { + if ( b ) { + while ( (b = b.parentNode) ) { + if ( b === a ) { + return true; + } + } + } + return false; + }; + + /* Sorting + ---------------------------------------------------------------------- */ + + // Document order sorting + sortOrder = hasCompare ? + function( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + // Sort on method existence if only one input has compareDocumentPosition + var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; + if ( compare ) { + return compare; + } + + // Calculate position if both inputs belong to the same document + compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ? + a.compareDocumentPosition( b ) : + + // Otherwise we know they are disconnected + 1; + + // Disconnected nodes + if ( compare & 1 || + (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) { + + // Choose the first element that is related to our preferred document + if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) { + return -1; + } + if ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) { + return 1; + } + + // Maintain original order + return sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + } + + return compare & 4 ? -1 : 1; + } : + function( a, b ) { + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Parentless nodes are either documents or disconnected + if ( !aup || !bup ) { + return a === document ? -1 : + b === document ? 1 : + aup ? -1 : + bup ? 1 : + sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + + // If the nodes are siblings, we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + } + + // Otherwise we need full lists of their ancestors for comparison + cur = a; + while ( (cur = cur.parentNode) ) { + ap.unshift( cur ); + } + cur = b; + while ( (cur = cur.parentNode) ) { + bp.unshift( cur ); + } + + // Walk down the tree looking for a discrepancy + while ( ap[i] === bp[i] ) { + i++; + } + + return i ? + // Do a sibling check if the nodes have a common ancestor + siblingCheck( ap[i], bp[i] ) : + + // Otherwise nodes in our document sort first + ap[i] === preferredDoc ? -1 : + bp[i] === preferredDoc ? 1 : + 0; + }; + + return document; +}; + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + // Make sure that attribute selectors are quoted + expr = expr.replace( rattributeQuotes, "='$1']" ); + + if ( support.matchesSelector && documentIsHTML && + !compilerCache[ expr + " " ] && + ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && + ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { + + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || support.disconnectedMatch || + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch (e) {} + } + + return Sizzle( expr, document, null, [ elem ] ).length > 0; +}; + +Sizzle.contains = function( context, elem ) { + // Set document vars if needed + if ( ( context.ownerDocument || context ) !== document ) { + setDocument( context ); + } + return contains( context, elem ); +}; + +Sizzle.attr = function( elem, name ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + var fn = Expr.attrHandle[ name.toLowerCase() ], + // Don't get fooled by Object.prototype properties (jQuery #13807) + val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? + fn( elem, name, !documentIsHTML ) : + undefined; + + return val !== undefined ? + val : + support.attributes || !documentIsHTML ? + elem.getAttribute( name ) : + (val = elem.getAttributeNode(name)) && val.specified ? + val.value : + null; +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Document sorting and removing duplicates + * @param {ArrayLike} results + */ +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + j = 0, + i = 0; + + // Unless we *know* we can detect duplicates, assume their presence + hasDuplicate = !support.detectDuplicates; + sortInput = !support.sortStable && results.slice( 0 ); + results.sort( sortOrder ); + + if ( hasDuplicate ) { + while ( (elem = results[i++]) ) { + if ( elem === results[ i ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + // Clear input after sorting to release objects + // See https://github.com/jquery/sizzle/pull/225 + sortInput = null; + + return results; +}; + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + // If no nodeType, this is expected to be an array + while ( (node = elem[i++]) ) { + // Do not traverse comment nodes + ret += getText( node ); + } + } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + // Use textContent for elements + // innerText usage removed for consistency of new lines (jQuery #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + // Do not include comment or processing instruction nodes + + return ret; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + attrHandle: {}, + + find: {}, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[1] = match[1].replace( runescape, funescape ); + + // Move the given value to match[3] whether quoted or unquoted + match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape ); + + if ( match[2] === "~=" ) { + match[3] = " " + match[3] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[1] = match[1].toLowerCase(); + + if ( match[1].slice( 0, 3 ) === "nth" ) { + // nth-* requires argument + if ( !match[3] ) { + Sizzle.error( match[0] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); + match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); + + // other types prohibit arguments + } else if ( match[3] ) { + Sizzle.error( match[0] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var excess, + unquoted = !match[6] && match[2]; + + if ( matchExpr["CHILD"].test( match[0] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[3] ) { + match[2] = match[4] || match[5] || ""; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + // Get excess from tokenize (recursively) + (excess = tokenize( unquoted, true )) && + // advance to the next closing parenthesis + (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { + + // excess is a negative index + match[0] = match[0].slice( 0, excess ); + match[2] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + + "TAG": function( nodeNameSelector ) { + var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); + return nodeNameSelector === "*" ? + function() { return true; } : + function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && + classCache( className, function( elem ) { + return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" ); + }); + }, + + "ATTR": function( name, operator, check ) { + return function( elem ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.slice( -check.length ) === check : + operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : + false; + }; + }, + + "CHILD": function( type, what, argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, context, xml ) { + var cache, uniqueCache, outerCache, node, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType, + diff = false; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( (node = node[ dir ]) ) { + if ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) { + + return false; + } + } + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + + // Seek `elem` from a previously-cached index + + // ...in a gzip-friendly way + node = parent; + outerCache = node[ expando ] || (node[ expando ] = {}); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + (outerCache[ node.uniqueID ] = {}); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex && cache[ 2 ]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( (node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + (diff = nodeIndex = 0) || start.pop()) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + } else { + // Use previously-cached element index if available + if ( useCache ) { + // ...in a gzip-friendly way + node = elem; + outerCache = node[ expando ] || (node[ expando ] = {}); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + (outerCache[ node.uniqueID ] = {}); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex; + } + + // xml :nth-child(...) + // or :nth-last-child(...) or :nth(-last)?-of-type(...) + if ( diff === false ) { + // Use the same loop as above to seek `elem` from the start + while ( (node = ++nodeIndex && node && node[ dir ] || + (diff = nodeIndex = 0) || start.pop()) ) { + + if ( ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) && + ++diff ) { + + // Cache the index of each encountered element + if ( useCache ) { + outerCache = node[ expando ] || (node[ expando ] = {}); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + (outerCache[ node.uniqueID ] = {}); + + uniqueCache[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction(function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf( seed, matched[i] ); + seed[ idx ] = !( matches[ idx ] = matched[i] ); + } + }) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + // Potentially complex pseudos + "not": markFunction(function( selector ) { + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction(function( seed, matches, context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( (elem = unmatched[i]) ) { + seed[i] = !(matches[i] = elem); + } + } + }) : + function( elem, context, xml ) { + input[0] = elem; + matcher( input, null, xml, results ); + // Don't keep the element (issue #299) + input[0] = null; + return !results.pop(); + }; + }), + + "has": markFunction(function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + }), + + "contains": markFunction(function( text ) { + text = text.replace( runescape, funescape ); + return function( elem ) { + return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; + }; + }), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // http://www.w3.org/TR/selectors/#lang-pseudo + "lang": markFunction( function( lang ) { + // lang value must be a valid identifier + if ( !ridentifier.test(lang || "") ) { + Sizzle.error( "unsupported lang: " + lang ); + } + lang = lang.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( (elemLang = documentIsHTML ? + elem.lang : + elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); + return false; + }; + }), + + // Miscellaneous + "target": function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + "root": function( elem ) { + return elem === docElem; + }, + + "focus": function( elem ) { + return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); + }, + + // Boolean properties + "enabled": function( elem ) { + return elem.disabled === false; + }, + + "disabled": function( elem ) { + return elem.disabled === true; + }, + + "checked": function( elem ) { + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); + }, + + "selected": function( elem ) { + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + "empty": function( elem ) { + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), + // but not by others (comment: 8; processing instruction: 7; etc.) + // nodeType < 6 works because attributes (2) do not appear as children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeType < 6 ) { + return false; + } + } + return true; + }, + + "parent": function( elem ) { + return !Expr.pseudos["empty"]( elem ); + }, + + // Element/input types + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "text": function( elem ) { + var attr; + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + + // Support: IE<8 + // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" + ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" ); + }, + + // Position-in-collection + "first": createPositionalPseudo(function() { + return [ 0 ]; + }), + + "last": createPositionalPseudo(function( matchIndexes, length ) { + return [ length - 1 ]; + }), + + "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + }), + + "even": createPositionalPseudo(function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "odd": createPositionalPseudo(function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }) + } +}; + +Expr.pseudos["nth"] = Expr.pseudos["eq"]; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + Expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + Expr.pseudos[ i ] = createButtonPseudo( i ); +} + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = Expr.filters = Expr.pseudos; +Expr.setFilters = new setFilters(); + +tokenize = Sizzle.tokenize = function( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || (match = rcomma.exec( soFar )) ) { + if ( match ) { + // Don't consume trailing commas as valid + soFar = soFar.slice( match[0].length ) || soFar; + } + groups.push( (tokens = []) ); + } + + matched = false; + + // Combinators + if ( (match = rcombinators.exec( soFar )) ) { + matched = match.shift(); + tokens.push({ + value: matched, + // Cast descendant combinators to space + type: match[0].replace( rtrim, " " ) + }); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in Expr.filter ) { + if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || + (match = preFilters[ type ]( match ))) ) { + matched = match.shift(); + tokens.push({ + value: matched, + type: type, + matches: match + }); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +}; + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[i].value; + } + return selector; +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + checkNonElements = base && dir === "parentNode", + doneName = done++; + + return combinator.first ? + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var oldCache, uniqueCache, outerCache, + newCache = [ dirruns, doneName ]; + + // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching + if ( xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ expando ] || (elem[ expando ] = {}); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {}); + + if ( (oldCache = uniqueCache[ dir ]) && + oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { + + // Assign to newCache so results back-propagate to previous elements + return (newCache[ 2 ] = oldCache[ 2 ]); + } else { + // Reuse newcache so results back-propagate to previous elements + uniqueCache[ dir ] = newCache; + + // A match means we're done; a fail means we have to keep checking + if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) { + return true; + } + } + } + } + } + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[i]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[0]; +} + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[i], results ); + } + return results; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( (elem = unmatched[i]) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction(function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( (elem = temp[i]) ) { + matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) ) { + // Restore matcherIn since elem is not yet a final match + temp.push( (matcherIn[i] = elem) ); + } + } + postFinder( null, (matcherOut = []), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) && + (temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) { + + seed[temp] = !(results[temp] = elem); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + }); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[0].type ], + implicitRelative = leadingRelative || Expr.relative[" "], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + (checkContext = context).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + // Avoid hanging onto element (issue #299) + checkContext = null; + return ret; + } ]; + + for ( ; i < len; i++ ) { + if ( (matcher = Expr.relative[ tokens[i].type ]) ) { + matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; + } else { + matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[j].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" }) + ).replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + var bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, outermost ) { + var elem, j, matcher, + matchedCount = 0, + i = "0", + unmatched = seed && [], + setMatched = [], + contextBackup = outermostContext, + // We must always have either seed elements or outermost context + elems = seed || byElement && Expr.find["TAG"]( "*", outermost ), + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1), + len = elems.length; + + if ( outermost ) { + outermostContext = context === document || context || outermost; + } + + // Add elements passing elementMatchers directly to results + // Support: IE<9, Safari + // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id + for ( ; i !== len && (elem = elems[i]) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + if ( !context && elem.ownerDocument !== document ) { + setDocument( elem ); + xml = !documentIsHTML; + } + while ( (matcher = elementMatchers[j++]) ) { + if ( matcher( elem, context || document, xml) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + // They will have gone through all possible matchers + if ( (elem = !matcher && elem) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // `i` is now the count of elements visited above, and adding it to `matchedCount` + // makes the latter nonnegative. + matchedCount += i; + + // Apply set filters to unmatched elements + // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` + // equals `i`), unless we didn't visit _any_ elements in the above loop because we have + // no element matchers and no seed. + // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that + // case, which will result in a "00" `matchedCount` that differs from `i` but is also + // numerically zero. + if ( bySet && i !== matchedCount ) { + j = 0; + while ( (matcher = setMatchers[j++]) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !(unmatched[i] || setMatched[i]) ) { + setMatched[i] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + // Generate a function of recursive functions that can be used to check each element + if ( !match ) { + match = tokenize( selector ); + } + i = match.length; + while ( i-- ) { + cached = matcherFromTokens( match[i] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); + + // Save selector and tokenization + cached.selector = selector; + } + return cached; +}; + +/** + * A low-level selection function that works with Sizzle's compiled + * selector functions + * @param {String|Function} selector A selector or a pre-compiled + * selector function built with Sizzle.compile + * @param {Element} context + * @param {Array} [results] + * @param {Array} [seed] A set of elements to match against + */ +select = Sizzle.select = function( selector, context, results, seed ) { + var i, tokens, token, type, find, + compiled = typeof selector === "function" && selector, + match = !seed && tokenize( (selector = compiled.selector || selector) ); + + results = results || []; + + // Try to minimize operations if there is only one selector in the list and no seed + // (the latter of which guarantees us context) + if ( match.length === 1 ) { + + // Reduce context if the leading compound selector is an ID + tokens = match[0] = match[0].slice( 0 ); + if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && + support.getById && context.nodeType === 9 && documentIsHTML && + Expr.relative[ tokens[1].type ] ) { + + context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0]; + if ( !context ) { + return results; + + // Precompiled matchers will still verify ancestry, so step up a level + } else if ( compiled ) { + context = context.parentNode; + } + + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[i]; + + // Abort if we hit a combinator + if ( Expr.relative[ (type = token.type) ] ) { + break; + } + if ( (find = Expr.find[ type ]) ) { + // Search, expanding context for leading sibling combinators + if ( (seed = find( + token.matches[0].replace( runescape, funescape ), + rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context + )) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, seed ); + return results; + } + + break; + } + } + } + } + + // Compile and execute a filtering function if one is not provided + // Provide `match` to avoid retokenization if we modified the selector above + ( compiled || compile( selector, match ) )( + seed, + context, + !documentIsHTML, + results, + !context || rsibling.test( selector ) && testContext( context.parentNode ) || context + ); + return results; +}; + +// One-time assignments + +// Sort stability +support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; + +// Support: Chrome 14-35+ +// Always assume duplicates if they aren't passed to the comparison function +support.detectDuplicates = !!hasDuplicate; + +// Initialize against the default document +setDocument(); + +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) +// Detached nodes confoundingly follow *each other* +support.sortDetached = assert(function( div1 ) { + // Should return 1, but returns 4 (following) + return div1.compareDocumentPosition( document.createElement("div") ) & 1; +}); + +// Support: IE<8 +// Prevent attribute/property "interpolation" +// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !assert(function( div ) { + div.innerHTML = ""; + return div.firstChild.getAttribute("href") === "#" ; +}) ) { + addHandle( "type|href|height|width", function( elem, name, isXML ) { + if ( !isXML ) { + return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); + } + }); +} + +// Support: IE<9 +// Use defaultValue in place of getAttribute("value") +if ( !support.attributes || !assert(function( div ) { + div.innerHTML = ""; + div.firstChild.setAttribute( "value", "" ); + return div.firstChild.getAttribute( "value" ) === ""; +}) ) { + addHandle( "value", function( elem, name, isXML ) { + if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { + return elem.defaultValue; + } + }); +} + +// Support: IE<9 +// Use getAttributeNode to fetch booleans when getAttribute lies +if ( !assert(function( div ) { + return div.getAttribute("disabled") == null; +}) ) { + addHandle( booleans, function( elem, name, isXML ) { + var val; + if ( !isXML ) { + return elem[ name ] === true ? name.toLowerCase() : + (val = elem.getAttributeNode( name )) && val.specified ? + val.value : + null; + } + }); +} + +return Sizzle; + +})( window ); + + + +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; +jQuery.expr[ ":" ] = jQuery.expr.pseudos; +jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; + + + +var dir = function( elem, dir, until ) { + var matched = [], + truncate = until !== undefined; + + while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { + if ( elem.nodeType === 1 ) { + if ( truncate && jQuery( elem ).is( until ) ) { + break; + } + matched.push( elem ); + } + } + return matched; +}; + + +var siblings = function( n, elem ) { + var matched = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + matched.push( n ); + } + } + + return matched; +}; + + +var rneedsContext = jQuery.expr.match.needsContext; + +var rsingleTag = ( /^<([\w-]+)\s*\/?>(?:<\/\1>|)$/ ); + + + +var risSimple = /^.[^:#\[\.,]*$/; + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, not ) { + if ( jQuery.isFunction( qualifier ) ) { + return jQuery.grep( elements, function( elem, i ) { + /* jshint -W018 */ + return !!qualifier.call( elem, i, elem ) !== not; + } ); + + } + + if ( qualifier.nodeType ) { + return jQuery.grep( elements, function( elem ) { + return ( elem === qualifier ) !== not; + } ); + + } + + if ( typeof qualifier === "string" ) { + if ( risSimple.test( qualifier ) ) { + return jQuery.filter( qualifier, elements, not ); + } + + qualifier = jQuery.filter( qualifier, elements ); + } + + return jQuery.grep( elements, function( elem ) { + return ( indexOf.call( qualifier, elem ) > -1 ) !== not; + } ); +} + +jQuery.filter = function( expr, elems, not ) { + var elem = elems[ 0 ]; + + if ( not ) { + expr = ":not(" + expr + ")"; + } + + return elems.length === 1 && elem.nodeType === 1 ? + jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] : + jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + } ) ); +}; + +jQuery.fn.extend( { + find: function( selector ) { + var i, + len = this.length, + ret = [], + self = this; + + if ( typeof selector !== "string" ) { + return this.pushStack( jQuery( selector ).filter( function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + } ) ); + } + + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, self[ i ], ret ); + } + + // Needed because $( selector, context ) becomes $( context ).find( selector ) + ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret ); + ret.selector = this.selector ? this.selector + " " + selector : selector; + return ret; + }, + filter: function( selector ) { + return this.pushStack( winnow( this, selector || [], false ) ); + }, + not: function( selector ) { + return this.pushStack( winnow( this, selector || [], true ) ); + }, + is: function( selector ) { + return !!winnow( + this, + + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + typeof selector === "string" && rneedsContext.test( selector ) ? + jQuery( selector ) : + selector || [], + false + ).length; + } +} ); + + +// Initialize a jQuery object + + +// A central reference to the root jQuery(document) +var rootjQuery, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + // Strict HTML recognition (#11290: must start with <) + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/, + + init = jQuery.fn.init = function( selector, context, root ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Method init() accepts an alternate rootjQuery + // so migrate can support jQuery.sub (gh-2101) + root = root || rootjQuery; + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector[ 0 ] === "<" && + selector[ selector.length - 1 ] === ">" && + selector.length >= 3 ) { + + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && ( match[ 1 ] || !context ) ) { + + // HANDLE: $(html) -> $(array) + if ( match[ 1 ] ) { + context = context instanceof jQuery ? context[ 0 ] : context; + + // Option to run scripts is true for back-compat + // Intentionally let the error be thrown if parseHTML is not present + jQuery.merge( this, jQuery.parseHTML( + match[ 1 ], + context && context.nodeType ? context.ownerDocument || context : document, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + + // Properties of context are called as methods if possible + if ( jQuery.isFunction( this[ match ] ) ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[ 2 ] ); + + // Support: Blackberry 4.6 + // gEBID returns nodes no longer in the document (#6963) + if ( elem && elem.parentNode ) { + + // Inject the element directly into the jQuery object + this.length = 1; + this[ 0 ] = elem; + } + + this.context = document; + this.selector = selector; + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || root ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(DOMElement) + } else if ( selector.nodeType ) { + this.context = this[ 0 ] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( jQuery.isFunction( selector ) ) { + return root.ready !== undefined ? + root.ready( selector ) : + + // Execute immediately if ready is not present + selector( jQuery ); + } + + if ( selector.selector !== undefined ) { + this.selector = selector.selector; + this.context = selector.context; + } + + return jQuery.makeArray( selector, this ); + }; + +// Give the init function the jQuery prototype for later instantiation +init.prototype = jQuery.fn; + +// Initialize central reference +rootjQuery = jQuery( document ); + + +var rparentsprev = /^(?:parents|prev(?:Until|All))/, + + // Methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend( { + has: function( target ) { + var targets = jQuery( target, this ), + l = targets.length; + + return this.filter( function() { + var i = 0; + for ( ; i < l; i++ ) { + if ( jQuery.contains( this, targets[ i ] ) ) { + return true; + } + } + } ); + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + matched = [], + pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ? + jQuery( selectors, context || this.context ) : + 0; + + for ( ; i < l; i++ ) { + for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { + + // Always skip document fragments + if ( cur.nodeType < 11 && ( pos ? + pos.index( cur ) > -1 : + + // Don't pass non-elements to Sizzle + cur.nodeType === 1 && + jQuery.find.matchesSelector( cur, selectors ) ) ) { + + matched.push( cur ); + break; + } + } + } + + return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); + }, + + // Determine the position of an element within the set + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; + } + + // Index in selector + if ( typeof elem === "string" ) { + return indexOf.call( jQuery( elem ), this[ 0 ] ); + } + + // Locate the position of the desired element + return indexOf.call( this, + + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[ 0 ] : elem + ); + }, + + add: function( selector, context ) { + return this.pushStack( + jQuery.uniqueSort( + jQuery.merge( this.get(), jQuery( selector, context ) ) + ) + ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter( selector ) + ); + } +} ); + +function sibling( cur, dir ) { + while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} + return cur; +} + +jQuery.each( { + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, i, until ) { + return dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, i, until ) { + return dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, i, until ) { + return dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return siblings( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return siblings( elem.firstChild ); + }, + contents: function( elem ) { + return elem.contentDocument || jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var matched = jQuery.map( this, fn, until ); + + if ( name.slice( -5 ) !== "Until" ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + matched = jQuery.filter( selector, matched ); + } + + if ( this.length > 1 ) { + + // Remove duplicates + if ( !guaranteedUnique[ name ] ) { + jQuery.uniqueSort( matched ); + } + + // Reverse order for parents* and prev-derivatives + if ( rparentsprev.test( name ) ) { + matched.reverse(); + } + } + + return this.pushStack( matched ); + }; +} ); +var rnotwhite = ( /\S+/g ); + + + +// Convert String-formatted options into Object-formatted ones +function createOptions( options ) { + var object = {}; + jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) { + object[ flag ] = true; + } ); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + createOptions( options ) : + jQuery.extend( {}, options ); + + var // Flag to know if list is currently firing + firing, + + // Last fire value for non-forgettable lists + memory, + + // Flag to know if list was already fired + fired, + + // Flag to prevent firing + locked, + + // Actual callback list + list = [], + + // Queue of execution data for repeatable lists + queue = [], + + // Index of currently firing callback (modified by add/remove as needed) + firingIndex = -1, + + // Fire callbacks + fire = function() { + + // Enforce single-firing + locked = options.once; + + // Execute callbacks for all pending executions, + // respecting firingIndex overrides and runtime changes + fired = firing = true; + for ( ; queue.length; firingIndex = -1 ) { + memory = queue.shift(); + while ( ++firingIndex < list.length ) { + + // Run callback and check for early termination + if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && + options.stopOnFalse ) { + + // Jump to end and forget the data so .add doesn't re-fire + firingIndex = list.length; + memory = false; + } + } + } + + // Forget the data if we're done with it + if ( !options.memory ) { + memory = false; + } + + firing = false; + + // Clean up if we're done firing for good + if ( locked ) { + + // Keep an empty list if we have data for future add calls + if ( memory ) { + list = []; + + // Otherwise, this object is spent + } else { + list = ""; + } + } + }, + + // Actual Callbacks object + self = { + + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + + // If we have memory from a past run, we should fire after adding + if ( memory && !firing ) { + firingIndex = list.length - 1; + queue.push( memory ); + } + + ( function add( args ) { + jQuery.each( args, function( _, arg ) { + if ( jQuery.isFunction( arg ) ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && jQuery.type( arg ) !== "string" ) { + + // Inspect recursively + add( arg ); + } + } ); + } )( arguments ); + + if ( memory && !firing ) { + fire(); + } + } + return this; + }, + + // Remove a callback from the list + remove: function() { + jQuery.each( arguments, function( _, arg ) { + var index; + while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + + // Handle firing indexes + if ( index <= firingIndex ) { + firingIndex--; + } + } + } ); + return this; + }, + + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? + jQuery.inArray( fn, list ) > -1 : + list.length > 0; + }, + + // Remove all callbacks from the list + empty: function() { + if ( list ) { + list = []; + } + return this; + }, + + // Disable .fire and .add + // Abort any current/pending executions + // Clear all callbacks and values + disable: function() { + locked = queue = []; + list = memory = ""; + return this; + }, + disabled: function() { + return !list; + }, + + // Disable .fire + // Also disable .add unless we have memory (since it would have no effect) + // Abort any pending executions + lock: function() { + locked = queue = []; + if ( !memory ) { + list = memory = ""; + } + return this; + }, + locked: function() { + return !!locked; + }, + + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( !locked ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + queue.push( args ); + if ( !firing ) { + fire(); + } + } + return this; + }, + + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; + + +jQuery.extend( { + + Deferred: function( func ) { + var tuples = [ + + // action, add listener, listener list, final state + [ "resolve", "done", jQuery.Callbacks( "once memory" ), "resolved" ], + [ "reject", "fail", jQuery.Callbacks( "once memory" ), "rejected" ], + [ "notify", "progress", jQuery.Callbacks( "memory" ) ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + then: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + return jQuery.Deferred( function( newDefer ) { + jQuery.each( tuples, function( i, tuple ) { + var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ]; + + // deferred[ done | fail | progress ] for forwarding actions to newDefer + deferred[ tuple[ 1 ] ]( function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && jQuery.isFunction( returned.promise ) ) { + returned.promise() + .progress( newDefer.notify ) + .done( newDefer.resolve ) + .fail( newDefer.reject ); + } else { + newDefer[ tuple[ 0 ] + "With" ]( + this === promise ? newDefer.promise() : this, + fn ? [ returned ] : arguments + ); + } + } ); + } ); + fns = null; + } ).promise(); + }, + + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Keep pipe for back-compat + promise.pipe = promise.then; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 3 ]; + + // promise[ done | fail | progress ] = list.add + promise[ tuple[ 1 ] ] = list.add; + + // Handle state + if ( stateString ) { + list.add( function() { + + // state = [ resolved | rejected ] + state = stateString; + + // [ reject_list | resolve_list ].disable; progress_list.lock + }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock ); + } + + // deferred[ resolve | reject | notify ] + deferred[ tuple[ 0 ] ] = function() { + deferred[ tuple[ 0 ] + "With" ]( this === deferred ? promise : this, arguments ); + return this; + }; + deferred[ tuple[ 0 ] + "With" ] = list.fireWith; + } ); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( subordinate /* , ..., subordinateN */ ) { + var i = 0, + resolveValues = slice.call( arguments ), + length = resolveValues.length, + + // the count of uncompleted subordinates + remaining = length !== 1 || + ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0, + + // the master Deferred. + // If resolveValues consist of only a single Deferred, just use that. + deferred = remaining === 1 ? subordinate : jQuery.Deferred(), + + // Update function for both resolve and progress values + updateFunc = function( i, contexts, values ) { + return function( value ) { + contexts[ i ] = this; + values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; + if ( values === progressValues ) { + deferred.notifyWith( contexts, values ); + } else if ( !( --remaining ) ) { + deferred.resolveWith( contexts, values ); + } + }; + }, + + progressValues, progressContexts, resolveContexts; + + // Add listeners to Deferred subordinates; treat others as resolved + if ( length > 1 ) { + progressValues = new Array( length ); + progressContexts = new Array( length ); + resolveContexts = new Array( length ); + for ( ; i < length; i++ ) { + if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) { + resolveValues[ i ].promise() + .progress( updateFunc( i, progressContexts, progressValues ) ) + .done( updateFunc( i, resolveContexts, resolveValues ) ) + .fail( deferred.reject ); + } else { + --remaining; + } + } + } + + // If we're not waiting on anything, resolve the master + if ( !remaining ) { + deferred.resolveWith( resolveContexts, resolveValues ); + } + + return deferred.promise(); + } +} ); + + +// The deferred used on DOM ready +var readyList; + +jQuery.fn.ready = function( fn ) { + + // Add the callback + jQuery.ready.promise().done( fn ); + + return this; +}; + +jQuery.extend( { + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Hold (or release) the ready event + holdReady: function( hold ) { + if ( hold ) { + jQuery.readyWait++; + } else { + jQuery.ready( true ); + } + }, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + + // Trigger any bound ready events + if ( jQuery.fn.triggerHandler ) { + jQuery( document ).triggerHandler( "ready" ); + jQuery( document ).off( "ready" ); + } + } +} ); + +/** + * The ready event handler and self cleanup method + */ +function completed() { + document.removeEventListener( "DOMContentLoaded", completed ); + window.removeEventListener( "load", completed ); + jQuery.ready(); +} + +jQuery.ready.promise = function( obj ) { + if ( !readyList ) { + + readyList = jQuery.Deferred(); + + // Catch cases where $(document).ready() is called + // after the browser event has already occurred. + // Support: IE9-10 only + // Older IE sometimes signals "interactive" too soon + if ( document.readyState === "complete" || + ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { + + // Handle it asynchronously to allow scripts the opportunity to delay ready + window.setTimeout( jQuery.ready ); + + } else { + + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed ); + } + } + return readyList.promise( obj ); +}; + +// Kick off the DOM ready check even if the user does not +jQuery.ready.promise(); + + + + +// Multifunctional method to get and set values of a collection +// The value/s can optionally be executed if it's a function +var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + len = elems.length, + bulk = key == null; + + // Sets many values + if ( jQuery.type( key ) === "object" ) { + chainable = true; + for ( i in key ) { + access( elems, fn, i, key[ i ], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( !jQuery.isFunction( value ) ) { + raw = true; + } + + if ( bulk ) { + + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < len; i++ ) { + fn( + elems[ i ], key, raw ? + value : + value.call( elems[ i ], i, fn( elems[ i ], key ) ) + ); + } + } + } + + return chainable ? + elems : + + // Gets + bulk ? + fn.call( elems ) : + len ? fn( elems[ 0 ], key ) : emptyGet; +}; +var acceptData = function( owner ) { + + // Accepts only: + // - Node + // - Node.ELEMENT_NODE + // - Node.DOCUMENT_NODE + // - Object + // - Any + /* jshint -W018 */ + return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); +}; + + + + +function Data() { + this.expando = jQuery.expando + Data.uid++; +} + +Data.uid = 1; + +Data.prototype = { + + register: function( owner, initial ) { + var value = initial || {}; + + // If it is a node unlikely to be stringify-ed or looped over + // use plain assignment + if ( owner.nodeType ) { + owner[ this.expando ] = value; + + // Otherwise secure it in a non-enumerable, non-writable property + // configurability must be true to allow the property to be + // deleted with the delete operator + } else { + Object.defineProperty( owner, this.expando, { + value: value, + writable: true, + configurable: true + } ); + } + return owner[ this.expando ]; + }, + cache: function( owner ) { + + // We can accept data for non-element nodes in modern browsers, + // but we should not, see #8335. + // Always return an empty object. + if ( !acceptData( owner ) ) { + return {}; + } + + // Check if the owner object already has a cache + var value = owner[ this.expando ]; + + // If not, create one + if ( !value ) { + value = {}; + + // We can accept data for non-element nodes in modern browsers, + // but we should not, see #8335. + // Always return an empty object. + if ( acceptData( owner ) ) { + + // If it is a node unlikely to be stringify-ed or looped over + // use plain assignment + if ( owner.nodeType ) { + owner[ this.expando ] = value; + + // Otherwise secure it in a non-enumerable property + // configurable must be true to allow the property to be + // deleted when data is removed + } else { + Object.defineProperty( owner, this.expando, { + value: value, + configurable: true + } ); + } + } + } + + return value; + }, + set: function( owner, data, value ) { + var prop, + cache = this.cache( owner ); + + // Handle: [ owner, key, value ] args + if ( typeof data === "string" ) { + cache[ data ] = value; + + // Handle: [ owner, { properties } ] args + } else { + + // Copy the properties one-by-one to the cache object + for ( prop in data ) { + cache[ prop ] = data[ prop ]; + } + } + return cache; + }, + get: function( owner, key ) { + return key === undefined ? + this.cache( owner ) : + owner[ this.expando ] && owner[ this.expando ][ key ]; + }, + access: function( owner, key, value ) { + var stored; + + // In cases where either: + // + // 1. No key was specified + // 2. A string key was specified, but no value provided + // + // Take the "read" path and allow the get method to determine + // which value to return, respectively either: + // + // 1. The entire cache object + // 2. The data stored at the key + // + if ( key === undefined || + ( ( key && typeof key === "string" ) && value === undefined ) ) { + + stored = this.get( owner, key ); + + return stored !== undefined ? + stored : this.get( owner, jQuery.camelCase( key ) ); + } + + // When the key is not a string, or both a key and value + // are specified, set or extend (existing objects) with either: + // + // 1. An object of properties + // 2. A key and value + // + this.set( owner, key, value ); + + // Since the "set" path can have two possible entry points + // return the expected data based on which path was taken[*] + return value !== undefined ? value : key; + }, + remove: function( owner, key ) { + var i, name, camel, + cache = owner[ this.expando ]; + + if ( cache === undefined ) { + return; + } + + if ( key === undefined ) { + this.register( owner ); + + } else { + + // Support array or space separated string of keys + if ( jQuery.isArray( key ) ) { + + // If "name" is an array of keys... + // When data is initially created, via ("key", "val") signature, + // keys will be converted to camelCase. + // Since there is no way to tell _how_ a key was added, remove + // both plain key and camelCase key. #12786 + // This will only penalize the array argument path. + name = key.concat( key.map( jQuery.camelCase ) ); + } else { + camel = jQuery.camelCase( key ); + + // Try the string as a key before any manipulation + if ( key in cache ) { + name = [ key, camel ]; + } else { + + // If a key with the spaces exists, use it. + // Otherwise, create an array by matching non-whitespace + name = camel; + name = name in cache ? + [ name ] : ( name.match( rnotwhite ) || [] ); + } + } + + i = name.length; + + while ( i-- ) { + delete cache[ name[ i ] ]; + } + } + + // Remove the expando if there's no more data + if ( key === undefined || jQuery.isEmptyObject( cache ) ) { + + // Support: Chrome <= 35-45+ + // Webkit & Blink performance suffers when deleting properties + // from DOM nodes, so set to undefined instead + // https://code.google.com/p/chromium/issues/detail?id=378607 + if ( owner.nodeType ) { + owner[ this.expando ] = undefined; + } else { + delete owner[ this.expando ]; + } + } + }, + hasData: function( owner ) { + var cache = owner[ this.expando ]; + return cache !== undefined && !jQuery.isEmptyObject( cache ); + } +}; +var dataPriv = new Data(); + +var dataUser = new Data(); + + + +// Implementation Summary +// +// 1. Enforce API surface and semantic compatibility with 1.9.x branch +// 2. Improve the module's maintainability by reducing the storage +// paths to a single mechanism. +// 3. Use the same single mechanism to support "private" and "user" data. +// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) +// 5. Avoid exposing implementation details on user objects (eg. expando properties) +// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 + +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, + rmultiDash = /[A-Z]/g; + +function dataAttr( elem, key, data ) { + var name; + + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = data === "true" ? true : + data === "false" ? false : + data === "null" ? null : + + // Only convert to a number if it doesn't change the string + +data + "" === data ? +data : + rbrace.test( data ) ? jQuery.parseJSON( data ) : + data; + } catch ( e ) {} + + // Make sure we set the data so it isn't changed later + dataUser.set( elem, key, data ); + } else { + data = undefined; + } + } + return data; +} + +jQuery.extend( { + hasData: function( elem ) { + return dataUser.hasData( elem ) || dataPriv.hasData( elem ); + }, + + data: function( elem, name, data ) { + return dataUser.access( elem, name, data ); + }, + + removeData: function( elem, name ) { + dataUser.remove( elem, name ); + }, + + // TODO: Now that all calls to _data and _removeData have been replaced + // with direct calls to dataPriv methods, these can be deprecated. + _data: function( elem, name, data ) { + return dataPriv.access( elem, name, data ); + }, + + _removeData: function( elem, name ) { + dataPriv.remove( elem, name ); + } +} ); + +jQuery.fn.extend( { + data: function( key, value ) { + var i, name, data, + elem = this[ 0 ], + attrs = elem && elem.attributes; + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = dataUser.get( elem ); + + if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { + i = attrs.length; + while ( i-- ) { + + // Support: IE11+ + // The attrs elements can be null (#14894) + if ( attrs[ i ] ) { + name = attrs[ i ].name; + if ( name.indexOf( "data-" ) === 0 ) { + name = jQuery.camelCase( name.slice( 5 ) ); + dataAttr( elem, name, data[ name ] ); + } + } + } + dataPriv.set( elem, "hasDataAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each( function() { + dataUser.set( this, key ); + } ); + } + + return access( this, function( value ) { + var data, camelKey; + + // The calling jQuery object (element matches) is not empty + // (and therefore has an element appears at this[ 0 ]) and the + // `value` parameter was not undefined. An empty jQuery object + // will result in `undefined` for elem = this[ 0 ] which will + // throw an exception if an attempt to read a data cache is made. + if ( elem && value === undefined ) { + + // Attempt to get data from the cache + // with the key as-is + data = dataUser.get( elem, key ) || + + // Try to find dashed key if it exists (gh-2779) + // This is for 2.2.x only + dataUser.get( elem, key.replace( rmultiDash, "-$&" ).toLowerCase() ); + + if ( data !== undefined ) { + return data; + } + + camelKey = jQuery.camelCase( key ); + + // Attempt to get data from the cache + // with the key camelized + data = dataUser.get( elem, camelKey ); + if ( data !== undefined ) { + return data; + } + + // Attempt to "discover" the data in + // HTML5 custom data-* attrs + data = dataAttr( elem, camelKey, undefined ); + if ( data !== undefined ) { + return data; + } + + // We tried really hard, but the data doesn't exist. + return; + } + + // Set the data... + camelKey = jQuery.camelCase( key ); + this.each( function() { + + // First, attempt to store a copy or reference of any + // data that might've been store with a camelCased key. + var data = dataUser.get( this, camelKey ); + + // For HTML5 data-* attribute interop, we have to + // store property names with dashes in a camelCase form. + // This might not apply to all properties...* + dataUser.set( this, camelKey, value ); + + // *... In the case of properties that might _actually_ + // have dashes, we need to also store a copy of that + // unchanged property. + if ( key.indexOf( "-" ) > -1 && data !== undefined ) { + dataUser.set( this, key, value ); + } + } ); + }, null, value, arguments.length > 1, null, true ); + }, + + removeData: function( key ) { + return this.each( function() { + dataUser.remove( this, key ); + } ); + } +} ); + + +jQuery.extend( { + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = dataPriv.get( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || jQuery.isArray( data ) ) { + queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // Clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // Not public - generate a queueHooks object, or return the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { + empty: jQuery.Callbacks( "once memory" ).add( function() { + dataPriv.remove( elem, [ type + "queue", key ] ); + } ) + } ); + } +} ); + +jQuery.fn.extend( { + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[ 0 ], type ); + } + + return data === undefined ? + this : + this.each( function() { + var queue = jQuery.queue( this, type, data ); + + // Ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + } ); + }, + dequeue: function( type ) { + return this.each( function() { + jQuery.dequeue( this, type ); + } ); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while ( i-- ) { + tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +} ); +var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; + +var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); + + +var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; + +var isHidden = function( elem, el ) { + + // isHidden might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + return jQuery.css( elem, "display" ) === "none" || + !jQuery.contains( elem.ownerDocument, elem ); + }; + + + +function adjustCSS( elem, prop, valueParts, tween ) { + var adjusted, + scale = 1, + maxIterations = 20, + currentValue = tween ? + function() { return tween.cur(); } : + function() { return jQuery.css( elem, prop, "" ); }, + initial = currentValue(), + unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), + + // Starting value computation is required for potential unit mismatches + initialInUnit = ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && + rcssNum.exec( jQuery.css( elem, prop ) ); + + if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { + + // Trust units reported by jQuery.css + unit = unit || initialInUnit[ 3 ]; + + // Make sure we update the tween properties later on + valueParts = valueParts || []; + + // Iteratively approximate from a nonzero starting point + initialInUnit = +initial || 1; + + do { + + // If previous iteration zeroed out, double until we get *something*. + // Use string for doubling so we don't accidentally see scale as unchanged below + scale = scale || ".5"; + + // Adjust and apply + initialInUnit = initialInUnit / scale; + jQuery.style( elem, prop, initialInUnit + unit ); + + // Update scale, tolerating zero or NaN from tween.cur() + // Break the loop if scale is unchanged or perfect, or if we've just had enough. + } while ( + scale !== ( scale = currentValue() / initial ) && scale !== 1 && --maxIterations + ); + } + + if ( valueParts ) { + initialInUnit = +initialInUnit || +initial || 0; + + // Apply relative offset (+=/-=) if specified + adjusted = valueParts[ 1 ] ? + initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : + +valueParts[ 2 ]; + if ( tween ) { + tween.unit = unit; + tween.start = initialInUnit; + tween.end = adjusted; + } + } + return adjusted; +} +var rcheckableType = ( /^(?:checkbox|radio)$/i ); + +var rtagName = ( /<([\w:-]+)/ ); + +var rscriptType = ( /^$|\/(?:java|ecma)script/i ); + + + +// We have to close these tags to support XHTML (#13200) +var wrapMap = { + + // Support: IE9 + option: [ 1, "" ], + + // XHTML parsers do not magically insert elements in the + // same way that tag soup parsers do. So we cannot shorten + // this by omitting or other required elements. + thead: [ 1, "", "
    " ], + col: [ 2, "", "
    " ], + tr: [ 2, "", "
    " ], + td: [ 3, "", "
    " ], + + _default: [ 0, "", "" ] +}; + +// Support: IE9 +wrapMap.optgroup = wrapMap.option; + +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + + +function getAll( context, tag ) { + + // Support: IE9-11+ + // Use typeof to avoid zero-argument method invocation on host objects (#15151) + var ret = typeof context.getElementsByTagName !== "undefined" ? + context.getElementsByTagName( tag || "*" ) : + typeof context.querySelectorAll !== "undefined" ? + context.querySelectorAll( tag || "*" ) : + []; + + return tag === undefined || tag && jQuery.nodeName( context, tag ) ? + jQuery.merge( [ context ], ret ) : + ret; +} + + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + dataPriv.set( + elems[ i ], + "globalEval", + !refElements || dataPriv.get( refElements[ i ], "globalEval" ) + ); + } +} + + +var rhtml = /<|&#?\w+;/; + +function buildFragment( elems, context, scripts, selection, ignored ) { + var elem, tmp, tag, wrap, contains, j, + fragment = context.createDocumentFragment(), + nodes = [], + i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( jQuery.type( elem ) === "object" ) { + + // Support: Android<4.1, PhantomJS<2 + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; + + // Descend through wrappers to the right content + j = wrap[ 0 ]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Support: Android<4.1, PhantomJS<2 + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, tmp.childNodes ); + + // Remember the top-level container + tmp = fragment.firstChild; + + // Ensure the created nodes are orphaned (#12392) + tmp.textContent = ""; + } + } + } + + // Remove wrapper from fragment + fragment.textContent = ""; + + i = 0; + while ( ( elem = nodes[ i++ ] ) ) { + + // Skip elements already in the context collection (trac-4087) + if ( selection && jQuery.inArray( elem, selection ) > -1 ) { + if ( ignored ) { + ignored.push( elem ); + } + continue; + } + + contains = jQuery.contains( elem.ownerDocument, elem ); + + // Append to fragment + tmp = getAll( fragment.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( contains ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( ( elem = tmp[ j++ ] ) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + return fragment; +} + + +( function() { + var fragment = document.createDocumentFragment(), + div = fragment.appendChild( document.createElement( "div" ) ), + input = document.createElement( "input" ); + + // Support: Android 4.0-4.3, Safari<=5.1 + // Check state lost if the name is set (#11217) + // Support: Windows Web Apps (WWA) + // `name` and `type` must use .setAttribute for WWA (#14901) + input.setAttribute( "type", "radio" ); + input.setAttribute( "checked", "checked" ); + input.setAttribute( "name", "t" ); + + div.appendChild( input ); + + // Support: Safari<=5.1, Android<4.2 + // Older WebKit doesn't clone checked state correctly in fragments + support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE<=11+ + // Make sure textarea (and checkbox) defaultValue is properly cloned + div.innerHTML = ""; + support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; +} )(); + + +var + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, + rtypenamespace = /^([^.]*)(?:\.(.+)|)/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +// Support: IE9 +// See #13393 for more info +function safeActiveElement() { + try { + return document.activeElement; + } catch ( err ) { } +} + +function on( elem, types, selector, data, fn, one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + on( elem, type, selector, data, types[ type ], one ); + } + return elem; + } + + if ( data == null && fn == null ) { + + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return elem; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return elem.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + } ); +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + + var handleObjIn, eventHandle, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.get( elem ); + + // Don't attach events to noData or text/comment nodes (but allow plain objects) + if ( !elemData ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !( events = elemData.events ) ) { + events = elemData.events = {}; + } + if ( !( eventHandle = elemData.handle ) ) { + eventHandle = elemData.handle = function( e ) { + + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? + jQuery.event.dispatch.apply( elem, arguments ) : undefined; + }; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( rnotwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend( { + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join( "." ) + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !( handlers = events[ type ] ) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener if the special events handler returns false + if ( !special.setup || + special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var j, origCount, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); + + if ( !elemData || !( events = elemData.events ) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( rnotwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[ 2 ] && + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || + selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || + special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove data and the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + dataPriv.remove( elem, "handle events" ); + } + }, + + dispatch: function( event ) { + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( event ); + + var i, j, ret, matched, handleObj, + handlerQueue = [], + args = slice.call( arguments ), + handlers = ( dataPriv.get( this, "events" ) || {} )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[ 0 ] = event; + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( ( handleObj = matched.handlers[ j++ ] ) && + !event.isImmediatePropagationStopped() ) { + + // Triggered event must either 1) have no namespace, or 2) have namespace(s) + // a subset or equal to those in the bound event (both can have no namespace). + if ( !event.rnamespace || event.rnamespace.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || + handleObj.handler ).apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( ( event.result = ret ) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var i, matches, sel, handleObj, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Support (at least): Chrome, IE9 + // Find delegate handlers + // Black-hole SVG instance trees (#13180) + // + // Support: Firefox<=42+ + // Avoid non-left-click in FF but don't block IE radio events (#3861, gh-2343) + if ( delegateCount && cur.nodeType && + ( event.type !== "click" || isNaN( event.button ) || event.button < 1 ) ) { + + for ( ; cur !== this; cur = cur.parentNode || this ) { + + // Don't check non-elements (#13208) + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.nodeType === 1 && ( cur.disabled !== true || event.type !== "click" ) ) { + matches = []; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matches[ sel ] === undefined ) { + matches[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) > -1 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matches[ sel ] ) { + matches.push( handleObj ); + } + } + if ( matches.length ) { + handlerQueue.push( { elem: cur, handlers: matches } ); + } + } + } + } + + // Add the remaining (directly-bound) handlers + if ( delegateCount < handlers.length ) { + handlerQueue.push( { elem: this, handlers: handlers.slice( delegateCount ) } ); + } + + return handlerQueue; + }, + + // Includes some event props shared by KeyEvent and MouseEvent + props: ( "altKey bubbles cancelable ctrlKey currentTarget detail eventPhase " + + "metaKey relatedTarget shiftKey target timeStamp view which" ).split( " " ), + + fixHooks: {}, + + keyHooks: { + props: "char charCode key keyCode".split( " " ), + filter: function( event, original ) { + + // Add which for key events + if ( event.which == null ) { + event.which = original.charCode != null ? original.charCode : original.keyCode; + } + + return event; + } + }, + + mouseHooks: { + props: ( "button buttons clientX clientY offsetX offsetY pageX pageY " + + "screenX screenY toElement" ).split( " " ), + filter: function( event, original ) { + var eventDoc, doc, body, + button = original.button; + + // Calculate pageX/Y if missing and clientX/Y available + if ( event.pageX == null && original.clientX != null ) { + eventDoc = event.target.ownerDocument || document; + doc = eventDoc.documentElement; + body = eventDoc.body; + + event.pageX = original.clientX + + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - + ( doc && doc.clientLeft || body && body.clientLeft || 0 ); + event.pageY = original.clientY + + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - + ( doc && doc.clientTop || body && body.clientTop || 0 ); + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + // Note: button is not normalized, so don't use it + if ( !event.which && button !== undefined ) { + event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); + } + + return event; + } + }, + + fix: function( event ) { + if ( event[ jQuery.expando ] ) { + return event; + } + + // Create a writable copy of the event object and normalize some properties + var i, prop, copy, + type = event.type, + originalEvent = event, + fixHook = this.fixHooks[ type ]; + + if ( !fixHook ) { + this.fixHooks[ type ] = fixHook = + rmouseEvent.test( type ) ? this.mouseHooks : + rkeyEvent.test( type ) ? this.keyHooks : + {}; + } + copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; + + event = new jQuery.Event( originalEvent ); + + i = copy.length; + while ( i-- ) { + prop = copy[ i ]; + event[ prop ] = originalEvent[ prop ]; + } + + // Support: Cordova 2.5 (WebKit) (#13255) + // All events should have a target; Cordova deviceready doesn't + if ( !event.target ) { + event.target = document; + } + + // Support: Safari 6.0+, Chrome<28 + // Target should not be a text node (#504, #13143) + if ( event.target.nodeType === 3 ) { + event.target = event.target.parentNode; + } + + return fixHook.filter ? fixHook.filter( event, originalEvent ) : event; + }, + + special: { + load: { + + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + focus: { + + // Fire native event if possible so blur/focus sequence is correct + trigger: function() { + if ( this !== safeActiveElement() && this.focus ) { + this.focus(); + return false; + } + }, + delegateType: "focusin" + }, + blur: { + trigger: function() { + if ( this === safeActiveElement() && this.blur ) { + this.blur(); + return false; + } + }, + delegateType: "focusout" + }, + click: { + + // For checkbox, fire native event so checked state will be right + trigger: function() { + if ( this.type === "checkbox" && this.click && jQuery.nodeName( this, "input" ) ) { + this.click(); + return false; + } + }, + + // For cross-browser consistency, don't fire native .click() on links + _default: function( event ) { + return jQuery.nodeName( event.target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + + // Support: Firefox 20+ + // Firefox doesn't alert if the returnValue field is not set. + if ( event.result !== undefined && event.originalEvent ) { + event.originalEvent.returnValue = event.result; + } + } + } + } +}; + +jQuery.removeEvent = function( elem, type, handle ) { + + // This "if" is needed for plain objects + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle ); + } +}; + +jQuery.Event = function( src, props ) { + + // Allow instantiation without the 'new' keyword + if ( !( this instanceof jQuery.Event ) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = src.defaultPrevented || + src.defaultPrevented === undefined && + + // Support: Android<4.0 + src.returnValue === false ? + returnTrue : + returnFalse; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || jQuery.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + constructor: jQuery.Event, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + isSimulated: false, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + + if ( e && !this.isSimulated ) { + e.preventDefault(); + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopPropagation(); + } + }, + stopImmediatePropagation: function() { + var e = this.originalEvent; + + this.isImmediatePropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopImmediatePropagation(); + } + + this.stopPropagation(); + } +}; + +// Create mouseenter/leave events using mouseover/out and event-time checks +// so that event delegation works in jQuery. +// Do the same for pointerenter/pointerleave and pointerover/pointerout +// +// Support: Safari 7 only +// Safari sends mouseenter too often; see: +// https://code.google.com/p/chromium/issues/detail?id=470258 +// for the description of the bug (it existed in older Chrome versions as well). +jQuery.each( { + mouseenter: "mouseover", + mouseleave: "mouseout", + pointerenter: "pointerover", + pointerleave: "pointerout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mouseenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +} ); + +jQuery.fn.extend( { + on: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn ); + }, + one: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? + handleObj.origType + "." + handleObj.namespace : + handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each( function() { + jQuery.event.remove( this, types, fn, selector ); + } ); + } +} ); + + +var + rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi, + + // Support: IE 10-11, Edge 10240+ + // In IE/Edge using regex groups here causes severe slowdowns. + // See https://connect.microsoft.com/IE/feedback/details/1736512/ + rnoInnerhtml = /\s*$/g; + +// Manipulating tables requires a tbody +function manipulationTarget( elem, content ) { + return jQuery.nodeName( elem, "table" ) && + jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ? + + elem.getElementsByTagName( "tbody" )[ 0 ] || + elem.appendChild( elem.ownerDocument.createElement( "tbody" ) ) : + elem; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + var match = rscriptTypeMasked.exec( elem.type ); + + if ( match ) { + elem.type = match[ 1 ]; + } else { + elem.removeAttribute( "type" ); + } + + return elem; +} + +function cloneCopyEvent( src, dest ) { + var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events; + + if ( dest.nodeType !== 1 ) { + return; + } + + // 1. Copy private data: events, handlers, etc. + if ( dataPriv.hasData( src ) ) { + pdataOld = dataPriv.access( src ); + pdataCur = dataPriv.set( dest, pdataOld ); + events = pdataOld.events; + + if ( events ) { + delete pdataCur.handle; + pdataCur.events = {}; + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + } + + // 2. Copy user data + if ( dataUser.hasData( src ) ) { + udataOld = dataUser.access( src ); + udataCur = jQuery.extend( {}, udataOld ); + + dataUser.set( dest, udataCur ); + } +} + +// Fix IE bugs, see support tests +function fixInput( src, dest ) { + var nodeName = dest.nodeName.toLowerCase(); + + // Fails to persist the checked state of a cloned checkbox or radio button. + if ( nodeName === "input" && rcheckableType.test( src.type ) ) { + dest.checked = src.checked; + + // Fails to return the selected option to the default selected state when cloning options + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +function domManip( collection, args, callback, ignored ) { + + // Flatten any nested arrays + args = concat.apply( [], args ); + + var fragment, first, scripts, hasScripts, node, doc, + i = 0, + l = collection.length, + iNoClone = l - 1, + value = args[ 0 ], + isFunction = jQuery.isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( isFunction || + ( l > 1 && typeof value === "string" && + !support.checkClone && rchecked.test( value ) ) ) { + return collection.each( function( index ) { + var self = collection.eq( index ); + if ( isFunction ) { + args[ 0 ] = value.call( this, index, self.html() ); + } + domManip( self, args, callback, ignored ); + } ); + } + + if ( l ) { + fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + // Require either new content or an interest in ignored elements to invoke the callback + if ( first || ignored ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item + // instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + + // Support: Android<4.1, PhantomJS<2 + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( collection[ i ], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !dataPriv.access( node, "globalEval" ) && + jQuery.contains( doc, node ) ) { + + if ( node.src ) { + + // Optional AJAX dependency, but won't run scripts if not present + if ( jQuery._evalUrl ) { + jQuery._evalUrl( node.src ); + } + } else { + jQuery.globalEval( node.textContent.replace( rcleanScript, "" ) ); + } + } + } + } + } + } + + return collection; +} + +function remove( elem, selector, keepData ) { + var node, + nodes = selector ? jQuery.filter( selector, elem ) : elem, + i = 0; + + for ( ; ( node = nodes[ i ] ) != null; i++ ) { + if ( !keepData && node.nodeType === 1 ) { + jQuery.cleanData( getAll( node ) ); + } + + if ( node.parentNode ) { + if ( keepData && jQuery.contains( node.ownerDocument, node ) ) { + setGlobalEval( getAll( node, "script" ) ); + } + node.parentNode.removeChild( node ); + } + } + + return elem; +} + +jQuery.extend( { + htmlPrefilter: function( html ) { + return html.replace( rxhtmlTag, "<$1>" ); + }, + + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var i, l, srcElements, destElements, + clone = elem.cloneNode( true ), + inPage = jQuery.contains( elem.ownerDocument, elem ); + + // Fix IE cloning issues + if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && + !jQuery.isXMLDoc( elem ) ) { + + // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + fixInput( srcElements[ i ], destElements[ i ] ); + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + cloneCopyEvent( srcElements[ i ], destElements[ i ] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + // Return the cloned set + return clone; + }, + + cleanData: function( elems ) { + var data, elem, type, + special = jQuery.event.special, + i = 0; + + for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { + if ( acceptData( elem ) ) { + if ( ( data = elem[ dataPriv.expando ] ) ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Support: Chrome <= 35-45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataPriv.expando ] = undefined; + } + if ( elem[ dataUser.expando ] ) { + + // Support: Chrome <= 35-45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataUser.expando ] = undefined; + } + } + } + } +} ); + +jQuery.fn.extend( { + + // Keep domManip exposed until 3.0 (gh-2225) + domManip: domManip, + + detach: function( selector ) { + return remove( this, selector, true ); + }, + + remove: function( selector ) { + return remove( this, selector ); + }, + + text: function( value ) { + return access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().each( function() { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + this.textContent = value; + } + } ); + }, null, value, arguments.length ); + }, + + append: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + } ); + }, + + prepend: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + } ); + }, + + before: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + } ); + }, + + after: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + } ); + }, + + empty: function() { + var elem, + i = 0; + + for ( ; ( elem = this[ i ] ) != null; i++ ) { + if ( elem.nodeType === 1 ) { + + // Prevent memory leaks + jQuery.cleanData( getAll( elem, false ) ); + + // Remove any remaining nodes + elem.textContent = ""; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function() { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + } ); + }, + + html: function( value ) { + return access( this, function( value ) { + var elem = this[ 0 ] || {}, + i = 0, + l = this.length; + + if ( value === undefined && elem.nodeType === 1 ) { + return elem.innerHTML; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { + + value = jQuery.htmlPrefilter( value ); + + try { + for ( ; i < l; i++ ) { + elem = this[ i ] || {}; + + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch ( e ) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var ignored = []; + + // Make the changes, replacing each non-ignored context element with the new content + return domManip( this, arguments, function( elem ) { + var parent = this.parentNode; + + if ( jQuery.inArray( this, ignored ) < 0 ) { + jQuery.cleanData( getAll( this ) ); + if ( parent ) { + parent.replaceChild( elem, this ); + } + } + + // Force callback invocation + }, ignored ); + } +} ); + +jQuery.each( { + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1, + i = 0; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone( true ); + jQuery( insert[ i ] )[ original ]( elems ); + + // Support: QtWebKit + // .get() because push.apply(_, arraylike) throws + push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +} ); + + +var iframe, + elemdisplay = { + + // Support: Firefox + // We have to pre-define these values for FF (#10227) + HTML: "block", + BODY: "block" + }; + +/** + * Retrieve the actual display of a element + * @param {String} name nodeName of the element + * @param {Object} doc Document object + */ + +// Called only from within defaultDisplay +function actualDisplay( name, doc ) { + var elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ), + + display = jQuery.css( elem[ 0 ], "display" ); + + // We don't have any data stored on the element, + // so use "detach" method as fast way to get rid of the element + elem.detach(); + + return display; +} + +/** + * Try to determine the default display value of an element + * @param {String} nodeName + */ +function defaultDisplay( nodeName ) { + var doc = document, + display = elemdisplay[ nodeName ]; + + if ( !display ) { + display = actualDisplay( nodeName, doc ); + + // If the simple way fails, read from inside an iframe + if ( display === "none" || !display ) { + + // Use the already-created iframe if possible + iframe = ( iframe || jQuery( "