Compare commits
No commits in common. "master" and "v1.1.1" have entirely different histories.
12
.eslintrc
12
.eslintrc
@ -5,14 +5,14 @@
|
||||
"ecmaVersion": 3,
|
||||
},
|
||||
"plugins": [ "html", "json" ],
|
||||
"extends": "eslint:recommended",
|
||||
"!extends": "eslint:recommended",
|
||||
"rules": {
|
||||
"comma-style": [ 2, "last" ],
|
||||
"comma-dangle": [ 2, "never" ],
|
||||
"curly": 0,
|
||||
"no-bitwise": 0,
|
||||
"no-console": 0,
|
||||
"no-bitwise": 0,
|
||||
"curly": 0,
|
||||
"comma-style": [ 2, "last" ],
|
||||
"no-trailing-spaces": 2,
|
||||
"semi": [ 2, "always" ]
|
||||
"semi": [ 2, "always" ],
|
||||
"comma-dangle": [ 2, "never" ]
|
||||
}
|
||||
}
|
||||
|
92
.github/workflows/node-4+.yml
vendored
92
.github/workflows/node-4+.yml
vendored
@ -1,92 +0,0 @@
|
||||
name: 'Tests: node.js'
|
||||
|
||||
on: [pull_request, push]
|
||||
|
||||
jobs:
|
||||
matrix:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
latest: ${{ steps.set-matrix.outputs.requireds }}
|
||||
steps:
|
||||
- uses: ljharb/actions/node/matrix@main
|
||||
id: set-matrix
|
||||
with:
|
||||
versionsAsRoot: true
|
||||
type: 'majors'
|
||||
preset: '>=4'
|
||||
|
||||
latest:
|
||||
needs: [matrix]
|
||||
name: 'latest majors'
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
node-version: ${{ fromJson(needs.matrix.outputs.latest) }}
|
||||
include:
|
||||
- node-version: '14.'
|
||||
env:
|
||||
TZ: America/New_York
|
||||
- node-version: '13.'
|
||||
env:
|
||||
TZ: Europe/London
|
||||
- node-version: '12.'
|
||||
env:
|
||||
TZ: Asia/Seoul
|
||||
- node-version: '11.'
|
||||
env:
|
||||
TZ: America/Los_Angeles
|
||||
FMTS: misc
|
||||
- node-version: '10.'
|
||||
env:
|
||||
TZ: Europe/Berlin
|
||||
FMTS: misc
|
||||
- node-version: '9.'
|
||||
env:
|
||||
TZ: Asia/Kolkata
|
||||
FMTS: misc
|
||||
- node-version: '8.'
|
||||
env:
|
||||
TZ: Asia/Shanghai
|
||||
FMTS: misc
|
||||
- node-version: '7.'
|
||||
env:
|
||||
TZ: America/Cancun
|
||||
FMTS: misc
|
||||
- node-version: '6.'
|
||||
env:
|
||||
TZ: Asia/Seoul
|
||||
FMTS: misc
|
||||
- node-version: '5.'
|
||||
env:
|
||||
TZ: America/Anchorage
|
||||
FMTS: misc
|
||||
- node-version: '4.'
|
||||
env:
|
||||
TZ: America/Barbados
|
||||
FMTS: misc
|
||||
- node-version: '4.4.7' # see GH issue #1150
|
||||
env:
|
||||
TZ: Asia/Tokyo
|
||||
FMTS: misc
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: ljharb/actions/node/install@main
|
||||
name: 'nvm install ${{ matrix.node-version }} && npm install'
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- run: sudo curl -Lo /usr/bin/rooster https://github.com/SheetJS/rooster/releases/download/v0.2.0/rooster-v0.2.0-linux-amd64
|
||||
- run: sudo chmod a+x /usr/bin/rooster
|
||||
#- run: make init
|
||||
#- run: 'cd test_files; make all; cd -'
|
||||
- run: npm run test
|
||||
#- run: 'cd packages/ssf; npm install; npm run tests-only; cd -'
|
||||
|
||||
node:
|
||||
name: 'node 4+'
|
||||
needs: [latest]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: 'echo tests completed'
|
45
.github/workflows/node-iojs.yml
vendored
45
.github/workflows/node-iojs.yml
vendored
@ -1,45 +0,0 @@
|
||||
name: 'Tests: node.js (io.js)'
|
||||
|
||||
on: [pull_request, push]
|
||||
|
||||
jobs:
|
||||
matrix:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
latest: ${{ steps.set-matrix.outputs.requireds }}
|
||||
steps:
|
||||
- uses: ljharb/actions/node/matrix@main
|
||||
id: set-matrix
|
||||
with:
|
||||
type: 'majors'
|
||||
preset: 'iojs'
|
||||
|
||||
latest:
|
||||
needs: [matrix]
|
||||
name: 'latest majors'
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix: ${{ fromJson(needs.matrix.outputs.latest) }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: ljharb/actions/node/install@main
|
||||
name: 'nvm install ${{ matrix.node-version }} && npm install'
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
skip-ls-check: true
|
||||
- run: sudo curl -Lo /usr/bin/rooster https://github.com/SheetJS/rooster/releases/download/v0.2.0/rooster-v0.2.0-linux-amd64
|
||||
- run: sudo chmod a+x /usr/bin/rooster
|
||||
#- run: make init
|
||||
#- run: 'cd test_files; make all; cd -'
|
||||
- run: npm run test
|
||||
#- run: 'cd packages/ssf; npm run tests-only; cd -'
|
||||
|
||||
node:
|
||||
name: 'io.js'
|
||||
needs: [latest]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: 'echo tests completed'
|
32
.github/workflows/node-pretest.yml
vendored
32
.github/workflows/node-pretest.yml
vendored
@ -1,32 +0,0 @@
|
||||
name: 'Tests: pretest/posttest'
|
||||
|
||||
on: [pull_request, push]
|
||||
|
||||
jobs:
|
||||
pretest:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: ljharb/actions/node/install@main
|
||||
name: 'nvm install lts/* && npm install'
|
||||
with:
|
||||
node-version: 'lts/*'
|
||||
- run: sudo curl -Lo /usr/bin/rooster https://github.com/SheetJS/rooster/releases/download/v0.2.0/rooster-v0.2.0-linux-amd64
|
||||
- run: sudo chmod a+x /usr/bin/rooster
|
||||
#- run: make init
|
||||
#- run: 'cd test_files; make all; cd -'
|
||||
#- run: npm run pretest
|
||||
|
||||
# posttest:
|
||||
# runs-on: ubuntu-latest
|
||||
|
||||
# steps:
|
||||
# - uses: actions/checkout@v2
|
||||
# - uses: ljharb/actions/node/install@main
|
||||
# name: 'nvm install lts/* && npm install'
|
||||
# with:
|
||||
# node-version: 'lts/*'
|
||||
# - run: make init
|
||||
# - run: 'cd test_files; make all; cd -'
|
||||
# - run: npm run posttest
|
88
.github/workflows/node-zero.yml
vendored
88
.github/workflows/node-zero.yml
vendored
@ -1,88 +0,0 @@
|
||||
name: 'Tests: node.js (0.x)'
|
||||
|
||||
on: [pull_request, push]
|
||||
|
||||
jobs:
|
||||
matrix:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
stable: ${{ steps.set-matrix.outputs.requireds }}
|
||||
# unstable: ${{ steps.set-matrix.outputs.optionals }}
|
||||
steps:
|
||||
- uses: ljharb/actions/node/matrix@main
|
||||
id: set-matrix
|
||||
with:
|
||||
versionsAsRoot: true
|
||||
preset: '0.x'
|
||||
|
||||
stable:
|
||||
needs: [matrix]
|
||||
name: 'stable minors'
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
node-version: ${{ fromJson(needs.matrix.outputs.stable) }}
|
||||
include:
|
||||
- node-version: '0.12.'
|
||||
env:
|
||||
TZ: America/Cayman
|
||||
FMTS: misc
|
||||
- node-version: '0.10.'
|
||||
env:
|
||||
TZ: Pacific/Honolulu
|
||||
FMTS: misc
|
||||
#- node-version: '0.8.'
|
||||
# env:
|
||||
# TZ: America/Mexico_City
|
||||
# FMTS: misc
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: ljharb/actions/node/install@main
|
||||
name: 'nvm install ${{ matrix.node-version }} && npm install'
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
cache-node-modules-key: node_modules-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }}
|
||||
skip-ls-check: true
|
||||
- run: sudo curl -Lo /usr/bin/rooster https://github.com/SheetJS/rooster/releases/download/v0.2.0/rooster-v0.2.0-linux-amd64
|
||||
- run: sudo chmod a+x /usr/bin/rooster
|
||||
#- run: make init
|
||||
#- run: 'cd test_files; make all; cd -'
|
||||
- run: npm run test
|
||||
#- run: 'cd packages/ssf; npm run tests-only; cd -'
|
||||
|
||||
# unstable:
|
||||
# needs: [matrix, stable]
|
||||
# name: 'unstable minors'
|
||||
# continue-on-error: true
|
||||
# if: ${{ !github.head_ref || !startsWith(github.head_ref, 'renovate') }}
|
||||
# runs-on: ubuntu-latest
|
||||
|
||||
# strategy:
|
||||
# fail-fast: false
|
||||
# matrix:
|
||||
# node-version: ${{ fromJson(needs.matrix.outputs.unstable) }}
|
||||
#
|
||||
# steps:
|
||||
# - uses: actions/checkout@v2
|
||||
# - uses: ljharb/actions/node/install@main
|
||||
# name: 'nvm install ${{ matrix.node-version }} && npm install'
|
||||
# with:
|
||||
# node-version: ${{ matrix.node-version }}
|
||||
# cache-node-modules-key: node_modules-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }}
|
||||
# skip-ls-check: true
|
||||
# - run: sudo curl -Lo /usr/bin/rooster https://github.com/SheetJS/rooster/releases/download/v0.2.0/rooster-v0.2.0-linux-amd64
|
||||
# - run: sudo chmod a+x /usr/bin/rooster
|
||||
# - run: make init
|
||||
# - run: 'cd test_files; make all; cd -'
|
||||
# - run: npm run tests-only
|
||||
|
||||
node:
|
||||
name: 'node 0.x'
|
||||
# needs: [stable, unstable]
|
||||
needs: [stable]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: 'echo tests completed'
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
node_modules
|
||||
*.tgz
|
||||
test_files/*.py
|
||||
test_files/*.js
|
||||
test_files/baseline*
|
||||
|
10
.spelling
10
.spelling
@ -1,10 +0,0 @@
|
||||
# crc32.js (C) 2014-present SheetJS -- http://sheetjs.com
|
||||
SheetJS
|
||||
32-bit
|
||||
CRC-32
|
||||
UCS-2
|
||||
UTF-8
|
||||
crc32
|
||||
checksum
|
||||
nodejs
|
||||
npm
|
@ -1,6 +1,5 @@
|
||||
language: node_js
|
||||
node_js:
|
||||
- "9"
|
||||
- "8"
|
||||
- "7"
|
||||
- "6"
|
||||
|
191
LICENSE
191
LICENSE
@ -1,192 +1,4 @@
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "{}"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright (C) 2014-present SheetJS LLC
|
||||
Copyright (C) 2014-present SheetJS
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@ -199,3 +11,4 @@
|
||||
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.
|
||||
|
||||
|
38
Makefile
38
Makefile
@ -1,7 +1,7 @@
|
||||
LIB=crc32
|
||||
REQS=
|
||||
ADDONS=
|
||||
AUXTARGETS=crc32c.js demo/browser.js
|
||||
AUXTARGETS=demo/browser.js
|
||||
CMDS=bin/crc32.njs
|
||||
HTMLLINT=index.html
|
||||
|
||||
@ -12,13 +12,10 @@ FLOWTARGET=$(LIB).flow.js
|
||||
FLOWTGTS=$(TARGET) $(AUXTARGETS)
|
||||
CLOSURE=/usr/local/lib/node_modules/google-closure-compiler/compiler.jar
|
||||
|
||||
ESMJSTGT=crc32.mjs
|
||||
ESMJSDEPS=$(shell cat misc/mjs.lst)
|
||||
|
||||
## Main Targets
|
||||
|
||||
.PHONY: all
|
||||
all: $(TARGET) $(AUXTARGETS) $(ESMJSTGT) crc32c.mjs ## Build library and auxiliary scripts
|
||||
all: $(TARGET) $(AUXTARGETS) ## Build library and auxiliary scripts
|
||||
|
||||
$(FLOWTGTS): %.js : %.flow.js
|
||||
node -e 'process.stdout.write(require("fs").readFileSync("$<","utf8").replace(/^[ \t]*\/\*[:#][^*]*\*\/\s*(\n)?/gm,"").replace(/\/\*[:#][^*]*\*\//gm,""))' > $@
|
||||
@ -26,9 +23,6 @@ $(FLOWTGTS): %.js : %.flow.js
|
||||
$(FLOWTARGET): $(DEPS)
|
||||
cat $^ | tr -d '\15\32' > $@
|
||||
|
||||
$(ESMJSTGT): $(ESMJSDEPS)
|
||||
cat $^ | tr -d '\15\32' > $@
|
||||
|
||||
bits/01_version.js: package.json
|
||||
echo "$(ULIB).version = '"`grep version package.json | awk '{gsub(/[^0-9a-z\.-]/,"",$$2); print $$2}'`"';" > $@
|
||||
|
||||
@ -36,17 +30,11 @@ bits/01_version.js: package.json
|
||||
clean: clean-baseline ## Remove targets and build artifacts
|
||||
rm -f $(TARGET) $(FLOWTARGET)
|
||||
|
||||
crc32c.flow.js: crc32.flow.js
|
||||
cat $^ | sed 's/-306674912/-2097792136/g; s/CRC32\([ \/\.]\)/CRC32C\1/g' > $@
|
||||
|
||||
crc32c.mjs: crc32.mjs
|
||||
cat $^ | sed 's/-306674912/-2097792136/g; s/CRC32\([ \/\.]\)/CRC32C\1/g' > $@
|
||||
|
||||
## Testing
|
||||
|
||||
.PHONY: test mocha
|
||||
test mocha: test.js $(TARGET) baseline ## Run test suite
|
||||
./node_modules/.bin/mocha -R spec -t 60000
|
||||
mocha -R spec -t 30000
|
||||
|
||||
.PHONY: ctest
|
||||
ctest: ## Build browser test (into ctest/ subdirectory)
|
||||
@ -57,7 +45,7 @@ ctest: ## Build browser test (into ctest/ subdirectory)
|
||||
|
||||
.PHONY: ctestserv
|
||||
ctestserv: ## Start a test server on port 8000
|
||||
@cd ctest && python -mSimpleHTTPServer || python3 -mhttp.server || npx -y http-server -p 8000 .
|
||||
@cd ctest && python -mSimpleHTTPServer
|
||||
|
||||
.PHONY: baseline
|
||||
baseline: ## Build test baselines
|
||||
@ -69,12 +57,9 @@ clean-baseline: ## Remove test baselines
|
||||
|
||||
## Code Checking
|
||||
|
||||
.PHONY: fullint
|
||||
fullint: lint old-lint tslint flow mdlint ## Run all checks
|
||||
|
||||
.PHONY: lint
|
||||
lint: $(TARGET) $(AUXTARGETS) ## Run eslint checks
|
||||
@eslint --ext .js,.njs,.json,.html,.htm $(TARGET) $(AUXTARGETS) $(CMDS) $(HTMLLINT) package.json
|
||||
@eslint --ext .js,.njs,.json,.html,.htm $(TARGET) $(AUXTARGETS) $(CMDS) $(HTMLLINT) package.json bower.json
|
||||
if [ -e $(CLOSURE) ]; then java -jar $(CLOSURE) $(REQS) $(FLOWTARGET) --jscomp_warning=reportUnknownTypes >/dev/null; fi
|
||||
|
||||
.PHONY: old-lint
|
||||
@ -89,8 +74,7 @@ old-lint: $(TARGET) $(AUXTARGETS) ## Run jshint and jscs checks
|
||||
.PHONY: tslint
|
||||
tslint: $(TARGET) ## Run typescript checks
|
||||
#@npm install dtslint typescript
|
||||
#@npm run-script dtslint
|
||||
dtslint types
|
||||
@npm run-script dtslint
|
||||
|
||||
.PHONY: flow
|
||||
flow: lint ## Run flow checker
|
||||
@ -100,17 +84,11 @@ flow: lint ## Run flow checker
|
||||
cov: misc/coverage.html ## Run coverage test
|
||||
|
||||
misc/coverage.html: $(TARGET) test.js
|
||||
./node_modules/.bin/mocha --require blanket -R html-cov -t 60000 > $@
|
||||
mocha --require blanket -R html-cov -t 20000 > $@
|
||||
|
||||
.PHONY: coveralls
|
||||
coveralls: ## Coverage Test + Send to coveralls.io
|
||||
./node_modules/.bin/mocha --require blanket --reporter mocha-lcov-reporter -t 60000 | node ./node_modules/coveralls/bin/coveralls.js
|
||||
|
||||
MDLINT=README.md
|
||||
.PHONY: mdlint
|
||||
mdlint: $(MDLINT) ## Check markdown documents
|
||||
alex $^
|
||||
mdspell -a -n -x -r --en-us $^
|
||||
mocha --require blanket --reporter mocha-lcov-reporter -t 20000 | node ./node_modules/coveralls/bin/coveralls.js
|
||||
|
||||
.PHONY: perf
|
||||
perf: ## Run Performance Tests
|
||||
|
153
README.md
153
README.md
@ -5,157 +5,60 @@ Emphasis on correctness, performance, and IE6+ support.
|
||||
|
||||
## Installation
|
||||
|
||||
With a node package manager like `npm`:
|
||||
With [npm](https://www.npmjs.org/package/crc-32):
|
||||
|
||||
```bash
|
||||
$ npm i --save https://cdn.sheetjs.com/crc-32-latest/crc-32-latest.tgz
|
||||
$ npm install crc-32
|
||||
```
|
||||
|
||||
When installed globally, npm installs a script `crc32` that computes the
|
||||
checksum for a specified file or standard input.
|
||||
|
||||
Hosted versions are available at <https://cdn.sheetjs.com/>:
|
||||
|
||||
- `crc32.js` (CommonJS): <https://cdn.sheetjs.com/crc-32-latest/package/crc32.js>
|
||||
- `crc32.mjs` (ESM): <https://cdn.sheetjs.com/crc-32-latest/package/crc32.mjs>
|
||||
- `crc32c.js` (CommonJS): <https://cdn.sheetjs.com/crc-32-latest/package/crc32c.js>
|
||||
- `crc32c.mjs` (ESM): <https://cdn.sheetjs.com/crc-32-latest/package/crc32c.mjs>
|
||||
|
||||
## Integration
|
||||
|
||||
Using NodeJS or a bundler with `require`:
|
||||
|
||||
```js
|
||||
var CRC32 = require("crc-32");
|
||||
```
|
||||
|
||||
Using NodeJS or a bundler with `import`:
|
||||
|
||||
```js
|
||||
import { bstr, buf, str } from "crc-32";
|
||||
```
|
||||
|
||||
In the browser, the `crc32.js` script can be loaded directly:
|
||||
In the browser:
|
||||
|
||||
```html
|
||||
<script src="crc32.js"></script>
|
||||
```
|
||||
|
||||
The browser script exposes a variable `CRC32`.
|
||||
The browser exposes a variable `CRC32`.
|
||||
|
||||
The script will manipulate `module.exports` if available . This is not always
|
||||
desirable. To prevent the behavior, define `DO_NOT_EXPORT_CRC`.
|
||||
When installed globally, npm installs a script `crc32` that computes the
|
||||
checksum for a specified file or standard input.
|
||||
|
||||
### CRC32C (Castagnoli)
|
||||
|
||||
The module and CDNs also include a parallel script for CRC32C calculations.
|
||||
|
||||
Using NodeJS or a bundler:
|
||||
|
||||
```js
|
||||
var CRC32C = require("crc-32/crc32c");
|
||||
```
|
||||
|
||||
Using NodeJS or a bundler with `import`:
|
||||
|
||||
```js
|
||||
import { bstr, buf, str } from "crc-32/crc32c";
|
||||
```
|
||||
|
||||
In the browser, the `crc32c.js` script can be loaded directly:
|
||||
|
||||
```html
|
||||
<script src="crc32c.js"></script>
|
||||
```
|
||||
|
||||
The browser exposes a variable `CRC32C`.
|
||||
|
||||
The script will manipulate `module.exports` if available . This is not always
|
||||
desirable. To prevent the behavior, define `DO_NOT_EXPORT_CRC`.
|
||||
The script will manipulate `module.exports` if available (e.g. in a CommonJS
|
||||
`require` context). This is not always desirable. To prevent the behavior,
|
||||
define `DO_NOT_EXPORT_CRC`.
|
||||
|
||||
## Usage
|
||||
|
||||
In all cases, the relevant function takes an argument representing data and an
|
||||
optional second argument representing the starting "seed" (for rolling CRC).
|
||||
|
||||
**The return value is a signed 32-bit integer!**
|
||||
The return value is a signed 32-bit integer.
|
||||
|
||||
- `CRC32.buf(byte array or buffer[, seed])` assumes the argument is a sequence
|
||||
of 8-bit unsigned integers (nodejs `Buffer`, `Uint8Array` or array of bytes).
|
||||
of 8-bit unsigned integers (e.g. nodejs `Buffer` or simple array of ints).
|
||||
|
||||
- `CRC32.bstr(binary string[, seed])` assumes the argument is a binary string
|
||||
- `CRC32.bstr(binary string[, seed])` assumes the argument is a "binary" string
|
||||
where byte `i` is the low byte of the UCS-2 char: `str.charCodeAt(i) & 0xFF`
|
||||
|
||||
- `CRC32.str(string[, seed])` assumes the argument is a standard JS string and
|
||||
calculates the hash of the UTF-8 encoding.
|
||||
- `CRC32.str(string[, seed])` assumes the argument is a standard string and
|
||||
calculates the CRC32 of the UTF-8 encoding.
|
||||
|
||||
For example:
|
||||
|
||||
```js
|
||||
// var CRC32 = require('crc-32'); // uncomment this line if in node
|
||||
CRC32.str("SheetJS") // -1647298270
|
||||
CRC32.bstr("SheetJS") // -1647298270
|
||||
CRC32.buf([ 83, 104, 101, 101, 116, 74, 83 ]) // -1647298270
|
||||
// var CRC32 = require('crc-32'); // uncomment this line if in node
|
||||
CRC32.str("SheetJS") // -1647298270
|
||||
CRC32.bstr("SheetJS") // -1647298270
|
||||
CRC32.buf([ 83, 104, 101, 101, 116, 74, 83 ]) // -1647298270
|
||||
|
||||
crc32 = CRC32.buf([83, 104]) // -1826163454 "Sh"
|
||||
crc32 = CRC32.str("eet", crc32) // 1191034598 "Sheet"
|
||||
CRC32.bstr("JS", crc32) // -1647298270 "SheetJS"
|
||||
crc32 = CRC32.buf([83, 104]) // -1826163454 "Sh"
|
||||
crc32 = CRC32.str("eet", crc32) // 1191034598 "Sheet"
|
||||
CRC32.bstr("JS", crc32) // -1647298270 "SheetJS"
|
||||
|
||||
[CRC32.str("\u2603"), CRC32.str("\u0003")] // [ -1743909036, 1259060791 ]
|
||||
[CRC32.bstr("\u2603"), CRC32.bstr("\u0003")] // [ 1259060791, 1259060791 ]
|
||||
[CRC32.buf([0x2603]), CRC32.buf([0x0003])] // [ 1259060791, 1259060791 ]
|
||||
|
||||
// var CRC32C = require('crc-32/crc32c'); // uncomment this line if in node
|
||||
CRC32C.str("SheetJS") // -284764294
|
||||
CRC32C.bstr("SheetJS") // -284764294
|
||||
CRC32C.buf([ 83, 104, 101, 101, 116, 74, 83 ]) // -284764294
|
||||
|
||||
crc32c = CRC32C.buf([83, 104]) // -297065629 "Sh"
|
||||
crc32c = CRC32C.str("eet", crc32c) // 1241364256 "Sheet"
|
||||
CRC32C.bstr("JS", crc32c) // -284764294 "SheetJS"
|
||||
|
||||
[CRC32C.str("\u2603"), CRC32C.str("\u0003")] // [ 1253703093, 1093509285 ]
|
||||
[CRC32C.bstr("\u2603"), CRC32C.bstr("\u0003")] // [ 1093509285, 1093509285 ]
|
||||
[CRC32C.buf([0x2603]), CRC32C.buf([0x0003])] // [ 1093509285, 1093509285 ]
|
||||
[CRC32.str("\u2603"), CRC32.str("\u0003")] // [ -1743909036, 1259060791 ]
|
||||
[CRC32.bstr("\u2603"), CRC32.bstr("\u0003")] // [ 1259060791, 1259060791 ]
|
||||
[CRC32.buf([0x2603]), CRC32.buf([0x0003])] // [ 1259060791, 1259060791 ]
|
||||
```
|
||||
|
||||
### Best Practices
|
||||
|
||||
Even though the initial seed is optional, for performance reasons it is highly
|
||||
recommended to explicitly pass the default seed 0.
|
||||
|
||||
In NodeJS with the native Buffer implementation, it is oftentimes faster to
|
||||
convert binary strings with `Buffer.from(bstr, "binary")` first:
|
||||
|
||||
```js
|
||||
/* Frequently slower in NodeJS */
|
||||
crc32 = CRC32.bstr(bstr, 0);
|
||||
/* Frequently faster in NodeJS */
|
||||
crc32 = CRC32.buf(Buffer.from(bstr, "binary"), 0);
|
||||
```
|
||||
|
||||
This does not apply to browser `Buffer` shims, and thus is not implemented in
|
||||
the library directly.
|
||||
|
||||
### Signed Integers
|
||||
|
||||
Unconventional for a CRC32 checksum, this library uses signed 32-bit integers.
|
||||
This is for performance reasons. Standard JS operators can convert between
|
||||
signed and unsigned 32-bit integers:
|
||||
|
||||
```js
|
||||
CRC32.str("SheetJS") // -1647298270 (signed)
|
||||
CRC32.str("SheetJS") >>> 0 // 2647669026 (unsigned)
|
||||
(CRC32.str("SheetJS")>>>0).toString(16) // "9dd03922" (hex)
|
||||
|
||||
(2647669026 | 0) // -1647298270
|
||||
```
|
||||
|
||||
- `x >>> 0` converts a number value to unsigned 32-bit integer.
|
||||
|
||||
- `x | 0` converts a number value to signed 32-bit integer.
|
||||
|
||||
|
||||
## Testing
|
||||
|
||||
`make test` will run the nodejs-based test.
|
||||
@ -165,7 +68,7 @@ To run the in-browser tests, run a local server and go to the `ctest` directory.
|
||||
|
||||
To update the browser artifacts, run `make ctest`.
|
||||
|
||||
To generate the bits file, use the `crc32` function from python `zlib`:
|
||||
To generate the bits file, use the `crc32` function from python zlib:
|
||||
|
||||
```python
|
||||
>>> from zlib import crc32
|
||||
@ -178,7 +81,7 @@ To generate the bits file, use the `crc32` function from python `zlib`:
|
||||
1834240887
|
||||
```
|
||||
|
||||
The included `crc32.njs` script can process files or standard input:
|
||||
The included `crc32.njs` script can process files or stdin:
|
||||
|
||||
```bash
|
||||
$ echo "this is a test" > t.txt
|
||||
@ -186,7 +89,7 @@ $ bin/crc32.njs t.txt
|
||||
1912935186
|
||||
```
|
||||
|
||||
For comparison, the included `crc32.py` script uses python `zlib`:
|
||||
For comparison, the included `crc32.py` script uses python zlib:
|
||||
|
||||
```bash
|
||||
$ bin/crc32.py t.txt
|
||||
@ -207,7 +110,7 @@ $ crc32 --unsigned ~/Downloads/IE8.Win7.For.Windows.VMware.zip
|
||||
`make perf` will run algorithmic performance tests (which should justify certain
|
||||
decisions in the code).
|
||||
|
||||
The [`adler-32` project](https://github.com/SheetJS/js-adler32) has more performance notes
|
||||
[js-adler32](http://git.io/adler32) has more performance notes
|
||||
|
||||
## License
|
||||
|
||||
|
@ -1,8 +1,6 @@
|
||||
#!/usr/bin/env node
|
||||
/* crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
|
||||
/* eslint-env node */
|
||||
/* vim: set ts=2 ft=javascript: */
|
||||
/*jshint node:true */
|
||||
|
||||
var X/*:CRC32Module*/;
|
||||
try { X = require('../'); } catch(e) { X = require('crc-32'); }
|
||||
@ -20,7 +18,6 @@ function help()/*:number*/ {
|
||||
" -u, --unsigned print result with format `%u`",
|
||||
" -x, --hex print result with format `%0.8x`",
|
||||
" -X, --HEX print result with format `%0.8X`",
|
||||
" -c, --crc32c use CRC32C (Castagnoli)",
|
||||
" -F, --format=<s> use specified printf format",
|
||||
"",
|
||||
"Set filename = '-' or pipe data into crc32 to read from stdin",
|
||||
@ -33,7 +30,7 @@ function help()/*:number*/ {
|
||||
function version()/*:number*/ { console.log(X.version); return 0; }
|
||||
|
||||
var fs = require('fs');
|
||||
try { require('exit-on-epipe'); } catch(e) {}
|
||||
require('exit-on-epipe');
|
||||
|
||||
function die(msg/*:string*/, ec/*:?number*/)/*:void*/ { console.error(msg); process.exit(ec || 0); }
|
||||
|
||||
@ -52,21 +49,12 @@ for(var i = 0; i < args.length; ++i) {
|
||||
case "--help": case "-h": process.exit(help()); break;
|
||||
case "--version": case "-V": process.exit(version()); break;
|
||||
|
||||
case "--crc32c": case "-c": try { X = require('../crc32c'); } catch(e) { X = require('crc-32/crc32c'); } break;
|
||||
|
||||
case "--signed": case "-d": fmt = "%d"; break;
|
||||
case "--unsigned": case "-u": fmt = "%u"; break;
|
||||
case "--hex": case "-x": fmt = "%0.8x"; break;
|
||||
case "--HEX": case "-X": fmt = "%0.8X"; break;
|
||||
case "--format": case "-F":
|
||||
try {
|
||||
require("printj");
|
||||
fmt = ((m!=arg) ? arg.substr(m.length+1) : args[++i])||"";
|
||||
} catch(e) {
|
||||
console.error("The `crc-32` module removed the `printj` dependency for formatting");
|
||||
console.error("Use the `crc32-cli` module instead:");
|
||||
console.error(" $ npx crc32-cli [options] [filename]");
|
||||
} break;
|
||||
fmt = ((m!=arg) ? arg.substr(m.length+1) : args[++i])||""; break;
|
||||
|
||||
case "--hex-seed": case "-H": r = 16;
|
||||
/* falls through */
|
||||
@ -89,15 +77,7 @@ writable._writev = function(chunks, cb) {
|
||||
cb();
|
||||
};
|
||||
writable.on('finish', function() {
|
||||
if(fmt === "") console.log(crc32);
|
||||
else try { console.log(require("printj").sprintf(fmt, crc32)); } catch(e) {
|
||||
switch(fmt) {
|
||||
case "%d": console.log(crc32); break;
|
||||
case "%u": console.log(crc32 >>> 0); break;
|
||||
case "%0.8x": console.log((crc32 >>> 0).toString(16).padStart(8, "0").toLowerCase()); break;
|
||||
case "%0.8X": console.log((crc32 >>> 0).toString(16).padStart(8, "0").toUpperCase()); break;
|
||||
}
|
||||
}
|
||||
console.log(fmt === "" ? crc32 : require("printj").sprintf(fmt, crc32));
|
||||
});
|
||||
|
||||
if(filename === "-") process.stdin.pipe(writable);
|
||||
|
@ -1,27 +1,25 @@
|
||||
/*! crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
|
||||
/* crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
|
||||
/* vim: set ts=2: */
|
||||
/*exported CRC32 */
|
||||
/*:: declare var DO_NOT_EXPORT_CRC:?boolean; */
|
||||
/*:: declare function define(cb:()=>any):void; */
|
||||
var CRC32/*:CRC32Module*/;
|
||||
(function (factory/*:(a:any)=>void*/)/*:void*/ {
|
||||
var CRC32;
|
||||
/*:: declare var DO_NOT_EXPORT_CRC: any; */
|
||||
/*:: declare var define: any; */
|
||||
(function (factory) {
|
||||
/*jshint ignore:start */
|
||||
/*eslint-disable */
|
||||
if(typeof DO_NOT_EXPORT_CRC === 'undefined') {
|
||||
if('object' === typeof exports) {
|
||||
factory(exports);
|
||||
} else if ('function' === typeof define && define.amd) {
|
||||
define(function () {
|
||||
var module/*:CRC32Module*/ = /*::(*/{}/*:: :any)*/;
|
||||
var module = {};
|
||||
factory(module);
|
||||
return module;
|
||||
});
|
||||
} else {
|
||||
factory(CRC32 = /*::(*/{}/*:: :any)*/);
|
||||
factory(CRC32 = {});
|
||||
}
|
||||
} else {
|
||||
factory(CRC32 = /*::(*/{}/*:: :any)*/);
|
||||
factory(CRC32 = {});
|
||||
}
|
||||
/*eslint-enable */
|
||||
/*jshint ignore:end */
|
||||
}(function(CRC32/*:CRC32Module*/) {
|
||||
}(function(CRC32) {
|
||||
|
@ -1 +1 @@
|
||||
CRC32.version = '1.2.3';
|
||||
CRC32.version = '1.1.1';
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*::
|
||||
type CRC32Type = number;
|
||||
type ABuf = Array<number> | Buffer | Uint8Array;
|
||||
type ABuf = Array<number> | Uint8Array | Buffer;
|
||||
type CRC32TableType = Array<number> | Int32Array;
|
||||
*/
|
||||
|
@ -1,3 +1,4 @@
|
||||
/* see perf/crc32table.js */
|
||||
/*global Int32Array */
|
||||
function signed_crc_table()/*:CRC32TableType*/ {
|
||||
var c = 0, table/*:Array<number>*/ = new Array(256);
|
||||
@ -18,20 +19,4 @@ function signed_crc_table()/*:CRC32TableType*/ {
|
||||
return typeof Int32Array !== 'undefined' ? new Int32Array(table) : table;
|
||||
}
|
||||
|
||||
var T0 = signed_crc_table();
|
||||
function slice_by_16_tables(T) {
|
||||
var c = 0, v = 0, n = 0, table/*:Array<number>*/ = typeof Int32Array !== 'undefined' ? new Int32Array(4096) : new Array(4096) ;
|
||||
|
||||
for(n = 0; n != 256; ++n) table[n] = T[n];
|
||||
for(n = 0; n != 256; ++n) {
|
||||
v = T[n];
|
||||
for(c = 256 + n; c < 4096; c += 256) v = table[c] = (v >>> 8) ^ T[v & 0xFF];
|
||||
}
|
||||
var out = [];
|
||||
for(n = 1; n != 16; ++n) out[n - 1] = typeof Int32Array !== 'undefined' ? table.subarray(n * 256, n * 256 + 256) : table.slice(n * 256, n * 256 + 256);
|
||||
return out;
|
||||
}
|
||||
var TT = slice_by_16_tables(T0);
|
||||
var T1 = TT[0], T2 = TT[1], T3 = TT[2], T4 = TT[3], T5 = TT[4];
|
||||
var T6 = TT[5], T7 = TT[6], T8 = TT[7], T9 = TT[8], Ta = TT[9];
|
||||
var Tb = TT[10], Tc = TT[11], Td = TT[12], Te = TT[13], Tf = TT[14];
|
||||
var T = signed_crc_table();
|
||||
|
@ -1,44 +1,64 @@
|
||||
/*# charCodeAt is the best approach for binary strings */
|
||||
function crc32_bstr(bstr/*:string*/, seed/*:?CRC32Type*/)/*:CRC32Type*/ {
|
||||
var C = seed/*:: ? 0 : 0 */ ^ -1;
|
||||
for(var i = 0, L = bstr.length; i < L;) C = (C>>>8) ^ T0[(C^bstr.charCodeAt(i++))&0xFF];
|
||||
return ~C;
|
||||
var C = seed/*:: ? 0 : 0 */ ^ -1, L = bstr.length - 1;
|
||||
for(var i = 0; i < L;) {
|
||||
C = (C>>>8) ^ T[(C^bstr.charCodeAt(i++))&0xFF];
|
||||
C = (C>>>8) ^ T[(C^bstr.charCodeAt(i++))&0xFF];
|
||||
}
|
||||
if(i === L) C = (C>>>8) ^ T[(C ^ bstr.charCodeAt(i))&0xFF];
|
||||
return C ^ -1;
|
||||
}
|
||||
|
||||
function crc32_buf(B/*:ABuf*/, seed/*:?CRC32Type*/)/*:CRC32Type*/ {
|
||||
var C = seed/*:: ? 0 : 0 */ ^ -1, L = B.length - 15, i = 0;
|
||||
for(; i < L;) C =
|
||||
Tf[B[i++] ^ (C & 255)] ^
|
||||
Te[B[i++] ^ ((C >> 8) & 255)] ^
|
||||
Td[B[i++] ^ ((C >> 16) & 255)] ^
|
||||
Tc[B[i++] ^ (C >>> 24)] ^
|
||||
Tb[B[i++]] ^ Ta[B[i++]] ^ T9[B[i++]] ^ T8[B[i++]] ^
|
||||
T7[B[i++]] ^ T6[B[i++]] ^ T5[B[i++]] ^ T4[B[i++]] ^
|
||||
T3[B[i++]] ^ T2[B[i++]] ^ T1[B[i++]] ^ T0[B[i++]];
|
||||
L += 15;
|
||||
while(i < L) C = (C>>>8) ^ T0[(C^B[i++])&0xFF];
|
||||
return ~C;
|
||||
function crc32_buf(buf/*:ABuf*/, seed/*:?CRC32Type*/)/*:CRC32Type*/ {
|
||||
if(buf.length > 10000) return crc32_buf_8(buf, seed);
|
||||
var C = seed/*:: ? 0 : 0 */ ^ -1, L = buf.length - 3;
|
||||
for(var i = 0; i < L;) {
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
}
|
||||
while(i < L+3) C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
return C ^ -1;
|
||||
}
|
||||
|
||||
function crc32_buf_8(buf/*:ABuf*/, seed/*:?CRC32Type*/)/*:CRC32Type*/ {
|
||||
var C = seed/*:: ? 0 : 0 */ ^ -1, L = buf.length - 7;
|
||||
for(var i = 0; i < L;) {
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
}
|
||||
while(i < L+7) C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
return C ^ -1;
|
||||
}
|
||||
|
||||
/*# much much faster to intertwine utf8 and crc */
|
||||
function crc32_str(str/*:string*/, seed/*:?CRC32Type*/)/*:CRC32Type*/ {
|
||||
var C = seed/*:: ? 0 : 0 */ ^ -1;
|
||||
for(var i = 0, L = str.length, c = 0, d = 0; i < L;) {
|
||||
for(var i = 0, L=str.length, c, d; i < L;) {
|
||||
c = str.charCodeAt(i++);
|
||||
if(c < 0x80) {
|
||||
C = (C>>>8) ^ T0[(C^c)&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ c)&0xFF];
|
||||
} else if(c < 0x800) {
|
||||
C = (C>>>8) ^ T0[(C ^ (192|((c>>6)&31)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(c&63)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (192|((c>>6)&31)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|(c&63)))&0xFF];
|
||||
} else if(c >= 0xD800 && c < 0xE000) {
|
||||
c = (c&1023)+64; d = str.charCodeAt(i++)&1023;
|
||||
C = (C>>>8) ^ T0[(C ^ (240|((c>>8)&7)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((c>>2)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((d>>6)&15)|((c&3)<<4)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(d&63)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (240|((c>>8)&7)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|((c>>2)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|((d>>6)&15)|((c&3)<<4)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|(d&63)))&0xFF];
|
||||
} else {
|
||||
C = (C>>>8) ^ T0[(C ^ (224|((c>>12)&15)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((c>>6)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(c&63)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (224|((c>>12)&15)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|((c>>6)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|(c&63)))&0xFF];
|
||||
}
|
||||
}
|
||||
return ~C;
|
||||
return C ^ -1;
|
||||
}
|
||||
|
@ -1,7 +1,4 @@
|
||||
CRC32.table = T0;
|
||||
// $FlowIgnore
|
||||
CRC32.table = T;
|
||||
CRC32.bstr = crc32_bstr;
|
||||
// $FlowIgnore
|
||||
CRC32.buf = crc32_buf;
|
||||
// $FlowIgnore
|
||||
CRC32.str = crc32_str;
|
||||
|
124
crc32.flow.js
124
crc32.flow.js
@ -1,36 +1,35 @@
|
||||
/*! crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
|
||||
/* crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
|
||||
/* vim: set ts=2: */
|
||||
/*exported CRC32 */
|
||||
/*:: declare var DO_NOT_EXPORT_CRC:?boolean; */
|
||||
/*:: declare function define(cb:()=>any):void; */
|
||||
var CRC32/*:CRC32Module*/;
|
||||
(function (factory/*:(a:any)=>void*/)/*:void*/ {
|
||||
var CRC32;
|
||||
/*:: declare var DO_NOT_EXPORT_CRC: any; */
|
||||
/*:: declare var define: any; */
|
||||
(function (factory) {
|
||||
/*jshint ignore:start */
|
||||
/*eslint-disable */
|
||||
if(typeof DO_NOT_EXPORT_CRC === 'undefined') {
|
||||
if('object' === typeof exports) {
|
||||
factory(exports);
|
||||
} else if ('function' === typeof define && define.amd) {
|
||||
define(function () {
|
||||
var module/*:CRC32Module*/ = /*::(*/{}/*:: :any)*/;
|
||||
var module = {};
|
||||
factory(module);
|
||||
return module;
|
||||
});
|
||||
} else {
|
||||
factory(CRC32 = /*::(*/{}/*:: :any)*/);
|
||||
factory(CRC32 = {});
|
||||
}
|
||||
} else {
|
||||
factory(CRC32 = /*::(*/{}/*:: :any)*/);
|
||||
factory(CRC32 = {});
|
||||
}
|
||||
/*eslint-enable */
|
||||
/*jshint ignore:end */
|
||||
}(function(CRC32/*:CRC32Module*/) {
|
||||
CRC32.version = '1.2.3';
|
||||
}(function(CRC32) {
|
||||
CRC32.version = '1.1.1';
|
||||
/*::
|
||||
type CRC32Type = number;
|
||||
type ABuf = Array<number> | Buffer | Uint8Array;
|
||||
type ABuf = Array<number> | Uint8Array | Buffer;
|
||||
type CRC32TableType = Array<number> | Int32Array;
|
||||
*/
|
||||
/* see perf/crc32table.js */
|
||||
/*global Int32Array */
|
||||
function signed_crc_table()/*:CRC32TableType*/ {
|
||||
var c = 0, table/*:Array<number>*/ = new Array(256);
|
||||
@ -51,72 +50,73 @@ function signed_crc_table()/*:CRC32TableType*/ {
|
||||
return typeof Int32Array !== 'undefined' ? new Int32Array(table) : table;
|
||||
}
|
||||
|
||||
var T0 = signed_crc_table();
|
||||
function slice_by_16_tables(T) {
|
||||
var c = 0, v = 0, n = 0, table/*:Array<number>*/ = typeof Int32Array !== 'undefined' ? new Int32Array(4096) : new Array(4096) ;
|
||||
|
||||
for(n = 0; n != 256; ++n) table[n] = T[n];
|
||||
for(n = 0; n != 256; ++n) {
|
||||
v = T[n];
|
||||
for(c = 256 + n; c < 4096; c += 256) v = table[c] = (v >>> 8) ^ T[v & 0xFF];
|
||||
}
|
||||
var out = [];
|
||||
for(n = 1; n != 16; ++n) out[n - 1] = typeof Int32Array !== 'undefined' ? table.subarray(n * 256, n * 256 + 256) : table.slice(n * 256, n * 256 + 256);
|
||||
return out;
|
||||
}
|
||||
var TT = slice_by_16_tables(T0);
|
||||
var T1 = TT[0], T2 = TT[1], T3 = TT[2], T4 = TT[3], T5 = TT[4];
|
||||
var T6 = TT[5], T7 = TT[6], T8 = TT[7], T9 = TT[8], Ta = TT[9];
|
||||
var Tb = TT[10], Tc = TT[11], Td = TT[12], Te = TT[13], Tf = TT[14];
|
||||
var T = signed_crc_table();
|
||||
/*# charCodeAt is the best approach for binary strings */
|
||||
function crc32_bstr(bstr/*:string*/, seed/*:?CRC32Type*/)/*:CRC32Type*/ {
|
||||
var C = seed/*:: ? 0 : 0 */ ^ -1;
|
||||
for(var i = 0, L = bstr.length; i < L;) C = (C>>>8) ^ T0[(C^bstr.charCodeAt(i++))&0xFF];
|
||||
return ~C;
|
||||
var C = seed/*:: ? 0 : 0 */ ^ -1, L = bstr.length - 1;
|
||||
for(var i = 0; i < L;) {
|
||||
C = (C>>>8) ^ T[(C^bstr.charCodeAt(i++))&0xFF];
|
||||
C = (C>>>8) ^ T[(C^bstr.charCodeAt(i++))&0xFF];
|
||||
}
|
||||
if(i === L) C = (C>>>8) ^ T[(C ^ bstr.charCodeAt(i))&0xFF];
|
||||
return C ^ -1;
|
||||
}
|
||||
|
||||
function crc32_buf(B/*:ABuf*/, seed/*:?CRC32Type*/)/*:CRC32Type*/ {
|
||||
var C = seed/*:: ? 0 : 0 */ ^ -1, L = B.length - 15, i = 0;
|
||||
for(; i < L;) C =
|
||||
Tf[B[i++] ^ (C & 255)] ^
|
||||
Te[B[i++] ^ ((C >> 8) & 255)] ^
|
||||
Td[B[i++] ^ ((C >> 16) & 255)] ^
|
||||
Tc[B[i++] ^ (C >>> 24)] ^
|
||||
Tb[B[i++]] ^ Ta[B[i++]] ^ T9[B[i++]] ^ T8[B[i++]] ^
|
||||
T7[B[i++]] ^ T6[B[i++]] ^ T5[B[i++]] ^ T4[B[i++]] ^
|
||||
T3[B[i++]] ^ T2[B[i++]] ^ T1[B[i++]] ^ T0[B[i++]];
|
||||
L += 15;
|
||||
while(i < L) C = (C>>>8) ^ T0[(C^B[i++])&0xFF];
|
||||
return ~C;
|
||||
function crc32_buf(buf/*:ABuf*/, seed/*:?CRC32Type*/)/*:CRC32Type*/ {
|
||||
if(buf.length > 10000) return crc32_buf_8(buf, seed);
|
||||
var C = seed/*:: ? 0 : 0 */ ^ -1, L = buf.length - 3;
|
||||
for(var i = 0; i < L;) {
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
}
|
||||
while(i < L+3) C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
return C ^ -1;
|
||||
}
|
||||
|
||||
function crc32_buf_8(buf/*:ABuf*/, seed/*:?CRC32Type*/)/*:CRC32Type*/ {
|
||||
var C = seed/*:: ? 0 : 0 */ ^ -1, L = buf.length - 7;
|
||||
for(var i = 0; i < L;) {
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
}
|
||||
while(i < L+7) C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
return C ^ -1;
|
||||
}
|
||||
|
||||
/*# much much faster to intertwine utf8 and crc */
|
||||
function crc32_str(str/*:string*/, seed/*:?CRC32Type*/)/*:CRC32Type*/ {
|
||||
var C = seed/*:: ? 0 : 0 */ ^ -1;
|
||||
for(var i = 0, L = str.length, c = 0, d = 0; i < L;) {
|
||||
for(var i = 0, L=str.length, c, d; i < L;) {
|
||||
c = str.charCodeAt(i++);
|
||||
if(c < 0x80) {
|
||||
C = (C>>>8) ^ T0[(C^c)&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ c)&0xFF];
|
||||
} else if(c < 0x800) {
|
||||
C = (C>>>8) ^ T0[(C ^ (192|((c>>6)&31)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(c&63)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (192|((c>>6)&31)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|(c&63)))&0xFF];
|
||||
} else if(c >= 0xD800 && c < 0xE000) {
|
||||
c = (c&1023)+64; d = str.charCodeAt(i++)&1023;
|
||||
C = (C>>>8) ^ T0[(C ^ (240|((c>>8)&7)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((c>>2)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((d>>6)&15)|((c&3)<<4)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(d&63)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (240|((c>>8)&7)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|((c>>2)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|((d>>6)&15)|((c&3)<<4)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|(d&63)))&0xFF];
|
||||
} else {
|
||||
C = (C>>>8) ^ T0[(C ^ (224|((c>>12)&15)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((c>>6)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(c&63)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (224|((c>>12)&15)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|((c>>6)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|(c&63)))&0xFF];
|
||||
}
|
||||
}
|
||||
return ~C;
|
||||
return C ^ -1;
|
||||
}
|
||||
CRC32.table = T0;
|
||||
// $FlowIgnore
|
||||
CRC32.table = T;
|
||||
CRC32.bstr = crc32_bstr;
|
||||
// $FlowIgnore
|
||||
CRC32.buf = crc32_buf;
|
||||
// $FlowIgnore
|
||||
CRC32.str = crc32_str;
|
||||
}));
|
||||
|
104
crc32.js
104
crc32.js
@ -1,10 +1,9 @@
|
||||
/*! crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
|
||||
/* crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
|
||||
/* vim: set ts=2: */
|
||||
/*exported CRC32 */
|
||||
var CRC32;
|
||||
(function (factory) {
|
||||
/*jshint ignore:start */
|
||||
/*eslint-disable */
|
||||
if(typeof DO_NOT_EXPORT_CRC === 'undefined') {
|
||||
if('object' === typeof exports) {
|
||||
factory(exports);
|
||||
@ -20,10 +19,10 @@ var CRC32;
|
||||
} else {
|
||||
factory(CRC32 = {});
|
||||
}
|
||||
/*eslint-enable */
|
||||
/*jshint ignore:end */
|
||||
}(function(CRC32) {
|
||||
CRC32.version = '1.2.3';
|
||||
CRC32.version = '1.1.1';
|
||||
/* see perf/crc32table.js */
|
||||
/*global Int32Array */
|
||||
function signed_crc_table() {
|
||||
var c = 0, table = new Array(256);
|
||||
@ -44,72 +43,71 @@ function signed_crc_table() {
|
||||
return typeof Int32Array !== 'undefined' ? new Int32Array(table) : table;
|
||||
}
|
||||
|
||||
var T0 = signed_crc_table();
|
||||
function slice_by_16_tables(T) {
|
||||
var c = 0, v = 0, n = 0, table = typeof Int32Array !== 'undefined' ? new Int32Array(4096) : new Array(4096) ;
|
||||
|
||||
for(n = 0; n != 256; ++n) table[n] = T[n];
|
||||
for(n = 0; n != 256; ++n) {
|
||||
v = T[n];
|
||||
for(c = 256 + n; c < 4096; c += 256) v = table[c] = (v >>> 8) ^ T[v & 0xFF];
|
||||
}
|
||||
var out = [];
|
||||
for(n = 1; n != 16; ++n) out[n - 1] = typeof Int32Array !== 'undefined' ? table.subarray(n * 256, n * 256 + 256) : table.slice(n * 256, n * 256 + 256);
|
||||
return out;
|
||||
}
|
||||
var TT = slice_by_16_tables(T0);
|
||||
var T1 = TT[0], T2 = TT[1], T3 = TT[2], T4 = TT[3], T5 = TT[4];
|
||||
var T6 = TT[5], T7 = TT[6], T8 = TT[7], T9 = TT[8], Ta = TT[9];
|
||||
var Tb = TT[10], Tc = TT[11], Td = TT[12], Te = TT[13], Tf = TT[14];
|
||||
var T = signed_crc_table();
|
||||
function crc32_bstr(bstr, seed) {
|
||||
var C = seed ^ -1;
|
||||
for(var i = 0, L = bstr.length; i < L;) C = (C>>>8) ^ T0[(C^bstr.charCodeAt(i++))&0xFF];
|
||||
return ~C;
|
||||
var C = seed ^ -1, L = bstr.length - 1;
|
||||
for(var i = 0; i < L;) {
|
||||
C = (C>>>8) ^ T[(C^bstr.charCodeAt(i++))&0xFF];
|
||||
C = (C>>>8) ^ T[(C^bstr.charCodeAt(i++))&0xFF];
|
||||
}
|
||||
if(i === L) C = (C>>>8) ^ T[(C ^ bstr.charCodeAt(i))&0xFF];
|
||||
return C ^ -1;
|
||||
}
|
||||
|
||||
function crc32_buf(B, seed) {
|
||||
var C = seed ^ -1, L = B.length - 15, i = 0;
|
||||
for(; i < L;) C =
|
||||
Tf[B[i++] ^ (C & 255)] ^
|
||||
Te[B[i++] ^ ((C >> 8) & 255)] ^
|
||||
Td[B[i++] ^ ((C >> 16) & 255)] ^
|
||||
Tc[B[i++] ^ (C >>> 24)] ^
|
||||
Tb[B[i++]] ^ Ta[B[i++]] ^ T9[B[i++]] ^ T8[B[i++]] ^
|
||||
T7[B[i++]] ^ T6[B[i++]] ^ T5[B[i++]] ^ T4[B[i++]] ^
|
||||
T3[B[i++]] ^ T2[B[i++]] ^ T1[B[i++]] ^ T0[B[i++]];
|
||||
L += 15;
|
||||
while(i < L) C = (C>>>8) ^ T0[(C^B[i++])&0xFF];
|
||||
return ~C;
|
||||
function crc32_buf(buf, seed) {
|
||||
if(buf.length > 10000) return crc32_buf_8(buf, seed);
|
||||
var C = seed ^ -1, L = buf.length - 3;
|
||||
for(var i = 0; i < L;) {
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
}
|
||||
while(i < L+3) C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
return C ^ -1;
|
||||
}
|
||||
|
||||
function crc32_buf_8(buf, seed) {
|
||||
var C = seed ^ -1, L = buf.length - 7;
|
||||
for(var i = 0; i < L;) {
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
}
|
||||
while(i < L+7) C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
return C ^ -1;
|
||||
}
|
||||
|
||||
function crc32_str(str, seed) {
|
||||
var C = seed ^ -1;
|
||||
for(var i = 0, L = str.length, c = 0, d = 0; i < L;) {
|
||||
for(var i = 0, L=str.length, c, d; i < L;) {
|
||||
c = str.charCodeAt(i++);
|
||||
if(c < 0x80) {
|
||||
C = (C>>>8) ^ T0[(C^c)&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ c)&0xFF];
|
||||
} else if(c < 0x800) {
|
||||
C = (C>>>8) ^ T0[(C ^ (192|((c>>6)&31)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(c&63)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (192|((c>>6)&31)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|(c&63)))&0xFF];
|
||||
} else if(c >= 0xD800 && c < 0xE000) {
|
||||
c = (c&1023)+64; d = str.charCodeAt(i++)&1023;
|
||||
C = (C>>>8) ^ T0[(C ^ (240|((c>>8)&7)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((c>>2)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((d>>6)&15)|((c&3)<<4)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(d&63)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (240|((c>>8)&7)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|((c>>2)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|((d>>6)&15)|((c&3)<<4)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|(d&63)))&0xFF];
|
||||
} else {
|
||||
C = (C>>>8) ^ T0[(C ^ (224|((c>>12)&15)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((c>>6)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(c&63)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (224|((c>>12)&15)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|((c>>6)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|(c&63)))&0xFF];
|
||||
}
|
||||
}
|
||||
return ~C;
|
||||
return C ^ -1;
|
||||
}
|
||||
CRC32.table = T0;
|
||||
// $FlowIgnore
|
||||
CRC32.table = T;
|
||||
CRC32.bstr = crc32_bstr;
|
||||
// $FlowIgnore
|
||||
CRC32.buf = crc32_buf;
|
||||
// $FlowIgnore
|
||||
CRC32.str = crc32_str;
|
||||
}));
|
||||
|
95
crc32.mjs
95
crc32.mjs
@ -1,95 +0,0 @@
|
||||
/*! crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
|
||||
/* vim: set ts=2: */
|
||||
var CRC32 = {};
|
||||
CRC32.version = '1.2.3';
|
||||
/*::
|
||||
type CRC32Type = number;
|
||||
type ABuf = Array<number> | Buffer | Uint8Array;
|
||||
type CRC32TableType = Array<number> | Int32Array;
|
||||
*/
|
||||
/*global Int32Array */
|
||||
function signed_crc_table()/*:CRC32TableType*/ {
|
||||
var c = 0, table/*:Array<number>*/ = new Array(256);
|
||||
|
||||
for(var n =0; n != 256; ++n){
|
||||
c = n;
|
||||
c = ((c&1) ? (-306674912 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-306674912 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-306674912 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-306674912 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-306674912 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-306674912 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-306674912 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-306674912 ^ (c >>> 1)) : (c >>> 1));
|
||||
table[n] = c;
|
||||
}
|
||||
|
||||
return typeof Int32Array !== 'undefined' ? new Int32Array(table) : table;
|
||||
}
|
||||
|
||||
var T0 = signed_crc_table();
|
||||
function slice_by_16_tables(T) {
|
||||
var c = 0, v = 0, n = 0, table/*:Array<number>*/ = typeof Int32Array !== 'undefined' ? new Int32Array(4096) : new Array(4096) ;
|
||||
|
||||
for(n = 0; n != 256; ++n) table[n] = T[n];
|
||||
for(n = 0; n != 256; ++n) {
|
||||
v = T[n];
|
||||
for(c = 256 + n; c < 4096; c += 256) v = table[c] = (v >>> 8) ^ T[v & 0xFF];
|
||||
}
|
||||
var out = [];
|
||||
for(n = 1; n != 16; ++n) out[n - 1] = typeof Int32Array !== 'undefined' ? table.subarray(n * 256, n * 256 + 256) : table.slice(n * 256, n * 256 + 256);
|
||||
return out;
|
||||
}
|
||||
var TT = slice_by_16_tables(T0);
|
||||
var T1 = TT[0], T2 = TT[1], T3 = TT[2], T4 = TT[3], T5 = TT[4];
|
||||
var T6 = TT[5], T7 = TT[6], T8 = TT[7], T9 = TT[8], Ta = TT[9];
|
||||
var Tb = TT[10], Tc = TT[11], Td = TT[12], Te = TT[13], Tf = TT[14];
|
||||
function crc32_bstr(bstr/*:string*/, seed/*:?CRC32Type*/)/*:CRC32Type*/ {
|
||||
var C = seed/*:: ? 0 : 0 */ ^ -1;
|
||||
for(var i = 0, L = bstr.length; i < L;) C = (C>>>8) ^ T0[(C^bstr.charCodeAt(i++))&0xFF];
|
||||
return ~C;
|
||||
}
|
||||
|
||||
function crc32_buf(B/*:ABuf*/, seed/*:?CRC32Type*/)/*:CRC32Type*/ {
|
||||
var C = seed/*:: ? 0 : 0 */ ^ -1, L = B.length - 15, i = 0;
|
||||
for(; i < L;) C =
|
||||
Tf[B[i++] ^ (C & 255)] ^
|
||||
Te[B[i++] ^ ((C >> 8) & 255)] ^
|
||||
Td[B[i++] ^ ((C >> 16) & 255)] ^
|
||||
Tc[B[i++] ^ (C >>> 24)] ^
|
||||
Tb[B[i++]] ^ Ta[B[i++]] ^ T9[B[i++]] ^ T8[B[i++]] ^
|
||||
T7[B[i++]] ^ T6[B[i++]] ^ T5[B[i++]] ^ T4[B[i++]] ^
|
||||
T3[B[i++]] ^ T2[B[i++]] ^ T1[B[i++]] ^ T0[B[i++]];
|
||||
L += 15;
|
||||
while(i < L) C = (C>>>8) ^ T0[(C^B[i++])&0xFF];
|
||||
return ~C;
|
||||
}
|
||||
|
||||
function crc32_str(str/*:string*/, seed/*:?CRC32Type*/)/*:CRC32Type*/ {
|
||||
var C = seed/*:: ? 0 : 0 */ ^ -1;
|
||||
for(var i = 0, L = str.length, c = 0, d = 0; i < L;) {
|
||||
c = str.charCodeAt(i++);
|
||||
if(c < 0x80) {
|
||||
C = (C>>>8) ^ T0[(C^c)&0xFF];
|
||||
} else if(c < 0x800) {
|
||||
C = (C>>>8) ^ T0[(C ^ (192|((c>>6)&31)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(c&63)))&0xFF];
|
||||
} else if(c >= 0xD800 && c < 0xE000) {
|
||||
c = (c&1023)+64; d = str.charCodeAt(i++)&1023;
|
||||
C = (C>>>8) ^ T0[(C ^ (240|((c>>8)&7)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((c>>2)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((d>>6)&15)|((c&3)<<4)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(d&63)))&0xFF];
|
||||
} else {
|
||||
C = (C>>>8) ^ T0[(C ^ (224|((c>>12)&15)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((c>>6)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(c&63)))&0xFF];
|
||||
}
|
||||
}
|
||||
return ~C;
|
||||
}
|
||||
export const version = CRC32.version;
|
||||
export const table = T0;
|
||||
export const bstr = crc32_bstr;
|
||||
export const buf = crc32_buf;
|
||||
export const str = crc32_str;
|
122
crc32c.flow.js
122
crc32c.flow.js
@ -1,122 +0,0 @@
|
||||
/*! crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
|
||||
/* vim: set ts=2: */
|
||||
/*exported CRC32C */
|
||||
/*:: declare var DO_NOT_EXPORT_CRC:?boolean; */
|
||||
/*:: declare function define(cb:()=>any):void; */
|
||||
var CRC32C/*:CRC32Module*/;
|
||||
(function (factory/*:(a:any)=>void*/)/*:void*/ {
|
||||
/*jshint ignore:start */
|
||||
/*eslint-disable */
|
||||
if(typeof DO_NOT_EXPORT_CRC === 'undefined') {
|
||||
if('object' === typeof exports) {
|
||||
factory(exports);
|
||||
} else if ('function' === typeof define && define.amd) {
|
||||
define(function () {
|
||||
var module/*:CRC32Module*/ = /*::(*/{}/*:: :any)*/;
|
||||
factory(module);
|
||||
return module;
|
||||
});
|
||||
} else {
|
||||
factory(CRC32C = /*::(*/{}/*:: :any)*/);
|
||||
}
|
||||
} else {
|
||||
factory(CRC32C = /*::(*/{}/*:: :any)*/);
|
||||
}
|
||||
/*eslint-enable */
|
||||
/*jshint ignore:end */
|
||||
}(function(CRC32C/*:CRC32Module*/) {
|
||||
CRC32C.version = '1.2.3';
|
||||
/*::
|
||||
type CRC32Type = number;
|
||||
type ABuf = Array<number> | Buffer | Uint8Array;
|
||||
type CRC32TableType = Array<number> | Int32Array;
|
||||
*/
|
||||
/*global Int32Array */
|
||||
function signed_crc_table()/*:CRC32TableType*/ {
|
||||
var c = 0, table/*:Array<number>*/ = new Array(256);
|
||||
|
||||
for(var n =0; n != 256; ++n){
|
||||
c = n;
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
table[n] = c;
|
||||
}
|
||||
|
||||
return typeof Int32Array !== 'undefined' ? new Int32Array(table) : table;
|
||||
}
|
||||
|
||||
var T0 = signed_crc_table();
|
||||
function slice_by_16_tables(T) {
|
||||
var c = 0, v = 0, n = 0, table/*:Array<number>*/ = typeof Int32Array !== 'undefined' ? new Int32Array(4096) : new Array(4096) ;
|
||||
|
||||
for(n = 0; n != 256; ++n) table[n] = T[n];
|
||||
for(n = 0; n != 256; ++n) {
|
||||
v = T[n];
|
||||
for(c = 256 + n; c < 4096; c += 256) v = table[c] = (v >>> 8) ^ T[v & 0xFF];
|
||||
}
|
||||
var out = [];
|
||||
for(n = 1; n != 16; ++n) out[n - 1] = typeof Int32Array !== 'undefined' ? table.subarray(n * 256, n * 256 + 256) : table.slice(n * 256, n * 256 + 256);
|
||||
return out;
|
||||
}
|
||||
var TT = slice_by_16_tables(T0);
|
||||
var T1 = TT[0], T2 = TT[1], T3 = TT[2], T4 = TT[3], T5 = TT[4];
|
||||
var T6 = TT[5], T7 = TT[6], T8 = TT[7], T9 = TT[8], Ta = TT[9];
|
||||
var Tb = TT[10], Tc = TT[11], Td = TT[12], Te = TT[13], Tf = TT[14];
|
||||
function crc32_bstr(bstr/*:string*/, seed/*:?CRC32Type*/)/*:CRC32Type*/ {
|
||||
var C = seed/*:: ? 0 : 0 */ ^ -1;
|
||||
for(var i = 0, L = bstr.length; i < L;) C = (C>>>8) ^ T0[(C^bstr.charCodeAt(i++))&0xFF];
|
||||
return ~C;
|
||||
}
|
||||
|
||||
function crc32_buf(B/*:ABuf*/, seed/*:?CRC32Type*/)/*:CRC32Type*/ {
|
||||
var C = seed/*:: ? 0 : 0 */ ^ -1, L = B.length - 15, i = 0;
|
||||
for(; i < L;) C =
|
||||
Tf[B[i++] ^ (C & 255)] ^
|
||||
Te[B[i++] ^ ((C >> 8) & 255)] ^
|
||||
Td[B[i++] ^ ((C >> 16) & 255)] ^
|
||||
Tc[B[i++] ^ (C >>> 24)] ^
|
||||
Tb[B[i++]] ^ Ta[B[i++]] ^ T9[B[i++]] ^ T8[B[i++]] ^
|
||||
T7[B[i++]] ^ T6[B[i++]] ^ T5[B[i++]] ^ T4[B[i++]] ^
|
||||
T3[B[i++]] ^ T2[B[i++]] ^ T1[B[i++]] ^ T0[B[i++]];
|
||||
L += 15;
|
||||
while(i < L) C = (C>>>8) ^ T0[(C^B[i++])&0xFF];
|
||||
return ~C;
|
||||
}
|
||||
|
||||
function crc32_str(str/*:string*/, seed/*:?CRC32Type*/)/*:CRC32Type*/ {
|
||||
var C = seed/*:: ? 0 : 0 */ ^ -1;
|
||||
for(var i = 0, L = str.length, c = 0, d = 0; i < L;) {
|
||||
c = str.charCodeAt(i++);
|
||||
if(c < 0x80) {
|
||||
C = (C>>>8) ^ T0[(C^c)&0xFF];
|
||||
} else if(c < 0x800) {
|
||||
C = (C>>>8) ^ T0[(C ^ (192|((c>>6)&31)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(c&63)))&0xFF];
|
||||
} else if(c >= 0xD800 && c < 0xE000) {
|
||||
c = (c&1023)+64; d = str.charCodeAt(i++)&1023;
|
||||
C = (C>>>8) ^ T0[(C ^ (240|((c>>8)&7)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((c>>2)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((d>>6)&15)|((c&3)<<4)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(d&63)))&0xFF];
|
||||
} else {
|
||||
C = (C>>>8) ^ T0[(C ^ (224|((c>>12)&15)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((c>>6)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(c&63)))&0xFF];
|
||||
}
|
||||
}
|
||||
return ~C;
|
||||
}
|
||||
CRC32C.table = T0;
|
||||
// $FlowIgnore
|
||||
CRC32C.bstr = crc32_bstr;
|
||||
// $FlowIgnore
|
||||
CRC32C.buf = crc32_buf;
|
||||
// $FlowIgnore
|
||||
CRC32C.str = crc32_str;
|
||||
}));
|
115
crc32c.js
115
crc32c.js
@ -1,115 +0,0 @@
|
||||
/*! crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
|
||||
/* vim: set ts=2: */
|
||||
/*exported CRC32C */
|
||||
var CRC32C;
|
||||
(function (factory) {
|
||||
/*jshint ignore:start */
|
||||
/*eslint-disable */
|
||||
if(typeof DO_NOT_EXPORT_CRC === 'undefined') {
|
||||
if('object' === typeof exports) {
|
||||
factory(exports);
|
||||
} else if ('function' === typeof define && define.amd) {
|
||||
define(function () {
|
||||
var module = {};
|
||||
factory(module);
|
||||
return module;
|
||||
});
|
||||
} else {
|
||||
factory(CRC32C = {});
|
||||
}
|
||||
} else {
|
||||
factory(CRC32C = {});
|
||||
}
|
||||
/*eslint-enable */
|
||||
/*jshint ignore:end */
|
||||
}(function(CRC32C) {
|
||||
CRC32C.version = '1.2.3';
|
||||
/*global Int32Array */
|
||||
function signed_crc_table() {
|
||||
var c = 0, table = new Array(256);
|
||||
|
||||
for(var n =0; n != 256; ++n){
|
||||
c = n;
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
table[n] = c;
|
||||
}
|
||||
|
||||
return typeof Int32Array !== 'undefined' ? new Int32Array(table) : table;
|
||||
}
|
||||
|
||||
var T0 = signed_crc_table();
|
||||
function slice_by_16_tables(T) {
|
||||
var c = 0, v = 0, n = 0, table = typeof Int32Array !== 'undefined' ? new Int32Array(4096) : new Array(4096) ;
|
||||
|
||||
for(n = 0; n != 256; ++n) table[n] = T[n];
|
||||
for(n = 0; n != 256; ++n) {
|
||||
v = T[n];
|
||||
for(c = 256 + n; c < 4096; c += 256) v = table[c] = (v >>> 8) ^ T[v & 0xFF];
|
||||
}
|
||||
var out = [];
|
||||
for(n = 1; n != 16; ++n) out[n - 1] = typeof Int32Array !== 'undefined' ? table.subarray(n * 256, n * 256 + 256) : table.slice(n * 256, n * 256 + 256);
|
||||
return out;
|
||||
}
|
||||
var TT = slice_by_16_tables(T0);
|
||||
var T1 = TT[0], T2 = TT[1], T3 = TT[2], T4 = TT[3], T5 = TT[4];
|
||||
var T6 = TT[5], T7 = TT[6], T8 = TT[7], T9 = TT[8], Ta = TT[9];
|
||||
var Tb = TT[10], Tc = TT[11], Td = TT[12], Te = TT[13], Tf = TT[14];
|
||||
function crc32_bstr(bstr, seed) {
|
||||
var C = seed ^ -1;
|
||||
for(var i = 0, L = bstr.length; i < L;) C = (C>>>8) ^ T0[(C^bstr.charCodeAt(i++))&0xFF];
|
||||
return ~C;
|
||||
}
|
||||
|
||||
function crc32_buf(B, seed) {
|
||||
var C = seed ^ -1, L = B.length - 15, i = 0;
|
||||
for(; i < L;) C =
|
||||
Tf[B[i++] ^ (C & 255)] ^
|
||||
Te[B[i++] ^ ((C >> 8) & 255)] ^
|
||||
Td[B[i++] ^ ((C >> 16) & 255)] ^
|
||||
Tc[B[i++] ^ (C >>> 24)] ^
|
||||
Tb[B[i++]] ^ Ta[B[i++]] ^ T9[B[i++]] ^ T8[B[i++]] ^
|
||||
T7[B[i++]] ^ T6[B[i++]] ^ T5[B[i++]] ^ T4[B[i++]] ^
|
||||
T3[B[i++]] ^ T2[B[i++]] ^ T1[B[i++]] ^ T0[B[i++]];
|
||||
L += 15;
|
||||
while(i < L) C = (C>>>8) ^ T0[(C^B[i++])&0xFF];
|
||||
return ~C;
|
||||
}
|
||||
|
||||
function crc32_str(str, seed) {
|
||||
var C = seed ^ -1;
|
||||
for(var i = 0, L = str.length, c = 0, d = 0; i < L;) {
|
||||
c = str.charCodeAt(i++);
|
||||
if(c < 0x80) {
|
||||
C = (C>>>8) ^ T0[(C^c)&0xFF];
|
||||
} else if(c < 0x800) {
|
||||
C = (C>>>8) ^ T0[(C ^ (192|((c>>6)&31)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(c&63)))&0xFF];
|
||||
} else if(c >= 0xD800 && c < 0xE000) {
|
||||
c = (c&1023)+64; d = str.charCodeAt(i++)&1023;
|
||||
C = (C>>>8) ^ T0[(C ^ (240|((c>>8)&7)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((c>>2)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((d>>6)&15)|((c&3)<<4)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(d&63)))&0xFF];
|
||||
} else {
|
||||
C = (C>>>8) ^ T0[(C ^ (224|((c>>12)&15)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((c>>6)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(c&63)))&0xFF];
|
||||
}
|
||||
}
|
||||
return ~C;
|
||||
}
|
||||
CRC32C.table = T0;
|
||||
// $FlowIgnore
|
||||
CRC32C.bstr = crc32_bstr;
|
||||
// $FlowIgnore
|
||||
CRC32C.buf = crc32_buf;
|
||||
// $FlowIgnore
|
||||
CRC32C.str = crc32_str;
|
||||
}));
|
95
crc32c.mjs
95
crc32c.mjs
@ -1,95 +0,0 @@
|
||||
/*! crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
|
||||
/* vim: set ts=2: */
|
||||
var CRC32C = {};
|
||||
CRC32C.version = '1.2.3';
|
||||
/*::
|
||||
type CRC32Type = number;
|
||||
type ABuf = Array<number> | Buffer | Uint8Array;
|
||||
type CRC32TableType = Array<number> | Int32Array;
|
||||
*/
|
||||
/*global Int32Array */
|
||||
function signed_crc_table()/*:CRC32TableType*/ {
|
||||
var c = 0, table/*:Array<number>*/ = new Array(256);
|
||||
|
||||
for(var n =0; n != 256; ++n){
|
||||
c = n;
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
c = ((c&1) ? (-2097792136 ^ (c >>> 1)) : (c >>> 1));
|
||||
table[n] = c;
|
||||
}
|
||||
|
||||
return typeof Int32Array !== 'undefined' ? new Int32Array(table) : table;
|
||||
}
|
||||
|
||||
var T0 = signed_crc_table();
|
||||
function slice_by_16_tables(T) {
|
||||
var c = 0, v = 0, n = 0, table/*:Array<number>*/ = typeof Int32Array !== 'undefined' ? new Int32Array(4096) : new Array(4096) ;
|
||||
|
||||
for(n = 0; n != 256; ++n) table[n] = T[n];
|
||||
for(n = 0; n != 256; ++n) {
|
||||
v = T[n];
|
||||
for(c = 256 + n; c < 4096; c += 256) v = table[c] = (v >>> 8) ^ T[v & 0xFF];
|
||||
}
|
||||
var out = [];
|
||||
for(n = 1; n != 16; ++n) out[n - 1] = typeof Int32Array !== 'undefined' ? table.subarray(n * 256, n * 256 + 256) : table.slice(n * 256, n * 256 + 256);
|
||||
return out;
|
||||
}
|
||||
var TT = slice_by_16_tables(T0);
|
||||
var T1 = TT[0], T2 = TT[1], T3 = TT[2], T4 = TT[3], T5 = TT[4];
|
||||
var T6 = TT[5], T7 = TT[6], T8 = TT[7], T9 = TT[8], Ta = TT[9];
|
||||
var Tb = TT[10], Tc = TT[11], Td = TT[12], Te = TT[13], Tf = TT[14];
|
||||
function crc32_bstr(bstr/*:string*/, seed/*:?CRC32Type*/)/*:CRC32Type*/ {
|
||||
var C = seed/*:: ? 0 : 0 */ ^ -1;
|
||||
for(var i = 0, L = bstr.length; i < L;) C = (C>>>8) ^ T0[(C^bstr.charCodeAt(i++))&0xFF];
|
||||
return ~C;
|
||||
}
|
||||
|
||||
function crc32_buf(B/*:ABuf*/, seed/*:?CRC32Type*/)/*:CRC32Type*/ {
|
||||
var C = seed/*:: ? 0 : 0 */ ^ -1, L = B.length - 15, i = 0;
|
||||
for(; i < L;) C =
|
||||
Tf[B[i++] ^ (C & 255)] ^
|
||||
Te[B[i++] ^ ((C >> 8) & 255)] ^
|
||||
Td[B[i++] ^ ((C >> 16) & 255)] ^
|
||||
Tc[B[i++] ^ (C >>> 24)] ^
|
||||
Tb[B[i++]] ^ Ta[B[i++]] ^ T9[B[i++]] ^ T8[B[i++]] ^
|
||||
T7[B[i++]] ^ T6[B[i++]] ^ T5[B[i++]] ^ T4[B[i++]] ^
|
||||
T3[B[i++]] ^ T2[B[i++]] ^ T1[B[i++]] ^ T0[B[i++]];
|
||||
L += 15;
|
||||
while(i < L) C = (C>>>8) ^ T0[(C^B[i++])&0xFF];
|
||||
return ~C;
|
||||
}
|
||||
|
||||
function crc32_str(str/*:string*/, seed/*:?CRC32Type*/)/*:CRC32Type*/ {
|
||||
var C = seed/*:: ? 0 : 0 */ ^ -1;
|
||||
for(var i = 0, L = str.length, c = 0, d = 0; i < L;) {
|
||||
c = str.charCodeAt(i++);
|
||||
if(c < 0x80) {
|
||||
C = (C>>>8) ^ T0[(C^c)&0xFF];
|
||||
} else if(c < 0x800) {
|
||||
C = (C>>>8) ^ T0[(C ^ (192|((c>>6)&31)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(c&63)))&0xFF];
|
||||
} else if(c >= 0xD800 && c < 0xE000) {
|
||||
c = (c&1023)+64; d = str.charCodeAt(i++)&1023;
|
||||
C = (C>>>8) ^ T0[(C ^ (240|((c>>8)&7)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((c>>2)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((d>>6)&15)|((c&3)<<4)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(d&63)))&0xFF];
|
||||
} else {
|
||||
C = (C>>>8) ^ T0[(C ^ (224|((c>>12)&15)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((c>>6)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(c&63)))&0xFF];
|
||||
}
|
||||
}
|
||||
return ~C;
|
||||
}
|
||||
export const version = CRC32C.version;
|
||||
export const table = T0;
|
||||
export const bstr = crc32_bstr;
|
||||
export const buf = crc32_buf;
|
||||
export const str = crc32_str;
|
104
ctest/crc32.js
104
ctest/crc32.js
@ -1,10 +1,9 @@
|
||||
/*! crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
|
||||
/* crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
|
||||
/* vim: set ts=2: */
|
||||
/*exported CRC32 */
|
||||
var CRC32;
|
||||
(function (factory) {
|
||||
/*jshint ignore:start */
|
||||
/*eslint-disable */
|
||||
if(typeof DO_NOT_EXPORT_CRC === 'undefined') {
|
||||
if('object' === typeof exports) {
|
||||
factory(exports);
|
||||
@ -20,10 +19,10 @@ var CRC32;
|
||||
} else {
|
||||
factory(CRC32 = {});
|
||||
}
|
||||
/*eslint-enable */
|
||||
/*jshint ignore:end */
|
||||
}(function(CRC32) {
|
||||
CRC32.version = '1.2.2';
|
||||
CRC32.version = '1.1.1';
|
||||
/* see perf/crc32table.js */
|
||||
/*global Int32Array */
|
||||
function signed_crc_table() {
|
||||
var c = 0, table = new Array(256);
|
||||
@ -44,72 +43,71 @@ function signed_crc_table() {
|
||||
return typeof Int32Array !== 'undefined' ? new Int32Array(table) : table;
|
||||
}
|
||||
|
||||
var T0 = signed_crc_table();
|
||||
function slice_by_16_tables(T) {
|
||||
var c = 0, v = 0, n = 0, table = typeof Int32Array !== 'undefined' ? new Int32Array(4096) : new Array(4096) ;
|
||||
|
||||
for(n = 0; n != 256; ++n) table[n] = T[n];
|
||||
for(n = 0; n != 256; ++n) {
|
||||
v = T[n];
|
||||
for(c = 256 + n; c < 4096; c += 256) v = table[c] = (v >>> 8) ^ T[v & 0xFF];
|
||||
}
|
||||
var out = [];
|
||||
for(n = 1; n != 16; ++n) out[n - 1] = typeof Int32Array !== 'undefined' ? table.subarray(n * 256, n * 256 + 256) : table.slice(n * 256, n * 256 + 256);
|
||||
return out;
|
||||
}
|
||||
var TT = slice_by_16_tables(T0);
|
||||
var T1 = TT[0], T2 = TT[1], T3 = TT[2], T4 = TT[3], T5 = TT[4];
|
||||
var T6 = TT[5], T7 = TT[6], T8 = TT[7], T9 = TT[8], Ta = TT[9];
|
||||
var Tb = TT[10], Tc = TT[11], Td = TT[12], Te = TT[13], Tf = TT[14];
|
||||
var T = signed_crc_table();
|
||||
function crc32_bstr(bstr, seed) {
|
||||
var C = seed ^ -1;
|
||||
for(var i = 0, L = bstr.length; i < L;) C = (C>>>8) ^ T0[(C^bstr.charCodeAt(i++))&0xFF];
|
||||
return ~C;
|
||||
var C = seed ^ -1, L = bstr.length - 1;
|
||||
for(var i = 0; i < L;) {
|
||||
C = (C>>>8) ^ T[(C^bstr.charCodeAt(i++))&0xFF];
|
||||
C = (C>>>8) ^ T[(C^bstr.charCodeAt(i++))&0xFF];
|
||||
}
|
||||
if(i === L) C = (C>>>8) ^ T[(C ^ bstr.charCodeAt(i))&0xFF];
|
||||
return C ^ -1;
|
||||
}
|
||||
|
||||
function crc32_buf(B, seed) {
|
||||
var C = seed ^ -1, L = B.length - 15, i = 0;
|
||||
for(; i < L;) C =
|
||||
Tf[B[i++] ^ (C & 255)] ^
|
||||
Te[B[i++] ^ ((C >> 8) & 255)] ^
|
||||
Td[B[i++] ^ ((C >> 16) & 255)] ^
|
||||
Tc[B[i++] ^ (C >>> 24)] ^
|
||||
Tb[B[i++]] ^ Ta[B[i++]] ^ T9[B[i++]] ^ T8[B[i++]] ^
|
||||
T7[B[i++]] ^ T6[B[i++]] ^ T5[B[i++]] ^ T4[B[i++]] ^
|
||||
T3[B[i++]] ^ T2[B[i++]] ^ T1[B[i++]] ^ T0[B[i++]];
|
||||
L += 15;
|
||||
while(i < L) C = (C>>>8) ^ T0[(C^B[i++])&0xFF];
|
||||
return ~C;
|
||||
function crc32_buf(buf, seed) {
|
||||
if(buf.length > 10000) return crc32_buf_8(buf, seed);
|
||||
var C = seed ^ -1, L = buf.length - 3;
|
||||
for(var i = 0; i < L;) {
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
}
|
||||
while(i < L+3) C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
return C ^ -1;
|
||||
}
|
||||
|
||||
function crc32_buf_8(buf, seed) {
|
||||
var C = seed ^ -1, L = buf.length - 7;
|
||||
for(var i = 0; i < L;) {
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
}
|
||||
while(i < L+7) C = (C>>>8) ^ T[(C^buf[i++])&0xFF];
|
||||
return C ^ -1;
|
||||
}
|
||||
|
||||
function crc32_str(str, seed) {
|
||||
var C = seed ^ -1;
|
||||
for(var i = 0, L = str.length, c = 0, d = 0; i < L;) {
|
||||
for(var i = 0, L=str.length, c, d; i < L;) {
|
||||
c = str.charCodeAt(i++);
|
||||
if(c < 0x80) {
|
||||
C = (C>>>8) ^ T0[(C^c)&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ c)&0xFF];
|
||||
} else if(c < 0x800) {
|
||||
C = (C>>>8) ^ T0[(C ^ (192|((c>>6)&31)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(c&63)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (192|((c>>6)&31)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|(c&63)))&0xFF];
|
||||
} else if(c >= 0xD800 && c < 0xE000) {
|
||||
c = (c&1023)+64; d = str.charCodeAt(i++)&1023;
|
||||
C = (C>>>8) ^ T0[(C ^ (240|((c>>8)&7)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((c>>2)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((d>>6)&15)|((c&3)<<4)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(d&63)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (240|((c>>8)&7)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|((c>>2)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|((d>>6)&15)|((c&3)<<4)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|(d&63)))&0xFF];
|
||||
} else {
|
||||
C = (C>>>8) ^ T0[(C ^ (224|((c>>12)&15)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|((c>>6)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T0[(C ^ (128|(c&63)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (224|((c>>12)&15)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|((c>>6)&63)))&0xFF];
|
||||
C = (C>>>8) ^ T[(C ^ (128|(c&63)))&0xFF];
|
||||
}
|
||||
}
|
||||
return ~C;
|
||||
return C ^ -1;
|
||||
}
|
||||
CRC32.table = T0;
|
||||
// $FlowIgnore
|
||||
CRC32.table = T;
|
||||
CRC32.bstr = crc32_bstr;
|
||||
// $FlowIgnore
|
||||
CRC32.buf = crc32_buf;
|
||||
// $FlowIgnore
|
||||
CRC32.str = crc32_str;
|
||||
}));
|
||||
|
@ -22,11 +22,14 @@ var bits = [
|
||||
];
|
||||
if(typeof module !== "undefined") module.exports = bits;
|
||||
/*::
|
||||
type ArrayLike = any;
|
||||
type Stringifier = {(d:ArrayLike):string};
|
||||
|
||||
declare class CRC32Module {
|
||||
table:CRC32TableType;
|
||||
bstr(s:string, seed?:CRC32Type):CRC32Type;
|
||||
buf(b:ABuf, seed?:CRC32Type):CRC32Type;
|
||||
str(s:string, seed?:CRC32Type):CRC32Type;
|
||||
bstr(s:string, seed:?CRC32Type):CRC32Type;
|
||||
buf(b:ABuf, seed:?CRC32Type):CRC32Type;
|
||||
str(s:string, seed:?CRC32Type):CRC32Type;
|
||||
version:string;
|
||||
};
|
||||
*/
|
||||
@ -35,8 +38,8 @@ type _CB = {(data:Buffer):void;};
|
||||
declare module 'concat-stream' {declare function exports(f:_CB):stream$Duplex;};
|
||||
declare module 'exit-on-epipe' {};
|
||||
|
||||
declare module 'crc-32' { declare module.exports:CRC32Module; };
|
||||
declare module '../' { declare module.exports:CRC32Module; };
|
||||
declare module 'crc-32' { declare var exports:CRC32Module; };
|
||||
declare module '../' { declare var exports:CRC32Module; };
|
||||
|
||||
declare module 'printj' {
|
||||
declare function sprintf(fmt:string, ...args:any):string;
|
||||
|
@ -20,14 +20,6 @@ function msieversion()
|
||||
return parseInt (ua.substring (msie+5, ua.indexOf (".", msie )));
|
||||
}
|
||||
|
||||
var Buffer_from = function(){};
|
||||
|
||||
if(typeof Buffer !== 'undefined') {
|
||||
var nbfs = !Buffer.from;
|
||||
if(!nbfs) try { Buffer.from("foo", "utf8"); } catch(e) { nbfs = true; }
|
||||
Buffer_from = nbfs ? function(buf, enc) { return (enc) ? new Buffer(buf, enc) : new Buffer(buf); } : Buffer.from.bind(Buffer);
|
||||
}
|
||||
|
||||
describe('crc32 table', function() {
|
||||
it('should match fixed table', function() {
|
||||
var overflow = 0;
|
||||
@ -48,7 +40,7 @@ describe('crc32 bits', function() {
|
||||
it(msg, function() {
|
||||
if(i[2] === 1) assert.equal(X.bstr(i[0]), L);
|
||||
assert.equal(X.str(i[0]), i[1]|0);
|
||||
if(typeof Buffer !== 'undefined') assert.equal(X.buf(Buffer_from(i[0])), L);
|
||||
if(typeof Buffer !== 'undefined') assert.equal(X.buf(new Buffer(i[0])), L);
|
||||
var len = i[0].length, step = len < 20000 ? 1 : len < 50000 ? Math.ceil(len / 20000) : Math.ceil(len / 2000);
|
||||
for(var x = 0; x < len; x += step) {
|
||||
if(i[0].charCodeAt(x) >= 0xD800 && i[0].charCodeAt(x) < 0xE000) continue;
|
||||
@ -59,7 +51,7 @@ describe('crc32 bits', function() {
|
||||
var strcrc = X.str(i[0].substr(x), X.str(i[0].substr(0, x)));
|
||||
assert.equal(strcrc, i[1]|0);
|
||||
if(typeof Buffer !== 'undefined') {
|
||||
var buf = Buffer_from(i[0]);
|
||||
var buf = new Buffer(i[0]);
|
||||
var bufcrc = X.buf(buf.slice(x), X.buf(buf.slice(0, x)));
|
||||
assert.equal(bufcrc, L);
|
||||
}
|
||||
@ -82,9 +74,9 @@ if(typeof require !== 'undefined') describe("unicode", function() {
|
||||
var cc = corpus[ucidx], dd = X.str(c);
|
||||
assert.equal(dd, cc, ":" + ucidx + ":" + c + ":" + cc + ":" + dd);
|
||||
if(typeof Buffer !== 'undefined') {
|
||||
var ee = X.buf(Buffer_from(c, "utf8"));
|
||||
var ee = X.buf(new Buffer(c, "utf8"));
|
||||
assert.equal(ee, cc, ":" + ucidx + ":" + c + ":" + cc + ":" + ee);
|
||||
var ff = X.bstr(String.fromCharCode.apply(null, Buffer_from(c, "utf8")));
|
||||
var ff = X.bstr(String.fromCharCode.apply(null, new Buffer(c, "utf8")));
|
||||
assert.equal(ff, cc, ":" + ucidx + ":" + c + ":" + cc + ":" + ff);
|
||||
}
|
||||
};
|
||||
|
@ -1,6 +1,5 @@
|
||||
/*jshint browser:true */
|
||||
/*eslint-env browser */
|
||||
/*global CRC32, console, Uint8Array */
|
||||
/*global CRC32, console */
|
||||
/*:: declare var CRC32: CRC32Module; */
|
||||
var X = CRC32;
|
||||
|
||||
@ -18,10 +17,6 @@ function is_defined(val/*:any*/, keys/*:Array<string>*/)/*:boolean*/ {
|
||||
}
|
||||
|
||||
/*# buffer to string; IE String.fromCharCode.apply limit, manual chunk */
|
||||
/*::
|
||||
type ArrayLike = any;
|
||||
type Stringifier = {(d:ArrayLike):string};
|
||||
*/
|
||||
function make_chunk_buf_to_str(BType/*:function*/)/*:Stringifier*/ {
|
||||
return function(data/*:any*/)/*:string*/ {
|
||||
var o = "", l = 0, w = 10240, L = data.byteLength/w;
|
||||
@ -71,7 +66,7 @@ var readcb = function(e/*:Event*/) {
|
||||
console_log("onload", new Date(), rABS, false);
|
||||
var target/*:FileReader*/ = (e.target/*:any*/);
|
||||
var data = target.result;
|
||||
var val/*:CRC32Type*/ = rABS ? X.bstr(/*::(*/data/*:: :any)*/) : X.str(bstrify(data));
|
||||
var val/*:CRC32Type*/ = rABS ? X.bstr((data/*:any*/)) : X.str(bstrify(data));
|
||||
process_value(val);
|
||||
};
|
||||
|
||||
|
@ -1,6 +1,5 @@
|
||||
/*jshint browser:true */
|
||||
/*eslint-env browser */
|
||||
/*global CRC32, console, Uint8Array */
|
||||
/*global CRC32, console */
|
||||
var X = CRC32;
|
||||
|
||||
function console_log() { if(typeof console !== 'undefined') console.log.apply(console, [].slice.call(arguments)); }
|
||||
@ -58,7 +57,7 @@ var readcb = function(e) {
|
||||
console_log("onload", new Date(), rABS, false);
|
||||
var target = (e.target);
|
||||
var data = target.result;
|
||||
var val = rABS ? X.bstr(data) : X.str(bstrify(data));
|
||||
var val = rABS ? X.bstr((data)) : X.str(bstrify(data));
|
||||
process_value(val);
|
||||
};
|
||||
|
||||
|
@ -36,7 +36,7 @@ a { text-decoration: none }
|
||||
<textarea id="rawdata">... or paste text here</textarea>
|
||||
<input type="button" id="dotext" value="Click here to process the text"/><br />
|
||||
<b>Advanced Demo Options:</b>
|
||||
Use readAsBinaryString: (when available) <input type="checkbox" name="userabs" checked><br />
|
||||
Use readAsBinaryString: (when available) <input type="checkbox" name="userabs" checked>
|
||||
</pre>
|
||||
<pre id="out"></pre>
|
||||
<br />
|
||||
@ -45,7 +45,6 @@ Use readAsBinaryString: (when available) <input type="checkbox" name="userabs" c
|
||||
<script src="crc32.js"></script>
|
||||
<script src="demo/browser.flow.js"></script>
|
||||
<script type="text/javascript">
|
||||
/*eslint-env browser */
|
||||
var _gaq = _gaq || [];
|
||||
_gaq.push(['_setAccount', 'UA-36810333-1']);
|
||||
_gaq.push(['_trackPageview']);
|
||||
|
@ -1,3 +0,0 @@
|
||||
/*! crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
|
||||
/* vim: set ts=2: */
|
||||
var CRC32 = {};
|
@ -1,5 +0,0 @@
|
||||
export const version = CRC32.version;
|
||||
export const table = T0;
|
||||
export const bstr = crc32_bstr;
|
||||
export const buf = crc32_buf;
|
||||
export const str = crc32_str;
|
@ -1,9 +1,12 @@
|
||||
/*::
|
||||
type ArrayLike = any;
|
||||
type Stringifier = {(d:ArrayLike):string};
|
||||
|
||||
declare class CRC32Module {
|
||||
table:CRC32TableType;
|
||||
bstr(s:string, seed?:CRC32Type):CRC32Type;
|
||||
buf(b:ABuf, seed?:CRC32Type):CRC32Type;
|
||||
str(s:string, seed?:CRC32Type):CRC32Type;
|
||||
bstr(s:string, seed:?CRC32Type):CRC32Type;
|
||||
buf(b:ABuf, seed:?CRC32Type):CRC32Type;
|
||||
str(s:string, seed:?CRC32Type):CRC32Type;
|
||||
version:string;
|
||||
};
|
||||
*/
|
||||
|
@ -3,8 +3,8 @@ type _CB = {(data:Buffer):void;};
|
||||
declare module 'concat-stream' {declare function exports(f:_CB):stream$Duplex;};
|
||||
declare module 'exit-on-epipe' {};
|
||||
|
||||
declare module 'crc-32' { declare module.exports:CRC32Module; };
|
||||
declare module '../' { declare module.exports:CRC32Module; };
|
||||
declare module 'crc-32' { declare var exports:CRC32Module; };
|
||||
declare module '../' { declare var exports:CRC32Module; };
|
||||
|
||||
declare module 'printj' {
|
||||
declare function sprintf(fmt:string, ...args:any):string;
|
||||
|
@ -1,6 +0,0 @@
|
||||
misc/00_header.js
|
||||
bits/01_version.js
|
||||
bits/10_types.js
|
||||
bits/20_crctable.js
|
||||
bits/40_crc.js
|
||||
misc/99_footer.js
|
48
package.json
48
package.json
@ -1,50 +1,30 @@
|
||||
{
|
||||
"name": "crc-32",
|
||||
"version": "1.2.3",
|
||||
"version": "1.1.1",
|
||||
"author": "sheetjs",
|
||||
"description": "Pure-JS CRC-32",
|
||||
"keywords": [ "crc", "crc32", "checksum" ],
|
||||
"keywords": [ "crc32", "checksum", "crc" ],
|
||||
"bin": {
|
||||
"crc32": "bin/crc32.njs"
|
||||
},
|
||||
"main": "crc32.js",
|
||||
"module": "crc32.mjs",
|
||||
"types": "types/index.d.ts",
|
||||
"typesVersions": { "*": { "*": ["types/index.d.ts" ] } },
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./crc32.mjs",
|
||||
"require": "./crc32.js"
|
||||
},
|
||||
"./crc32c": {
|
||||
"import": "./crc32c.mjs",
|
||||
"require": "./crc32c.js"
|
||||
},
|
||||
"./crc32.mjs": {
|
||||
"import": "./crc32.mjs"
|
||||
},
|
||||
"./crc32c.mjs": {
|
||||
"import": "./crc32c.mjs"
|
||||
}
|
||||
"crc32": "./bin/crc32.njs"
|
||||
},
|
||||
"main": "./crc32",
|
||||
"types": "types",
|
||||
"dependencies": {
|
||||
"printj":"~1.1.0",
|
||||
"exit-on-epipe":"~1.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"printj": "~1.3.1",
|
||||
"exit-on-epipe": "~1.0.1",
|
||||
"mocha": "~2.5.3",
|
||||
"mocha":"~2.5.3",
|
||||
"blanket": "~1.2.3",
|
||||
"codepage": "~1.10.0",
|
||||
"@sheetjs/uglify-js": "~2.7.3",
|
||||
"@types/node": "^8.0.7",
|
||||
"codepage":"~1.10.0",
|
||||
"@sheetjs/uglify-js":"~2.7.3",
|
||||
"@types/node":"^8.0.7",
|
||||
"dtslint": "^0.1.2",
|
||||
"typescript": "2.2.0"
|
||||
},
|
||||
"repository": { "type": "git", "url": "git://github.com/SheetJS/js-crc32.git" },
|
||||
"repository": { "type":"git", "url":"git://github.com/SheetJS/js-crc32.git" },
|
||||
"scripts": {
|
||||
"test": "make test",
|
||||
"build": "make",
|
||||
"lint": "make fullint",
|
||||
"dtslint": "dtslint types"
|
||||
},
|
||||
"config": {
|
||||
@ -52,8 +32,8 @@
|
||||
"pattern": "crc32.js"
|
||||
}
|
||||
},
|
||||
"homepage": "https://sheetjs.com/",
|
||||
"files": ["crc32.js", "crc32c.js", "crc32.mjs", "crc32c.mjs", "bin/crc32.njs", "LICENSE", "README.md", "types/index.d.ts", "types/*.json"],
|
||||
"homepage": "http://sheetjs.com/opensource",
|
||||
"files": ["crc32.js", "bin/crc32.njs", "LICENSE", "README.md"],
|
||||
"bugs": { "url": "https://github.com/SheetJS/js-crc32/issues" },
|
||||
"license": "Apache-2.0",
|
||||
"engines": { "node": ">=0.8" }
|
||||
|
@ -1 +0,0 @@
|
||||
*.tgz
|
@ -1,9 +0,0 @@
|
||||
#!/usr/bin/env node
|
||||
/* crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
|
||||
/* eslint-env node */
|
||||
/* vim: set ts=2 ft=javascript: */
|
||||
/*jshint node:true */
|
||||
|
||||
var cli = require('../');
|
||||
|
||||
cli();
|
@ -1,94 +0,0 @@
|
||||
/* index.js (C) 2020-present SheetJS -- http://sheetjs.com */
|
||||
/* eslint-env node */
|
||||
/* vim: set ts=2 ft=javascript: */
|
||||
/*jshint node:true */
|
||||
|
||||
/*:CRC32Module*/
|
||||
var X = require('crc-32');
|
||||
|
||||
function help()/*:number*/ {
|
||||
[
|
||||
"usage: crc32 [options] [filename]",
|
||||
"",
|
||||
"Options:",
|
||||
" -h, --help output usage information",
|
||||
" -V, --version output the version number",
|
||||
" -S, --seed=<n> use integer seed as starting value (rolling CRC)",
|
||||
" -H, --hex-seed=<h> use hex seed as starting value (rolling CRC)",
|
||||
" -d, --signed print result with format `%d` (default)",
|
||||
" -u, --unsigned print result with format `%u`",
|
||||
" -x, --hex print result with format `%0.8x`",
|
||||
" -X, --HEX print result with format `%0.8X`",
|
||||
" -c, --crc32c use CRC32C (Castagnoli)",
|
||||
" -F, --format=<s> use specified printf format",
|
||||
"",
|
||||
"Set filename = '-' or pipe data into crc32 to read from stdin",
|
||||
"Default output mode is signed (-d)",
|
||||
""
|
||||
].forEach(function (l) { console.log(l); });
|
||||
return 0;
|
||||
}
|
||||
|
||||
function version()/*:number*/ { console.log(X.version); return 0; }
|
||||
|
||||
var fs = require('fs');
|
||||
require('exit-on-epipe');
|
||||
|
||||
function die(msg/*:string*/, ec/*:?number*/)/*:void*/ { console.error(msg); process.exit(ec || 0); }
|
||||
|
||||
function run() {
|
||||
var args/*:Array<string>*/ = process.argv.slice(2);
|
||||
var filename/*:string*/ = "";
|
||||
var fmt/*:string*/ = "";
|
||||
var seed = 0, r = 10;
|
||||
|
||||
for(var i = 0; i < args.length; ++i) {
|
||||
var arg = args[i];
|
||||
if(arg.charCodeAt(0) != 45) { if(filename === "") filename = arg; continue; }
|
||||
var m = arg.indexOf("=") == -1 ? arg : arg.substr(0, arg.indexOf("="));
|
||||
switch(m) {
|
||||
case "-": filename = "-"; break;
|
||||
|
||||
case "--help": case "-h": process.exit(help()); break;
|
||||
case "--version": case "-V": process.exit(version()); break;
|
||||
|
||||
case "--crc32c": case "-c": try { X = require('../crc32c'); } catch(e) { X = require('crc-32/crc32c'); } break;
|
||||
|
||||
case "--signed": case "-d": fmt = "%d"; break;
|
||||
case "--unsigned": case "-u": fmt = "%u"; break;
|
||||
case "--hex": case "-x": fmt = "%0.8x"; break;
|
||||
case "--HEX": case "-X": fmt = "%0.8X"; break;
|
||||
case "--format": case "-F":
|
||||
fmt = ((m!=arg) ? arg.substr(m.length+1) : args[++i])||""; break;
|
||||
|
||||
case "--hex-seed": case "-H": r = 16;
|
||||
/* falls through */
|
||||
case "--seed": case "-S":
|
||||
seed=parseInt((m!=arg) ? arg.substr(m.length+1) : args[++i], r)||0; break;
|
||||
|
||||
default: die("crc32: unrecognized option `" + arg + "'", 22);
|
||||
}
|
||||
}
|
||||
|
||||
if(!process.stdin.isTTY) filename = filename || "-";
|
||||
if(filename.length===0) die("crc32: must specify a filename ('-' for stdin)",1);
|
||||
|
||||
var crc32 = seed;
|
||||
// $FlowIgnore -- Writable is callable but type sig disagrees
|
||||
var writable = require('stream').Writable();
|
||||
writable._write = function(chunk, e, cb) { crc32 = X.buf(chunk, crc32); cb(); };
|
||||
writable._writev = function(chunks, cb) {
|
||||
chunks.forEach(function(c) { crc32 = X.buf(c.chunk, crc32);});
|
||||
cb();
|
||||
};
|
||||
writable.on('finish', function() {
|
||||
console.log(fmt === "" ? crc32 : require("printj").sprintf(fmt, crc32));
|
||||
});
|
||||
|
||||
if(filename === "-") process.stdin.pipe(writable);
|
||||
else if(fs.existsSync(filename)) fs.createReadStream(filename).pipe(writable);
|
||||
else die("crc32: " + filename + ": No such file or directory", 2);
|
||||
}
|
||||
|
||||
module.exports = run;
|
||||
|
@ -1,16 +0,0 @@
|
||||
{
|
||||
"name": "crc32-cli",
|
||||
"version": "1.0.1",
|
||||
"author": "sheetjs",
|
||||
"description": "Command-line interface for crc32",
|
||||
"bin": {
|
||||
"crc32-cli": "bin/crc32.njs"
|
||||
},
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"crc-32": "^1.2.1",
|
||||
"exit-on-epipe": "~1.0.1"
|
||||
},
|
||||
"license": "Apache-2.0"
|
||||
}
|
||||
|
16
test.js
16
test.js
@ -20,14 +20,6 @@ function msieversion()
|
||||
return parseInt (ua.substring (msie+5, ua.indexOf (".", msie )));
|
||||
}
|
||||
|
||||
var Buffer_from = function(){};
|
||||
|
||||
if(typeof Buffer !== 'undefined') {
|
||||
var nbfs = !Buffer.from;
|
||||
if(!nbfs) try { Buffer.from("foo", "utf8"); } catch(e) { nbfs = true; }
|
||||
Buffer_from = nbfs ? function(buf, enc) { return (enc) ? new Buffer(buf, enc) : new Buffer(buf); } : Buffer.from.bind(Buffer);
|
||||
}
|
||||
|
||||
describe('crc32 table', function() {
|
||||
it('should match fixed table', function() {
|
||||
var overflow = 0;
|
||||
@ -48,7 +40,7 @@ describe('crc32 bits', function() {
|
||||
it(msg, function() {
|
||||
if(i[2] === 1) assert.equal(X.bstr(i[0]), L);
|
||||
assert.equal(X.str(i[0]), i[1]|0);
|
||||
if(typeof Buffer !== 'undefined') assert.equal(X.buf(Buffer_from(i[0])), L);
|
||||
if(typeof Buffer !== 'undefined') assert.equal(X.buf(new Buffer(i[0])), L);
|
||||
var len = i[0].length, step = len < 20000 ? 1 : len < 50000 ? Math.ceil(len / 20000) : Math.ceil(len / 2000);
|
||||
for(var x = 0; x < len; x += step) {
|
||||
if(i[0].charCodeAt(x) >= 0xD800 && i[0].charCodeAt(x) < 0xE000) continue;
|
||||
@ -59,7 +51,7 @@ describe('crc32 bits', function() {
|
||||
var strcrc = X.str(i[0].substr(x), X.str(i[0].substr(0, x)));
|
||||
assert.equal(strcrc, i[1]|0);
|
||||
if(typeof Buffer !== 'undefined') {
|
||||
var buf = Buffer_from(i[0]);
|
||||
var buf = new Buffer(i[0]);
|
||||
var bufcrc = X.buf(buf.slice(x), X.buf(buf.slice(0, x)));
|
||||
assert.equal(bufcrc, L);
|
||||
}
|
||||
@ -82,9 +74,9 @@ if(typeof require !== 'undefined') describe("unicode", function() {
|
||||
var cc = corpus[ucidx], dd = X.str(c);
|
||||
assert.equal(dd, cc, ":" + ucidx + ":" + c + ":" + cc + ":" + dd);
|
||||
if(typeof Buffer !== 'undefined') {
|
||||
var ee = X.buf(Buffer_from(c, "utf8"));
|
||||
var ee = X.buf(new Buffer(c, "utf8"));
|
||||
assert.equal(ee, cc, ":" + ucidx + ":" + c + ":" + cc + ":" + ee);
|
||||
var ff = X.bstr(String.fromCharCode.apply(null, Buffer_from(c, "utf8")));
|
||||
var ff = X.bstr(String.fromCharCode.apply(null, new Buffer(c, "utf8")));
|
||||
assert.equal(ff, cc, ":" + ucidx + ":" + c + ":" + cc + ":" + ff);
|
||||
}
|
||||
};
|
||||
|
993590
test_files/baseline.C.txt
993590
test_files/baseline.C.txt
File diff suppressed because it is too large
Load Diff
@ -1,65 +0,0 @@
|
||||
-771559539
|
||||
-1526341861
|
||||
1007455905
|
||||
1259060791
|
||||
-714134636
|
||||
-1570235646
|
||||
996231864
|
||||
1281784366
|
||||
-589731905
|
||||
-1411492055
|
||||
852952723
|
||||
1171273221
|
||||
-608918618
|
||||
-1397517520
|
||||
901431946
|
||||
1119744540
|
||||
-810156055
|
||||
-1196241025
|
||||
565944005
|
||||
1455205971
|
||||
-925352976
|
||||
-1075901594
|
||||
651582172
|
||||
1372678730
|
||||
-1049724965
|
||||
-1234614451
|
||||
794826487
|
||||
1483155041
|
||||
-972835902
|
||||
-1325104300
|
||||
671994606
|
||||
1594548856
|
||||
314082080
|
||||
1437410323
|
||||
581571717
|
||||
-1146927809
|
||||
-861637207
|
||||
1388371978
|
||||
633852060
|
||||
-1127317210
|
||||
-875974224
|
||||
1534503969
|
||||
745643191
|
||||
-1250374387
|
||||
-1031799397
|
||||
1545300024
|
||||
723277998
|
||||
-1307244268
|
||||
-988661374
|
||||
1209676919
|
||||
1058866401
|
||||
-1508616869
|
||||
-787257907
|
||||
1333260398
|
||||
946913528
|
||||
-1585868478
|
||||
-696344108
|
||||
1187101765
|
||||
835095763
|
||||
-1462772375
|
||||
-540480001
|
||||
1101822044
|
||||
917194954
|
||||
-1348331152
|
||||
-660264474
|
@ -1,150 +0,0 @@
|
||||
275937382
|
||||
-444539192
|
||||
-1836585378
|
||||
193904612
|
||||
2089389938
|
||||
-487777583
|
||||
-1779815865
|
||||
-243170681
|
||||
-1381244462
|
||||
290653789
|
||||
-211390133
|
||||
349052735
|
||||
-1968534884
|
||||
-38946294
|
||||
1688529840
|
||||
329505574
|
||||
1487343457
|
||||
799031287
|
||||
-1312511404
|
||||
-960259390
|
||||
1607125880
|
||||
-1586899138
|
||||
-697374808
|
||||
1332196882
|
||||
945849988
|
||||
-1509682393
|
||||
1208644107
|
||||
1057833629
|
||||
-1347264756
|
||||
-659198054
|
||||
1102855712
|
||||
918228662
|
||||
-1461740779
|
||||
-539448445
|
||||
1188166201
|
||||
836160175
|
||||
17864673
|
||||
-1944062000
|
||||
353805930
|
||||
1645319932
|
||||
-409588092
|
||||
1447162232
|
||||
558285294
|
||||
-1202745260
|
||||
-817323838
|
||||
1182100512
|
||||
-669910653
|
||||
-1357461227
|
||||
908040367
|
||||
1092134969
|
||||
-777538136
|
||||
-1499429570
|
||||
1068094596
|
||||
-841805624
|
||||
-2118516586
|
||||
-155373568
|
||||
1874092474
|
||||
414404908
|
||||
-2032679793
|
||||
-237964263
|
||||
1759094179
|
||||
534680885
|
||||
-1889433436
|
||||
-127485902
|
||||
1634724232
|
||||
375970078
|
||||
-2012459843
|
||||
-16024533
|
||||
1711418769
|
||||
285547783
|
||||
-1676865294
|
||||
-351657884
|
||||
1912828382
|
||||
84164936
|
||||
-1688152853
|
||||
-328735619
|
||||
1970189767
|
||||
40469841
|
||||
-1831429952
|
||||
-439244714
|
||||
2094594540
|
||||
199215482
|
||||
-1782883111
|
||||
-490967985
|
||||
2075475445
|
||||
212995427
|
||||
-1546710753
|
||||
-725081719
|
||||
1304522803
|
||||
986071205
|
||||
-1532832506
|
||||
-744102512
|
||||
1252832298
|
||||
1034650812
|
||||
-1391158995
|
||||
-636245573
|
||||
1125840897
|
||||
874367127
|
||||
-1434886860
|
||||
-578916958
|
||||
1148664856
|
||||
862981262
|
||||
-1099431557
|
||||
-914411027
|
||||
1349935191
|
||||
661737665
|
||||
-1189755550
|
||||
-837618188
|
||||
1461429326
|
||||
538744024
|
||||
-1331459767
|
||||
-945505825
|
||||
1588455525
|
||||
699062515
|
||||
-1211216560
|
||||
-1060536890
|
||||
1505766524
|
||||
784801002
|
||||
-1734266409
|
||||
-274333375
|
||||
1991201019
|
||||
27811949
|
||||
-1613957682
|
||||
-389298856
|
||||
1908577506
|
||||
113615988
|
||||
-1770341915
|
||||
-511866509
|
||||
2020923593
|
||||
259254367
|
||||
-1860731396
|
||||
-435139222
|
||||
2132352208
|
||||
136195142
|
||||
-2062147149
|
||||
-233762523
|
||||
1796751519
|
||||
471822345
|
||||
-2105809494
|
||||
-176368324
|
||||
1819640966
|
||||
460502032
|
||||
-1949455999
|
||||
-53831401
|
||||
1707329709
|
||||
314898491
|
||||
-1935643240
|
||||
-72917746
|
||||
1655573684
|
||||
363412514
|
853859
test_files/baseline.Cn.txt
853859
test_files/baseline.Cn.txt
File diff suppressed because it is too large
Load Diff
137468
test_files/baseline.Co.txt
137468
test_files/baseline.Co.txt
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
109591
test_files/baseline.L.txt
109591
test_files/baseline.L.txt
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,248 +0,0 @@
|
||||
-1146249545
|
||||
-861229535
|
||||
1436811163
|
||||
581226253
|
||||
-1128244562
|
||||
-876123592
|
||||
1389247362
|
||||
633932564
|
||||
-1250552187
|
||||
-1032772077
|
||||
1534621609
|
||||
746538815
|
||||
-1306799460
|
||||
-987962870
|
||||
1544926128
|
||||
722633510
|
||||
-2073059494
|
||||
-211243060
|
||||
1829517935
|
||||
436931321
|
||||
-1967909016
|
||||
-38590466
|
||||
1689941572
|
||||
331171538
|
||||
-1915104399
|
||||
-86055961
|
||||
1675080285
|
||||
349209291
|
||||
-1713860802
|
||||
-287326296
|
||||
-1090404462
|
||||
-939094268
|
||||
1359994558
|
||||
638119464
|
||||
-1200850037
|
||||
-1229458503
|
||||
1488556693
|
||||
-209597335
|
||||
339337582
|
||||
876939333
|
||||
-56889463
|
||||
-2052499124
|
||||
480250102
|
||||
-1955218246
|
||||
-59601876
|
||||
1825411517
|
||||
-394342655
|
||||
689951402
|
||||
547987073
|
||||
968212996
|
||||
1736391254
|
||||
1430870228
|
||||
-2062002262
|
||||
-808193097
|
||||
-1798554441
|
||||
1262158253
|
||||
1862649794
|
||||
402847572
|
||||
-2129942802
|
||||
-166947208
|
||||
1751647195
|
||||
527381325
|
||||
145287162
|
||||
2142230380
|
||||
-425294122
|
||||
-1851673024
|
||||
480885685
|
||||
1806600995
|
||||
-223880551
|
||||
-2053051889
|
||||
465862572
|
||||
1824739130
|
||||
-171303296
|
||||
-2100482538
|
||||
309474183
|
||||
1702167313
|
||||
-58961237
|
||||
-1954848195
|
||||
354416542
|
||||
1645790984
|
||||
-82733390
|
||||
-1944672732
|
||||
594262616
|
||||
1416399566
|
||||
-848962700
|
||||
-1167922206
|
||||
604405313
|
||||
1392594647
|
||||
-905437331
|
||||
-1123078149
|
||||
766521962
|
||||
1521943292
|
||||
-1010937018
|
||||
-1262918704
|
||||
719189619
|
||||
1574618853
|
||||
-992766113
|
||||
-1277909047
|
||||
1054648892
|
||||
1239128746
|
||||
-791491824
|
||||
-1479148666
|
||||
967929381
|
||||
1320574643
|
||||
-675344631
|
||||
-1598537825
|
||||
805773838
|
||||
1191187096
|
||||
-569818334
|
||||
-1458670668
|
||||
929752599
|
||||
1080940161
|
||||
-647723205
|
||||
-1369196627
|
||||
403020432
|
||||
1862445574
|
||||
-166986820
|
||||
-2129867990
|
||||
526933641
|
||||
1752133151
|
||||
-244957275
|
||||
-2040459469
|
||||
383652514
|
||||
1641620020
|
||||
-120556658
|
||||
191431366
|
||||
-2111627145
|
||||
474461652
|
||||
1799390530
|
||||
-230042376
|
||||
-2058427282
|
||||
858310995
|
||||
1143994821
|
||||
-584669057
|
||||
-1440638743
|
||||
876940618
|
||||
1128414684
|
||||
-632591258
|
||||
-1387504400
|
||||
1039352161
|
||||
1257533943
|
||||
-738385843
|
||||
-1527115557
|
||||
983467384
|
||||
1301919214
|
||||
-728701868
|
||||
-1550330686
|
||||
782227767
|
||||
1503193505
|
||||
-1064191973
|
||||
-1214871411
|
||||
703733038
|
||||
1593126328
|
||||
-939754494
|
||||
-1325708140
|
||||
541348101
|
||||
1464033683
|
||||
-833998807
|
||||
-1186135873
|
||||
657036572
|
||||
1345234314
|
||||
-920128464
|
||||
-1105148762
|
||||
-874907700
|
||||
744610507
|
||||
-1398950831
|
||||
-610630457
|
||||
1116984701
|
||||
898950635
|
||||
-1410305976
|
||||
-587775778
|
||||
1174278500
|
||||
855187954
|
||||
-1572455325
|
||||
-717157131
|
||||
1279810895
|
||||
995061209
|
||||
-1523844998
|
||||
1781448066
|
||||
489262356
|
||||
-1963181736
|
||||
1062356757
|
||||
-223062001
|
||||
-754930502
|
||||
1242168576
|
||||
1024380310
|
||||
-1553311691
|
||||
-731027293
|
||||
869615012
|
||||
-739335461
|
||||
1256715105
|
||||
-2036563004
|
||||
-241454254
|
||||
1754456808
|
||||
-523078684
|
||||
-991793661
|
||||
-1276813675
|
||||
720113455
|
||||
1575698361
|
||||
-1013994982
|
||||
-1266115956
|
||||
111297405
|
||||
-1603726550
|
||||
690172315
|
||||
1579417869
|
||||
-391426155
|
||||
2014597636
|
||||
252928658
|
||||
-1776667864
|
||||
-518192194
|
||||
2138674717
|
||||
142517899
|
||||
-1854408911
|
||||
-428816473
|
||||
1421527999
|
||||
1469391074
|
||||
1750540559
|
||||
525341081
|
||||
-948619013
|
||||
-2050514793
|
||||
-275761080
|
||||
-1736898881
|
||||
1152322416
|
||||
-624189741
|
||||
-1188785745
|
||||
-836525767
|
||||
1462431875
|
||||
539869205
|
||||
-940233226
|
||||
806253562
|
||||
1191789420
|
||||
-1465037699
|
||||
-542475029
|
||||
1185099089
|
||||
832839111
|
||||
1308380209
|
||||
-744957550
|
||||
-1533023996
|
||||
1033287870
|
||||
1251051560
|
||||
-634481223
|
||||
-1389779665
|
||||
874574997
|
||||
1126679555
|
||||
-582790752
|
||||
-1438359242
|
||||
860696716
|
||||
1145700378
|
105697
test_files/baseline.Lo.txt
105697
test_files/baseline.Lo.txt
File diff suppressed because it is too large
Load Diff
@ -1,31 +0,0 @@
|
||||
1487938777
|
||||
637622372
|
||||
-1089992226
|
||||
-535985706
|
||||
-834344031
|
||||
-1186735305
|
||||
541756045
|
||||
1464711707
|
||||
-920047688
|
||||
-1104273618
|
||||
656887444
|
||||
1344306690
|
||||
-738985019
|
||||
-1527461037
|
||||
1040030441
|
||||
1257941631
|
||||
-727826468
|
||||
-1550250166
|
||||
982540016
|
||||
1301769830
|
||||
-181744791
|
||||
-2110915585
|
||||
455387717
|
||||
1814272723
|
||||
-230224016
|
||||
-2059386906
|
||||
474574428
|
||||
1800298186
|
||||
-269476076
|
||||
-802021639
|
||||
-152359339
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,383 +0,0 @@
|
||||
-394681659
|
||||
-1065674149
|
||||
-1341002028
|
||||
-954802622
|
||||
1751892542
|
||||
297237146
|
||||
-2000803040
|
||||
-4645962
|
||||
1641909781
|
||||
-1881936071
|
||||
-120266833
|
||||
-1387728687
|
||||
-632307641
|
||||
-2111337386
|
||||
-182403904
|
||||
1516085436
|
||||
-1002883809
|
||||
1418078350
|
||||
-846235340
|
||||
1407970455
|
||||
-644995717
|
||||
1154280905
|
||||
480551384
|
||||
1805881678
|
||||
-992047822
|
||||
1996132171
|
||||
781370202
|
||||
1502999500
|
||||
-152506448
|
||||
-1892395244
|
||||
1631204920
|
||||
-10574949
|
||||
1470568539
|
||||
547367117
|
||||
2026398940
|
||||
-1598928842
|
||||
1054268821
|
||||
-1368801276
|
||||
929075646
|
||||
-1459354595
|
||||
593612273
|
||||
1258161758
|
||||
1039742664
|
||||
-444392926
|
||||
2089438104
|
||||
2078773121
|
||||
216055575
|
||||
-1671454074
|
||||
1917961130
|
||||
89584444
|
||||
-1691195745
|
||||
290959219
|
||||
685315260
|
||||
-1311750906
|
||||
-958958192
|
||||
834807293
|
||||
-1463061433
|
||||
-540261167
|
||||
1101582706
|
||||
-2082068604
|
||||
-186575086
|
||||
-1400284413
|
||||
1962113001
|
||||
66340735
|
||||
-1694689595
|
||||
-302373293
|
||||
1939780592
|
||||
-359144886
|
||||
2049507291
|
||||
-1809408265
|
||||
-484331935
|
||||
422482690
|
||||
-2144877896
|
||||
-709066750
|
||||
-1564757868
|
||||
-86770555
|
||||
-1915433965
|
||||
581554287
|
||||
-875924134
|
||||
-1127397940
|
||||
745691229
|
||||
-1032046223
|
||||
-1250227737
|
||||
723491908
|
||||
-1585818200
|
||||
-410328448
|
||||
-1869753834
|
||||
-2145341572
|
||||
220766857
|
||||
2049937951
|
||||
66267835
|
||||
1962154541
|
||||
-302167145
|
||||
-1694860543
|
||||
77524642
|
||||
1939463732
|
||||
-359624818
|
||||
-1650999528
|
||||
-666311827
|
||||
-1353722885
|
||||
839546509
|
||||
1158497819
|
||||
1544976218
|
||||
770081198
|
||||
-1283320819
|
||||
-796624684
|
||||
-1453801360
|
||||
810652106
|
||||
-1372257175
|
||||
1821768958
|
||||
462605416
|
||||
1294010443
|
||||
975583453
|
||||
-1539134082
|
||||
1028390084
|
||||
-1376460459
|
||||
-621555261
|
||||
1140490361
|
||||
889041135
|
||||
-1432804020
|
||||
-576842278
|
||||
711281622
|
||||
-1274945931
|
||||
755535823
|
||||
-1112042914
|
||||
-894393656
|
||||
1404695410
|
||||
616481764
|
||||
-1160096185
|
||||
601032701
|
||||
1309598486
|
||||
956945280
|
||||
-1486010845
|
||||
-1700670808
|
||||
-1803920742
|
||||
-478320116
|
||||
1275098736
|
||||
990332646
|
||||
-1576134820
|
||||
-720820278
|
||||
1265480297
|
||||
1013613311
|
||||
-765140013
|
||||
1121713730
|
||||
-757733318
|
||||
1286700441
|
||||
1001803023
|
||||
-1564533579
|
||||
838861092
|
||||
-1425452898
|
||||
-603037688
|
||||
1449896420
|
||||
560765298
|
||||
-815597474
|
||||
1359375869
|
||||
637623659
|
||||
-1089991471
|
||||
-938525625
|
||||
1487938006
|
||||
-1200849276
|
||||
560279358
|
||||
-1463745554
|
||||
1187996354
|
||||
-1988757669
|
||||
1736152695
|
||||
-115407916
|
||||
-2134656144
|
||||
432728778
|
||||
1858984540
|
||||
-473573463
|
||||
-1799166145
|
||||
231454341
|
||||
-1090070695
|
||||
-287778973
|
||||
157350500
|
||||
-536649903
|
||||
2030702315
|
||||
235748989
|
||||
-1586486783
|
||||
-696839529
|
||||
947483579
|
||||
-1507989992
|
||||
1683165422
|
||||
-969645668
|
||||
1481700415
|
||||
794281129
|
||||
1374074900
|
||||
911013352
|
||||
1224575317
|
||||
1073396163
|
||||
-1583469472
|
||||
1334857036
|
||||
1536233731
|
||||
748036501
|
||||
1646242508
|
||||
353933914
|
||||
-1944990752
|
||||
-82379914
|
||||
1806296807
|
||||
481220209
|
||||
-2052618293
|
||||
-224348323
|
||||
2141764264
|
||||
145721918
|
||||
962071936
|
||||
-1108980642
|
||||
-891192120
|
||||
1577623887
|
||||
688886233
|
||||
-1158888737
|
||||
612915068
|
||||
-1115617594
|
||||
717082927
|
||||
1572528569
|
||||
185148826
|
||||
2081297676
|
||||
-452508490
|
||||
-1845464032
|
||||
46098865
|
||||
1975015719
|
||||
-323942243
|
||||
-1682556917
|
||||
97693096
|
||||
1926602046
|
||||
-337851260
|
||||
-1663304686
|
||||
866574446
|
||||
1151455480
|
||||
-576159422
|
||||
-1431326252
|
||||
-1773848928
|
||||
-515766730
|
||||
-673692271
|
||||
1868947614
|
||||
409128968
|
||||
-1998729831
|
||||
-2425585
|
||||
381245498
|
||||
-1884288640
|
||||
-122210026
|
||||
1472865642
|
||||
2072184060
|
||||
-158660343
|
||||
1870813363
|
||||
-236532464
|
||||
-1208454055
|
||||
2017649088
|
||||
-1860090635
|
||||
1472434982
|
||||
665413545
|
||||
1353602879
|
||||
-1379094971
|
||||
1031069200
|
||||
-1559213133
|
||||
1293822623
|
||||
974723593
|
||||
-576637170
|
||||
1151887028
|
||||
-1379155071
|
||||
-1916272617
|
||||
1673945403
|
||||
1374684089
|
||||
-1725476295
|
||||
-299867473
|
||||
1999188757
|
||||
121882522
|
||||
-1745036789
|
||||
-612587024
|
||||
899466941
|
||||
1682097799
|
||||
-98151644
|
||||
-1927191630
|
||||
1844742828
|
||||
-1031170352
|
||||
2009720572
|
||||
13555306
|
||||
-1714976816
|
||||
-1916347489
|
||||
-87954679
|
||||
329403964
|
||||
1431501076
|
||||
576047490
|
||||
-1151559624
|
||||
-814535113
|
||||
-1200349535
|
||||
-535014736
|
||||
-1759813082
|
||||
1331777228
|
||||
-697819274
|
||||
-1586548768
|
||||
1057733187
|
||||
-1509757959
|
||||
918419048
|
||||
-1347115054
|
||||
835727985
|
||||
1188496103
|
||||
-1145701475
|
||||
-318357570
|
||||
-1711206616
|
||||
-739950488
|
||||
-1528663810
|
||||
1038819652
|
||||
-1439041332
|
||||
1144494560
|
||||
-632091581
|
||||
-1386988331
|
||||
878538095
|
||||
-1692372717
|
||||
981567641
|
||||
-1215724180
|
||||
-1064389126
|
||||
-1185804962
|
||||
-833274424
|
||||
1465674866
|
||||
542858468
|
||||
1345431659
|
||||
688564450
|
||||
1577949300
|
||||
-955987506
|
||||
-1093111446
|
||||
549250249
|
||||
-827161115
|
||||
255694383
|
||||
-516688125
|
||||
-1774925931
|
||||
-228626603
|
||||
1355906434
|
||||
668355860
|
||||
-1179461449
|
||||
-1998618914
|
||||
299249508
|
||||
1724981234
|
||||
-122320303
|
||||
-1884112185
|
||||
381414269
|
||||
1639767019
|
||||
-251410822
|
||||
-2046494996
|
||||
520988502
|
||||
1745524672
|
||||
-160562589
|
||||
-2123812107
|
||||
408970063
|
||||
1869042649
|
||||
-654213404
|
||||
-1375318414
|
||||
923738056
|
||||
1074278238
|
||||
-563299587
|
||||
-1452570005
|
||||
811785169
|
||||
1197861703
|
||||
-673515818
|
||||
-1596078528
|
||||
970233850
|
||||
1322493804
|
||||
-793300273
|
||||
-1481637287
|
||||
1052333027
|
||||
1237214069
|
||||
-994677120
|
||||
-1280221674
|
||||
716705708
|
||||
1572814650
|
||||
-1009014119
|
||||
-1260611057
|
||||
768986037
|
||||
1523776291
|
||||
-898767182
|
||||
-1117071836
|
||||
610502558
|
||||
1399109384
|
||||
-855629141
|
||||
-1173941699
|
||||
588137351
|
||||
-1298015887
|
||||
732465355
|
||||
-1132834493
|
||||
628293881
|
||||
1383346287
|
||||
-545505894
|
||||
-1468330740
|
||||
829578422
|
@ -1,13 +0,0 @@
|
||||
297057904
|
||||
1723043558
|
||||
793815405
|
||||
-885524051
|
||||
1379837975
|
||||
624531585
|
||||
-1822444100
|
||||
2102514832
|
||||
173466630
|
||||
-1808633435
|
||||
819334843
|
||||
1204895277
|
||||
-556241001
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,550 +0,0 @@
|
||||
-186917087
|
||||
-2082672713
|
||||
450215437
|
||||
1842515611
|
||||
-206169288
|
||||
-2068763730
|
||||
498629140
|
||||
1790921346
|
||||
-100641005
|
||||
-1928894587
|
||||
-940191935
|
||||
-1326252073
|
||||
704360045
|
||||
1593614075
|
||||
-1063777448
|
||||
-1214301234
|
||||
781609588
|
||||
1502698210
|
||||
-919713933
|
||||
-1104578587
|
||||
-395002457
|
||||
-1619817167
|
||||
108715147
|
||||
1904077853
|
||||
-283543106
|
||||
-1742845656
|
||||
18290834
|
||||
1980770308
|
||||
-424725099
|
||||
-1851259645
|
||||
-1430173681
|
||||
-574195559
|
||||
1154427171
|
||||
868751797
|
||||
-1381200874
|
||||
-626279296
|
||||
1134751034
|
||||
883285420
|
||||
-1541750723
|
||||
-753012565
|
||||
-1167702077
|
||||
-849250475
|
||||
1574857412
|
||||
718887506
|
||||
-1278211096
|
||||
-992527490
|
||||
1521725149
|
||||
766811723
|
||||
-1262628879
|
||||
-1011155097
|
||||
-2008013503
|
||||
-11069993
|
||||
1877477446
|
||||
418330832
|
||||
-2115606166
|
||||
-153003524
|
||||
1753599071
|
||||
528678089
|
||||
-2037666445
|
||||
-242442779
|
||||
382929103
|
||||
1641298009
|
||||
-244636216
|
||||
-2039736994
|
||||
526730468
|
||||
1751282802
|
||||
-167321135
|
||||
-2130587321
|
||||
403210493
|
||||
1863299179
|
||||
619014733
|
||||
1407343323
|
||||
-1017297078
|
||||
-1269139492
|
||||
760424038
|
||||
1515460336
|
||||
-1003453613
|
||||
-1288195131
|
||||
708764287
|
||||
1564070633
|
||||
1925172683
|
||||
96009565
|
||||
-1794645812
|
||||
-503263142
|
||||
2064220640
|
||||
202289526
|
||||
-1838537515
|
||||
-445836221
|
||||
2086946297
|
||||
191067503
|
||||
1082765129
|
||||
932093919
|
||||
-1489927602
|
||||
-801721640
|
||||
1228923746
|
||||
1043911668
|
||||
-1604565417
|
||||
-681871679
|
||||
1314006907
|
||||
961877997
|
||||
-1798795114
|
||||
-472932352
|
||||
1936768401
|
||||
74943751
|
||||
-1652630339
|
||||
-361108437
|
||||
1948088712
|
||||
52054302
|
||||
-1710024540
|
||||
-317446094
|
||||
-1493241324
|
||||
-772160894
|
||||
1095163667
|
||||
910290821
|
||||
-1354187201
|
||||
-665874775
|
||||
1177230090
|
||||
824978332
|
||||
-1473938906
|
||||
-551400784
|
||||
-257665646
|
||||
-2019334908
|
||||
387741845
|
||||
1612400643
|
||||
-116254279
|
||||
-1911215825
|
||||
275889292
|
||||
1735822362
|
||||
-25174624
|
||||
-1988563658
|
||||
-1030605040
|
||||
-1248524410
|
||||
623516183
|
||||
1378691713
|
||||
-886801605
|
||||
-1138537555
|
||||
575135246
|
||||
1430318744
|
||||
-867582174
|
||||
-1152479308
|
||||
-1817473273
|
||||
-458440815
|
||||
2108026411
|
||||
178446013
|
||||
-1798943970
|
||||
-473859192
|
||||
2059938354
|
||||
231676580
|
||||
-1653602507
|
||||
-361285725
|
||||
-1583485563
|
||||
-694493933
|
||||
1335069865
|
||||
949271615
|
||||
-1494210148
|
||||
-772335350
|
||||
1224624304
|
||||
1073313830
|
||||
-1354340937
|
||||
-666807007
|
||||
-939176978
|
||||
-1090356360
|
||||
638266050
|
||||
1359747668
|
||||
-815230985
|
||||
-1200636063
|
||||
560393947
|
||||
1449254477
|
||||
-958479396
|
||||
-1311116470
|
||||
-1740551761
|
||||
-280594119
|
||||
1984899203
|
||||
21501973
|
||||
-1624470090
|
||||
-399786720
|
||||
1898114202
|
||||
103144460
|
||||
-1768242787
|
||||
-509742837
|
||||
-1361376760
|
||||
-639878498
|
||||
1087728420
|
||||
936532914
|
||||
-1447637487
|
||||
-558760313
|
||||
1203285821
|
||||
817864619
|
||||
-1610579398
|
||||
-687361364
|
||||
2003719864
|
||||
6907438
|
||||
-1721747564
|
||||
-295237886
|
||||
1879282337
|
||||
117744183
|
||||
-1643252851
|
||||
-385170661
|
||||
2041962122
|
||||
246607388
|
||||
157895720
|
||||
2121170110
|
||||
-412668668
|
||||
-1872749166
|
||||
235178033
|
||||
2030287015
|
||||
-536155875
|
||||
-1760700021
|
||||
129156122
|
||||
1890972812
|
||||
-2134241988
|
||||
-137544278
|
||||
1735532603
|
||||
276107437
|
||||
-1988345577
|
||||
-25464447
|
||||
1612702754
|
||||
387503284
|
||||
-1911454450
|
||||
-115952232
|
||||
1177082607
|
||||
825223801
|
||||
-1473856573
|
||||
-551449771
|
||||
1095048950
|
||||
910306912
|
||||
-1354006566
|
||||
-666087604
|
||||
1223906013
|
||||
1072980555
|
||||
-298732346
|
||||
-1724480432
|
||||
4183530
|
||||
2000217468
|
||||
-379817761
|
||||
-1638186935
|
||||
122819059
|
||||
1884627301
|
||||
-521519884
|
||||
-1746072478
|
||||
-209279838
|
||||
-2071882700
|
||||
495502734
|
||||
1787819288
|
||||
-185900869
|
||||
-2081664979
|
||||
451215767
|
||||
1843540225
|
||||
-44225392
|
||||
-1973806074
|
||||
-1127796123
|
||||
-876608781
|
||||
1388925769
|
||||
634282975
|
||||
-1146423684
|
||||
-861026582
|
||||
1436850000
|
||||
581150662
|
||||
-1306740137
|
||||
-988050751
|
||||
-1400618642
|
||||
-612142600
|
||||
1116348482
|
||||
898437332
|
||||
-1410759305
|
||||
-588335647
|
||||
1172825179
|
||||
853595341
|
||||
-1570780836
|
||||
-715589174
|
||||
1191673692
|
||||
805326794
|
||||
-1459020176
|
||||
-569495834
|
||||
1080736581
|
||||
929926099
|
||||
-1369122199
|
||||
-647763201
|
||||
1239218030
|
||||
1054590968
|
||||
1521512248
|
||||
766992302
|
||||
-1262612972
|
||||
-1011270014
|
||||
1574808353
|
||||
718969783
|
||||
-1277965811
|
||||
-992675173
|
||||
1416357642
|
||||
594335644
|
||||
880422814
|
||||
1132273416
|
||||
-629911886
|
||||
-1384939996
|
||||
857205639
|
||||
1141955345
|
||||
-585528661
|
||||
-1440826819
|
||||
983672748
|
||||
1302763322
|
||||
772927498
|
||||
1494663324
|
||||
-1071673050
|
||||
-1223122512
|
||||
696005651
|
||||
1585120389
|
||||
-948808385
|
||||
-1334483543
|
||||
550139960
|
||||
1473071278
|
||||
2095543977
|
||||
199247423
|
||||
-1830217851
|
||||
-437377261
|
||||
2072687280
|
||||
210600486
|
||||
-1786457188
|
||||
-494673142
|
||||
1916599963
|
||||
87805453
|
||||
1249719566
|
||||
1031407000
|
||||
-1535945694
|
||||
-747346764
|
||||
1292955927
|
||||
974635393
|
||||
-1558278085
|
||||
-736517971
|
||||
1151778108
|
||||
866225578
|
||||
1897076166
|
||||
101983568
|
||||
-1625459478
|
||||
-400931716
|
||||
1988022751
|
||||
24764745
|
||||
-1737445133
|
||||
-277381019
|
||||
2143854068
|
||||
147828066
|
||||
-721545088
|
||||
-1543952362
|
||||
988838316
|
||||
1308051770
|
||||
-745284455
|
||||
-1533744113
|
||||
1033747893
|
||||
1251642659
|
||||
-635072334
|
||||
-1390239708
|
||||
-1177903154
|
||||
-825381032
|
||||
1472528098
|
||||
549703284
|
||||
-1096328233
|
||||
-912233663
|
||||
1353267963
|
||||
665717357
|
||||
-1223616516
|
||||
-1072289942
|
||||
-444580737
|
||||
-1836643095
|
||||
193879379
|
||||
2089381317
|
||||
-487720858
|
||||
-1779775248
|
||||
216242506
|
||||
2078583260
|
||||
-346311603
|
||||
-1671658277
|
||||
-812631493
|
||||
-1198060883
|
||||
564026135
|
||||
1452895105
|
||||
-922878430
|
||||
-1074082124
|
||||
653500174
|
||||
1374990232
|
||||
-1052003831
|
||||
-1236499809
|
||||
1189000363
|
||||
836338749
|
||||
-1587111508
|
||||
-698242758
|
||||
1332279424
|
||||
946849814
|
||||
-1509204555
|
||||
-787714781
|
||||
1208302745
|
||||
1057098767
|
||||
-2143526024
|
||||
-147106834
|
||||
1848771156
|
||||
422916802
|
||||
-2024691871
|
||||
-262760457
|
||||
1767884365
|
||||
509146843
|
||||
-1897403574
|
||||
-102704164
|
||||
639520906
|
||||
1360617500
|
||||
-1046053491
|
||||
-1230942949
|
||||
799546529
|
||||
1487875127
|
||||
-959727212
|
||||
-1311995646
|
||||
684054712
|
||||
1606608942
|
||||
-549550412
|
||||
-1472612830
|
||||
825288600
|
||||
1178064654
|
||||
-665632083
|
||||
-1353420229
|
||||
912073601
|
||||
1096422167
|
||||
-773517690
|
||||
-1495122416
|
||||
1223027056
|
||||
1071831526
|
||||
-1494513572
|
||||
-773015350
|
||||
1334324585
|
||||
948903423
|
||||
-1585034171
|
||||
-696156973
|
||||
1178493250
|
||||
825840084
|
||||
-242200095
|
||||
-2036899465
|
||||
530460877
|
||||
1754857563
|
||||
-151153160
|
||||
-2114280082
|
||||
418641108
|
||||
1878312002
|
||||
-11806253
|
||||
-2008225467
|
||||
192919915
|
||||
2088274429
|
||||
-445523897
|
||||
-1837700911
|
||||
202538354
|
||||
2064993764
|
||||
-501474210
|
||||
-1793381176
|
||||
94646617
|
||||
1923285455
|
||||
620678029
|
||||
1408891675
|
||||
-890197343
|
||||
-1107846601
|
||||
596840340
|
||||
1419001602
|
||||
-845320520
|
||||
-1164288466
|
||||
707085247
|
||||
1562538793
|
||||
1298558438
|
||||
979459440
|
||||
-1553462070
|
||||
-730907556
|
||||
1242278399
|
||||
1024235881
|
||||
-1543124781
|
||||
-754780091
|
||||
1136518612
|
||||
884659522
|
||||
135223230
|
||||
2131257128
|
||||
-436128110
|
||||
-1861876220
|
||||
258118567
|
||||
2019926833
|
||||
-512953717
|
||||
-1771322851
|
||||
114614156
|
||||
1909714714
|
||||
-139482703
|
||||
-2136434393
|
||||
430033053
|
||||
1856436235
|
||||
-255693400
|
||||
-2017108674
|
||||
516689028
|
||||
1774926866
|
||||
-109829757
|
||||
-1905061611
|
||||
-1256563687
|
||||
-1038259057
|
||||
1528053045
|
||||
739446179
|
||||
-1300785152
|
||||
-982472554
|
||||
1551497516
|
||||
729729466
|
||||
-1144925141
|
||||
-859380547
|
||||
-1372529942
|
||||
-650646916
|
||||
1413474185
|
||||
590927647
|
||||
-1171159387
|
||||
-852052429
|
||||
1397891984
|
||||
609555206
|
||||
-1118027076
|
||||
-899976662
|
||||
1524920251
|
||||
769875757
|
||||
-1259729257
|
||||
-1007862271
|
||||
1569303458
|
||||
713988916
|
||||
-1282946418
|
||||
-998180328
|
||||
1927730981
|
||||
98690995
|
||||
-1662470647
|
||||
-336623969
|
||||
1972048700
|
||||
42738602
|
||||
-1685753328
|
||||
-327007610
|
||||
2084396823
|
||||
188379009
|
||||
-1842135493
|
||||
-449573203
|
||||
2068880142
|
||||
207072152
|
||||
-1788937694
|
||||
-497431884
|
||||
1867630401
|
||||
408352727
|
||||
-2124437907
|
||||
-161966341
|
||||
1748763480
|
||||
523973582
|
||||
-2043518348
|
||||
-248163614
|
||||
1636454259
|
||||
378372069
|
||||
-1887162785
|
||||
-125624631
|
||||
1726450538
|
||||
299940860
|
||||
-1997936058
|
||||
-1123632
|
@ -1,236 +0,0 @@
|
||||
-189088069
|
||||
-2084729299
|
||||
246776792
|
||||
-989523398
|
||||
-1308482900
|
||||
722170646
|
||||
1544307584
|
||||
-1033316829
|
||||
-1250957643
|
||||
744929039
|
||||
1533118361
|
||||
-874604024
|
||||
-1126585698
|
||||
634452772
|
||||
1389874098
|
||||
-860660207
|
||||
-1145803129
|
||||
582827837
|
||||
1438257067
|
||||
-659422626
|
||||
-1347079480
|
||||
918315890
|
||||
1102795748
|
||||
-538982841
|
||||
-1462176047
|
||||
835823467
|
||||
1188468733
|
||||
-697726356
|
||||
-1586578694
|
||||
946334528
|
||||
1331747798
|
||||
-788246923
|
||||
-1509720349
|
||||
1057632089
|
||||
1208819663
|
||||
-716807887
|
||||
-1572777561
|
||||
994574365
|
||||
-1523804738
|
||||
1009107972
|
||||
1260582034
|
||||
-610408189
|
||||
481966371
|
||||
-826819362
|
||||
1472130404
|
||||
549051890
|
||||
-1092794287
|
||||
-908429113
|
||||
1356015997
|
||||
668211691
|
||||
-1217723270
|
||||
-1066650388
|
||||
-1428417506
|
||||
-572840824
|
||||
1154643250
|
||||
-164308632
|
||||
-2127304194
|
||||
294450287
|
||||
1720435961
|
||||
-8219325
|
||||
-2004507179
|
||||
383856758
|
||||
1642463456
|
||||
-118533798
|
||||
-1880596020
|
||||
-243425691
|
||||
-2038780173
|
||||
527695689
|
||||
1752485855
|
||||
-166700420
|
||||
-2129171734
|
||||
404634448
|
||||
1863912390
|
||||
-5892521
|
||||
-2002704703
|
||||
296253307
|
||||
1722763245
|
||||
-120860082
|
||||
-1882397992
|
||||
382055266
|
||||
1640137716
|
||||
-322269695
|
||||
-1681015145
|
||||
46460717
|
||||
1975771067
|
||||
-341358056
|
||||
-1667204466
|
||||
94972724
|
||||
1924012962
|
||||
-502200781
|
||||
-1793706331
|
||||
203384607
|
||||
2065192841
|
||||
-444808662
|
||||
-1837370692
|
||||
192062214
|
||||
2088080272
|
||||
-904675667
|
||||
-1122726341
|
||||
605937537
|
||||
1394274071
|
||||
-847349068
|
||||
-1166456286
|
||||
594549656
|
||||
1417095950
|
||||
-993511777
|
||||
-1278278135
|
||||
717641651
|
||||
1572955941
|
||||
-1012534650
|
||||
-1264401904
|
||||
766219178
|
||||
1521263420
|
||||
-677073207
|
||||
-1599889825
|
||||
967495653
|
||||
1320025971
|
||||
-792106288
|
||||
1319314683
|
||||
-646840973
|
||||
1629640221
|
||||
-131397721
|
||||
-1892927695
|
||||
289972882
|
||||
1716490756
|
||||
-984830945
|
||||
-1303667575
|
||||
725798195
|
||||
1548090789
|
||||
-1037998074
|
||||
-1255778160
|
||||
741280042
|
||||
1529362876
|
||||
-879287251
|
||||
-1131408197
|
||||
630801665
|
||||
1386116503
|
||||
-855973836
|
||||
-1140993886
|
||||
586449176
|
||||
1442034062
|
||||
-654590853
|
||||
-1342403347
|
||||
922082647
|
||||
1106439617
|
||||
-543786910
|
||||
-1466873612
|
||||
832051534
|
||||
1184836056
|
||||
-702532535
|
||||
-1591278369
|
||||
942560613
|
||||
1328113139
|
||||
-783421360
|
||||
-1505050426
|
||||
1061392764
|
||||
1212457450
|
||||
-31290153
|
||||
-1994015679
|
||||
271379963
|
||||
1730927981
|
||||
-112244530
|
||||
-1907853224
|
||||
390146530
|
||||
1615206772
|
||||
-252115739
|
||||
-2013383565
|
||||
519529929
|
||||
1777358175
|
||||
-141246212
|
||||
-2137788310
|
||||
429564368
|
||||
1855820102
|
||||
-476734285
|
||||
-1802327003
|
||||
228326815
|
||||
2057096457
|
||||
-453486422
|
||||
-1811978180
|
||||
183908742
|
||||
2112948496
|
||||
-313650047
|
||||
-1706482665
|
||||
54556077
|
||||
1950827835
|
||||
-366751592
|
||||
-1658527730
|
||||
70103476
|
||||
1932165410
|
||||
-598237858
|
||||
-1420775992
|
||||
844758130
|
||||
1163840740
|
||||
-616933049
|
||||
-1405261359
|
||||
892614763
|
||||
1110640893
|
||||
-762571412
|
||||
-1517607430
|
||||
1015182400
|
||||
1267025110
|
||||
-706621067
|
||||
-1561927197
|
||||
1005563993
|
||||
1290305743
|
||||
-1042248390
|
||||
-1226326612
|
||||
804187158
|
||||
1491721344
|
||||
-963819229
|
||||
-1316324939
|
||||
679684111
|
||||
1602492569
|
||||
-818215672
|
||||
-1204013666
|
||||
557147172
|
||||
1446139058
|
||||
-933838575
|
||||
-1085148793
|
||||
643342397
|
||||
1365217451
|
||||
-415646314
|
||||
-1874948864
|
||||
154655930
|
||||
2117135404
|
||||
-531334769
|
||||
-1756149479
|
||||
240785571
|
||||
2036148277
|
||||
-371051100
|
||||
-1629158094
|
||||
132928648
|
||||
1894474782
|
||||
-292556355
|
||||
-1719090901
|
||||
8491153
|
@ -1,647 +0,0 @@
|
||||
-1652918893
|
||||
-360889083
|
||||
178826267
|
||||
2059557012
|
||||
231041026
|
||||
-1798555208
|
||||
2078888969
|
||||
216949919
|
||||
-1780009691
|
||||
-488634957
|
||||
1918834722
|
||||
89663668
|
||||
1751456182
|
||||
526526752
|
||||
-2130264957
|
||||
-167670763
|
||||
1862852015
|
||||
403696953
|
||||
-1268966888
|
||||
-1017501042
|
||||
1515420468
|
||||
1858579957
|
||||
432053603
|
||||
-2134258471
|
||||
-137429937
|
||||
1772775916
|
||||
514677114
|
||||
-2019292992
|
||||
74506435
|
||||
1937231957
|
||||
-360807953
|
||||
-1652969095
|
||||
52241626
|
||||
1947866188
|
||||
684761840
|
||||
1607963238
|
||||
-1045231675
|
||||
-1229703341
|
||||
800941801
|
||||
1488606847
|
||||
-709731446
|
||||
-1565168868
|
||||
1002191526
|
||||
1287326256
|
||||
1984339663
|
||||
-279982219
|
||||
-1740046365
|
||||
103574080
|
||||
1898666710
|
||||
-400422036
|
||||
-1624949766
|
||||
304952847
|
||||
1697253017
|
||||
-64792797
|
||||
-1960548427
|
||||
356577814
|
||||
1648870016
|
||||
-78736582
|
||||
-1941331028
|
||||
485932605
|
||||
1810992811
|
||||
-218570991
|
||||
-2046824569
|
||||
463174180
|
||||
1792624348
|
||||
501118538
|
||||
-2066274320
|
||||
-204466330
|
||||
1840546501
|
||||
447984211
|
||||
-2084903959
|
||||
-188886145
|
||||
1677905646
|
||||
319159928
|
||||
-1493355535
|
||||
-1126250662
|
||||
-1145896125
|
||||
-860605483
|
||||
1438474863
|
||||
582636281
|
||||
-1308274840
|
||||
-989691906
|
||||
-1322605515
|
||||
-970091357
|
||||
1596245273
|
||||
673445263
|
||||
-1236836308
|
||||
-1052749638
|
||||
1481179392
|
||||
793653654
|
||||
-1074713593
|
||||
-923394927
|
||||
-472112490
|
||||
-1797582336
|
||||
231883706
|
||||
2060809004
|
||||
-458103153
|
||||
-1816734183
|
||||
180324259
|
||||
2109257525
|
||||
-318264668
|
||||
-1711236558
|
||||
50973576
|
||||
1947138846
|
||||
-362123587
|
||||
-1653776853
|
||||
73666449
|
||||
1935884039
|
||||
-1399137899
|
||||
-341064337
|
||||
-1666386439
|
||||
94741571
|
||||
1923257557
|
||||
-322567818
|
||||
-1681837600
|
||||
46686298
|
||||
1976520908
|
||||
-445624995
|
||||
-1837662773
|
||||
192818289
|
||||
2088312039
|
||||
-501380796
|
||||
-1793410606
|
||||
202631272
|
||||
2064963838
|
||||
-165882613
|
||||
-2128878179
|
||||
403878951
|
||||
1863681201
|
||||
-244248302
|
||||
-2039078524
|
||||
528445502
|
||||
1752711336
|
||||
-121152199
|
||||
-1883214417
|
||||
382286869
|
||||
1640893571
|
||||
-5596896
|
||||
-2001884746
|
||||
296024076
|
||||
1722009754
|
||||
-68635036
|
||||
-1930459406
|
||||
367449928
|
||||
1658972126
|
||||
-58363267
|
||||
-1954397461
|
||||
311104337
|
||||
1703683015
|
||||
-181191082
|
||||
-2110517568
|
||||
457006970
|
||||
1815769068
|
||||
-228656561
|
||||
-2057712935
|
||||
475044707
|
||||
1800907765
|
||||
-429939200
|
||||
-1856465258
|
||||
139577132
|
||||
2136405946
|
||||
-516791783
|
||||
-1774890353
|
||||
255591221
|
||||
2017145763
|
||||
-393990606
|
||||
-1618796892
|
||||
109727518
|
||||
1905098632
|
||||
961040115
|
||||
1313832549
|
||||
-802427962
|
||||
-1490232496
|
||||
1042647786
|
||||
1227012732
|
||||
-1003833463
|
||||
-1288861921
|
||||
707057317
|
||||
1562633779
|
||||
-1018727536
|
||||
-1270856954
|
||||
759763644
|
||||
1515069994
|
||||
-890159173
|
||||
-1107947731
|
||||
620715671
|
||||
1408790017
|
||||
-845349982
|
||||
-1164195020
|
||||
596810382
|
||||
1419094552
|
||||
-1278591182
|
||||
-993194076
|
||||
1416761909
|
||||
594879139
|
||||
-1166249191
|
||||
-847559793
|
||||
1394595372
|
||||
605611706
|
||||
-1122912512
|
||||
-904493162
|
||||
1465776488
|
||||
542820862
|
||||
-1185703868
|
||||
-833312558
|
||||
1345338737
|
||||
657919463
|
||||
-1103209379
|
||||
-918983477
|
||||
1501983066
|
||||
780222924
|
||||
-1215819658
|
||||
-1064361760
|
||||
1592505667
|
||||
703366613
|
||||
-1327115153
|
||||
-941431559
|
||||
1256909068
|
||||
1038997914
|
||||
-1528526816
|
||||
-740050762
|
||||
790622102
|
||||
658340430
|
||||
1345997528
|
||||
-832643205
|
||||
-1185288211
|
||||
1902708288
|
||||
107886294
|
||||
-1620613268
|
||||
-396339206
|
||||
1980023385
|
||||
17035983
|
||||
-1744133259
|
||||
-284322845
|
||||
2142408306
|
||||
146128612
|
||||
1573363707
|
||||
717270893
|
||||
-1278607657
|
||||
-993079743
|
||||
1521114082
|
||||
766339956
|
||||
-1264305458
|
||||
-1012725160
|
||||
967587643
|
||||
-1599773055
|
||||
-677226985
|
||||
1237762996
|
||||
1052898082
|
||||
-1480023400
|
||||
-791703026
|
||||
1081118623
|
||||
930594569
|
||||
-1367413069
|
||||
-646324699
|
||||
1193102214
|
||||
807041808
|
||||
-1458361686
|
||||
-569107908
|
||||
2016494602
|
||||
255227036
|
||||
-1774246618
|
||||
-516418128
|
||||
2136768531
|
||||
140226693
|
||||
-1856839361
|
||||
-430583383
|
||||
1995099192
|
||||
32373934
|
||||
703546416
|
||||
-1327098486
|
||||
-941546212
|
||||
1501933759
|
||||
780304425
|
||||
-1215573613
|
||||
-1064509179
|
||||
1345584276
|
||||
657771522
|
||||
-1103258184
|
||||
-918901458
|
||||
1465792653
|
||||
542705691
|
||||
-1185916511
|
||||
-833132233
|
||||
1045594881
|
||||
1230353303
|
||||
-799219155
|
||||
-1487154501
|
||||
960448280
|
||||
1312323470
|
||||
1979857543
|
||||
-423811306
|
||||
-1850075264
|
||||
145966650
|
||||
2142533292
|
||||
-506404081
|
||||
-1764240487
|
||||
266240547
|
||||
2027532981
|
||||
-170803392
|
||||
-2099867690
|
||||
467656300
|
||||
1826156282
|
||||
-222528679
|
||||
-2051322929
|
||||
481434229
|
||||
1807035107
|
||||
-83216526
|
||||
-1945303068
|
||||
352605790
|
||||
1644390088
|
||||
-60296341
|
||||
-1956592643
|
||||
308908615
|
||||
1701749457
|
||||
-754413588
|
||||
-1542471814
|
||||
1023864512
|
||||
1241636438
|
||||
-731558923
|
||||
-1553826973
|
||||
980101849
|
||||
1298930255
|
||||
-573372450
|
||||
-1428932792
|
||||
870147826
|
||||
1155159652
|
||||
-625032249
|
||||
-1380322479
|
||||
883991275
|
||||
1136104061
|
||||
-826302584
|
||||
-1179078882
|
||||
548535972
|
||||
1471598130
|
||||
-1479648698
|
||||
1053232124
|
||||
1237334890
|
||||
-645978373
|
||||
981804216
|
||||
1300370478
|
||||
597140405
|
||||
-1163988465
|
||||
-845561191
|
||||
1409111866
|
||||
620390316
|
||||
-1108134378
|
||||
-889977216
|
||||
1514871569
|
||||
759966599
|
||||
-1270515139
|
||||
-1019065685
|
||||
1562828552
|
||||
706867102
|
||||
-1289175516
|
||||
-1003516238
|
||||
1227326279
|
||||
1042330577
|
||||
-1490427285
|
||||
-802237699
|
||||
1313490782
|
||||
961378248
|
||||
-1606146446
|
||||
-683469084
|
||||
1207700341
|
||||
821771235
|
||||
-1443730855
|
||||
-554345777
|
||||
466683364
|
||||
1825977714
|
||||
-169909048
|
||||
-2099751842
|
||||
335144853
|
||||
1694422787
|
||||
-34109767
|
||||
-1963936209
|
||||
345252748
|
||||
1670583066
|
||||
-90553696
|
||||
-1919061450
|
||||
1603336139
|
||||
-963008911
|
||||
-1315006745
|
||||
804913988
|
||||
1492988882
|
||||
-1040948632
|
||||
-1225567490
|
||||
-1900897941
|
||||
504202490
|
||||
1762309228
|
||||
-268180010
|
||||
-2029726400
|
||||
425738467
|
||||
1852272757
|
||||
-143777329
|
||||
-2140597927
|
||||
-2086079387
|
||||
499933638
|
||||
1791709520
|
||||
-205389590
|
||||
-2067451780
|
||||
-1992933673
|
||||
-30339519
|
||||
1854804944
|
||||
428417862
|
||||
-2139065604
|
||||
-142130582
|
||||
1622906243
|
||||
398238997
|
||||
1456461893
|
||||
566814931
|
||||
-1195263639
|
||||
-809072129
|
||||
1369578588
|
||||
648359114
|
||||
-1079214736
|
||||
-928297498
|
||||
1477726327
|
||||
789799137
|
||||
-1239797413
|
||||
-1055063603
|
||||
1601803374
|
||||
679388408
|
||||
-1317538494
|
||||
-965687852
|
||||
-1518950131
|
||||
-764307045
|
||||
1276447800
|
||||
991050926
|
||||
-1575260908
|
||||
-719561342
|
||||
1168326675
|
||||
849637509
|
||||
-1414717121
|
||||
-592834135
|
||||
1120830474
|
||||
902411420
|
||||
-1396644570
|
||||
-607660624
|
||||
1839331469
|
||||
447137819
|
||||
-2085643871
|
||||
-190273225
|
||||
1791769748
|
||||
499846146
|
||||
-2067636808
|
||||
-205165266
|
||||
1668968639
|
||||
343752745
|
||||
-1921773165
|
||||
-93118203
|
||||
1679275174
|
||||
319849520
|
||||
-1978018422
|
||||
-48306916
|
||||
1880549609
|
||||
118610047
|
||||
-1642559035
|
||||
-383796909
|
||||
2004561136
|
||||
8133734
|
||||
-1720365604
|
||||
-294486710
|
||||
2127388891
|
||||
164253773
|
||||
-1866268169
|
||||
-406572703
|
||||
2040571074
|
||||
245863508
|
||||
-1750153746
|
||||
-525732488
|
||||
-934480437
|
||||
-1085553315
|
||||
641897703
|
||||
1363518577
|
||||
-819908142
|
||||
-1205468860
|
||||
556749054
|
||||
1445486696
|
||||
-1876641318
|
||||
154003552
|
||||
-2140681519
|
||||
426679147
|
||||
1852419069
|
||||
1455844873
|
||||
-928842838
|
||||
-1079653572
|
||||
648845958
|
||||
1370204688
|
||||
-1085495143
|
||||
-934569969
|
||||
1363331509
|
||||
642119971
|
||||
-1205769088
|
||||
-819569642
|
||||
1445924268
|
||||
556285242
|
||||
-2078111663
|
||||
-215631673
|
||||
1781328253
|
||||
489413099
|
||||
-2091955128
|
||||
-196576034
|
||||
1832988004
|
||||
440802802
|
||||
-977274016
|
||||
1555475162
|
||||
733059660
|
||||
-1244327953
|
||||
-1026408583
|
||||
1541107395
|
||||
752639573
|
||||
-1100097886
|
||||
-915741132
|
||||
1460564887
|
||||
537477889
|
||||
-1191177541
|
||||
-838393299
|
||||
-1176451246
|
||||
-823658556
|
||||
1475257982
|
||||
552179432
|
||||
-1098054837
|
||||
-913689635
|
||||
1350787687
|
||||
662983409
|
||||
-1220849824
|
||||
-1069776906
|
||||
1496657484
|
||||
775036634
|
||||
-1336505479
|
||||
-950944785
|
||||
1582885461
|
||||
694147779
|
||||
-1537747146
|
||||
-749672544
|
||||
1247393306
|
||||
1029605004
|
||||
-1556475089
|
||||
-734190663
|
||||
1295282691
|
||||
976437909
|
||||
-1433641212
|
||||
-578064494
|
||||
1149386280
|
||||
864358078
|
||||
-1377723619
|
||||
-622417013
|
||||
1139800625
|
||||
1735016478
|
||||
275607688
|
||||
-1911954133
|
||||
-116468291
|
||||
1611105287
|
||||
385922193
|
||||
-2017482496
|
||||
-256337514
|
||||
1773258796
|
||||
515307706
|
||||
-2133693159
|
||||
-137011825
|
||||
1859914805
|
||||
433798307
|
||||
-1346563682
|
||||
-658890488
|
||||
1102278834
|
||||
917782564
|
||||
-1462708857
|
||||
-539499247
|
||||
-1897888114
|
||||
401200948
|
||||
1626269602
|
||||
-24481279
|
||||
-1987231081
|
||||
277091117
|
||||
1736647611
|
||||
-147046870
|
||||
-2143613252
|
||||
422731526
|
||||
1848995728
|
||||
-263062989
|
||||
-2024355163
|
||||
509582111
|
||||
1767418761
|
||||
-464476548
|
||||
-1822976278
|
||||
173983568
|
||||
2103048134
|
||||
-482516379
|
||||
-1380743944
|
||||
-625691538
|
||||
-388317536
|
||||
-1612870090
|
||||
28908437
|
||||
1992174339
|
||||
-273188167
|
||||
-1733277137
|
||||
364398554
|
||||
1656715084
|
||||
-71948554
|
||||
583566737
|
||||
-1129574350
|
||||
-877977436
|
||||
1386377502
|
||||
631587208
|
||||
-1815909195
|
||||
-456893405
|
||||
168994806
|
||||
2098567008
|
||||
-467876134
|
||||
-1826884020
|
||||
226452463
|
||||
2054706041
|
||||
-479132989
|
||||
-1804193195
|
||||
80293828
|
||||
1942888274
|
||||
-356036888
|
||||
-1648329090
|
||||
61139933
|
||||
1956895563
|
||||
-307590415
|
||||
-1699890585
|
||||
396736402
|
||||
1621264132
|
||||
-1504074264
|
||||
921090169
|
||||
1105299695
|
||||
-655828651
|
||||
-1343231549
|
||||
831224928
|
||||
1183599862
|
||||
-544924340
|
||||
-1467863590
|
||||
-482678759
|
||||
-1807886193
|
||||
221546805
|
||||
2050210211
|
||||
-464049152
|
||||
-1823466346
|
||||
173624620
|
||||
2103344570
|
||||
-303996885
|
||||
-1696182083
|
||||
65995015
|
||||
1961374097
|
||||
-359881678
|
@ -1,717 +0,0 @@
|
||||
-1637089325
|
||||
123907689
|
||||
1885708031
|
||||
-1727644726
|
||||
1010288
|
||||
1997036262
|
||||
-407419017
|
||||
-1867483167
|
||||
163128923
|
||||
-522550418
|
||||
-1747078152
|
||||
248832578
|
||||
2043925204
|
||||
336475711
|
||||
1661535913
|
||||
1684325040
|
||||
-1528910307
|
||||
784033777
|
||||
-1327500718
|
||||
-942095676
|
||||
701932520
|
||||
366298937
|
||||
-55123444
|
||||
432288845
|
||||
-257453704
|
||||
-116269741
|
||||
-1709723254
|
||||
-317685476
|
||||
-458830537
|
||||
-473233106
|
||||
324281719
|
||||
1736244924
|
||||
-1387505153
|
||||
-632592023
|
||||
1143995594
|
||||
858311772
|
||||
-1440637466
|
||||
-584667792
|
||||
48188386
|
||||
-1680467368
|
||||
-1167921427
|
||||
1645789703
|
||||
-82734147
|
||||
-1954846926
|
||||
-574053615
|
||||
1135359666
|
||||
-1671666068
|
||||
89470934
|
||||
-331967773
|
||||
-1691245963
|
||||
1877284644
|
||||
529523627
|
||||
1753797437
|
||||
656418399
|
||||
1344739017
|
||||
-834436246
|
||||
-1186679812
|
||||
-730375818
|
||||
-2115232820
|
||||
-152360102
|
||||
1877113568
|
||||
417679990
|
||||
-2038308907
|
||||
-242815165
|
||||
1754251001
|
||||
529043055
|
||||
-1892183042
|
||||
-131030168
|
||||
1631187666
|
||||
373211716
|
||||
-2007345177
|
||||
-10655887
|
||||
310177024
|
||||
-2101088111
|
||||
-171655161
|
||||
868550359
|
||||
1153578561
|
||||
-573872133
|
||||
-1429448851
|
||||
883475150
|
||||
1135604312
|
||||
-626613278
|
||||
-1381919884
|
||||
1025412837
|
||||
1243201139
|
||||
-753864759
|
||||
-1541939361
|
||||
980634364
|
||||
1299479146
|
||||
-729994288
|
||||
-167232935
|
||||
1416111855
|
||||
594482809
|
||||
1320350354
|
||||
-802037988
|
||||
824919640
|
||||
514032370
|
||||
1937663513
|
||||
75060879
|
||||
-200888513
|
||||
-2097045591
|
||||
436784659
|
||||
1829764741
|
||||
-38739180
|
||||
-1967664254
|
||||
331252280
|
||||
1689891502
|
||||
-86169843
|
||||
-1915086949
|
||||
349390369
|
||||
1674868407
|
||||
-287540414
|
||||
-1713681452
|
||||
13769326
|
||||
-374227109
|
||||
895988372
|
||||
1113620994
|
||||
-603711583
|
||||
-1425856713
|
||||
-1321730773
|
||||
-974051199
|
||||
-1292494825
|
||||
738150829
|
||||
1559787835
|
||||
-1029903208
|
||||
-1137864667
|
||||
623165855
|
||||
2023006385
|
||||
261328935
|
||||
-1846082172
|
||||
-420465390
|
||||
2147050664
|
||||
150885438
|
||||
461160969
|
||||
261760619
|
||||
2023560957
|
||||
-510376121
|
||||
-1768720431
|
||||
150463090
|
||||
2146489060
|
||||
-419855522
|
||||
-1845578808
|
||||
21081689
|
||||
-879203649
|
||||
1602588035
|
||||
-963847111
|
||||
-1156428839
|
||||
628547194
|
||||
-2066724300
|
||||
448061335
|
||||
1840508673
|
||||
832496016
|
||||
-1466453974
|
||||
1457168909
|
||||
568169115
|
||||
-1194015967
|
||||
1600974374
|
||||
678158000
|
||||
-1318940918
|
||||
350116940
|
||||
1675193562
|
||||
-87016096
|
||||
-1915286026
|
||||
330537045
|
||||
1689561283
|
||||
-37881479
|
||||
-1967470097
|
||||
436589694
|
||||
1828906216
|
||||
-200559278
|
||||
1858366480
|
||||
432233606
|
||||
638118695
|
||||
1359993777
|
||||
-715156466
|
||||
-1571249000
|
||||
995226914
|
||||
1280755124
|
||||
-768454633
|
||||
-1523228543
|
||||
1010577723
|
||||
-612099012
|
||||
-1400689494
|
||||
898268432
|
||||
1116556678
|
||||
-588654555
|
||||
-1410406221
|
||||
1544739707
|
||||
722856941
|
||||
-1250853298
|
||||
-1032433960
|
||||
1535057762
|
||||
746074100
|
||||
-1709309239
|
||||
-1138148348
|
||||
-886174574
|
||||
1378311464
|
||||
622882238
|
||||
-283662535
|
||||
1903375002
|
||||
108265996
|
||||
-1619176522
|
||||
-394632416
|
||||
-2040110345
|
||||
-245280159
|
||||
1966153182
|
||||
37104968
|
||||
-1690338062
|
||||
-331854748
|
||||
1918687687
|
||||
89909585
|
||||
-1672300309
|
||||
-346716035
|
||||
-242263040
|
||||
-1632905517
|
||||
-374544827
|
||||
1889908735
|
||||
128092009
|
||||
-1715072310
|
||||
-289332644
|
||||
2009625574
|
||||
13583216
|
||||
-1871683871
|
||||
-411603337
|
||||
2122203085
|
||||
158928731
|
||||
-1759667464
|
||||
-535123346
|
||||
2031352788
|
||||
236243778
|
||||
-1200429441
|
||||
-814360855
|
||||
1451001683
|
||||
561756101
|
||||
-1088478618
|
||||
-937946384
|
||||
1360085834
|
||||
639005660
|
||||
-1513753061
|
||||
-758987123
|
||||
1271633719
|
||||
1020045217
|
||||
-1566035454
|
||||
-709950828
|
||||
1285968686
|
||||
1000432568
|
||||
-1424064983
|
||||
-602321217
|
||||
1158684421
|
||||
840380307
|
||||
-1401701840
|
||||
-613119322
|
||||
1115544348
|
||||
897248138
|
||||
-1710753802
|
||||
-318716064
|
||||
1946785498
|
||||
51291724
|
||||
-361954439
|
||||
1935954627
|
||||
73622101
|
||||
-1797488700
|
||||
-472166574
|
||||
2060590824
|
||||
232074878
|
||||
-1817068579
|
||||
-457798837
|
||||
2109725425
|
||||
179890791
|
||||
-2018449518
|
||||
-256387324
|
||||
515487272
|
||||
-2132991093
|
||||
-136703203
|
||||
1859338919
|
||||
433353265
|
||||
-1989447776
|
||||
-26452170
|
||||
1734676108
|
||||
274873882
|
||||
-1912165447
|
||||
-117335249
|
||||
1611188885
|
||||
-1032864793
|
||||
1533471325
|
||||
-811870072
|
||||
1452443954
|
||||
561119625
|
||||
1450520863
|
||||
-813932379
|
||||
-1199878093
|
||||
1830490583
|
||||
-200130451
|
||||
1237647953
|
||||
1052914375
|
||||
-1479842947
|
||||
-791915541
|
||||
1319683656
|
||||
967833310
|
||||
-1599690908
|
||||
-677275662
|
||||
1521064455
|
||||
766421649
|
||||
-1264059605
|
||||
-1012872259
|
||||
1573150238
|
||||
717450888
|
||||
1043086502
|
||||
-1490719460
|
||||
-1672786476
|
||||
-347308734
|
||||
2079547603
|
||||
217337925
|
||||
-1778580993
|
||||
-486919831
|
||||
2090771658
|
||||
194614364
|
||||
-1836005914
|
||||
-443026064
|
||||
-641002455
|
||||
1202684298
|
||||
816361756
|
||||
-1449008986
|
||||
-559493072
|
||||
1310313889
|
||||
958332215
|
||||
-1609061235
|
||||
-686777317
|
||||
1232341432
|
||||
1047738670
|
||||
-1485150060
|
||||
-797091838
|
||||
1567970807
|
||||
712140129
|
||||
-1283771173
|
||||
-998505395
|
||||
1511559662
|
||||
757047672
|
||||
-1273564990
|
||||
-1022246828
|
||||
1403968965
|
||||
1253436548
|
||||
1035131922
|
||||
-1531212376
|
||||
-742605506
|
||||
1991641173
|
||||
28391619
|
||||
678570895
|
||||
-1317307851
|
||||
-964932957
|
||||
1478024960
|
||||
-1240023508
|
||||
-1055813958
|
||||
133444781
|
||||
-1803322804
|
||||
-477869350
|
||||
2056067936
|
||||
227159030
|
||||
-1813070251
|
||||
-454455613
|
||||
2111889273
|
||||
182972399
|
||||
-1705446786
|
||||
-312491288
|
||||
1951830866
|
||||
55681988
|
||||
-1657457049
|
||||
-365820175
|
||||
1933268811
|
||||
71067613
|
||||
-1993053656
|
||||
-30188866
|
||||
1731857156
|
||||
272448402
|
||||
-1906725327
|
||||
-111239513
|
||||
1616367389
|
||||
391184267
|
||||
-2014322150
|
||||
-253177204
|
||||
1776386870
|
||||
518435744
|
||||
-2138954237
|
||||
-142272875
|
||||
1854687023
|
||||
428570553
|
||||
-1343399292
|
||||
-655726062
|
||||
1105410984
|
||||
920914750
|
||||
-1467965795
|
||||
-544756213
|
||||
1183776689
|
||||
831115047
|
||||
-1590242634
|
||||
-701373920
|
||||
1329116058
|
||||
943686412
|
||||
-1503979857
|
||||
-782490055
|
||||
1213560707
|
||||
-1302705440
|
||||
-983729546
|
||||
1549020108
|
||||
726866778
|
||||
-1254650119
|
||||
-1036992913
|
||||
1530523605
|
||||
742317891
|
||||
-1132346670
|
||||
-880348604
|
||||
1385145342
|
||||
629707624
|
||||
-1142159669
|
||||
-857000355
|
||||
1440901095
|
||||
585455473
|
||||
-1919399155
|
||||
-90211429
|
||||
1670785569
|
||||
-170288106
|
||||
1825623468
|
||||
467139898
|
||||
-1945819982
|
||||
-83749852
|
||||
1644905886
|
||||
353137928
|
||||
-1956061013
|
||||
-59781059
|
||||
1701216647
|
||||
308392209
|
||||
-1620460316
|
||||
-395408270
|
||||
-1744537347
|
||||
-284997525
|
||||
1980373457
|
||||
17639751
|
||||
-1850592042
|
||||
-424344512
|
||||
2143049210
|
||||
146498924
|
||||
-1763708721
|
||||
-505888679
|
||||
2027000291
|
||||
265724277
|
||||
-1543005140
|
||||
-625549167
|
||||
-1954091318
|
||||
418911847
|
||||
763480886
|
||||
1518795680
|
||||
1906668523
|
||||
-391372207
|
||||
-1616178489
|
||||
-1444978943
|
||||
-680647748
|
||||
-319943403
|
||||
-1679213181
|
||||
93169696
|
||||
1921685686
|
||||
-343684852
|
||||
-1669006950
|
||||
539260505
|
||||
1461929679
|
||||
-836102283
|
||||
-1188223005
|
||||
-736178839
|
||||
-1558577665
|
||||
463755504
|
||||
1822648422
|
||||
-173393444
|
||||
482974953
|
||||
-1607369882
|
||||
-684307472
|
||||
-386643427
|
||||
550311420
|
||||
-1178319802
|
||||
-826051376
|
||||
1353179507
|
||||
664850917
|
||||
-1096187809
|
||||
-911298359
|
||||
1494330712
|
||||
773234126
|
||||
-1222652812
|
||||
-1072104222
|
||||
1585211713
|
||||
695949783
|
||||
-1379592183
|
||||
-624809825
|
||||
-582462293
|
||||
-1437637571
|
||||
860239239
|
||||
1145111825
|
||||
24139525
|
||||
1987536787
|
||||
-576300342
|
||||
-1432262052
|
||||
867128866
|
||||
-242238536
|
||||
-2037871826
|
||||
-2115176069
|
||||
-152319507
|
||||
1877121111
|
||||
417704129
|
||||
-2038350494
|
||||
-242872844
|
||||
1754225742
|
||||
529034456
|
||||
-1892191927
|
||||
-131055137
|
||||
-1165829709
|
||||
-846862043
|
||||
1418508447
|
||||
596346889
|
||||
-1108402774
|
||||
-890753732
|
||||
1407286406
|
||||
619072528
|
||||
-1269214847
|
||||
-1017224937
|
||||
1515663533
|
||||
760217659
|
||||
-1288399464
|
||||
-1003248370
|
||||
1564144820
|
||||
708690978
|
||||
-2059347874
|
||||
-230168376
|
||||
1800321394
|
||||
474581476
|
||||
-2110972857
|
||||
-181785391
|
||||
1814265195
|
||||
455364093
|
||||
-1952755604
|
||||
-56860422
|
||||
1704276288
|
||||
311558614
|
||||
-1929997195
|
||||
-68049693
|
||||
1660482905
|
||||
369083855
|
||||
-1728591814
|
||||
-269420372
|
||||
1996073238
|
||||
-1617294301
|
||||
-392348491
|
||||
1905552655
|
||||
110321049
|
||||
-1775484920
|
||||
-517246818
|
||||
2015502628
|
||||
254087602
|
||||
-1857977327
|
||||
-431573881
|
||||
2135942461
|
||||
138991019
|
||||
-1104217962
|
||||
-920008704
|
||||
656910636
|
||||
-1326092124
|
||||
1593512328
|
||||
704389406
|
||||
-1892672371
|
||||
372854071
|
||||
1631485345
|
||||
-2007115628
|
||||
290752814
|
||||
1716763064
|
||||
-152263639
|
||||
-2115267393
|
||||
417514757
|
||||
-243179472
|
||||
-2038017882
|
||||
529465628
|
||||
1753756042
|
||||
89511265
|
||||
1918035447
|
||||
1967071726
|
||||
-1017574189
|
||||
1228719423
|
||||
-682078052
|
||||
-1604362230
|
||||
1313931558
|
||||
1800000694
|
||||
-2111147645
|
||||
1814302895
|
||||
-633193070
|
||||
-1387983612
|
||||
877419710
|
||||
1129016360
|
||||
-584058485
|
||||
-1440167651
|
||||
-395923676
|
||||
-1620992078
|
||||
107531784
|
||||
-1618916773
|
||||
371549835
|
||||
275689837
|
||||
-2092500476
|
||||
-253065613
|
||||
-880499013
|
||||
-704911953
|
||||
-1560488647
|
||||
1005945987
|
||||
1290974229
|
||||
-761912906
|
||||
-1517219552
|
||||
1016610970
|
||||
1268740108
|
||||
-618631779
|
||||
2116737270
|
||||
-593254427
|
||||
-1415276685
|
||||
850249417
|
||||
1168832095
|
||||
-607230980
|
||||
-1396092054
|
||||
901776080
|
||||
-365000314
|
||||
1933039676
|
||||
70314154
|
||||
-1705738999
|
||||
-313307745
|
||||
1952062501
|
||||
56437939
|
||||
-479802420
|
||||
2054134390
|
||||
224963296
|
||||
-1827913917
|
||||
179807477
|
||||
-1710704284
|
||||
-317748750
|
||||
1946605640
|
||||
50456798
|
||||
-1654293123
|
||||
-362656277
|
||||
250973105
|
||||
-1869537774
|
||||
2124382014
|
||||
160976808
|
||||
-1494920236
|
||||
-773692606
|
||||
-255855534
|
||||
-2017934140
|
||||
514954622
|
||||
1773577704
|
||||
-787808025
|
||||
-1509150607
|
||||
-1293720993
|
||||
736768997
|
||||
1559036787
|
||||
-867033374
|
||||
-1152045452
|
||||
-1137120659
|
||||
1223450428
|
||||
-1584399863
|
||||
948349875
|
||||
1333893925
|
||||
1829974657
|
||||
437518871
|
||||
-2095230035
|
||||
-199597253
|
||||
1786705560
|
||||
494519822
|
||||
898986225
|
||||
88401072
|
||||
-11750377
|
||||
1715856813
|
||||
289592635
|
||||
-1893318504
|
||||
-132026354
|
||||
1630020020
|
||||
372183330
|
||||
-2037379917
|
||||
-241746907
|
||||
1755213215
|
||||
530144521
|
||||
-2114074454
|
||||
-151324612
|
||||
1878239622
|
||||
418683152
|
||||
-1778608923
|
||||
-486824845
|
||||
2079520201
|
||||
217433439
|
||||
-1835970308
|
||||
-443129750
|
||||
2090807760
|
||||
194511174
|
||||
1640995225
|
||||
-121190365
|
||||
-1883113291
|
||||
1154490829
|
||||
869732699
|
||||
-1428274975
|
||||
-91312654
|
||||
-1920361116
|
||||
343985374
|
||||
1669856328
|
||||
-35427861
|
||||
269976758
|
||||
1729147936
|
||||
-1471926312
|
||||
151771187
|
||||
-1716206174
|
||||
-290196172
|
||||
2008720526
|
||||
12424216
|
||||
-1346336668
|
||||
-534258619
|
||||
1977458936
|
||||
-446513815
|
||||
-1838838273
|
||||
191683653
|
||||
2087447763
|
@ -1,10 +0,0 @@
|
||||
701932520
|
||||
897248138
|
||||
-1710753802
|
||||
-2132991093
|
||||
596346889
|
||||
-1108402774
|
||||
-68049693
|
||||
1660482905
|
||||
369083855
|
||||
1313931558
|
@ -1,24 +0,0 @@
|
||||
-1747078152
|
||||
-1680467368
|
||||
-1167921427
|
||||
-879203649
|
||||
-37881479
|
||||
-1632905517
|
||||
-374544827
|
||||
1889908735
|
||||
128092009
|
||||
-1715072310
|
||||
-289332644
|
||||
391184267
|
||||
1776386870
|
||||
1385145342
|
||||
629707624
|
||||
-1919399155
|
||||
-1763708721
|
||||
-1543005140
|
||||
-1954091318
|
||||
-846862043
|
||||
1418508447
|
||||
-1775484920
|
||||
656910636
|
||||
-2038017882
|
@ -1,73 +0,0 @@
|
||||
-1867483167
|
||||
-942095676
|
||||
-55123444
|
||||
1113620994
|
||||
-1425856713
|
||||
628547194
|
||||
1935954627
|
||||
1533471325
|
||||
1452443954
|
||||
1450520863
|
||||
-1199878093
|
||||
-200130451
|
||||
1052914375
|
||||
-791915541
|
||||
967833310
|
||||
-677275662
|
||||
766421649
|
||||
-1012872259
|
||||
717450888
|
||||
-1490719460
|
||||
-347308734
|
||||
217337925
|
||||
-486919831
|
||||
194614364
|
||||
-443026064
|
||||
1202684298
|
||||
-1449008986
|
||||
1310313889
|
||||
-1609061235
|
||||
1232341432
|
||||
-1485150060
|
||||
1567970807
|
||||
-1283771173
|
||||
1511559662
|
||||
-1273564990
|
||||
1403968965
|
||||
1035131922
|
||||
-742605506
|
||||
28391619
|
||||
920914750
|
||||
-544756213
|
||||
831115047
|
||||
-701373920
|
||||
-83749852
|
||||
353137928
|
||||
-59781059
|
||||
308392209
|
||||
-395408270
|
||||
-284997525
|
||||
17639751
|
||||
-424344512
|
||||
146498924
|
||||
2027000291
|
||||
265724277
|
||||
-242238536
|
||||
-1892191927
|
||||
1407286406
|
||||
-1269214847
|
||||
1515663533
|
||||
-1288399464
|
||||
1564144820
|
||||
-2059347874
|
||||
1800321394
|
||||
-2110972857
|
||||
-1952755604
|
||||
2015502628
|
||||
-1857977327
|
||||
2135942461
|
||||
-2115267393
|
||||
-1604362230
|
||||
-2111147645
|
||||
-633193070
|
||||
1129016360
|
@ -1,10 +0,0 @@
|
||||
-458830537
|
||||
-411603337
|
||||
-535123346
|
||||
1158684421
|
||||
227159030
|
||||
-454455613
|
||||
1951830866
|
||||
-365820175
|
||||
-142272875
|
||||
-655726062
|
@ -1,12 +0,0 @@
|
||||
-116269741
|
||||
-1871683871
|
||||
158928731
|
||||
-1759667464
|
||||
236243778
|
||||
-602321217
|
||||
2056067936
|
||||
-1813070251
|
||||
-312491288
|
||||
-1657457049
|
||||
-2138954237
|
||||
-1343399292
|
@ -1,513 +0,0 @@
|
||||
-1637089325
|
||||
123907689
|
||||
1885708031
|
||||
-1727644726
|
||||
1010288
|
||||
1997036262
|
||||
163128923
|
||||
-522550418
|
||||
248832578
|
||||
2043925204
|
||||
336475711
|
||||
1661535913
|
||||
1684325040
|
||||
-1528910307
|
||||
-1327500718
|
||||
432288845
|
||||
-257453704
|
||||
-1709723254
|
||||
-317685476
|
||||
-473233106
|
||||
324281719
|
||||
1736244924
|
||||
-1387505153
|
||||
-632592023
|
||||
1143995594
|
||||
858311772
|
||||
-1440637466
|
||||
-584667792
|
||||
48188386
|
||||
1645789703
|
||||
-82734147
|
||||
-1954846926
|
||||
-574053615
|
||||
1135359666
|
||||
-1671666068
|
||||
89470934
|
||||
-331967773
|
||||
-1691245963
|
||||
1877284644
|
||||
529523627
|
||||
1753797437
|
||||
656418399
|
||||
1344739017
|
||||
-834436246
|
||||
-1186679812
|
||||
-730375818
|
||||
-2115232820
|
||||
-152360102
|
||||
1877113568
|
||||
417679990
|
||||
-2038308907
|
||||
-242815165
|
||||
1754251001
|
||||
529043055
|
||||
-1892183042
|
||||
-131030168
|
||||
1631187666
|
||||
373211716
|
||||
-2007345177
|
||||
-10655887
|
||||
310177024
|
||||
-2101088111
|
||||
-171655161
|
||||
868550359
|
||||
1153578561
|
||||
-573872133
|
||||
-1429448851
|
||||
883475150
|
||||
1135604312
|
||||
-626613278
|
||||
-1381919884
|
||||
1025412837
|
||||
1243201139
|
||||
-753864759
|
||||
-1541939361
|
||||
980634364
|
||||
1299479146
|
||||
-729994288
|
||||
-167232935
|
||||
1416111855
|
||||
594482809
|
||||
1320350354
|
||||
-802037988
|
||||
824919640
|
||||
514032370
|
||||
1937663513
|
||||
75060879
|
||||
-200888513
|
||||
-2097045591
|
||||
436784659
|
||||
1829764741
|
||||
-38739180
|
||||
-1967664254
|
||||
331252280
|
||||
1689891502
|
||||
-86169843
|
||||
-1915086949
|
||||
349390369
|
||||
1674868407
|
||||
-287540414
|
||||
-1713681452
|
||||
13769326
|
||||
-374227109
|
||||
-1321730773
|
||||
-974051199
|
||||
-1292494825
|
||||
738150829
|
||||
1559787835
|
||||
-1029903208
|
||||
-1137864667
|
||||
623165855
|
||||
2023006385
|
||||
261328935
|
||||
-1846082172
|
||||
-420465390
|
||||
2147050664
|
||||
150885438
|
||||
461160969
|
||||
261760619
|
||||
2023560957
|
||||
-510376121
|
||||
-1768720431
|
||||
150463090
|
||||
2146489060
|
||||
-419855522
|
||||
-1845578808
|
||||
21081689
|
||||
1602588035
|
||||
-963847111
|
||||
-2066724300
|
||||
448061335
|
||||
1840508673
|
||||
832496016
|
||||
-1466453974
|
||||
1457168909
|
||||
568169115
|
||||
-1194015967
|
||||
1600974374
|
||||
678158000
|
||||
-1318940918
|
||||
350116940
|
||||
1675193562
|
||||
-87016096
|
||||
-1915286026
|
||||
330537045
|
||||
1689561283
|
||||
-1967470097
|
||||
436589694
|
||||
1828906216
|
||||
-200559278
|
||||
1858366480
|
||||
432233606
|
||||
638118695
|
||||
1359993777
|
||||
-715156466
|
||||
-1571249000
|
||||
995226914
|
||||
1280755124
|
||||
-768454633
|
||||
-1523228543
|
||||
1010577723
|
||||
-612099012
|
||||
-1400689494
|
||||
898268432
|
||||
1116556678
|
||||
-588654555
|
||||
-1410406221
|
||||
1544739707
|
||||
722856941
|
||||
-1250853298
|
||||
-1032433960
|
||||
1535057762
|
||||
746074100
|
||||
-1709309239
|
||||
-1138148348
|
||||
-886174574
|
||||
1378311464
|
||||
622882238
|
||||
-283662535
|
||||
1903375002
|
||||
108265996
|
||||
-1619176522
|
||||
-394632416
|
||||
-2040110345
|
||||
-245280159
|
||||
1966153182
|
||||
37104968
|
||||
-1690338062
|
||||
-331854748
|
||||
1918687687
|
||||
89909585
|
||||
-1672300309
|
||||
-346716035
|
||||
-242263040
|
||||
2009625574
|
||||
13583216
|
||||
-1200429441
|
||||
-814360855
|
||||
1451001683
|
||||
561756101
|
||||
-1088478618
|
||||
-937946384
|
||||
1360085834
|
||||
639005660
|
||||
-1513753061
|
||||
-758987123
|
||||
1271633719
|
||||
1020045217
|
||||
-1566035454
|
||||
-709950828
|
||||
1285968686
|
||||
1000432568
|
||||
-1424064983
|
||||
840380307
|
||||
-1401701840
|
||||
-613119322
|
||||
1115544348
|
||||
-318716064
|
||||
1946785498
|
||||
51291724
|
||||
73622101
|
||||
-1797488700
|
||||
-472166574
|
||||
2060590824
|
||||
232074878
|
||||
-1817068579
|
||||
-457798837
|
||||
2109725425
|
||||
179890791
|
||||
-2018449518
|
||||
-256387324
|
||||
515487272
|
||||
-136703203
|
||||
1859338919
|
||||
433353265
|
||||
-1989447776
|
||||
-26452170
|
||||
1734676108
|
||||
274873882
|
||||
-1912165447
|
||||
-117335249
|
||||
1611188885
|
||||
678570895
|
||||
-1317307851
|
||||
-964932957
|
||||
1478024960
|
||||
-1240023508
|
||||
-1055813958
|
||||
133444781
|
||||
-1803322804
|
||||
-477869350
|
||||
2111889273
|
||||
182972399
|
||||
-1705446786
|
||||
55681988
|
||||
1933268811
|
||||
71067613
|
||||
-1993053656
|
||||
-30188866
|
||||
1731857156
|
||||
272448402
|
||||
-1906725327
|
||||
-111239513
|
||||
1616367389
|
||||
-2014322150
|
||||
-253177204
|
||||
518435744
|
||||
1854687023
|
||||
428570553
|
||||
1329116058
|
||||
943686412
|
||||
-1503979857
|
||||
-782490055
|
||||
1213560707
|
||||
-1302705440
|
||||
-983729546
|
||||
1549020108
|
||||
726866778
|
||||
-1254650119
|
||||
-1036992913
|
||||
1530523605
|
||||
742317891
|
||||
-1132346670
|
||||
-880348604
|
||||
-1142159669
|
||||
-857000355
|
||||
1440901095
|
||||
585455473
|
||||
-90211429
|
||||
-170288106
|
||||
1825623468
|
||||
467139898
|
||||
-625549167
|
||||
418911847
|
||||
763480886
|
||||
1518795680
|
||||
1906668523
|
||||
-391372207
|
||||
-1616178489
|
||||
-1444978943
|
||||
-680647748
|
||||
-319943403
|
||||
-1679213181
|
||||
93169696
|
||||
1921685686
|
||||
-343684852
|
||||
-1669006950
|
||||
539260505
|
||||
1461929679
|
||||
-836102283
|
||||
-1188223005
|
||||
-736178839
|
||||
-1558577665
|
||||
463755504
|
||||
1822648422
|
||||
-173393444
|
||||
482974953
|
||||
-1607369882
|
||||
-684307472
|
||||
-386643427
|
||||
550311420
|
||||
-1178319802
|
||||
-826051376
|
||||
1353179507
|
||||
664850917
|
||||
-1096187809
|
||||
-911298359
|
||||
1494330712
|
||||
773234126
|
||||
-1222652812
|
||||
-1072104222
|
||||
1585211713
|
||||
695949783
|
||||
-1379592183
|
||||
-624809825
|
||||
-582462293
|
||||
-1437637571
|
||||
860239239
|
||||
1145111825
|
||||
24139525
|
||||
1987536787
|
||||
-576300342
|
||||
-1432262052
|
||||
867128866
|
||||
-2115176069
|
||||
-152319507
|
||||
1877121111
|
||||
417704129
|
||||
-2038350494
|
||||
-242872844
|
||||
1754225742
|
||||
-131055137
|
||||
-1165829709
|
||||
-181785391
|
||||
1814265195
|
||||
-56860422
|
||||
1704276288
|
||||
311558614
|
||||
-1929997195
|
||||
-1728591814
|
||||
-269420372
|
||||
1996073238
|
||||
-1617294301
|
||||
-392348491
|
||||
1905552655
|
||||
110321049
|
||||
138991019
|
||||
-1104217962
|
||||
-920008704
|
||||
-1326092124
|
||||
1593512328
|
||||
704389406
|
||||
-1892672371
|
||||
372854071
|
||||
1631485345
|
||||
-2007115628
|
||||
290752814
|
||||
1716763064
|
||||
417514757
|
||||
-243179472
|
||||
529465628
|
||||
1753756042
|
||||
89511265
|
||||
1918035447
|
||||
1967071726
|
||||
-1017574189
|
||||
-682078052
|
||||
-1387983612
|
||||
-584058485
|
||||
-1440167651
|
||||
-395923676
|
||||
-1620992078
|
||||
107531784
|
||||
-1618916773
|
||||
371549835
|
||||
275689837
|
||||
-2092500476
|
||||
-253065613
|
||||
-880499013
|
||||
-704911953
|
||||
-1560488647
|
||||
1005945987
|
||||
1290974229
|
||||
-761912906
|
||||
-1517219552
|
||||
1016610970
|
||||
1268740108
|
||||
-618631779
|
||||
2116737270
|
||||
-593254427
|
||||
-1415276685
|
||||
850249417
|
||||
1168832095
|
||||
-607230980
|
||||
-1396092054
|
||||
901776080
|
||||
-365000314
|
||||
1933039676
|
||||
70314154
|
||||
-1705738999
|
||||
-313307745
|
||||
1952062501
|
||||
56437939
|
||||
-479802420
|
||||
2054134390
|
||||
224963296
|
||||
-1827913917
|
||||
179807477
|
||||
-1710704284
|
||||
-317748750
|
||||
1946605640
|
||||
50456798
|
||||
-1654293123
|
||||
-362656277
|
||||
250973105
|
||||
-1869537774
|
||||
2124382014
|
||||
160976808
|
||||
-1494920236
|
||||
-773692606
|
||||
-255855534
|
||||
-2017934140
|
||||
514954622
|
||||
1773577704
|
||||
-787808025
|
||||
-1509150607
|
||||
-1293720993
|
||||
736768997
|
||||
1559036787
|
||||
-867033374
|
||||
-1152045452
|
||||
-1137120659
|
||||
1223450428
|
||||
-1584399863
|
||||
948349875
|
||||
1333893925
|
||||
1829974657
|
||||
437518871
|
||||
-2095230035
|
||||
-199597253
|
||||
1786705560
|
||||
494519822
|
||||
898986225
|
||||
88401072
|
||||
-11750377
|
||||
1715856813
|
||||
289592635
|
||||
-1893318504
|
||||
-132026354
|
||||
1630020020
|
||||
372183330
|
||||
-2037379917
|
||||
-241746907
|
||||
1755213215
|
||||
530144521
|
||||
-2114074454
|
||||
-151324612
|
||||
1878239622
|
||||
418683152
|
||||
-1778608923
|
||||
-486824845
|
||||
2079520201
|
||||
217433439
|
||||
-1835970308
|
||||
-443129750
|
||||
2090807760
|
||||
194511174
|
||||
1640995225
|
||||
-121190365
|
||||
-1883113291
|
||||
1154490829
|
||||
869732699
|
||||
-1428274975
|
||||
-91312654
|
||||
-1920361116
|
||||
343985374
|
||||
1669856328
|
||||
-35427861
|
||||
269976758
|
||||
1729147936
|
||||
-1471926312
|
||||
151771187
|
||||
-1716206174
|
||||
-290196172
|
||||
2008720526
|
||||
12424216
|
||||
-1346336668
|
||||
-534258619
|
||||
1977458936
|
||||
-446513815
|
||||
-1838838273
|
||||
191683653
|
||||
2087447763
|
@ -1,75 +0,0 @@
|
||||
-407419017
|
||||
784033777
|
||||
366298937
|
||||
895988372
|
||||
-603711583
|
||||
-1156428839
|
||||
2122203085
|
||||
2031352788
|
||||
-361954439
|
||||
-1032864793
|
||||
-811870072
|
||||
561119625
|
||||
-813932379
|
||||
1830490583
|
||||
1237647953
|
||||
-1479842947
|
||||
1319683656
|
||||
-1599690908
|
||||
1521064455
|
||||
-1264059605
|
||||
1573150238
|
||||
1043086502
|
||||
-1672786476
|
||||
2079547603
|
||||
-1778580993
|
||||
2090771658
|
||||
-1836005914
|
||||
-641002455
|
||||
816361756
|
||||
-559493072
|
||||
958332215
|
||||
-686777317
|
||||
1047738670
|
||||
-797091838
|
||||
712140129
|
||||
-998505395
|
||||
757047672
|
||||
-1022246828
|
||||
1253436548
|
||||
-1531212376
|
||||
1991641173
|
||||
1105410984
|
||||
-1467965795
|
||||
1183776689
|
||||
-1590242634
|
||||
1670785569
|
||||
-1945819982
|
||||
1644905886
|
||||
-1956061013
|
||||
1701216647
|
||||
-1620460316
|
||||
-1744537347
|
||||
1980373457
|
||||
-1850592042
|
||||
2143049210
|
||||
-505888679
|
||||
-2037871826
|
||||
529034456
|
||||
-890753732
|
||||
619072528
|
||||
-1017224937
|
||||
760217659
|
||||
-1003248370
|
||||
708690978
|
||||
-230168376
|
||||
474581476
|
||||
455364093
|
||||
-517246818
|
||||
254087602
|
||||
-431573881
|
||||
-152263639
|
||||
1228719423
|
||||
1800000694
|
||||
1814302895
|
||||
877419710
|
File diff suppressed because it is too large
Load Diff
@ -1,53 +0,0 @@
|
||||
-301921444
|
||||
-2134022665
|
||||
-137734815
|
||||
1773060290
|
||||
514453588
|
||||
-339939625
|
||||
1917978432
|
||||
-1836388036
|
||||
-443694678
|
||||
-346666600
|
||||
-1489571958
|
||||
-847142212
|
||||
560038687
|
||||
-966410340
|
||||
-1975220995
|
||||
-45894549
|
||||
1682630097
|
||||
323867975
|
||||
-1926676252
|
||||
-97619854
|
||||
1663508936
|
||||
337645918
|
||||
-2069951281
|
||||
-208126887
|
||||
1787915747
|
||||
496393589
|
||||
-2081240874
|
||||
-185206720
|
||||
1845275130
|
||||
452696428
|
||||
-1745644391
|
||||
-520838129
|
||||
2046686645
|
||||
251315491
|
||||
-1868672896
|
||||
-409378794
|
||||
2123379116
|
||||
160891194
|
||||
-1725424469
|
||||
-298898371
|
||||
1999011207
|
||||
2182417
|
||||
-1639589710
|
||||
-381491164
|
||||
1884010910
|
||||
814287667
|
||||
883722583
|
||||
-940425166
|
||||
-10819582
|
||||
-395026672
|
||||
-1619824762
|
||||
-1742820449
|
||||
18348581
|
@ -1,121 +0,0 @@
|
||||
1590793086
|
||||
-1615819051
|
||||
1612221673
|
||||
-25421494
|
||||
1947848870
|
||||
2108660877
|
||||
1784807030
|
||||
493276896
|
||||
-2096997565
|
||||
-200971307
|
||||
2010574354
|
||||
13753988
|
||||
-1632285913
|
||||
-374178895
|
||||
1891314187
|
||||
129768093
|
||||
-1761409268
|
||||
-536594534
|
||||
2030921248
|
||||
235558582
|
||||
-1871789291
|
||||
-412486781
|
||||
2120262201
|
||||
157782703
|
||||
-815052003
|
||||
1449269927
|
||||
560278065
|
||||
-1311098976
|
||||
-958593226
|
||||
1607751308
|
||||
684942874
|
||||
-1045380305
|
||||
801022467
|
||||
-1565085706
|
||||
-709779616
|
||||
1287179994
|
||||
1002438220
|
||||
-1512346641
|
||||
-757310599
|
||||
1272253123
|
||||
1020410453
|
||||
-1402132540
|
||||
-613804206
|
||||
1113802472
|
||||
895776382
|
||||
-1426005027
|
||||
-603466933
|
||||
1158578929
|
||||
839496295
|
||||
-2071528193
|
||||
-25841914
|
||||
-1988976752
|
||||
-1728630910
|
||||
1996050094
|
||||
-645639470
|
||||
-1367121340
|
||||
-1489686929
|
||||
1044152277
|
||||
1228623683
|
||||
-1165869557
|
||||
596340657
|
||||
1418485543
|
||||
-1671754073
|
||||
89284381
|
||||
1918201739
|
||||
-2115232061
|
||||
417681273
|
||||
982321134
|
||||
-1528196531
|
||||
1803078226
|
||||
478149316
|
||||
-2055820418
|
||||
-227435544
|
||||
1813319243
|
||||
454180573
|
||||
-2112131225
|
||||
-182689807
|
||||
1705198176
|
||||
312767222
|
||||
-1951587508
|
||||
-55962662
|
||||
1657702009
|
||||
365541103
|
||||
-1933514923
|
||||
-70789181
|
||||
1993333302
|
||||
29944480
|
||||
-1732134118
|
||||
-272200820
|
||||
1906449967
|
||||
111488697
|
||||
-1616085245
|
||||
1343679130
|
||||
655481356
|
||||
546443380
|
||||
-1181007410
|
||||
658506764
|
||||
1209273672
|
||||
1058225630
|
||||
-1585993603
|
||||
-697263893
|
||||
1333381457
|
||||
947845575
|
||||
-1463688106
|
||||
-540617536
|
||||
1188005242
|
||||
835237356
|
||||
-1347674033
|
||||
-659877671
|
||||
1101152611
|
||||
916812277
|
||||
-1713869431
|
||||
-287351521
|
||||
961950128
|
||||
-517202598
|
||||
1904021162
|
||||
-1312433930
|
||||
799100245
|
||||
1487306179
|
||||
-1045484423
|
||||
-1230496529
|
@ -1,948 +0,0 @@
|
||||
2126386893
|
||||
-43150582
|
||||
-1972722788
|
||||
325317158
|
||||
-1951280486
|
||||
1707062198
|
||||
1735739632
|
||||
74654761
|
||||
-815427435
|
||||
-200560547
|
||||
800706503
|
||||
216235005
|
||||
2078559083
|
||||
-346335494
|
||||
-1653984273
|
||||
1774094014
|
||||
1544236612
|
||||
722214610
|
||||
-1251439759
|
||||
1375685931
|
||||
653819325
|
||||
-1197676514
|
||||
-199451675
|
||||
-26529038
|
||||
-1989410204
|
||||
275076062
|
||||
1734501192
|
||||
-116984085
|
||||
1773792122
|
||||
-923700907
|
||||
-1074380349
|
||||
654250105
|
||||
1375215855
|
||||
-811813556
|
||||
673486923
|
||||
1596172509
|
||||
-299351559
|
||||
1998655555
|
||||
122414284
|
||||
160460030
|
||||
736460151
|
||||
1558334945
|
||||
1071915320
|
||||
-695761907
|
||||
-303455035
|
||||
-1695640493
|
||||
65521129
|
||||
1960899967
|
||||
-463476498
|
||||
-1822893960
|
||||
173115842
|
||||
2102835540
|
||||
-483250953
|
||||
-1808458655
|
||||
222055899
|
||||
2050719053
|
||||
1271221439
|
||||
1019378729
|
||||
-1513411181
|
||||
-758375163
|
||||
1286113446
|
||||
1001371696
|
||||
-1566119542
|
||||
-710813412
|
||||
1159644301
|
||||
840561691
|
||||
-1424972383
|
||||
-602434249
|
||||
1114833044
|
||||
896806914
|
||||
-1401069128
|
||||
-612740818
|
||||
1450335451
|
||||
561343565
|
||||
-1199817225
|
||||
-814019231
|
||||
1361025218
|
||||
639150164
|
||||
-1089340946
|
||||
-938030728
|
||||
1487525097
|
||||
799990911
|
||||
-1230522939
|
||||
-1046444717
|
||||
1606684912
|
||||
683876454
|
||||
-1312132644
|
||||
-959626934
|
||||
1890282615
|
||||
128736481
|
||||
-1633350309
|
||||
-375243315
|
||||
2009507950
|
||||
12687608
|
||||
-1714894526
|
||||
-288359980
|
||||
2121327685
|
||||
158848211
|
||||
-1870756503
|
||||
-411453953
|
||||
2031951964
|
||||
236589258
|
||||
-1760345744
|
||||
-535531034
|
||||
1830583315
|
||||
437996677
|
||||
-2095964865
|
||||
-199938647
|
||||
1785837578
|
||||
494307484
|
||||
-2071996122
|
||||
-210179664
|
||||
1674048545
|
||||
348177591
|
||||
-1916168947
|
||||
-87120485
|
||||
1688875064
|
||||
330105006
|
||||
-1968942828
|
||||
-39624318
|
||||
1390312958
|
||||
634998120
|
||||
-1127211822
|
||||
-875090876
|
||||
1437841895
|
||||
582257009
|
||||
-1145186101
|
||||
-860166051
|
||||
1543894476
|
||||
721601882
|
||||
-1307863840
|
||||
-989027210
|
||||
1533555157
|
||||
745472323
|
||||
-1251585799
|
||||
-1033805713
|
||||
1332309402
|
||||
946756876
|
||||
-1587082058
|
||||
-698336224
|
||||
1208265091
|
||||
1057200405
|
||||
-1509242705
|
||||
-787613639
|
||||
1102243240
|
||||
917886270
|
||||
-1346599804
|
||||
-658787310
|
||||
1189028273
|
||||
836243751
|
||||
-1462681443
|
||||
-539594741
|
||||
1773165878
|
||||
515337632
|
||||
-2017575910
|
||||
-256308084
|
||||
1860016431
|
||||
433760697
|
||||
-2133592061
|
||||
-137049963
|
||||
1735120132
|
||||
275572114
|
||||
-1989823448
|
||||
-27097922
|
||||
1611010333
|
||||
385950091
|
||||
-1912049615
|
||||
-116440921
|
||||
1946635602
|
||||
50363844
|
||||
-1710674818
|
||||
-317842200
|
||||
1936361803
|
||||
74299869
|
||||
-1654331289
|
||||
-362555151
|
||||
2061288800
|
||||
232519158
|
||||
-1798134708
|
||||
-472541990
|
||||
2108752249
|
||||
179712495
|
||||
-1816174507
|
||||
-457682749
|
||||
2045980221
|
||||
250879659
|
||||
-1745006831
|
||||
-520454265
|
||||
2124343844
|
||||
161077938
|
||||
-1869575416
|
||||
-409486434
|
||||
1999152655
|
||||
3118745
|
||||
-1725511901
|
||||
-299763787
|
||||
1883595286
|
||||
121787008
|
||||
-1639251142
|
||||
-380882004
|
||||
1682194009
|
||||
323161807
|
||||
-1974837387
|
||||
-45256733
|
||||
1663695424
|
||||
338610902
|
||||
-1926784148
|
||||
-98522118
|
||||
1788851819
|
||||
496535293
|
||||
-2070816953
|
||||
-208214063
|
||||
1844605554
|
||||
452281060
|
||||
-2080631970
|
||||
-184867896
|
||||
1117589237
|
||||
899300963
|
||||
-1399623719
|
||||
-611033265
|
||||
1173408492
|
||||
855112314
|
||||
-1409373248
|
||||
-587621546
|
||||
1279690439
|
||||
994162257
|
||||
-1572280341
|
||||
-716187779
|
||||
1261126366
|
||||
1009545800
|
||||
-1524292622
|
||||
-769518748
|
||||
1596595857
|
||||
674049543
|
||||
-1323008067
|
||||
-970764501
|
||||
1481104008
|
||||
792783390
|
||||
-1236681820
|
||||
-1051817166
|
||||
1374787235
|
||||
653698613
|
||||
-1073743985
|
||||
-923220199
|
||||
1453085370
|
||||
563831340
|
||||
-1198378090
|
||||
-812317952
|
||||
1625825148
|
||||
401551338
|
||||
-1897497008
|
||||
-102674746
|
||||
1736825701
|
||||
277015539
|
||||
-1987331511
|
||||
-24343841
|
||||
1848874830
|
||||
422881240
|
||||
-2143422878
|
||||
-147142924
|
||||
1767789399
|
||||
509174721
|
||||
-2024787333
|
||||
-262733075
|
||||
2103381784
|
||||
173555598
|
||||
-1823379916
|
||||
-464101726
|
||||
2050149121
|
||||
221641623
|
||||
-1807963603
|
||||
-482633029
|
||||
1938065194
|
||||
75741116
|
||||
-1651841530
|
||||
-359803248
|
||||
1961444147
|
||||
65958821
|
||||
-1696128481
|
||||
-304082295
|
||||
1535524788
|
||||
746655522
|
||||
-1249354088
|
||||
-1030787570
|
||||
1558969261
|
||||
736938811
|
||||
-1293575551
|
||||
-975001065
|
||||
1432205190
|
||||
576358160
|
||||
-1152133462
|
||||
-866851268
|
||||
1378907039
|
||||
624378633
|
||||
-1136782669
|
||||
-885448155
|
||||
1177628624
|
||||
825630534
|
||||
-1472246020
|
||||
-549945750
|
||||
1096608713
|
||||
911989599
|
||||
-1353544987
|
||||
-665470349
|
||||
1223337954
|
||||
1072535412
|
||||
-1494956338
|
||||
-773589416
|
||||
1334273019
|
||||
947934061
|
||||
-1584856361
|
||||
-695324095
|
||||
348629363
|
||||
1673566693
|
||||
433964157
|
||||
-1745214763
|
||||
161396598
|
||||
2123991008
|
||||
-409938342
|
||||
-1869093172
|
||||
653380593
|
||||
1375140711
|
||||
-922768675
|
||||
-1074226613
|
||||
563875816
|
||||
1453014910
|
||||
-812486972
|
||||
-1198170542
|
||||
673858499
|
||||
1596814165
|
||||
-970710289
|
||||
-1323101575
|
||||
793216986
|
||||
1480636236
|
||||
-1052121354
|
||||
-1236347296
|
||||
994499477
|
||||
1279388419
|
||||
-716653895
|
||||
-1571845585
|
||||
277186103
|
||||
1736619681
|
||||
-24385765
|
||||
-1987258483
|
||||
1072364208
|
||||
1223543334
|
||||
658101871
|
||||
-241667401
|
||||
-1365378369
|
||||
-644167127
|
||||
1083415443
|
||||
932489989
|
||||
-1443873114
|
||||
-554234320
|
||||
1207852938
|
||||
821653276
|
||||
-1278389514
|
||||
1313261609
|
||||
960624831
|
||||
-1605850875
|
||||
-682649197
|
||||
1227557936
|
||||
-803054198
|
||||
1084047387
|
||||
932868237
|
||||
-1366089417
|
||||
-644607583
|
||||
1206944770
|
||||
821539988
|
||||
-1442912978
|
||||
-554052168
|
||||
1408358477
|
||||
620161243
|
||||
-1107314335
|
||||
-889681417
|
||||
1419517012
|
||||
597372098
|
||||
-1164804744
|
||||
-845853202
|
||||
1563054207
|
||||
707617001
|
||||
-1289473709
|
||||
-1004338747
|
||||
1514640486
|
||||
759211248
|
||||
-1270221494
|
||||
-1018247716
|
||||
1965615329
|
||||
36690039
|
||||
-1691973171
|
||||
-333334181
|
||||
1917136120
|
||||
88218734
|
||||
1755314309
|
||||
530106387
|
||||
-2037278295
|
||||
-241784513
|
||||
1878146204
|
||||
418712586
|
||||
-2114167376
|
||||
-151294682
|
||||
1715761335
|
||||
289620001
|
||||
-2008411749
|
||||
-11722483
|
||||
1630123182
|
||||
372147256
|
||||
-1893214846
|
||||
-132061932
|
||||
1928603409
|
||||
99817351
|
||||
-1661319619
|
||||
-335710549
|
||||
1973019400
|
||||
43963294
|
||||
-1684569564
|
||||
-326061390
|
||||
2083499811
|
||||
187211701
|
||||
-1843278321
|
||||
-450429287
|
||||
2067950394
|
||||
205872044
|
||||
-1790178794
|
||||
-498386304
|
||||
1866676085
|
||||
407111651
|
||||
-2125638055
|
||||
-162896177
|
||||
1747907436
|
||||
522830842
|
||||
-2044685760
|
||||
-249060650
|
||||
1637400391
|
||||
379555793
|
||||
-1885938069
|
||||
-124653827
|
||||
1727363934
|
||||
301091784
|
||||
-1996809614
|
||||
-251164
|
||||
1234831321
|
||||
1050490703
|
||||
-1483446539
|
||||
-795650461
|
||||
1324860352
|
||||
972092246
|
||||
-1594252564
|
||||
-671182214
|
||||
1195479019
|
||||
809942909
|
||||
-1454379321
|
||||
-565649839
|
||||
1076644850
|
||||
925596516
|
||||
-1373492514
|
||||
-651879864
|
||||
1412241341
|
||||
589965099
|
||||
-1172081007
|
||||
-853260793
|
||||
1396757412
|
||||
608690994
|
||||
-1118915960
|
||||
-901152226
|
||||
1526112143
|
||||
770813721
|
||||
-1258750301
|
||||
-1006645707
|
||||
1570462614
|
||||
714894080
|
||||
-1282065734
|
||||
-997062100
|
||||
1810830928
|
||||
484976326
|
||||
-2048821380
|
||||
-219789334
|
||||
1820512841
|
||||
461759199
|
||||
-2104708251
|
||||
-175406093
|
||||
1697947234
|
||||
305377012
|
||||
-1959067826
|
||||
-63057960
|
||||
1650023035
|
||||
358509293
|
||||
-1940440233
|
||||
-78640191
|
||||
1985480244
|
||||
23017122
|
||||
-1739167976
|
||||
-279881842
|
||||
1899348525
|
||||
104002235
|
||||
-1623481599
|
||||
-398683241
|
||||
2021887494
|
||||
260357776
|
||||
-1769083094
|
||||
-510992452
|
||||
2146322975
|
||||
149518985
|
||||
-1847579853
|
||||
-421061723
|
||||
1350645400
|
||||
663094798
|
||||
-1097902156
|
||||
-913807582
|
||||
1475146369
|
||||
552321559
|
||||
-1176333395
|
||||
-823811269
|
||||
1583005354
|
||||
693997116
|
||||
-1336615034
|
||||
-950800624
|
||||
1496808115
|
||||
774916645
|
||||
-1220994145
|
||||
-1069667575
|
||||
1295394556
|
||||
976295530
|
||||
-1556592688
|
||||
-734038202
|
||||
1247535845
|
||||
1029493363
|
||||
-1537899575
|
||||
-749554849
|
||||
1139650254
|
||||
887791192
|
||||
-1377579038
|
||||
-622526604
|
||||
1149266647
|
||||
864508481
|
||||
-1433531397
|
||||
-578208915
|
||||
1086473619
|
||||
935687429
|
||||
-1362352961
|
||||
615116115
|
||||
-1113539351
|
||||
-894989185
|
||||
1422072284
|
||||
600058186
|
||||
-1160939280
|
||||
-842381210
|
||||
2074895707
|
||||
212555213
|
||||
-1784544137
|
||||
-492489503
|
||||
2093064514
|
||||
197562836
|
||||
-1831878546
|
||||
-439815944
|
||||
1970793833
|
||||
40951295
|
||||
-1686533051
|
||||
-327238445
|
||||
1914317168
|
||||
85793254
|
||||
-1676392356
|
||||
-351045430
|
||||
1713075519
|
||||
287065513
|
||||
-2011884525
|
||||
-15588219
|
||||
1635168550
|
||||
376537520
|
||||
-1887907830
|
||||
-125837156
|
||||
1757478157
|
||||
533187995
|
||||
-2033279967
|
||||
-238441289
|
||||
1873623316
|
||||
413796738
|
||||
-2120001480
|
||||
-156997458
|
||||
1507423442
|
||||
786318404
|
||||
-1210640898
|
||||
-1060100760
|
||||
1588900043
|
||||
699629661
|
||||
-1329933849
|
||||
-943857295
|
||||
1459813600
|
||||
537250934
|
||||
-1190355508
|
||||
-838095526
|
||||
1349466361
|
||||
661129327
|
||||
-1100916267
|
||||
-916035261
|
||||
1148085430
|
||||
862540832
|
||||
-1436547686
|
||||
-580438772
|
||||
1124311215
|
||||
872714297
|
||||
-1391607421
|
||||
-636817131
|
||||
1306011805
|
||||
987699211
|
||||
-1546237519
|
||||
-724469465
|
||||
1656181786
|
||||
363881612
|
||||
-1934019274
|
||||
-71432800
|
||||
1708822531
|
||||
316514453
|
||||
-1948978897
|
||||
-53231175
|
||||
1819073576
|
||||
460057790
|
||||
-2107458300
|
||||
-177893998
|
||||
1795233841
|
||||
470165671
|
||||
-2062583523
|
||||
-234337909
|
||||
2130723966
|
||||
134706408
|
||||
-1861343918
|
||||
-435612220
|
||||
2020442215
|
||||
258650353
|
||||
-1771839157
|
||||
-513486371
|
||||
1910230092
|
||||
115145946
|
||||
-1613386400
|
||||
-388850186
|
||||
-1732744839
|
||||
-272672273
|
||||
-566138851
|
||||
-1455007605
|
||||
810486065
|
||||
1195915687
|
||||
-651383804
|
||||
-1372873582
|
||||
925027624
|
||||
1076231614
|
||||
-795156433
|
||||
-1482829639
|
||||
1049919747
|
||||
1234416021
|
||||
-671669194
|
||||
-1594878816
|
||||
972637466
|
||||
1325299084
|
||||
-1007257479
|
||||
-1259255569
|
||||
771234133
|
||||
1526671811
|
||||
-996426656
|
||||
-1281585930
|
||||
714464588
|
||||
1569910234
|
||||
-852627381
|
||||
-1171603235
|
||||
589533543
|
||||
1411686897
|
||||
-901761966
|
||||
-1119419196
|
||||
609113470
|
||||
1397319144
|
||||
-449885995
|
||||
-1842841533
|
||||
186722809
|
||||
2082871663
|
||||
-498955060
|
||||
-1790591910
|
||||
206368224
|
||||
2068569462
|
||||
-336281369
|
||||
-1661734799
|
||||
100311499
|
||||
1929220445
|
||||
-325516034
|
||||
-1684130712
|
||||
43476434
|
||||
1972393284
|
||||
-124233551
|
||||
-1885378521
|
||||
378943901
|
||||
1636894987
|
||||
-680792
|
||||
-1997362114
|
||||
301727108
|
||||
1727843602
|
||||
-163327869
|
||||
-2126192619
|
||||
407744943
|
||||
1867153721
|
||||
-248638310
|
||||
-2044124148
|
||||
522220982
|
||||
1747404064
|
||||
-950380196
|
||||
-1336055350
|
||||
693385328
|
||||
1582500070
|
||||
-1070097083
|
||||
-1221546541
|
||||
775552105
|
||||
1497287935
|
||||
-914239122
|
||||
-1098456584
|
||||
663728194
|
||||
1351123156
|
||||
-823388809
|
||||
-1175771679
|
||||
551711835
|
||||
1474643149
|
||||
-621983432
|
||||
-1377142354
|
||||
887302164
|
||||
1139021954
|
||||
-578777823
|
||||
-1433944649
|
||||
865004557
|
||||
1149885595
|
||||
-734609142
|
||||
-1557007972
|
||||
976789542
|
||||
1296011440
|
||||
-749009645
|
||||
-1537460859
|
||||
1029006399
|
||||
1246909609
|
||||
-63669868
|
||||
-1959573246
|
||||
305797304
|
||||
1698506798
|
||||
-78004851
|
||||
-1939960549
|
||||
358079649
|
||||
1649470519
|
||||
-219156058
|
||||
-2048343760
|
||||
484544650
|
||||
1810276380
|
||||
-176015937
|
||||
-2105211607
|
||||
462181523
|
||||
1821074437
|
||||
-511481360
|
||||
-1769711258
|
||||
260901084
|
||||
2022324298
|
||||
-420565527
|
||||
-1846960769
|
||||
148950213
|
||||
2145909843
|
||||
-279387710
|
||||
-1738550956
|
||||
22446318
|
||||
1985065080
|
||||
-399170085
|
||||
-1624107699
|
||||
104547575
|
||||
1899787361
|
||||
-327742817
|
||||
-1687143927
|
||||
41511859
|
||||
1971215141
|
||||
-350564730
|
||||
-1675756016
|
||||
85241770
|
||||
1913888572
|
||||
-492010835
|
||||
-1783909829
|
||||
212001665
|
||||
2074465047
|
||||
-440318284
|
||||
-1832487390
|
||||
198125464
|
||||
2093487886
|
||||
-239068421
|
||||
-2033767827
|
||||
533625815
|
||||
1758022465
|
||||
-156377374
|
||||
-2119504268
|
||||
413384654
|
||||
1873055576
|
||||
-14970167
|
||||
-2011389345
|
||||
286651365
|
||||
1712505715
|
||||
-126462256
|
||||
-1888393658
|
||||
376977404
|
||||
1635714922
|
||||
-686216617
|
||||
-1608639807
|
||||
957827963
|
||||
1309703149
|
||||
-797643186
|
||||
-1485578536
|
||||
1048219490
|
||||
1232977908
|
||||
-641555867
|
||||
-1362783501
|
||||
936166217
|
||||
1087108063
|
||||
-558930308
|
||||
-1448585494
|
||||
815859536
|
||||
1202075590
|
||||
-894551501
|
||||
-1112995163
|
||||
614488863
|
||||
1403480969
|
||||
-842793430
|
||||
-1161507140
|
||||
600678150
|
||||
1422569360
|
||||
-998919679
|
||||
-1284341097
|
||||
712758061
|
||||
1568465851
|
||||
-1021807080
|
||||
-1273018738
|
||||
756422452
|
||||
1511073698
|
||||
-177456162
|
||||
-2106913976
|
||||
459430642
|
||||
1818585700
|
||||
-234750009
|
||||
-2063151279
|
||||
470785771
|
||||
1795731069
|
||||
-71846932
|
||||
-1934589062
|
||||
364499648
|
||||
1656676950
|
||||
-52791307
|
||||
-1948432541
|
||||
315889369
|
||||
1708336719
|
||||
-388289606
|
||||
-1612965076
|
||||
114641558
|
||||
1909619200
|
||||
-273223773
|
||||
-1733173451
|
||||
28872335
|
||||
1992277529
|
||||
-436165752
|
||||
-1861774562
|
||||
135185060
|
||||
2131358258
|
||||
-512923759
|
||||
-1771415801
|
||||
258148029
|
||||
2019833387
|
||||
-838722794
|
||||
-1190843520
|
||||
537688634
|
||||
1460357804
|
||||
-915415281
|
||||
-1100419175
|
||||
660717091
|
||||
1348898485
|
||||
-1059482844
|
||||
-1210145870
|
||||
785904136
|
||||
1506853534
|
||||
-944482499
|
||||
-1330419797
|
||||
700069393
|
||||
1589446279
|
||||
-743109774
|
||||
-1531823132
|
||||
1035692638
|
||||
1253857992
|
||||
-723988629
|
||||
-1545601027
|
||||
987147847
|
||||
1305583313
|
||||
-579960000
|
||||
-1435913258
|
||||
861987436
|
||||
1147654906
|
||||
-637319335
|
||||
-1392216113
|
||||
873277045
|
||||
1124734691
|
||||
-1661690443
|
||||
-336351965
|
||||
1929051289
|
||||
100518927
|
||||
-1684448852
|
||||
-325162694
|
||||
1972844672
|
||||
42993686
|
||||
-1842408057
|
||||
-450353903
|
||||
2082567339
|
||||
187057213
|
||||
-1790783074
|
||||
-498736888
|
||||
2068623538
|
||||
206274596
|
||||
-1556702120
|
||||
-734942002
|
||||
1295580532
|
||||
977260002
|
||||
-1537517503
|
||||
1028786683
|
||||
-1376971670
|
||||
-622189316
|
||||
1138980166
|
||||
887375312
|
||||
-1434398605
|
||||
-263739866
|
||||
1344313786
|
||||
-1186775921
|
||||
-834401255
|
||||
1464688035
|
||||
1877341587
|
||||
-331976620
|
||||
-1691270974
|
||||
37228920
|
||||
-181583595
|
||||
455286841
|
||||
108674620
|
||||
-1851201612
|
||||
144815630
|
||||
2141619864
|
||||
-507374789
|
||||
1524826751
|
||||
-1484653819
|
||||
-1662002227
|
||||
259539141
|
||||
873881613
|
||||
-352220930
|
||||
-797988810
|
||||
693075464
|
||||
304176832
|
||||
-796809641
|
||||
-1660970818
|
||||
-336025560
|
File diff suppressed because it is too large
Load Diff
@ -1,19 +0,0 @@
|
||||
-378745019
|
||||
1858274523
|
||||
829915701
|
||||
-2095266121
|
||||
-199494111
|
||||
1829939099
|
||||
437622541
|
||||
-2072968530
|
||||
-210357704
|
||||
1786733442
|
||||
494424852
|
||||
-1916318075
|
||||
-88048109
|
||||
1674129321
|
||||
-1230410163
|
||||
-1045537061
|
||||
684588014
|
||||
386923011
|
||||
-2099336064
|
@ -1 +0,0 @@
|
||||
-1230410163
|
@ -1 +0,0 @@
|
||||
-1045537061
|
@ -1,17 +0,0 @@
|
||||
-378745019
|
||||
1858274523
|
||||
829915701
|
||||
-2095266121
|
||||
-199494111
|
||||
1829939099
|
||||
437622541
|
||||
-2072968530
|
||||
-210357704
|
||||
1786733442
|
||||
494424852
|
||||
-1916318075
|
||||
-88048109
|
||||
1674129321
|
||||
684588014
|
||||
386923011
|
||||
-2099336064
|
993592
test_files/uctable.C.js
993592
test_files/uctable.C.js
File diff suppressed because it is too large
Load Diff
@ -1,67 +0,0 @@
|
||||
var unicode = [
|
||||
'\x00',
|
||||
'\x01',
|
||||
'\x02',
|
||||
'\x03',
|
||||
'\x04',
|
||||
'\x05',
|
||||
'\x06',
|
||||
'\x07',
|
||||
'\x08',
|
||||
'\x09',
|
||||
'\x0A',
|
||||
'\x0B',
|
||||
'\x0C',
|
||||
'\x0D',
|
||||
'\x0E',
|
||||
'\x0F',
|
||||
'\x10',
|
||||
'\x11',
|
||||
'\x12',
|
||||
'\x13',
|
||||
'\x14',
|
||||
'\x15',
|
||||
'\x16',
|
||||
'\x17',
|
||||
'\x18',
|
||||
'\x19',
|
||||
'\x1A',
|
||||
'\x1B',
|
||||
'\x1C',
|
||||
'\x1D',
|
||||
'\x1E',
|
||||
'\x1F',
|
||||
'\x7F',
|
||||
'\x80',
|
||||
'\x81',
|
||||
'\x82',
|
||||
'\x83',
|
||||
'\x84',
|
||||
'\x85',
|
||||
'\x86',
|
||||
'\x87',
|
||||
'\x88',
|
||||
'\x89',
|
||||
'\x8A',
|
||||
'\x8B',
|
||||
'\x8C',
|
||||
'\x8D',
|
||||
'\x8E',
|
||||
'\x8F',
|
||||
'\x90',
|
||||
'\x91',
|
||||
'\x92',
|
||||
'\x93',
|
||||
'\x94',
|
||||
'\x95',
|
||||
'\x96',
|
||||
'\x97',
|
||||
'\x98',
|
||||
'\x99',
|
||||
'\x9A',
|
||||
'\x9B',
|
||||
'\x9C',
|
||||
'\x9D',
|
||||
'\x9E',
|
||||
'\x9F'
|
||||
];if(typeof module !== 'undefined') module.exports = unicode;
|
@ -1,152 +0,0 @@
|
||||
var unicode = [
|
||||
'\xAD',
|
||||
'\u0600',
|
||||
'\u0601',
|
||||
'\u0602',
|
||||
'\u0603',
|
||||
'\u0604',
|
||||
'\u0605',
|
||||
'\u061C',
|
||||
'\u06DD',
|
||||
'\u070F',
|
||||
'\u180E',
|
||||
'\u200B',
|
||||
'\u200C',
|
||||
'\u200D',
|
||||
'\u200E',
|
||||
'\u200F',
|
||||
'\u202A',
|
||||
'\u202B',
|
||||
'\u202C',
|
||||
'\u202D',
|
||||
'\u202E',
|
||||
'\u2060',
|
||||
'\u2061',
|
||||
'\u2062',
|
||||
'\u2063',
|
||||
'\u2064',
|
||||
'\u2066',
|
||||
'\u2067',
|
||||
'\u2068',
|
||||
'\u2069',
|
||||
'\u206A',
|
||||
'\u206B',
|
||||
'\u206C',
|
||||
'\u206D',
|
||||
'\u206E',
|
||||
'\u206F',
|
||||
'\uFEFF',
|
||||
'\uFFF9',
|
||||
'\uFFFA',
|
||||
'\uFFFB',
|
||||
'\uD804\uDCBD',
|
||||
'\uD82F\uDCA0',
|
||||
'\uD82F\uDCA1',
|
||||
'\uD82F\uDCA2',
|
||||
'\uD82F\uDCA3',
|
||||
'\uD834\uDD73',
|
||||
'\uD834\uDD74',
|
||||
'\uD834\uDD75',
|
||||
'\uD834\uDD76',
|
||||
'\uD834\uDD77',
|
||||
'\uD834\uDD78',
|
||||
'\uD834\uDD79',
|
||||
'\uD834\uDD7A',
|
||||
'\uDB40\uDC01',
|
||||
'\uDB40\uDC20',
|
||||
'\uDB40\uDC21',
|
||||
'\uDB40\uDC22',
|
||||
'\uDB40\uDC23',
|
||||
'\uDB40\uDC24',
|
||||
'\uDB40\uDC25',
|
||||
'\uDB40\uDC26',
|
||||
'\uDB40\uDC27',
|
||||
'\uDB40\uDC28',
|
||||
'\uDB40\uDC29',
|
||||
'\uDB40\uDC2A',
|
||||
'\uDB40\uDC2B',
|
||||
'\uDB40\uDC2C',
|
||||
'\uDB40\uDC2D',
|
||||
'\uDB40\uDC2E',
|
||||
'\uDB40\uDC2F',
|
||||
'\uDB40\uDC30',
|
||||
'\uDB40\uDC31',
|
||||
'\uDB40\uDC32',
|
||||
'\uDB40\uDC33',
|
||||
'\uDB40\uDC34',
|
||||
'\uDB40\uDC35',
|
||||
'\uDB40\uDC36',
|
||||
'\uDB40\uDC37',
|
||||
'\uDB40\uDC38',
|
||||
'\uDB40\uDC39',
|
||||
'\uDB40\uDC3A',
|
||||
'\uDB40\uDC3B',
|
||||
'\uDB40\uDC3C',
|
||||
'\uDB40\uDC3D',
|
||||
'\uDB40\uDC3E',
|
||||
'\uDB40\uDC3F',
|
||||
'\uDB40\uDC40',
|
||||
'\uDB40\uDC41',
|
||||
'\uDB40\uDC42',
|
||||
'\uDB40\uDC43',
|
||||
'\uDB40\uDC44',
|
||||
'\uDB40\uDC45',
|
||||
'\uDB40\uDC46',
|
||||
'\uDB40\uDC47',
|
||||
'\uDB40\uDC48',
|
||||
'\uDB40\uDC49',
|
||||
'\uDB40\uDC4A',
|
||||
'\uDB40\uDC4B',
|
||||
'\uDB40\uDC4C',
|
||||
'\uDB40\uDC4D',
|
||||
'\uDB40\uDC4E',
|
||||
'\uDB40\uDC4F',
|
||||
'\uDB40\uDC50',
|
||||
'\uDB40\uDC51',
|
||||
'\uDB40\uDC52',
|
||||
'\uDB40\uDC53',
|
||||
'\uDB40\uDC54',
|
||||
'\uDB40\uDC55',
|
||||
'\uDB40\uDC56',
|
||||
'\uDB40\uDC57',
|
||||
'\uDB40\uDC58',
|
||||
'\uDB40\uDC59',
|
||||
'\uDB40\uDC5A',
|
||||
'\uDB40\uDC5B',
|
||||
'\uDB40\uDC5C',
|
||||
'\uDB40\uDC5D',
|
||||
'\uDB40\uDC5E',
|
||||
'\uDB40\uDC5F',
|
||||
'\uDB40\uDC60',
|
||||
'\uDB40\uDC61',
|
||||
'\uDB40\uDC62',
|
||||
'\uDB40\uDC63',
|
||||
'\uDB40\uDC64',
|
||||
'\uDB40\uDC65',
|
||||
'\uDB40\uDC66',
|
||||
'\uDB40\uDC67',
|
||||
'\uDB40\uDC68',
|
||||
'\uDB40\uDC69',
|
||||
'\uDB40\uDC6A',
|
||||
'\uDB40\uDC6B',
|
||||
'\uDB40\uDC6C',
|
||||
'\uDB40\uDC6D',
|
||||
'\uDB40\uDC6E',
|
||||
'\uDB40\uDC6F',
|
||||
'\uDB40\uDC70',
|
||||
'\uDB40\uDC71',
|
||||
'\uDB40\uDC72',
|
||||
'\uDB40\uDC73',
|
||||
'\uDB40\uDC74',
|
||||
'\uDB40\uDC75',
|
||||
'\uDB40\uDC76',
|
||||
'\uDB40\uDC77',
|
||||
'\uDB40\uDC78',
|
||||
'\uDB40\uDC79',
|
||||
'\uDB40\uDC7A',
|
||||
'\uDB40\uDC7B',
|
||||
'\uDB40\uDC7C',
|
||||
'\uDB40\uDC7D',
|
||||
'\uDB40\uDC7E',
|
||||
'\uDB40\uDC7F'
|
||||
];if(typeof module !== 'undefined') module.exports = unicode;
|
853861
test_files/uctable.Cn.js
853861
test_files/uctable.Cn.js
File diff suppressed because it is too large
Load Diff
137470
test_files/uctable.Co.js
137470
test_files/uctable.Co.js
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
109593
test_files/uctable.L.js
109593
test_files/uctable.L.js
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,250 +0,0 @@
|
||||
var unicode = [
|
||||
'\u02B0',
|
||||
'\u02B1',
|
||||
'\u02B2',
|
||||
'\u02B3',
|
||||
'\u02B4',
|
||||
'\u02B5',
|
||||
'\u02B6',
|
||||
'\u02B7',
|
||||
'\u02B8',
|
||||
'\u02B9',
|
||||
'\u02BA',
|
||||
'\u02BB',
|
||||
'\u02BC',
|
||||
'\u02BD',
|
||||
'\u02BE',
|
||||
'\u02BF',
|
||||
'\u02C0',
|
||||
'\u02C1',
|
||||
'\u02C6',
|
||||
'\u02C7',
|
||||
'\u02C8',
|
||||
'\u02C9',
|
||||
'\u02CA',
|
||||
'\u02CB',
|
||||
'\u02CC',
|
||||
'\u02CD',
|
||||
'\u02CE',
|
||||
'\u02CF',
|
||||
'\u02D0',
|
||||
'\u02D1',
|
||||
'\u02E0',
|
||||
'\u02E1',
|
||||
'\u02E2',
|
||||
'\u02E3',
|
||||
'\u02E4',
|
||||
'\u02EC',
|
||||
'\u02EE',
|
||||
'\u0374',
|
||||
'\u037A',
|
||||
'\u0559',
|
||||
'\u0640',
|
||||
'\u06E5',
|
||||
'\u06E6',
|
||||
'\u07F4',
|
||||
'\u07F5',
|
||||
'\u07FA',
|
||||
'\u081A',
|
||||
'\u0824',
|
||||
'\u0828',
|
||||
'\u0971',
|
||||
'\u0E46',
|
||||
'\u0EC6',
|
||||
'\u10FC',
|
||||
'\u17D7',
|
||||
'\u1843',
|
||||
'\u1AA7',
|
||||
'\u1C78',
|
||||
'\u1C79',
|
||||
'\u1C7A',
|
||||
'\u1C7B',
|
||||
'\u1C7C',
|
||||
'\u1C7D',
|
||||
'\u1D2C',
|
||||
'\u1D2D',
|
||||
'\u1D2E',
|
||||
'\u1D2F',
|
||||
'\u1D30',
|
||||
'\u1D31',
|
||||
'\u1D32',
|
||||
'\u1D33',
|
||||
'\u1D34',
|
||||
'\u1D35',
|
||||
'\u1D36',
|
||||
'\u1D37',
|
||||
'\u1D38',
|
||||
'\u1D39',
|
||||
'\u1D3A',
|
||||
'\u1D3B',
|
||||
'\u1D3C',
|
||||
'\u1D3D',
|
||||
'\u1D3E',
|
||||
'\u1D3F',
|
||||
'\u1D40',
|
||||
'\u1D41',
|
||||
'\u1D42',
|
||||
'\u1D43',
|
||||
'\u1D44',
|
||||
'\u1D45',
|
||||
'\u1D46',
|
||||
'\u1D47',
|
||||
'\u1D48',
|
||||
'\u1D49',
|
||||
'\u1D4A',
|
||||
'\u1D4B',
|
||||
'\u1D4C',
|
||||
'\u1D4D',
|
||||
'\u1D4E',
|
||||
'\u1D4F',
|
||||
'\u1D50',
|
||||
'\u1D51',
|
||||
'\u1D52',
|
||||
'\u1D53',
|
||||
'\u1D54',
|
||||
'\u1D55',
|
||||
'\u1D56',
|
||||
'\u1D57',
|
||||
'\u1D58',
|
||||
'\u1D59',
|
||||
'\u1D5A',
|
||||
'\u1D5B',
|
||||
'\u1D5C',
|
||||
'\u1D5D',
|
||||
'\u1D5E',
|
||||
'\u1D5F',
|
||||
'\u1D60',
|
||||
'\u1D61',
|
||||
'\u1D62',
|
||||
'\u1D63',
|
||||
'\u1D64',
|
||||
'\u1D65',
|
||||
'\u1D66',
|
||||
'\u1D67',
|
||||
'\u1D68',
|
||||
'\u1D69',
|
||||
'\u1D6A',
|
||||
'\u1D78',
|
||||
'\u1D9B',
|
||||
'\u1D9C',
|
||||
'\u1D9D',
|
||||
'\u1D9E',
|
||||
'\u1D9F',
|
||||
'\u1DA0',
|
||||
'\u1DA1',
|
||||
'\u1DA2',
|
||||
'\u1DA3',
|
||||
'\u1DA4',
|
||||
'\u1DA5',
|
||||
'\u1DA6',
|
||||
'\u1DA7',
|
||||
'\u1DA8',
|
||||
'\u1DA9',
|
||||
'\u1DAA',
|
||||
'\u1DAB',
|
||||
'\u1DAC',
|
||||
'\u1DAD',
|
||||
'\u1DAE',
|
||||
'\u1DAF',
|
||||
'\u1DB0',
|
||||
'\u1DB1',
|
||||
'\u1DB2',
|
||||
'\u1DB3',
|
||||
'\u1DB4',
|
||||
'\u1DB5',
|
||||
'\u1DB6',
|
||||
'\u1DB7',
|
||||
'\u1DB8',
|
||||
'\u1DB9',
|
||||
'\u1DBA',
|
||||
'\u1DBB',
|
||||
'\u1DBC',
|
||||
'\u1DBD',
|
||||
'\u1DBE',
|
||||
'\u1DBF',
|
||||
'\u2071',
|
||||
'\u207F',
|
||||
'\u2090',
|
||||
'\u2091',
|
||||
'\u2092',
|
||||
'\u2093',
|
||||
'\u2094',
|
||||
'\u2095',
|
||||
'\u2096',
|
||||
'\u2097',
|
||||
'\u2098',
|
||||
'\u2099',
|
||||
'\u209A',
|
||||
'\u209B',
|
||||
'\u209C',
|
||||
'\u2C7C',
|
||||
'\u2C7D',
|
||||
'\u2D6F',
|
||||
'\u2E2F',
|
||||
'\u3005',
|
||||
'\u3031',
|
||||
'\u3032',
|
||||
'\u3033',
|
||||
'\u3034',
|
||||
'\u3035',
|
||||
'\u303B',
|
||||
'\u309D',
|
||||
'\u309E',
|
||||
'\u30FC',
|
||||
'\u30FD',
|
||||
'\u30FE',
|
||||
'\uA015',
|
||||
'\uA4F8',
|
||||
'\uA4F9',
|
||||
'\uA4FA',
|
||||
'\uA4FB',
|
||||
'\uA4FC',
|
||||
'\uA4FD',
|
||||
'\uA60C',
|
||||
'\uA67F',
|
||||
'\uA69C',
|
||||
'\uA69D',
|
||||
'\uA717',
|
||||
'\uA718',
|
||||
'\uA719',
|
||||
'\uA71A',
|
||||
'\uA71B',
|
||||
'\uA71C',
|
||||
'\uA71D',
|
||||
'\uA71E',
|
||||
'\uA71F',
|
||||
'\uA770',
|
||||
'\uA788',
|
||||
'\uA7F8',
|
||||
'\uA7F9',
|
||||
'\uA9CF',
|
||||
'\uA9E6',
|
||||
'\uAA70',
|
||||
'\uAADD',
|
||||
'\uAAF3',
|
||||
'\uAAF4',
|
||||
'\uAB5C',
|
||||
'\uAB5D',
|
||||
'\uAB5E',
|
||||
'\uAB5F',
|
||||
'\uFF70',
|
||||
'\uFF9E',
|
||||
'\uFF9F',
|
||||
'\uD81A\uDF40',
|
||||
'\uD81A\uDF41',
|
||||
'\uD81A\uDF42',
|
||||
'\uD81A\uDF43',
|
||||
'\uD81B\uDF93',
|
||||
'\uD81B\uDF94',
|
||||
'\uD81B\uDF95',
|
||||
'\uD81B\uDF96',
|
||||
'\uD81B\uDF97',
|
||||
'\uD81B\uDF98',
|
||||
'\uD81B\uDF99',
|
||||
'\uD81B\uDF9A',
|
||||
'\uD81B\uDF9B',
|
||||
'\uD81B\uDF9C',
|
||||
'\uD81B\uDF9D',
|
||||
'\uD81B\uDF9E',
|
||||
'\uD81B\uDF9F'
|
||||
];if(typeof module !== 'undefined') module.exports = unicode;
|
105699
test_files/uctable.Lo.js
105699
test_files/uctable.Lo.js
File diff suppressed because it is too large
Load Diff
@ -1,33 +0,0 @@
|
||||
var unicode = [
|
||||
'\u01C5',
|
||||
'\u01C8',
|
||||
'\u01CB',
|
||||
'\u01F2',
|
||||
'\u1F88',
|
||||
'\u1F89',
|
||||
'\u1F8A',
|
||||
'\u1F8B',
|
||||
'\u1F8C',
|
||||
'\u1F8D',
|
||||
'\u1F8E',
|
||||
'\u1F8F',
|
||||
'\u1F98',
|
||||
'\u1F99',
|
||||
'\u1F9A',
|
||||
'\u1F9B',
|
||||
'\u1F9C',
|
||||
'\u1F9D',
|
||||
'\u1F9E',
|
||||
'\u1F9F',
|
||||
'\u1FA8',
|
||||
'\u1FA9',
|
||||
'\u1FAA',
|
||||
'\u1FAB',
|
||||
'\u1FAC',
|
||||
'\u1FAD',
|
||||
'\u1FAE',
|
||||
'\u1FAF',
|
||||
'\u1FBC',
|
||||
'\u1FCC',
|
||||
'\u1FFC'
|
||||
];if(typeof module !== 'undefined') module.exports = unicode;
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,385 +0,0 @@
|
||||
var unicode = [
|
||||
'\u0903',
|
||||
'\u093B',
|
||||
'\u093E',
|
||||
'\u093F',
|
||||
'\u0940',
|
||||
'\u0949',
|
||||
'\u094A',
|
||||
'\u094B',
|
||||
'\u094C',
|
||||
'\u094E',
|
||||
'\u094F',
|
||||
'\u0982',
|
||||
'\u0983',
|
||||
'\u09BE',
|
||||
'\u09BF',
|
||||
'\u09C0',
|
||||
'\u09C7',
|
||||
'\u09C8',
|
||||
'\u09CB',
|
||||
'\u09CC',
|
||||
'\u09D7',
|
||||
'\u0A03',
|
||||
'\u0A3E',
|
||||
'\u0A3F',
|
||||
'\u0A40',
|
||||
'\u0A83',
|
||||
'\u0ABE',
|
||||
'\u0ABF',
|
||||
'\u0AC0',
|
||||
'\u0AC9',
|
||||
'\u0ACB',
|
||||
'\u0ACC',
|
||||
'\u0B02',
|
||||
'\u0B03',
|
||||
'\u0B3E',
|
||||
'\u0B40',
|
||||
'\u0B47',
|
||||
'\u0B48',
|
||||
'\u0B4B',
|
||||
'\u0B4C',
|
||||
'\u0B57',
|
||||
'\u0BBE',
|
||||
'\u0BBF',
|
||||
'\u0BC1',
|
||||
'\u0BC2',
|
||||
'\u0BC6',
|
||||
'\u0BC7',
|
||||
'\u0BC8',
|
||||
'\u0BCA',
|
||||
'\u0BCB',
|
||||
'\u0BCC',
|
||||
'\u0BD7',
|
||||
'\u0C01',
|
||||
'\u0C02',
|
||||
'\u0C03',
|
||||
'\u0C41',
|
||||
'\u0C42',
|
||||
'\u0C43',
|
||||
'\u0C44',
|
||||
'\u0C82',
|
||||
'\u0C83',
|
||||
'\u0CBE',
|
||||
'\u0CC0',
|
||||
'\u0CC1',
|
||||
'\u0CC2',
|
||||
'\u0CC3',
|
||||
'\u0CC4',
|
||||
'\u0CC7',
|
||||
'\u0CC8',
|
||||
'\u0CCA',
|
||||
'\u0CCB',
|
||||
'\u0CD5',
|
||||
'\u0CD6',
|
||||
'\u0D02',
|
||||
'\u0D03',
|
||||
'\u0D3E',
|
||||
'\u0D3F',
|
||||
'\u0D40',
|
||||
'\u0D46',
|
||||
'\u0D47',
|
||||
'\u0D48',
|
||||
'\u0D4A',
|
||||
'\u0D4B',
|
||||
'\u0D4C',
|
||||
'\u0D57',
|
||||
'\u0D82',
|
||||
'\u0D83',
|
||||
'\u0DCF',
|
||||
'\u0DD0',
|
||||
'\u0DD1',
|
||||
'\u0DD8',
|
||||
'\u0DD9',
|
||||
'\u0DDA',
|
||||
'\u0DDB',
|
||||
'\u0DDC',
|
||||
'\u0DDD',
|
||||
'\u0DDE',
|
||||
'\u0DDF',
|
||||
'\u0DF2',
|
||||
'\u0DF3',
|
||||
'\u0F3E',
|
||||
'\u0F3F',
|
||||
'\u0F7F',
|
||||
'\u102B',
|
||||
'\u102C',
|
||||
'\u1031',
|
||||
'\u1038',
|
||||
'\u103B',
|
||||
'\u103C',
|
||||
'\u1056',
|
||||
'\u1057',
|
||||
'\u1062',
|
||||
'\u1063',
|
||||
'\u1064',
|
||||
'\u1067',
|
||||
'\u1068',
|
||||
'\u1069',
|
||||
'\u106A',
|
||||
'\u106B',
|
||||
'\u106C',
|
||||
'\u106D',
|
||||
'\u1083',
|
||||
'\u1084',
|
||||
'\u1087',
|
||||
'\u1088',
|
||||
'\u1089',
|
||||
'\u108A',
|
||||
'\u108B',
|
||||
'\u108C',
|
||||
'\u108F',
|
||||
'\u109A',
|
||||
'\u109B',
|
||||
'\u109C',
|
||||
'\u17B6',
|
||||
'\u17BE',
|
||||
'\u17BF',
|
||||
'\u17C0',
|
||||
'\u17C1',
|
||||
'\u17C2',
|
||||
'\u17C3',
|
||||
'\u17C4',
|
||||
'\u17C5',
|
||||
'\u17C7',
|
||||
'\u17C8',
|
||||
'\u1923',
|
||||
'\u1924',
|
||||
'\u1925',
|
||||
'\u1926',
|
||||
'\u1929',
|
||||
'\u192A',
|
||||
'\u192B',
|
||||
'\u1930',
|
||||
'\u1931',
|
||||
'\u1933',
|
||||
'\u1934',
|
||||
'\u1935',
|
||||
'\u1936',
|
||||
'\u1937',
|
||||
'\u1938',
|
||||
'\u1A19',
|
||||
'\u1A1A',
|
||||
'\u1A55',
|
||||
'\u1A57',
|
||||
'\u1A61',
|
||||
'\u1A63',
|
||||
'\u1A64',
|
||||
'\u1A6D',
|
||||
'\u1A6E',
|
||||
'\u1A6F',
|
||||
'\u1A70',
|
||||
'\u1A71',
|
||||
'\u1A72',
|
||||
'\u1B04',
|
||||
'\u1B35',
|
||||
'\u1B3B',
|
||||
'\u1B3D',
|
||||
'\u1B3E',
|
||||
'\u1B3F',
|
||||
'\u1B40',
|
||||
'\u1B41',
|
||||
'\u1B43',
|
||||
'\u1B44',
|
||||
'\u1B82',
|
||||
'\u1BA1',
|
||||
'\u1BA6',
|
||||
'\u1BA7',
|
||||
'\u1BAA',
|
||||
'\u1BE7',
|
||||
'\u1BEA',
|
||||
'\u1BEB',
|
||||
'\u1BEC',
|
||||
'\u1BEE',
|
||||
'\u1BF2',
|
||||
'\u1BF3',
|
||||
'\u1C24',
|
||||
'\u1C25',
|
||||
'\u1C26',
|
||||
'\u1C27',
|
||||
'\u1C28',
|
||||
'\u1C29',
|
||||
'\u1C2A',
|
||||
'\u1C2B',
|
||||
'\u1C34',
|
||||
'\u1C35',
|
||||
'\u1CE1',
|
||||
'\u1CF2',
|
||||
'\u1CF3',
|
||||
'\u302E',
|
||||
'\u302F',
|
||||
'\uA823',
|
||||
'\uA824',
|
||||
'\uA827',
|
||||
'\uA880',
|
||||
'\uA881',
|
||||
'\uA8B4',
|
||||
'\uA8B5',
|
||||
'\uA8B6',
|
||||
'\uA8B7',
|
||||
'\uA8B8',
|
||||
'\uA8B9',
|
||||
'\uA8BA',
|
||||
'\uA8BB',
|
||||
'\uA8BC',
|
||||
'\uA8BD',
|
||||
'\uA8BE',
|
||||
'\uA8BF',
|
||||
'\uA8C0',
|
||||
'\uA8C1',
|
||||
'\uA8C2',
|
||||
'\uA8C3',
|
||||
'\uA952',
|
||||
'\uA953',
|
||||
'\uA983',
|
||||
'\uA9B4',
|
||||
'\uA9B5',
|
||||
'\uA9BA',
|
||||
'\uA9BB',
|
||||
'\uA9BD',
|
||||
'\uA9BE',
|
||||
'\uA9BF',
|
||||
'\uA9C0',
|
||||
'\uAA2F',
|
||||
'\uAA30',
|
||||
'\uAA33',
|
||||
'\uAA34',
|
||||
'\uAA4D',
|
||||
'\uAA7B',
|
||||
'\uAA7D',
|
||||
'\uAAEB',
|
||||
'\uAAEE',
|
||||
'\uAAEF',
|
||||
'\uAAF5',
|
||||
'\uABE3',
|
||||
'\uABE4',
|
||||
'\uABE6',
|
||||
'\uABE7',
|
||||
'\uABE9',
|
||||
'\uABEA',
|
||||
'\uABEC',
|
||||
'\uD804\uDC00',
|
||||
'\uD804\uDC02',
|
||||
'\uD804\uDC82',
|
||||
'\uD804\uDCB0',
|
||||
'\uD804\uDCB1',
|
||||
'\uD804\uDCB2',
|
||||
'\uD804\uDCB7',
|
||||
'\uD804\uDCB8',
|
||||
'\uD804\uDD2C',
|
||||
'\uD804\uDD82',
|
||||
'\uD804\uDDB3',
|
||||
'\uD804\uDDB4',
|
||||
'\uD804\uDDB5',
|
||||
'\uD804\uDDBF',
|
||||
'\uD804\uDDC0',
|
||||
'\uD804\uDE2C',
|
||||
'\uD804\uDE2D',
|
||||
'\uD804\uDE2E',
|
||||
'\uD804\uDE32',
|
||||
'\uD804\uDE33',
|
||||
'\uD804\uDE35',
|
||||
'\uD804\uDEE0',
|
||||
'\uD804\uDEE1',
|
||||
'\uD804\uDEE2',
|
||||
'\uD804\uDF02',
|
||||
'\uD804\uDF03',
|
||||
'\uD804\uDF3E',
|
||||
'\uD804\uDF3F',
|
||||
'\uD804\uDF41',
|
||||
'\uD804\uDF42',
|
||||
'\uD804\uDF43',
|
||||
'\uD804\uDF44',
|
||||
'\uD804\uDF47',
|
||||
'\uD804\uDF48',
|
||||
'\uD804\uDF4B',
|
||||
'\uD804\uDF4C',
|
||||
'\uD804\uDF4D',
|
||||
'\uD804\uDF57',
|
||||
'\uD804\uDF62',
|
||||
'\uD804\uDF63',
|
||||
'\uD805\uDCB0',
|
||||
'\uD805\uDCB1',
|
||||
'\uD805\uDCB2',
|
||||
'\uD805\uDCB9',
|
||||
'\uD805\uDCBB',
|
||||
'\uD805\uDCBC',
|
||||
'\uD805\uDCBD',
|
||||
'\uD805\uDCBE',
|
||||
'\uD805\uDCC1',
|
||||
'\uD805\uDDAF',
|
||||
'\uD805\uDDB0',
|
||||
'\uD805\uDDB1',
|
||||
'\uD805\uDDB8',
|
||||
'\uD805\uDDB9',
|
||||
'\uD805\uDDBA',
|
||||
'\uD805\uDDBB',
|
||||
'\uD805\uDDBE',
|
||||
'\uD805\uDE30',
|
||||
'\uD805\uDE31',
|
||||
'\uD805\uDE32',
|
||||
'\uD805\uDE3B',
|
||||
'\uD805\uDE3C',
|
||||
'\uD805\uDE3E',
|
||||
'\uD805\uDEAC',
|
||||
'\uD805\uDEAE',
|
||||
'\uD805\uDEAF',
|
||||
'\uD805\uDEB6',
|
||||
'\uD805\uDF20',
|
||||
'\uD805\uDF21',
|
||||
'\uD805\uDF26',
|
||||
'\uD81B\uDF51',
|
||||
'\uD81B\uDF52',
|
||||
'\uD81B\uDF53',
|
||||
'\uD81B\uDF54',
|
||||
'\uD81B\uDF55',
|
||||
'\uD81B\uDF56',
|
||||
'\uD81B\uDF57',
|
||||
'\uD81B\uDF58',
|
||||
'\uD81B\uDF59',
|
||||
'\uD81B\uDF5A',
|
||||
'\uD81B\uDF5B',
|
||||
'\uD81B\uDF5C',
|
||||
'\uD81B\uDF5D',
|
||||
'\uD81B\uDF5E',
|
||||
'\uD81B\uDF5F',
|
||||
'\uD81B\uDF60',
|
||||
'\uD81B\uDF61',
|
||||
'\uD81B\uDF62',
|
||||
'\uD81B\uDF63',
|
||||
'\uD81B\uDF64',
|
||||
'\uD81B\uDF65',
|
||||
'\uD81B\uDF66',
|
||||
'\uD81B\uDF67',
|
||||
'\uD81B\uDF68',
|
||||
'\uD81B\uDF69',
|
||||
'\uD81B\uDF6A',
|
||||
'\uD81B\uDF6B',
|
||||
'\uD81B\uDF6C',
|
||||
'\uD81B\uDF6D',
|
||||
'\uD81B\uDF6E',
|
||||
'\uD81B\uDF6F',
|
||||
'\uD81B\uDF70',
|
||||
'\uD81B\uDF71',
|
||||
'\uD81B\uDF72',
|
||||
'\uD81B\uDF73',
|
||||
'\uD81B\uDF74',
|
||||
'\uD81B\uDF75',
|
||||
'\uD81B\uDF76',
|
||||
'\uD81B\uDF77',
|
||||
'\uD81B\uDF78',
|
||||
'\uD81B\uDF79',
|
||||
'\uD81B\uDF7A',
|
||||
'\uD81B\uDF7B',
|
||||
'\uD81B\uDF7C',
|
||||
'\uD81B\uDF7D',
|
||||
'\uD81B\uDF7E',
|
||||
'\uD834\uDD65',
|
||||
'\uD834\uDD66',
|
||||
'\uD834\uDD6D',
|
||||
'\uD834\uDD6E',
|
||||
'\uD834\uDD6F',
|
||||
'\uD834\uDD70',
|
||||
'\uD834\uDD71',
|
||||
'\uD834\uDD72'
|
||||
];if(typeof module !== 'undefined') module.exports = unicode;
|
@ -1,15 +0,0 @@
|
||||
var unicode = [
|
||||
'\u0488',
|
||||
'\u0489',
|
||||
'\u1ABE',
|
||||
'\u20DD',
|
||||
'\u20DE',
|
||||
'\u20DF',
|
||||
'\u20E0',
|
||||
'\u20E2',
|
||||
'\u20E3',
|
||||
'\u20E4',
|
||||
'\uA670',
|
||||
'\uA671',
|
||||
'\uA672'
|
||||
];if(typeof module !== 'undefined') module.exports = unicode;
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,552 +0,0 @@
|
||||
var unicode = [
|
||||
'0',
|
||||
'1',
|
||||
'2',
|
||||
'3',
|
||||
'4',
|
||||
'5',
|
||||
'6',
|
||||
'7',
|
||||
'8',
|
||||
'9',
|
||||
'\u0660',
|
||||
'\u0661',
|
||||
'\u0662',
|
||||
'\u0663',
|
||||
'\u0664',
|
||||
'\u0665',
|
||||
'\u0666',
|
||||
'\u0667',
|
||||
'\u0668',
|
||||
'\u0669',
|
||||
'\u06F0',
|
||||
'\u06F1',
|
||||
'\u06F2',
|
||||
'\u06F3',
|
||||
'\u06F4',
|
||||
'\u06F5',
|
||||
'\u06F6',
|
||||
'\u06F7',
|
||||
'\u06F8',
|
||||
'\u06F9',
|
||||
'\u07C0',
|
||||
'\u07C1',
|
||||
'\u07C2',
|
||||
'\u07C3',
|
||||
'\u07C4',
|
||||
'\u07C5',
|
||||
'\u07C6',
|
||||
'\u07C7',
|
||||
'\u07C8',
|
||||
'\u07C9',
|
||||
'\u0966',
|
||||
'\u0967',
|
||||
'\u0968',
|
||||
'\u0969',
|
||||
'\u096A',
|
||||
'\u096B',
|
||||
'\u096C',
|
||||
'\u096D',
|
||||
'\u096E',
|
||||
'\u096F',
|
||||
'\u09E6',
|
||||
'\u09E7',
|
||||
'\u09E8',
|
||||
'\u09E9',
|
||||
'\u09EA',
|
||||
'\u09EB',
|
||||
'\u09EC',
|
||||
'\u09ED',
|
||||
'\u09EE',
|
||||
'\u09EF',
|
||||
'\u0A66',
|
||||
'\u0A67',
|
||||
'\u0A68',
|
||||
'\u0A69',
|
||||
'\u0A6A',
|
||||
'\u0A6B',
|
||||
'\u0A6C',
|
||||
'\u0A6D',
|
||||
'\u0A6E',
|
||||
'\u0A6F',
|
||||
'\u0AE6',
|
||||
'\u0AE7',
|
||||
'\u0AE8',
|
||||
'\u0AE9',
|
||||
'\u0AEA',
|
||||
'\u0AEB',
|
||||
'\u0AEC',
|
||||
'\u0AED',
|
||||
'\u0AEE',
|
||||
'\u0AEF',
|
||||
'\u0B66',
|
||||
'\u0B67',
|
||||
'\u0B68',
|
||||
'\u0B69',
|
||||
'\u0B6A',
|
||||
'\u0B6B',
|
||||
'\u0B6C',
|
||||
'\u0B6D',
|
||||
'\u0B6E',
|
||||
'\u0B6F',
|
||||
'\u0BE6',
|
||||
'\u0BE7',
|
||||
'\u0BE8',
|
||||
'\u0BE9',
|
||||
'\u0BEA',
|
||||
'\u0BEB',
|
||||
'\u0BEC',
|
||||
'\u0BED',
|
||||
'\u0BEE',
|
||||
'\u0BEF',
|
||||
'\u0C66',
|
||||
'\u0C67',
|
||||
'\u0C68',
|
||||
'\u0C69',
|
||||
'\u0C6A',
|
||||
'\u0C6B',
|
||||
'\u0C6C',
|
||||
'\u0C6D',
|
||||
'\u0C6E',
|
||||
'\u0C6F',
|
||||
'\u0CE6',
|
||||
'\u0CE7',
|
||||
'\u0CE8',
|
||||
'\u0CE9',
|
||||
'\u0CEA',
|
||||
'\u0CEB',
|
||||
'\u0CEC',
|
||||
'\u0CED',
|
||||
'\u0CEE',
|
||||
'\u0CEF',
|
||||
'\u0D66',
|
||||
'\u0D67',
|
||||
'\u0D68',
|
||||
'\u0D69',
|
||||
'\u0D6A',
|
||||
'\u0D6B',
|
||||
'\u0D6C',
|
||||
'\u0D6D',
|
||||
'\u0D6E',
|
||||
'\u0D6F',
|
||||
'\u0DE6',
|
||||
'\u0DE7',
|
||||
'\u0DE8',
|
||||
'\u0DE9',
|
||||
'\u0DEA',
|
||||
'\u0DEB',
|
||||
'\u0DEC',
|
||||
'\u0DED',
|
||||
'\u0DEE',
|
||||
'\u0DEF',
|
||||
'\u0E50',
|
||||
'\u0E51',
|
||||
'\u0E52',
|
||||
'\u0E53',
|
||||
'\u0E54',
|
||||
'\u0E55',
|
||||
'\u0E56',
|
||||
'\u0E57',
|
||||
'\u0E58',
|
||||
'\u0E59',
|
||||
'\u0ED0',
|
||||
'\u0ED1',
|
||||
'\u0ED2',
|
||||
'\u0ED3',
|
||||
'\u0ED4',
|
||||
'\u0ED5',
|
||||
'\u0ED6',
|
||||
'\u0ED7',
|
||||
'\u0ED8',
|
||||
'\u0ED9',
|
||||
'\u0F20',
|
||||
'\u0F21',
|
||||
'\u0F22',
|
||||
'\u0F23',
|
||||
'\u0F24',
|
||||
'\u0F25',
|
||||
'\u0F26',
|
||||
'\u0F27',
|
||||
'\u0F28',
|
||||
'\u0F29',
|
||||
'\u1040',
|
||||
'\u1041',
|
||||
'\u1042',
|
||||
'\u1043',
|
||||
'\u1044',
|
||||
'\u1045',
|
||||
'\u1046',
|
||||
'\u1047',
|
||||
'\u1048',
|
||||
'\u1049',
|
||||
'\u1090',
|
||||
'\u1091',
|
||||
'\u1092',
|
||||
'\u1093',
|
||||
'\u1094',
|
||||
'\u1095',
|
||||
'\u1096',
|
||||
'\u1097',
|
||||
'\u1098',
|
||||
'\u1099',
|
||||
'\u17E0',
|
||||
'\u17E1',
|
||||
'\u17E2',
|
||||
'\u17E3',
|
||||
'\u17E4',
|
||||
'\u17E5',
|
||||
'\u17E6',
|
||||
'\u17E7',
|
||||
'\u17E8',
|
||||
'\u17E9',
|
||||
'\u1810',
|
||||
'\u1811',
|
||||
'\u1812',
|
||||
'\u1813',
|
||||
'\u1814',
|
||||
'\u1815',
|
||||
'\u1816',
|
||||
'\u1817',
|
||||
'\u1818',
|
||||
'\u1819',
|
||||
'\u1946',
|
||||
'\u1947',
|
||||
'\u1948',
|
||||
'\u1949',
|
||||
'\u194A',
|
||||
'\u194B',
|
||||
'\u194C',
|
||||
'\u194D',
|
||||
'\u194E',
|
||||
'\u194F',
|
||||
'\u19D0',
|
||||
'\u19D1',
|
||||
'\u19D2',
|
||||
'\u19D3',
|
||||
'\u19D4',
|
||||
'\u19D5',
|
||||
'\u19D6',
|
||||
'\u19D7',
|
||||
'\u19D8',
|
||||
'\u19D9',
|
||||
'\u1A80',
|
||||
'\u1A81',
|
||||
'\u1A82',
|
||||
'\u1A83',
|
||||
'\u1A84',
|
||||
'\u1A85',
|
||||
'\u1A86',
|
||||
'\u1A87',
|
||||
'\u1A88',
|
||||
'\u1A89',
|
||||
'\u1A90',
|
||||
'\u1A91',
|
||||
'\u1A92',
|
||||
'\u1A93',
|
||||
'\u1A94',
|
||||
'\u1A95',
|
||||
'\u1A96',
|
||||
'\u1A97',
|
||||
'\u1A98',
|
||||
'\u1A99',
|
||||
'\u1B50',
|
||||
'\u1B51',
|
||||
'\u1B52',
|
||||
'\u1B53',
|
||||
'\u1B54',
|
||||
'\u1B55',
|
||||
'\u1B56',
|
||||
'\u1B57',
|
||||
'\u1B58',
|
||||
'\u1B59',
|
||||
'\u1BB0',
|
||||
'\u1BB1',
|
||||
'\u1BB2',
|
||||
'\u1BB3',
|
||||
'\u1BB4',
|
||||
'\u1BB5',
|
||||
'\u1BB6',
|
||||
'\u1BB7',
|
||||
'\u1BB8',
|
||||
'\u1BB9',
|
||||
'\u1C40',
|
||||
'\u1C41',
|
||||
'\u1C42',
|
||||
'\u1C43',
|
||||
'\u1C44',
|
||||
'\u1C45',
|
||||
'\u1C46',
|
||||
'\u1C47',
|
||||
'\u1C48',
|
||||
'\u1C49',
|
||||
'\u1C50',
|
||||
'\u1C51',
|
||||
'\u1C52',
|
||||
'\u1C53',
|
||||
'\u1C54',
|
||||
'\u1C55',
|
||||
'\u1C56',
|
||||
'\u1C57',
|
||||
'\u1C58',
|
||||
'\u1C59',
|
||||
'\uA620',
|
||||
'\uA621',
|
||||
'\uA622',
|
||||
'\uA623',
|
||||
'\uA624',
|
||||
'\uA625',
|
||||
'\uA626',
|
||||
'\uA627',
|
||||
'\uA628',
|
||||
'\uA629',
|
||||
'\uA8D0',
|
||||
'\uA8D1',
|
||||
'\uA8D2',
|
||||
'\uA8D3',
|
||||
'\uA8D4',
|
||||
'\uA8D5',
|
||||
'\uA8D6',
|
||||
'\uA8D7',
|
||||
'\uA8D8',
|
||||
'\uA8D9',
|
||||
'\uA900',
|
||||
'\uA901',
|
||||
'\uA902',
|
||||
'\uA903',
|
||||
'\uA904',
|
||||
'\uA905',
|
||||
'\uA906',
|
||||
'\uA907',
|
||||
'\uA908',
|
||||
'\uA909',
|
||||
'\uA9D0',
|
||||
'\uA9D1',
|
||||
'\uA9D2',
|
||||
'\uA9D3',
|
||||
'\uA9D4',
|
||||
'\uA9D5',
|
||||
'\uA9D6',
|
||||
'\uA9D7',
|
||||
'\uA9D8',
|
||||
'\uA9D9',
|
||||
'\uA9F0',
|
||||
'\uA9F1',
|
||||
'\uA9F2',
|
||||
'\uA9F3',
|
||||
'\uA9F4',
|
||||
'\uA9F5',
|
||||
'\uA9F6',
|
||||
'\uA9F7',
|
||||
'\uA9F8',
|
||||
'\uA9F9',
|
||||
'\uAA50',
|
||||
'\uAA51',
|
||||
'\uAA52',
|
||||
'\uAA53',
|
||||
'\uAA54',
|
||||
'\uAA55',
|
||||
'\uAA56',
|
||||
'\uAA57',
|
||||
'\uAA58',
|
||||
'\uAA59',
|
||||
'\uABF0',
|
||||
'\uABF1',
|
||||
'\uABF2',
|
||||
'\uABF3',
|
||||
'\uABF4',
|
||||
'\uABF5',
|
||||
'\uABF6',
|
||||
'\uABF7',
|
||||
'\uABF8',
|
||||
'\uABF9',
|
||||
'\uFF10',
|
||||
'\uFF11',
|
||||
'\uFF12',
|
||||
'\uFF13',
|
||||
'\uFF14',
|
||||
'\uFF15',
|
||||
'\uFF16',
|
||||
'\uFF17',
|
||||
'\uFF18',
|
||||
'\uFF19',
|
||||
'\uD801\uDCA0',
|
||||
'\uD801\uDCA1',
|
||||
'\uD801\uDCA2',
|
||||
'\uD801\uDCA3',
|
||||
'\uD801\uDCA4',
|
||||
'\uD801\uDCA5',
|
||||
'\uD801\uDCA6',
|
||||
'\uD801\uDCA7',
|
||||
'\uD801\uDCA8',
|
||||
'\uD801\uDCA9',
|
||||
'\uD804\uDC66',
|
||||
'\uD804\uDC67',
|
||||
'\uD804\uDC68',
|
||||
'\uD804\uDC69',
|
||||
'\uD804\uDC6A',
|
||||
'\uD804\uDC6B',
|
||||
'\uD804\uDC6C',
|
||||
'\uD804\uDC6D',
|
||||
'\uD804\uDC6E',
|
||||
'\uD804\uDC6F',
|
||||
'\uD804\uDCF0',
|
||||
'\uD804\uDCF1',
|
||||
'\uD804\uDCF2',
|
||||
'\uD804\uDCF3',
|
||||
'\uD804\uDCF4',
|
||||
'\uD804\uDCF5',
|
||||
'\uD804\uDCF6',
|
||||
'\uD804\uDCF7',
|
||||
'\uD804\uDCF8',
|
||||
'\uD804\uDCF9',
|
||||
'\uD804\uDD36',
|
||||
'\uD804\uDD37',
|
||||
'\uD804\uDD38',
|
||||
'\uD804\uDD39',
|
||||
'\uD804\uDD3A',
|
||||
'\uD804\uDD3B',
|
||||
'\uD804\uDD3C',
|
||||
'\uD804\uDD3D',
|
||||
'\uD804\uDD3E',
|
||||
'\uD804\uDD3F',
|
||||
'\uD804\uDDD0',
|
||||
'\uD804\uDDD1',
|
||||
'\uD804\uDDD2',
|
||||
'\uD804\uDDD3',
|
||||
'\uD804\uDDD4',
|
||||
'\uD804\uDDD5',
|
||||
'\uD804\uDDD6',
|
||||
'\uD804\uDDD7',
|
||||
'\uD804\uDDD8',
|
||||
'\uD804\uDDD9',
|
||||
'\uD804\uDEF0',
|
||||
'\uD804\uDEF1',
|
||||
'\uD804\uDEF2',
|
||||
'\uD804\uDEF3',
|
||||
'\uD804\uDEF4',
|
||||
'\uD804\uDEF5',
|
||||
'\uD804\uDEF6',
|
||||
'\uD804\uDEF7',
|
||||
'\uD804\uDEF8',
|
||||
'\uD804\uDEF9',
|
||||
'\uD805\uDCD0',
|
||||
'\uD805\uDCD1',
|
||||
'\uD805\uDCD2',
|
||||
'\uD805\uDCD3',
|
||||
'\uD805\uDCD4',
|
||||
'\uD805\uDCD5',
|
||||
'\uD805\uDCD6',
|
||||
'\uD805\uDCD7',
|
||||
'\uD805\uDCD8',
|
||||
'\uD805\uDCD9',
|
||||
'\uD805\uDE50',
|
||||
'\uD805\uDE51',
|
||||
'\uD805\uDE52',
|
||||
'\uD805\uDE53',
|
||||
'\uD805\uDE54',
|
||||
'\uD805\uDE55',
|
||||
'\uD805\uDE56',
|
||||
'\uD805\uDE57',
|
||||
'\uD805\uDE58',
|
||||
'\uD805\uDE59',
|
||||
'\uD805\uDEC0',
|
||||
'\uD805\uDEC1',
|
||||
'\uD805\uDEC2',
|
||||
'\uD805\uDEC3',
|
||||
'\uD805\uDEC4',
|
||||
'\uD805\uDEC5',
|
||||
'\uD805\uDEC6',
|
||||
'\uD805\uDEC7',
|
||||
'\uD805\uDEC8',
|
||||
'\uD805\uDEC9',
|
||||
'\uD805\uDF30',
|
||||
'\uD805\uDF31',
|
||||
'\uD805\uDF32',
|
||||
'\uD805\uDF33',
|
||||
'\uD805\uDF34',
|
||||
'\uD805\uDF35',
|
||||
'\uD805\uDF36',
|
||||
'\uD805\uDF37',
|
||||
'\uD805\uDF38',
|
||||
'\uD805\uDF39',
|
||||
'\uD806\uDCE0',
|
||||
'\uD806\uDCE1',
|
||||
'\uD806\uDCE2',
|
||||
'\uD806\uDCE3',
|
||||
'\uD806\uDCE4',
|
||||
'\uD806\uDCE5',
|
||||
'\uD806\uDCE6',
|
||||
'\uD806\uDCE7',
|
||||
'\uD806\uDCE8',
|
||||
'\uD806\uDCE9',
|
||||
'\uD81A\uDE60',
|
||||
'\uD81A\uDE61',
|
||||
'\uD81A\uDE62',
|
||||
'\uD81A\uDE63',
|
||||
'\uD81A\uDE64',
|
||||
'\uD81A\uDE65',
|
||||
'\uD81A\uDE66',
|
||||
'\uD81A\uDE67',
|
||||
'\uD81A\uDE68',
|
||||
'\uD81A\uDE69',
|
||||
'\uD81A\uDF50',
|
||||
'\uD81A\uDF51',
|
||||
'\uD81A\uDF52',
|
||||
'\uD81A\uDF53',
|
||||
'\uD81A\uDF54',
|
||||
'\uD81A\uDF55',
|
||||
'\uD81A\uDF56',
|
||||
'\uD81A\uDF57',
|
||||
'\uD81A\uDF58',
|
||||
'\uD81A\uDF59',
|
||||
'\uD835\uDFCE',
|
||||
'\uD835\uDFCF',
|
||||
'\uD835\uDFD0',
|
||||
'\uD835\uDFD1',
|
||||
'\uD835\uDFD2',
|
||||
'\uD835\uDFD3',
|
||||
'\uD835\uDFD4',
|
||||
'\uD835\uDFD5',
|
||||
'\uD835\uDFD6',
|
||||
'\uD835\uDFD7',
|
||||
'\uD835\uDFD8',
|
||||
'\uD835\uDFD9',
|
||||
'\uD835\uDFDA',
|
||||
'\uD835\uDFDB',
|
||||
'\uD835\uDFDC',
|
||||
'\uD835\uDFDD',
|
||||
'\uD835\uDFDE',
|
||||
'\uD835\uDFDF',
|
||||
'\uD835\uDFE0',
|
||||
'\uD835\uDFE1',
|
||||
'\uD835\uDFE2',
|
||||
'\uD835\uDFE3',
|
||||
'\uD835\uDFE4',
|
||||
'\uD835\uDFE5',
|
||||
'\uD835\uDFE6',
|
||||
'\uD835\uDFE7',
|
||||
'\uD835\uDFE8',
|
||||
'\uD835\uDFE9',
|
||||
'\uD835\uDFEA',
|
||||
'\uD835\uDFEB',
|
||||
'\uD835\uDFEC',
|
||||
'\uD835\uDFED',
|
||||
'\uD835\uDFEE',
|
||||
'\uD835\uDFEF',
|
||||
'\uD835\uDFF0',
|
||||
'\uD835\uDFF1',
|
||||
'\uD835\uDFF2',
|
||||
'\uD835\uDFF3',
|
||||
'\uD835\uDFF4',
|
||||
'\uD835\uDFF5',
|
||||
'\uD835\uDFF6',
|
||||
'\uD835\uDFF7',
|
||||
'\uD835\uDFF8',
|
||||
'\uD835\uDFF9',
|
||||
'\uD835\uDFFA',
|
||||
'\uD835\uDFFB',
|
||||
'\uD835\uDFFC',
|
||||
'\uD835\uDFFD',
|
||||
'\uD835\uDFFE',
|
||||
'\uD835\uDFFF'
|
||||
];if(typeof module !== 'undefined') module.exports = unicode;
|
@ -1,238 +0,0 @@
|
||||
var unicode = [
|
||||
'\u16EE',
|
||||
'\u16EF',
|
||||
'\u16F0',
|
||||
'\u2160',
|
||||
'\u2161',
|
||||
'\u2162',
|
||||
'\u2163',
|
||||
'\u2164',
|
||||
'\u2165',
|
||||
'\u2166',
|
||||
'\u2167',
|
||||
'\u2168',
|
||||
'\u2169',
|
||||
'\u216A',
|
||||
'\u216B',
|
||||
'\u216C',
|
||||
'\u216D',
|
||||
'\u216E',
|
||||
'\u216F',
|
||||
'\u2170',
|
||||
'\u2171',
|
||||
'\u2172',
|
||||
'\u2173',
|
||||
'\u2174',
|
||||
'\u2175',
|
||||
'\u2176',
|
||||
'\u2177',
|
||||
'\u2178',
|
||||
'\u2179',
|
||||
'\u217A',
|
||||
'\u217B',
|
||||
'\u217C',
|
||||
'\u217D',
|
||||
'\u217E',
|
||||
'\u217F',
|
||||
'\u2180',
|
||||
'\u2181',
|
||||
'\u2182',
|
||||
'\u2185',
|
||||
'\u2186',
|
||||
'\u2187',
|
||||
'\u2188',
|
||||
'\u3007',
|
||||
'\u3021',
|
||||
'\u3022',
|
||||
'\u3023',
|
||||
'\u3024',
|
||||
'\u3025',
|
||||
'\u3026',
|
||||
'\u3027',
|
||||
'\u3028',
|
||||
'\u3029',
|
||||
'\u3038',
|
||||
'\u3039',
|
||||
'\u303A',
|
||||
'\uA6E6',
|
||||
'\uA6E7',
|
||||
'\uA6E8',
|
||||
'\uA6E9',
|
||||
'\uA6EA',
|
||||
'\uA6EB',
|
||||
'\uA6EC',
|
||||
'\uA6ED',
|
||||
'\uA6EE',
|
||||
'\uA6EF',
|
||||
'\uD800\uDD40',
|
||||
'\uD800\uDD41',
|
||||
'\uD800\uDD42',
|
||||
'\uD800\uDD43',
|
||||
'\uD800\uDD44',
|
||||
'\uD800\uDD45',
|
||||
'\uD800\uDD46',
|
||||
'\uD800\uDD47',
|
||||
'\uD800\uDD48',
|
||||
'\uD800\uDD49',
|
||||
'\uD800\uDD4A',
|
||||
'\uD800\uDD4B',
|
||||
'\uD800\uDD4C',
|
||||
'\uD800\uDD4D',
|
||||
'\uD800\uDD4E',
|
||||
'\uD800\uDD4F',
|
||||
'\uD800\uDD50',
|
||||
'\uD800\uDD51',
|
||||
'\uD800\uDD52',
|
||||
'\uD800\uDD53',
|
||||
'\uD800\uDD54',
|
||||
'\uD800\uDD55',
|
||||
'\uD800\uDD56',
|
||||
'\uD800\uDD57',
|
||||
'\uD800\uDD58',
|
||||
'\uD800\uDD59',
|
||||
'\uD800\uDD5A',
|
||||
'\uD800\uDD5B',
|
||||
'\uD800\uDD5C',
|
||||
'\uD800\uDD5D',
|
||||
'\uD800\uDD5E',
|
||||
'\uD800\uDD5F',
|
||||
'\uD800\uDD60',
|
||||
'\uD800\uDD61',
|
||||
'\uD800\uDD62',
|
||||
'\uD800\uDD63',
|
||||
'\uD800\uDD64',
|
||||
'\uD800\uDD65',
|
||||
'\uD800\uDD66',
|
||||
'\uD800\uDD67',
|
||||
'\uD800\uDD68',
|
||||
'\uD800\uDD69',
|
||||
'\uD800\uDD6A',
|
||||
'\uD800\uDD6B',
|
||||
'\uD800\uDD6C',
|
||||
'\uD800\uDD6D',
|
||||
'\uD800\uDD6E',
|
||||
'\uD800\uDD6F',
|
||||
'\uD800\uDD70',
|
||||
'\uD800\uDD71',
|
||||
'\uD800\uDD72',
|
||||
'\uD800\uDD73',
|
||||
'\uD800\uDD74',
|
||||
'\uD800\uDF41',
|
||||
'\uD800\uDF4A',
|
||||
'\uD800\uDFD1',
|
||||
'\uD800\uDFD2',
|
||||
'\uD800\uDFD3',
|
||||
'\uD800\uDFD4',
|
||||
'\uD800\uDFD5',
|
||||
'\uD809\uDC00',
|
||||
'\uD809\uDC01',
|
||||
'\uD809\uDC02',
|
||||
'\uD809\uDC03',
|
||||
'\uD809\uDC04',
|
||||
'\uD809\uDC05',
|
||||
'\uD809\uDC06',
|
||||
'\uD809\uDC07',
|
||||
'\uD809\uDC08',
|
||||
'\uD809\uDC09',
|
||||
'\uD809\uDC0A',
|
||||
'\uD809\uDC0B',
|
||||
'\uD809\uDC0C',
|
||||
'\uD809\uDC0D',
|
||||
'\uD809\uDC0E',
|
||||
'\uD809\uDC0F',
|
||||
'\uD809\uDC10',
|
||||
'\uD809\uDC11',
|
||||
'\uD809\uDC12',
|
||||
'\uD809\uDC13',
|
||||
'\uD809\uDC14',
|
||||
'\uD809\uDC15',
|
||||
'\uD809\uDC16',
|
||||
'\uD809\uDC17',
|
||||
'\uD809\uDC18',
|
||||
'\uD809\uDC19',
|
||||
'\uD809\uDC1A',
|
||||
'\uD809\uDC1B',
|
||||
'\uD809\uDC1C',
|
||||
'\uD809\uDC1D',
|
||||
'\uD809\uDC1E',
|
||||
'\uD809\uDC1F',
|
||||
'\uD809\uDC20',
|
||||
'\uD809\uDC21',
|
||||
'\uD809\uDC22',
|
||||
'\uD809\uDC23',
|
||||
'\uD809\uDC24',
|
||||
'\uD809\uDC25',
|
||||
'\uD809\uDC26',
|
||||
'\uD809\uDC27',
|
||||
'\uD809\uDC28',
|
||||
'\uD809\uDC29',
|
||||
'\uD809\uDC2A',
|
||||
'\uD809\uDC2B',
|
||||
'\uD809\uDC2C',
|
||||
'\uD809\uDC2D',
|
||||
'\uD809\uDC2E',
|
||||
'\uD809\uDC2F',
|
||||
'\uD809\uDC30',
|
||||
'\uD809\uDC31',
|
||||
'\uD809\uDC32',
|
||||
'\uD809\uDC33',
|
||||
'\uD809\uDC34',
|
||||
'\uD809\uDC35',
|
||||
'\uD809\uDC36',
|
||||
'\uD809\uDC37',
|
||||
'\uD809\uDC38',
|
||||
'\uD809\uDC39',
|
||||
'\uD809\uDC3A',
|
||||
'\uD809\uDC3B',
|
||||
'\uD809\uDC3C',
|
||||
'\uD809\uDC3D',
|
||||
'\uD809\uDC3E',
|
||||
'\uD809\uDC3F',
|
||||
'\uD809\uDC40',
|
||||
'\uD809\uDC41',
|
||||
'\uD809\uDC42',
|
||||
'\uD809\uDC43',
|
||||
'\uD809\uDC44',
|
||||
'\uD809\uDC45',
|
||||
'\uD809\uDC46',
|
||||
'\uD809\uDC47',
|
||||
'\uD809\uDC48',
|
||||
'\uD809\uDC49',
|
||||
'\uD809\uDC4A',
|
||||
'\uD809\uDC4B',
|
||||
'\uD809\uDC4C',
|
||||
'\uD809\uDC4D',
|
||||
'\uD809\uDC4E',
|
||||
'\uD809\uDC4F',
|
||||
'\uD809\uDC50',
|
||||
'\uD809\uDC51',
|
||||
'\uD809\uDC52',
|
||||
'\uD809\uDC53',
|
||||
'\uD809\uDC54',
|
||||
'\uD809\uDC55',
|
||||
'\uD809\uDC56',
|
||||
'\uD809\uDC57',
|
||||
'\uD809\uDC58',
|
||||
'\uD809\uDC59',
|
||||
'\uD809\uDC5A',
|
||||
'\uD809\uDC5B',
|
||||
'\uD809\uDC5C',
|
||||
'\uD809\uDC5D',
|
||||
'\uD809\uDC5E',
|
||||
'\uD809\uDC5F',
|
||||
'\uD809\uDC60',
|
||||
'\uD809\uDC61',
|
||||
'\uD809\uDC62',
|
||||
'\uD809\uDC63',
|
||||
'\uD809\uDC64',
|
||||
'\uD809\uDC65',
|
||||
'\uD809\uDC66',
|
||||
'\uD809\uDC67',
|
||||
'\uD809\uDC68',
|
||||
'\uD809\uDC69',
|
||||
'\uD809\uDC6A',
|
||||
'\uD809\uDC6B',
|
||||
'\uD809\uDC6C',
|
||||
'\uD809\uDC6D',
|
||||
'\uD809\uDC6E'
|
||||
];if(typeof module !== 'undefined') module.exports = unicode;
|
@ -1,649 +0,0 @@
|
||||
var unicode = [
|
||||
'\xB2',
|
||||
'\xB3',
|
||||
'\xB9',
|
||||
'\xBC',
|
||||
'\xBD',
|
||||
'\xBE',
|
||||
'\u09F4',
|
||||
'\u09F5',
|
||||
'\u09F6',
|
||||
'\u09F7',
|
||||
'\u09F8',
|
||||
'\u09F9',
|
||||
'\u0B72',
|
||||
'\u0B73',
|
||||
'\u0B74',
|
||||
'\u0B75',
|
||||
'\u0B76',
|
||||
'\u0B77',
|
||||
'\u0BF0',
|
||||
'\u0BF1',
|
||||
'\u0BF2',
|
||||
'\u0C78',
|
||||
'\u0C79',
|
||||
'\u0C7A',
|
||||
'\u0C7B',
|
||||
'\u0C7C',
|
||||
'\u0C7D',
|
||||
'\u0C7E',
|
||||
'\u0D70',
|
||||
'\u0D71',
|
||||
'\u0D72',
|
||||
'\u0D73',
|
||||
'\u0D74',
|
||||
'\u0D75',
|
||||
'\u0F2A',
|
||||
'\u0F2B',
|
||||
'\u0F2C',
|
||||
'\u0F2D',
|
||||
'\u0F2E',
|
||||
'\u0F2F',
|
||||
'\u0F30',
|
||||
'\u0F31',
|
||||
'\u0F32',
|
||||
'\u0F33',
|
||||
'\u1369',
|
||||
'\u136A',
|
||||
'\u136B',
|
||||
'\u136C',
|
||||
'\u136D',
|
||||
'\u136E',
|
||||
'\u136F',
|
||||
'\u1370',
|
||||
'\u1371',
|
||||
'\u1372',
|
||||
'\u1373',
|
||||
'\u1374',
|
||||
'\u1375',
|
||||
'\u1376',
|
||||
'\u1377',
|
||||
'\u1378',
|
||||
'\u1379',
|
||||
'\u137A',
|
||||
'\u137B',
|
||||
'\u137C',
|
||||
'\u17F0',
|
||||
'\u17F1',
|
||||
'\u17F2',
|
||||
'\u17F3',
|
||||
'\u17F4',
|
||||
'\u17F5',
|
||||
'\u17F6',
|
||||
'\u17F7',
|
||||
'\u17F8',
|
||||
'\u17F9',
|
||||
'\u19DA',
|
||||
'\u2070',
|
||||
'\u2074',
|
||||
'\u2075',
|
||||
'\u2076',
|
||||
'\u2077',
|
||||
'\u2078',
|
||||
'\u2079',
|
||||
'\u2080',
|
||||
'\u2081',
|
||||
'\u2082',
|
||||
'\u2083',
|
||||
'\u2084',
|
||||
'\u2085',
|
||||
'\u2086',
|
||||
'\u2087',
|
||||
'\u2088',
|
||||
'\u2089',
|
||||
'\u2150',
|
||||
'\u2151',
|
||||
'\u2152',
|
||||
'\u2153',
|
||||
'\u2154',
|
||||
'\u2155',
|
||||
'\u2156',
|
||||
'\u2157',
|
||||
'\u2158',
|
||||
'\u2159',
|
||||
'\u215A',
|
||||
'\u215B',
|
||||
'\u215C',
|
||||
'\u215D',
|
||||
'\u215E',
|
||||
'\u215F',
|
||||
'\u2189',
|
||||
'\u2460',
|
||||
'\u2461',
|
||||
'\u2462',
|
||||
'\u2463',
|
||||
'\u2464',
|
||||
'\u2465',
|
||||
'\u2466',
|
||||
'\u2467',
|
||||
'\u2468',
|
||||
'\u2469',
|
||||
'\u246A',
|
||||
'\u246B',
|
||||
'\u246C',
|
||||
'\u246D',
|
||||
'\u246E',
|
||||
'\u246F',
|
||||
'\u2470',
|
||||
'\u2471',
|
||||
'\u2472',
|
||||
'\u2473',
|
||||
'\u2474',
|
||||
'\u2475',
|
||||
'\u2476',
|
||||
'\u2477',
|
||||
'\u2478',
|
||||
'\u2479',
|
||||
'\u247A',
|
||||
'\u247B',
|
||||
'\u247C',
|
||||
'\u247D',
|
||||
'\u247E',
|
||||
'\u247F',
|
||||
'\u2480',
|
||||
'\u2481',
|
||||
'\u2482',
|
||||
'\u2483',
|
||||
'\u2484',
|
||||
'\u2485',
|
||||
'\u2486',
|
||||
'\u2487',
|
||||
'\u2488',
|
||||
'\u2489',
|
||||
'\u248A',
|
||||
'\u248B',
|
||||
'\u248C',
|
||||
'\u248D',
|
||||
'\u248E',
|
||||
'\u248F',
|
||||
'\u2490',
|
||||
'\u2491',
|
||||
'\u2492',
|
||||
'\u2493',
|
||||
'\u2494',
|
||||
'\u2495',
|
||||
'\u2496',
|
||||
'\u2497',
|
||||
'\u2498',
|
||||
'\u2499',
|
||||
'\u249A',
|
||||
'\u249B',
|
||||
'\u24EA',
|
||||
'\u24EB',
|
||||
'\u24EC',
|
||||
'\u24ED',
|
||||
'\u24EE',
|
||||
'\u24EF',
|
||||
'\u24F0',
|
||||
'\u24F1',
|
||||
'\u24F2',
|
||||
'\u24F3',
|
||||
'\u24F4',
|
||||
'\u24F5',
|
||||
'\u24F6',
|
||||
'\u24F7',
|
||||
'\u24F8',
|
||||
'\u24F9',
|
||||
'\u24FA',
|
||||
'\u24FB',
|
||||
'\u24FC',
|
||||
'\u24FD',
|
||||
'\u24FE',
|
||||
'\u24FF',
|
||||
'\u2776',
|
||||
'\u2777',
|
||||
'\u2778',
|
||||
'\u2779',
|
||||
'\u277A',
|
||||
'\u277B',
|
||||
'\u277C',
|
||||
'\u277D',
|
||||
'\u277E',
|
||||
'\u277F',
|
||||
'\u2780',
|
||||
'\u2781',
|
||||
'\u2782',
|
||||
'\u2783',
|
||||
'\u2784',
|
||||
'\u2785',
|
||||
'\u2786',
|
||||
'\u2787',
|
||||
'\u2788',
|
||||
'\u2789',
|
||||
'\u278A',
|
||||
'\u278B',
|
||||
'\u278C',
|
||||
'\u278D',
|
||||
'\u278E',
|
||||
'\u278F',
|
||||
'\u2790',
|
||||
'\u2791',
|
||||
'\u2792',
|
||||
'\u2793',
|
||||
'\u2CFD',
|
||||
'\u3192',
|
||||
'\u3193',
|
||||
'\u3194',
|
||||
'\u3195',
|
||||
'\u3220',
|
||||
'\u3221',
|
||||
'\u3222',
|
||||
'\u3223',
|
||||
'\u3224',
|
||||
'\u3225',
|
||||
'\u3226',
|
||||
'\u3227',
|
||||
'\u3228',
|
||||
'\u3229',
|
||||
'\u3248',
|
||||
'\u3249',
|
||||
'\u324A',
|
||||
'\u324B',
|
||||
'\u324C',
|
||||
'\u324D',
|
||||
'\u324E',
|
||||
'\u324F',
|
||||
'\u3251',
|
||||
'\u3252',
|
||||
'\u3253',
|
||||
'\u3254',
|
||||
'\u3255',
|
||||
'\u3256',
|
||||
'\u3257',
|
||||
'\u3258',
|
||||
'\u3259',
|
||||
'\u325A',
|
||||
'\u325B',
|
||||
'\u325C',
|
||||
'\u325D',
|
||||
'\u325E',
|
||||
'\u325F',
|
||||
'\u3280',
|
||||
'\u3281',
|
||||
'\u3282',
|
||||
'\u3283',
|
||||
'\u3284',
|
||||
'\u3285',
|
||||
'\u3286',
|
||||
'\u3287',
|
||||
'\u3288',
|
||||
'\u3289',
|
||||
'\u32B1',
|
||||
'\u32B2',
|
||||
'\u32B3',
|
||||
'\u32B4',
|
||||
'\u32B5',
|
||||
'\u32B6',
|
||||
'\u32B7',
|
||||
'\u32B8',
|
||||
'\u32B9',
|
||||
'\u32BA',
|
||||
'\u32BB',
|
||||
'\u32BC',
|
||||
'\u32BD',
|
||||
'\u32BE',
|
||||
'\u32BF',
|
||||
'\uA830',
|
||||
'\uA831',
|
||||
'\uA832',
|
||||
'\uA833',
|
||||
'\uA834',
|
||||
'\uA835',
|
||||
'\uD800\uDD07',
|
||||
'\uD800\uDD08',
|
||||
'\uD800\uDD09',
|
||||
'\uD800\uDD0A',
|
||||
'\uD800\uDD0B',
|
||||
'\uD800\uDD0C',
|
||||
'\uD800\uDD0D',
|
||||
'\uD800\uDD0E',
|
||||
'\uD800\uDD0F',
|
||||
'\uD800\uDD10',
|
||||
'\uD800\uDD11',
|
||||
'\uD800\uDD12',
|
||||
'\uD800\uDD13',
|
||||
'\uD800\uDD14',
|
||||
'\uD800\uDD15',
|
||||
'\uD800\uDD16',
|
||||
'\uD800\uDD17',
|
||||
'\uD800\uDD18',
|
||||
'\uD800\uDD19',
|
||||
'\uD800\uDD1A',
|
||||
'\uD800\uDD1B',
|
||||
'\uD800\uDD1C',
|
||||
'\uD800\uDD1D',
|
||||
'\uD800\uDD1E',
|
||||
'\uD800\uDD1F',
|
||||
'\uD800\uDD20',
|
||||
'\uD800\uDD21',
|
||||
'\uD800\uDD22',
|
||||
'\uD800\uDD23',
|
||||
'\uD800\uDD24',
|
||||
'\uD800\uDD25',
|
||||
'\uD800\uDD26',
|
||||
'\uD800\uDD27',
|
||||
'\uD800\uDD28',
|
||||
'\uD800\uDD29',
|
||||
'\uD800\uDD2A',
|
||||
'\uD800\uDD2B',
|
||||
'\uD800\uDD2C',
|
||||
'\uD800\uDD2D',
|
||||
'\uD800\uDD2E',
|
||||
'\uD800\uDD2F',
|
||||
'\uD800\uDD30',
|
||||
'\uD800\uDD31',
|
||||
'\uD800\uDD32',
|
||||
'\uD800\uDD33',
|
||||
'\uD800\uDD75',
|
||||
'\uD800\uDD76',
|
||||
'\uD800\uDD77',
|
||||
'\uD800\uDD78',
|
||||
'\uD800\uDD8A',
|
||||
'\uD800\uDD8B',
|
||||
'\uD800\uDEE1',
|
||||
'\uD800\uDEE2',
|
||||
'\uD800\uDEE3',
|
||||
'\uD800\uDEE4',
|
||||
'\uD800\uDEE5',
|
||||
'\uD800\uDEE6',
|
||||
'\uD800\uDEE7',
|
||||
'\uD800\uDEE8',
|
||||
'\uD800\uDEE9',
|
||||
'\uD800\uDEEA',
|
||||
'\uD800\uDEEB',
|
||||
'\uD800\uDEEC',
|
||||
'\uD800\uDEED',
|
||||
'\uD800\uDEEE',
|
||||
'\uD800\uDEEF',
|
||||
'\uD800\uDEF0',
|
||||
'\uD800\uDEF1',
|
||||
'\uD800\uDEF2',
|
||||
'\uD800\uDEF3',
|
||||
'\uD800\uDEF4',
|
||||
'\uD800\uDEF5',
|
||||
'\uD800\uDEF6',
|
||||
'\uD800\uDEF7',
|
||||
'\uD800\uDEF8',
|
||||
'\uD800\uDEF9',
|
||||
'\uD800\uDEFA',
|
||||
'\uD800\uDEFB',
|
||||
'\uD800\uDF20',
|
||||
'\uD800\uDF21',
|
||||
'\uD800\uDF22',
|
||||
'\uD800\uDF23',
|
||||
'\uD802\uDC58',
|
||||
'\uD802\uDC59',
|
||||
'\uD802\uDC5A',
|
||||
'\uD802\uDC5B',
|
||||
'\uD802\uDC5C',
|
||||
'\uD802\uDC5D',
|
||||
'\uD802\uDC5E',
|
||||
'\uD802\uDC5F',
|
||||
'\uD802\uDC79',
|
||||
'\uD802\uDC7A',
|
||||
'\uD802\uDC7B',
|
||||
'\uD802\uDC7C',
|
||||
'\uD802\uDC7D',
|
||||
'\uD802\uDC7E',
|
||||
'\uD802\uDC7F',
|
||||
'\uD802\uDCA7',
|
||||
'\uD802\uDCA8',
|
||||
'\uD802\uDCA9',
|
||||
'\uD802\uDCAA',
|
||||
'\uD802\uDCAB',
|
||||
'\uD802\uDCAC',
|
||||
'\uD802\uDCAD',
|
||||
'\uD802\uDCAE',
|
||||
'\uD802\uDCAF',
|
||||
'\uD802\uDCFB',
|
||||
'\uD802\uDCFC',
|
||||
'\uD802\uDCFD',
|
||||
'\uD802\uDCFE',
|
||||
'\uD802\uDCFF',
|
||||
'\uD802\uDD16',
|
||||
'\uD802\uDD17',
|
||||
'\uD802\uDD18',
|
||||
'\uD802\uDD19',
|
||||
'\uD802\uDD1A',
|
||||
'\uD802\uDD1B',
|
||||
'\uD802\uDDBC',
|
||||
'\uD802\uDDBD',
|
||||
'\uD802\uDDC0',
|
||||
'\uD802\uDDC1',
|
||||
'\uD802\uDDC2',
|
||||
'\uD802\uDDC3',
|
||||
'\uD802\uDDC4',
|
||||
'\uD802\uDDC5',
|
||||
'\uD802\uDDC6',
|
||||
'\uD802\uDDC7',
|
||||
'\uD802\uDDC8',
|
||||
'\uD802\uDDC9',
|
||||
'\uD802\uDDCA',
|
||||
'\uD802\uDDCB',
|
||||
'\uD802\uDDCC',
|
||||
'\uD802\uDDCD',
|
||||
'\uD802\uDDCE',
|
||||
'\uD802\uDDCF',
|
||||
'\uD802\uDDD2',
|
||||
'\uD802\uDDD3',
|
||||
'\uD802\uDDD4',
|
||||
'\uD802\uDDD5',
|
||||
'\uD802\uDDD6',
|
||||
'\uD802\uDDD7',
|
||||
'\uD802\uDDD8',
|
||||
'\uD802\uDDD9',
|
||||
'\uD802\uDDDA',
|
||||
'\uD802\uDDDB',
|
||||
'\uD802\uDDDC',
|
||||
'\uD802\uDDDD',
|
||||
'\uD802\uDDDE',
|
||||
'\uD802\uDDDF',
|
||||
'\uD802\uDDE0',
|
||||
'\uD802\uDDE1',
|
||||
'\uD802\uDDE2',
|
||||
'\uD802\uDDE3',
|
||||
'\uD802\uDDE4',
|
||||
'\uD802\uDDE5',
|
||||
'\uD802\uDDE6',
|
||||
'\uD802\uDDE7',
|
||||
'\uD802\uDDE8',
|
||||
'\uD802\uDDE9',
|
||||
'\uD802\uDDEA',
|
||||
'\uD802\uDDEB',
|
||||
'\uD802\uDDEC',
|
||||
'\uD802\uDDED',
|
||||
'\uD802\uDDEE',
|
||||
'\uD802\uDDEF',
|
||||
'\uD802\uDDF0',
|
||||
'\uD802\uDDF1',
|
||||
'\uD802\uDDF2',
|
||||
'\uD802\uDDF3',
|
||||
'\uD802\uDDF4',
|
||||
'\uD802\uDDF5',
|
||||
'\uD802\uDDF6',
|
||||
'\uD802\uDDF7',
|
||||
'\uD802\uDDF8',
|
||||
'\uD802\uDDF9',
|
||||
'\uD802\uDDFA',
|
||||
'\uD802\uDDFB',
|
||||
'\uD802\uDDFC',
|
||||
'\uD802\uDDFD',
|
||||
'\uD802\uDDFE',
|
||||
'\uD802\uDDFF',
|
||||
'\uD802\uDE40',
|
||||
'\uD802\uDE41',
|
||||
'\uD802\uDE42',
|
||||
'\uD802\uDE43',
|
||||
'\uD802\uDE44',
|
||||
'\uD802\uDE45',
|
||||
'\uD802\uDE46',
|
||||
'\uD802\uDE47',
|
||||
'\uD802\uDE7D',
|
||||
'\uD802\uDE7E',
|
||||
'\uD802\uDE9D',
|
||||
'\uD802\uDE9E',
|
||||
'\uD802\uDE9F',
|
||||
'\uD802\uDEEB',
|
||||
'\uD802\uDEEC',
|
||||
'\uD802\uDEED',
|
||||
'\uD802\uDEEE',
|
||||
'\uD802\uDEEF',
|
||||
'\uD802\uDF58',
|
||||
'\uD802\uDF59',
|
||||
'\uD802\uDF5A',
|
||||
'\uD802\uDF5B',
|
||||
'\uD802\uDF5C',
|
||||
'\uD802\uDF5D',
|
||||
'\uD802\uDF5E',
|
||||
'\uD802\uDF5F',
|
||||
'\uD802\uDF78',
|
||||
'\uD802\uDF79',
|
||||
'\uD802\uDF7A',
|
||||
'\uD802\uDF7B',
|
||||
'\uD802\uDF7C',
|
||||
'\uD802\uDF7D',
|
||||
'\uD802\uDF7E',
|
||||
'\uD802\uDF7F',
|
||||
'\uD802\uDFA9',
|
||||
'\uD802\uDFAA',
|
||||
'\uD802\uDFAB',
|
||||
'\uD802\uDFAC',
|
||||
'\uD802\uDFAD',
|
||||
'\uD802\uDFAE',
|
||||
'\uD802\uDFAF',
|
||||
'\uD803\uDCFA',
|
||||
'\uD803\uDCFB',
|
||||
'\uD803\uDCFC',
|
||||
'\uD803\uDCFD',
|
||||
'\uD803\uDCFE',
|
||||
'\uD803\uDCFF',
|
||||
'\uD803\uDE60',
|
||||
'\uD803\uDE61',
|
||||
'\uD803\uDE62',
|
||||
'\uD803\uDE63',
|
||||
'\uD803\uDE64',
|
||||
'\uD803\uDE65',
|
||||
'\uD803\uDE66',
|
||||
'\uD803\uDE67',
|
||||
'\uD803\uDE68',
|
||||
'\uD803\uDE69',
|
||||
'\uD803\uDE6A',
|
||||
'\uD803\uDE6B',
|
||||
'\uD803\uDE6C',
|
||||
'\uD803\uDE6D',
|
||||
'\uD803\uDE6E',
|
||||
'\uD803\uDE6F',
|
||||
'\uD803\uDE70',
|
||||
'\uD803\uDE71',
|
||||
'\uD803\uDE72',
|
||||
'\uD803\uDE73',
|
||||
'\uD803\uDE74',
|
||||
'\uD803\uDE75',
|
||||
'\uD803\uDE76',
|
||||
'\uD803\uDE77',
|
||||
'\uD803\uDE78',
|
||||
'\uD803\uDE79',
|
||||
'\uD803\uDE7A',
|
||||
'\uD803\uDE7B',
|
||||
'\uD803\uDE7C',
|
||||
'\uD803\uDE7D',
|
||||
'\uD803\uDE7E',
|
||||
'\uD804\uDC52',
|
||||
'\uD804\uDC53',
|
||||
'\uD804\uDC54',
|
||||
'\uD804\uDC55',
|
||||
'\uD804\uDC56',
|
||||
'\uD804\uDC57',
|
||||
'\uD804\uDC58',
|
||||
'\uD804\uDC59',
|
||||
'\uD804\uDC5A',
|
||||
'\uD804\uDC5B',
|
||||
'\uD804\uDC5C',
|
||||
'\uD804\uDC5D',
|
||||
'\uD804\uDC5E',
|
||||
'\uD804\uDC5F',
|
||||
'\uD804\uDC60',
|
||||
'\uD804\uDC61',
|
||||
'\uD804\uDC62',
|
||||
'\uD804\uDC63',
|
||||
'\uD804\uDC64',
|
||||
'\uD804\uDC65',
|
||||
'\uD804\uDDE1',
|
||||
'\uD804\uDDE2',
|
||||
'\uD804\uDDE3',
|
||||
'\uD804\uDDE4',
|
||||
'\uD804\uDDE5',
|
||||
'\uD804\uDDE6',
|
||||
'\uD804\uDDE7',
|
||||
'\uD804\uDDE8',
|
||||
'\uD804\uDDE9',
|
||||
'\uD804\uDDEA',
|
||||
'\uD804\uDDEB',
|
||||
'\uD804\uDDEC',
|
||||
'\uD804\uDDED',
|
||||
'\uD804\uDDEE',
|
||||
'\uD804\uDDEF',
|
||||
'\uD804\uDDF0',
|
||||
'\uD804\uDDF1',
|
||||
'\uD804\uDDF2',
|
||||
'\uD804\uDDF3',
|
||||
'\uD804\uDDF4',
|
||||
'\uD805\uDF3A',
|
||||
'\uD805\uDF3B',
|
||||
'\uD806\uDCEA',
|
||||
'\uD806\uDCEB',
|
||||
'\uD806\uDCEC',
|
||||
'\uD806\uDCED',
|
||||
'\uD806\uDCEE',
|
||||
'\uD806\uDCEF',
|
||||
'\uD806\uDCF0',
|
||||
'\uD806\uDCF1',
|
||||
'\uD806\uDCF2',
|
||||
'\uD81A\uDF5B',
|
||||
'\uD81A\uDF5C',
|
||||
'\uD81A\uDF5D',
|
||||
'\uD81A\uDF5E',
|
||||
'\uD81A\uDF5F',
|
||||
'\uD81A\uDF60',
|
||||
'\uD81A\uDF61',
|
||||
'\uD834\uDF60',
|
||||
'\uD834\uDF61',
|
||||
'\uD834\uDF62',
|
||||
'\uD834\uDF63',
|
||||
'\uD834\uDF64',
|
||||
'\uD834\uDF65',
|
||||
'\uD834\uDF66',
|
||||
'\uD834\uDF67',
|
||||
'\uD834\uDF68',
|
||||
'\uD834\uDF69',
|
||||
'\uD834\uDF6A',
|
||||
'\uD834\uDF6B',
|
||||
'\uD834\uDF6C',
|
||||
'\uD834\uDF6D',
|
||||
'\uD834\uDF6E',
|
||||
'\uD834\uDF6F',
|
||||
'\uD834\uDF70',
|
||||
'\uD834\uDF71',
|
||||
'\uD83A\uDCC7',
|
||||
'\uD83A\uDCC8',
|
||||
'\uD83A\uDCC9',
|
||||
'\uD83A\uDCCA',
|
||||
'\uD83A\uDCCB',
|
||||
'\uD83A\uDCCC',
|
||||
'\uD83A\uDCCD',
|
||||
'\uD83A\uDCCE',
|
||||
'\uD83A\uDCCF',
|
||||
'\uD83C\uDD00',
|
||||
'\uD83C\uDD01',
|
||||
'\uD83C\uDD02',
|
||||
'\uD83C\uDD03',
|
||||
'\uD83C\uDD04',
|
||||
'\uD83C\uDD05',
|
||||
'\uD83C\uDD06',
|
||||
'\uD83C\uDD07',
|
||||
'\uD83C\uDD08',
|
||||
'\uD83C\uDD09',
|
||||
'\uD83C\uDD0A',
|
||||
'\uD83C\uDD0B',
|
||||
'\uD83C\uDD0C'
|
||||
];if(typeof module !== 'undefined') module.exports = unicode;
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user