biotite 1.5.0__cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of biotite might be problematic. Click here for more details.
- biotite/__init__.py +18 -0
- biotite/application/__init__.py +69 -0
- biotite/application/application.py +276 -0
- biotite/application/autodock/__init__.py +12 -0
- biotite/application/autodock/app.py +500 -0
- biotite/application/blast/__init__.py +14 -0
- biotite/application/blast/alignment.py +92 -0
- biotite/application/blast/webapp.py +428 -0
- biotite/application/clustalo/__init__.py +12 -0
- biotite/application/clustalo/app.py +223 -0
- biotite/application/dssp/__init__.py +12 -0
- biotite/application/dssp/app.py +216 -0
- biotite/application/localapp.py +342 -0
- biotite/application/mafft/__init__.py +12 -0
- biotite/application/mafft/app.py +116 -0
- biotite/application/msaapp.py +363 -0
- biotite/application/muscle/__init__.py +13 -0
- biotite/application/muscle/app3.py +227 -0
- biotite/application/muscle/app5.py +163 -0
- biotite/application/sra/__init__.py +18 -0
- biotite/application/sra/app.py +447 -0
- biotite/application/tantan/__init__.py +12 -0
- biotite/application/tantan/app.py +199 -0
- biotite/application/util.py +77 -0
- biotite/application/viennarna/__init__.py +18 -0
- biotite/application/viennarna/rnaalifold.py +310 -0
- biotite/application/viennarna/rnafold.py +254 -0
- biotite/application/viennarna/rnaplot.py +208 -0
- biotite/application/viennarna/util.py +77 -0
- biotite/application/webapp.py +76 -0
- biotite/copyable.py +71 -0
- biotite/database/__init__.py +23 -0
- biotite/database/afdb/__init__.py +12 -0
- biotite/database/afdb/download.py +197 -0
- biotite/database/entrez/__init__.py +15 -0
- biotite/database/entrez/check.py +60 -0
- biotite/database/entrez/dbnames.py +101 -0
- biotite/database/entrez/download.py +228 -0
- biotite/database/entrez/key.py +44 -0
- biotite/database/entrez/query.py +263 -0
- biotite/database/error.py +16 -0
- biotite/database/pubchem/__init__.py +21 -0
- biotite/database/pubchem/download.py +258 -0
- biotite/database/pubchem/error.py +30 -0
- biotite/database/pubchem/query.py +819 -0
- biotite/database/pubchem/throttle.py +98 -0
- biotite/database/rcsb/__init__.py +13 -0
- biotite/database/rcsb/download.py +161 -0
- biotite/database/rcsb/query.py +963 -0
- biotite/database/uniprot/__init__.py +13 -0
- biotite/database/uniprot/check.py +40 -0
- biotite/database/uniprot/download.py +126 -0
- biotite/database/uniprot/query.py +292 -0
- biotite/file.py +244 -0
- biotite/interface/__init__.py +19 -0
- biotite/interface/openmm/__init__.py +20 -0
- biotite/interface/openmm/state.py +93 -0
- biotite/interface/openmm/system.py +227 -0
- biotite/interface/pymol/__init__.py +201 -0
- biotite/interface/pymol/cgo.py +346 -0
- biotite/interface/pymol/convert.py +185 -0
- biotite/interface/pymol/display.py +267 -0
- biotite/interface/pymol/object.py +1228 -0
- biotite/interface/pymol/shapes.py +178 -0
- biotite/interface/pymol/startup.py +169 -0
- biotite/interface/rdkit/__init__.py +19 -0
- biotite/interface/rdkit/mol.py +490 -0
- biotite/interface/version.py +94 -0
- biotite/interface/warning.py +19 -0
- biotite/sequence/__init__.py +84 -0
- biotite/sequence/align/__init__.py +199 -0
- biotite/sequence/align/alignment.py +702 -0
- biotite/sequence/align/banded.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/align/banded.pyx +652 -0
- biotite/sequence/align/buckets.py +71 -0
- biotite/sequence/align/cigar.py +425 -0
- biotite/sequence/align/kmeralphabet.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/align/kmeralphabet.pyx +595 -0
- biotite/sequence/align/kmersimilarity.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/align/kmersimilarity.pyx +233 -0
- biotite/sequence/align/kmertable.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/align/kmertable.pyx +3411 -0
- biotite/sequence/align/localgapped.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/align/localgapped.pyx +892 -0
- biotite/sequence/align/localungapped.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/align/localungapped.pyx +279 -0
- biotite/sequence/align/matrix.py +631 -0
- biotite/sequence/align/matrix_data/3Di.mat +24 -0
- biotite/sequence/align/matrix_data/BLOSUM100.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM30.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM35.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM40.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM45.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM50.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM50_13p.mat +25 -0
- biotite/sequence/align/matrix_data/BLOSUM50_14.3.mat +25 -0
- biotite/sequence/align/matrix_data/BLOSUM50_5.0.mat +25 -0
- biotite/sequence/align/matrix_data/BLOSUM55.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM60.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM62.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM62_13p.mat +25 -0
- biotite/sequence/align/matrix_data/BLOSUM62_14.3.mat +25 -0
- biotite/sequence/align/matrix_data/BLOSUM62_5.0.mat +25 -0
- biotite/sequence/align/matrix_data/BLOSUM65.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM70.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM75.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM80.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM85.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM90.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUMN.mat +31 -0
- biotite/sequence/align/matrix_data/CorBLOSUM49_5.0.mat +25 -0
- biotite/sequence/align/matrix_data/CorBLOSUM57_13p.mat +25 -0
- biotite/sequence/align/matrix_data/CorBLOSUM57_14.3.mat +25 -0
- biotite/sequence/align/matrix_data/CorBLOSUM61_5.0.mat +25 -0
- biotite/sequence/align/matrix_data/CorBLOSUM66_13p.mat +25 -0
- biotite/sequence/align/matrix_data/CorBLOSUM67_14.3.mat +25 -0
- biotite/sequence/align/matrix_data/DAYHOFF.mat +32 -0
- biotite/sequence/align/matrix_data/GONNET.mat +26 -0
- biotite/sequence/align/matrix_data/IDENTITY.mat +25 -0
- biotite/sequence/align/matrix_data/MATCH.mat +25 -0
- biotite/sequence/align/matrix_data/NUC.mat +25 -0
- biotite/sequence/align/matrix_data/PAM10.mat +34 -0
- biotite/sequence/align/matrix_data/PAM100.mat +34 -0
- biotite/sequence/align/matrix_data/PAM110.mat +34 -0
- biotite/sequence/align/matrix_data/PAM120.mat +34 -0
- biotite/sequence/align/matrix_data/PAM130.mat +34 -0
- biotite/sequence/align/matrix_data/PAM140.mat +34 -0
- biotite/sequence/align/matrix_data/PAM150.mat +34 -0
- biotite/sequence/align/matrix_data/PAM160.mat +34 -0
- biotite/sequence/align/matrix_data/PAM170.mat +34 -0
- biotite/sequence/align/matrix_data/PAM180.mat +34 -0
- biotite/sequence/align/matrix_data/PAM190.mat +34 -0
- biotite/sequence/align/matrix_data/PAM20.mat +34 -0
- biotite/sequence/align/matrix_data/PAM200.mat +34 -0
- biotite/sequence/align/matrix_data/PAM210.mat +34 -0
- biotite/sequence/align/matrix_data/PAM220.mat +34 -0
- biotite/sequence/align/matrix_data/PAM230.mat +34 -0
- biotite/sequence/align/matrix_data/PAM240.mat +34 -0
- biotite/sequence/align/matrix_data/PAM250.mat +34 -0
- biotite/sequence/align/matrix_data/PAM260.mat +34 -0
- biotite/sequence/align/matrix_data/PAM270.mat +34 -0
- biotite/sequence/align/matrix_data/PAM280.mat +34 -0
- biotite/sequence/align/matrix_data/PAM290.mat +34 -0
- biotite/sequence/align/matrix_data/PAM30.mat +34 -0
- biotite/sequence/align/matrix_data/PAM300.mat +34 -0
- biotite/sequence/align/matrix_data/PAM310.mat +34 -0
- biotite/sequence/align/matrix_data/PAM320.mat +34 -0
- biotite/sequence/align/matrix_data/PAM330.mat +34 -0
- biotite/sequence/align/matrix_data/PAM340.mat +34 -0
- biotite/sequence/align/matrix_data/PAM350.mat +34 -0
- biotite/sequence/align/matrix_data/PAM360.mat +34 -0
- biotite/sequence/align/matrix_data/PAM370.mat +34 -0
- biotite/sequence/align/matrix_data/PAM380.mat +34 -0
- biotite/sequence/align/matrix_data/PAM390.mat +34 -0
- biotite/sequence/align/matrix_data/PAM40.mat +34 -0
- biotite/sequence/align/matrix_data/PAM400.mat +34 -0
- biotite/sequence/align/matrix_data/PAM410.mat +34 -0
- biotite/sequence/align/matrix_data/PAM420.mat +34 -0
- biotite/sequence/align/matrix_data/PAM430.mat +34 -0
- biotite/sequence/align/matrix_data/PAM440.mat +34 -0
- biotite/sequence/align/matrix_data/PAM450.mat +34 -0
- biotite/sequence/align/matrix_data/PAM460.mat +34 -0
- biotite/sequence/align/matrix_data/PAM470.mat +34 -0
- biotite/sequence/align/matrix_data/PAM480.mat +34 -0
- biotite/sequence/align/matrix_data/PAM490.mat +34 -0
- biotite/sequence/align/matrix_data/PAM50.mat +34 -0
- biotite/sequence/align/matrix_data/PAM500.mat +34 -0
- biotite/sequence/align/matrix_data/PAM60.mat +34 -0
- biotite/sequence/align/matrix_data/PAM70.mat +34 -0
- biotite/sequence/align/matrix_data/PAM80.mat +34 -0
- biotite/sequence/align/matrix_data/PAM90.mat +34 -0
- biotite/sequence/align/matrix_data/PB.license +21 -0
- biotite/sequence/align/matrix_data/PB.mat +18 -0
- biotite/sequence/align/matrix_data/RBLOSUM52_5.0.mat +25 -0
- biotite/sequence/align/matrix_data/RBLOSUM59_13p.mat +25 -0
- biotite/sequence/align/matrix_data/RBLOSUM59_14.3.mat +25 -0
- biotite/sequence/align/matrix_data/RBLOSUM64_5.0.mat +25 -0
- biotite/sequence/align/matrix_data/RBLOSUM69_13p.mat +25 -0
- biotite/sequence/align/matrix_data/RBLOSUM69_14.3.mat +25 -0
- biotite/sequence/align/multiple.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/align/multiple.pyx +619 -0
- biotite/sequence/align/pairwise.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/align/pairwise.pyx +585 -0
- biotite/sequence/align/permutation.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/align/permutation.pyx +313 -0
- biotite/sequence/align/primes.txt +821 -0
- biotite/sequence/align/selector.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/align/selector.pyx +954 -0
- biotite/sequence/align/statistics.py +264 -0
- biotite/sequence/align/tracetable.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/align/tracetable.pxd +64 -0
- biotite/sequence/align/tracetable.pyx +370 -0
- biotite/sequence/alphabet.py +555 -0
- biotite/sequence/annotation.py +836 -0
- biotite/sequence/codec.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/codec.pyx +155 -0
- biotite/sequence/codon.py +476 -0
- biotite/sequence/codon_tables.txt +202 -0
- biotite/sequence/graphics/__init__.py +33 -0
- biotite/sequence/graphics/alignment.py +1101 -0
- biotite/sequence/graphics/color_schemes/3di_flower.json +48 -0
- biotite/sequence/graphics/color_schemes/autumn.json +51 -0
- biotite/sequence/graphics/color_schemes/blossom.json +51 -0
- biotite/sequence/graphics/color_schemes/clustalx_dna.json +11 -0
- biotite/sequence/graphics/color_schemes/clustalx_protein.json +28 -0
- biotite/sequence/graphics/color_schemes/flower.json +51 -0
- biotite/sequence/graphics/color_schemes/jalview_buried.json +31 -0
- biotite/sequence/graphics/color_schemes/jalview_hydrophobicity.json +31 -0
- biotite/sequence/graphics/color_schemes/jalview_prop_helix.json +31 -0
- biotite/sequence/graphics/color_schemes/jalview_prop_strand.json +31 -0
- biotite/sequence/graphics/color_schemes/jalview_prop_turn.json +31 -0
- biotite/sequence/graphics/color_schemes/jalview_taylor.json +28 -0
- biotite/sequence/graphics/color_schemes/jalview_zappo.json +28 -0
- biotite/sequence/graphics/color_schemes/ocean.json +51 -0
- biotite/sequence/graphics/color_schemes/pb_flower.json +40 -0
- biotite/sequence/graphics/color_schemes/rainbow_dna.json +11 -0
- biotite/sequence/graphics/color_schemes/rainbow_protein.json +30 -0
- biotite/sequence/graphics/color_schemes/spring.json +51 -0
- biotite/sequence/graphics/color_schemes/sunset.json +51 -0
- biotite/sequence/graphics/color_schemes/wither.json +51 -0
- biotite/sequence/graphics/colorschemes.py +170 -0
- biotite/sequence/graphics/dendrogram.py +231 -0
- biotite/sequence/graphics/features.py +544 -0
- biotite/sequence/graphics/logo.py +102 -0
- biotite/sequence/graphics/plasmid.py +712 -0
- biotite/sequence/io/__init__.py +12 -0
- biotite/sequence/io/fasta/__init__.py +22 -0
- biotite/sequence/io/fasta/convert.py +283 -0
- biotite/sequence/io/fasta/file.py +265 -0
- biotite/sequence/io/fastq/__init__.py +19 -0
- biotite/sequence/io/fastq/convert.py +117 -0
- biotite/sequence/io/fastq/file.py +507 -0
- biotite/sequence/io/genbank/__init__.py +17 -0
- biotite/sequence/io/genbank/annotation.py +269 -0
- biotite/sequence/io/genbank/file.py +573 -0
- biotite/sequence/io/genbank/metadata.py +336 -0
- biotite/sequence/io/genbank/sequence.py +173 -0
- biotite/sequence/io/general.py +201 -0
- biotite/sequence/io/gff/__init__.py +26 -0
- biotite/sequence/io/gff/convert.py +128 -0
- biotite/sequence/io/gff/file.py +449 -0
- biotite/sequence/phylo/__init__.py +36 -0
- biotite/sequence/phylo/nj.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/phylo/nj.pyx +221 -0
- biotite/sequence/phylo/tree.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/phylo/tree.pyx +1169 -0
- biotite/sequence/phylo/upgma.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/phylo/upgma.pyx +164 -0
- biotite/sequence/profile.py +561 -0
- biotite/sequence/search.py +117 -0
- biotite/sequence/seqtypes.py +720 -0
- biotite/sequence/sequence.py +373 -0
- biotite/setup_ccd.py +197 -0
- biotite/structure/__init__.py +135 -0
- biotite/structure/alphabet/__init__.py +25 -0
- biotite/structure/alphabet/encoder.py +332 -0
- biotite/structure/alphabet/encoder_weights_3di.kerasify +0 -0
- biotite/structure/alphabet/i3d.py +109 -0
- biotite/structure/alphabet/layers.py +86 -0
- biotite/structure/alphabet/pb.license +21 -0
- biotite/structure/alphabet/pb.py +170 -0
- biotite/structure/alphabet/unkerasify.py +128 -0
- biotite/structure/atoms.py +1562 -0
- biotite/structure/basepairs.py +1403 -0
- biotite/structure/bonds.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/structure/bonds.pyx +2036 -0
- biotite/structure/box.py +724 -0
- biotite/structure/celllist.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/structure/celllist.pyx +864 -0
- biotite/structure/chains.py +310 -0
- biotite/structure/charges.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/structure/charges.pyx +520 -0
- biotite/structure/compare.py +683 -0
- biotite/structure/density.py +109 -0
- biotite/structure/dotbracket.py +213 -0
- biotite/structure/error.py +39 -0
- biotite/structure/filter.py +591 -0
- biotite/structure/geometry.py +817 -0
- biotite/structure/graphics/__init__.py +13 -0
- biotite/structure/graphics/atoms.py +243 -0
- biotite/structure/graphics/rna.py +298 -0
- biotite/structure/hbond.py +425 -0
- biotite/structure/info/__init__.py +24 -0
- biotite/structure/info/atom_masses.json +121 -0
- biotite/structure/info/atoms.py +98 -0
- biotite/structure/info/bonds.py +149 -0
- biotite/structure/info/ccd.py +200 -0
- biotite/structure/info/components.bcif +0 -0
- biotite/structure/info/groups.py +128 -0
- biotite/structure/info/masses.py +121 -0
- biotite/structure/info/misc.py +137 -0
- biotite/structure/info/radii.py +267 -0
- biotite/structure/info/standardize.py +185 -0
- biotite/structure/integrity.py +213 -0
- biotite/structure/io/__init__.py +29 -0
- biotite/structure/io/dcd/__init__.py +13 -0
- biotite/structure/io/dcd/file.py +67 -0
- biotite/structure/io/general.py +243 -0
- biotite/structure/io/gro/__init__.py +14 -0
- biotite/structure/io/gro/file.py +343 -0
- biotite/structure/io/mol/__init__.py +20 -0
- biotite/structure/io/mol/convert.py +112 -0
- biotite/structure/io/mol/ctab.py +420 -0
- biotite/structure/io/mol/header.py +120 -0
- biotite/structure/io/mol/mol.py +149 -0
- biotite/structure/io/mol/sdf.py +940 -0
- biotite/structure/io/netcdf/__init__.py +13 -0
- biotite/structure/io/netcdf/file.py +64 -0
- biotite/structure/io/pdb/__init__.py +20 -0
- biotite/structure/io/pdb/convert.py +389 -0
- biotite/structure/io/pdb/file.py +1380 -0
- biotite/structure/io/pdb/hybrid36.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/structure/io/pdb/hybrid36.pyx +242 -0
- biotite/structure/io/pdbqt/__init__.py +15 -0
- biotite/structure/io/pdbqt/convert.py +113 -0
- biotite/structure/io/pdbqt/file.py +688 -0
- biotite/structure/io/pdbx/__init__.py +23 -0
- biotite/structure/io/pdbx/bcif.py +674 -0
- biotite/structure/io/pdbx/cif.py +1091 -0
- biotite/structure/io/pdbx/component.py +251 -0
- biotite/structure/io/pdbx/compress.py +362 -0
- biotite/structure/io/pdbx/convert.py +2113 -0
- biotite/structure/io/pdbx/encoding.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/structure/io/pdbx/encoding.pyx +1078 -0
- biotite/structure/io/trajfile.py +696 -0
- biotite/structure/io/trr/__init__.py +13 -0
- biotite/structure/io/trr/file.py +43 -0
- biotite/structure/io/util.py +38 -0
- biotite/structure/io/xtc/__init__.py +13 -0
- biotite/structure/io/xtc/file.py +43 -0
- biotite/structure/mechanics.py +72 -0
- biotite/structure/molecules.py +337 -0
- biotite/structure/pseudoknots.py +622 -0
- biotite/structure/rdf.py +245 -0
- biotite/structure/repair.py +302 -0
- biotite/structure/residues.py +716 -0
- biotite/structure/rings.py +451 -0
- biotite/structure/sasa.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/structure/sasa.pyx +322 -0
- biotite/structure/segments.py +328 -0
- biotite/structure/sequence.py +110 -0
- biotite/structure/spacegroups.json +1567 -0
- biotite/structure/spacegroups.license +26 -0
- biotite/structure/sse.py +306 -0
- biotite/structure/superimpose.py +511 -0
- biotite/structure/tm.py +581 -0
- biotite/structure/transform.py +736 -0
- biotite/structure/util.py +160 -0
- biotite/version.py +34 -0
- biotite/visualize.py +375 -0
- biotite-1.5.0.dist-info/METADATA +162 -0
- biotite-1.5.0.dist-info/RECORD +354 -0
- biotite-1.5.0.dist-info/WHEEL +6 -0
- biotite-1.5.0.dist-info/licenses/LICENSE.rst +30 -0
|
@@ -0,0 +1,1567 @@
|
|
|
1
|
+
{
|
|
2
|
+
"transformation_parts": [
|
|
3
|
+
[1.0, 0.0, 0.0, 0.0],
|
|
4
|
+
[0.0, 1.0, 0.0, 0.0],
|
|
5
|
+
[0.0, 0.0, 1.0, 0.0],
|
|
6
|
+
[-1.0, 0.0, 0.0, 0.0],
|
|
7
|
+
[0.0, -1.0, 0.0, 0.0],
|
|
8
|
+
[0.0, 0.0, -1.0, 0.0],
|
|
9
|
+
[0.0, 1.0, 0.0, 0.5],
|
|
10
|
+
[1.0, 0.0, 0.0, 0.5],
|
|
11
|
+
[-1.0, 0.0, 0.0, 0.5],
|
|
12
|
+
[0.0, 0.0, 1.0, 0.5],
|
|
13
|
+
[0.0, -1.0, 0.0, 0.5],
|
|
14
|
+
[0.0, 0.0, -1.0, 0.5],
|
|
15
|
+
[1.0, 0.0, 0.0, 0.25],
|
|
16
|
+
[0.0, -1.0, 0.0, 0.25],
|
|
17
|
+
[0.0, 0.0, 1.0, 0.25],
|
|
18
|
+
[-1.0, 0.0, 0.0, 0.25],
|
|
19
|
+
[0.0, 1.0, 0.0, 0.25],
|
|
20
|
+
[0.0, -1.0, 0.0, 0.75],
|
|
21
|
+
[0.0, 0.0, 1.0, 0.75],
|
|
22
|
+
[0.0, 1.0, 0.0, 0.75],
|
|
23
|
+
[1.0, 0.0, 0.0, 0.75],
|
|
24
|
+
[-1.0, 0.0, 0.0, 0.75],
|
|
25
|
+
[0.0, 0.0, -1.0, 0.25],
|
|
26
|
+
[0.0, 0.0, -1.0, 0.75],
|
|
27
|
+
[1.0, -1.0, 0.0, 0.0],
|
|
28
|
+
[-1.0, 1.0, 0.0, 0.0],
|
|
29
|
+
[0.0, 0.0, 1.0, 0.33333334],
|
|
30
|
+
[0.0, 0.0, 1.0, 0.6666667],
|
|
31
|
+
[1.0, 0.0, 0.0, 0.6666667],
|
|
32
|
+
[0.0, 1.0, 0.0, 0.33333334],
|
|
33
|
+
[0.0, -1.0, 0.0, 0.6666667],
|
|
34
|
+
[1.0, -1.0, 0.0, 0.33333334],
|
|
35
|
+
[-1.0, 1.0, 0.0, 0.6666667],
|
|
36
|
+
[-1.0, 0.0, 0.0, 0.33333334],
|
|
37
|
+
[1.0, 0.0, 0.0, 0.33333334],
|
|
38
|
+
[0.0, 1.0, 0.0, 0.6666667],
|
|
39
|
+
[0.0, -1.0, 0.0, 0.33333334],
|
|
40
|
+
[1.0, -1.0, 0.0, 0.6666667],
|
|
41
|
+
[-1.0, 1.0, 0.0, 0.33333334],
|
|
42
|
+
[-1.0, 0.0, 0.0, 0.6666667],
|
|
43
|
+
[0.0, 0.0, -1.0, 0.33333334],
|
|
44
|
+
[0.0, 0.0, -1.0, 0.6666667],
|
|
45
|
+
[0.0, 0.0, 1.0, 0.8333333],
|
|
46
|
+
[0.0, 0.0, 1.0, 0.16666667],
|
|
47
|
+
[0.0, 0.0, -1.0, 0.8333333],
|
|
48
|
+
[0.0, 0.0, -1.0, 0.16666667]
|
|
49
|
+
],
|
|
50
|
+
|
|
51
|
+
"transformations": [
|
|
52
|
+
[0, 1, 2],
|
|
53
|
+
[3, 4, 5],
|
|
54
|
+
[3, 1, 5],
|
|
55
|
+
[3, 6, 5],
|
|
56
|
+
[7, 6, 2],
|
|
57
|
+
[8, 6, 5],
|
|
58
|
+
[0, 4, 2],
|
|
59
|
+
[0, 4, 9],
|
|
60
|
+
[7, 10, 2],
|
|
61
|
+
[7, 10, 9],
|
|
62
|
+
[0, 10, 2],
|
|
63
|
+
[8, 10, 5],
|
|
64
|
+
[3, 1, 11],
|
|
65
|
+
[3, 6, 11],
|
|
66
|
+
[0, 10, 9],
|
|
67
|
+
[8, 6, 11],
|
|
68
|
+
[3, 4, 2],
|
|
69
|
+
[0, 4, 5],
|
|
70
|
+
[3, 4, 9],
|
|
71
|
+
[7, 10, 5],
|
|
72
|
+
[8, 4, 9],
|
|
73
|
+
[8, 10, 9],
|
|
74
|
+
[8, 10, 2],
|
|
75
|
+
[0, 6, 9],
|
|
76
|
+
[3, 10, 9],
|
|
77
|
+
[0, 10, 11],
|
|
78
|
+
[7, 1, 9],
|
|
79
|
+
[8, 1, 11],
|
|
80
|
+
[7, 4, 11],
|
|
81
|
+
[7, 6, 9],
|
|
82
|
+
[7, 10, 11],
|
|
83
|
+
[3, 10, 2],
|
|
84
|
+
[8, 1, 5],
|
|
85
|
+
[0, 4, 11],
|
|
86
|
+
[3, 1, 2],
|
|
87
|
+
[3, 1, 9],
|
|
88
|
+
[7, 4, 2],
|
|
89
|
+
[8, 1, 2],
|
|
90
|
+
[8, 1, 9],
|
|
91
|
+
[3, 6, 9],
|
|
92
|
+
[7, 4, 9],
|
|
93
|
+
[8, 6, 2],
|
|
94
|
+
[8, 6, 9],
|
|
95
|
+
[3, 6, 2],
|
|
96
|
+
[12, 13, 14],
|
|
97
|
+
[15, 16, 14],
|
|
98
|
+
[12, 17, 18],
|
|
99
|
+
[15, 19, 18],
|
|
100
|
+
[20, 13, 18],
|
|
101
|
+
[21, 16, 18],
|
|
102
|
+
[20, 17, 14],
|
|
103
|
+
[21, 19, 14],
|
|
104
|
+
[0, 1, 5],
|
|
105
|
+
[8, 10, 11],
|
|
106
|
+
[7, 6, 11],
|
|
107
|
+
[7, 6, 5],
|
|
108
|
+
[8, 4, 2],
|
|
109
|
+
[7, 4, 5],
|
|
110
|
+
[7, 1, 5],
|
|
111
|
+
[7, 1, 11],
|
|
112
|
+
[0, 10, 5],
|
|
113
|
+
[0, 1, 11],
|
|
114
|
+
[0, 6, 11],
|
|
115
|
+
[0, 6, 5],
|
|
116
|
+
[3, 10, 11],
|
|
117
|
+
[8, 4, 11],
|
|
118
|
+
[15, 13, 22],
|
|
119
|
+
[12, 16, 22],
|
|
120
|
+
[15, 17, 23],
|
|
121
|
+
[12, 19, 23],
|
|
122
|
+
[21, 13, 23],
|
|
123
|
+
[20, 16, 23],
|
|
124
|
+
[21, 17, 22],
|
|
125
|
+
[20, 19, 22],
|
|
126
|
+
[4, 0, 2],
|
|
127
|
+
[1, 3, 2],
|
|
128
|
+
[4, 0, 14],
|
|
129
|
+
[1, 3, 18],
|
|
130
|
+
[4, 0, 9],
|
|
131
|
+
[1, 3, 9],
|
|
132
|
+
[4, 0, 18],
|
|
133
|
+
[1, 3, 14],
|
|
134
|
+
[10, 7, 9],
|
|
135
|
+
[6, 8, 9],
|
|
136
|
+
[4, 7, 14],
|
|
137
|
+
[6, 3, 18],
|
|
138
|
+
[10, 0, 18],
|
|
139
|
+
[1, 8, 14],
|
|
140
|
+
[1, 3, 5],
|
|
141
|
+
[4, 0, 5],
|
|
142
|
+
[6, 8, 11],
|
|
143
|
+
[10, 7, 11],
|
|
144
|
+
[1, 3, 11],
|
|
145
|
+
[4, 0, 11],
|
|
146
|
+
[10, 7, 2],
|
|
147
|
+
[6, 8, 2],
|
|
148
|
+
[3, 10, 22],
|
|
149
|
+
[7, 1, 23],
|
|
150
|
+
[8, 4, 23],
|
|
151
|
+
[0, 6, 22],
|
|
152
|
+
[1, 0, 5],
|
|
153
|
+
[4, 3, 5],
|
|
154
|
+
[1, 0, 23],
|
|
155
|
+
[4, 3, 22],
|
|
156
|
+
[10, 7, 14],
|
|
157
|
+
[6, 8, 18],
|
|
158
|
+
[8, 6, 22],
|
|
159
|
+
[7, 10, 23],
|
|
160
|
+
[4, 3, 11],
|
|
161
|
+
[1, 0, 11],
|
|
162
|
+
[1, 0, 22],
|
|
163
|
+
[4, 3, 23],
|
|
164
|
+
[10, 7, 18],
|
|
165
|
+
[6, 8, 14],
|
|
166
|
+
[8, 6, 23],
|
|
167
|
+
[7, 10, 22],
|
|
168
|
+
[6, 7, 11],
|
|
169
|
+
[10, 8, 11],
|
|
170
|
+
[8, 1, 23],
|
|
171
|
+
[0, 10, 22],
|
|
172
|
+
[3, 6, 22],
|
|
173
|
+
[7, 4, 23],
|
|
174
|
+
[4, 3, 2],
|
|
175
|
+
[1, 0, 2],
|
|
176
|
+
[10, 8, 2],
|
|
177
|
+
[6, 7, 2],
|
|
178
|
+
[4, 3, 9],
|
|
179
|
+
[1, 0, 9],
|
|
180
|
+
[10, 8, 9],
|
|
181
|
+
[6, 7, 9],
|
|
182
|
+
[4, 8, 14],
|
|
183
|
+
[6, 0, 18],
|
|
184
|
+
[10, 3, 18],
|
|
185
|
+
[1, 7, 14],
|
|
186
|
+
[4, 8, 18],
|
|
187
|
+
[6, 0, 14],
|
|
188
|
+
[10, 3, 14],
|
|
189
|
+
[1, 7, 18],
|
|
190
|
+
[6, 7, 5],
|
|
191
|
+
[10, 8, 5],
|
|
192
|
+
[6, 8, 5],
|
|
193
|
+
[10, 7, 5],
|
|
194
|
+
[8, 1, 22],
|
|
195
|
+
[0, 10, 23],
|
|
196
|
+
[3, 6, 23],
|
|
197
|
+
[7, 4, 22],
|
|
198
|
+
[4, 24, 2],
|
|
199
|
+
[25, 3, 2],
|
|
200
|
+
[4, 24, 26],
|
|
201
|
+
[25, 3, 27],
|
|
202
|
+
[4, 24, 27],
|
|
203
|
+
[25, 3, 26],
|
|
204
|
+
[28, 29, 26],
|
|
205
|
+
[30, 31, 26],
|
|
206
|
+
[32, 33, 26],
|
|
207
|
+
[34, 35, 27],
|
|
208
|
+
[36, 37, 27],
|
|
209
|
+
[38, 39, 27],
|
|
210
|
+
[2, 0, 1],
|
|
211
|
+
[1, 2, 0],
|
|
212
|
+
[1, 25, 5],
|
|
213
|
+
[24, 0, 5],
|
|
214
|
+
[39, 36, 40],
|
|
215
|
+
[35, 38, 40],
|
|
216
|
+
[37, 34, 40],
|
|
217
|
+
[33, 30, 41],
|
|
218
|
+
[29, 32, 41],
|
|
219
|
+
[31, 28, 41],
|
|
220
|
+
[5, 3, 4],
|
|
221
|
+
[4, 5, 3],
|
|
222
|
+
[25, 1, 5],
|
|
223
|
+
[0, 24, 5],
|
|
224
|
+
[24, 4, 5],
|
|
225
|
+
[3, 25, 5],
|
|
226
|
+
[4, 3, 41],
|
|
227
|
+
[25, 1, 40],
|
|
228
|
+
[24, 4, 41],
|
|
229
|
+
[3, 25, 40],
|
|
230
|
+
[4, 3, 40],
|
|
231
|
+
[25, 1, 41],
|
|
232
|
+
[24, 4, 40],
|
|
233
|
+
[3, 25, 41],
|
|
234
|
+
[35, 34, 40],
|
|
235
|
+
[37, 36, 40],
|
|
236
|
+
[39, 38, 40],
|
|
237
|
+
[29, 28, 41],
|
|
238
|
+
[31, 30, 41],
|
|
239
|
+
[33, 32, 41],
|
|
240
|
+
[3, 5, 4],
|
|
241
|
+
[5, 4, 3],
|
|
242
|
+
[25, 1, 2],
|
|
243
|
+
[0, 24, 2],
|
|
244
|
+
[24, 4, 2],
|
|
245
|
+
[3, 25, 2],
|
|
246
|
+
[25, 1, 9],
|
|
247
|
+
[0, 24, 9],
|
|
248
|
+
[24, 4, 9],
|
|
249
|
+
[3, 25, 9],
|
|
250
|
+
[30, 33, 26],
|
|
251
|
+
[32, 29, 26],
|
|
252
|
+
[28, 31, 26],
|
|
253
|
+
[36, 39, 27],
|
|
254
|
+
[38, 35, 27],
|
|
255
|
+
[34, 37, 27],
|
|
256
|
+
[0, 2, 1],
|
|
257
|
+
[2, 1, 0],
|
|
258
|
+
[30, 33, 42],
|
|
259
|
+
[32, 29, 42],
|
|
260
|
+
[28, 31, 42],
|
|
261
|
+
[36, 39, 43],
|
|
262
|
+
[38, 35, 43],
|
|
263
|
+
[34, 37, 43],
|
|
264
|
+
[7, 9, 6],
|
|
265
|
+
[9, 6, 7],
|
|
266
|
+
[25, 1, 11],
|
|
267
|
+
[0, 24, 11],
|
|
268
|
+
[24, 4, 11],
|
|
269
|
+
[3, 25, 11],
|
|
270
|
+
[35, 34, 44],
|
|
271
|
+
[37, 36, 44],
|
|
272
|
+
[39, 38, 44],
|
|
273
|
+
[29, 28, 45],
|
|
274
|
+
[31, 30, 45],
|
|
275
|
+
[33, 32, 45],
|
|
276
|
+
[8, 11, 10],
|
|
277
|
+
[11, 10, 8],
|
|
278
|
+
[1, 25, 2],
|
|
279
|
+
[24, 0, 2],
|
|
280
|
+
[1, 25, 42],
|
|
281
|
+
[24, 0, 43],
|
|
282
|
+
[1, 25, 43],
|
|
283
|
+
[24, 0, 42],
|
|
284
|
+
[1, 25, 27],
|
|
285
|
+
[24, 0, 26],
|
|
286
|
+
[1, 25, 26],
|
|
287
|
+
[24, 0, 27],
|
|
288
|
+
[1, 25, 9],
|
|
289
|
+
[24, 0, 9],
|
|
290
|
+
[4, 24, 5],
|
|
291
|
+
[25, 3, 5],
|
|
292
|
+
[4, 24, 11],
|
|
293
|
+
[25, 3, 11],
|
|
294
|
+
[1, 0, 40],
|
|
295
|
+
[4, 3, 44],
|
|
296
|
+
[0, 24, 45],
|
|
297
|
+
[1, 0, 41],
|
|
298
|
+
[4, 3, 45],
|
|
299
|
+
[0, 24, 44],
|
|
300
|
+
[0, 24, 40],
|
|
301
|
+
[0, 24, 41],
|
|
302
|
+
[2, 3, 4],
|
|
303
|
+
[5, 3, 1],
|
|
304
|
+
[5, 0, 4],
|
|
305
|
+
[4, 2, 3],
|
|
306
|
+
[1, 5, 3],
|
|
307
|
+
[4, 5, 0],
|
|
308
|
+
[2, 7, 6],
|
|
309
|
+
[2, 8, 10],
|
|
310
|
+
[5, 8, 6],
|
|
311
|
+
[5, 7, 10],
|
|
312
|
+
[1, 9, 7],
|
|
313
|
+
[4, 9, 8],
|
|
314
|
+
[1, 11, 8],
|
|
315
|
+
[4, 11, 7],
|
|
316
|
+
[9, 0, 6],
|
|
317
|
+
[9, 3, 10],
|
|
318
|
+
[11, 3, 6],
|
|
319
|
+
[11, 0, 10],
|
|
320
|
+
[6, 2, 7],
|
|
321
|
+
[10, 2, 8],
|
|
322
|
+
[6, 5, 8],
|
|
323
|
+
[10, 5, 7],
|
|
324
|
+
[9, 7, 1],
|
|
325
|
+
[9, 8, 4],
|
|
326
|
+
[11, 8, 1],
|
|
327
|
+
[11, 7, 4],
|
|
328
|
+
[6, 9, 0],
|
|
329
|
+
[10, 9, 3],
|
|
330
|
+
[6, 11, 3],
|
|
331
|
+
[10, 11, 0],
|
|
332
|
+
[9, 7, 6],
|
|
333
|
+
[9, 8, 10],
|
|
334
|
+
[11, 8, 6],
|
|
335
|
+
[11, 7, 10],
|
|
336
|
+
[6, 9, 7],
|
|
337
|
+
[10, 9, 8],
|
|
338
|
+
[6, 11, 8],
|
|
339
|
+
[10, 11, 7],
|
|
340
|
+
[2, 3, 10],
|
|
341
|
+
[5, 8, 1],
|
|
342
|
+
[11, 0, 4],
|
|
343
|
+
[10, 2, 3],
|
|
344
|
+
[1, 5, 8],
|
|
345
|
+
[4, 11, 0],
|
|
346
|
+
[5, 0, 1],
|
|
347
|
+
[2, 0, 4],
|
|
348
|
+
[2, 3, 1],
|
|
349
|
+
[1, 5, 0],
|
|
350
|
+
[4, 2, 0],
|
|
351
|
+
[1, 2, 3],
|
|
352
|
+
[11, 8, 10],
|
|
353
|
+
[11, 7, 6],
|
|
354
|
+
[9, 7, 10],
|
|
355
|
+
[9, 8, 6],
|
|
356
|
+
[10, 11, 8],
|
|
357
|
+
[6, 11, 7],
|
|
358
|
+
[10, 9, 7],
|
|
359
|
+
[6, 9, 8],
|
|
360
|
+
[5, 8, 10],
|
|
361
|
+
[5, 7, 6],
|
|
362
|
+
[2, 7, 10],
|
|
363
|
+
[2, 8, 6],
|
|
364
|
+
[4, 11, 8],
|
|
365
|
+
[1, 11, 7],
|
|
366
|
+
[4, 9, 7],
|
|
367
|
+
[1, 9, 8],
|
|
368
|
+
[11, 3, 10],
|
|
369
|
+
[11, 0, 6],
|
|
370
|
+
[9, 0, 10],
|
|
371
|
+
[9, 3, 6],
|
|
372
|
+
[10, 5, 8],
|
|
373
|
+
[6, 5, 7],
|
|
374
|
+
[10, 2, 7],
|
|
375
|
+
[6, 2, 8],
|
|
376
|
+
[11, 8, 4],
|
|
377
|
+
[11, 7, 1],
|
|
378
|
+
[9, 7, 4],
|
|
379
|
+
[9, 8, 1],
|
|
380
|
+
[10, 11, 3],
|
|
381
|
+
[6, 11, 0],
|
|
382
|
+
[10, 9, 0],
|
|
383
|
+
[6, 9, 3],
|
|
384
|
+
[22, 15, 13],
|
|
385
|
+
[22, 12, 16],
|
|
386
|
+
[14, 12, 13],
|
|
387
|
+
[14, 15, 16],
|
|
388
|
+
[13, 22, 15],
|
|
389
|
+
[16, 22, 12],
|
|
390
|
+
[13, 14, 12],
|
|
391
|
+
[16, 14, 15],
|
|
392
|
+
[22, 21, 17],
|
|
393
|
+
[22, 20, 19],
|
|
394
|
+
[14, 20, 17],
|
|
395
|
+
[14, 21, 19],
|
|
396
|
+
[13, 23, 21],
|
|
397
|
+
[16, 23, 20],
|
|
398
|
+
[13, 18, 20],
|
|
399
|
+
[16, 18, 21],
|
|
400
|
+
[23, 15, 17],
|
|
401
|
+
[23, 12, 19],
|
|
402
|
+
[18, 12, 17],
|
|
403
|
+
[18, 15, 19],
|
|
404
|
+
[17, 22, 21],
|
|
405
|
+
[19, 22, 20],
|
|
406
|
+
[17, 14, 20],
|
|
407
|
+
[19, 14, 21],
|
|
408
|
+
[23, 21, 13],
|
|
409
|
+
[23, 20, 16],
|
|
410
|
+
[18, 20, 13],
|
|
411
|
+
[18, 21, 16],
|
|
412
|
+
[17, 23, 15],
|
|
413
|
+
[19, 23, 12],
|
|
414
|
+
[17, 18, 12],
|
|
415
|
+
[19, 18, 15],
|
|
416
|
+
[5, 0, 6],
|
|
417
|
+
[2, 7, 4],
|
|
418
|
+
[9, 3, 1],
|
|
419
|
+
[6, 5, 0],
|
|
420
|
+
[4, 2, 7],
|
|
421
|
+
[1, 9, 3],
|
|
422
|
+
[0, 2, 4],
|
|
423
|
+
[3, 2, 1],
|
|
424
|
+
[0, 5, 1],
|
|
425
|
+
[2, 1, 3],
|
|
426
|
+
[2, 4, 0],
|
|
427
|
+
[5, 1, 0],
|
|
428
|
+
[7, 9, 10],
|
|
429
|
+
[8, 9, 6],
|
|
430
|
+
[7, 11, 6],
|
|
431
|
+
[9, 6, 8],
|
|
432
|
+
[9, 10, 7],
|
|
433
|
+
[11, 6, 7],
|
|
434
|
+
[1, 7, 11],
|
|
435
|
+
[4, 8, 11],
|
|
436
|
+
[1, 8, 9],
|
|
437
|
+
[4, 7, 9],
|
|
438
|
+
[0, 9, 10],
|
|
439
|
+
[3, 9, 6],
|
|
440
|
+
[3, 11, 10],
|
|
441
|
+
[0, 11, 6],
|
|
442
|
+
[2, 6, 8],
|
|
443
|
+
[2, 10, 7],
|
|
444
|
+
[5, 6, 7],
|
|
445
|
+
[5, 10, 8],
|
|
446
|
+
[6, 0, 11],
|
|
447
|
+
[10, 3, 11],
|
|
448
|
+
[6, 3, 9],
|
|
449
|
+
[10, 0, 9],
|
|
450
|
+
[7, 2, 10],
|
|
451
|
+
[8, 2, 6],
|
|
452
|
+
[8, 5, 10],
|
|
453
|
+
[7, 5, 6],
|
|
454
|
+
[9, 1, 8],
|
|
455
|
+
[9, 4, 7],
|
|
456
|
+
[11, 1, 7],
|
|
457
|
+
[11, 4, 8],
|
|
458
|
+
[7, 9, 4],
|
|
459
|
+
[8, 9, 1],
|
|
460
|
+
[8, 11, 4],
|
|
461
|
+
[7, 11, 1],
|
|
462
|
+
[9, 6, 3],
|
|
463
|
+
[9, 10, 0],
|
|
464
|
+
[11, 6, 0],
|
|
465
|
+
[11, 10, 3],
|
|
466
|
+
[19, 12, 23],
|
|
467
|
+
[13, 15, 22],
|
|
468
|
+
[16, 21, 18],
|
|
469
|
+
[17, 20, 14],
|
|
470
|
+
[20, 14, 17],
|
|
471
|
+
[21, 18, 16],
|
|
472
|
+
[15, 22, 13],
|
|
473
|
+
[12, 23, 19],
|
|
474
|
+
[18, 16, 21],
|
|
475
|
+
[14, 17, 20],
|
|
476
|
+
[23, 19, 12],
|
|
477
|
+
[22, 13, 15],
|
|
478
|
+
[19, 20, 22],
|
|
479
|
+
[13, 21, 23],
|
|
480
|
+
[16, 15, 14],
|
|
481
|
+
[17, 12, 18],
|
|
482
|
+
[20, 18, 13],
|
|
483
|
+
[21, 14, 19],
|
|
484
|
+
[15, 23, 17],
|
|
485
|
+
[12, 22, 16],
|
|
486
|
+
[18, 19, 15],
|
|
487
|
+
[14, 13, 12],
|
|
488
|
+
[23, 16, 20],
|
|
489
|
+
[22, 17, 21],
|
|
490
|
+
[16, 12, 22],
|
|
491
|
+
[17, 15, 23],
|
|
492
|
+
[19, 21, 14],
|
|
493
|
+
[13, 20, 18],
|
|
494
|
+
[12, 14, 13],
|
|
495
|
+
[15, 18, 19],
|
|
496
|
+
[21, 22, 17],
|
|
497
|
+
[20, 23, 16],
|
|
498
|
+
[14, 16, 15],
|
|
499
|
+
[18, 17, 12],
|
|
500
|
+
[22, 19, 20],
|
|
501
|
+
[23, 13, 21],
|
|
502
|
+
[16, 20, 23],
|
|
503
|
+
[17, 21, 22],
|
|
504
|
+
[19, 15, 18],
|
|
505
|
+
[13, 12, 14],
|
|
506
|
+
[12, 18, 17],
|
|
507
|
+
[15, 14, 16],
|
|
508
|
+
[21, 23, 13],
|
|
509
|
+
[20, 22, 19],
|
|
510
|
+
[14, 19, 21],
|
|
511
|
+
[18, 13, 20],
|
|
512
|
+
[22, 16, 12],
|
|
513
|
+
[23, 17, 15],
|
|
514
|
+
[19, 12, 22],
|
|
515
|
+
[17, 21, 23],
|
|
516
|
+
[16, 15, 18],
|
|
517
|
+
[13, 20, 14],
|
|
518
|
+
[20, 14, 13],
|
|
519
|
+
[15, 18, 16],
|
|
520
|
+
[21, 23, 17],
|
|
521
|
+
[12, 22, 19],
|
|
522
|
+
[18, 16, 15],
|
|
523
|
+
[14, 13, 20],
|
|
524
|
+
[22, 19, 12],
|
|
525
|
+
[23, 17, 21],
|
|
526
|
+
[3, 2, 4],
|
|
527
|
+
[3, 5, 1],
|
|
528
|
+
[0, 5, 4],
|
|
529
|
+
[2, 4, 3],
|
|
530
|
+
[5, 1, 3],
|
|
531
|
+
[5, 4, 0],
|
|
532
|
+
[1, 7, 9],
|
|
533
|
+
[4, 8, 9],
|
|
534
|
+
[1, 8, 11],
|
|
535
|
+
[4, 7, 11],
|
|
536
|
+
[0, 9, 6],
|
|
537
|
+
[3, 9, 10],
|
|
538
|
+
[3, 11, 6],
|
|
539
|
+
[0, 11, 10],
|
|
540
|
+
[2, 6, 7],
|
|
541
|
+
[2, 10, 8],
|
|
542
|
+
[5, 6, 8],
|
|
543
|
+
[5, 10, 7],
|
|
544
|
+
[6, 0, 9],
|
|
545
|
+
[10, 3, 9],
|
|
546
|
+
[6, 3, 11],
|
|
547
|
+
[10, 0, 11],
|
|
548
|
+
[7, 2, 6],
|
|
549
|
+
[8, 2, 10],
|
|
550
|
+
[8, 5, 6],
|
|
551
|
+
[7, 5, 10],
|
|
552
|
+
[9, 1, 7],
|
|
553
|
+
[9, 4, 8],
|
|
554
|
+
[11, 1, 8],
|
|
555
|
+
[11, 4, 7],
|
|
556
|
+
[7, 9, 1],
|
|
557
|
+
[8, 9, 4],
|
|
558
|
+
[8, 11, 1],
|
|
559
|
+
[7, 11, 4],
|
|
560
|
+
[9, 6, 0],
|
|
561
|
+
[9, 10, 3],
|
|
562
|
+
[11, 6, 3],
|
|
563
|
+
[11, 10, 0],
|
|
564
|
+
[8, 9, 10],
|
|
565
|
+
[8, 11, 6],
|
|
566
|
+
[7, 11, 10],
|
|
567
|
+
[9, 10, 8],
|
|
568
|
+
[11, 6, 8],
|
|
569
|
+
[11, 10, 7],
|
|
570
|
+
[6, 0, 2],
|
|
571
|
+
[10, 3, 2],
|
|
572
|
+
[6, 3, 5],
|
|
573
|
+
[10, 0, 5],
|
|
574
|
+
[7, 2, 1],
|
|
575
|
+
[8, 2, 4],
|
|
576
|
+
[8, 5, 1],
|
|
577
|
+
[7, 5, 4],
|
|
578
|
+
[9, 1, 0],
|
|
579
|
+
[9, 4, 3],
|
|
580
|
+
[11, 1, 3],
|
|
581
|
+
[11, 4, 0],
|
|
582
|
+
[1, 7, 2],
|
|
583
|
+
[4, 8, 2],
|
|
584
|
+
[1, 8, 5],
|
|
585
|
+
[4, 7, 5],
|
|
586
|
+
[0, 9, 1],
|
|
587
|
+
[3, 9, 4],
|
|
588
|
+
[3, 11, 1],
|
|
589
|
+
[0, 11, 4],
|
|
590
|
+
[2, 6, 0],
|
|
591
|
+
[2, 10, 3],
|
|
592
|
+
[5, 6, 3],
|
|
593
|
+
[5, 10, 0],
|
|
594
|
+
[0, 2, 6],
|
|
595
|
+
[3, 2, 10],
|
|
596
|
+
[3, 5, 6],
|
|
597
|
+
[0, 5, 10],
|
|
598
|
+
[2, 1, 7],
|
|
599
|
+
[2, 4, 8],
|
|
600
|
+
[5, 1, 8],
|
|
601
|
+
[5, 4, 7],
|
|
602
|
+
[16, 12, 14],
|
|
603
|
+
[13, 21, 18],
|
|
604
|
+
[19, 15, 23],
|
|
605
|
+
[17, 20, 22],
|
|
606
|
+
[12, 14, 16],
|
|
607
|
+
[21, 18, 13],
|
|
608
|
+
[15, 23, 19],
|
|
609
|
+
[20, 22, 17],
|
|
610
|
+
[14, 16, 12],
|
|
611
|
+
[18, 13, 21],
|
|
612
|
+
[23, 19, 15],
|
|
613
|
+
[22, 17, 20],
|
|
614
|
+
[19, 20, 18],
|
|
615
|
+
[17, 15, 14],
|
|
616
|
+
[16, 21, 22],
|
|
617
|
+
[13, 12, 23],
|
|
618
|
+
[20, 18, 19],
|
|
619
|
+
[15, 14, 17],
|
|
620
|
+
[21, 22, 16],
|
|
621
|
+
[12, 23, 13],
|
|
622
|
+
[18, 19, 20],
|
|
623
|
+
[14, 17, 15],
|
|
624
|
+
[22, 16, 21],
|
|
625
|
+
[23, 13, 12],
|
|
626
|
+
[6, 0, 5],
|
|
627
|
+
[10, 3, 5],
|
|
628
|
+
[6, 3, 2],
|
|
629
|
+
[10, 0, 2],
|
|
630
|
+
[7, 2, 4],
|
|
631
|
+
[8, 2, 1],
|
|
632
|
+
[8, 5, 4],
|
|
633
|
+
[7, 5, 1],
|
|
634
|
+
[9, 1, 3],
|
|
635
|
+
[9, 4, 0],
|
|
636
|
+
[11, 1, 0],
|
|
637
|
+
[11, 4, 3],
|
|
638
|
+
[1, 7, 5],
|
|
639
|
+
[4, 8, 5],
|
|
640
|
+
[1, 8, 2],
|
|
641
|
+
[4, 7, 2],
|
|
642
|
+
[0, 9, 4],
|
|
643
|
+
[3, 9, 1],
|
|
644
|
+
[3, 11, 4],
|
|
645
|
+
[0, 11, 1],
|
|
646
|
+
[2, 6, 3],
|
|
647
|
+
[2, 10, 0],
|
|
648
|
+
[5, 6, 0],
|
|
649
|
+
[5, 10, 3],
|
|
650
|
+
[0, 2, 10],
|
|
651
|
+
[3, 2, 6],
|
|
652
|
+
[3, 5, 10],
|
|
653
|
+
[0, 5, 6],
|
|
654
|
+
[2, 1, 8],
|
|
655
|
+
[2, 4, 7],
|
|
656
|
+
[5, 1, 7],
|
|
657
|
+
[5, 4, 8],
|
|
658
|
+
[21, 17, 23],
|
|
659
|
+
[20, 16, 22],
|
|
660
|
+
[12, 13, 18],
|
|
661
|
+
[15, 19, 14],
|
|
662
|
+
[23, 21, 17],
|
|
663
|
+
[22, 20, 16],
|
|
664
|
+
[18, 12, 13],
|
|
665
|
+
[14, 15, 19],
|
|
666
|
+
[17, 23, 21],
|
|
667
|
+
[16, 22, 20],
|
|
668
|
+
[13, 18, 12],
|
|
669
|
+
[19, 14, 15],
|
|
670
|
+
[21, 13, 22],
|
|
671
|
+
[20, 19, 23],
|
|
672
|
+
[12, 17, 14],
|
|
673
|
+
[15, 16, 18],
|
|
674
|
+
[23, 15, 13],
|
|
675
|
+
[22, 12, 19],
|
|
676
|
+
[18, 20, 17],
|
|
677
|
+
[14, 21, 16],
|
|
678
|
+
[17, 22, 15],
|
|
679
|
+
[16, 23, 12],
|
|
680
|
+
[13, 14, 20],
|
|
681
|
+
[19, 18, 21],
|
|
682
|
+
[15, 17, 22],
|
|
683
|
+
[12, 16, 23],
|
|
684
|
+
[20, 13, 14],
|
|
685
|
+
[21, 19, 18],
|
|
686
|
+
[22, 21, 13],
|
|
687
|
+
[23, 20, 19],
|
|
688
|
+
[14, 12, 17],
|
|
689
|
+
[18, 15, 16],
|
|
690
|
+
[13, 23, 15],
|
|
691
|
+
[19, 22, 12],
|
|
692
|
+
[17, 18, 20],
|
|
693
|
+
[16, 14, 21],
|
|
694
|
+
[15, 13, 23],
|
|
695
|
+
[12, 19, 22],
|
|
696
|
+
[20, 17, 18],
|
|
697
|
+
[21, 16, 14],
|
|
698
|
+
[22, 15, 17],
|
|
699
|
+
[23, 12, 16],
|
|
700
|
+
[14, 20, 13],
|
|
701
|
+
[18, 21, 19],
|
|
702
|
+
[13, 22, 21],
|
|
703
|
+
[19, 23, 20],
|
|
704
|
+
[17, 14, 12],
|
|
705
|
+
[16, 18, 15],
|
|
706
|
+
[6, 5, 3],
|
|
707
|
+
[4, 9, 3],
|
|
708
|
+
[9, 3, 4],
|
|
709
|
+
[5, 7, 4],
|
|
710
|
+
[4, 5, 7],
|
|
711
|
+
[5, 3, 6]
|
|
712
|
+
],
|
|
713
|
+
|
|
714
|
+
"space_groups": [
|
|
715
|
+
[0],
|
|
716
|
+
[0, 1],
|
|
717
|
+
[0, 2],
|
|
718
|
+
[0, 3],
|
|
719
|
+
[0, 2, 4, 5],
|
|
720
|
+
[0, 6],
|
|
721
|
+
[0, 7],
|
|
722
|
+
[0, 6, 4, 8],
|
|
723
|
+
[0, 7, 4, 9],
|
|
724
|
+
[0, 6, 2, 1],
|
|
725
|
+
[0, 3, 1, 10],
|
|
726
|
+
[0, 6, 2, 1, 4, 8, 5, 11],
|
|
727
|
+
[0, 12, 1, 7],
|
|
728
|
+
[0, 1, 13, 14],
|
|
729
|
+
[0, 12, 1, 7, 4, 15, 11, 9],
|
|
730
|
+
[0, 16, 2, 17],
|
|
731
|
+
[0, 18, 12, 17],
|
|
732
|
+
[0, 16, 5, 19],
|
|
733
|
+
[0, 20, 13, 19],
|
|
734
|
+
[0, 18, 12, 17, 4, 21, 15, 19],
|
|
735
|
+
[0, 16, 2, 17, 4, 22, 5, 19],
|
|
736
|
+
[0, 16, 2, 17, 23, 24, 13, 25, 26, 20, 27, 28, 4, 22, 5, 19],
|
|
737
|
+
[0, 16, 17, 2, 29, 21, 30, 15],
|
|
738
|
+
[0, 20, 13, 19, 29, 31, 32, 33],
|
|
739
|
+
[0, 16, 6, 34],
|
|
740
|
+
[0, 18, 7, 34],
|
|
741
|
+
[0, 16, 7, 35],
|
|
742
|
+
[0, 16, 36, 37],
|
|
743
|
+
[0, 18, 36, 38],
|
|
744
|
+
[0, 16, 14, 39],
|
|
745
|
+
[0, 20, 40, 34],
|
|
746
|
+
[0, 16, 8, 41],
|
|
747
|
+
[0, 18, 8, 42],
|
|
748
|
+
[0, 16, 9, 42],
|
|
749
|
+
[0, 16, 6, 34, 4, 22, 8, 41],
|
|
750
|
+
[0, 18, 7, 34, 4, 21, 9, 41],
|
|
751
|
+
[0, 16, 7, 35, 4, 22, 9, 42],
|
|
752
|
+
[0, 16, 6, 34, 23, 24, 14, 39],
|
|
753
|
+
[0, 16, 10, 43, 23, 24, 7, 35],
|
|
754
|
+
[0, 16, 36, 37, 23, 24, 9, 42],
|
|
755
|
+
[0, 16, 8, 41, 23, 24, 40, 38],
|
|
756
|
+
[0, 16, 6, 34, 23, 24, 14, 39, 26, 20, 40, 38, 4, 22, 8, 41],
|
|
757
|
+
[0, 16, 44, 45, 23, 24, 46, 47, 26, 20, 48, 49, 4, 22, 50, 51],
|
|
758
|
+
[0, 16, 6, 34, 29, 21, 9, 42],
|
|
759
|
+
[0, 16, 8, 41, 29, 21, 7, 35],
|
|
760
|
+
[0, 16, 36, 37, 29, 21, 14, 39],
|
|
761
|
+
[0, 16, 2, 17, 1, 52, 6, 34],
|
|
762
|
+
[0, 16, 2, 17, 53, 54, 9, 42],
|
|
763
|
+
[0, 16, 12, 33, 1, 52, 7, 35],
|
|
764
|
+
[0, 16, 2, 17, 11, 55, 8, 41],
|
|
765
|
+
[0, 56, 2, 57, 1, 58, 6, 37],
|
|
766
|
+
[0, 56, 15, 25, 1, 58, 9, 39],
|
|
767
|
+
[0, 20, 27, 17, 1, 59, 40, 34],
|
|
768
|
+
[0, 56, 12, 28, 1, 58, 7, 38],
|
|
769
|
+
[0, 16, 5, 19, 1, 52, 8, 41],
|
|
770
|
+
[0, 22, 13, 28, 1, 55, 14, 38],
|
|
771
|
+
[0, 18, 13, 60, 1, 61, 14, 43],
|
|
772
|
+
[0, 16, 15, 30, 1, 52, 9, 42],
|
|
773
|
+
[0, 16, 5, 19, 11, 55, 6, 34],
|
|
774
|
+
[0, 21, 12, 19, 1, 54, 7, 41],
|
|
775
|
+
[0, 20, 13, 19, 1, 59, 14, 41],
|
|
776
|
+
[0, 20, 3, 30, 1, 59, 10, 42],
|
|
777
|
+
[0, 18, 12, 17, 1, 61, 7, 34, 4, 21, 15, 19, 11, 54, 9, 41],
|
|
778
|
+
[0, 24, 13, 17, 1, 62, 14, 34, 4, 20, 27, 19, 11, 59, 40, 41],
|
|
779
|
+
[0, 16, 2, 17, 1, 52, 6, 34, 4, 22, 5, 19, 11, 55, 8, 41],
|
|
780
|
+
[0, 16, 12, 33, 1, 52, 7, 35, 4, 22, 15, 30, 11, 55, 9, 42],
|
|
781
|
+
[0, 31, 3, 17, 1, 63, 10, 34, 4, 56, 32, 19, 11, 58, 36, 41],
|
|
782
|
+
[0, 22, 2, 19, 64, 59, 14, 38, 4, 16, 5, 17, 65, 62, 40, 39],
|
|
783
|
+
[0, 16, 2, 17, 1, 52, 6, 34, 23, 24, 13, 25, 64, 62, 14, 39, 26, 20, 27, 28, 65, 59, 40, 38, 4, 22, 5, 19, 11, 55, 8, 41],
|
|
784
|
+
[0, 16, 2, 17, 66, 67, 44, 45, 23, 24, 13, 25, 68, 69, 46, 47, 26, 20, 27, 28, 70, 71, 48, 49, 4, 22, 5, 19, 72, 73, 50, 51],
|
|
785
|
+
[0, 16, 2, 17, 1, 52, 6, 34, 29, 21, 15, 30, 53, 54, 9, 42],
|
|
786
|
+
[0, 16, 5, 19, 1, 52, 8, 41, 29, 21, 12, 33, 53, 54, 7, 35],
|
|
787
|
+
[0, 20, 13, 19, 1, 59, 14, 41, 29, 31, 32, 33, 53, 63, 36, 35],
|
|
788
|
+
[0, 31, 3, 17, 1, 63, 10, 34, 29, 20, 27, 30, 53, 59, 40, 42],
|
|
789
|
+
[0, 16, 74, 75],
|
|
790
|
+
[0, 18, 76, 77],
|
|
791
|
+
[0, 16, 78, 79],
|
|
792
|
+
[0, 18, 80, 81],
|
|
793
|
+
[0, 16, 74, 75, 29, 21, 82, 83],
|
|
794
|
+
[0, 21, 84, 85, 29, 16, 86, 87],
|
|
795
|
+
[0, 16, 88, 89],
|
|
796
|
+
[0, 16, 88, 89, 29, 21, 90, 91],
|
|
797
|
+
[0, 16, 74, 75, 1, 52, 88, 89],
|
|
798
|
+
[0, 16, 78, 79, 1, 52, 92, 93],
|
|
799
|
+
[0, 16, 94, 95, 11, 55, 88, 89],
|
|
800
|
+
[0, 16, 82, 83, 53, 54, 88, 89],
|
|
801
|
+
[0, 16, 74, 75, 1, 52, 88, 89, 29, 21, 82, 83, 53, 54, 90, 91],
|
|
802
|
+
[0, 21, 84, 85, 96, 97, 88, 91, 29, 16, 86, 87, 98, 99, 90, 89],
|
|
803
|
+
[0, 16, 74, 75, 2, 17, 100, 101],
|
|
804
|
+
[0, 16, 94, 95, 5, 19, 100, 101],
|
|
805
|
+
[0, 18, 76, 77, 2, 33, 102, 103],
|
|
806
|
+
[0, 18, 104, 105, 106, 107, 100, 108],
|
|
807
|
+
[0, 16, 78, 79, 2, 17, 109, 108],
|
|
808
|
+
[0, 16, 82, 83, 15, 30, 100, 101],
|
|
809
|
+
[0, 18, 80, 81, 2, 33, 110, 111],
|
|
810
|
+
[0, 18, 112, 113, 114, 115, 100, 108],
|
|
811
|
+
[0, 16, 74, 75, 2, 17, 100, 101, 29, 21, 82, 83, 15, 30, 116, 117],
|
|
812
|
+
[0, 21, 84, 85, 118, 119, 116, 101, 29, 16, 86, 87, 120, 121, 100, 117],
|
|
813
|
+
[0, 16, 74, 75, 6, 34, 122, 123],
|
|
814
|
+
[0, 16, 74, 75, 8, 41, 124, 125],
|
|
815
|
+
[0, 16, 78, 79, 7, 35, 122, 123],
|
|
816
|
+
[0, 16, 82, 83, 9, 42, 122, 123],
|
|
817
|
+
[0, 16, 74, 75, 7, 35, 126, 127],
|
|
818
|
+
[0, 16, 74, 75, 9, 42, 128, 129],
|
|
819
|
+
[0, 16, 78, 79, 6, 34, 126, 127],
|
|
820
|
+
[0, 16, 78, 79, 8, 41, 128, 129],
|
|
821
|
+
[0, 16, 74, 75, 6, 34, 122, 123, 29, 21, 82, 83, 9, 42, 128, 129],
|
|
822
|
+
[0, 16, 74, 75, 7, 35, 126, 127, 29, 21, 82, 83, 8, 41, 124, 125],
|
|
823
|
+
[0, 21, 84, 85, 6, 42, 130, 131, 29, 16, 86, 87, 9, 34, 132, 133],
|
|
824
|
+
[0, 21, 84, 85, 7, 41, 134, 135, 29, 16, 86, 87, 8, 35, 136, 137],
|
|
825
|
+
[0, 16, 89, 88, 2, 17, 122, 123],
|
|
826
|
+
[0, 16, 89, 88, 12, 33, 126, 127],
|
|
827
|
+
[0, 16, 89, 88, 5, 19, 124, 125],
|
|
828
|
+
[0, 16, 89, 88, 15, 30, 128, 129],
|
|
829
|
+
[0, 16, 88, 89, 6, 34, 100, 101],
|
|
830
|
+
[0, 16, 89, 88, 7, 35, 109, 108],
|
|
831
|
+
[0, 16, 89, 88, 8, 41, 138, 139],
|
|
832
|
+
[0, 16, 89, 88, 9, 42, 116, 117],
|
|
833
|
+
[0, 16, 89, 88, 6, 34, 100, 101, 29, 21, 91, 90, 9, 42, 116, 117],
|
|
834
|
+
[0, 16, 89, 88, 7, 35, 109, 108, 29, 21, 91, 90, 8, 41, 138, 139],
|
|
835
|
+
[0, 16, 89, 88, 2, 17, 122, 123, 29, 21, 91, 90, 15, 30, 128, 129],
|
|
836
|
+
[0, 16, 89, 88, 118, 121, 132, 131, 29, 21, 91, 90, 120, 119, 130, 133],
|
|
837
|
+
[0, 16, 74, 75, 2, 17, 100, 101, 1, 52, 88, 89, 6, 34, 122, 123],
|
|
838
|
+
[0, 16, 74, 75, 12, 33, 109, 108, 1, 52, 88, 89, 7, 35, 126, 127],
|
|
839
|
+
[0, 16, 74, 75, 2, 17, 100, 101, 11, 55, 140, 141, 8, 41, 124, 125],
|
|
840
|
+
[0, 16, 74, 75, 2, 17, 100, 101, 53, 54, 90, 91, 9, 42, 128, 129],
|
|
841
|
+
[0, 16, 74, 75, 5, 19, 138, 139, 1, 52, 88, 89, 8, 41, 124, 125],
|
|
842
|
+
[0, 16, 74, 75, 15, 30, 116, 117, 1, 52, 88, 89, 9, 42, 128, 129],
|
|
843
|
+
[0, 16, 94, 95, 5, 19, 100, 101, 11, 55, 88, 89, 6, 34, 124, 125],
|
|
844
|
+
[0, 16, 94, 95, 15, 30, 109, 108, 11, 55, 88, 89, 7, 35, 128, 129],
|
|
845
|
+
[0, 16, 78, 79, 2, 17, 109, 108, 1, 52, 92, 93, 6, 34, 126, 127],
|
|
846
|
+
[0, 16, 78, 79, 12, 33, 100, 101, 1, 52, 92, 93, 7, 35, 122, 123],
|
|
847
|
+
[0, 16, 82, 83, 12, 33, 138, 139, 53, 54, 88, 89, 8, 41, 126, 127],
|
|
848
|
+
[0, 16, 82, 83, 2, 17, 116, 117, 53, 54, 88, 89, 9, 42, 122, 123],
|
|
849
|
+
[0, 16, 78, 79, 5, 19, 116, 117, 1, 52, 92, 93, 8, 41, 128, 129],
|
|
850
|
+
[0, 16, 82, 83, 15, 30, 100, 101, 1, 52, 90, 91, 9, 42, 122, 123],
|
|
851
|
+
[0, 16, 82, 83, 15, 30, 100, 101, 53, 54, 88, 89, 6, 34, 128, 129],
|
|
852
|
+
[0, 16, 82, 83, 5, 19, 109, 108, 53, 54, 88, 89, 7, 35, 124, 125],
|
|
853
|
+
[0, 16, 74, 75, 2, 17, 100, 101, 1, 52, 88, 89, 6, 34, 122, 123, 29, 21, 82, 83, 15, 30, 116, 117, 53, 54, 90, 91, 9, 42, 128, 129],
|
|
854
|
+
[0, 16, 74, 75, 12, 33, 109, 108, 1, 52, 88, 89, 7, 35, 126, 127, 29, 21, 82, 83, 5, 19, 138, 139, 53, 54, 90, 91, 8, 41, 124, 125],
|
|
855
|
+
[0, 21, 84, 85, 118, 119, 116, 101, 96, 97, 88, 91, 9, 34, 132, 133, 29, 16, 86, 87, 120, 121, 100, 117, 98, 99, 90, 89, 6, 42, 130, 131],
|
|
856
|
+
[0, 21, 84, 85, 142, 143, 138, 108, 96, 97, 88, 91, 8, 35, 136, 137, 29, 16, 86, 87, 144, 145, 109, 139, 98, 99, 90, 89, 7, 41, 134, 135],
|
|
857
|
+
[0, 146, 147],
|
|
858
|
+
[0, 148, 149],
|
|
859
|
+
[0, 150, 151],
|
|
860
|
+
[0, 146, 147, 152, 153, 154, 155, 156, 157],
|
|
861
|
+
[0, 158, 159],
|
|
862
|
+
[0, 146, 147, 1, 160, 161],
|
|
863
|
+
[0, 146, 147, 1, 160, 161, 152, 153, 154, 162, 163, 164, 155, 156, 157, 165, 166, 167],
|
|
864
|
+
[0, 158, 159, 1, 168, 169],
|
|
865
|
+
[0, 146, 147, 101, 170, 171],
|
|
866
|
+
[0, 146, 147, 100, 172, 173],
|
|
867
|
+
[0, 148, 149, 174, 175, 171],
|
|
868
|
+
[0, 148, 149, 100, 176, 177],
|
|
869
|
+
[0, 150, 151, 178, 179, 171],
|
|
870
|
+
[0, 150, 151, 100, 180, 181],
|
|
871
|
+
[0, 146, 147, 100, 172, 173, 152, 153, 154, 182, 183, 184, 155, 156, 157, 185, 186, 187],
|
|
872
|
+
[0, 158, 159, 101, 188, 189],
|
|
873
|
+
[0, 146, 147, 122, 190, 191],
|
|
874
|
+
[0, 146, 147, 123, 192, 193],
|
|
875
|
+
[0, 146, 147, 126, 194, 195],
|
|
876
|
+
[0, 146, 147, 127, 196, 197],
|
|
877
|
+
[0, 146, 147, 122, 190, 191, 152, 153, 154, 198, 199, 200, 155, 156, 157, 201, 202, 203],
|
|
878
|
+
[0, 158, 159, 123, 204, 205],
|
|
879
|
+
[0, 146, 147, 126, 194, 195, 152, 153, 154, 206, 207, 208, 155, 156, 157, 209, 210, 211],
|
|
880
|
+
[0, 158, 159, 129, 212, 213],
|
|
881
|
+
[0, 146, 147, 101, 170, 171, 1, 160, 161, 123, 192, 193],
|
|
882
|
+
[0, 146, 147, 108, 214, 215, 1, 160, 161, 127, 196, 197],
|
|
883
|
+
[0, 146, 147, 100, 172, 173, 1, 160, 161, 122, 190, 191],
|
|
884
|
+
[0, 146, 147, 109, 216, 217, 1, 160, 161, 126, 194, 195],
|
|
885
|
+
[0, 146, 147, 100, 172, 173, 1, 160, 161, 122, 190, 191, 152, 153, 154, 182, 183, 184, 162, 163, 164, 198, 199, 200, 155, 156, 157, 185, 186, 187, 165, 166, 167, 201, 202, 203],
|
|
886
|
+
[0, 158, 159, 101, 188, 189, 1, 168, 169, 123, 204, 205],
|
|
887
|
+
[0, 146, 147, 109, 216, 217, 1, 160, 161, 126, 194, 195, 152, 153, 154, 218, 219, 220, 162, 163, 164, 206, 207, 208, 155, 156, 157, 221, 222, 223, 165, 166, 167, 209, 210, 211],
|
|
888
|
+
[0, 158, 159, 117, 224, 225, 1, 168, 169, 129, 212, 213],
|
|
889
|
+
[0, 146, 147, 16, 226, 227],
|
|
890
|
+
[0, 148, 149, 18, 228, 229],
|
|
891
|
+
[0, 150, 151, 18, 230, 231],
|
|
892
|
+
[0, 150, 151, 16, 232, 233],
|
|
893
|
+
[0, 148, 149, 16, 234, 235],
|
|
894
|
+
[0, 146, 147, 18, 236, 237],
|
|
895
|
+
[0, 146, 147, 52, 238, 239],
|
|
896
|
+
[0, 146, 147, 16, 226, 227, 1, 160, 161, 52, 238, 239],
|
|
897
|
+
[0, 146, 147, 18, 236, 237, 1, 160, 161, 61, 240, 241],
|
|
898
|
+
[0, 146, 147, 16, 226, 227, 100, 172, 173, 101, 170, 171],
|
|
899
|
+
[0, 148, 149, 18, 228, 229, 242, 172, 181, 243, 214, 244],
|
|
900
|
+
[0, 150, 151, 18, 230, 231, 245, 172, 177, 246, 214, 247],
|
|
901
|
+
[0, 150, 151, 16, 232, 233, 245, 172, 177, 174, 170, 248],
|
|
902
|
+
[0, 148, 149, 16, 234, 235, 242, 172, 181, 178, 170, 249],
|
|
903
|
+
[0, 146, 147, 18, 236, 237, 100, 172, 173, 108, 214, 215],
|
|
904
|
+
[0, 146, 147, 16, 226, 227, 122, 190, 191, 123, 192, 193],
|
|
905
|
+
[0, 146, 147, 16, 226, 227, 126, 194, 195, 127, 196, 197],
|
|
906
|
+
[0, 146, 147, 18, 236, 237, 126, 194, 195, 123, 192, 193],
|
|
907
|
+
[0, 146, 147, 18, 236, 237, 122, 190, 191, 127, 196, 197],
|
|
908
|
+
[0, 146, 147, 52, 238, 239, 122, 190, 191, 101, 170, 171],
|
|
909
|
+
[0, 146, 147, 61, 240, 241, 126, 194, 195, 101, 170, 171],
|
|
910
|
+
[0, 146, 147, 52, 238, 239, 100, 172, 173, 123, 192, 193],
|
|
911
|
+
[0, 146, 147, 61, 240, 241, 100, 172, 173, 127, 196, 197],
|
|
912
|
+
[0, 146, 147, 16, 226, 227, 100, 172, 173, 101, 170, 171, 1, 160, 161, 52, 239, 238, 122, 190, 191, 123, 192, 193],
|
|
913
|
+
[0, 146, 147, 16, 226, 227, 109, 216, 217, 108, 214, 215, 1, 160, 161, 52, 239, 238, 126, 194, 195, 127, 196, 197],
|
|
914
|
+
[0, 146, 147, 18, 236, 237, 109, 216, 217, 101, 170, 171, 1, 160, 161, 61, 241, 240, 126, 194, 195, 123, 192, 193],
|
|
915
|
+
[0, 146, 147, 18, 236, 237, 100, 172, 173, 108, 214, 215, 1, 160, 161, 61, 241, 240, 122, 190, 191, 127, 196, 197],
|
|
916
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255],
|
|
917
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 23, 24, 13, 25, 256, 257, 258, 259, 260, 261, 262, 263, 26, 20, 27, 28, 264, 265, 266, 267, 268, 269, 270, 271, 4, 22, 5, 19, 272, 273, 274, 275, 276, 277, 278, 279],
|
|
918
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 29, 21, 15, 30, 280, 281, 282, 283, 284, 285, 286, 287],
|
|
919
|
+
[0, 20, 13, 19, 158, 273, 266, 259, 159, 261, 278, 271],
|
|
920
|
+
[0, 20, 13, 19, 158, 273, 266, 259, 159, 261, 278, 271, 29, 31, 32, 33, 280, 288, 289, 290, 284, 291, 292, 293],
|
|
921
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 1, 52, 6, 34, 168, 294, 295, 296, 169, 297, 298, 299],
|
|
922
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 53, 54, 9, 42, 300, 301, 302, 303, 304, 305, 306, 307],
|
|
923
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 1, 52, 6, 34, 168, 294, 295, 296, 169, 297, 298, 299, 23, 24, 13, 25, 256, 257, 258, 259, 260, 261, 262, 263, 64, 62, 14, 39, 308, 309, 310, 311, 312, 313, 314, 315, 26, 20, 27, 28, 264, 265, 266, 267, 268, 269, 270, 271, 65, 59, 40, 38, 316, 317, 318, 319, 320, 321, 322, 323, 4, 22, 5, 19, 272, 273, 274, 275, 276, 277, 278, 279, 11, 55, 8, 41, 324, 325, 326, 327, 328, 329, 330, 331],
|
|
924
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 66, 67, 44, 45, 332, 333, 334, 335, 336, 337, 338, 339, 23, 24, 13, 25, 256, 257, 258, 259, 260, 261, 262, 263, 68, 69, 46, 47, 340, 341, 342, 343, 344, 345, 346, 347, 26, 20, 27, 28, 264, 265, 266, 267, 268, 269, 270, 271, 70, 71, 48, 49, 348, 349, 350, 351, 352, 353, 354, 355, 4, 22, 5, 19, 272, 273, 274, 275, 276, 277, 278, 279, 72, 73, 50, 51, 356, 357, 358, 359, 360, 361, 362, 363],
|
|
925
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 1, 52, 6, 34, 168, 294, 295, 296, 169, 297, 298, 299, 29, 21, 15, 30, 280, 281, 282, 283, 284, 285, 286, 287, 53, 54, 9, 42, 300, 301, 302, 303, 304, 305, 306, 307],
|
|
926
|
+
[0, 20, 13, 19, 158, 273, 266, 259, 159, 261, 278, 271, 1, 59, 14, 41, 168, 325, 318, 311, 169, 313, 330, 323],
|
|
927
|
+
[0, 20, 13, 19, 158, 273, 266, 259, 159, 261, 278, 271, 1, 59, 14, 41, 168, 325, 318, 311, 169, 313, 330, 323, 29, 31, 32, 33, 280, 288, 289, 290, 284, 291, 292, 293, 53, 63, 36, 35, 300, 364, 365, 366, 304, 367, 368, 369],
|
|
928
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 100, 101, 75, 74, 370, 371, 188, 372, 373, 374, 375, 189],
|
|
929
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 116, 117, 83, 82, 376, 377, 224, 378, 379, 380, 381, 225],
|
|
930
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 100, 101, 75, 74, 370, 371, 188, 372, 373, 374, 375, 189, 23, 24, 13, 25, 256, 257, 258, 259, 260, 261, 262, 263, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 26, 20, 27, 28, 264, 265, 266, 267, 268, 269, 270, 271, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 4, 22, 5, 19, 272, 273, 274, 275, 276, 277, 278, 279, 138, 139, 95, 94, 406, 407, 408, 409, 410, 411, 412, 413],
|
|
931
|
+
[0, 24, 5, 28, 158, 265, 258, 275, 159, 277, 270, 263, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 23, 16, 27, 19, 256, 273, 251, 267, 260, 269, 278, 255, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 26, 22, 13, 17, 264, 250, 274, 259, 268, 261, 254, 279, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 4, 20, 2, 25, 272, 257, 266, 252, 276, 253, 262, 271, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461],
|
|
932
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 100, 101, 75, 74, 370, 371, 188, 372, 373, 374, 375, 189, 29, 21, 15, 30, 280, 281, 282, 283, 284, 285, 286, 287, 116, 117, 83, 82, 376, 377, 224, 378, 379, 380, 381, 225],
|
|
933
|
+
[0, 20, 13, 19, 158, 273, 266, 259, 159, 261, 278, 271, 450, 415, 440, 429, 454, 431, 420, 445, 458, 447, 436, 425],
|
|
934
|
+
[0, 20, 13, 19, 158, 273, 266, 259, 159, 261, 278, 271, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473],
|
|
935
|
+
[0, 20, 13, 19, 158, 273, 266, 259, 159, 261, 278, 271, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 29, 31, 32, 33, 280, 288, 289, 290, 284, 291, 292, 293, 450, 415, 440, 429, 454, 431, 420, 445, 458, 447, 436, 425],
|
|
936
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 123, 122, 88, 89, 204, 474, 475, 476, 205, 477, 478, 479],
|
|
937
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 123, 122, 88, 89, 204, 474, 475, 476, 205, 477, 478, 479, 23, 24, 13, 25, 256, 257, 258, 259, 260, 261, 262, 263, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 26, 20, 27, 28, 264, 265, 266, 267, 268, 269, 270, 271, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 4, 22, 5, 19, 272, 273, 274, 275, 276, 277, 278, 279, 125, 124, 140, 141, 504, 505, 506, 507, 508, 509, 510, 511],
|
|
938
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 123, 122, 88, 89, 204, 474, 475, 476, 205, 477, 478, 479, 29, 21, 15, 30, 280, 281, 282, 283, 284, 285, 286, 287, 129, 128, 90, 91, 212, 512, 513, 514, 213, 515, 516, 517],
|
|
939
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 129, 128, 90, 91, 212, 512, 513, 514, 213, 515, 516, 517],
|
|
940
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 129, 128, 90, 91, 212, 512, 513, 514, 213, 515, 516, 517, 23, 24, 13, 25, 256, 257, 258, 259, 260, 261, 262, 263, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 26, 20, 27, 28, 264, 265, 266, 267, 268, 269, 270, 271, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 4, 22, 5, 19, 272, 273, 274, 275, 276, 277, 278, 279, 127, 126, 92, 93, 542, 543, 544, 545, 546, 547, 548, 549],
|
|
941
|
+
[0, 20, 13, 19, 158, 273, 266, 259, 159, 261, 278, 271, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 29, 31, 32, 33, 280, 288, 289, 290, 284, 291, 292, 293, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573],
|
|
942
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 100, 101, 75, 74, 370, 371, 188, 372, 373, 374, 375, 189, 1, 52, 6, 34, 168, 294, 295, 296, 169, 297, 298, 299, 122, 123, 89, 88, 475, 476, 204, 474, 479, 478, 477, 205],
|
|
943
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 100, 101, 75, 74, 370, 371, 188, 372, 373, 374, 375, 189, 53, 54, 9, 42, 300, 301, 302, 303, 304, 305, 306, 307, 128, 129, 91, 90, 513, 514, 212, 512, 517, 516, 515, 213],
|
|
944
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 116, 117, 83, 82, 376, 377, 224, 378, 379, 380, 381, 225, 1, 52, 6, 34, 168, 294, 295, 296, 169, 297, 298, 299, 128, 129, 91, 90, 513, 514, 212, 512, 517, 516, 515, 213],
|
|
945
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 116, 117, 83, 82, 376, 377, 224, 378, 379, 380, 381, 225, 53, 54, 9, 42, 300, 301, 302, 303, 304, 305, 306, 307, 122, 123, 89, 88, 475, 476, 204, 474, 479, 478, 477, 205],
|
|
946
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 100, 101, 75, 74, 370, 371, 188, 372, 373, 374, 375, 189, 1, 52, 6, 34, 168, 294, 295, 296, 169, 297, 298, 299, 122, 123, 89, 88, 475, 476, 204, 474, 479, 478, 477, 205, 23, 24, 13, 25, 256, 257, 258, 259, 260, 261, 262, 263, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 64, 62, 14, 39, 308, 309, 310, 311, 312, 313, 314, 315, 481, 480, 483, 482, 486, 487, 484, 485, 491, 490, 489, 488, 26, 20, 27, 28, 264, 265, 266, 267, 268, 269, 270, 271, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 65, 59, 40, 38, 316, 317, 318, 319, 320, 321, 322, 323, 493, 492, 495, 494, 498, 499, 496, 497, 503, 502, 501, 500, 4, 22, 5, 19, 272, 273, 274, 275, 276, 277, 278, 279, 138, 139, 95, 94, 406, 407, 408, 409, 410, 411, 412, 413, 11, 55, 8, 41, 324, 325, 326, 327, 328, 329, 330, 331, 124, 125, 141, 140, 506, 507, 504, 505, 511, 510, 509, 508],
|
|
947
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 116, 117, 83, 82, 376, 377, 224, 378, 379, 380, 381, 225, 1, 52, 6, 34, 168, 294, 295, 296, 169, 297, 298, 299, 128, 129, 91, 90, 513, 514, 212, 512, 517, 516, 515, 213, 23, 24, 13, 25, 256, 257, 258, 259, 260, 261, 262, 263, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 64, 62, 14, 39, 308, 309, 310, 311, 312, 313, 314, 315, 519, 518, 521, 520, 524, 525, 522, 523, 529, 528, 527, 526, 26, 20, 27, 28, 264, 265, 266, 267, 268, 269, 270, 271, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 65, 59, 40, 38, 316, 317, 318, 319, 320, 321, 322, 323, 531, 530, 533, 532, 536, 537, 534, 535, 541, 540, 539, 538, 4, 22, 5, 19, 272, 273, 274, 275, 276, 277, 278, 279, 109, 108, 79, 78, 598, 599, 600, 601, 602, 603, 604, 605, 11, 55, 8, 41, 324, 325, 326, 327, 328, 329, 330, 331, 126, 127, 93, 92, 544, 545, 542, 543, 549, 548, 547, 546],
|
|
948
|
+
[0, 24, 5, 28, 158, 265, 258, 275, 159, 277, 270, 263, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 66, 69, 50, 49, 332, 349, 342, 359, 336, 361, 354, 347, 493, 123, 483, 140, 498, 507, 204, 485, 503, 490, 509, 205, 23, 16, 27, 19, 256, 273, 251, 267, 260, 269, 278, 255, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 68, 67, 48, 51, 340, 357, 334, 351, 344, 353, 362, 339, 124, 480, 89, 494, 506, 499, 484, 474, 511, 478, 501, 488, 26, 22, 13, 17, 264, 250, 274, 259, 268, 261, 254, 279, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 70, 73, 46, 45, 348, 333, 358, 343, 352, 345, 338, 363, 122, 492, 141, 482, 475, 487, 496, 505, 479, 510, 489, 500, 4, 20, 2, 25, 272, 257, 266, 252, 276, 253, 262, 271, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 72, 71, 44, 47, 356, 341, 350, 335, 360, 337, 346, 355, 481, 125, 495, 88, 486, 476, 504, 497, 491, 502, 477, 508],
|
|
949
|
+
[0, 24, 5, 28, 158, 265, 258, 275, 159, 277, 270, 263, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 531, 129, 521, 92, 536, 545, 212, 523, 541, 528, 547, 213, 23, 16, 27, 19, 256, 273, 251, 267, 260, 269, 278, 255, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 126, 518, 91, 532, 544, 537, 522, 512, 549, 516, 539, 526, 26, 22, 13, 17, 264, 250, 274, 259, 268, 261, 254, 279, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 128, 530, 93, 520, 513, 525, 534, 543, 517, 548, 527, 538, 4, 20, 2, 25, 272, 257, 266, 252, 276, 253, 262, 271, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 519, 127, 533, 90, 524, 514, 542, 535, 529, 540, 515, 546],
|
|
950
|
+
[0, 16, 2, 17, 158, 250, 251, 252, 159, 253, 254, 255, 100, 101, 75, 74, 370, 371, 188, 372, 373, 374, 375, 189, 1, 52, 6, 34, 168, 294, 295, 296, 169, 297, 298, 299, 122, 123, 89, 88, 475, 476, 204, 474, 479, 478, 477, 205, 29, 21, 15, 30, 280, 281, 282, 283, 284, 285, 286, 287, 116, 117, 83, 82, 376, 377, 224, 378, 379, 380, 381, 225, 53, 54, 9, 42, 300, 301, 302, 303, 304, 305, 306, 307, 128, 129, 91, 90, 513, 514, 212, 512, 517, 516, 515, 213],
|
|
951
|
+
[0, 20, 13, 19, 158, 273, 266, 259, 159, 261, 278, 271, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 1, 59, 14, 41, 168, 325, 318, 311, 169, 313, 330, 323, 551, 550, 553, 552, 556, 557, 554, 555, 561, 560, 559, 558, 29, 31, 32, 33, 280, 288, 289, 290, 284, 291, 292, 293, 450, 415, 440, 429, 454, 431, 420, 445, 458, 447, 436, 425, 53, 63, 36, 35, 300, 364, 365, 366, 304, 367, 368, 369, 563, 562, 565, 564, 568, 569, 566, 567, 573, 572, 571, 570],
|
|
952
|
+
[0, 16],
|
|
953
|
+
[0, 18],
|
|
954
|
+
[0, 16, 26, 20],
|
|
955
|
+
[0, 2, 23, 13],
|
|
956
|
+
[0, 3, 4, 32],
|
|
957
|
+
[0, 2, 29, 15],
|
|
958
|
+
[0, 3, 29, 27],
|
|
959
|
+
[0, 52],
|
|
960
|
+
[0, 63],
|
|
961
|
+
[0, 52, 26, 59],
|
|
962
|
+
[0, 63, 26, 54],
|
|
963
|
+
[0, 52, 16, 1],
|
|
964
|
+
[0, 18, 1, 61],
|
|
965
|
+
[0, 52, 16, 1, 26, 59, 20, 65],
|
|
966
|
+
[0, 31, 1, 63],
|
|
967
|
+
[0, 1, 24, 62],
|
|
968
|
+
[0, 15, 1, 9],
|
|
969
|
+
[0, 5, 1, 8],
|
|
970
|
+
[0, 31, 1, 63, 26, 21, 65, 54],
|
|
971
|
+
[0, 2, 57, 56],
|
|
972
|
+
[0, 60, 3, 16],
|
|
973
|
+
[0, 22, 57, 3],
|
|
974
|
+
[0, 2, 28, 20],
|
|
975
|
+
[0, 17, 13, 24],
|
|
976
|
+
[0, 20, 19, 13, 4, 24, 17, 27],
|
|
977
|
+
[0, 22, 57, 3, 4, 16, 60, 32],
|
|
978
|
+
[0, 22, 57, 3, 23, 20, 30, 12, 26, 24, 33, 15, 4, 16, 60, 32],
|
|
979
|
+
[0, 22, 57, 3, 29, 18, 27, 25],
|
|
980
|
+
[0, 22, 3, 57, 1, 55, 10, 37],
|
|
981
|
+
[0, 22, 385, 396, 3, 57, 109, 117],
|
|
982
|
+
[0, 22, 57, 3, 159, 279, 654, 655, 158, 274, 656, 657, 29, 18, 25, 27, 284, 658, 262, 269, 280, 659, 257, 267]
|
|
983
|
+
],
|
|
984
|
+
|
|
985
|
+
"group_names": {
|
|
986
|
+
"P 1": 0,
|
|
987
|
+
"P -1": 1,
|
|
988
|
+
"P 1 2 1": 2,
|
|
989
|
+
"P 1 21 1": 3,
|
|
990
|
+
"C 1 2 1": 4,
|
|
991
|
+
"P 1 m 1": 5,
|
|
992
|
+
"P 1 c 1": 6,
|
|
993
|
+
"C 1 m 1": 7,
|
|
994
|
+
"C 1 c 1": 8,
|
|
995
|
+
"P 1 2/m 1": 9,
|
|
996
|
+
"P 1 21/m 1": 10,
|
|
997
|
+
"C 1 2/m 1": 11,
|
|
998
|
+
"P 1 2/c 1": 12,
|
|
999
|
+
"P 1 21/c 1": 13,
|
|
1000
|
+
"C 1 2/c 1": 14,
|
|
1001
|
+
"P 2 2 2": 15,
|
|
1002
|
+
"P 2 2 21": 16,
|
|
1003
|
+
"P 21 21 2": 17,
|
|
1004
|
+
"P 21 21 21": 18,
|
|
1005
|
+
"C 2 2 21": 19,
|
|
1006
|
+
"C 2 2 2": 20,
|
|
1007
|
+
"F 2 2 2": 21,
|
|
1008
|
+
"I 2 2 2": 22,
|
|
1009
|
+
"I 21 21 21": 23,
|
|
1010
|
+
"P m m 2": 24,
|
|
1011
|
+
"P m c 21": 25,
|
|
1012
|
+
"P c c 2": 26,
|
|
1013
|
+
"P m a 2": 27,
|
|
1014
|
+
"P c a 21": 28,
|
|
1015
|
+
"P n c 2": 29,
|
|
1016
|
+
"P m n 21": 30,
|
|
1017
|
+
"P b a 2": 31,
|
|
1018
|
+
"P n a 21": 32,
|
|
1019
|
+
"P n n 2": 33,
|
|
1020
|
+
"C m m 2": 34,
|
|
1021
|
+
"C m c 21": 35,
|
|
1022
|
+
"C c c 2": 36,
|
|
1023
|
+
"A m m 2": 37,
|
|
1024
|
+
"A b m 2": 38,
|
|
1025
|
+
"A m a 2": 39,
|
|
1026
|
+
"A b a 2": 40,
|
|
1027
|
+
"F m m 2": 41,
|
|
1028
|
+
"F d d 2": 42,
|
|
1029
|
+
"I m m 2": 43,
|
|
1030
|
+
"I b a 2": 44,
|
|
1031
|
+
"I m a 2": 45,
|
|
1032
|
+
"P 2/m 2/m 2/m": 46,
|
|
1033
|
+
"P m m m": 46,
|
|
1034
|
+
"P 2/n 2/n 2/n": 47,
|
|
1035
|
+
"P n n n": 47,
|
|
1036
|
+
"P 2/c 2/c 2/m": 48,
|
|
1037
|
+
"P c c m": 48,
|
|
1038
|
+
"P 2/b 2/a 2/n": 49,
|
|
1039
|
+
"P b a n": 49,
|
|
1040
|
+
"P 21/m 2/m 2/a": 50,
|
|
1041
|
+
"P m m a": 50,
|
|
1042
|
+
"P 2/n 21/n 2/a": 51,
|
|
1043
|
+
"P n n a": 51,
|
|
1044
|
+
"P 2/m 2/n 21/a": 52,
|
|
1045
|
+
"P m n a": 52,
|
|
1046
|
+
"P 21/c 2/c 2/a": 53,
|
|
1047
|
+
"P c c a": 53,
|
|
1048
|
+
"P 21/b 21/a 2/m": 54,
|
|
1049
|
+
"P b a m": 54,
|
|
1050
|
+
"P 21/c 21/c 2/n": 55,
|
|
1051
|
+
"P c c n": 55,
|
|
1052
|
+
"P 2/b 21/c 21/m": 56,
|
|
1053
|
+
"P b c m": 56,
|
|
1054
|
+
"P 21/n 21/n 2/m": 57,
|
|
1055
|
+
"P n n m": 57,
|
|
1056
|
+
"P 21/m 21/m 2/n": 58,
|
|
1057
|
+
"P m m n": 58,
|
|
1058
|
+
"P 21/b 2/c 21/n": 59,
|
|
1059
|
+
"P b c n": 59,
|
|
1060
|
+
"P 21/b 21/c 21/a": 60,
|
|
1061
|
+
"P b c a": 60,
|
|
1062
|
+
"P 21/n 21/m 21/a": 61,
|
|
1063
|
+
"P n m a": 61,
|
|
1064
|
+
"C 2/m 2/c 21/m": 62,
|
|
1065
|
+
"C m c m": 62,
|
|
1066
|
+
"C 2/m 2/c 21/a": 63,
|
|
1067
|
+
"C m c a": 63,
|
|
1068
|
+
"C 2/m 2/m 2/m": 64,
|
|
1069
|
+
"C m m m": 64,
|
|
1070
|
+
"C 2/c 2/c 2/m": 65,
|
|
1071
|
+
"C c c m": 65,
|
|
1072
|
+
"C 2/m 2/m 2/a": 66,
|
|
1073
|
+
"C m m a": 66,
|
|
1074
|
+
"C 2/c 2/c 2/a": 67,
|
|
1075
|
+
"C c c a": 67,
|
|
1076
|
+
"F 2/m 2/m 2/m": 68,
|
|
1077
|
+
"F m m m": 68,
|
|
1078
|
+
"F 2/d 2/d 2/d": 69,
|
|
1079
|
+
"F d d d": 69,
|
|
1080
|
+
"I 2/m 2/m 2/m": 70,
|
|
1081
|
+
"I m m m": 70,
|
|
1082
|
+
"I 2/b 2/a 2/m": 71,
|
|
1083
|
+
"I b a m": 71,
|
|
1084
|
+
"I 21/b 21/c 21/a": 72,
|
|
1085
|
+
"I b c a": 72,
|
|
1086
|
+
"I 21/m 21/m 21/a": 73,
|
|
1087
|
+
"I m m a": 73,
|
|
1088
|
+
"P 4": 74,
|
|
1089
|
+
"P 41": 75,
|
|
1090
|
+
"P 42": 76,
|
|
1091
|
+
"P 43": 77,
|
|
1092
|
+
"I 4": 78,
|
|
1093
|
+
"I 41": 79,
|
|
1094
|
+
"P -4": 80,
|
|
1095
|
+
"I -4": 81,
|
|
1096
|
+
"P 4/m": 82,
|
|
1097
|
+
"P 42/m": 83,
|
|
1098
|
+
"P 4/n": 84,
|
|
1099
|
+
"P 42/n": 85,
|
|
1100
|
+
"I 4/m": 86,
|
|
1101
|
+
"I 41/a": 87,
|
|
1102
|
+
"P 4 2 2": 88,
|
|
1103
|
+
"P 4 21 2": 89,
|
|
1104
|
+
"P 41 2 2": 90,
|
|
1105
|
+
"P 41 21 2": 91,
|
|
1106
|
+
"P 42 2 2": 92,
|
|
1107
|
+
"P 42 21 2": 93,
|
|
1108
|
+
"P 43 2 2": 94,
|
|
1109
|
+
"P 43 21 2": 95,
|
|
1110
|
+
"I 4 2 2": 96,
|
|
1111
|
+
"I 41 2 2": 97,
|
|
1112
|
+
"P 4 m m": 98,
|
|
1113
|
+
"P 4 b m": 99,
|
|
1114
|
+
"P 42 c m": 100,
|
|
1115
|
+
"P 42 n m": 101,
|
|
1116
|
+
"P 4 c c": 102,
|
|
1117
|
+
"P 4 n c": 103,
|
|
1118
|
+
"P 42 m c": 104,
|
|
1119
|
+
"P 42 b c": 105,
|
|
1120
|
+
"I 4 m m": 106,
|
|
1121
|
+
"I 4 c m": 107,
|
|
1122
|
+
"I 41 m d": 108,
|
|
1123
|
+
"I 41 c d": 109,
|
|
1124
|
+
"P -4 2 m": 110,
|
|
1125
|
+
"P -4 2 c": 111,
|
|
1126
|
+
"P -4 21 m": 112,
|
|
1127
|
+
"P -4 21 c": 113,
|
|
1128
|
+
"P -4 m 2": 114,
|
|
1129
|
+
"P -4 c 2": 115,
|
|
1130
|
+
"P -4 b 2": 116,
|
|
1131
|
+
"P -4 n 2": 117,
|
|
1132
|
+
"I -4 m 2": 118,
|
|
1133
|
+
"I -4 c 2": 119,
|
|
1134
|
+
"I -4 2 m": 120,
|
|
1135
|
+
"I -4 2 d": 121,
|
|
1136
|
+
"P 4/m 2/m 2/m": 122,
|
|
1137
|
+
"P4/m m m": 122,
|
|
1138
|
+
"P 4/m 2/c 2/c": 123,
|
|
1139
|
+
"P4/m c c": 123,
|
|
1140
|
+
"P 4/n 2/b 2/m": 124,
|
|
1141
|
+
"P4/n b m": 124,
|
|
1142
|
+
"P 4/n 2/n 2/c": 125,
|
|
1143
|
+
"P4/n n c": 125,
|
|
1144
|
+
"P 4/m 21/b 2/m": 126,
|
|
1145
|
+
"P4/m b m": 126,
|
|
1146
|
+
"P 4/m 21/n 2/c": 127,
|
|
1147
|
+
"P4/m n c": 127,
|
|
1148
|
+
"P 4/n 21/m 2/m": 128,
|
|
1149
|
+
"P4/n m m": 128,
|
|
1150
|
+
"P 4/n 2/c 2/c": 129,
|
|
1151
|
+
"P4/n c c": 129,
|
|
1152
|
+
"P 42/m 2/m 2/c": 130,
|
|
1153
|
+
"P42/m m c": 130,
|
|
1154
|
+
"P 42/m 2/c 2/m": 131,
|
|
1155
|
+
"P42/m c m": 131,
|
|
1156
|
+
"P 42/n 2/b 2/c": 132,
|
|
1157
|
+
"P42/n b c": 132,
|
|
1158
|
+
"P 42/n 2/n 2/m": 133,
|
|
1159
|
+
"P42/n n m": 133,
|
|
1160
|
+
"P 42/m 21/b 2/c": 134,
|
|
1161
|
+
"P42/m b c": 134,
|
|
1162
|
+
"P 42/m 21/n 2/m": 135,
|
|
1163
|
+
"P42/m n m": 135,
|
|
1164
|
+
"P 42/n 21/m 2/c": 136,
|
|
1165
|
+
"P42/n m c": 136,
|
|
1166
|
+
"P 42/n 21/c 2/m": 137,
|
|
1167
|
+
"P42/n c m": 137,
|
|
1168
|
+
"I 4/m 2/m 2/m": 138,
|
|
1169
|
+
"I4/m m m": 138,
|
|
1170
|
+
"I 4/m 2/c 2/m": 139,
|
|
1171
|
+
"I4/m c m": 139,
|
|
1172
|
+
"I 41/a 2/m 2/d": 140,
|
|
1173
|
+
"I41/a m d": 140,
|
|
1174
|
+
"I 41/a 2/c 2/d": 141,
|
|
1175
|
+
"I41/a c d": 141,
|
|
1176
|
+
"P 3": 142,
|
|
1177
|
+
"P 31": 143,
|
|
1178
|
+
"P 32": 144,
|
|
1179
|
+
"H 3": 145,
|
|
1180
|
+
"R 3": 146,
|
|
1181
|
+
"P -3": 147,
|
|
1182
|
+
"H -3": 148,
|
|
1183
|
+
"R -3": 149,
|
|
1184
|
+
"P 3 1 2": 150,
|
|
1185
|
+
"P 3 2 1": 151,
|
|
1186
|
+
"P 31 1 2": 152,
|
|
1187
|
+
"P 31 2 1": 153,
|
|
1188
|
+
"P 32 1 2": 154,
|
|
1189
|
+
"P 32 2 1": 155,
|
|
1190
|
+
"H 3 2": 156,
|
|
1191
|
+
"R 3 2": 157,
|
|
1192
|
+
"P 3 m 1": 158,
|
|
1193
|
+
"P 3 1 m": 159,
|
|
1194
|
+
"P 3 c 1": 160,
|
|
1195
|
+
"P 3 1 c": 161,
|
|
1196
|
+
"H 3 m": 162,
|
|
1197
|
+
"R 3 m": 163,
|
|
1198
|
+
"H 3 c": 164,
|
|
1199
|
+
"R 3 c": 165,
|
|
1200
|
+
"P -3 1 2/m": 166,
|
|
1201
|
+
"P -3 1 m": 166,
|
|
1202
|
+
"P -3 1 2/c": 167,
|
|
1203
|
+
"P -3 1 c": 167,
|
|
1204
|
+
"P -3 2/m 1": 168,
|
|
1205
|
+
"P -3 m 1": 168,
|
|
1206
|
+
"P -3 2/c 1": 169,
|
|
1207
|
+
"P -3 c 1": 169,
|
|
1208
|
+
"H -3 2/m": 170,
|
|
1209
|
+
"H -3 m": 170,
|
|
1210
|
+
"R -3 2/m": 171,
|
|
1211
|
+
"R -3 m": 171,
|
|
1212
|
+
"H -3 2/c": 172,
|
|
1213
|
+
"H -3 c": 172,
|
|
1214
|
+
"R -3 2/c": 173,
|
|
1215
|
+
"R -3 c": 173,
|
|
1216
|
+
"P 6": 174,
|
|
1217
|
+
"P 61": 175,
|
|
1218
|
+
"P 65": 176,
|
|
1219
|
+
"P 62": 177,
|
|
1220
|
+
"P 64": 178,
|
|
1221
|
+
"P 63": 179,
|
|
1222
|
+
"P -6": 180,
|
|
1223
|
+
"P 6/m": 181,
|
|
1224
|
+
"P 63/m": 182,
|
|
1225
|
+
"P 6 2 2": 183,
|
|
1226
|
+
"P 61 2 2": 184,
|
|
1227
|
+
"P 65 2 2": 185,
|
|
1228
|
+
"P 62 2 2": 186,
|
|
1229
|
+
"P 64 2 2": 187,
|
|
1230
|
+
"P 63 2 2": 188,
|
|
1231
|
+
"P 6 m m": 189,
|
|
1232
|
+
"P 6 c c": 190,
|
|
1233
|
+
"P 63 c m": 191,
|
|
1234
|
+
"P 63 m c": 192,
|
|
1235
|
+
"P -6 m 2": 193,
|
|
1236
|
+
"P -6 c 2": 194,
|
|
1237
|
+
"P -6 2 m": 195,
|
|
1238
|
+
"P -6 2 c": 196,
|
|
1239
|
+
"P 6/m 2/m 2/m": 197,
|
|
1240
|
+
"P 6/m m m": 197,
|
|
1241
|
+
"P 6/m 2/c 2/c": 198,
|
|
1242
|
+
"P 6/m c c": 198,
|
|
1243
|
+
"P 63/m 2/c 2/m": 199,
|
|
1244
|
+
"P 63/m c m": 199,
|
|
1245
|
+
"P 63/m 2/m 2/c": 200,
|
|
1246
|
+
"P 63/m m c": 200,
|
|
1247
|
+
"P 2 3": 201,
|
|
1248
|
+
"F 2 3": 202,
|
|
1249
|
+
"I 2 3": 203,
|
|
1250
|
+
"P 21 3": 204,
|
|
1251
|
+
"I 21 3": 205,
|
|
1252
|
+
"P 2/m -3": 206,
|
|
1253
|
+
"P m -3": 206,
|
|
1254
|
+
"P 2/n -3": 207,
|
|
1255
|
+
"P n -3": 207,
|
|
1256
|
+
"F 2/m -3": 208,
|
|
1257
|
+
"F m -3": 208,
|
|
1258
|
+
"F 2/d -3": 209,
|
|
1259
|
+
"F d -3": 209,
|
|
1260
|
+
"I 2/m -3": 210,
|
|
1261
|
+
"I m -3": 210,
|
|
1262
|
+
"P 21/a -3": 211,
|
|
1263
|
+
"P a -3": 211,
|
|
1264
|
+
"I 21/a -3": 212,
|
|
1265
|
+
"I a -3": 212,
|
|
1266
|
+
"P 4 3 2": 213,
|
|
1267
|
+
"P 42 3 2": 214,
|
|
1268
|
+
"F 4 3 2": 215,
|
|
1269
|
+
"F 41 3 2": 216,
|
|
1270
|
+
"I 4 3 2": 217,
|
|
1271
|
+
"P 43 3 2": 218,
|
|
1272
|
+
"P 41 3 2": 219,
|
|
1273
|
+
"I 41 3 2": 220,
|
|
1274
|
+
"P -4 3 m": 221,
|
|
1275
|
+
"F -4 3 m": 222,
|
|
1276
|
+
"I -4 3 m": 223,
|
|
1277
|
+
"P -4 3 n": 224,
|
|
1278
|
+
"F -4 3 c": 225,
|
|
1279
|
+
"I -4 3 d": 226,
|
|
1280
|
+
"P 4/m -3 2/m": 227,
|
|
1281
|
+
"P m -3 m": 227,
|
|
1282
|
+
"P 4/n -3 2/n": 228,
|
|
1283
|
+
"P n -3 n": 228,
|
|
1284
|
+
"P 42/m -3 2/n": 229,
|
|
1285
|
+
"P m -3 n": 229,
|
|
1286
|
+
"P 42/n -3 2/m": 230,
|
|
1287
|
+
"P n -3 m": 230,
|
|
1288
|
+
"F 4/m -3 2/m": 231,
|
|
1289
|
+
"F m -3 m": 231,
|
|
1290
|
+
"F 4/m -3 2/c": 232,
|
|
1291
|
+
"F m -3 c": 232,
|
|
1292
|
+
"F 41/d -3 2/m": 233,
|
|
1293
|
+
"F d -3 m": 233,
|
|
1294
|
+
"F 41/d -3 2/c": 234,
|
|
1295
|
+
"F d -3 c": 234,
|
|
1296
|
+
"I 4/m -3 2/m": 235,
|
|
1297
|
+
"I m -3 m": 235,
|
|
1298
|
+
"I 41/a -3 2/d": 236,
|
|
1299
|
+
"I a -3 d": 236,
|
|
1300
|
+
"P 1 1 2": 237,
|
|
1301
|
+
"P 1 1 21": 238,
|
|
1302
|
+
"B 1 1 2": 239,
|
|
1303
|
+
"B 2": 239,
|
|
1304
|
+
"A 1 2 1": 240,
|
|
1305
|
+
"C 1 21 1": 241,
|
|
1306
|
+
"I 1 2 1": 242,
|
|
1307
|
+
"I 2": 242,
|
|
1308
|
+
"I 1 21 1": 243,
|
|
1309
|
+
"P 1 1 m": 244,
|
|
1310
|
+
"P 1 1 b": 245,
|
|
1311
|
+
"B 1 1 m": 246,
|
|
1312
|
+
"B 1 1 b": 247,
|
|
1313
|
+
"P 1 1 2/m": 248,
|
|
1314
|
+
"P 1 1 21/m": 249,
|
|
1315
|
+
"B 1 1 2/m": 250,
|
|
1316
|
+
"P 1 1 2/b": 251,
|
|
1317
|
+
"P 1 1 21/b": 252,
|
|
1318
|
+
"P 1 21/n 1": 253,
|
|
1319
|
+
"P 1 21/a 1": 254,
|
|
1320
|
+
"B 1 1 2/b": 255,
|
|
1321
|
+
"P 21 2 2": 256,
|
|
1322
|
+
"P 2 21 2": 257,
|
|
1323
|
+
"P 21 21 2 (a)": 258,
|
|
1324
|
+
"P 21 2 21": 259,
|
|
1325
|
+
"P 2 21 21": 260,
|
|
1326
|
+
"C 2 2 21a)": 261,
|
|
1327
|
+
"C 2 2 2a": 262,
|
|
1328
|
+
"F 2 2 2a": 263,
|
|
1329
|
+
"I 2 2 2a": 264,
|
|
1330
|
+
"P 21/m 21/m 2/n a": 265,
|
|
1331
|
+
"P 42 21 2a": 266,
|
|
1332
|
+
"I 2 3a": 267
|
|
1333
|
+
},
|
|
1334
|
+
|
|
1335
|
+
"group_numbers": {
|
|
1336
|
+
"1": 0,
|
|
1337
|
+
"2": 1,
|
|
1338
|
+
"3": 2,
|
|
1339
|
+
"4": 3,
|
|
1340
|
+
"5": 4,
|
|
1341
|
+
"6": 5,
|
|
1342
|
+
"7": 6,
|
|
1343
|
+
"8": 7,
|
|
1344
|
+
"9": 8,
|
|
1345
|
+
"10": 9,
|
|
1346
|
+
"11": 10,
|
|
1347
|
+
"12": 11,
|
|
1348
|
+
"13": 12,
|
|
1349
|
+
"14": 13,
|
|
1350
|
+
"15": 14,
|
|
1351
|
+
"16": 15,
|
|
1352
|
+
"17": 16,
|
|
1353
|
+
"18": 17,
|
|
1354
|
+
"19": 18,
|
|
1355
|
+
"20": 19,
|
|
1356
|
+
"21": 20,
|
|
1357
|
+
"22": 21,
|
|
1358
|
+
"23": 22,
|
|
1359
|
+
"24": 23,
|
|
1360
|
+
"25": 24,
|
|
1361
|
+
"26": 25,
|
|
1362
|
+
"27": 26,
|
|
1363
|
+
"28": 27,
|
|
1364
|
+
"29": 28,
|
|
1365
|
+
"30": 29,
|
|
1366
|
+
"31": 30,
|
|
1367
|
+
"32": 31,
|
|
1368
|
+
"33": 32,
|
|
1369
|
+
"34": 33,
|
|
1370
|
+
"35": 34,
|
|
1371
|
+
"36": 35,
|
|
1372
|
+
"37": 36,
|
|
1373
|
+
"38": 37,
|
|
1374
|
+
"39": 38,
|
|
1375
|
+
"40": 39,
|
|
1376
|
+
"41": 40,
|
|
1377
|
+
"42": 41,
|
|
1378
|
+
"43": 42,
|
|
1379
|
+
"44": 43,
|
|
1380
|
+
"45": 44,
|
|
1381
|
+
"46": 45,
|
|
1382
|
+
"47": 46,
|
|
1383
|
+
"48": 47,
|
|
1384
|
+
"49": 48,
|
|
1385
|
+
"50": 49,
|
|
1386
|
+
"51": 50,
|
|
1387
|
+
"52": 51,
|
|
1388
|
+
"53": 52,
|
|
1389
|
+
"54": 53,
|
|
1390
|
+
"55": 54,
|
|
1391
|
+
"56": 55,
|
|
1392
|
+
"57": 56,
|
|
1393
|
+
"58": 57,
|
|
1394
|
+
"59": 58,
|
|
1395
|
+
"60": 59,
|
|
1396
|
+
"61": 60,
|
|
1397
|
+
"62": 61,
|
|
1398
|
+
"63": 62,
|
|
1399
|
+
"64": 63,
|
|
1400
|
+
"65": 64,
|
|
1401
|
+
"66": 65,
|
|
1402
|
+
"67": 66,
|
|
1403
|
+
"68": 67,
|
|
1404
|
+
"69": 68,
|
|
1405
|
+
"70": 69,
|
|
1406
|
+
"71": 70,
|
|
1407
|
+
"72": 71,
|
|
1408
|
+
"73": 72,
|
|
1409
|
+
"74": 73,
|
|
1410
|
+
"75": 74,
|
|
1411
|
+
"76": 75,
|
|
1412
|
+
"77": 76,
|
|
1413
|
+
"78": 77,
|
|
1414
|
+
"79": 78,
|
|
1415
|
+
"80": 79,
|
|
1416
|
+
"81": 80,
|
|
1417
|
+
"82": 81,
|
|
1418
|
+
"83": 82,
|
|
1419
|
+
"84": 83,
|
|
1420
|
+
"85": 84,
|
|
1421
|
+
"86": 85,
|
|
1422
|
+
"87": 86,
|
|
1423
|
+
"88": 87,
|
|
1424
|
+
"89": 88,
|
|
1425
|
+
"90": 89,
|
|
1426
|
+
"91": 90,
|
|
1427
|
+
"92": 91,
|
|
1428
|
+
"93": 92,
|
|
1429
|
+
"94": 93,
|
|
1430
|
+
"95": 94,
|
|
1431
|
+
"96": 95,
|
|
1432
|
+
"97": 96,
|
|
1433
|
+
"98": 97,
|
|
1434
|
+
"99": 98,
|
|
1435
|
+
"100": 99,
|
|
1436
|
+
"101": 100,
|
|
1437
|
+
"102": 101,
|
|
1438
|
+
"103": 102,
|
|
1439
|
+
"104": 103,
|
|
1440
|
+
"105": 104,
|
|
1441
|
+
"106": 105,
|
|
1442
|
+
"107": 106,
|
|
1443
|
+
"108": 107,
|
|
1444
|
+
"109": 108,
|
|
1445
|
+
"110": 109,
|
|
1446
|
+
"111": 110,
|
|
1447
|
+
"112": 111,
|
|
1448
|
+
"113": 112,
|
|
1449
|
+
"114": 113,
|
|
1450
|
+
"115": 114,
|
|
1451
|
+
"116": 115,
|
|
1452
|
+
"117": 116,
|
|
1453
|
+
"118": 117,
|
|
1454
|
+
"119": 118,
|
|
1455
|
+
"120": 119,
|
|
1456
|
+
"121": 120,
|
|
1457
|
+
"122": 121,
|
|
1458
|
+
"123": 122,
|
|
1459
|
+
"124": 123,
|
|
1460
|
+
"125": 124,
|
|
1461
|
+
"126": 125,
|
|
1462
|
+
"127": 126,
|
|
1463
|
+
"128": 127,
|
|
1464
|
+
"129": 128,
|
|
1465
|
+
"130": 129,
|
|
1466
|
+
"131": 130,
|
|
1467
|
+
"132": 131,
|
|
1468
|
+
"133": 132,
|
|
1469
|
+
"134": 133,
|
|
1470
|
+
"135": 134,
|
|
1471
|
+
"136": 135,
|
|
1472
|
+
"137": 136,
|
|
1473
|
+
"138": 137,
|
|
1474
|
+
"139": 138,
|
|
1475
|
+
"140": 139,
|
|
1476
|
+
"141": 140,
|
|
1477
|
+
"142": 141,
|
|
1478
|
+
"143": 142,
|
|
1479
|
+
"144": 143,
|
|
1480
|
+
"145": 144,
|
|
1481
|
+
"146": 145,
|
|
1482
|
+
"147": 147,
|
|
1483
|
+
"148": 148,
|
|
1484
|
+
"149": 150,
|
|
1485
|
+
"150": 151,
|
|
1486
|
+
"151": 152,
|
|
1487
|
+
"152": 153,
|
|
1488
|
+
"153": 154,
|
|
1489
|
+
"154": 155,
|
|
1490
|
+
"155": 156,
|
|
1491
|
+
"156": 158,
|
|
1492
|
+
"157": 159,
|
|
1493
|
+
"158": 160,
|
|
1494
|
+
"159": 161,
|
|
1495
|
+
"160": 162,
|
|
1496
|
+
"161": 164,
|
|
1497
|
+
"162": 166,
|
|
1498
|
+
"163": 167,
|
|
1499
|
+
"164": 168,
|
|
1500
|
+
"165": 169,
|
|
1501
|
+
"166": 170,
|
|
1502
|
+
"167": 172,
|
|
1503
|
+
"168": 174,
|
|
1504
|
+
"169": 175,
|
|
1505
|
+
"170": 176,
|
|
1506
|
+
"171": 177,
|
|
1507
|
+
"172": 178,
|
|
1508
|
+
"173": 179,
|
|
1509
|
+
"174": 180,
|
|
1510
|
+
"175": 181,
|
|
1511
|
+
"176": 182,
|
|
1512
|
+
"177": 183,
|
|
1513
|
+
"178": 184,
|
|
1514
|
+
"179": 185,
|
|
1515
|
+
"180": 186,
|
|
1516
|
+
"181": 187,
|
|
1517
|
+
"182": 188,
|
|
1518
|
+
"183": 189,
|
|
1519
|
+
"184": 190,
|
|
1520
|
+
"185": 191,
|
|
1521
|
+
"186": 192,
|
|
1522
|
+
"187": 193,
|
|
1523
|
+
"188": 194,
|
|
1524
|
+
"189": 195,
|
|
1525
|
+
"190": 196,
|
|
1526
|
+
"191": 197,
|
|
1527
|
+
"192": 198,
|
|
1528
|
+
"193": 199,
|
|
1529
|
+
"194": 200,
|
|
1530
|
+
"195": 201,
|
|
1531
|
+
"196": 202,
|
|
1532
|
+
"197": 203,
|
|
1533
|
+
"198": 204,
|
|
1534
|
+
"199": 205,
|
|
1535
|
+
"200": 206,
|
|
1536
|
+
"201": 207,
|
|
1537
|
+
"202": 208,
|
|
1538
|
+
"203": 209,
|
|
1539
|
+
"204": 210,
|
|
1540
|
+
"205": 211,
|
|
1541
|
+
"206": 212,
|
|
1542
|
+
"207": 213,
|
|
1543
|
+
"208": 214,
|
|
1544
|
+
"209": 215,
|
|
1545
|
+
"210": 216,
|
|
1546
|
+
"211": 217,
|
|
1547
|
+
"212": 218,
|
|
1548
|
+
"213": 219,
|
|
1549
|
+
"214": 220,
|
|
1550
|
+
"215": 221,
|
|
1551
|
+
"216": 222,
|
|
1552
|
+
"217": 223,
|
|
1553
|
+
"218": 224,
|
|
1554
|
+
"219": 225,
|
|
1555
|
+
"220": 226,
|
|
1556
|
+
"221": 227,
|
|
1557
|
+
"222": 228,
|
|
1558
|
+
"223": 229,
|
|
1559
|
+
"224": 230,
|
|
1560
|
+
"225": 231,
|
|
1561
|
+
"226": 232,
|
|
1562
|
+
"227": 233,
|
|
1563
|
+
"228": 234,
|
|
1564
|
+
"229": 235,
|
|
1565
|
+
"230": 236
|
|
1566
|
+
}
|
|
1567
|
+
}
|