Full Code of jaepil/pdfminer3k for AI

master 3e3a259b0d36 cached
89 files
9.6 MB
2.5M tokens
671 symbols
1 requests
Copy disabled (too large) Download .txt
Showing preview only (10,136K chars total). Download the full file to get everything.
Repository: jaepil/pdfminer3k
Branch: master
Commit: 3e3a259b0d36
Files: 89
Total size: 9.6 MB

Directory structure:
gitextract_6vwfdfgt/

├── .gitignore
├── CHANGES
├── MANIFEST.in
├── README.txt
├── build_cmap.py
├── cmaprsrc/
│   ├── README.txt
│   ├── cid2code_Adobe_CNS1.txt
│   ├── cid2code_Adobe_GB1.txt
│   ├── cid2code_Adobe_Japan1.txt
│   └── cid2code_Adobe_Korea1.txt
├── docs/
│   ├── cid.obj
│   ├── index.html
│   ├── layout.obj
│   ├── objrel.obj
│   ├── programming.html
│   └── style.css
├── pdfminer/
│   ├── __init__.py
│   ├── arcfour.py
│   ├── ascii85.py
│   ├── cmap/
│   │   └── __init__.py
│   ├── cmapdb.py
│   ├── converter.py
│   ├── encodingdb.py
│   ├── fontmetrics.py
│   ├── glyphlist.py
│   ├── latin_enc.py
│   ├── layout.py
│   ├── lzw.py
│   ├── pdfcolor.py
│   ├── pdfdevice.py
│   ├── pdffont.py
│   ├── pdfinterp.py
│   ├── pdfparser.py
│   ├── pdftypes.py
│   ├── pslexer.py
│   ├── psparser.py
│   ├── rijndael.py
│   ├── runlength.py
│   └── utils.py
├── samples/
│   ├── Makefile
│   ├── README
│   ├── jo.html.ref
│   ├── jo.tex
│   ├── jo.txt.ref
│   ├── jo.xml.ref
│   ├── nonfree/
│   │   ├── dmca.html.ref
│   │   ├── dmca.txt.ref
│   │   ├── dmca.xml.ref
│   │   ├── f1040nr.html.ref
│   │   ├── f1040nr.txt.ref
│   │   ├── f1040nr.xml.ref
│   │   ├── i1040nr.html.ref
│   │   ├── i1040nr.txt.ref
│   │   ├── i1040nr.xml.ref
│   │   ├── kampo.html.ref
│   │   ├── kampo.txt.ref
│   │   ├── kampo.xml.ref
│   │   ├── naacl06-shinyama.html.ref
│   │   ├── naacl06-shinyama.txt.ref
│   │   ├── naacl06-shinyama.xml.ref
│   │   ├── nlp2004slides.html.ref
│   │   ├── nlp2004slides.txt.ref
│   │   └── nlp2004slides.xml.ref
│   ├── simple1.html.ref
│   ├── simple1.txt.ref
│   ├── simple1.xml.ref
│   ├── simple2.html.ref
│   ├── simple2.txt.ref
│   ├── simple2.xml.ref
│   ├── simple3.html.ref
│   ├── simple3.txt.ref
│   └── simple3.xml.ref
├── setup.py
├── tests/
│   ├── __init__.py
│   ├── layout_test.py
│   ├── parser_test.py
│   ├── samples_test.py
│   ├── support_test.py
│   └── util.py
└── tools/
    ├── conv_afm.py
    ├── conv_cmap.py
    ├── conv_glyphlist.py
    ├── dumppdf.py
    ├── latin2ascii.py
    ├── pdf2html.cgi
    ├── pdf2txt.py
    ├── pdfexplore.py
    ├── prof.py
    └── runapp.py

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================
*.pyc
/build
/dist
/MANIFEST
__pycache__
/pdfminer/cmap/*.gz
*.egg-info

================================================
FILE: CHANGES
================================================
Changes
=======

Version 1.3.1 -- 2016/11/05
---------------------------

* Replaced root loggers with module-wide loggers. This allows user to disable the log messages from pdfminer3k.

Version 1.3.0 -- 2012/07/20
---------------------------

* Added `pdfexplore`, a tool to debug PDFs by exploring their data.
* Don't try to group textboxes when there's too many (it takes too long).
* Support object references as filters in streams.
* Parse every object as soon as an objectid can't be found.
* Improved the `STRICT`-based error handling idiom.

Version 1.2.4 -- 2011/10/07
---------------------------

* When xref tables are corrupt, parse and cache all objects as a fallback.
* Fixed a bogus assertion in layouts.

Version 1.2.3 -- 2011/09/05
---------------------------

* Fixed a crash on uneven cmap codes.
* Fixed a meta-crash caused by bad PSParser repr.

Version 1.2.2 -- 2011/08/30
---------------------------

* Fixed crash on corrupt LZW data.
* Ignore lines with no text for textlines grouping.
* Don't crash on invalid dictionary constructs when parsing postscript.

Version 1.2.1 -- 2011/08/22
---------------------------

* Fixed a crash on corrupted inline images.
* Tweaked layout detection algo.

Version 1.2.0 -- 2011/08/09
---------------------------

* There wasn't a changelog until now. Starting it.
* Removed the old Postscript lexer and replaced it by a PLY-based one.
* Added a couple of heuristic layout features.
* Fixed a couple of crashes on opening PDFs.


================================================
FILE: MANIFEST.in
================================================
include *.txt
include *.py
include CHANGES
graft cmaprsrc
graft docs
graft pdfminer
graft samples
graft tools


================================================
FILE: README.txt
================================================
See docs/index.html

pytest is needed to run tests in the 'tests' folder.

================================================
FILE: build_cmap.py
================================================
import sys
import os
import os.path as op
from subprocess import Popen

BASEPATH = op.dirname(__file__)

def runcmd(args):
    print(' '.join(args))
    p = Popen(' '.join(args), shell=True)
    p.wait()

def clean():
    folder = op.join(BASEPATH, 'pdfminer', 'cmap')
    files = os.listdir(folder)
    gz_files = [fn for fn in files if fn.endswith('.gz')]
    for fn in gz_files:
        path = op.join(folder, fn)
        print("Removing {}".format(path))
        os.remove(path)

def main():
    clean()
    CONVCMAP_PATH = op.join(BASEPATH, 'tools', 'conv_cmap.py')
    SRCFOLDER = op.join(BASEPATH, 'cmaprsrc')
    DSTFOLDER = op.join(BASEPATH, 'pdfminer', 'cmap')
    args = [sys.executable, CONVCMAP_PATH, DSTFOLDER, 'Adobe-CNS1', op.join(SRCFOLDER, 'cid2code_Adobe_CNS1.txt'), 'cp950', 'big5']
    runcmd(args)
    args = [sys.executable, CONVCMAP_PATH, DSTFOLDER, 'Adobe-GB1', op.join(SRCFOLDER, 'cid2code_Adobe_GB1.txt'), 'cp936', 'gb2312']
    runcmd(args)
    args = [sys.executable, CONVCMAP_PATH, DSTFOLDER, 'Adobe-Japan1', op.join(SRCFOLDER, 'cid2code_Adobe_Japan1.txt'), 'cp932', 'euc-jp']
    runcmd(args)
    args = [sys.executable, CONVCMAP_PATH, DSTFOLDER, 'Adobe-Korea1', op.join(SRCFOLDER, 'cid2code_Adobe_Korea1.txt'), 'cp949', 'euc-kr']
    runcmd(args)

if __name__ == '__main__':
    main()

================================================
FILE: cmaprsrc/README.txt
================================================
README.txt for cmaprsrc

This directory contains Adobe CMap resources. CMaps are required 
to decode text data written in CJK (Chinese, Japanese, Korean) language.
CMap resources are now available freely from Adobe web site:
http://opensource.adobe.com/wiki/display/cmap/CMap+Resources

The follwing files were extracted from the downloadable tarballs:

cid2code_Adobe_CNS1.txt:
	http://download.macromedia.com/pub/opensource/cmap/cmapresources_cns1-6.tar.z

cid2code_Adobe_GB1.txt:
	http://download.macromedia.com/pub/opensource/cmap/cmapresources_gb1-5.tar.z

cid2code_Adobe_Japan1.txt:
	http://download.macromedia.com/pub/opensource/cmap/cmapresources_japan1-6.tar.z

cid2code_Adobe_Korea1.txt:
	http://download.macromedia.com/pub/opensource/cmap/cmapresources_korean1-2.tar.z


Here is the license information in the original files:

%%Copyright: -----------------------------------------------------------
%%Copyright: Copyright 1990-20xx Adobe Systems Incorporated.
%%Copyright: All rights reserved.
%%Copyright:
%%Copyright: Redistribution and use in source and binary forms, with or
%%Copyright: without modification, are permitted provided that the
%%Copyright: following conditions are met:
%%Copyright:
%%Copyright: Redistributions of source code must retain the above
%%Copyright: copyright notice, this list of conditions and the following
%%Copyright: disclaimer.
%%Copyright:
%%Copyright: Redistributions in binary form must reproduce the above
%%Copyright: copyright notice, this list of conditions and the following
%%Copyright: disclaimer in the documentation and/or other materials
%%Copyright: provided with the distribution.
%%Copyright:
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
%%Copyright: of its contributors may be used to endorse or promote
%%Copyright: products derived from this software without specific prior
%%Copyright: written permission.
%%Copyright:
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
%%Copyright: -----------------------------------------------------------


================================================
FILE: cmaprsrc/cid2code_Adobe_CNS1.txt
================================================
# cid2code.txt (Version 08/23/2009)
#
# The data in this table contains nineteen tab-delimited columns of
# information. The contents of this file supplement Technical Note 
# #5080 "Adobe-CNS1-6 Character Collection for CID-Keyed Fonts":
#
# http://www.adobe.com/devnet/font/
#
# This table contains lists CIDs 0 through 19155 in the first column,
# and provides additional columns that indicate whether a CID is used
# in a particular CMap file, and if so, provides the encoded value.
# Here are some common aspects of the data that you will find in this
# table:
#
# o All character codes are provided in hexadecimal notation.
#
# o Many of the CMap files indicated at the head of each column have
#   both "-H" (horizontal writing mode) and "-V" (vertical writing
#   mode) versions. Those with only a "-H" version are explicitly
#   shown with the "-H" appended. Those with both do not have a
#   writing mode suffix.
#
# o The character codes found in a corresponding "-V" (vertical
#   writing mode) CMap file are indicated by a "v" appended to the
#   hexadecimal code.
#
# o There may be cases of single CIDs being referenced in multiple
#   encoding points within a single CMap file. These cases are
#   comma-delimited, within the same column.
#
# The following is a synopsis of columns 2 through 19, and provides
# information about character set and encoding:
#
# o Column 2: Character codes for the "B5-H" and "B5-V" CMaps (Big
#   Five character set, Big Five encoding, half-width Latin
#   characters).
#
# o Column 3: Character codes for the "B5pc-H" and "B5pc-V" CMaps
#   (MacOS-T character set, Big Five encoding, proportional Latin
#   characters).
#
# o Column 4: Character codes for the "ETen-B5-H" and "ETen-B5-V"
#   CMaps (Big Five character set with ETen extensions, Big Five
#   encoding, half-width Latin characters).
#
# o Column 5: Character codes for the "ETenms-B5-H" and
#   "ETenms-B5-V" CMaps (Big Five character set with ETen extensions,
#   Big Five encoding, proportional Latin characters).
#
# o Column 6: Character codes for the "CNS1-H" and "CNS1-V" CMaps
#   (CNS 11643-1992 character set, Plane 1, ISO-2022-CN encoding).
#
# o Column 7: Character codes for the "CNS2-H" and "CNS2-V" CMaps
#   (CNS 11643-1992 character set, Plane 2, ISO-2022-CN encoding).
#
# o Column 8: Character codes for the "CNS-EUC-H" and "CNS-EUC-V"
#   CMaps (CNS 11643-1992 character set, Planes 1 and 2, EUC-TW
#   encoding, half-width Latin characters).
#
# o Column 9: Character codes for the "UniCNS-UCS2-H" and
#   "UniCNS-UCS2-V" CMaps (Unicode UCS-2 encoding, proportional
#   Latin characters).
#   (NOTE: These two CMap files are no longer being maintained. The
#   use of the UTF-8, UTF-16, and UTF-32 CMap files is recommended.)
#
# o Column 10: Character codes for the "UniCNS-UTF8-H" and
#   "UniCNS-UTF8-V" CMaps (Unicode 5.2 UTF-8 encoding, proportional Latin
#   characters).
#
# o Column 11: Character codes for the "UniCNS-UTF16-H" and
#   "UniCNS-UTF16-V" CMaps (Unicode 5.2 UTF-16 encoding, proportional
#   Latin characters).
#
# o Column 12: Character codes for the "UniCNS-UTF32-H" and
#   "UniCNS-UTF32-V" CMaps (Unicode 5.2 UTF-32 encoding, proportional
#   Latin characters).
#
# o Column 13: Character codes for the "ETHK-B5-H" and "ETHK-B5-V"
#   CMaps (Big Five character set with the ETen and Hong Kong SCS
#   extensions, Big Five encoding, proportional Latin characters).
#
# o Column 14: Character codes for the "HKdla-B5-H" and "HKdla-B5-V"
#   CMaps (Big Five character set with Dynalab's Hong Kong Extension
#   A with 784 Hong Kong hanzi, Big Five encoding, proportional Latin
#   characters).
#
# o Column 15: Character codes for the "HKdlb-B5-H" and "HKdlb-B5-V"
#   CMaps (Big Five character set with Dynalab's Hong Kong Extension
#   B with 665 Hong Kong hanzi, Big Five encoding, proportional Latin
#   characters).
#
# o Column 16: Character codes for the "HKgccs-B5-H" and "HKgccs-B5-V"
#   CMaps (Big Five character set with Hong Kong's GCCS extension, Big
#   Five encoding, proportional Latin characters).
#
# o Column 17: Character codes for the "HKm314-B5-H" and "HKm314-B5-V"
#   CMaps (Big Five character set with Monotype's Hong Kong extension
#   containing 314 Hong Kong hanzi, Big Five encoding, proportional
#   Latin characters).
#
# o Column 18: Character codes for the "HKm471-B5-H" and "HKm471-B5-V"
#   CMaps (Big Five character set with Monotype's Hong Kong extension
#   containing 471 Hong Kong hanzi, Big Five encoding, proportional
#   Latin characters).
#
# o Column 19: Character codes for the "HKscs-B5-H" and "HKscs-B5-V"
#   CMaps (Big Five character set with Hong Kong's SCS extension,
#   Big Five encoding, proportional Latin characters).
#
CID	B5	B5pc	ETen-B5	ETenms-B5	CNS1	CNS2	CNS-EUC	UniCNS-UCS2	UniCNS-UTF8	UniCNS-UTF16	UniCNS-UTF32	ETHK-B5	HKdla-B5	HKdlb-B5	HKgccs-B5	HKm314-B5	HKm471-B5	HKscs-B5
0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*
1	*	20	*	20	*	*	*	0020	20	0020	00000020	20	20	20	20	20	20	20
2	*	21	*	21	*	*	*	0021	21	0021	00000021	21	21	21	21	21	21	21
3	*	22	*	22	*	*	*	0022	22	0022	00000022	22	22	22	22	22	22	22
4	*	23	*	23	*	*	*	0023	23	0023	00000023	23	23	23	23	23	23	23
5	*	24	*	24	*	*	*	0024	24	0024	00000024	24	24	24	24	24	24	24
6	*	25	*	25	*	*	*	0025	25	0025	00000025	25	25	25	25	25	25	25
7	*	26	*	26	*	*	*	0026	26	0026	00000026	26	26	26	26	26	26	26
8	*	27	*	27	*	*	*	0027	27	0027	00000027	27	27	27	27	27	27	27
9	*	28	*	28	*	*	*	0028	28	0028	00000028	28	28	28	28	28	28	28
10	*	29	*	29	*	*	*	0029	29	0029	00000029	29	29	29	29	29	29	29
11	*	2a	*	2a	*	*	*	002a	2a	002a	0000002a	2a	2a	2a	2a	2a	2a	2a
12	*	2b	*	2b	*	*	*	002b	2b	002b	0000002b	2b	2b	2b	2b	2b	2b	2b
13	*	2c	*	2c	*	*	*	002c	2c	002c	0000002c	2c	2c	2c	2c	2c	2c	2c
14	*	2d	*	2d	*	*	*	002d	2d	002d	0000002d	2d	2d	2d	2d	2d	2d	2d
15	*	2e	*	2e	*	*	*	002e	2e	002e	0000002e	2e	2e	2e	2e	2e	2e	2e
16	*	2f	*	2f	*	*	*	002f	2f	002f	0000002f	2f	2f	2f	2f	2f	2f	2f
17	*	30	*	30	*	*	*	0030	30	0030	00000030	30	30	30	30	30	30	30
18	*	31	*	31	*	*	*	0031	31	0031	00000031	31	31	31	31	31	31	31
19	*	32	*	32	*	*	*	0032	32	0032	00000032	32	32	32	32	32	32	32
20	*	33	*	33	*	*	*	0033	33	0033	00000033	33	33	33	33	33	33	33
21	*	34	*	34	*	*	*	0034	34	0034	00000034	34	34	34	34	34	34	34
22	*	35	*	35	*	*	*	0035	35	0035	00000035	35	35	35	35	35	35	35
23	*	36	*	36	*	*	*	0036	36	0036	00000036	36	36	36	36	36	36	36
24	*	37	*	37	*	*	*	0037	37	0037	00000037	37	37	37	37	37	37	37
25	*	38	*	38	*	*	*	0038	38	0038	00000038	38	38	38	38	38	38	38
26	*	39	*	39	*	*	*	0039	39	0039	00000039	39	39	39	39	39	39	39
27	*	3a	*	3a	*	*	*	003a	3a	003a	0000003a	3a	3a	3a	3a	3a	3a	3a
28	*	3b	*	3b	*	*	*	003b	3b	003b	0000003b	3b	3b	3b	3b	3b	3b	3b
29	*	3c	*	3c	*	*	*	003c	3c	003c	0000003c	3c	3c	3c	3c	3c	3c	3c
30	*	3d	*	3d	*	*	*	003d	3d	003d	0000003d	3d	3d	3d	3d	3d	3d	3d
31	*	3e	*	3e	*	*	*	003e	3e	003e	0000003e	3e	3e	3e	3e	3e	3e	3e
32	*	3f	*	3f	*	*	*	003f	3f	003f	0000003f	3f	3f	3f	3f	3f	3f	3f
33	*	40	*	40	*	*	*	0040	40	0040	00000040	40	40	40	40	40	40	40
34	*	41	*	41	*	*	*	0041	41	0041	00000041	41	41	41	41	41	41	41
35	*	42	*	42	*	*	*	0042	42	0042	00000042	42	42	42	42	42	42	42
36	*	43	*	43	*	*	*	0043	43	0043	00000043	43	43	43	43	43	43	43
37	*	44	*	44	*	*	*	0044	44	0044	00000044	44	44	44	44	44	44	44
38	*	45	*	45	*	*	*	0045	45	0045	00000045	45	45	45	45	45	45	45
39	*	46	*	46	*	*	*	0046	46	0046	00000046	46	46	46	46	46	46	46
40	*	47	*	47	*	*	*	0047	47	0047	00000047	47	47	47	47	47	47	47
41	*	48	*	48	*	*	*	0048	48	0048	00000048	48	48	48	48	48	48	48
42	*	49	*	49	*	*	*	0049	49	0049	00000049	49	49	49	49	49	49	49
43	*	4a	*	4a	*	*	*	004a	4a	004a	0000004a	4a	4a	4a	4a	4a	4a	4a
44	*	4b	*	4b	*	*	*	004b	4b	004b	0000004b	4b	4b	4b	4b	4b	4b	4b
45	*	4c	*	4c	*	*	*	004c	4c	004c	0000004c	4c	4c	4c	4c	4c	4c	4c
46	*	4d	*	4d	*	*	*	004d	4d	004d	0000004d	4d	4d	4d	4d	4d	4d	4d
47	*	4e	*	4e	*	*	*	004e	4e	004e	0000004e	4e	4e	4e	4e	4e	4e	4e
48	*	4f	*	4f	*	*	*	004f	4f	004f	0000004f	4f	4f	4f	4f	4f	4f	4f
49	*	50	*	50	*	*	*	0050	50	0050	00000050	50	50	50	50	50	50	50
50	*	51	*	51	*	*	*	0051	51	0051	00000051	51	51	51	51	51	51	51
51	*	52	*	52	*	*	*	0052	52	0052	00000052	52	52	52	52	52	52	52
52	*	53	*	53	*	*	*	0053	53	0053	00000053	53	53	53	53	53	53	53
53	*	54	*	54	*	*	*	0054	54	0054	00000054	54	54	54	54	54	54	54
54	*	55	*	55	*	*	*	0055	55	0055	00000055	55	55	55	55	55	55	55
55	*	56	*	56	*	*	*	0056	56	0056	00000056	56	56	56	56	56	56	56
56	*	57	*	57	*	*	*	0057	57	0057	00000057	57	57	57	57	57	57	57
57	*	58	*	58	*	*	*	0058	58	0058	00000058	58	58	58	58	58	58	58
58	*	59	*	59	*	*	*	0059	59	0059	00000059	59	59	59	59	59	59	59
59	*	5a	*	5a	*	*	*	005a	5a	005a	0000005a	5a	5a	5a	5a	5a	5a	5a
60	*	5b	*	5b	*	*	*	005b	5b	005b	0000005b	5b	5b	5b	5b	5b	5b	5b
61	*	5c,80	*	5c	*	*	*	005c	5c	005c	0000005c	5c	5c	5c	5c	5c	5c	5c
62	*	5d	*	5d	*	*	*	005d	5d	005d	0000005d	5d	5d	5d	5d	5d	5d	5d
63	*	5e	*	5e	*	*	*	005e	5e	005e	0000005e	5e	5e	5e	5e	5e	5e	5e
64	*	5f	*	5f	*	*	*	005f	5f	005f	0000005f	5f	5f	5f	5f	5f	5f	5f
65	*	60	*	60	*	*	*	0060	60	0060	00000060	60	60	60	60	60	60	60
66	*	61	*	61	*	*	*	0061	61	0061	00000061	61	61	61	61	61	61	61
67	*	62	*	62	*	*	*	0062	62	0062	00000062	62	62	62	62	62	62	62
68	*	63	*	63	*	*	*	0063	63	0063	00000063	63	63	63	63	63	63	63
69	*	64	*	64	*	*	*	0064	64	0064	00000064	64	64	64	64	64	64	64
70	*	65	*	65	*	*	*	0065	65	0065	00000065	65	65	65	65	65	65	65
71	*	66	*	66	*	*	*	0066	66	0066	00000066	66	66	66	66	66	66	66
72	*	67	*	67	*	*	*	0067	67	0067	00000067	67	67	67	67	67	67	67
73	*	68	*	68	*	*	*	0068	68	0068	00000068	68	68	68	68	68	68	68
74	*	69	*	69	*	*	*	0069	69	0069	00000069	69	69	69	69	69	69	69
75	*	6a	*	6a	*	*	*	006a	6a	006a	0000006a	6a	6a	6a	6a	6a	6a	6a
76	*	6b	*	6b	*	*	*	006b	6b	006b	0000006b	6b	6b	6b	6b	6b	6b	6b
77	*	6c	*	6c	*	*	*	006c	6c	006c	0000006c	6c	6c	6c	6c	6c	6c	6c
78	*	6d	*	6d	*	*	*	006d	6d	006d	0000006d	6d	6d	6d	6d	6d	6d	6d
79	*	6e	*	6e	*	*	*	006e	6e	006e	0000006e	6e	6e	6e	6e	6e	6e	6e
80	*	6f	*	6f	*	*	*	006f	6f	006f	0000006f	6f	6f	6f	6f	6f	6f	6f
81	*	70	*	70	*	*	*	0070	70	0070	00000070	70	70	70	70	70	70	70
82	*	71	*	71	*	*	*	0071	71	0071	00000071	71	71	71	71	71	71	71
83	*	72	*	72	*	*	*	0072	72	0072	00000072	72	72	72	72	72	72	72
84	*	73	*	73	*	*	*	0073	73	0073	00000073	73	73	73	73	73	73	73
85	*	74	*	74	*	*	*	0074	74	0074	00000074	74	74	74	74	74	74	74
86	*	75	*	75	*	*	*	0075	75	0075	00000075	75	75	75	75	75	75	75
87	*	76	*	76	*	*	*	0076	76	0076	00000076	76	76	76	76	76	76	76
88	*	77	*	77	*	*	*	0077	77	0077	00000077	77	77	77	77	77	77	77
89	*	78	*	78	*	*	*	0078	78	0078	00000078	78	78	78	78	78	78	78
90	*	79	*	79	*	*	*	0079	79	0079	00000079	79	79	79	79	79	79	79
91	*	7a	*	7a	*	*	*	007a	7a	007a	0000007a	7a	7a	7a	7a	7a	7a	7a
92	*	7b	*	7b	*	*	*	007b	7b	007b	0000007b	7b	7b	7b	7b	7b	7b	7b
93	*	7c	*	7c	*	*	*	007c	7c	007c	0000007c	7c	7c	7c	7c	7c	7c	7c
94	*	7d	*	7d	*	*	*	007d	7d	007d	0000007d	7d	7d	7d	7d	7d	7d	7d
95	*	7e	*	7e	*	*	*	007e	7e	007e	0000007e	7e	7e	7e	7e	7e	7e	7e
96	*	fd	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*
97	*	fe	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*
98	*	ff	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*
99	a140	a140	a140	*	2121	*	8ea1a1a1,a1a1,8ea1a1a1v,a1a1v	3000	e38080	3000	00003000	a140	a140	a140	a140	a140	a140	a140
100	a141	a141	a141	*	2122	*	8ea1a1a2,a1a2,8ea1a1a2v,a1a2v	ff0c	efbc8c	ff0c	0000ff0c	a141	a141	a141	a141	a141	a141	a141
101	a142	a142	a142	*	2123	*	8ea1a1a3,a1a3,8ea1a1a3v,a1a3v	3001	e38081	3001	00003001	a142	a142	a142	a142	a142	a142	a142
102	a143	a143	a143	*	2124	*	8ea1a1a4,a1a4,8ea1a1a4v,a1a4v	3002	e38082	3002	00003002	a143	a143	a143	a143	a143	a143	a143
103	a144	a144	a144	*	2125	*	8ea1a1a5,a1a5,8ea1a1a5v,a1a5v	ff0e	efbc8e	ff0e	0000ff0e	a144	a144	a144	a144	a144	a144	a144
104	a145	a145	a145	*	2126	*	8ea1a1a6,a1a6,8ea1a1a6v,a1a6v	2022	e280a2,e280a7	2022,2027	00002022,00002027	a145	a145	a145	a145	a145	a145	a145
105	a146	a146	a146	*	2127	*	8ea1a1a7,a1a7,8ea1a1a7v,a1a7v	ff1b	efbc9b	ff1b	0000ff1b	a146	a146	a146	a146	a146	a146	a146
106	a147	a147	a147	*	2128	*	8ea1a1a8,a1a8,8ea1a1a8v,a1a8v	ff1a	efbc9a	ff1a	0000ff1a	a147	a147	a147	a147	a147	a147	a147
107	a148	a148	a148	*	2129	*	8ea1a1a9,a1a9,8ea1a1a9v,a1a9v	ff1f	efbc9f	ff1f	0000ff1f	a148	a148	a148	a148	a148	a148	a148
108	a149	a149	a149	*	212a	*	8ea1a1aa,a1aa,8ea1a1aav,a1aav	ff01	efbc81	ff01	0000ff01	a149	a149	a149	a149	a149	a149	a149
109	a14a	a14a	a14a	a14cv	212b	*	8ea1a1ab,a1ab,8ea1a1abv,a1abv	fe30,2025v	efb8b0,e280a5v	fe30,2025v	0000fe30,00002025v	a14a	a14a	a14a	a14a	a14a	a14a	a14a
110	a14b	a14b	a14b	*	212c	*	8ea1a1ac,a1ac	2026	e280a6,e28baf	2026,22ef	00002026,000022ef	a14b	a14b	a14b	a14b	a14b	a14b	a14b
111	a14c	a14c	a14c	*	212d	*	8ea1a1ad,a1ad,8ea1a1adv,a1adv	2025	e280a5	2025	00002025	a14c	a14c	a14c	a14c	a14c	a14c	a14c
112	a14d	a14d	a14d	*	212e	*	8ea1a1ae,a1ae,8ea1a1aev,a1aev	fe50	efb990	fe50	0000fe50	a14d	a14d	a14d	a14d	a14d	a14d	a14d
113	a14e	a14e	a14e	*	212f	*	8ea1a1af,a1af,8ea1a1afv,a1afv	ff64	efbda4,efb991	ff64,fe51	0000ff64,0000fe51	a14e	a14e	a14e	a14e	a14e	a14e	a14e
114	a14f	a14f	a14f	*	2130	*	8ea1a1b0,a1b0,8ea1a1b0v,a1b0v	fe52	efb992	fe52	0000fe52	a14f	a14f	a14f	a14f	a14f	a14f	a14f
115	a150	a150	a150	*	2131	*	8ea1a1b1,a1b1,8ea1a1b1v,a1b1v	00b7	c2b7	00b7	000000b7	a150	a150	a150	a150	a150	a150	a150
116	a151	a151	a151	*	2132	*	8ea1a1b2,a1b2,8ea1a1b2v,a1b2v	fe54	efb994	fe54	0000fe54	a151	a151	a151	a151	a151	a151	a151
117	a152	a152	a152	*	2133	*	8ea1a1b3,a1b3,8ea1a1b3v,a1b3v	fe55	efb995	fe55	0000fe55	a152	a152	a152	a152	a152	a152	a152
118	a153	a153	a153	*	2134	*	8ea1a1b4,a1b4,8ea1a1b4v,a1b4v	fe56	efb996	fe56	0000fe56	a153	a153	a153	a153	a153	a153	a153
119	a154	a154	a154	*	2135	*	8ea1a1b5,a1b5,8ea1a1b5v,a1b5v	fe57	efb997	fe57	0000fe57	a154	a154	a154	a154	a154	a154	a154
120	a155	a155	a155	*	2136	*	8ea1a1b6,a1b6,8ea1a1b6v,a1b6v	ff5c,2013v	efbd9c,e28093v	ff5c,2013v	0000ff5c,00002013v	a155	a155	a155	a155	a155	a155	a155
121	a156	a156	a156	*	2137	*	8ea1a1b7,a1b7,8ea1a1b7v,a1b7v	2013	e28093	2013	00002013	a156	a156	a156	a156	a156	a156	a156
122	a157	a157	a157	a158v	2138	*	8ea1a1b8,a1b8,8ea1a1b8v,a1b8v	fe31,2014v	efb8b1,e28094v	fe31,2014v	0000fe31,00002014v	a157	a157	a157	a157	a157	a157	a157
123	a158	a158	a158	*	2139	*	8ea1a1b9,a1b9,8ea1a1b9v,a1b9v	2014	e28094	2014	00002014	a158	a158	a158	a158	a158	a158	a158
124	*	*	*	*	213a,213bv	*	8ea1a1ba,a1ba,8ea1a1bav,8ea1a1bbv,a1bav,a1bbv	*	*	*	*	*	*	*	*	*	*	*
125	*	*	*	*	213b	*	8ea1a1bb,a1bb	*	*	*	*	*	*	*	*	*	*	*
126	*	*	*	*	213c,213dv	*	8ea1a1bc,a1bc,8ea1a1bcv,8ea1a1bdv,a1bcv,a1bdv	*	*	*	*	*	*	*	*	*	*	*
127	*	*	*	*	213d	*	8ea1a1bd,a1bd	*	*	*	*	*	*	*	*	*	*	*
128	a15d	a15d	a15d	*	213e	*	8ea1a1be,a1be	ff08	efbc88	ff08	0000ff08	a15d	a15d	a15d	a15d	a15d	a15d	a15d
129	a15e	a15e	a15e	*	213f	*	8ea1a1bf,a1bf	ff09	efbc89	ff09	0000ff09	a15e	a15e	a15e	a15e	a15e	a15e	a15e
130	a15f,a15dv	a15f,a15dv	a15f,a15dv	a15dv,a17dv	2140,213ev	*	8ea1a1c0,a1c0,8ea1a1bev,8ea1a1c0v,a1bev,a1c0v	fe35,ff08v	efb8b5,efbc88v	fe35,ff08v	0000fe35,0000ff08v	a15f,a15dv	a15f,a15dv	a15f,a15dv	a15f,a15dv	a15f,a15dv	a15f,a15dv	a15f,a15dv
131	a160,a15ev	a160,a15ev	a160,a15ev	a15ev,a17ev	2141,213fv	*	8ea1a1c1,a1c1,8ea1a1bfv,8ea1a1c1v,a1bfv,a1c1v	fe36,ff09v	efb8b6,efbc89v	fe36,ff09v	0000fe36,0000ff09v	a160,a15ev	a160,a15ev	a160,a15ev	a160,a15ev	a160,a15ev	a160,a15ev	a160,a15ev
132	a161	a161	a161	*	2142	*	8ea1a1c2,a1c2	ff5b	efbd9b	ff5b	0000ff5b	a161	a161	a161	a161	a161	a161	a161
133	a162	a162	a162	*	2143	*	8ea1a1c3,a1c3	ff5d	efbd9d	ff5d	0000ff5d	a162	a162	a162	a162	a162	a162	a162
134	a163,a161v	a163,a161v	a163,a161v	a161v,a1a1v	2144,2142v	*	8ea1a1c4,a1c4,8ea1a1c2v,8ea1a1c4v,a1c2v,a1c4v	fe37,ff5bv	efb8b7,efbd9bv	fe37,ff5bv	0000fe37,0000ff5bv	a163,a161v	a163,a161v	a163,a161v	a163,a161v	a163,a161v	a163,a161v	a163,a161v
135	a164,a162v	a164,a162v	a164,a162v	a162v,a1a2v	2145,2143v	*	8ea1a1c5,a1c5,8ea1a1c3v,8ea1a1c5v,a1c3v,a1c5v	fe38,ff5dv	efb8b8,efbd9dv	fe38,ff5dv	0000fe38,0000ff5dv	a164,a162v	a164,a162v	a164,a162v	a164,a162v	a164,a162v	a164,a162v	a164,a162v
136	a165	a165	a165	*	2146	*	8ea1a1c6,a1c6	3014	e38094	3014	00003014	a165	a165	a165	a165	a165	a165	a165
137	a166	a166	a166	*	2147	*	8ea1a1c7,a1c7	3015	e38095	3015	00003015	a166	a166	a166	a166	a166	a166	a166
138	a167,a165v	a167,a165v	a167,a165v	a165v,a1a3v	2148,2146v	*	8ea1a1c8,a1c8,8ea1a1c6v,8ea1a1c8v,a1c6v,a1c8v	fe39,3014v	efb8b9,e38094v	fe39,3014v	0000fe39,00003014v	a167,a165v	a167,a165v	a167,a165v	a167,a165v	a167,a165v	a167,a165v	a167,a165v
139	a168,a166v	a168,a166v	a168,a166v	a166v,a1a4v	2149,2147v	*	8ea1a1c9,a1c9,8ea1a1c7v,8ea1a1c9v,a1c7v,a1c9v	fe3a,3015v	efb8ba,e38095v	fe3a,3015v	0000fe3a,00003015v	a168,a166v	a168,a166v	a168,a166v	a168,a166v	a168,a166v	a168,a166v	a168,a166v
140	a169	a169	a169	*	214a	*	8ea1a1ca,a1ca	3010	e38090	3010	00003010	a169	a169	a169	a169	a169	a169	a169
141	a16a	a16a	a16a	*	214b	*	8ea1a1cb,a1cb	3011	e38091	3011	00003011	a16a	a16a	a16a	a16a	a16a	a16a	a16a
142	a16b,a169v	a16b,a169v	a16b,a169v	a169v	214c,214av	*	8ea1a1cc,a1cc,8ea1a1cav,8ea1a1ccv,a1cav,a1ccv	fe3b,3010v	efb8bb,e38090v	fe3b,3010v	0000fe3b,00003010v	a16b,a169v	a16b,a169v	a16b,a169v	a16b,a169v	a16b,a169v	a16b,a169v	a16b,a169v
143	a16c,a16av	a16c,a16av	a16c,a16av	a16av	214d,214bv	*	8ea1a1cd,a1cd,8ea1a1cbv,8ea1a1cdv,a1cbv,a1cdv	fe3c,3011v	efb8bc,e38091v	fe3c,3011v	0000fe3c,00003011v	a16c,a16av	a16c,a16av	a16c,a16av	a16c,a16av	a16c,a16av	a16c,a16av	a16c,a16av
144	a16d	a16d	a16d	*	214e	*	8ea1a1ce,a1ce	300a	e3808a	300a	0000300a	a16d	a16d	a16d	a16d	a16d	a16d	a16d
145	a16e	a16e	a16e	*	214f	*	8ea1a1cf,a1cf	300b	e3808b	300b	0000300b	a16e	a16e	a16e	a16e	a16e	a16e	a16e
146	a16f,a16dv	a16f,a16dv	a16f,a16dv	a16dv	2150,214ev	*	8ea1a1d0,a1d0,8ea1a1cev,8ea1a1d0v,a1cev,a1d0v	fe3d,300av	efb8bd,e3808av	fe3d,300av	0000fe3d,0000300av	a16f,a16dv	a16f,a16dv	a16f,a16dv	a16f,a16dv	a16f,a16dv	a16f,a16dv	a16f,a16dv
147	a170,a16ev	a170,a16ev	a170,a16ev	a16ev	2151,214fv	*	8ea1a1d1,a1d1,8ea1a1cfv,8ea1a1d1v,a1cfv,a1d1v	fe3e,300bv	efb8be,e3808bv	fe3e,300bv	0000fe3e,0000300bv	a170,a16ev	a170,a16ev	a170,a16ev	a170,a16ev	a170,a16ev	a170,a16ev	a170,a16ev
148	a171	a171	a171	*	2152	*	8ea1a1d2,a1d2	3008	e38088	3008	00003008	a171	a171	a171	a171	a171	a171	a171
149	a172	a172	a172	*	2153	*	8ea1a1d3,a1d3	3009	e38089	3009	00003009	a172	a172	a172	a172	a172	a172	a172
150	a173,a171v	a173,a171v	a173,a171v	a171v	2154,2152v	*	8ea1a1d4,a1d4,8ea1a1d2v,8ea1a1d4v,a1d2v,a1d4v	fe3f,3008v	efb8bf,e38088v	fe3f,3008v	0000fe3f,00003008v	a173,a171v	a173,a171v	a173,a171v	a173,a171v	a173,a171v	a173,a171v	a173,a171v
151	a174,a172v	a174,a172v	a174,a172v	a172v	2155,2153v	*	8ea1a1d5,a1d5,8ea1a1d3v,8ea1a1d5v,a1d3v,a1d5v	fe40,3009v	efb980,e38089v	fe40,3009v	0000fe40,00003009v	a174,a172v	a174,a172v	a174,a172v	a174,a172v	a174,a172v	a174,a172v	a174,a172v
152	a175	a175	a175	*	2156	*	8ea1a1d6,a1d6	300c	e3808c	300c	0000300c	a175	a175	a175	a175	a175	a175	a175
153	a176	a176	a176	*	2157	*	8ea1a1d7,a1d7	300d	e3808d	300d	0000300d	a176	a176	a176	a176	a176	a176	a176
154	a177,a175v	a177,a175v	a177,a175v	a175v	2158,2156v	*	8ea1a1d8,a1d8,8ea1a1d6v,8ea1a1d8v,a1d6v,a1d8v	fe41,300cv	efb981,e3808cv	fe41,300cv	0000fe41,0000300cv	a177,a175v	a177,a175v	a177,a175v	a177,a175v	a177,a175v	a177,a175v	a177,a175v
155	a178,a176v	a178,a176v	a178,a176v	a176v	2159,2157v	*	8ea1a1d9,a1d9,8ea1a1d7v,8ea1a1d9v,a1d7v,a1d9v	fe42,300dv	efb982,e3808dv	fe42,300dv	0000fe42,0000300dv	a178,a176v	a178,a176v	a178,a176v	a178,a176v	a178,a176v	a178,a176v	a178,a176v
156	a179	a179	a179	*	215a	*	8ea1a1da,a1da	300e	e3808e	300e	0000300e	a179	a179	a179	a179	a179	a179	a179
157	a17a	a17a	a17a	*	215b	*	8ea1a1db,a1db	300f	e3808f	300f	0000300f	a17a	a17a	a17a	a17a	a17a	a17a	a17a
158	a17b,a179v	a17b,a179v	a17b,a179v	a179v	215c,215av	*	8ea1a1dc,a1dc,8ea1a1dav,8ea1a1dcv,a1dav,a1dcv	fe43,300ev	efb983,e3808ev	fe43,300ev	0000fe43,0000300ev	a17b,a179v	a17b,a179v	a17b,a179v	a17b,a179v	a17b,a179v	a17b,a179v	a17b,a179v
159	a17c,a17av	a17c,a17av	a17c,a17av	a17av	215d,215bv	*	8ea1a1dd,a1dd,8ea1a1dbv,8ea1a1ddv,a1dbv,a1ddv	fe44,300fv	efb984,e3808fv	fe44,300fv	0000fe44,0000300fv	a17c,a17av	a17c,a17av	a17c,a17av	a17c,a17av	a17c,a17av	a17c,a17av	a17c,a17av
160	a17d	a17d	a17d	*	215e	*	8ea1a1de,a1de,8ea1a1dev,a1dev	fe59	efb999	fe59	0000fe59	a17d	a17d	a17d	a17d	a17d	a17d	a17d
161	a17e	a17e	a17e	*	215f	*	8ea1a1df,a1df,8ea1a1dfv,a1dfv	fe5a	efb99a	fe5a	0000fe5a	a17e	a17e	a17e	a17e	a17e	a17e	a17e
162	a1a1	a1a1	a1a1	*	2160	*	8ea1a1e0,a1e0,8ea1a1e0v,a1e0v	fe5b	efb99b	fe5b	0000fe5b	a1a1	a1a1	a1a1	a1a1	a1a1	a1a1	a1a1
163	a1a2	a1a2	a1a2	*	2161	*	8ea1a1e1,a1e1,8ea1a1e1v,a1e1v	fe5c	efb99c	fe5c	0000fe5c	a1a2	a1a2	a1a2	a1a2	a1a2	a1a2	a1a2
164	a1a3	a1a3	a1a3	*	2162	*	8ea1a1e2,a1e2,8ea1a1e2v,a1e2v	fe5d	efb99d	fe5d	0000fe5d	a1a3	a1a3	a1a3	a1a3	a1a3	a1a3	a1a3
165	a1a4	a1a4	a1a4	*	2163	*	8ea1a1e3,a1e3,8ea1a1e3v,a1e3v	fe5e	efb99e	fe5e	0000fe5e	a1a4	a1a4	a1a4	a1a4	a1a4	a1a4	a1a4
166	a1a5	a1a5	a1a5	*	2164	*	8ea1a1e4,a1e4,8ea1a1e4v,a1e4v	2018	e28098	2018	00002018	a1a5	a1a5	a1a5	a1a5	a1a5	a1a5	a1a5
167	a1a6	a1a6	a1a6	*	2165	*	8ea1a1e5,a1e5,8ea1a1e5v,a1e5v	2019	e28099	2019	00002019	a1a6	a1a6	a1a6	a1a6	a1a6	a1a6	a1a6
168	a1a7	a1a7	a1a7	*	2166	*	8ea1a1e6,a1e6,8ea1a1e6v,a1e6v	201c	e2809c	201c	0000201c	a1a7	a1a7	a1a7	a1a7	a1a7	a1a7	a1a7
169	a1a8	a1a8	a1a8	*	2167	*	8ea1a1e7,a1e7,8ea1a1e7v,a1e7v	201d	e2809d	201d	0000201d	a1a8	a1a8	a1a8	a1a8	a1a8	a1a8	a1a8
170	a1a9	a1a9	a1a9	*	2168	*	8ea1a1e8,a1e8,8ea1a1e8v,a1e8v	301d	e3809d	301d	0000301d	a1a9	a1a9	a1a9	a1a9	a1a9	a1a9	a1a9
171	a1aa	a1aa	a1aa	*	2169	*	8ea1a1e9,a1e9,8ea1a1e9v,a1e9v	301e	e3809e	301e	0000301e	a1aa	a1aa	a1aa	a1aa	a1aa	a1aa	a1aa
172	a1ab	a1ab	a1ab	*	216a	*	8ea1a1ea,a1ea,8ea1a1eav,a1eav	2035	e280b5	2035	00002035	a1ab	a1ab	a1ab	a1ab	a1ab	a1ab	a1ab
173	a1ac	a1ac	a1ac	*	216b	*	8ea1a1eb,a1eb,8ea1a1ebv,a1ebv	2032	e280b2	2032	00002032	a1ac	a1ac	a1ac	a1ac	a1ac	a1ac	a1ac
174	a1ad	a1ad	a1ad	*	216c	*	8ea1a1ec,a1ec,8ea1a1ecv,a1ecv	ff03	efbc83	ff03	0000ff03	a1ad	a1ad	a1ad	a1ad	a1ad	a1ad	a1ad
175	a1ae	a1ae	a1ae	*	216d	*	8ea1a1ed,a1ed,8ea1a1edv,a1edv	ff06	efbc86	ff06	0000ff06	a1ae	a1ae	a1ae	a1ae	a1ae	a1ae	a1ae
176	a1af	a1af	a1af	*	216e	*	8ea1a1ee,a1ee,8ea1a1eev,a1eev	ff0a	efbc8a	ff0a	0000ff0a	a1af	a1af	a1af	a1af	a1af	a1af	a1af
177	a1b0	a1b0	a1b0	*	216f	*	8ea1a1ef,a1ef,8ea1a1efv,a1efv	203b	e280bb	203b	0000203b	a1b0	a1b0	a1b0	a1b0	a1b0	a1b0	a1b0
178	a1b1	a1b1	a1b1	*	2170	*	8ea1a1f0,a1f0,8ea1a1f0v,a1f0v	00a7	c2a7	00a7	000000a7	a1b1	a1b1	a1b1	a1b1	a1b1	a1b1	a1b1
179	a1b2	a1b2	a1b2	*	2171	*	8ea1a1f1,a1f1,8ea1a1f1v,a1f1v	3003	e38083	3003	00003003	a1b2	a1b2	a1b2	a1b2	a1b2	a1b2	a1b2
180	a1b3	a1b3	a1b3	*	2172	*	8ea1a1f2,a1f2,8ea1a1f2v,a1f2v	25cb	e2978b	25cb	000025cb	a1b3	a1b3	a1b3	a1b3	a1b3	a1b3	a1b3
181	a1b4	a1b4	a1b4	*	2173	*	8ea1a1f3,a1f3,8ea1a1f3v,a1f3v	25cf	e2978f	25cf	000025cf	a1b4	a1b4	a1b4	a1b4	a1b4	a1b4	a1b4
182	a1b5	a1b5	a1b5	*	2174	*	8ea1a1f4,a1f4,8ea1a1f4v,a1f4v	25b3	e296b3	25b3	000025b3	a1b5	a1b5	a1b5	a1b5	a1b5	a1b5	a1b5
183	a1b6	a1b6	a1b6	*	2175	*	8ea1a1f5,a1f5,8ea1a1f5v,a1f5v	25b2	e296b2	25b2	000025b2	a1b6	a1b6	a1b6	a1b6	a1b6	a1b6	a1b6
184	a1b7	a1b7	a1b7	*	2176	*	8ea1a1f6,a1f6,8ea1a1f6v,a1f6v	25ce	e2978e	25ce	000025ce	a1b7	a1b7	a1b7	a1b7	a1b7	a1b7	a1b7
185	a1b8	a1b8	a1b8	*	2177	*	8ea1a1f7,a1f7,8ea1a1f7v,a1f7v	2606	e29886	2606	00002606	a1b8	a1b8	a1b8	a1b8	a1b8	a1b8	a1b8
186	a1b9	a1b9	a1b9	*	2178	*	8ea1a1f8,a1f8,8ea1a1f8v,a1f8v	2605	e29885	2605	00002605	a1b9	a1b9	a1b9	a1b9	a1b9	a1b9	a1b9
187	a1ba	a1ba	a1ba	*	2179	*	8ea1a1f9,a1f9,8ea1a1f9v,a1f9v	25c7	e29787	25c7	000025c7	a1ba	a1ba	a1ba	a1ba	a1ba	a1ba	a1ba
188	a1bb	a1bb	a1bb	*	217a	*	8ea1a1fa,a1fa,8ea1a1fav,a1fav	25c6	e29786	25c6	000025c6	a1bb	a1bb	a1bb	a1bb	a1bb	a1bb	a1bb
189	a1bc	a1bc	a1bc	*	217b	*	8ea1a1fb,a1fb,8ea1a1fbv,a1fbv	25a1	e296a1	25a1	000025a1	a1bc	a1bc	a1bc	a1bc	a1bc	a1bc	a1bc
190	a1bd	a1bd	a1bd	*	217c	*	8ea1a1fc,a1fc,8ea1a1fcv,a1fcv	25a0	e296a0	25a0	000025a0	a1bd	a1bd	a1bd	a1bd	a1bd	a1bd	a1bd
191	a1be	a1be	a1be	*	217d	*	8ea1a1fd,a1fd,8ea1a1fdv,a1fdv	25bd	e296bd	25bd	000025bd	a1be	a1be	a1be	a1be	a1be	a1be	a1be
192	a1bf	a1bf	a1bf	*	217e	*	8ea1a1fe,a1fe,8ea1a1fev,a1fev	25bc	e296bc	25bc	000025bc	a1bf	a1bf	a1bf	a1bf	a1bf	a1bf	a1bf
193	a1c0	a1c0	a1c0	*	2221	*	8ea1a2a1,a2a1,8ea1a2a1v,a2a1v	32a3	e38aa3	32a3	000032a3	a1c0	a1c0	a1c0	a1c0	a1c0	a1c0	a1c0
194	a1c1	a1c1	a1c1	*	2222	*	8ea1a2a2,a2a2,8ea1a2a2v,a2a2v	2105	e28485	2105	00002105	a1c1	a1c1	a1c1	a1c1	a1c1	a1c1	a1c1
195	a1c2	a1c2	a1c2	*	2223	*	8ea1a2a3,a2a3,8ea1a2a3v,a2a3v	203e	c2af,cc84,e280be	00af,0304,203e	000000af,00000304,0000203e	a1c2	a1c2	a1c2	a1c2	a1c2	a1c2	a1c2
196	a1c3	a1c3	a1c3	*	2224	*	8ea1a2a4,a2a4,8ea1a2a4v,a2a4v	*	efbfa3	ffe3	0000ffe3	a1c3	a1c3	a1c3	a1c3	a1c3	a1c3	a1c3
197	a1c4	a1c4	a1c4	*	2225	*	8ea1a2a5,a2a5,8ea1a2a5v,a2a5v	ff3f	efbcbf	ff3f	0000ff3f	a1c4	a1c4	a1c4	a1c4	a1c4	a1c4	a1c4
198	a1c5	a1c5	a1c5	*	2226	*	8ea1a2a6,a2a6,8ea1a2a6v,a2a6v	*	cb8d	02cd	000002cd	a1c5	a1c5	a1c5	a1c5	a1c5	a1c5	a1c5
199	a1c6	a1c6	a1c6	*	2227	*	8ea1a2a7,a2a7,8ea1a2a7v,a2a7v	fe49	efb989	fe49	0000fe49	a1c6	a1c6	a1c6	a1c6	a1c6	a1c6	a1c6
200	a1c7	a1c7	a1c7	*	2228	*	8ea1a2a8,a2a8,8ea1a2a8v,a2a8v	fe4a	efb98a	fe4a	0000fe4a	a1c7	a1c7	a1c7	a1c7	a1c7	a1c7	a1c7
201	a1c8	a1c8	a1c8	*	2229	*	8ea1a2a9,a2a9,8ea1a2a9v,a2a9v	fe4d	efb98d	fe4d	0000fe4d	a1c8	a1c8	a1c8	a1c8	a1c8	a1c8	a1c8
202	a1c9	a1c9	a1c9	*	222a	*	8ea1a2aa,a2aa,8ea1a2aav,a2aav	fe4e	efb98e	fe4e	0000fe4e	a1c9	a1c9	a1c9	a1c9	a1c9	a1c9	a1c9
203	a1ca	a1ca	a1ca	*	222b	*	8ea1a2ab,a2ab,8ea1a2abv,a2abv	fe4b	efb98b	fe4b	0000fe4b	a1ca	a1ca	a1ca	a1ca	a1ca	a1ca	a1ca
204	a1cb	a1cb	a1cb	*	222c	*	8ea1a2ac,a2ac,8ea1a2acv,a2acv	fe4c	efb98c	fe4c	0000fe4c	a1cb	a1cb	a1cb	a1cb	a1cb	a1cb	a1cb
205	a1cc	a1cc	a1cc	*	222d	*	8ea1a2ad,a2ad,8ea1a2adv,a2adv	fe5f	efb99f	fe5f	0000fe5f	a1cc	a1cc	a1cc	a1cc	a1cc	a1cc	a1cc
206	a1cd	a1cd	a1cd	*	222e	*	8ea1a2ae,a2ae,8ea1a2aev,a2aev	fe60	efb9a0	fe60	0000fe60	a1cd	a1cd	a1cd	a1cd	a1cd	a1cd	a1cd
207	a1ce	a1ce	a1ce	*	222f	*	8ea1a2af,a2af,8ea1a2afv,a2afv	fe61	efb9a1	fe61	0000fe61	a1ce	a1ce	a1ce	a1ce	a1ce	a1ce	a1ce
208	a1cf	a1cf	a1cf	*	2230	*	8ea1a2b0,a2b0,8ea1a2b0v,a2b0v	ff0b	efbc8b	ff0b	0000ff0b	a1cf	a1cf	a1cf	a1cf	a1cf	a1cf	a1cf
209	a1d0	a1d0	a1d0	*	2231	*	8ea1a2b1,a2b1,8ea1a2b1v,a2b1v	ff0d	efbc8d	ff0d	0000ff0d	a1d0	a1d0	a1d0	a1d0	a1d0	a1d0	a1d0
210	a1d1	a1d1	a1d1	*	2232	*	8ea1a2b2,a2b2,8ea1a2b2v,a2b2v	00d7	c397	00d7	000000d7	a1d1	a1d1	a1d1	a1d1	a1d1	a1d1	a1d1
211	a1d2	a1d2	a1d2	*	2233	*	8ea1a2b3,a2b3,8ea1a2b3v,a2b3v	00f7	c3b7	00f7	000000f7	a1d2	a1d2	a1d2	a1d2	a1d2	a1d2	a1d2
212	a1d3	a1d3	a1d3	*	2234	*	8ea1a2b4,a2b4,8ea1a2b4v,a2b4v	00b1	c2b1	00b1	000000b1	a1d3	a1d3	a1d3	a1d3	a1d3	a1d3	a1d3
213	a1d4	a1d4	a1d4	*	2235	*	8ea1a2b5,a2b5,8ea1a2b5v,a2b5v	221a	e2889a	221a	0000221a	a1d4	a1d4	a1d4	a1d4	a1d4	a1d4	a1d4
214	a1d5	a1d5	a1d5	*	2236	*	8ea1a2b6,a2b6,8ea1a2b6v,a2b6v	ff1c	efbc9c	ff1c	0000ff1c	a1d5	a1d5	a1d5	a1d5	a1d5	a1d5	a1d5
215	a1d6	a1d6	a1d6	*	2237	*	8ea1a2b7,a2b7,8ea1a2b7v,a2b7v	ff1e	efbc9e	ff1e	0000ff1e	a1d6	a1d6	a1d6	a1d6	a1d6	a1d6	a1d6
216	a1d7	a1d7	a1d7	*	2238	*	8ea1a2b8,a2b8,8ea1a2b8v,a2b8v	ff1d	efbc9d	ff1d	0000ff1d	a1d7	a1d7	a1d7	a1d7	a1d7	a1d7	a1d7
217	a1d8	a1d8	a1d8	*	2239	*	8ea1a2b9,a2b9,8ea1a2b9v,a2b9v	2266	e289a6	2266	00002266	a1d8	a1d8	a1d8	a1d8	a1d8	a1d8	a1d8
218	a1d9	a1d9	a1d9	*	223a	*	8ea1a2ba,a2ba,8ea1a2bav,a2bav	2267	e289a7	2267	00002267	a1d9	a1d9	a1d9	a1d9	a1d9	a1d9	a1d9
219	a1da	a1da	a1da	*	223b	*	8ea1a2bb,a2bb,8ea1a2bbv,a2bbv	2260	e289a0	2260	00002260	a1da	a1da	a1da	a1da	a1da	a1da	a1da
220	a1db	a1db	a1db	*	223c	*	8ea1a2bc,a2bc,8ea1a2bcv,a2bcv	221e	e2889e	221e	0000221e	a1db	a1db	a1db	a1db	a1db	a1db	a1db
221	a1dc	a1dc	a1dc	*	223d	*	8ea1a2bd,a2bd,8ea1a2bdv,a2bdv	2252	e28992	2252	00002252	a1dc	a1dc	a1dc	a1dc	a1dc	a1dc	a1dc
222	a1dd	a1dd	a1dd	*	223e	*	8ea1a2be,a2be,8ea1a2bev,a2bev	2261	e289a1	2261	00002261	a1dd	a1dd	a1dd	a1dd	a1dd	a1dd	a1dd
223	a1de	a1de	a1de	*	223f	*	8ea1a2bf,a2bf,8ea1a2bfv,a2bfv	fe62	efb9a2	fe62	0000fe62	a1de	a1de	a1de	a1de	a1de	a1de	a1de
224	a1df	a1df	a1df	*	2240	*	8ea1a2c0,a2c0,8ea1a2c0v,a2c0v	fe63	efb9a3	fe63	0000fe63	a1df	a1df	a1df	a1df	a1df	a1df	a1df
225	a1e0	a1e0	a1e0	*	2241	*	8ea1a2c1,a2c1,8ea1a2c1v,a2c1v	fe64	efb9a4	fe64	0000fe64	a1e0	a1e0	a1e0	a1e0	a1e0	a1e0	a1e0
226	a1e1	a1e1	a1e1	*	2242	*	8ea1a2c2,a2c2,8ea1a2c2v,a2c2v	fe65	efb9a5	fe65	0000fe65	a1e1	a1e1	a1e1	a1e1	a1e1	a1e1	a1e1
227	a1e2	a1e2	a1e2	*	2243	*	8ea1a2c3,a2c3,8ea1a2c3v,a2c3v	fe66	efb9a6	fe66	0000fe66	a1e2	a1e2	a1e2	a1e2	a1e2	a1e2	a1e2
228	a1e3	a1e3	a1e3	*	2244	*	8ea1a2c4,a2c4	223c	e288bc,efbd9e	223c,ff5e	0000223c,0000ff5e	a1e3	a1e3	a1e3	a1e3	a1e3	a1e3	a1e3
229	a1e4	a1e4	a1e4	*	2245	*	8ea1a2c5,a2c5,8ea1a2c5v,a2c5v	2229	e288a9	2229	00002229	a1e4	a1e4	a1e4	a1e4	a1e4	a1e4	a1e4
230	a1e5	a1e5	a1e5	*	2246	*	8ea1a2c6,a2c6,8ea1a2c6v,a2c6v	222a	e288aa	222a	0000222a	a1e5	a1e5	a1e5	a1e5	a1e5	a1e5	a1e5
231	a1e6	a1e6	a1e6	*	2247	*	8ea1a2c7,a2c7,8ea1a2c7v,a2c7v	22a5	e28aa5	22a5	000022a5	a1e6	a1e6	a1e6	a1e6	a1e6	a1e6	a1e6
232	a1e7	a1e7	a1e7	*	2248	*	8ea1a2c8,a2c8,8ea1a2c8v,a2c8v	2220	e288a0	2220	00002220	a1e7	a1e7	a1e7	a1e7	a1e7	a1e7	a1e7
233	a1e8	a1e8	a1e8	*	2249	*	8ea1a2c9,a2c9,8ea1a2c9v,a2c9v	221f	e2889f	221f	0000221f	a1e8	a1e8	a1e8	a1e8	a1e8	a1e8	a1e8
234	a1e9	a1e9	a1e9	*	224a	*	8ea1a2ca,a2ca,8ea1a2cav,a2cav	22bf	e28abf	22bf	000022bf	a1e9	a1e9	a1e9	a1e9	a1e9	a1e9	a1e9
235	a1ea	a1ea	a1ea	*	224b	*	8ea1a2cb,a2cb,8ea1a2cbv,a2cbv	33d2	e38f92	33d2	000033d2	a1ea	a1ea	a1ea	a1ea	a1ea	a1ea	a1ea
236	a1eb	a1eb	a1eb	*	224c	*	8ea1a2cc,a2cc,8ea1a2ccv,a2ccv	33d1	e38f91	33d1	000033d1	a1eb	a1eb	a1eb	a1eb	a1eb	a1eb	a1eb
237	a1ec	a1ec	a1ec	*	224d	*	8ea1a2cd,a2cd,8ea1a2cdv,a2cdv	222b	e288ab	222b	0000222b	a1ec	a1ec	a1ec	a1ec	a1ec	a1ec	a1ec
238	a1ed	a1ed	a1ed	*	224e	*	8ea1a2ce,a2ce,8ea1a2cev,a2cev	222e	e288ae	222e	0000222e	a1ed	a1ed	a1ed	a1ed	a1ed	a1ed	a1ed
239	a1ee	a1ee	a1ee	*	224f	*	8ea1a2cf,a2cf,8ea1a2cfv,a2cfv	2235	e288b5	2235	00002235	a1ee	a1ee	a1ee	a1ee	a1ee	a1ee	a1ee
240	a1ef	a1ef	a1ef	*	2250	*	8ea1a2d0,a2d0,8ea1a2d0v,a2d0v	2234	e288b4	2234	00002234	a1ef	a1ef	a1ef	a1ef	a1ef	a1ef	a1ef
241	a1f0	a1f0	a1f0	*	2251	*	8ea1a2d1,a2d1,8ea1a2d1v,a2d1v	2640	e29980	2640	00002640	a1f0	a1f0	a1f0	a1f0	a1f0	a1f0	a1f0
242	a1f1	a1f1	a1f1	*	2252	*	8ea1a2d2,a2d2,8ea1a2d2v,a2d2v	2642	e29982	2642	00002642	a1f1	a1f1	a1f1	a1f1	a1f1	a1f1	a1f1
243	a1f2	a1f2	a1f2	*	2253	*	8ea1a2d3,a2d3,8ea1a2d3v,a2d3v	2641	e28a95,e29981	2295,2641	00002295,00002641	a1f2	a1f2	a1f2	a1f2	a1f2	a1f2	a1f2
244	a1f3	a1f3	a1f3	*	2254	*	8ea1a2d4,a2d4,8ea1a2d4v,a2d4v	2609	e28a99,e29889	2299,2609	00002299,00002609	a1f3	a1f3	a1f3	a1f3	a1f3	a1f3	a1f3
245	a1f4	a1f4	a1f4	*	2255	*	8ea1a2d5,a2d5,8ea1a2d5v,a2d5v	2191	e28691	2191	00002191	a1f4	a1f4	a1f4	a1f4	a1f4	a1f4	a1f4
246	a1f5	a1f5	a1f5	*	2256	*	8ea1a2d6,a2d6,8ea1a2d6v,a2d6v	2193	e28693	2193	00002193	a1f5	a1f5	a1f5	a1f5	a1f5	a1f5	a1f5
247	a1f7	a1f7	a1f7	*	2257	*	8ea1a2d7,a2d7,8ea1a2d7v,a2d7v	2192	e28692	2192	00002192	a1f7	a1f7	a1f7	a1f7	a1f7	a1f7	a1f7
248	a1f6	a1f6	a1f6	*	2258	*	8ea1a2d8,a2d8,8ea1a2d8v,a2d8v	2190	e28690	2190	00002190	a1f6	a1f6	a1f6	a1f6	a1f6	a1f6	a1f6
249	a1f8	a1f8	a1f8	*	2259	*	8ea1a2d9,a2d9,8ea1a2d9v,a2d9v	2196	e28696	2196	00002196	a1f8	a1f8	a1f8	a1f8	a1f8	a1f8	a1f8
250	a1f9	a1f9	a1f9	*	225a	*	8ea1a2da,a2da,8ea1a2dav,a2dav	2197	e28697	2197	00002197	a1f9	a1f9	a1f9	a1f9	a1f9	a1f9	a1f9
251	a1fa	a1fa	a1fa	*	225b	*	8ea1a2db,a2db,8ea1a2dbv,a2dbv	2199	e28699	2199	00002199	a1fa	a1fa	a1fa	a1fa	a1fa	a1fa	a1fa
252	a1fb	a1fb	a1fb	*	225c	*	8ea1a2dc,a2dc,8ea1a2dcv,a2dcv	2198	e28698	2198	00002198	a1fb	a1fb	a1fb	a1fb	a1fb	a1fb	a1fb
253	a1fc	a1fc	a1fc	*	225d	*	8ea1a2dd,a2dd,8ea1a2ddv,a2ddv	2225	e288a5	2225	00002225	a1fc	a1fc	a1fc	a1fc	a1fc	a1fc	a1fc
254	a1fd	a1fd	a1fd	*	225e	*	8ea1a2de,a2de,8ea1a2dev,a2dev	2223	e288a3	2223	00002223	a1fd	a1fd	a1fd	a1fd	a1fd	a1fd	a1fd
255	a1fe	a1fe	a1fe	*	225f	*	8ea1a2df,a2df,8ea1a2dfv,a2dfv	*	*	*	*	a1fe	a1fe	a1fe	a1fe	a1fe	a1fe	a1fe
256	a240	a240	a240	*	2260	*	8ea1a2e0,a2e0,8ea1a2e0v,a2e0v	*	*	*	*	a240	a240	a240	a240	a240	a240	a240
257	a241	a241	a241	*	2261	*	8ea1a2e1,a2e1,8ea1a2e1v,a2e1v	ff0f	e28895,efbc8f	2215,ff0f	00002215,0000ff0f	a241	a241	a241	a241	a241	a241	a241
258	a242	a242	a242	*	2262	*	8ea1a2e2,a2e2,8ea1a2e2v,a2e2v	ff3c	efb9a8,efbcbc	fe68,ff3c	0000fe68,0000ff3c	a242	a242	a242	a242	a242	a242	a242
259	a243	a243	a243	*	2263	*	8ea1a2e3,a2e3,8ea1a2e3v,a2e3v	ff04	efbc84	ff04	0000ff04	a243	a243	a243	a243	a243	a243	a243
260	a244	a244	a244	*	2264	*	8ea1a2e4,a2e4,8ea1a2e4v,a2e4v	00a5	c2a5,efbfa5	00a5,ffe5	000000a5,0000ffe5	a244	a244	a244	a244	a244	a244	a244
261	a245	a245	a245	*	2265	*	8ea1a2e5,a2e5,8ea1a2e5v,a2e5v	3012	e38092	3012	00003012	a245	a245	a245	a245	a245	a245	a245
262	a246	a246	a246	*	2266	*	8ea1a2e6,a2e6,8ea1a2e6v,a2e6v	00a2	c2a2,efbfa0	00a2,ffe0	000000a2,0000ffe0	a246	a246	a246	a246	a246	a246	a246
263	a247	a247	a247	*	2267	*	8ea1a2e7,a2e7,8ea1a2e7v,a2e7v	00a3	c2a3,efbfa1	00a3,ffe1	000000a3,0000ffe1	a247	a247	a247	a247	a247	a247	a247
264	a248	a248	a248	*	2268	*	8ea1a2e8,a2e8,8ea1a2e8v,a2e8v	ff05	efbc85	ff05	0000ff05	a248	a248	a248	a248	a248	a248	a248
265	a249	a249	a249	*	2269	*	8ea1a2e9,a2e9,8ea1a2e9v,a2e9v	ff20	efbca0	ff20	0000ff20	a249	a249	a249	a249	a249	a249	a249
266	a24a	a24a	a24a	*	226a	*	8ea1a2ea,a2ea,8ea1a2eav,a2eav	2103	e28483	2103	00002103	a24a	a24a	a24a	a24a	a24a	a24a	a24a
267	a24b	a24b	a24b	*	226b	*	8ea1a2eb,a2eb,8ea1a2ebv,a2ebv	2109	e28489	2109	00002109	a24b	a24b	a24b	a24b	a24b	a24b	a24b
268	a24c	a24c	a24c	*	226c	*	8ea1a2ec,a2ec,8ea1a2ecv,a2ecv	fe69	efb9a9	fe69	0000fe69	a24c	a24c	a24c	a24c	a24c	a24c	a24c
269	a24d	a24d	a24d	*	226d	*	8ea1a2ed,a2ed,8ea1a2edv,a2edv	fe6a	efb9aa	fe6a	0000fe6a	a24d	a24d	a24d	a24d	a24d	a24d	a24d
270	a24e	a24e	a24e	*	226e	*	8ea1a2ee,a2ee,8ea1a2eev,a2eev	fe6b	efb9ab	fe6b	0000fe6b	a24e	a24e	a24e	a24e	a24e	a24e	a24e
271	a24f	a24f	a24f	*	226f	*	8ea1a2ef,a2ef,8ea1a2efv,a2efv	33d5	e38f95	33d5	000033d5	a24f	a24f	a24f	a24f	a24f	a24f	a24f
272	a250	a250	a250	*	2270	*	8ea1a2f0,a2f0,8ea1a2f0v,a2f0v	339c	e38e9c	339c	0000339c	a250	a250	a250	a250	a250	a250	a250
273	a251	a251	a251	*	2271	*	8ea1a2f1,a2f1,8ea1a2f1v,a2f1v	339d	e38e9d	339d	0000339d	a251	a251	a251	a251	a251	a251	a251
274	a252	a252	a252	*	2272	*	8ea1a2f2,a2f2,8ea1a2f2v,a2f2v	339e	e38e9e	339e	0000339e	a252	a252	a252	a252	a252	a252	a252
275	a253	a253	a253	*	2273	*	8ea1a2f3,a2f3,8ea1a2f3v,a2f3v	33ce	e38f8e	33ce	000033ce	a253	a253	a253	a253	a253	a253	a253
276	a254	a254	a254	*	2274	*	8ea1a2f4,a2f4,8ea1a2f4v,a2f4v	33a1	e38ea1	33a1	000033a1	a254	a254	a254	a254	a254	a254	a254
277	a255	a255	a255	*	2275	*	8ea1a2f5,a2f5,8ea1a2f5v,a2f5v	338e	e38e8e	338e	0000338e	a255	a255	a255	a255	a255	a255	a255
278	a256	a256	a256	*	2276	*	8ea1a2f6,a2f6,8ea1a2f6v,a2f6v	338f	e38e8f	338f	0000338f	a256	a256	a256	a256	a256	a256	a256
279	a257	a257	a257	*	2277	*	8ea1a2f7,a2f7,8ea1a2f7v,a2f7v	33c4	e38f84	33c4	000033c4	a257	a257	a257	a257	a257	a257	a257
280	a258	a258	a258	*	2278	*	8ea1a2f8,a2f8,8ea1a2f8v,a2f8v	00b0	c2b0	00b0	000000b0	a258	a258	a258	a258	a258	a258	a258
281	a259	a259	a259	*	2279	*	8ea1a2f9,a2f9,8ea1a2f9v,a2f9v	5159	e58599,ee9792	5159,e5d2	00005159,0000e5d2	92af,a259	a259	a259	92af,a259	a259	a259	92af,a259
282	a25a	a25a	a25a	*	227a	*	8ea1a2fa,a2fa,8ea1a2fav,a2fav	515b	e5859b,ee9793	515b,e5d3	0000515b,0000e5d3	92b0,a25a	a25a	a25a	92b0,a25a	a25a	a25a	92b0,a25a
283	a25b	a25b	a25b	*	227b	*	8ea1a2fb,a2fb,8ea1a2fbv,a2fbv	515e	e5859e,ee9795	515e,e5d5	0000515e,0000e5d5	92b2,a25b	a25b	a25b	92b2,a25b	a25b	a25b	92b2,a25b
284	a25c	a25c	a25c	*	227c	*	8ea1a2fc,a2fc,8ea1a2fcv,a2fcv	515d	e5859d,ee9794	515d,e5d4	0000515d,0000e5d4	92b1,a25c	a25c	a25c	92b1,a25c	a25c	a25c	92b1,a25c
285	a25d	a25d	a25d	*	227d	*	8ea1a2fd,a2fd,8ea1a2fdv,a2fdv	5161	e585a1	5161	00005161	a25d	a25d	a25d	a25d	a25d	a25d	a25d
286	a25e	a25e	a25e	*	227e	*	8ea1a2fe,a2fe,8ea1a2fev,a2fev	5163	e585a3	5163	00005163	a25e	a25e	a25e	a25e	a25e	a25e	a25e
287	a25f	a25f	a25f	*	2321	*	8ea1a3a1,a3a1,8ea1a3a1v,a3a1v	55e7	e597a7	55e7	000055e7	a25f	a25f	a25f	a25f	a25f	a25f	a25f
288	a260	a260	a260	*	2322	*	8ea1a3a2,a3a2,8ea1a3a2v,a3a2v	74e9	e793a9,ee8abc	74e9,e2bc	000074e9,0000e2bc	feaa,a260	a260	a260	a260,feaa	a260	a260	feaa,a260
289	a261	a261	a261	*	2323	*	8ea1a3a3,a3a3,8ea1a3a3v,a3a3v	7cce	e7b38e,ee8d8f	7cce,e34f	00007cce,0000e34f	8e7e,a261	a261	a261	8e7e,a261	a261	a261	8e7e,a261
290	a262	a262	a262	*	2324	*	8ea1a3a4,a3a4,8ea1a3a4v,a3a4v	2581	e29681	2581	00002581	a262	a262	a262	a262	a262	a262	a262
291	a263	a263	a263	*	2325	*	8ea1a3a5,a3a5,8ea1a3a5v,a3a5v	2582	e29682	2582	00002582	a263	a263	a263	a263	a263	a263	a263
292	a264	a264	a264	*	2326	*	8ea1a3a6,a3a6,8ea1a3a6v,a3a6v	2583	e29683	2583	00002583	a264	a264	a264	a264	a264	a264	a264
293	a265	a265	a265	*	2327	*	8ea1a3a7,a3a7,8ea1a3a7v,a3a7v	2584	e29684	2584	00002584	a265	a265	a265	a265	a265	a265	a265
294	a266	a266	a266	*	2328	*	8ea1a3a8,a3a8,8ea1a3a8v,a3a8v	2585	e29685	2585	00002585	a266	a266	a266	a266	a266	a266	a266
295	a267	a267	a267	*	2329	*	8ea1a3a9,a3a9,8ea1a3a9v,a3a9v	2586	e29686	2586	00002586	a267	a267	a267	a267	a267	a267	a267
296	a268	a268	a268	*	232a	*	8ea1a3aa,a3aa,8ea1a3aav,a3aav	2587	e29687	2587	00002587	a268	a268	a268	a268	a268	a268	a268
297	a269	a269	a269	*	232b	*	8ea1a3ab,a3ab,8ea1a3abv,a3abv	2588	e29688	2588	00002588	a269	a269	a269	a269	a269	a269	a269
298	a26a	a26a	a26a	*	232c	*	8ea1a3ac,a3ac,8ea1a3acv,a3acv	258f	e2968f	258f	0000258f	a26a	a26a	a26a	a26a	a26a	a26a	a26a
299	a26b	a26b	a26b	*	232d	*	8ea1a3ad,a3ad,8ea1a3adv,a3adv	258e	e2968e	258e	0000258e	a26b	a26b	a26b	a26b	a26b	a26b	a26b
300	a26c	a26c	a26c	*	232e	*	8ea1a3ae,a3ae,8ea1a3aev,a3aev	258d	e2968d	258d	0000258d	a26c	a26c	a26c	a26c	a26c	a26c	a26c
301	a26d	a26d	a26d	*	232f	*	8ea1a3af,a3af,8ea1a3afv,a3afv	258c	e2968c	258c	0000258c	a26d	a26d	a26d	a26d	a26d	a26d	a26d
302	a26e	a26e	a26e	*	2330	*	8ea1a3b0,a3b0,8ea1a3b0v,a3b0v	258b	e2968b	258b	0000258b	a26e	a26e	a26e	a26e	a26e	a26e	a26e
303	a26f	a26f	a26f	*	2331	*	8ea1a3b1,a3b1,8ea1a3b1v,a3b1v	258a	e2968a	258a	0000258a	a26f	a26f	a26f	a26f	a26f	a26f	a26f
304	a270	a270	a270	*	2332	*	8ea1a3b2,a3b2,8ea1a3b2v,a3b2v	2589	e29689	2589	00002589	a270	a270	a270	a270	a270	a270	a270
305	a271	a271	a271	*	2333	*	8ea1a3b3,a3b3,8ea1a3b3v,a3b3v	253c	e294bc	253c	0000253c	a271	a271	a271	a271	a271	a271	a271
306	a272	a272	a272	*	2334	*	8ea1a3b4,a3b4,8ea1a3b4v,a3b4v	2534	e294b4	2534	00002534	a272	a272	a272	a272	a272	a272	a272
307	a273	a273	a273	*	2335	*	8ea1a3b5,a3b5,8ea1a3b5v,a3b5v	252c	e294ac	252c	0000252c	a273	a273	a273	a273	a273	a273	a273
308	a274	a274	a274	*	2336	*	8ea1a3b6,a3b6,8ea1a3b6v,a3b6v	2524	e294a4	2524	00002524	a274	a274	a274	a274	a274	a274	a274
309	a275	a275	a275	*	2337	*	8ea1a3b7,a3b7,8ea1a3b7v,a3b7v	251c	e2949c	251c	0000251c	a275	a275	a275	a275	a275	a275	a275
310	a276	a276	a276	*	2338	*	8ea1a3b8,a3b8,8ea1a3b8v,a3b8v	2594	e29694	2594	00002594	a276	a276	a276	a276	a276	a276	a276
311	a277	a277	a277	*	2339	*	8ea1a3b9,a3b9,8ea1a3b9v,a3b9v	2500	e29480	2500	00002500	a277	a277	a277	a277	a277	a277	a277
312	a278	a278	a278	a156v	233a	*	8ea1a3ba,a3ba,8ea1a3bav,a3bav	2502	e29482	2502	00002502	a278	a278	a278	a278	a278	a278	a278
313	a279	a279	a279	*	233b	*	8ea1a3bb,a3bb,8ea1a3bbv,a3bbv	2595	e29695	2595	00002595	a279	a279	a279	a279	a279	a279	a279
314	a27a	a27a	a27a	*	233c	*	8ea1a3bc,a3bc,8ea1a3bcv,a3bcv	250c	e2948c	250c	0000250c	a27a	a27a	a27a	a27a	a27a	a27a	a27a
315	a27b	a27b	a27b	*	233d	*	8ea1a3bd,a3bd,8ea1a3bdv,a3bdv	2510	e29490	2510	00002510	a27b	a27b	a27b	a27b	a27b	a27b	a27b
316	a27c	a27c	a27c	*	233e	*	8ea1a3be,a3be,8ea1a3bev,a3bev	2514	e29494	2514	00002514	a27c	a27c	a27c	a27c	a27c	a27c	a27c
317	a27d	a27d	a27d	*	233f	*	8ea1a3bf,a3bf,8ea1a3bfv,a3bfv	2518	e29498	2518	00002518	a27d	a27d	a27d	a27d	a27d	a27d	a27d
318	a27e	a27e	a27e	*	2340	*	8ea1a3c0,a3c0,8ea1a3c0v,a3c0v	256d	e295ad	256d	0000256d	a27e	a27e	a27e	a27e	a27e	a27e	a27e
319	a2a1	a2a1	a2a1	*	2341	*	8ea1a3c1,a3c1,8ea1a3c1v,a3c1v	256e	e295ae	256e	0000256e	a2a1	a2a1	a2a1	a2a1	a2a1	a2a1	a2a1
320	a2a2	a2a2	a2a2	*	2342	*	8ea1a3c2,a3c2,8ea1a3c2v,a3c2v	2570	e295b0	2570	00002570	a2a2	a2a2	a2a2	a2a2	a2a2	a2a2	a2a2
321	a2a3	a2a3	a2a3	*	2343	*	8ea1a3c3,a3c3,8ea1a3c3v,a3c3v	256f	e295af	256f	0000256f	a2a3	a2a3	a2a3	a2a3	a2a3	a2a3	a2a3
322	a2a4	a2a4	a2a4	*	2344	*	8ea1a3c4,a3c4,8ea1a3c4v,a3c4v	2550	e29590	2550	00002550	a2a4	a2a4	a2a4	a2a4	a2a4	a2a4	a2a4
323	a2a5	a2a5	a2a5	*	2345	*	8ea1a3c5,a3c5,8ea1a3c5v,a3c5v	255e	e2959e	255e	0000255e	a2a5	a2a5	a2a5	a2a5	a2a5	a2a5	a2a5
324	a2a6	a2a6	a2a6	*	2346	*	8ea1a3c6,a3c6,8ea1a3c6v,a3c6v	256a	e295aa	256a	0000256a	a2a6	a2a6	a2a6	a2a6	a2a6	a2a6	a2a6
325	a2a7	a2a7	a2a7	*	2347	*	8ea1a3c7,a3c7,8ea1a3c7v,a3c7v	2561	e295a1	2561	00002561	a2a7	a2a7	a2a7	a2a7	a2a7	a2a7	a2a7
326	a2a8	a2a8	a2a8	*	2348	*	8ea1a3c8,a3c8,8ea1a3c8v,a3c8v	25e2	e297a2	25e2	000025e2	a2a8	a2a8	a2a8	a2a8	a2a8	a2a8	a2a8
327	a2a9	a2a9	a2a9	*	2349	*	8ea1a3c9,a3c9,8ea1a3c9v,a3c9v	25e3	e297a3	25e3	000025e3	a2a9	a2a9	a2a9	a2a9	a2a9	a2a9	a2a9
328	a2aa	a2aa	a2aa	*	234a	*	8ea1a3ca,a3ca,8ea1a3cav,a3cav	25e5	e297a5	25e5	000025e5	a2aa	a2aa	a2aa	a2aa	a2aa	a2aa	a2aa
329	a2ab	a2ab	a2ab	*	234b	*	8ea1a3cb,a3cb,8ea1a3cbv,a3cbv	25e4	e297a4	25e4	000025e4	a2ab	a2ab	a2ab	a2ab	a2ab	a2ab	a2ab
330	a2ac	a2ac	a2ac	*	234c	*	8ea1a3cc,a3cc,8ea1a3ccv,a3ccv	2571	e295b1	2571	00002571	a2ac	a2ac	a2ac	a2ac	a2ac	a2ac	a2ac
331	a2ad	a2ad	a2ad	*	234d	*	8ea1a3cd,a3cd,8ea1a3cdv,a3cdv	2572	e295b2	2572	00002572	a2ad	a2ad	a2ad	a2ad	a2ad	a2ad	a2ad
332	a2ae	a2ae	a2ae	*	234e	*	8ea1a3ce,a3ce,8ea1a3cev,a3cev	2573	e295b3	2573	00002573	a2ae	a2ae	a2ae	a2ae	a2ae	a2ae	a2ae
333	a2af	a2af	a2af	*	2421	*	8ea1a4a1,a4a1,8ea1a4a1v,a4a1v	ff10	efbc90	ff10	0000ff10	a2af	a2af	a2af	a2af	a2af	a2af	a2af
334	a2b0	a2b0	a2b0	*	2422	*	8ea1a4a2,a4a2,8ea1a4a2v,a4a2v	ff11	efbc91	ff11	0000ff11	a2b0	a2b0	a2b0	a2b0	a2b0	a2b0	a2b0
335	a2b1	a2b1	a2b1	*	2423	*	8ea1a4a3,a4a3,8ea1a4a3v,a4a3v	ff12	efbc92	ff12	0000ff12	a2b1	a2b1	a2b1	a2b1	a2b1	a2b1	a2b1
336	a2b2	a2b2	a2b2	*	2424	*	8ea1a4a4,a4a4,8ea1a4a4v,a4a4v	ff13	efbc93	ff13	0000ff13	a2b2	a2b2	a2b2	a2b2	a2b2	a2b2	a2b2
337	a2b3	a2b3	a2b3	*	2425	*	8ea1a4a5,a4a5,8ea1a4a5v,a4a5v	ff14	efbc94	ff14	0000ff14	a2b3	a2b3	a2b3	a2b3	a2b3	a2b3	a2b3
338	a2b4	a2b4	a2b4	*	2426	*	8ea1a4a6,a4a6,8ea1a4a6v,a4a6v	ff15	efbc95	ff15	0000ff15	a2b4	a2b4	a2b4	a2b4	a2b4	a2b4	a2b4
339	a2b5	a2b5	a2b5	*	2427	*	8ea1a4a7,a4a7,8ea1a4a7v,a4a7v	ff16	efbc96	ff16	0000ff16	a2b5	a2b5	a2b5	a2b5	a2b5	a2b5	a2b5
340	a2b6	a2b6	a2b6	*	2428	*	8ea1a4a8,a4a8,8ea1a4a8v,a4a8v	ff17	efbc97	ff17	0000ff17	a2b6	a2b6	a2b6	a2b6	a2b6	a2b6	a2b6
341	a2b7	a2b7	a2b7	*	2429	*	8ea1a4a9,a4a9,8ea1a4a9v,a4a9v	ff18	efbc98	ff18	0000ff18	a2b7	a2b7	a2b7	a2b7	a2b7	a2b7	a2b7
342	a2b8	a2b8	a2b8	*	242a	*	8ea1a4aa,a4aa,8ea1a4aav,a4aav	ff19	efbc99	ff19	0000ff19	a2b8	a2b8	a2b8	a2b8	a2b8	a2b8	a2b8
343	a2b9	a2b9	a2b9	*	242b	*	8ea1a4ab,a4ab,8ea1a4abv,a4abv	2160	e285a0	2160	00002160	a2b9	a2b9	a2b9	a2b9	a2b9	a2b9	a2b9
344	a2ba	a2ba	a2ba	*	242c	*	8ea1a4ac,a4ac,8ea1a4acv,a4acv	2161	e285a1	2161	00002161	a2ba	a2ba	a2ba	a2ba	a2ba	a2ba	a2ba
345	a2bb	a2bb	a2bb	*	242d	*	8ea1a4ad,a4ad,8ea1a4adv,a4adv	2162	e285a2	2162	00002162	a2bb	a2bb	a2bb	a2bb	a2bb	a2bb	a2bb
346	a2bc	a2bc	a2bc	*	242e	*	8ea1a4ae,a4ae,8ea1a4aev,a4aev	2163	e285a3	2163	00002163	a2bc	a2bc	a2bc	a2bc	a2bc	a2bc	a2bc
347	a2bd	a2bd	a2bd	*	242f	*	8ea1a4af,a4af,8ea1a4afv,a4afv	2164	e285a4	2164	00002164	a2bd	a2bd	a2bd	a2bd	a2bd	a2bd	a2bd
348	a2be	a2be	a2be	*	2430	*	8ea1a4b0,a4b0,8ea1a4b0v,a4b0v	2165	e285a5	2165	00002165	a2be	a2be	a2be	a2be	a2be	a2be	a2be
349	a2bf	a2bf	a2bf	*	2431	*	8ea1a4b1,a4b1,8ea1a4b1v,a4b1v	2166	e285a6	2166	00002166	a2bf	a2bf	a2bf	a2bf	a2bf	a2bf	a2bf
350	a2c0	a2c0	a2c0	*	2432	*	8ea1a4b2,a4b2,8ea1a4b2v,a4b2v	2167	e285a7	2167	00002167	a2c0	a2c0	a2c0	a2c0	a2c0	a2c0	a2c0
351	a2c1	a2c1	a2c1	*	2433	*	8ea1a4b3,a4b3,8ea1a4b3v,a4b3v	2168	e285a8	2168	00002168	a2c1	a2c1	a2c1	a2c1	a2c1	a2c1	a2c1
352	a2c2	a2c2	a2c2	*	2434	*	8ea1a4b4,a4b4,8ea1a4b4v,a4b4v	2169	e285a9	2169	00002169	a2c2	a2c2	a2c2	a2c2	a2c2	a2c2	a2c2
353	a2c3	a2c3	a2c3	*	2435	*	8ea1a4b5,a4b5,8ea1a4b5v,a4b5v	3021	e380a1	3021	00003021	a2c3	a2c3	a2c3	a2c3	a2c3	a2c3	a2c3
354	a2c4	a2c4	a2c4	*	2436	*	8ea1a4b6,a4b6,8ea1a4b6v,a4b6v	3022	e380a2	3022	00003022	a2c4	a2c4	a2c4	a2c4	a2c4	a2c4	a2c4
355	a2c5	a2c5	a2c5	*	2437	*	8ea1a4b7,a4b7,8ea1a4b7v,a4b7v	3023	e380a3	3023	00003023	a2c5	a2c5	a2c5	a2c5	a2c5	a2c5	a2c5
356	a2c6	a2c6	a2c6	*	2438	*	8ea1a4b8,a4b8,8ea1a4b8v,a4b8v	3024	e380a4	3024	00003024	a2c6	a2c6	a2c6	a2c6	a2c6	a2c6	a2c6
357	a2c7	a2c7	a2c7	*	2439	*	8ea1a4b9,a4b9,8ea1a4b9v,a4b9v	3025	e380a5	3025	00003025	a2c7	a2c7	a2c7	a2c7	a2c7	a2c7	a2c7
358	a2c8	a2c8	a2c8	*	243a	*	8ea1a4ba,a4ba,8ea1a4bav,a4bav	3026	e380a6	3026	00003026	a2c8	a2c8	a2c8	a2c8	a2c8	a2c8	a2c8
359	a2c9	a2c9	a2c9	*	243b	*	8ea1a4bb,a4bb,8ea1a4bbv,a4bbv	3027	e380a7	3027	00003027	a2c9	a2c9	a2c9	a2c9	a2c9	a2c9	a2c9
360	a2ca	a2ca	a2ca	*	243c	*	8ea1a4bc,a4bc,8ea1a4bcv,a4bcv	3028	e380a8	3028	00003028	a2ca	a2ca	a2ca	a2ca	a2ca	a2ca	a2ca
361	a2cb	a2cb	a2cb	*	243d	*	8ea1a4bd,a4bd,8ea1a4bdv,a4bdv	3029	e380a9	3029	00003029	a2cb	a2cb	a2cb	a2cb	a2cb	a2cb	a2cb
362	a2cc	a2cc	a2cc	*	243e	*	8ea1a4be,a4be,8ea1a4bev,a4bev	*	e380b8	3038	00003038	a2cc	a2cc	a2cc	a2cc	a2cc	a2cc	a2cc
363	a2cd	a2cd	a2cd	*	243f	*	8ea1a4bf,a4bf,8ea1a4bfv,a4bfv	5344	e58d84,ee81a3,e380b9	5344,e063,3039	00005344,0000e063,00003039	fac5,a2cd	a2cd	a2cd	a2cd	a2cd	a2cd	fac5,a2cd
364	a2ce	a2ce	a2ce	*	2440	*	8ea1a4c0,a4c0,8ea1a4c0v,a4c0v	*	e380ba	303a	0000303a	a2ce	a2ce	a2ce	a2ce	a2ce	a2ce	a2ce
365	a2cf	a2cf	a2cf	*	2441	*	8ea1a4c1,a4c1,8ea1a4c1v,a4c1v	ff21	efbca1	ff21	0000ff21	a2cf	a2cf	a2cf	a2cf	a2cf	a2cf	a2cf
366	a2d0	a2d0	a2d0	*	2442	*	8ea1a4c2,a4c2,8ea1a4c2v,a4c2v	ff22	efbca2	ff22	0000ff22	a2d0	a2d0	a2d0	a2d0	a2d0	a2d0	a2d0
367	a2d1	a2d1	a2d1	*	2443	*	8ea1a4c3,a4c3,8ea1a4c3v,a4c3v	ff23	efbca3	ff23	0000ff23	a2d1	a2d1	a2d1	a2d1	a2d1	a2d1	a2d1
368	a2d2	a2d2	a2d2	*	2444	*	8ea1a4c4,a4c4,8ea1a4c4v,a4c4v	ff24	efbca4	ff24	0000ff24	a2d2	a2d2	a2d2	a2d2	a2d2	a2d2	a2d2
369	a2d3	a2d3	a2d3	*	2445	*	8ea1a4c5,a4c5,8ea1a4c5v,a4c5v	ff25	efbca5	ff25	0000ff25	a2d3	a2d3	a2d3	a2d3	a2d3	a2d3	a2d3
370	a2d4	a2d4	a2d4	*	2446	*	8ea1a4c6,a4c6,8ea1a4c6v,a4c6v	ff26	efbca6	ff26	0000ff26	a2d4	a2d4	a2d4	a2d4	a2d4	a2d4	a2d4
371	a2d5	a2d5	a2d5	*	2447	*	8ea1a4c7,a4c7,8ea1a4c7v,a4c7v	ff27	efbca7	ff27	0000ff27	a2d5	a2d5	a2d5	a2d5	a2d5	a2d5	a2d5
372	a2d6	a2d6	a2d6	*	2448	*	8ea1a4c8,a4c8,8ea1a4c8v,a4c8v	ff28	efbca8	ff28	0000ff28	a2d6	a2d6	a2d6	a2d6	a2d6	a2d6	a2d6
373	a2d7	a2d7	a2d7	*	2449	*	8ea1a4c9,a4c9,8ea1a4c9v,a4c9v	ff29	efbca9	ff29	0000ff29	a2d7	a2d7	a2d7	a2d7	a2d7	a2d7	a2d7
374	a2d8	a2d8	a2d8	*	244a	*	8ea1a4ca,a4ca,8ea1a4cav,a4cav	ff2a	efbcaa	ff2a	0000ff2a	a2d8	a2d8	a2d8	a2d8	a2d8	a2d8	a2d8
375	a2d9	a2d9	a2d9	*	244b	*	8ea1a4cb,a4cb,8ea1a4cbv,a4cbv	ff2b	efbcab	ff2b	0000ff2b	a2d9	a2d9	a2d9	a2d9	a2d9	a2d9	a2d9
376	a2da	a2da	a2da	*	244c	*	8ea1a4cc,a4cc,8ea1a4ccv,a4ccv	ff2c	efbcac	ff2c	0000ff2c	a2da	a2da	a2da	a2da	a2da	a2da	a2da
377	a2db	a2db	a2db	*	244d	*	8ea1a4cd,a4cd,8ea1a4cdv,a4cdv	ff2d	efbcad	ff2d	0000ff2d	a2db	a2db	a2db	a2db	a2db	a2db	a2db
378	a2dc	a2dc	a2dc	*	244e	*	8ea1a4ce,a4ce,8ea1a4cev,a4cev	ff2e	efbcae	ff2e	0000ff2e	a2dc	a2dc	a2dc	a2dc	a2dc	a2dc	a2dc
379	a2dd	a2dd	a2dd	*	244f	*	8ea1a4cf,a4cf,8ea1a4cfv,a4cfv	ff2f	efbcaf	ff2f	0000ff2f	a2dd	a2dd	a2dd	a2dd	a2dd	a2dd	a2dd
380	a2de	a2de	a2de	*	2450	*	8ea1a4d0,a4d0,8ea1a4d0v,a4d0v	ff30	efbcb0	ff30	0000ff30	a2de	a2de	a2de	a2de	a2de	a2de	a2de
381	a2df	a2df	a2df	*	2451	*	8ea1a4d1,a4d1,8ea1a4d1v,a4d1v	ff31	efbcb1	ff31	0000ff31	a2df	a2df	a2df	a2df	a2df	a2df	a2df
382	a2e0	a2e0	a2e0	*	2452	*	8ea1a4d2,a4d2,8ea1a4d2v,a4d2v	ff32	efbcb2	ff32	0000ff32	a2e0	a2e0	a2e0	a2e0	a2e0	a2e0	a2e0
383	a2e1	a2e1	a2e1	*	2453	*	8ea1a4d3,a4d3,8ea1a4d3v,a4d3v	ff33	efbcb3	ff33	0000ff33	a2e1	a2e1	a2e1	a2e1	a2e1	a2e1	a2e1
384	a2e2	a2e2	a2e2	*	2454	*	8ea1a4d4,a4d4,8ea1a4d4v,a4d4v	ff34	efbcb4	ff34	0000ff34	a2e2	a2e2	a2e2	a2e2	a2e2	a2e2	a2e2
385	a2e3	a2e3	a2e3	*	2455	*	8ea1a4d5,a4d5,8ea1a4d5v,a4d5v	ff35	efbcb5	ff35	0000ff35	a2e3	a2e3	a2e3	a2e3	a2e3	a2e3	a2e3
386	a2e4	a2e4	a2e4	*	2456	*	8ea1a4d6,a4d6,8ea1a4d6v,a4d6v	ff36	efbcb6	ff36	0000ff36	a2e4	a2e4	a2e4	a2e4	a2e4	a2e4	a2e4
387	a2e5	a2e5	a2e5	*	2457	*	8ea1a4d7,a4d7,8ea1a4d7v,a4d7v	ff37	efbcb7	ff37	0000ff37	a2e5	a2e5	a2e5	a2e5	a2e5	a2e5	a2e5
388	a2e6	a2e6	a2e6	*	2458	*	8ea1a4d8,a4d8,8ea1a4d8v,a4d8v	ff38	efbcb8	ff38	0000ff38	a2e6	a2e6	a2e6	a2e6	a2e6	a2e6	a2e6
389	a2e7	a2e7	a2e7	*	2459	*	8ea1a4d9,a4d9,8ea1a4d9v,a4d9v	ff39	efbcb9	ff39	0000ff39	a2e7	a2e7	a2e7	a2e7	a2e7	a2e7	a2e7
390	a2e8	a2e8	a2e8	*	245a	*	8ea1a4da,a4da,8ea1a4dav,a4dav	ff3a	efbcba	ff3a	0000ff3a	a2e8	a2e8	a2e8	a2e8	a2e8	a2e8	a2e8
391	a2e9	a2e9	a2e9	*	245b	*	8ea1a4db,a4db,8ea1a4dbv,a4dbv	ff41	efbd81	ff41	0000ff41	a2e9	a2e9	a2e9	a2e9	a2e9	a2e9	a2e9
392	a2ea	a2ea	a2ea	*	245c	*	8ea1a4dc,a4dc,8ea1a4dcv,a4dcv	ff42	efbd82	ff42	0000ff42	a2ea	a2ea	a2ea	a2ea	a2ea	a2ea	a2ea
393	a2eb	a2eb	a2eb	*	245d	*	8ea1a4dd,a4dd,8ea1a4ddv,a4ddv	ff43	efbd83	ff43	0000ff43	a2eb	a2eb	a2eb	a2eb	a2eb	a2eb	a2eb
394	a2ec	a2ec	a2ec	*	245e	*	8ea1a4de,a4de,8ea1a4dev,a4dev	ff44	efbd84	ff44	0000ff44	a2ec	a2ec	a2ec	a2ec	a2ec	a2ec	a2ec
395	a2ed	a2ed	a2ed	*	245f	*	8ea1a4df,a4df,8ea1a4dfv,a4dfv	ff45	efbd85	ff45	0000ff45	a2ed	a2ed	a2ed	a2ed	a2ed	a2ed	a2ed
396	a2ee	a2ee	a2ee	*	2460	*	8ea1a4e0,a4e0,8ea1a4e0v,a4e0v	ff46	efbd86	ff46	0000ff46	a2ee	a2ee	a2ee	a2ee	a2ee	a2ee	a2ee
397	a2ef	a2ef	a2ef	*	2461	*	8ea1a4e1,a4e1,8ea1a4e1v,a4e1v	ff47	efbd87	ff47	0000ff47	a2ef	a2ef	a2ef	a2ef	a2ef	a2ef	a2ef
398	a2f0	a2f0	a2f0	*	2462	*	8ea1a4e2,a4e2,8ea1a4e2v,a4e2v	ff48	efbd88	ff48	0000ff48	a2f0	a2f0	a2f0	a2f0	a2f0	a2f0	a2f0
399	a2f1	a2f1	a2f1	*	2463	*	8ea1a4e3,a4e3,8ea1a4e3v,a4e3v	ff49	efbd89	ff49	0000ff49	a2f1	a2f1	a2f1	a2f1	a2f1	a2f1	a2f1
400	a2f2	a2f2	a2f2	*	2464	*	8ea1a4e4,a4e4,8ea1a4e4v,a4e4v	ff4a	efbd8a	ff4a	0000ff4a	a2f2	a2f2	a2f2	a2f2	a2f2	a2f2	a2f2
401	a2f3	a2f3	a2f3	*	2465	*	8ea1a4e5,a4e5,8ea1a4e5v,a4e5v	ff4b	efbd8b	ff4b	0000ff4b	a2f3	a2f3	a2f3	a2f3	a2f3	a2f3	a2f3
402	a2f4	a2f4	a2f4	*	2466	*	8ea1a4e6,a4e6,8ea1a4e6v,a4e6v	ff4c	efbd8c	ff4c	0000ff4c	a2f4	a2f4	a2f4	a2f4	a2f4	a2f4	a2f4
403	a2f5	a2f5	a2f5	*	2467	*	8ea1a4e7,a4e7,8ea1a4e7v,a4e7v	ff4d	efbd8d	ff4d	0000ff4d	a2f5	a2f5	a2f5	a2f5	a2f5	a2f5	a2f5
404	a2f6	a2f6	a2f6	*	2468	*	8ea1a4e8,a4e8,8ea1a4e8v,a4e8v	ff4e	efbd8e	ff4e	0000ff4e	a2f6	a2f6	a2f6	a2f6	a2f6	a2f6	a2f6
405	a2f7	a2f7	a2f7	*	2469	*	8ea1a4e9,a4e9,8ea1a4e9v,a4e9v	ff4f	efbd8f	ff4f	0000ff4f	a2f7	a2f7	a2f7	a2f7	a2f7	a2f7	a2f7
406	a2f8	a2f8	a2f8	*	246a	*	8ea1a4ea,a4ea,8ea1a4eav,a4eav	ff50	efbd90	ff50	0000ff50	a2f8	a2f8	a2f8	a2f8	a2f8	a2f8	a2f8
407	a2f9	a2f9	a2f9	*	246b	*	8ea1a4eb,a4eb,8ea1a4ebv,a4ebv	ff51	efbd91	ff51	0000ff51	a2f9	a2f9	a2f9	a2f9	a2f9	a2f9	a2f9
408	a2fa	a2fa	a2fa	*	246c	*	8ea1a4ec,a4ec,8ea1a4ecv,a4ecv	ff52	efbd92	ff52	0000ff52	a2fa	a2fa	a2fa	a2fa	a2fa	a2fa	a2fa
409	a2fb	a2fb	a2fb	*	246d	*	8ea1a4ed,a4ed,8ea1a4edv,a4edv	ff53	efbd93	ff53	0000ff53	a2fb	a2fb	a2fb	a2fb	a2fb	a2fb	a2fb
410	a2fc	a2fc	a2fc	*	246e	*	8ea1a4ee,a4ee,8ea1a4eev,a4eev	ff54	efbd94	ff54	0000ff54	a2fc	a2fc	a2fc	a2fc	a2fc	a2fc	a2fc
411	a2fd	a2fd	a2fd	*	246f	*	8ea1a4ef,a4ef,8ea1a4efv,a4efv	ff55	efbd95	ff55	0000ff55	a2fd	a2fd	a2fd	a2fd	a2fd	a2fd	a2fd
412	a2fe	a2fe	a2fe	*	2470	*	8ea1a4f0,a4f0,8ea1a4f0v,a4f0v	ff56	efbd96	ff56	0000ff56	a2fe	a2fe	a2fe	a2fe	a2fe	a2fe	a2fe
413	a340	a340	a340	*	2471	*	8ea1a4f1,a4f1,8ea1a4f1v,a4f1v	ff57	efbd97	ff57	0000ff57	a340	a340	a340	a340	a340	a340	a340
414	a341	a341	a341	*	2472	*	8ea1a4f2,a4f2,8ea1a4f2v,a4f2v	ff58	efbd98	ff58	0000ff58	a341	a341	a341	a341	a341	a341	a341
415	a342	a342	a342	*	2473	*	8ea1a4f3,a4f3,8ea1a4f3v,a4f3v	ff59	efbd99	ff59	0000ff59	a342	a342	a342	a342	a342	a342	a342
416	a343	a343	a343	*	2474	*	8ea1a4f4,a4f4,8ea1a4f4v,a4f4v	ff5a	efbd9a	ff5a	0000ff5a	a343	a343	a343	a343	a343	a343	a343
417	a344	a344	a344	*	2475	*	8ea1a4f5,a4f5,8ea1a4f5v,a4f5v	0391	ce91	0391	00000391	a344	a344	a344	a344	a344	a344	a344
418	a345	a345	a345	*	2476	*	8ea1a4f6,a4f6,8ea1a4f6v,a4f6v	0392	ce92	0392	00000392	a345	a345	a345	a345	a345	a345	a345
419	a346	a346	a346	*	2477	*	8ea1a4f7,a4f7,8ea1a4f7v,a4f7v	0393	ce93	0393	00000393	a346	a346	a346	a346	a346	a346	a346
420	a347	a347	a347	*	2478	*	8ea1a4f8,a4f8,8ea1a4f8v,a4f8v	0394	ce94	0394	00000394	a347	a347	a347	a347	a347	a347	a347
421	a348	a348	a348	*	2479	*	8ea1a4f9,a4f9,8ea1a4f9v,a4f9v	0395	ce95	0395	00000395	a348	a348	a348	a348	a348	a348	a348
422	a349	a349	a349	*	247a	*	8ea1a4fa,a4fa,8ea1a4fav,a4fav	0396	ce96	0396	00000396	a349	a349	a349	a349	a349	a349	a349
423	a34a	a34a	a34a	*	247b	*	8ea1a4fb,a4fb,8ea1a4fbv,a4fbv	0397	ce97	0397	00000397	a34a	a34a	a34a	a34a	a34a	a34a	a34a
424	a34b	a34b	a34b	*	247c	*	8ea1a4fc,a4fc,8ea1a4fcv,a4fcv	0398	ce98	0398	00000398	a34b	a34b	a34b	a34b	a34b	a34b	a34b
425	a34c	a34c	a34c	*	247d	*	8ea1a4fd,a4fd,8ea1a4fdv,a4fdv	0399	ce99	0399	00000399	a34c	a34c	a34c	a34c	a34c	a34c	a34c
426	a34d	a34d	a34d	*	247e	*	8ea1a4fe,a4fe,8ea1a4fev,a4fev	039a	ce9a	039a	0000039a	a34d	a34d	a34d	a34d	a34d	a34d	a34d
427	a34e	a34e	a34e	*	2521	*	8ea1a5a1,a5a1,8ea1a5a1v,a5a1v	039b	ce9b	039b	0000039b	a34e	a34e	a34e	a34e	a34e	a34e	a34e
428	a34f	a34f	a34f	*	2522	*	8ea1a5a2,a5a2,8ea1a5a2v,a5a2v	039c	ce9c	039c	0000039c	a34f	a34f	a34f	a34f	a34f	a34f	a34f
429	a350	a350	a350	*	2523	*	8ea1a5a3,a5a3,8ea1a5a3v,a5a3v	039d	ce9d	039d	0000039d	a350	a350	a350	a350	a350	a350	a350
430	a351	a351	a351	*	2524	*	8ea1a5a4,a5a4,8ea1a5a4v,a5a4v	039e	ce9e	039e	0000039e	a351	a351	a351	a351	a351	a351	a351
431	a352	a352	a352	*	2525	*	8ea1a5a5,a5a5,8ea1a5a5v,a5a5v	039f	ce9f	039f	0000039f	a352	a352	a352	a352	a352	a352	a352
432	a353	a353	a353	*	2526	*	8ea1a5a6,a5a6,8ea1a5a6v,a5a6v	03a0	cea0	03a0	000003a0	a353	a353	a353	a353	a353	a353	a353
433	a354	a354	a354	*	2527	*	8ea1a5a7,a5a7,8ea1a5a7v,a5a7v	03a1	cea1	03a1	000003a1	a354	a354	a354	a354	a354	a354	a354
434	a355	a355	a355	*	2528	*	8ea1a5a8,a5a8,8ea1a5a8v,a5a8v	03a3	cea3	03a3	000003a3	a355	a355	a355	a355	a355	a355	a355
435	a356	a356	a356	*	2529	*	8ea1a5a9,a5a9,8ea1a5a9v,a5a9v	03a4	cea4	03a4	000003a4	a356	a356	a356	a356	a356	a356	a356
436	a357	a357	a357	*	252a	*	8ea1a5aa,a5aa,8ea1a5aav,a5aav	03a5	cea5	03a5	000003a5	a357	a357	a357	a357	a357	a357	a357
437	a358	a358	a358	*	252b	*	8ea1a5ab,a5ab,8ea1a5abv,a5abv	03a6	cea6	03a6	000003a6	a358	a358	a358	a358	a358	a358	a358
438	a359	a359	a359	*	252c	*	8ea1a5ac,a5ac,8ea1a5acv,a5acv	03a7	cea7	03a7	000003a7	a359	a359	a359	a359	a359	a359	a359
439	a35a	a35a	a35a	*	252d	*	8ea1a5ad,a5ad,8ea1a5adv,a5adv	03a8	cea8	03a8	000003a8	a35a	a35a	a35a	a35a	a35a	a35a	a35a
440	a35b	a35b	a35b	*	252e	*	8ea1a5ae,a5ae,8ea1a5aev,a5aev	03a9	cea9	03a9	000003a9	a35b	a35b	a35b	a35b	a35b	a35b	a35b
441	a35c	a35c	a35c	*	252f	*	8ea1a5af,a5af,8ea1a5afv,a5afv	03b1	ceb1	03b1	000003b1	a35c	a35c	a35c	a35c	a35c	a35c	a35c
442	a35d	a35d	a35d	*	2530	*	8ea1a5b0,a5b0,8ea1a5b0v,a5b0v	03b2	ceb2	03b2	000003b2	a35d	a35d	a35d	a35d	a35d	a35d	a35d
443	a35e	a35e	a35e	*	2531	*	8ea1a5b1,a5b1,8ea1a5b1v,a5b1v	03b3	ceb3	03b3	000003b3	a35e	a35e	a35e	a35e	a35e	a35e	a35e
444	a35f	a35f	a35f	*	2532	*	8ea1a5b2,a5b2,8ea1a5b2v,a5b2v	03b4	ceb4	03b4	000003b4	a35f	a35f	a35f	a35f	a35f	a35f	a35f
445	a360	a360	a360	*	2533	*	8ea1a5b3,a5b3,8ea1a5b3v,a5b3v	03b5	ceb5	03b5	000003b5	a360	a360	a360	a360	a360	a360	a360
446	a361	a361	a361	*	2534	*	8ea1a5b4,a5b4,8ea1a5b4v,a5b4v	03b6	ceb6	03b6	000003b6	a361	a361	a361	a361	a361	a361	a361
447	a362	a362	a362	*	2535	*	8ea1a5b5,a5b5,8ea1a5b5v,a5b5v	03b7	ceb7	03b7	000003b7	a362	a362	a362	a362	a362	a362	a362
448	a363	a363	a363	*	2536	*	8ea1a5b6,a5b6,8ea1a5b6v,a5b6v	03b8	ceb8	03b8	000003b8	a363	a363	a363	a363	a363	a363	a363
449	a364	a364	a364	*	2537	*	8ea1a5b7,a5b7,8ea1a5b7v,a5b7v	03b9	ceb9	03b9	000003b9	a364	a364	a364	a364	a364	a364	a364
450	a365	a365	a365	*	2538	*	8ea1a5b8,a5b8,8ea1a5b8v,a5b8v	03ba	ceba	03ba	000003ba	a365	a365	a365	a365	a365	a365	a365
451	a366	a366	a366	*	2539	*	8ea1a5b9,a5b9,8ea1a5b9v,a5b9v	03bb	cebb	03bb	000003bb	a366	a366	a366	a366	a366	a366	a366
452	a367	a367	a367	*	253a	*	8ea1a5ba,a5ba,8ea1a5bav,a5bav	03bc	cebc	03bc	000003bc	a367	a367	a367	a367	a367	a367	a367
453	a368	a368	a368	*	253b	*	8ea1a5bb,a5bb,8ea1a5bbv,a5bbv	03bd	cebd	03bd	000003bd	a368	a368	a368	a368	a368	a368	a368
454	a369	a369	a369	*	253c	*	8ea1a5bc,a5bc,8ea1a5bcv,a5bcv	03be	cebe	03be	000003be	a369	a369	a369	a369	a369	a369	a369
455	a36a	a36a	a36a	*	253d	*	8ea1a5bd,a5bd,8ea1a5bdv,a5bdv	03bf	cebf	03bf	000003bf	a36a	a36a	a36a	a36a	a36a	a36a	a36a
456	a36b	a36b	a36b	*	253e	*	8ea1a5be,a5be,8ea1a5bev,a5bev	03c0	cf80	03c0	000003c0	a36b	a36b	a36b	a36b	a36b	a36b	a36b
457	a36c	a36c	a36c	*	253f	*	8ea1a5bf,a5bf,8ea1a5bfv,a5bfv	03c1	cf81	03c1	000003c1	a36c	a36c	a36c	a36c	a36c	a36c	a36c
458	a36d	a36d	a36d	*	2540	*	8ea1a5c0,a5c0,8ea1a5c0v,a5c0v	03c3	cf83	03c3	000003c3	a36d	a36d	a36d	a36d	a36d	a36d	a36d
459	a36e	a36e	a36e	*	2541	*	8ea1a5c1,a5c1,8ea1a5c1v,a5c1v	03c4	cf84	03c4	000003c4	a36e	a36e	a36e	a36e	a36e	a36e	a36e
460	a36f	a36f	a36f	*	2542	*	8ea1a5c2,a5c2,8ea1a5c2v,a5c2v	03c5	cf85	03c5	000003c5	a36f	a36f	a36f	a36f	a36f	a36f	a36f
461	a370	a370	a370	*	2543	*	8ea1a5c3,a5c3,8ea1a5c3v,a5c3v	03c6	cf86	03c6	000003c6	a370	a370	a370	a370	a370	a370	a370
462	a371	a371	a371	*	2544	*	8ea1a5c4,a5c4,8ea1a5c4v,a5c4v	03c7	cf87	03c7	000003c7	a371	a371	a371	a371	a371	a371	a371
463	a372	a372	a372	*	2545	*	8ea1a5c5,a5c5,8ea1a5c5v,a5c5v	03c8	cf88	03c8	000003c8	a372	a372	a372	a372	a372	a372	a372
464	a373	a373	a373	*	2546	*	8ea1a5c6,a5c6,8ea1a5c6v,a5c6v	03c9	cf89	03c9	000003c9	a373	a373	a373	a373	a373	a373	a373
465	a374	a374	a374	*	2547	*	8ea1a5c7,a5c7,8ea1a5c7v,a5c7v	3105	e38485	3105	00003105	a374	a374	a374	a374	a374	a374	a374
466	a375	a375	a375	*	2548	*	8ea1a5c8,a5c8,8ea1a5c8v,a5c8v	3106	e38486	3106	00003106	a375	a375	a375	a375	a375	a375	a375
467	a376	a376	a376	*	2549	*	8ea1a5c9,a5c9,8ea1a5c9v,a5c9v	3107	e38487	3107	00003107	a376	a376	a376	a376	a376	a376	a376
468	a377	a377	a377	*	254a	*	8ea1a5ca,a5ca,8ea1a5cav,a5cav	3108	e38488	3108	00003108	a377	a377	a377	a377	a377	a377	a377
469	a378	a378	a378	*	254b	*	8ea1a5cb,a5cb,8ea1a5cbv,a5cbv	3109	e38489	3109	00003109	a378	a378	a378	a378	a378	a378	a378
470	a379	a379	a379	*	254c	*	8ea1a5cc,a5cc,8ea1a5ccv,a5ccv	310a	e3848a	310a	0000310a	a379	a379	a379	a379	a379	a379	a379
471	a37a	a37a	a37a	*	254d	*	8ea1a5cd,a5cd,8ea1a5cdv,a5cdv	310b	e3848b	310b	0000310b	a37a	a37a	a37a	a37a	a37a	a37a	a37a
472	a37b	a37b	a37b	*	254e	*	8ea1a5ce,a5ce,8ea1a5cev,a5cev	310c	e3848c	310c	0000310c	a37b	a37b	a37b	a37b	a37b	a37b	a37b
473	a37c	a37c	a37c	*	254f	*	8ea1a5cf,a5cf,8ea1a5cfv,a5cfv	310d	e3848d	310d	0000310d	a37c	a37c	a37c	a37c	a37c	a37c	a37c
474	a37d	a37d	a37d	*	2550	*	8ea1a5d0,a5d0,8ea1a5d0v,a5d0v	310e	e3848e	310e	0000310e	a37d	a37d	a37d	a37d	a37d	a37d	a37d
475	a37e	a37e	a37e	*	2551	*	8ea1a5d1,a5d1,8ea1a5d1v,a5d1v	310f	e3848f	310f	0000310f	a37e	a37e	a37e	a37e	a37e	a37e	a37e
476	a3a1	a3a1	a3a1	*	2552	*	8ea1a5d2,a5d2,8ea1a5d2v,a5d2v	3110	e38490	3110	00003110	a3a1	a3a1	a3a1	a3a1	a3a1	a3a1	a3a1
477	a3a2	a3a2	a3a2	*	2553	*	8ea1a5d3,a5d3,8ea1a5d3v,a5d3v	3111	e38491	3111	00003111	a3a2	a3a2	a3a2	a3a2	a3a2	a3a2	a3a2
478	a3a3	a3a3	a3a3	*	2554	*	8ea1a5d4,a5d4,8ea1a5d4v,a5d4v	3112	e38492	3112	00003112	a3a3	a3a3	a3a3	a3a3	a3a3	a3a3	a3a3
479	a3a4	a3a4	a3a4	*	2555	*	8ea1a5d5,a5d5,8ea1a5d5v,a5d5v	3113	e38493	3113	00003113	a3a4	a3a4	a3a4	a3a4	a3a4	a3a4	a3a4
480	a3a5	a3a5	a3a5	*	2556	*	8ea1a5d6,a5d6,8ea1a5d6v,a5d6v	3114	e38494	3114	00003114	a3a5	a3a5	a3a5	a3a5	a3a5	a3a5	a3a5
481	a3a6	a3a6	a3a6	*	2557	*	8ea1a5d7,a5d7,8ea1a5d7v,a5d7v	3115	e38495	3115	00003115	a3a6	a3a6	a3a6	a3a6	a3a6	a3a6	a3a6
482	a3a7	a3a7	a3a7	*	2558	*	8ea1a5d8,a5d8,8ea1a5d8v,a5d8v	3116	e38496	3116	00003116	a3a7	a3a7	a3a7	a3a7	a3a7	a3a7	a3a7
483	a3a8	a3a8	a3a8	*	2559	*	8ea1a5d9,a5d9,8ea1a5d9v,a5d9v	3117	e38497	3117	00003117	a3a8	a3a8	a3a8	a3a8	a3a8	a3a8	a3a8
484	a3a9	a3a9	a3a9	*	255a	*	8ea1a5da,a5da,8ea1a5dav,a5dav	3118	e38498	3118	00003118	a3a9	a3a9	a3a9	a3a9	a3a9	a3a9	a3a9
485	a3aa	a3aa	a3aa	*	255b	*	8ea1a5db,a5db,8ea1a5dbv,a5dbv	3119	e38499	3119	00003119	a3aa	a3aa	a3aa	a3aa	a3aa	a3aa	a3aa
486	a3ab	a3ab	a3ab	*	255c	*	8ea1a5dc,a5dc,8ea1a5dcv,a5dcv	311a	e3849a	311a	0000311a	a3ab	a3ab	a3ab	a3ab	a3ab	a3ab	a3ab
487	a3ac	a3ac	a3ac	*	255d	*	8ea1a5dd,a5dd,8ea1a5ddv,a5ddv	311b	e3849b	311b	0000311b	a3ac	a3ac	a3ac	a3ac	a3ac	a3ac	a3ac
488	a3ad	a3ad	a3ad	*	255e	*	8ea1a5de,a5de,8ea1a5dev,a5dev	311c	e3849c	311c	0000311c	a3ad	a3ad	a3ad	a3ad	a3ad	a3ad	a3ad
489	a3ae	a3ae	a3ae	*	255f	*	8ea1a5df,a5df,8ea1a5dfv,a5dfv	311d	e3849d	311d	0000311d	a3ae	a3ae	a3ae	a3ae	a3ae	a3ae	a3ae
490	a3af	a3af	a3af	*	2560	*	8ea1a5e0,a5e0,8ea1a5e0v,a5e0v	311e	e3849e	311e	0000311e	a3af	a3af	a3af	a3af	a3af	a3af	a3af
491	a3b0	a3b0	a3b0	*	2561	*	8ea1a5e1,a5e1,8ea1a5e1v,a5e1v	311f	e3849f	311f	0000311f	a3b0	a3b0	a3b0	a3b0	a3b0	a3b0	a3b0
492	a3b1	a3b1	a3b1	*	2562	*	8ea1a5e2,a5e2,8ea1a5e2v,a5e2v	3120	e384a0	3120	00003120	a3b1	a3b1	a3b1	a3b1	a3b1	a3b1	a3b1
493	a3b2	a3b2	a3b2	*	2563	*	8ea1a5e3,a5e3,8ea1a5e3v,a5e3v	3121	e384a1	3121	00003121	a3b2	a3b2	a3b2	a3b2	a3b2	a3b2	a3b2
494	a3b3	a3b3	a3b3	*	2564	*	8ea1a5e4,a5e4,8ea1a5e4v,a5e4v	3122	e384a2	3122	00003122	a3b3	a3b3	a3b3	a3b3	a3b3	a3b3	a3b3
495	a3b4	a3b4	a3b4	*	2565	*	8ea1a5e5,a5e5,8ea1a5e5v,a5e5v	3123	e384a3	3123	00003123	a3b4	a3b4	a3b4	a3b4	a3b4	a3b4	a3b4
496	a3b5	a3b5	a3b5	*	2566	*	8ea1a5e6,a5e6,8ea1a5e6v,a5e6v	3124	e384a4	3124	00003124	a3b5	a3b5	a3b5	a3b5	a3b5	a3b5	a3b5
497	a3b6	a3b6	a3b6	*	2567	*	8ea1a5e7,a5e7,8ea1a5e7v,a5e7v	3125	e384a5	3125	00003125	a3b6	a3b6	a3b6	a3b6	a3b6	a3b6	a3b6
498	a3b7	a3b7	a3b7	*	2568	*	8ea1a5e8,a5e8,8ea1a5e8v,a5e8v	3126	e384a6	3126	00003126	a3b7	a3b7	a3b7	a3b7	a3b7	a3b7	a3b7
499	a3b8	a3b8	a3b8	*	2569	*	8ea1a5e9,a5e9,8ea1a5e9v,a5e9v	3127	e384a7	3127	00003127	a3b8	a3b8	a3b8	a3b8	a3b8	a3b8	a3b8
500	a3b9	a3b9	a3b9	*	256a	*	8ea1a5ea,a5ea,8ea1a5eav,a5eav	3128	e384a8	3128	00003128	a3b9	a3b9	a3b9	a3b9	a3b9	a3b9	a3b9
501	a3ba	a3ba	a3ba	*	256b	*	8ea1a5eb,a5eb,8ea1a5ebv,a5ebv	3129	e384a9	3129	00003129	a3ba	a3ba	a3ba	a3ba	a3ba	a3ba	a3ba
502	a3bb	a3bb	a3bb	*	256c	*	8ea1a5ec,a5ec,8ea1a5ecv,a5ecv	02d9	cb99	02d9	000002d9	a3bb	a3bb	a3bb	a3bb	a3bb	a3bb	a3bb
503	a3bd	a3bd	a3bd	*	256e	*	8ea1a5ee,a5ee,8ea1a5eev,a5eev	02ca	cb8a	02ca	000002ca	a3bd	a3bd	a3bd	a3bd	a3bd	a3bd	a3bd
504	a3be	a3be	a3be	*	256f	*	8ea1a5ef,a5ef,8ea1a5efv,a5efv	02c7	cb87,cc8c	02c7,030c	000002c7,0000030c	a3be	a3be	a3be	a3be	a3be	a3be	a3be
505	a3bf	a3bf	a3bf	*	2570	*	8ea1a5f0,a5f0,8ea1a5f0v,a5f0v	02cb	cb8b	02cb	000002cb	a3bf	a3bf	a3bf	a3bf	a3bf	a3bf	a3bf
506	*	*	c6a1	*	2621	*	8ea1a6a1,a6a1,8ea1a6a1v,a6a1v	2460	e291a0,ef9ab1	2460,f6b1	00002460,0000f6b1	c6a1	*	*	*	*	*	c6a1
507	*	*	c6a2	*	2622	*	8ea1a6a2,a6a2,8ea1a6a2v,a6a2v	2461	e291a1,ef9ab2	2461,f6b2	00002461,0000f6b2	c6a2	*	*	*	*	*	c6a2
508	*	*	c6a3	*	2623	*	8ea1a6a3,a6a3,8ea1a6a3v,a6a3v	2462	e291a2,ef9ab3	2462,f6b3	00002462,0000f6b3	c6a3	*	*	*	*	*	c6a3
509	*	*	c6a4	*	2624	*	8ea1a6a4,a6a4,8ea1a6a4v,a6a4v	2463	e291a3,ef9ab4	2463,f6b4	00002463,0000f6b4	c6a4	*	*	*	*	*	c6a4
510	*	*	c6a5	*	2625	*	8ea1a6a5,a6a5,8ea1a6a5v,a6a5v	2464	e291a4,ef9ab5	2464,f6b5	00002464,0000f6b5	c6a5	*	*	*	*	*	c6a5
511	*	*	c6a6	*	2626	*	8ea1a6a6,a6a6,8ea1a6a6v,a6a6v	2465	e291a5,ef9ab6	2465,f6b6	00002465,0000f6b6	c6a6	*	*	*	*	*	c6a6
512	*	*	c6a7	*	2627	*	8ea1a6a7,a6a7,8ea1a6a7v,a6a7v	2466	e291a6,ef9ab7	2466,f6b7	00002466,0000f6b7	c6a7	*	*	*	*	*	c6a7
513	*	*	c6a8	*	2628	*	8ea1a6a8,a6a8,8ea1a6a8v,a6a8v	2467	e291a7,ef9ab8	2467,f6b8	00002467,0000f6b8	c6a8	*	*	*	*	*	c6a8
514	*	*	c6a9	*	2629	*	8ea1a6a9,a6a9,8ea1a6a9v,a6a9v	2468	e291a8,ef9ab9	2468,f6b9	00002468,0000f6b9	c6a9	*	*	*	*	*	c6a9
515	*	*	c6aa	*	262a	*	8ea1a6aa,a6aa,8ea1a6aav,a6aav	2469	e291a9,ef9aba	2469,f6ba	00002469,0000f6ba	c6aa	*	*	*	*	*	c6aa
516	*	*	c6ab	*	262b	*	8ea1a6ab,a6ab,8ea1a6abv,a6abv	2474	e291b4,ef9abb	2474,f6bb	00002474,0000f6bb	c6ab	*	*	*	*	*	c6ab
517	*	*	c6ac	*	262c	*	8ea1a6ac,a6ac,8ea1a6acv,a6acv	2475	e291b5,ef9abc	2475,f6bc	00002475,0000f6bc	c6ac	*	*	*	*	*	c6ac
518	*	*	c6ad	*	262d	*	8ea1a6ad,a6ad,8ea1a6adv,a6adv	2476	e291b6,ef9abd	2476,f6bd	00002476,0000f6bd	c6ad	*	*	*	*	*	c6ad
519	*	*	c6ae	*	262e	*	8ea1a6ae,a6ae,8ea1a6aev,a6aev	2477	e291b7,ef9abe	2477,f6be	00002477,0000f6be	c6ae	*	*	*	*	*	c6ae
520	*	*	c6af	*	262f	*	8ea1a6af,a6af,8ea1a6afv,a6afv	2478	e291b8,ef9abf	2478,f6bf	00002478,0000f6bf	c6af	*	*	*	*	*	c6af
521	*	*	c6b0	*	2630	*	8ea1a6b0,a6b0,8ea1a6b0v,a6b0v	2479	e291b9,ef9b80	2479,f6c0	00002479,0000f6c0	c6b0	*	*	*	*	*	c6b0
522	*	*	c6b1	*	2631	*	8ea1a6b1,a6b1,8ea1a6b1v,a6b1v	247a	e291ba,ef9b81	247a,f6c1	0000247a,0000f6c1	c6b1	*	*	*	*	*	c6b1
523	*	*	c6b2	*	2632	*	8ea1a6b2,a6b2,8ea1a6b2v,a6b2v	247b	e291bb,ef9b82	247b,f6c2	0000247b,0000f6c2	c6b2	*	*	*	*	*	c6b2
524	*	*	c6b3	*	2633	*	8ea1a6b3,a6b3,8ea1a6b3v,a6b3v	247c	e291bc,ef9b83	247c,f6c3	0000247c,0000f6c3	c6b3	*	*	*	*	*	c6b3
525	*	*	c6b4	*	2634	*	8ea1a6b4,a6b4,8ea1a6b4v,a6b4v	247d	e291bd,ef9b84	247d,f6c4	0000247d,0000f6c4	c6b4	*	*	*	*	*	c6b4
526	*	*	c6b5	*	2635	*	8ea1a6b5,a6b5,8ea1a6b5v,a6b5v	2170	e285b0,ef9b85	2170,f6c5	00002170,0000f6c5	c6b5	*	*	*	*	*	c6b5
527	*	*	c6b6	*	2636	*	8ea1a6b6,a6b6,8ea1a6b6v,a6b6v	2171	e285b1,ef9b86	2171,f6c6	00002171,0000f6c6	c6b6	*	*	*	*	*	c6b6
528	*	*	c6b7	*	2637	*	8ea1a6b7,a6b7,8ea1a6b7v,a6b7v	2172	e285b2,ef9b87	2172,f6c7	00002172,0000f6c7	c6b7	*	*	*	*	*	c6b7
529	*	*	c6b8	*	2638	*	8ea1a6b8,a6b8,8ea1a6b8v,a6b8v	2173	e285b3,ef9b88	2173,f6c8	00002173,0000f6c8	c6b8	*	*	*	*	*	c6b8
530	*	*	c6b9	*	2639	*	8ea1a6b9,a6b9,8ea1a6b9v,a6b9v	2174	e285b4,ef9b89	2174,f6c9	00002174,0000f6c9	c6b9	*	*	*	*	*	c6b9
531	*	*	c6ba	*	263a	*	8ea1a6ba,a6ba,8ea1a6bav,a6bav	2175	e285b5,ef9b8a	2175,f6ca	00002175,0000f6ca	c6ba	*	*	*	*	*	c6ba
532	*	*	c6bb	*	263b	*	8ea1a6bb,a6bb,8ea1a6bbv,a6bbv	2176	e285b6,ef9b8b	2176,f6cb	00002176,0000f6cb	c6bb	*	*	*	*	*	c6bb
533	*	*	c6bc	*	263c	*	8ea1a6bc,a6bc,8ea1a6bcv,a6bcv	2177	e285b7,ef9b8c	2177,f6cc	00002177,0000f6cc	c6bc	*	*	*	*	*	c6bc
534	*	*	c6bd	*	263d	*	8ea1a6bd,a6bd,8ea1a6bdv,a6bdv	2178	e285b8,ef9b8d	2178,f6cd	00002178,0000f6cd	c6bd	*	*	*	*	*	c6bd
535	*	*	c6be	*	263e	*	8ea1a6be,a6be,8ea1a6bev,a6bev	2179	e285b9,ef9b8e	2179,f6ce	00002179,0000f6ce	c6be	*	*	*	*	*	c6be
536	*	*	*	*	2722	*	8ea1a7a2,a7a2,8ea1a7a2v,a7a2v	4e28	e4b8a8,e2bc81	4e28,2f01	00004e28,00002f01	*	*	*	*	*	*	*
537	*	*	c6bf	*	2723	*	8ea1a7a3,a7a3,8ea1a7a3v,a7a3v	4e36	e4b8b6,e2bc82,ef9b8f	4e36,2f02,f6cf	00004e36,00002f02,0000f6cf	c6bf	*	*	*	*	*	c6bf
538	*	*	c6c0	*	2724	*	8ea1a7a4,a7a4,8ea1a7a4v,a7a4v	4e3f	e4b8bf,e2bc83,ef9b90	4e3f,2f03,f6d0	00004e3f,00002f03,0000f6d0	c6c0	*	*	*	*	*	c6c0
539	*	*	c6c1	*	2726	*	8ea1a7a6,a7a6,8ea1a7a6v,a7a6v	4e85	e2bc85,e4ba85,ef9b91	2f05,4e85,f6d1	00002f05,00004e85,0000f6d1	c6c1	*	*	*	*	*	c6c1
540	*	*	c6c2	*	2728	*	8ea1a7a8,a7a8,8ea1a7a8v,a7a8v	4ea0	e2bc87,e4baa0,ef9b92	2f07,4ea0,f6d2	00002f07,00004ea0,0000f6d2	c6c2	*	*	*	*	*	c6c2
541	*	*	c6c3	*	272d	*	8ea1a7ad,a7ad,8ea1a7adv,a7adv	5182	e58682,e2bc8c,ef9b93	5182,2f0c,f6d3	00005182,00002f0c,0000f6d3	c6c3	*	*	*	*	*	c6c3
542	*	*	c6c4	*	272e	*	8ea1a7ae,a7ae,8ea1a7aev,a7aev	5196	e58696,e2bc8d,ef9b94	5196,2f0d,f6d4	00005196,00002f0d,0000f6d4	c6c4	*	*	*	*	*	c6c4
543	*	*	c6c5	*	272f	*	8ea1a7af,a7af,8ea1a7afv,a7afv	51ab	e586ab,e2bc8e,ef9b95	51ab,2f0e,f6d5	000051ab,00002f0e,0000f6d5	c6c5	*	*	*	*	*	c6c5
544	*	*	c6c6	*	2734	*	8ea1a7b4,a7b4,8ea1a7b4v,a7b4v	52f9	e2bc93,e58bb9,ef9b96	2f13,52f9,f6d6	00002f13,000052f9,0000f6d6	c6c6	*	*	*	*	*	c6c6
545	*	*	c6c7	*	2737	*	8ea1a7b7,a7b7,8ea1a7b7v,a7b7v	5338	e2bc96,e58cb8,ef9b97	2f16,5338,f6d7	00002f16,00005338,0000f6d7	c6c7	*	*	*	*	*	c6c7
546	*	*	c6c8	*	273a	*	8ea1a7ba,a7ba,8ea1a7bav,a7bav	5369	e2bc99,e58da9,ef9b98	2f19,5369,f6d8	00002f19,00005369,0000f6d8	c6c8	*	*	*	*	*	c6c8
547	*	*	c6c9	*	273c	*	8ea1a7bc,a7bc,8ea1a7bcv,a7bcv	53b6	e2bc9b,e58eb6,ef9b99	2f1b,53b6,f6d9	00002f1b,000053b6,0000f6d9	c6c9	*	*	*	*	*	c6c9
548	*	*	c6ca	*	2742	*	8ea1a7c2,a7c2,8ea1a7c2v,a7c2v	5902,590a	e2bca1,e2bca2,e5a482,e5a48a,ef9b9a	2f21,2f22,5902,590a,f6da	00002f21,00002f22,00005902,0000590a,0000f6da	c6ca	*	*	*	*	*	c6ca
549	*	*	c6cb	*	2747	*	8ea1a7c7,a7c7,8ea1a7c7v,a7c7v	5b80	e2bca7,e5ae80,ef9b9b	2f27,5b80,f6db	00002f27,00005b80,0000f6db	c6cb	*	*	*	*	*	c6cb
550	*	*	c6cc	*	274e	*	8ea1a7ce,a7ce,8ea1a7cev,a7cev	5ddb	e2bcae,e5b79b,ef9b9c	2f2e,5ddb,f6dc	00002f2e,00005ddb,0000f6dc	c6cc	*	91b0	*	*	*	c6cc
551	*	*	c6cd	*	2753	*	8ea1a7d3,a7d3,8ea1a7d3v,a7d3v	2f33,5e7a	e5b9ba,e2bcb3,ef9b9d	5e7a,2f33,f6dd	00005e7a,00002f33,0000f6dd	c6cd	*	*	*	*	*	c6cd
552	*	*	c6ce	*	2754	*	8ea1a7d4,a7d4,8ea1a7d4v,a7d4v	5e7f	e5b9bf,e2bcb4,ef9b9e	5e7f,2f34,f6de	00005e7f,00002f34,0000f6de	c6ce	*	9159	*	*	*	c6ce
553	*	*	c6cf	*	2755	*	8ea1a7d5,a7d5,8ea1a7d5v,a7d5v	5ef4	e5bbb4,e2bcb5	5ef4,2f35	00005ef4,00002f35	c6cf	*	*	*	*	*	*
554	*	*	c6d0	*	2759	*	8ea1a7d9,a7d9,8ea1a7d9v,a7d9v	5f50	e5bd90,e2bcb9,ef9ba0	5f50,2f39,f6e0	00005f50,00002f39,0000f6e0	c6d0	*	*	*	*	*	c6d0
555	*	*	c6d1	*	275a	*	8ea1a7da,a7da,8ea1a7dav,a7dav	5f61	e5bda1,e2bcba,ef9ba1	5f61,2f3a,f6e1	00005f61,00002f3a,0000f6e1	c6d1	*	*	*	*	*	c6d1
556	*	*	c6d2	*	2761	*	8ea1a7e1,a7e1,8ea1a7e1v,a7e1v	6534	e2bd81,e694b4,ef9ba2	2f41,6534,f6e2	00002f41,00006534,0000f6e2	c6d2	*	*	*	*	*	c6d2
557	*	*	c6d3	*	2766	*	8ea1a7e6,a7e6,8ea1a7e6v,a7e6v	65e0	e2bd86,e697a0	2f46,65e0	00002f46,000065e0	c6d3	*	*	*	*	*	*
558	*	*	c6d4	*	2829	*	8ea1a8a9,a8a9,8ea1a8a9v,a8a9v	7592	e79692,ef9ba4,e2bda7	7592,f6e4,2f67	00007592,0000f6e4,00002f67	c6d4	*	*	*	*	*	c6d4
559	*	*	c6d5	*	282a	*	8ea1a8aa,a8aa,8ea1a8aav,a8aav	7676	e799b6,e2bda8	7676,2f68	00007676,00002f68	c6d5	*	*	*	*	*	*
560	*	*	c6d6	*	2863	*	8ea1a8e3,a8e3,8ea1a8e3v,a8e3v	8fb5	e2bea1,e8beb5,ef9ba6	2fa1,8fb5,f6e6	00002fa1,00008fb5,0000f6e6	c6d6	*	90c4	*	*	*	c6d6
561	*	*	c6d7	*	286c	*	8ea1a8ec,a8ec,8ea1a8ecv,a8ecv	96b6	e2beaa,e99ab6	2faa,96b6	00002faa,000096b6	c6d7	*	*	*	*	*	*
562	*	a3c0	*	*	4221	*	8ea1c2a1,c2a1,8ea1c2a1v,c2a1v	2400	e29080	2400	00002400	*	*	*	*	*	*	*
563	*	a3c1	*	*	4222	*	8ea1c2a2,c2a2,8ea1c2a2v,c2a2v	2401	e29081	2401	00002401	*	*	*	*	*	*	*
564	*	a3c2	*	*	4223	*	8ea1c2a3,c2a3,8ea1c2a3v,c2a3v	2402	e29082	2402	00002402	*	*	*	*	*	*	*
565	*	a3c3	*	*	4224	*	8ea1c2a4,c2a4,8ea1c2a4v,c2a4v	2403	e29083	2403	00002403	*	*	*	*	*	*	*
566	*	a3c4	*	*	4225	*	8ea1c2a5,c2a5,8ea1c2a5v,c2a5v	2404	e29084	2404	00002404	*	*	*	*	*	*	*
567	*	a3c5	*	*	4226	*	8ea1c2a6,c2a6,8ea1c2a6v,c2a6v	2405	e29085	2405	00002405	*	*	*	*	*	*	*
568	*	a3c6	*	*	4227	*	8ea1c2a7,c2a7,8ea1c2a7v,c2a7v	2406	e29086	2406	00002406	*	*	*	*	*	*	*
569	*	a3c7	*	*	4228	*	8ea1c2a8,c2a8,8ea1c2a8v,c2a8v	2407	e29087	2407	00002407	*	*	*	*	*	*	*
570	*	a3c8	*	*	4229	*	8ea1c2a9,c2a9,8ea1c2a9v,c2a9v	2408	e29088	2408	00002408	*	*	*	*	*	*	*
571	*	a3c9	*	*	422a	*	8ea1c2aa,c2aa,8ea1c2aav,c2aav	2409	e29089	2409	00002409	*	*	*	*	*	*	*
572	*	a3ca	*	*	422b	*	8ea1c2ab,c2ab,8ea1c2abv,c2abv	240a	e2908a	240a	0000240a	*	*	*	*	*	*	*
573	*	a3cb	*	*	422c	*	8ea1c2ac,c2ac,8ea1c2acv,c2acv	240b	e2908b	240b	0000240b	*	*	*	*	*	*	*
574	*	a3cc	*	*	422d	*	8ea1c2ad,c2ad,8ea1c2adv,c2adv	240c	e2908c	240c	0000240c	*	*	*	*	*	*	*
575	*	a3cd	*	*	422e	*	8ea1c2ae,c2ae,8ea1c2aev,c2aev	240d	e2908d	240d	0000240d	*	*	*	*	*	*	*
576	*	a3ce	*	*	422f	*	8ea1c2af,c2af,8ea1c2afv,c2afv	240e	e2908e	240e	0000240e	*	*	*	*	*	*	*
577	*	a3cf	*	*	4230	*	8ea1c2b0,c2b0,8ea1c2b0v,c2b0v	240f	e2908f	240f	0000240f	*	*	*	*	*	*	*
578	*	a3d0	*	*	4231	*	8ea1c2b1,c2b1,8ea1c2b1v,c2b1v	2410	e29090	2410	00002410	*	*	*	*	*	*	*
579	*	a3d1	*	*	4232	*	8ea1c2b2,c2b2,8ea1c2b2v,c2b2v	2411	e29091	2411	00002411	*	*	*	*	*	*	*
580	*	a3d2	*	*	4233	*	8ea1c2b3,c2b3,8ea1c2b3v,c2b3v	2412	e29092	2412	00002412	*	*	*	*	*	*	*
581	*	a3d3	*	*	4234	*	8ea1c2b4,c2b4,8ea1c2b4v,c2b4v	2413	e29093	2413	00002413	*	*	*	*	*	*	*
582	*	a3d4	*	*	4235	*	8ea1c2b5,c2b5,8ea1c2b5v,c2b5v	2414	e29094	2414	00002414	*	*	*	*	*	*	*
583	*	a3d5	*	*	4236	*	8ea1c2b6,c2b6,8ea1c2b6v,c2b6v	2415	e29095	2415	00002415	*	*	*	*	*	*	*
584	*	a3d6	*	*	4237	*	8ea1c2b7,c2b7,8ea1c2b7v,c2b7v	2416	e29096	2416	00002416	*	*	*	*	*	*	*
585	*	a3d7	*	*	4238	*	8ea1c2b8,c2b8,8ea1c2b8v,c2b8v	2417	e29097	2417	00002417	*	*	*	*	*	*	*
586	*	a3d8	*	*	4239	*	8ea1c2b9,c2b9,8ea1c2b9v,c2b9v	2418	e29098	2418	00002418	*	*	*	*	*	*	*
587	*	a3d9	*	*	423a	*	8ea1c2ba,c2ba,8ea1c2bav,c2bav	2419	e29099	2419	00002419	*	*	*	*	*	*	*
588	*	a3da	*	*	423b	*	8ea1c2bb,c2bb,8ea1c2bbv,c2bbv	241a	e2909a	241a	0000241a	*	*	*	*	*	*	*
589	*	a3db	*	*	423c	*	8ea1c2bc,c2bc,8ea1c2bcv,c2bcv	241b	e2909b	241b	0000241b	*	*	*	*	*	*	*
590	*	a3dc	*	*	423d	*	8ea1c2bd,c2bd,8ea1c2bdv,c2bdv	241c	e2909c	241c	0000241c	*	*	*	*	*	*	*
591	*	a3dd	*	*	423e	*	8ea1c2be,c2be,8ea1c2bev,c2bev	241d	e2909d	241d	0000241d	*	*	*	*	*	*	*
592	*	a3de	*	*	423f	*	8ea1c2bf,c2bf,8ea1c2bfv,c2bfv	241e	e2909e	241e	0000241e	*	*	*	*	*	*	*
593	*	a3df	*	*	4240	*	8ea1c2c0,c2c0,8ea1c2c0v,c2c0v	241f	e2909f	241f	0000241f	*	*	*	*	*	*	*
594	*	a3e0	*	*	4241	*	8ea1c2c1,c2c1,8ea1c2c1v,c2c1v	2421	e290a1	2421	00002421	*	*	*	*	*	*	*
595	a440	a440	a440	*	2721,4421	*	8ea1a7a1,8ea1c4a1,a7a1,c4a1,8ea1a7a1v,8ea1c4a1v,a7a1v,c4a1v	4e00	e2bc80,e4b880	2f00,4e00	00002f00,00004e00	a440	a440	a440	a440	a440	a440	a440
596	a441	a441	a441	*	2725,4422	*	8ea1a7a5,8ea1c4a2,a7a5,c4a2,8ea1a7a5v,8ea1c4a2v,a7a5v,c4a2v	4e59	e2bc84,e4b999	2f04,4e59	00002f04,00004e59	a441	a441	a441	a441	a441	a441	a441
597	a442	a442	a442	*	4423	*	8ea1c4a3,c4a3,8ea1c4a3v,c4a3v	4e01	e4b881	4e01	00004e01	a442	a442	a442	a442	a442	a442	a442
598	a443	a443	a443	*	4424	*	8ea1c4a4,c4a4,8ea1c4a4v,c4a4v	4e03	e4b883	4e03	00004e03	a443	a443	a443	a443	a443	a443	a443
599	a444	a444	a444	*	4425	*	8ea1c4a5,c4a5,8ea1c4a5v,c4a5v	4e43	e4b983	4e43	00004e43	a444	a444	a444	a444	a444	a444	a444
600	a445	a445	a445	*	4426	*	8ea1c4a6,c4a6,8ea1c4a6v,c4a6v	4e5d	e4b99d	4e5d	00004e5d	a445	a445	a445	a445	a445	a445	a445
601	a446	a446	a446	*	4427	*	8ea1c4a7,c4a7,8ea1c4a7v,c4a7v	4e86	e4ba86	4e86	00004e86	a446	a446	a446	a446	a446	a446	a446
602	a447	a447	a447	*	2727,4428	*	8ea1a7a7,8ea1c4a8,a7a7,c4a8,8ea1a7a7v,8ea1c4a8v,a7a7v,c4a8v	4e8c	e2bc86,e4ba8c	2f06,4e8c	00002f06,00004e8c	a447	a447	a447	a447	a447	a447	a447
603	a448	a448	a448	*	2729,4429	*	8ea1a7a9,8ea1c4a9,a7a9,c4a9,8ea1a7a9v,8ea1c4a9v,a7a9v,c4a9v	4eba	e4baba,e2bc88	4eba,2f08	00004eba,00002f08	a448	a448	a448	a448	a448	a448	a448
604	a449	a449	a449	*	272a,442a	*	8ea1a7aa,8ea1c4aa,a7aa,c4aa,8ea1a7aav,8ea1c4aav,a7aav,c4aav	513f	e584bf,e2bc89	513f,2f09	0000513f,00002f09	a449	a449	a449	a449	a449	a449	a449
605	a44a	a44a	a44a	*	272b,442b	*	8ea1a7ab,8ea1c4ab,a7ab,c4ab,8ea1a7abv,8ea1c4abv,a7abv,c4abv	5165	e585a5,e2bc8a	5165,2f0a	00005165,00002f0a	a44a	a44a	a44a	a44a	a44a	a44a	a44a
606	a44b	a44b	a44b	*	272c,442c	*	8ea1a7ac,8ea1c4ac,a7ac,c4ac,8ea1a7acv,8ea1c4acv,a7acv,c4acv	516b	e585ab,e2bc8b	516b,2f0b	0000516b,00002f0b	a44b	a44b	a44b	a44b	a44b	a44b	a44b
607	a44c	a44c	a44c	*	2730,442d	*	8ea1a7b0,8ea1c4ad,a7b0,c4ad,8ea1a7b0v,8ea1c4adv,a7b0v,c4adv	51e0	e2bc8f,e587a0	2f0f,51e0	00002f0f,000051e0	a44c	a44c	a44c	a44c	a44c	a44c	a44c
608	a44d	a44d	a44d	*	2732,442e	*	8ea1a7b2,8ea1c4ae,a7b2,c4ae,8ea1a7b2v,8ea1c4aev,a7b2v,c4aev	5200	e2bc91,e58880	2f11,5200	00002f11,00005200	a44d	a44d	a44d	a44d	a44d	a44d	a44d
609	a44e	a44e	a44e	*	442f	*	8ea1c4af,c4af,8ea1c4afv,c4afv	5201	e58881	5201	00005201	a44e	a44e	a44e	a44e	a44e	a44e	a44e
610	a44f	a44f	a44f	*	2733,4430	*	8ea1a7b3,8ea1c4b0,a7b3,c4b0,8ea1a7b3v,8ea1c4b0v,a7b3v,c4b0v	529b	e2bc92,e58a9b	2f12,529b	00002f12,0000529b	a44f	a44f	a44f	a44f	a44f	a44f	a44f
611	a450	a450	a450	*	2735,4431	*	8ea1a7b5,8ea1c4b1,a7b5,c4b1,8ea1a7b5v,8ea1c4b1v,a7b5v,c4b1v	5315	e2bc94,e58c95	2f14,5315	00002f14,00005315	a450	a450	a450	a450	a450	a450	a450
612	a451	a451	a451	*	2738,4432	*	8ea1a7b8,8ea1c4b2,a7b8,c4b2,8ea1a7b8v,8ea1c4b2v,a7b8v,c4b2v	5341	e58d81,e2bc97	5341,2f17	00005341,00002f17	a451	a451	a451	a451	a451	a451	a451
613	a452	a452	a452	*	2739,4433	*	8ea1a7b9,8ea1c4b3,a7b9,c4b3,8ea1a7b9v,8ea1c4b3v,a7b9v,c4b3v	535c	e58d9c,e2bc98	535c,2f18	0000535c,00002f18	a452	a452	a452	a452	a452	a452	a452
614	a453	a453	a453	*	273d,4434	*	8ea1a7bd,8ea1c4b4,a7bd,c4b4,8ea1a7bdv,8ea1c4b4v,a7bdv,c4b4v	53c8	e2bc9c,e58f88	2f1c,53c8	00002f1c,000053c8	a453	a453	a453	a453	a453	a453	a453
615	a454	a454	a454	*	4435	*	8ea1c4b5,c4b5,8ea1c4b5v,c4b5v	4e09	e4b889	4e09	00004e09	a454	a454	a454	a454	a454	a454	a454
616	a455	a455	a455	*	4436	*	8ea1c4b6,c4b6,8ea1c4b6v,c4b6v	4e0b	e4b88b	4e0b	00004e0b	a455	a455	a455	a455	a455	a455	a455
617	a456	a456	a456	*	4437	*	8ea1c4b7,c4b7,8ea1c4b7v,c4b7v	4e08	e4b888	4e08	00004e08	a456	a456	a456	a456	a456	a456	a456
618	a457	a457	a457	*	4438	*	8ea1c4b8,c4b8,8ea1c4b8v,c4b8v	4e0a	e4b88a	4e0a	00004e0a	a457	a457	a457	a457	a457	a457	a457
619	a458	a458	a458	*	4439	*	8ea1c4b9,c4b9,8ea1c4b9v,c4b9v	4e2b	e4b8ab	4e2b	00004e2b	a458	a458	a458	a458	a458	a458	a458
620	a459	a459	a459	*	443a	*	8ea1c4ba,c4ba,8ea1c4bav,c4bav	4e38	e4b8b8	4e38	00004e38	a459	a459	a459	a459	a459	a459	a459
621	a45a	a45a	a45a	*	443b	*	8ea1c4bb,c4bb,8ea1c4bbv,c4bbv	51e1	e587a1	51e1	000051e1	a45a	a45a	a45a	a45a	a45a	a45a	a45a
622	a45b	a45b	a45b	*	443c	*	8ea1c4bc,c4bc,8ea1c4bcv,c4bcv	4e45	e4b985	4e45	00004e45	a45b	a45b	a45b	a45b	a45b	a45b	a45b
623	a45c	a45c	a45c	*	443d	*	8ea1c4bd,c4bd,8ea1c4bdv,c4bdv	4e48	e4b988	4e48	00004e48	a45c	a45c	a45c	a45c	a45c	a45c	a45c
624	a45d	a45d	a45d	*	443e	*	8ea1c4be,c4be,8ea1c4bev,c4bev	4e5f	e4b99f	4e5f	00004e5f	a45d	a45d	a45d	a45d	a45d	a45d	a45d
625	a45e	a45e	a45e	*	443f	*	8ea1c4bf,c4bf,8ea1c4bfv,c4bfv	4e5e	e4b99e	4e5e	00004e5e	a45e	a45e	a45e	a45e	a45e	a45e	a45e
626	a45f	a45f	a45f	*	4440	*	8ea1c4c0,c4c0,8ea1c4c0v,c4c0v	4e8e	e4ba8e	4e8e	00004e8e	a45f	a45f	a45f	a45f	a45f	a45f	a45f
627	a460	a460	a460	*	4441	*	8ea1c4c1,c4c1,8ea1c4c1v,c4c1v	4ea1	e4baa1	4ea1	00004ea1	a460	a460	a460	a460	a460	a460	a460
628	a461,c94a	a461,c94a	a461,c94a	*	4442	*	8ea1c4c2,c4c2,8ea1c4c2v,c4c2v	5140,fa0c	e58580,efa88c	5140,fa0c	00005140,0000fa0c	c94a,a461	a461,c94a	a461,c94a	a461,c94a	a461,c94a	a461,c94a	c94a,a461
629	a462	a462	a462	*	4443	*	8ea1c4c3,c4c3,8ea1c4c3v,c4c3v	5203	e58883	5203	00005203	a462	a462	a462	a462	a462	a462	a462
630	a463	a463	a463	*	4444	*	8ea1c4c4,c4c4,8ea1c4c4v,c4c4v	52fa	e58bba	52fa	000052fa	a463	a463	a463	a463	a463	a463	a463
631	a464	a464	a464	*	4445	*	8ea1c4c5,c4c5,8ea1c4c5v,c4c5v	5343	e58d83	5343	00005343	a464	a464	a464	a464	a464	a464	a464
632	a465	a465	a465	*	4446	*	8ea1c4c6,c4c6,8ea1c4c6v,c4c6v	53c9	e58f89	53c9	000053c9	a465	a465	a465	a465	a465	a465	a465
633	a466	a466	a466	*	273e,4447	*	8ea1a7be,8ea1c4c7,a7be,c4c7,8ea1a7bev,8ea1c4c7v,a7bev,c4c7v	53e3	e2bc9d,e58fa3	2f1d,53e3	00002f1d,000053e3	a466	a466	a466	a466	a466	a466	a466
634	a467	a467	a467	*	2740,4448	*	8ea1a7c0,8ea1c4c8,a7c0,c4c8,8ea1a7c0v,8ea1c4c8v,a7c0v,c4c8v	571f	e59c9f,e2bc9f	571f,2f1f	0000571f,00002f1f	a467	a467	a467	a467	a467	a467	a467
635	a468	a468	a468	*	2741,4449	*	8ea1a7c1,8ea1c4c9,a7c1,c4c9,8ea1a7c1v,8ea1c4c9v,a7c1v,c4c9v	58eb	e5a3ab,e2bca0	58eb,2f20	000058eb,00002f20	a468	a468	a468	a468	a468	a468	a468
636	a469	a469	a469	*	2743,444a	*	8ea1a7c3,8ea1c4ca,a7c3,c4ca,8ea1a7c3v,8ea1c4cav,a7c3v,c4cav	5915	e5a495,e2bca3	5915,2f23	00005915,00002f23	a469	a469	a469	a469	a469	a469	a469
637	a46a	a46a	a46a	*	2744,444b	*	8ea1a7c4,8ea1c4cb,a7c4,c4cb,8ea1a7c4v,8ea1c4cbv,a7c4v,c4cbv	5927	e5a4a7,e2bca4	5927,2f24	00005927,00002f24	a46a	a46a	a46a	a46a	a46a	a46a	a46a
638	a46b	a46b	a46b	*	2745,444c	*	8ea1a7c5,8ea1c4cc,a7c5,c4cc,8ea1a7c5v,8ea1c4ccv,a7c5v,c4ccv	5973	e5a5b3,e2bca5	5973,2f25	00005973,00002f25	a46b	a46b	a46b	a46b	a46b	a46b	a46b
639	a46c	a46c	a46c	*	2746,444d	*	8ea1a7c6,8ea1c4cd,a7c6,c4cd,8ea1a7c6v,8ea1c4cdv,a7c6v,c4cdv	5b50	e2bca6,e5ad90	2f26,5b50	00002f26,00005b50	a46c	a46c	a46c	a46c	a46c	a46c	a46c
640	a46d	a46d	a46d	*	444e	*	8ea1c4ce,c4ce,8ea1c4cev,c4cev	5b51	e5ad91	5b51	00005b51	a46d	a46d	a46d	a46d	a46d	a46d	a46d
641	a46e	a46e	a46e	*	444f	*	8ea1c4cf,c4cf,8ea1c4cfv,c4cfv	5b53	e5ad93	5b53	00005b53	a46e	a46e	a46e	a46e	a46e	a46e	a46e
642	a46f	a46f	a46f	*	2748,4450	*	8ea1a7c8,8ea1c4d0,a7c8,c4d0,8ea1a7c8v,8ea1c4d0v,a7c8v,c4d0v	5bf8	e5afb8,e2bca8	5bf8,2f28	00005bf8,00002f28	a46f	a46f	a46f	a46f	a46f	a46f	a46f
643	a470	a470	a470	*	2749,4451	*	8ea1a7c9,8ea1c4d1,a7c9,c4d1,8ea1a7c9v,8ea1c4d1v,a7c9v,c4d1v	5c0f	e5b08f,e2bca9	5c0f,2f29	00005c0f,00002f29	a470	a470	a470	a470	a470	a470	a470
644	a471	a471	a471	*	274a,4452	*	8ea1a7ca,8ea1c4d2,a7ca,c4d2,8ea1a7cav,8ea1c4d2v,a7cav,c4d2v	5c22	e5b0a2,e2bcaa	5c22,2f2a	00005c22,00002f2a	a471	a471	a471	a471	a471	a471	a471
645	a472	a472	a472	*	274b,4453	*	8ea1a7cb,8ea1c4d3,a7cb,c4d3,8ea1a7cbv,8ea1c4d3v,a7cbv,c4d3v	5c38	e5b0b8,e2bcab	5c38,2f2b	00005c38,00002f2b	a472	a472	a472	a472	a472	a472	a472
646	a473	a473	a473	*	274d,4454	*	8ea1a7cd,8ea1c4d4,a7cd,c4d4,8ea1a7cdv,8ea1c4d4v,a7cdv,c4d4v	5c71	e2bcad,e5b1b1	2f2d,5c71	00002f2d,00005c71	a473	a473	a473	a473	a473	a473	a473
647	a474	a474	a474	*	4455	*	8ea1c4d5,c4d5,8ea1c4d5v,c4d5v	5ddd	e5b79d	5ddd	00005ddd	a474	a474	a474	a474	a474	a474	a474
648	a475	a475	a475	*	274f,4456	*	8ea1a7cf,8ea1c4d6,a7cf,c4d6,8ea1a7cfv,8ea1c4d6v,a7cfv,c4d6v	5de5	e5b7a5,e2bcaf	5de5,2f2f	00005de5,00002f2f	a475	a475	a475	a475	a475	a475	a475
649	a476	a476	a476	*	2750,4457	*	8ea1a7d0,8ea1c4d7,a7d0,c4d7,8ea1a7d0v,8ea1c4d7v,a7d0v,c4d7v	5df1	e2bcb0,e5b7b1	2f30,5df1	00002f30,00005df1	a476	a476	a476	a476	a476	a476	a476
650	a477	a477	a477	*	4458	*	8ea1c4d8,c4d8,8ea1c4d8v,c4d8v	5df2	e5b7b2	5df2	00005df2	a477	a477	a477	a477	a477	a477	a477
651	a478	a478	a478	*	4459	*	8ea1c4d9,c4d9,8ea1c4d9v,c4d9v	5df3	e5b7b3	5df3	00005df3	a478	a478	a478	a478	a478	a478	a478
652	a479	a479	a479	*	2751,445a	*	8ea1a7d1,8ea1c4da,a7d1,c4da,8ea1a7d1v,8ea1c4dav,a7d1v,c4dav	5dfe	e5b7be,e2bcb1	5dfe,2f31	00005dfe,00002f31	a479	a479	a479	a479	a479	a479	a479
653	a47a	a47a	a47a	*	2752,445b	*	8ea1a7d2,8ea1c4db,a7d2,c4db,8ea1a7d2v,8ea1c4dbv,a7d2v,c4dbv	5e72	e5b9b2,e2bcb2	5e72,2f32	00005e72,00002f32	a47a	a47a	a47a	a47a	a47a	a47a	a47a
654	a47b	a47b	a47b	*	2756,445c	*	8ea1a7d6,8ea1c4dc,a7d6,c4dc,8ea1a7d6v,8ea1c4dcv,a7d6v,c4dcv	5efe	e5bbbe,e2bcb6	5efe,2f36	00005efe,00002f36	a47b	a47b	a47b	a47b	a47b	a47b	a47b
655	a47c	a47c	a47c	*	2757,445d	*	8ea1a7d7,8ea1c4dd,a7d7,c4dd,8ea1a7d7v,8ea1c4ddv,a7d7v,c4ddv	5f0b	e5bc8b,e2bcb7	5f0b,2f37	00005f0b,00002f37	a47c	a47c	a47c	a47c	a47c	a47c	a47c
656	a47d	a47d	a47d	*	2758,445e	*	8ea1a7d8,8ea1c4de,a7d8,c4de,8ea1a7d8v,8ea1c4dev,a7d8v,c4dev	5f13	e5bc93,e2bcb8	5f13,2f38	00005f13,00002f38	a47d	a47d	a47d	a47d	a47d	a47d	a47d
657	a47e	a47e	a47e	*	445f	*	8ea1c4df,c4df,8ea1c4dfv,c4dfv	624d	e6898d	624d	0000624d	a47e	a47e	a47e	a47e	a47e	a47e	a47e
658	a4a1	a4a1	a4a1	*	4460	*	8ea1c4e0,c4e0,8ea1c4e0v,c4e0v	4e11	e4b891	4e11	00004e11	a4a1	a4a1	a4a1	a4a1	a4a1	a4a1	a4a1
659	a4a2	a4a2	a4a2	*	4461	*	8ea1c4e1,c4e1,8ea1c4e1v,c4e1v	4e10	e4b890	4e10	00004e10	a4a2	a4a2	a4a2	a4a2	a4a2	a4a2	a4a2
660	a4a3	a4a3	a4a3	*	4462	*	8ea1c4e2,c4e2,8ea1c4e2v,c4e2v	4e0d	e4b88d	4e0d	00004e0d	a4a3	a4a3	a4a3	a4a3	a4a3	a4a3	a4a3
661	a4a4	a4a4	a4a4	*	4463	*	8ea1c4e3,c4e3,8ea1c4e3v,c4e3v	4e2d	e4b8ad	4e2d	00004e2d	a4a4	a4a4	a4a4	a4a4	a4a4	a4a4	a4a4
662	a4a5	a4a5	a4a5	*	4464	*	8ea1c4e4,c4e4,8ea1c4e4v,c4e4v	4e30	e4b8b0	4e30	00004e30	a4a5	a4a5	a4a5	a4a5	a4a5	a4a5	a4a5
663	a4a6	a4a6	a4a6	*	4465	*	8ea1c4e5,c4e5,8ea1c4e5v,c4e5v	4e39	e4b8b9	4e39	00004e39	a4a6	a4a6	a4a6	a4a6	a4a6	a4a6	a4a6
664	a4a7	a4a7	a4a7	*	4466	*	8ea1c4e6,c4e6,8ea1c4e6v,c4e6v	4e4b	e4b98b	4e4b	00004e4b	a4a7	a4a7	a4a7	a4a7	a4a7	a4a7	a4a7
665	a4a8	a4a8	a4a8	*	4467	*	8ea1c4e7,c4e7,8ea1c4e7v,c4e7v	5c39	e5b0b9	5c39	00005c39	a4a8	a4a8	a4a8	a4a8	a4a8	a4a8	a4a8
666	a4a9	a4a9	a4a9	*	4468	*	8ea1c4e8,c4e8,8ea1c4e8v,c4e8v	4e88	e4ba88	4e88	00004e88	a4a9	a4a9	a4a9	a4a9	a4a9	a4a9	a4a9
667	a4aa	a4aa	a4aa	*	4469	*	8ea1c4e9,c4e9,8ea1c4e9v,c4e9v	4e91	e4ba91	4e91	00004e91	a4aa	a4aa	a4aa	a4aa	a4aa	a4aa	a4aa
668	a4ab	a4ab	a4ab	*	446a	*	8ea1c4ea,c4ea,8ea1c4eav,c4eav	4e95	e4ba95	4e95	00004e95	a4ab	a4ab	a4ab	a4ab	a4ab	a4ab	a4ab
669	a4ac	a4ac	a4ac	*	446b	*	8ea1c4eb,c4eb,8ea1c4ebv,c4ebv	4e92	e4ba92	4e92	00004e92	a4ac	a4ac	a4ac	a4ac	a4ac	a4ac	a4ac
670	a4ad	a4ad	a4ad	*	446c	*	8ea1c4ec,c4ec,8ea1c4ecv,c4ecv	4e94	e4ba94	4e94	00004e94	a4ad	a4ad	a4ad	a4ad	a4ad	a4ad	a4ad
671	a4ae	a4ae	a4ae	*	446d	*	8ea1c4ed,c4ed,8ea1c4edv,c4edv	4ea2	e4baa2	4ea2	00004ea2	a4ae	a4ae	a4ae	a4ae	a4ae	a4ae	a4ae
672	a4af	a4af	a4af	*	446e	*	8ea1c4ee,c4ee,8ea1c4eev,c4eev	4ec1	e4bb81	4ec1	00004ec1	a4af	a4af	a4af	a4af	a4af	a4af	a4af
673	a4b0	a4b0	a4b0	*	446f	*	8ea1c4ef,c4ef,8ea1c4efv,c4efv	4ec0	e4bb80	4ec0	00004ec0	a4b0	a4b0	a4b0	a4b0	a4b0	a4b0	a4b0
674	a4b1	a4b1	a4b1	*	4470	*	8ea1c4f0,c4f0,8ea1c4f0v,c4f0v	4ec3	e4bb83	4ec3	00004ec3	a4b1	a4b1	a4b1	a4b1	a4b1	a4b1	a4b1
675	a4b2	a4b2	a4b2	*	4471	*	8ea1c4f1,c4f1,8ea1c4f1v,c4f1v	4ec6	e4bb86	4ec6	00004ec6	a4b2	a4b2	a4b2	a4b2	a4b2	a4b2	a4b2
676	a4b3	a4b3	a4b3	*	4472	*	8ea1c4f2,c4f2,8ea1c4f2v,c4f2v	4ec7	e4bb87	4ec7	00004ec7	a4b3	a4b3	a4b3	a4b3	a4b3	a4b3	a4b3
677	a4b4	a4b4	a4b4	*	4473	*	8ea1c4f3,c4f3,8ea1c4f3v,c4f3v	4ecd	e4bb8d	4ecd	00004ecd	a4b4	a4b4	a4b4	a4b4	a4b4	a4b4	a4b4
678	a4b5	a4b5	a4b5	*	4474	*	8ea1c4f4,c4f4,8ea1c4f4v,c4f4v	4eca	e4bb8a	4eca	00004eca	a4b5	a4b5	a4b5	a4b5	a4b5	a4b5	a4b5
679	a4b6	a4b6	a4b6	*	4475	*	8ea1c4f5,c4f5,8ea1c4f5v,c4f5v	4ecb	e4bb8b	4ecb	00004ecb	a4b6	a4b6	a4b6	a4b6	a4b6	a4b6	a4b6
680	a4b7	a4b7	a4b7	*	4476	*	8ea1c4f6,c4f6,8ea1c4f6v,c4f6v	4ec4	e4bb84	4ec4	00004ec4	a4b7	a4b7	a4b7	a4b7	a4b7	a4b7	a4b7
681	a4b8	a4b8	a4b8	*	4477	*	8ea1c4f7,c4f7,8ea1c4f7v,c4f7v	5143	e58583	5143	00005143	a4b8	a4b8	a4b8	a4b8	a4b8	a4b8	a4b8
682	a4b9	a4b9	a4b9	*	4478	*	8ea1c4f8,c4f8,8ea1c4f8v,c4f8v	5141	e58581	5141	00005141	a4b9	a4b9	a4b9	a4b9	a4b9	a4b9	a4b9
683	a4ba	a4ba	a4ba	*	4479	*	8ea1c4f9,c4f9,8ea1c4f9v,c4f9v	5167	e585a7	5167	00005167	a4ba	a4ba	a4ba	a4ba	a4ba	a4ba	a4ba
684	a4bb	a4bb	a4bb	*	447a	*	8ea1c4fa,c4fa,8ea1c4fav,c4fav	516d	e585ad	516d	0000516d	a4bb	a4bb	a4bb	a4bb	a4bb	a4bb	a4bb
685	a4bc	a4bc	a4bc	*	447b	*	8ea1c4fb,c4fb,8ea1c4fbv,c4fbv	516e	e585ae	516e	0000516e	a4bc	a4bc	a4bc	a4bc	a4bc	a4bc	a4bc
686	a4bd	a4bd	a4bd	*	447c	*	8ea1c4fc,c4fc,8ea1c4fcv,c4fcv	516c	e585ac	516c	0000516c	a4bd	a4bd	a4bd	a4bd	a4bd	a4bd	a4bd
687	a4be	a4be	a4be	*	447d	*	8ea1c4fd,c4fd,8ea1c4fdv,c4fdv	5197	e58697	5197	00005197	a4be	a4be	a4be	a4be	a4be	a4be	a4be
688	a4bf	a4bf	a4bf	*	447e	*	8ea1c4fe,c4fe,8ea1c4fev,c4fev	51f6	e587b6	51f6	000051f6	a4bf	a4bf	a4bf	a4bf	a4bf	a4bf	a4bf
689	a4c0	a4c0	a4c0	*	4521	*	8ea1c5a1,c5a1,8ea1c5a1v,c5a1v	5206	e58886	5206	00005206	a4c0	a4c0	a4c0	a4c0	a4c0	a4c0	a4c0
690	a4c1	a4c1	a4c1	*	4522	*	8ea1c5a2,c5a2,8ea1c5a2v,c5a2v	5207	e58887	5207	00005207	a4c1	a4c1	a4c1	a4c1	a4c1	a4c1	a4c1
691	a4c2	a4c2	a4c2	*	4523	*	8ea1c5a3,c5a3,8ea1c5a3v,c5a3v	5208	e58888	5208	00005208	a4c2	a4c2	a4c2	a4c2	a4c2	a4c2	a4c2
692	a4c3	a4c3	a4c3	*	4524	*	8ea1c5a4,c5a4,8ea1c5a4v,c5a4v	52fb	e58bbb	52fb	000052fb	a4c3	a4c3	a4c3	a4c3	a4c3	a4c3	a4c3
693	a4c4	a4c4	a4c4	*	4525	*	8ea1c5a5,c5a5,8ea1c5a5v,c5a5v	52fe	e58bbe	52fe	000052fe	a4c4	a4c4	a4c4	a4c4	a4c4	a4c4	a4c4
694	a4c5	a4c5	a4c5	*	4526	*	8ea1c5a6,c5a6,8ea1c5a6v,c5a6v	52ff	e58bbf	52ff	000052ff	a4c5	a4c5	a4c5	a4c5	a4c5	a4c5	a4c5
695	a4c6	a4c6	a4c6	*	4527	*	8ea1c5a7,c5a7,8ea1c5a7v,c5a7v	5316	e58c96	5316	00005316	a4c6	a4c6	a4c6	a4c6	a4c6	a4c6	a4c6
696	a4c7	a4c7	a4c7	*	4528	*	8ea1c5a8,c5a8,8ea1c5a8v,c5a8v	5339	e58cb9	5339	00005339	a4c7	a4c7	a4c7	a4c7	a4c7	a4c7	a4c7
697	a4c8	a4c8	a4c8	*	4529	*	8ea1c5a9,c5a9,8ea1c5a9v,c5a9v	5348	e58d88	5348	00005348	a4c8	a4c8	a4c8	a4c8	a4c8	a4c8	a4c8
698	a4c9	a4c9	a4c9	*	452a	*	8ea1c5aa,c5aa,8ea1c5aav,c5aav	5347	e58d87	5347	00005347	a4c9	a4c9	a4c9	a4c9	a4c9	a4c9	a4c9
699	a4ca	a4ca	a4ca	*	452b	*	8ea1c5ab,c5ab,8ea1c5abv,c5abv	5345	e58d85	5345	00005345	a4ca	a4ca	a4ca	a4ca	a4ca	a4ca	a4ca
700	a4cb	a4cb	a4cb	*	452c	*	8ea1c5ac,c5ac,8ea1c5acv,c5acv	535e	e58d9e	535e	0000535e	a4cb	a4cb	a4cb	a4cb	a4cb	a4cb	a4cb
701	a4cc	a4cc	a4cc	*	452d	*	8ea1c5ad,c5ad,8ea1c5adv,c5adv	5384	e58e84	5384	00005384	a4cc	a4cc	a4cc	a4cc	a4cc	a4cc	a4cc
702	a4cd	a4cd	a4cd	*	452e	*	8ea1c5ae,c5ae,8ea1c5aev,c5aev	53cb	e58f8b	53cb	000053cb	a4cd	a4cd	a4cd	a4cd	a4cd	a4cd	a4cd
703	a4ce	a4ce	a4ce	*	452f	*	8ea1c5af,c5af,8ea1c5afv,c5afv	53ca	e58f8a	53ca	000053ca	a4ce	a4ce	a4ce	a4ce	a4ce	a4ce	a4ce
704	a4cf	a4cf	a4cf	*	4530	*	8ea1c5b0,c5b0,8ea1c5b0v,c5b0v	53cd	e58f8d	53cd	000053cd	a4cf	a4cf	a4cf	a4cf	a4cf	a4cf	a4cf
705	a4d0	a4d0	a4d0	*	4531	*	8ea1c5b1,c5b1,8ea1c5b1v,c5b1v	58ec	e5a3ac	58ec	000058ec	a4d0	a4d0	a4d0	a4d0	a4d0	a4d0	a4d0
706	a4d1	a4d1	a4d1	*	4532	*	8ea1c5b2,c5b2,8ea1c5b2v,c5b2v	5929	e5a4a9	5929	00005929	a4d1	a4d1	a4d1	a4d1	a4d1	a4d1	a4d1
707	a4d2	a4d2	a4d2	*	4533	*	8ea1c5b3,c5b3,8ea1c5b3v,c5b3v	592b	e5a4ab	592b	0000592b	a4d2	a4d2	a4d2	a4d2	a4d2	a4d2	a4d2
708	a4d3	a4d3	a4d3	*	4534	*	8ea1c5b4,c5b4,8ea1c5b4v,c5b4v	592a	e5a4aa	592a	0000592a	a4d3	a4d3	a4d3	a4d3	a4d3	a4d3	a4d3
709	a4d4	a4d4	a4d4	*	4535	*	8ea1c5b5,c5b5,8ea1c5b5v,c5b5v	592d	e5a4ad	592d	0000592d	a4d4	a4d4	a4d4	a4d4	a4d4	a4d4	a4d4
710	a4d5	a4d5	a4d5	*	4536	*	8ea1c5b6,c5b6,8ea1c5b6v,c5b6v	5b54	e5ad94	5b54	00005b54	a4d5	a4d5	a4d5	a4d5	a4d5	a4d5	a4d5
711	a4d6	a4d6	a4d6	*	4537	*	8ea1c5b7,c5b7,8ea1c5b7v,c5b7v	5c11	e5b091	5c11	00005c11	a4d6	a4d6	a4d6	a4d6	a4d6	a4d6	a4d6
712	a4d7	a4d7	a4d7	*	4538	*	8ea1c5b8,c5b8,8ea1c5b8v,c5b8v	5c24	e5b0a4	5c24	00005c24	a4d7	a4d7	a4d7	a4d7	a4d7	a4d7	a4d7
713	a4d8	a4d8	a4d8	*	4539	*	8ea1c5b9,c5b9,8ea1c5b9v,c5b9v	5c3a	e5b0ba	5c3a	00005c3a	a4d8	a4d8	a4d8	a4d8	a4d8	a4d8	a4d8
714	a4d9	a4d9	a4d9	*	453a	*	8ea1c5ba,c5ba,8ea1c5bav,c5bav	5c6f	e5b1af	5c6f	00005c6f	a4d9	a4d9	a4d9	a4d9	a4d9	a4d9	a4d9
715	a4da	a4da	a4da	*	453b	*	8ea1c5bb,c5bb,8ea1c5bbv,c5bbv	5df4	e5b7b4	5df4	00005df4	a4da	a4da	a4da	a4da	a4da	a4da	a4da
716	a4db	a4db	a4db	*	453c	*	8ea1c5bc,c5bc,8ea1c5bcv,c5bcv	5e7b	e5b9bb	5e7b	00005e7b	a4db	a4db	a4db	a4db	a4db	a4db	a4db
717	a4dc	a4dc	a4dc	*	453d	*	8ea1c5bd,c5bd,8ea1c5bdv,c5bdv	5eff	e5bbbf	5eff	00005eff	a4dc	a4dc	a4dc	a4dc	a4dc	a4dc	a4dc
718	a4dd	a4dd	a4dd	*	453e	*	8ea1c5be,c5be,8ea1c5bev,c5bev	5f14	e5bc94	5f14	00005f14	a4dd	a4dd	a4dd	a4dd	a4dd	a4dd	a4dd
719	a4de	a4de	a4de	*	453f	*	8ea1c5bf,c5bf,8ea1c5bfv,c5bfv	5f15	e5bc95	5f15	00005f15	a4de	a4de	a4de	a4de	a4de	a4de	a4de
720	a4df	a4df	a4df	*	275c,4540	*	8ea1a7dc,8ea1c5c0,a7dc,c5c0,8ea1a7dcv,8ea1c5c0v,a7dcv,c5c0v	5fc3	e5bf83,e2bcbc	5fc3,2f3c	00005fc3,00002f3c	a4df	a4df	a4df	a4df	a4df	a4df	a4df
721	a4e0	a4e0	a4e0	*	275d,4541	*	8ea1a7dd,8ea1c5c1,a7dd,c5c1,8ea1a7ddv,8ea1c5c1v,a7ddv,c5c1v	6208	e68888,e2bcbd	6208,2f3d	00006208,00002f3d	a4e0	a4e0	a4e0	a4e0	a4e0	a4e0	a4e0
722	a4e1	a4e1	a4e1	*	275e,4542	*	8ea1a7de,8ea1c5c2,a7de,c5c2,8ea1a7dev,8ea1c5c2v,a7dev,c5c2v	6236	e688b6,e2bcbe	6236,2f3e	00006236,00002f3e	a4e1	a4e1	a4e1	a4e1	a4e1	a4e1	a4e1
723	a4e2	a4e2	a4e2	*	275f,4543	*	8ea1a7df,8ea1c5c3,a7df,c5c3,8ea1a7dfv,8ea1c5c3v,a7dfv,c5c3v	624b	e6898b,e2bcbf	624b,2f3f	0000624b,00002f3f	a4e2	a4e2	a4e2	a4e2	a4e2	a4e2	a4e2
724	a4e3	a4e3	a4e3	*	4544	*	8ea1c5c4,c5c4,8ea1c5c4v,c5c4v	624e	e6898e	624e	0000624e	a4e3	a4e3	a4e3	a4e3	a4e3	a4e3	a4e3
725	a4e4	a4e4	a4e4	*	2760,4545	*	8ea1a7e0,8ea1c5c5,a7e0,c5c5,8ea1a7e0v,8ea1c5c5v,a7e0v,c5c5v	652f	e2bd80,e694af	2f40,652f	00002f40,0000652f	a4e4	a4e4	a4e4	a4e4	a4e4	a4e4	a4e4
726	a4e5	a4e5	a4e5	*	2762,4546	*	8ea1a7e2,8ea1c5c6,a7e2,c5c6,8ea1a7e2v,8ea1c5c6v,a7e2v,c5c6v	6587	e69687,e2bd82	6587,2f42	00006587,00002f42	a4e5	a4e5	a4e5	a4e5	a4e5	a4e5	a4e5
727	a4e6	a4e6	a4e6	*	2763,4547	*	8ea1a7e3,8ea1c5c7,a7e3,c5c7,8ea1a7e3v,8ea1c5c7v,a7e3v,c5c7v	6597	e69697,e2bd83	6597,2f43	00006597,00002f43	a4e6	a4e6	a4e6	a4e6	a4e6	a4e6	a4e6
728	a4e7	a4e7	a4e7	*	2764,4548	*	8ea1a7e4,8ea1c5c8,a7e4,c5c8,8ea1a7e4v,8ea1c5c8v,a7e4v,c5c8v	65a4	e696a4,e2bd84	65a4,2f44	000065a4,00002f44	a4e7	a4e7	a4e7	a4e7	a4e7	a4e7	a4e7
729	a4e8	a4e8	a4e8	*	2765,4549	*	8ea1a7e5,8ea1c5c9,a7e5,c5c9,8ea1a7e5v,8ea1c5c9v,a7e5v,c5c9v	65b9	e696b9,e2bd85	65b9,2f45	000065b9,00002f45	a4e8	a4e8	a4e8	a4e8	a4e8	a4e8	a4e8
730	a4e9	a4e9	a4e9	*	2767,454a	*	8ea1a7e7,8ea1c5ca,a7e7,c5ca,8ea1a7e7v,8ea1c5cav,a7e7v,c5cav	65e5	e697a5,e2bd87	65e5,2f47	000065e5,00002f47	a4e9	a4e9	a4e9	a4e9	a4e9	a4e9	a4e9
731	a4ea	a4ea	a4ea	*	2768,454b	*	8ea1a7e8,8ea1c5cb,a7e8,c5cb,8ea1a7e8v,8ea1c5cbv,a7e8v,c5cbv	66f0	e69bb0,e2bd88	66f0,2f48	000066f0,00002f48	a4ea	a4ea	a4ea	a4ea	a4ea	a4ea	a4ea
732	a4eb	a4eb	a4eb	*	2769,454c	*	8ea1a7e9,8ea1c5cc,a7e9,c5cc,8ea1a7e9v,8ea1c5ccv,a7e9v,c5ccv	2e9d,6708	e69c88,e2bd89	6708,2f49	00006708,00002f49	a4eb	a4eb	a4eb	a4eb	a4eb	a4eb	a4eb
733	a4ec	a4ec	a4ec	*	276a,454d	*	8ea1a7ea,8ea1c5cd,a7ea,c5cd,8ea1a7eav,8ea1c5cdv,a7eav,c5cdv	6728	e69ca8,e2bd8a	6728,2f4a	00006728,00002f4a	a4ec	a4ec	a4ec	a4ec	a4ec	a4ec	a4ec
734	a4ed	a4ed	a4ed	*	276b,454e	*	8ea1a7eb,8ea1c5ce,a7eb,c5ce,8ea1a7ebv,8ea1c5cev,a7ebv,c5cev	6b20	e6aca0,e2bd8b	6b20,2f4b	00006b20,00002f4b	a4ed	a4ed	a4ed	a4ed	a4ed	a4ed	a4ed
735	a4ee	a4ee	a4ee	*	276c,454f	*	8ea1a7ec,8ea1c5cf,a7ec,c5cf,8ea1a7ecv,8ea1c5cfv,a7ecv,c5cfv	6b62	e6ada2,e2bd8c	6b62,2f4c	00006b62,00002f4c	a4ee	a4ee	a4ee	a4ee	a4ee	a4ee	a4ee
736	a4ef	a4ef	a4ef	*	276d,4550	*	8ea1a7ed,8ea1c5d0,a7ed,c5d0,8ea1a7edv,8ea1c5d0v,a7edv,c5d0v	6b79	e6adb9,e2bd8d	6b79,2f4d	00006b79,00002f4d	a4ef	a4ef	a4ef	a4ef	a4ef	a4ef	a4ef
737	a4f0	a4f0	a4f0	*	276f,4551	*	8ea1a7ef,8ea1c5d1,a7ef,c5d1,8ea1a7efv,8ea1c5d1v,a7efv,c5d1v	6bcb	e6af8b,e2bd8f	6bcb,2f4f	00006bcb,00002f4f	a4f0	a4f0	a4f0	a4f0	a4f0	a4f0	a4f0
738	a4f1	a4f1	a4f1	*	2770,4552	*	8ea1a7f0,8ea1c5d2,a7f0,c5d2,8ea1a7f0v,8ea1c5d2v,a7f0v,c5d2v	6bd4	e6af94,e2bd90	6bd4,2f50	00006bd4,00002f50	a4f1	a4f1	a4f1	a4f1	a4f1	a4f1	a4f1
739	a4f2	a4f2	a4f2	*	2771,4553	*	8ea1a7f1,8ea1c5d3,a7f1,c5d3,8ea1a7f1v,8ea1c5d3v,a7f1v,c5d3v	6bdb	e6af9b,e2bd91	6bdb,2f51	00006bdb,00002f51	a4f2	a4f2	a4f2	a4f2	a4f2	a4f2	a4f2
740	a4f3	a4f3	a4f3	*	2772,4554	*	8ea1a7f2,8ea1c5d4,a7f2,c5d4,8ea1a7f2v,8ea1c5d4v,a7f2v,c5d4v	6c0f	e6b08f,e2bd92	6c0f,2f52	00006c0f,00002f52	a4f3	a4f3	a4f3	a4f3	a4f3	a4f3	a4f3
741	a4f4	a4f4	a4f4	*	2774,4555	*	8ea1a7f4,8ea1c5d5,a7f4,c5d5,8ea1a7f4v,8ea1c5d5v,a7f4v,c5d5v	6c34	e6b0b4,e2bd94	6c34,2f54	00006c34,00002f54	a4f4	a4f4	a4f4	a4f4	a4f4	a4f4	a4f4
742	a4f5	a4f5	a4f5	*	2775,4556	*	8ea1a7f5,8ea1c5d6,a7f5,c5d6,8ea1a7f5v,8ea1c5d6v,a7f5v,c5d6v	706b	e781ab,e2bd95	706b,2f55	0000706b,00002f55	a4f5	a4f5	a4f5	a4f5	a4f5	a4f5	a4f5
743	a4f6	a4f6	a4f6	*	2776,4557	*	8ea1a7f6,8ea1c5d7,a7f6,c5d7,8ea1a7f6v,8ea1c5d7v,a7f6v,c5d7v	722a	e788aa,e2bd96	722a,2f56	0000722a,00002f56	a4f6	a4f6	a4f6	a4f6	a4f6	a4f6	a4f6
744	a4f7	a4f7	a4f7	*	2777,4558	*	8ea1a7f7,8ea1c5d8,a7f7,c5d8,8ea1a7f7v,8ea1c5d8v,a7f7v,c5d8v	7236	e788b6,e2bd97	7236,2f57	00007236,00002f57	a4f7	a4f7	a4f7	a4f7	a4f7	a4f7	a4f7
745	a4f8	a4f8	a4f8	*	2778,4559	*	8ea1a7f8,8ea1c5d9,a7f8,c5d9,8ea1a7f8v,8ea1c5d9v,a7f8v,c5d9v	723b	e788bb,e2bd98	723b,2f58	0000723b,00002f58	a4f8	a4f8	a4f8	a4f8	a4f8	a4f8	a4f8
746	a4f9	a4f9	a4f9	*	277a,455a	*	8ea1a7fa,8ea1c5da,a7fa,c5da,8ea1a7fav,8ea1c5dav,a7fav,c5dav	7247	e78987,e2bd9a	7247,2f5a	00007247,00002f5a	a4f9	a4f9	a4f9	a4f9	a4f9	a4f9	a4f9
747	a4fa	a4fa	a4fa	*	277b,455b	*	8ea1a7fb,8ea1c5db,a7fb,c5db,8ea1a7fbv,8ea1c5dbv,a7fbv,c5dbv	7259	e78999,e2bd9b	7259,2f5b	00007259,00002f5b	a4fa	a4fa	a4fa	a4fa	a4fa	a4fa	a4fa
748	a4fb	a4fb	a4fb	*	277c,455c	*	8ea1a7fc,8ea1c5dc,a7fc,c5dc,8ea1a7fcv,8ea1c5dcv,a7fcv,c5dcv	725b	e7899b,e2bd9c	725b,2f5c	0000725b,00002f5c	a4fb	a4fb	a4fb	a4fb	a4fb	a4fb	a4fb
749	a4fc	a4fc	a4fc	*	277d,455d	*	8ea1a7fd,8ea1c5dd,a7fd,c5dd,8ea1a7fdv,8ea1c5ddv,a7fdv,c5ddv	72ac	e78aac,e2bd9d	72ac,2f5d	000072ac,00002f5d	a4fc	a4fc	a4fc	a4fc	a4fc	a4fc	a4fc
750	a4fd	a4fd	a4fd	*	455e	*	8ea1c5de,c5de,8ea1c5dev,c5dev	738b	e78e8b	738b	0000738b	a4fd	a4fd	a4fd	a4fd	a4fd	a4fd	a4fd
751	a4fe	a4fe	a4fe	*	455f	*	8ea1c5df,c5df,8ea1c5dfv,c5dfv	4e19	e4b899	4e19	00004e19	a4fe	a4fe	a4fe	a4fe	a4fe	a4fe	a4fe
752	a540	a540	a540	*	4560	*	8ea1c5e0,c5e0,8ea1c5e0v,c5e0v	4e16	e4b896	4e16	00004e16	a540	a540	a540	a540	a540	a540	a540
753	a541	a541	a541	*	4561	*	8ea1c5e1,c5e1,8ea1c5e1v,c5e1v	4e15	e4b895	4e15	00004e15	a541	a541	a541	a541	a541	a541	a541
754	a542	a542	a542	*	4562	*	8ea1c5e2,c5e2,8ea1c5e2v,c5e2v	4e14	e4b894	4e14	00004e14	a542	a542	a542	a542	a542	a542	a542
755	a543	a543	a543	*	4563	*	8ea1c5e3,c5e3,8ea1c5e3v,c5e3v	4e18	e4b898	4e18	00004e18	a543	a543	a543	a543	a543	a543	a543
756	a544	a544	a544	*	4564	*	8ea1c5e4,c5e4,8ea1c5e4v,c5e4v	4e3b	e4b8bb	4e3b	00004e3b	a544	a544	a544	a544	a544	a544	a544
757	a545	a545	a545	*	4565	*	8ea1c5e5,c5e5,8ea1c5e5v,c5e5v	4e4d	e4b98d	4e4d	00004e4d	a545	a545	a545	a545	a545	a545	a545
758	a546	a546	a546	*	4566	*	8ea1c5e6,c5e6,8ea1c5e6v,c5e6v	4e4f	e4b98f	4e4f	00004e4f	a546	a546	a546	a546	a546	a546	a546
759	a547	a547	a547	*	4567	*	8ea1c5e7,c5e7,8ea1c5e7v,c5e7v	4e4e	e4b98e	4e4e	00004e4e	a547	a547	a547	a547	a547	a547	a547
760	a548	a548	a548	*	4568	*	8ea1c5e8,c5e8,8ea1c5e8v,c5e8v	4ee5	e4bba5	4ee5	00004ee5	a548	a548	a548	a548	a548	a548	a548
761	a549	a549	a549	*	4569	*	8ea1c5e9,c5e9,8ea1c5e9v,c5e9v	4ed8	e4bb98	4ed8	00004ed8	a549	a549	a549	a549	a549	a549	a549
762	a54a	a54a	a54a	*	456a	*	8ea1c5ea,c5ea,8ea1c5eav,c5eav	4ed4	e4bb94	4ed4	00004ed4	a54a	a54a	a54a	a54a	a54a	a54a	a54a
763	a54b	a54b	a54b	*	456b	*	8ea1c5eb,c5eb,8ea1c5ebv,c5ebv	4ed5	e4bb95	4ed5	00004ed5	a54b	a54b	a54b	a54b	a54b	a54b	a54b
764	a54c	a54c	a54c	*	456c	*	8ea1c5ec,c5ec,8ea1c5ecv,c5ecv	4ed6	e4bb96	4ed6	00004ed6	a54c	a54c	a54c	a54c	a54c	a54c	a54c
765	a54d	a54d	a54d	*	456d	*	8ea1c5ed,c5ed,8ea1c5edv,c5edv	4ed7	e4bb97	4ed7	00004ed7	a54d	a54d	a54d	a54d	a54d	a54d	a54d
766	a54e	a54e	a54e	*	456e	*	8ea1c5ee,c5ee,8ea1c5eev,c5eev	4ee3	e4bba3	4ee3	00004ee3	a54e	a54e	a54e	a54e	a54e	a54e	a54e
767	a54f	a54f	a54f	*	456f	*	8ea1c5ef,c5ef,8ea1c5efv,c5efv	4ee4	e4bba4	4ee4	00004ee4	a54f	a54f	a54f	a54f	a54f	a54f	a54f
768	a550	a550	a550	*	4570	*	8ea1c5f0,c5f0,8ea1c5f0v,c5f0v	4ed9	e4bb99	4ed9	00004ed9	a550	a550	a550	a550	a550	a550	a550
769	a551	a551	a551	*	4571	*	8ea1c5f1,c5f1,8ea1c5f1v,c5f1v	4ede	e4bb9e	4ede	00004ede	a551	a551	a551	a551	a551	a551	a551
770	a552	a552	a552	*	4572	*	8ea1c5f2,c5f2,8ea1c5f2v,c5f2v	5145	e58585	5145	00005145	a552	a552	a552	a552	a552	a552	a552
771	a553	a553	a553	*	4573	*	8ea1c5f3,c5f3,8ea1c5f3v,c5f3v	5144	e58584	5144	00005144	a553	a553	a553	a553	a553	a553	a553
772	a554	a554	a554	*	4574	*	8ea1c5f4,c5f4,8ea1c5f4v,c5f4v	5189	e58689	5189	00005189	a554	a554	a554	a554	a554	a554	a554
773	a555	a555	a555	*	4575	*	8ea1c5f5,c5f5,8ea1c5f5v,c5f5v	518a	e5868a	518a	0000518a	a555	a555	a555	a555	a555	a555	a555
774	a556	a556	a556	*	4576	*	8ea1c5f6,c5f6,8ea1c5f6v,c5f6v	51ac	e586ac	51ac	000051ac	a556	a556	a556	a556	a556	a556	a556
775	a557	a557	a557	*	4577	*	8ea1c5f7,c5f7,8ea1c5f7v,c5f7v	51f9	e587b9	51f9	000051f9	a557	a557	a557	a557	a557	a557	a557
776	a558	a558	a558	*	4578	*	8ea1c5f8,c5f8,8ea1c5f8v,c5f8v	51fa	e587ba	51fa	000051fa	a558	a558	a558	a558	a558	a558	a558
777	a559	a559	a559	*	4579	*	8ea1c5f9,c5f9,8ea1c5f9v,c5f9v	51f8	e587b8	51f8	000051f8	a559	a559	a559	a559	a559	a559	a559
778	a55a	a55a	a55a	*	457a	*	8ea1c5fa,c5fa,8ea1c5fav,c5fav	520a	e5888a	520a	0000520a	a55a	a55a	a55a	a55a	a55a	a55a	a55a
779	a55b	a55b	a55b	*	457b	*	8ea1c5fb,c5fb,8ea1c5fbv,c5fbv	52a0	e58aa0	52a0	000052a0	a55b	a55b	a55b	a55b	a55b	a55b	a55b
780	a55c	a55c	a55c	*	457c	*	8ea1c5fc,c5fc,8ea1c5fcv,c5fcv	529f	e58a9f	529f	0000529f	a55c	a55c	a55c	a55c	a55c	a55c	a55c
781	a55d	a55d	a55d	*	457d	*	8ea1c5fd,c5fd,8ea1c5fdv,c5fdv	5305	ee819b,e58c85	e05b,5305	0000e05b,00005305	fabd,a55d	a55d	a55d	a55d	a55d	a55d	fabd,a55d
782	a55e	a55e	a55e	*	457e	*	8ea1c5fe,c5fe,8ea1c5fev,c5fev	5306	e58c86	5306	00005306	a55e	a55e	a55e	a55e	a55e	a55e	a55e
783	a55f	a55f	a55f	*	4621	*	8ea1c6a1,c6a1,8ea1c6a1v,c6a1v	5317	e58c97	5317	00005317	a55f	a55f	a55f	a55f	a55f	a55f	a55f
784	a560	a560	a560	*	4622	*	8ea1c6a2,c6a2,8ea1c6a2v,c6a2v	531d	e58c9d	531d	0000531d	a560	a560	a560	a560	a560	a560	a560
785	a561	a561	a561	*	4623	*	8ea1c6a3,c6a3,8ea1c6a3v,c6a3v	4edf	e4bb9f	4edf	00004edf	a561	a561	a561	a561	a561	a561	a561
786	a562	a562	a562	*	4624	*	8ea1c6a4,c6a4,8ea1c6a4v,c6a4v	534a	e58d8a	534a	0000534a	a562	a562	a562	a562	a562	a562	a562
787	a563	a563	a563	*	4625	*	8ea1c6a5,c6a5,8ea1c6a5v,c6a5v	5349	e58d89	5349	00005349	a563	a563	a563	a563	a563	a563	a563
788	a564	a564	a564	*	4626	*	8ea1c6a6,c6a6,8ea1c6a6v,c6a6v	5361	e58da1	5361	00005361	a564	a564	a564	a564	a564	a564	a564
789	a565	a565	a565	*	4627	*	8ea1c6a7,c6a7,8ea1c6a7v,c6a7v	5360	e58da0	5360	00005360	a565	a565	a565	a565	a565	a565	a565
790	a566	a566	a566	*	4628	*	8ea1c6a8,c6a8,8ea1c6a8v,c6a8v	536f	e58daf	536f	0000536f	a566	a566	a566	a566	a566	a566	a566
791	a567	a567	a567	*	4629	*	8ea1c6a9,c6a9,8ea1c6a9v,c6a9v	536e	e58dae	536e	0000536e	a567	a567	a567	a567	a567	a567	a567
792	a568	a568	a568	*	462a	*	8ea1c6aa,c6aa,8ea1c6aav,c6aav	53bb	e58ebb	53bb	000053bb	a568	a568	a568	a568	a568	a568	a568
793	a569	a569	a569	*	462b	*	8ea1c6ab,c6ab,8ea1c6abv,c6abv	53ef	e58faf	53ef	000053ef	a569	a569	a569	a569	a569	a569	a569
794	a56a	a56a	a56a	*	462c	*	8ea1c6ac,c6ac,8ea1c6acv,c6acv	53e4	e58fa4	53e4	000053e4	a56a	a56a	a56a	a56a	a56a	a56a	a56a
795	a56b	a56b	a56b	*	462d	*	8ea1c6ad,c6ad,8ea1c6adv,c6adv	53f3	e58fb3	53f3	000053f3	a56b	a56b	a56b	a56b	a56b	a56b	a56b
796	a56c	a56c	a56c	*	462e	*	8ea1c6ae,c6ae,8ea1c6aev,c6aev	53ec	e58fac	53ec	000053ec	a56c	a56c	a56c	a56c	a56c	a56c	a56c
797	a56d	a56d	a56d	*	462f	*	8ea1c6af,c6af,8ea1c6afv,c6afv	53ee	e58fae	53ee	000053ee	a56d	a56d	a56d	a56d	a56d	a56d	a56d
798	a56e	a56e	a56e	*	4630	*	8ea1c6b0,c6b0,8ea1c6b0v,c6b0v	53e9	e58fa9	53e9	000053e9	a56e	a56e	a56e	a56e	a56e	a56e	a56e
799	a56f	a56f	a56f	*	4631	*	8ea1c6b1,c6b1,8ea1c6b1v,c6b1v	53e8	e58fa8	53e8	000053e8	a56f	a56f	a56f	a56f	a56f	a56f	a56f
800	a570	a570	a570	*	4632	*	8ea1c6b2,c6b2,8ea1c6b2v,c6b2v	53fc	e58fbc	53fc	000053fc	a570	a570	a570	a570	a570	a570	a570
801	a571	a571	a571	*	4633	*	8ea1c6b3,c6b3,8ea1c6b3v,c6b3v	53f8	e58fb8	53f8	000053f8	a571	a571	a571	a571	a571	a571	a571
802	a572	a572	a572	*	4634	*	8ea1c6b4,c6b4,8ea1c6b4v,c6b4v	53f5	e58fb5	53f5	000053f5	a572	a572	a572	a572	a572	a572	a572
803	a573	a573	a573	*	4635	*	8ea1c6b5,c6b5,8ea1c6b5v,c6b5v	53eb	e58fab	53eb	000053eb	a573	a573	a573	a573	a573	a573	a573
804	a574	a574	a574	*	4636	*	8ea1c6b6,c6b6,8ea1c6b6v,c6b6v	53e6	e58fa6	53e6	000053e6	a574	a574	a574	a574	a574	a574	a574
805	a575	a575	a575	*	4637	*	8ea1c6b7,c6b7,8ea1c6b7v,c6b7v	53ea	e58faa	53ea	000053ea	a575	a575	a575	a575	a575	a575	a575
806	a576	a576	a576	*	4638	*	8ea1c6b8,c6b8,8ea1c6b8v,c6b8v	53f2	e58fb2	53f2	000053f2	a576	a576	a576	a576	a576	a576	a576
807	a577	a577	a577	*	4639	*	8ea1c6b9,c6b9,8ea1c6b9v,c6b9v	53f1	e58fb1	53f1	000053f1	a577	a577	a577	a577	a577	a577	a577
808	a578	a578	a578	*	463a	*	8ea1c6ba,c6ba,8ea1c6bav,c6bav	53f0	e58fb0	53f0	000053f0	a578	a578	a578	a578	a578	a578	a578
809	a579	a579	a579	*	463b	*	8ea1c6bb,c6bb,8ea1c6bbv,c6bbv	53e5	e58fa5	53e5	000053e5	a579	a579	a579	a579	a579	a579	a579
810	a57a	a57a	a57a	*	463c	*	8ea1c6bc,c6bc,8ea1c6bcv,c6bcv	53ed	e58fad	53ed	000053ed	a57a	a57a	a57a	a57a	a57a	a57a	a57a
811	a57b	a57b	a57b	*	463d	*	8ea1c6bd,c6bd,8ea1c6bdv,c6bdv	53fb	e58fbb	53fb	000053fb	a57b	a57b	a57b	a57b	a57b	a57b	a57b
812	a57c	a57c	a57c	*	463e	*	8ea1c6be,c6be,8ea1c6bev,c6bev	56db	e59b9b	56db	000056db	a57c	a57c	a57c	a57c	a57c	a57c	a57c
813	a57d	a57d	a57d	*	463f	*	8ea1c6bf,c6bf,8ea1c6bfv,c6bfv	56da	e59b9a	56da	000056da	a57d	a57d	a57d	a57d	a57d	a57d	a57d
814	a57e	a57e	a57e	*	4640	*	8ea1c6c0,c6c0,8ea1c6c0v,c6c0v	5916	e5a496	5916	00005916	a57e	a57e	a57e	a57e	a57e	a57e	a57e
815	a5a1	a5a1	a5a1	*	4641	*	8ea1c6c1,c6c1,8ea1c6c1v,c6c1v	592e	e5a4ae	592e	0000592e	a5a1	a5a1	a5a1	a5a1	a5a1	a5a1	a5a1
816	a5a2	a5a2	a5a2	*	4642	*	8ea1c6c2,c6c2,8ea1c6c2v,c6c2v	5931	e5a4b1	5931	00005931	a5a2	a5a2	a5a2	a5a2	a5a2	a5a2	a5a2
817	a5a3	a5a3	a5a3	*	4643	*	8ea1c6c3,c6c3,8ea1c6c3v,c6c3v	5974	e5a5b4	5974	00005974	a5a3	a5a3	a5a3	a5a3	a5a3	a5a3	a5a3
818	a5a4	a5a4	a5a4	*	4644	*	8ea1c6c4,c6c4,8ea1c6c4v,c6c4v	5976	e5a5b6	5976	00005976	a5a4	a5a4	a5a4	a5a4	a5a4	a5a4	a5a4
819	a5a5	a5a5	a5a5	*	4645	*	8ea1c6c5,c6c5,8ea1c6c5v,c6c5v	5b55	e5ad95	5b55	00005b55	a5a5	a5a5	a5a5	a5a5	a5a5	a5a5	a5a5
820	a5a6	a5a6	a5a6	*	4646	*	8ea1c6c6,c6c6,8ea1c6c6v,c6c6v	5b83	e5ae83	5b83	00005b83	a5a6	a5a6	a5a6	a5a6	a5a6	a5a6	a5a6
821	a5a7	a5a7	a5a7	*	4647	*	8ea1c6c7,c6c7,8ea1c6c7v,c6c7v	5c3c	e5b0bc	5c3c	00005c3c	a5a7	a5a7	a5a7	a5a7	a5a7	a5a7	a5a7
822	a5a8	a5a8	a5a8	*	4648	*	8ea1c6c8,c6c8,8ea1c6c8v,c6c8v	5de8	e5b7a8	5de8	00005de8	a5a8	a5a8	a5a8	a5a8	a5a8	a5a8	a5a8
823	a5a9	a5a9	a5a9	*	4649	*	8ea1c6c9,c6c9,8ea1c6c9v,c6c9v	5de7	e5b7a7	5de7	00005de7	a5a9	a5a9	a5a9	a5a9	a5a9	a5a9	a5a9
824	a5aa	a5aa	a5aa	*	464a	*	8ea1c6ca,c6ca,8ea1c6cav,c6cav	5de6	e5b7a6	5de6	00005de6	a5aa	a5aa	a5aa	a5aa	a5aa	a5aa	a5aa
825	a5ab	a5ab	a5ab	*	464b	*	8ea1c6cb,c6cb,8ea1c6cbv,c6cbv	5e02	e5b882	5e02	00005e02	a5ab	a5ab	a5ab	a5ab	a5ab	a5ab	a5ab
826	a5ac	a5ac	a5ac	*	464c	*	8ea1c6cc,c6cc,8ea1c6ccv,c6ccv	5e03	e5b883	5e03	00005e03	a5ac	a5ac	a5ac	a5ac	a5ac	a5ac	a5ac
827	a5ad	a5ad	a5ad	*	464d	*	8ea1c6cd,c6cd,8ea1c6cdv,c6cdv	5e73	e5b9b3	5e73	00005e73	a5ad	a5ad	a5ad	a5ad	a5ad	a5ad	a5ad
828	a5ae	a5ae	a5ae	*	464e	*	8ea1c6ce,c6ce,8ea1c6cev,c6cev	5e7c	e5b9bc	5e7c	00005e7c	a5ae	a5ae	a5ae	a5ae	a5ae	a5ae	a5ae
829	a5af	a5af	a5af	*	464f	*	8ea1c6cf,c6cf,8ea1c6cfv,c6cfv	5f01	e5bc81	5f01	00005f01	a5af	a5af	a5af	a5af	a5af	a5af	a5af
830	a5b0	a5b0	a5b0	*	4650	*	8ea1c6d0,c6d0,8ea1c6d0v,c6d0v	5f18	e5bc98	5f18	00005f18	a5b0	a5b0	a5b0	a5b0	a5b0	a5b0	a5b0
831	a5b1	a5b1	a5b1	*	4651	*	8ea1c6d1,c6d1,8ea1c6d1v,c6d1v	5f17	e5bc97	5f17	00005f17	a5b1	a5b1	a5b1	a5b1	a5b1	a5b1	a5b1
832	a5b2	a5b2	a5b2	*	4652	*	8ea1c6d2,c6d2,8ea1c6d2v,c6d2v	5fc5	e5bf85	5fc5	00005fc5	a5b2	a5b2	a5b2	a5b2	a5b2	a5b2	a5b2
833	a5b3	a5b3	a5b3	*	4653	*	8ea1c6d3,c6d3,8ea1c6d3v,c6d3v	620a	e6888a	620a	0000620a	a5b3	a5b3	a5b3	a5b3	a5b3	a5b3	a5b3
834	a5b4	a5b4	a5b4	*	4654	*	8ea1c6d4,c6d4,8ea1c6d4v,c6d4v	6253	e68993	6253	00006253	a5b4	a5b4	a5b4	a5b4	a5b4	a5b4	a5b4
835	a5b5	a5b5	a5b5	*	4655	*	8ea1c6d5,c6d5,8ea1c6d5v,c6d5v	6254	e68994	6254	00006254	a5b5	a5b5	a5b5	a5b5	a5b5	a5b5	a5b5
836	a5b6	a5b6	a5b6	*	4656	*	8ea1c6d6,c6d6,8ea1c6d6v,c6d6v	6252	e68992	6252	00006252	a5b6	a5b6	a5b6	a5b6	a5b6	a5b6	a5b6
837	a5b7	a5b7	a5b7	*	4657	*	8ea1c6d7,c6d7,8ea1c6d7v,c6d7v	6251	e68991	6251	00006251	a5b7	a5b7	a5b7	a5b7	a5b7	a5b7	a5b7
838	a5b8	a5b8	a5b8	*	4658	*	8ea1c6d8,c6d8,8ea1c6d8v,c6d8v	65a5	e696a5	65a5	000065a5	a5b8	a5b8	a5b8	a5b8	a5b8	a5b8	a5b8
839	a5b9	a5b9	a5b9	*	4659	*	8ea1c6d9,c6d9,8ea1c6d9v,c6d9v	65e6	e697a6	65e6	000065e6	a5b9	a5b9	a5b9	a5b9	a5b9	a5b9	a5b9
840	a5ba	a5ba	a5ba	*	465a	*	8ea1c6da,c6da,8ea1c6dav,c6dav	672e	e69cae	672e	0000672e	a5ba	a5ba	a5ba	a5ba	a5ba	a5ba	a5ba
841	a5bb	a5bb	a5bb	*	465b	*	8ea1c6db,c6db,8ea1c6dbv,c6dbv	672c	e69cac	672c	0000672c	a5bb	a5bb	a5bb	a5bb	a5bb	a5bb	a5bb
842	a5bc	a5bc	a5bc	*	465c	*	8ea1c6dc,c6dc,8ea1c6dcv,c6dcv	672a	e69caa	672a	0000672a	a5bc	a5bc	a5bc	a5bc	a5bc	a5bc	a5bc
843	a5bd	a5bd	a5bd	*	465d	*	8ea1c6dd,c6dd,8ea1c6ddv,c6ddv	672b	e69cab	672b	0000672b	a5bd	a5bd	a5bd	a5bd	a5bd	a5bd	a5bd
844	a5be	a5be	a5be	*	465e	*	8ea1c6de,c6de,8ea1c6dev,c6dev	672d	e69cad	672d	0000672d	a5be	a5be	a5be	a5be	a5be	a5be	a5be
845	a5bf	a5bf	a5bf	*	465f	*	8ea1c6df,c6df,8ea1c6dfv,c6dfv	6b63	e6ada3	6b63	00006b63	a5bf	a5bf	a5bf	a5bf	a5bf	a5bf	a5bf
846	a5c0	a5c0	a5c0	*	4660	*	8ea1c6e0,c6e0,8ea1c6e0v,c6e0v	6bcd	e6af8d	6bcd	00006bcd	a5c0	a5c0	a5c0	a5c0	a5c0	a5c0	a5c0
847	a5c1	a5c1	a5c1	*	4661	*	8ea1c6e1,c6e1,8ea1c6e1v,c6e1v	6c11	e6b091	6c11	00006c11	a5c1	a5c1	a5c1	a5c1	a5c1	a5c1	a5c1
848	a5c2	a5c2	a5c2	*	4662	*	8ea1c6e2,c6e2,8ea1c6e2v,c6e2v	6c10	e6b090	6c10	00006c10	a5c2	a5c2	a5c2	a5c2	a5c2	a5c2	a5c2
849	a5c3	a5c3	a5c3	*	4663	*	8ea1c6e3,c6e3,8ea1c6e3v,c6e3v	6c38	e6b0b8	6c38	00006c38	a5c3	a5c3	a5c3	a5c3	a5c3	a5c3	a5c3
850	a5c4	a5c4	a5c4	*	4664	*	8ea1c6e4,c6e4,8ea1c6e4v,c6e4v	6c41	e6b181	6c41	00006c41	a5c4	a5c4	a5c4	a5c4	a5c4	a5c4	a5c4
851	a5c5	a5c5	a5c5	*	4665	*	8ea1c6e5,c6e5,8ea1c6e5v,c6e5v	6c40	e6b180	6c40	00006c40	a5c5	a5c5	a5c5	a5c5	a5c5	a5c5	a5c5
852	a5c6	a5c6	a5c6	*	4666	*	8ea1c6e6,c6e6,8ea1c6e6v,c6e6v	6c3e	e6b0be	6c3e	00006c3e	a5c6	a5c6	a5c6	a5c6	a5c6	a5c6	a5c6
853	a5c7	a5c7	a5c7	*	4667	*	8ea1c6e7,c6e7,8ea1c6e7v,c6e7v	72af	e78aaf	72af	000072af	a5c7	a5c7	a5c7	a5c7	a5c7	a5c7	a5c7
854	a5c8	a5c8	a5c8	*	277e,4668	*	8ea1a7fe,8ea1c6e8,a7fe,c6e8,8ea1a7fev,8ea1c6e8v,a7fev,c6e8v	7384	e78e84,e2bd9e	7384,2f5e	00007384,00002f5e	a5c8	a5c8	a5c8	a5c8	a5c8	a5c8	a5c8
855	a5c9	a5c9	a5c9	*	2821,4669	*	8ea1a8a1,8ea1c6e9,a8a1,c6e9,8ea1a8a1v,8ea1c6e9v,a8a1v,c6e9v	7389	e78e89,e2bd9f	7389,2f5f	00007389,00002f5f	a5c9	a5c9	a5c9	a5c9	a5c9	a5c9	a5c9
856	a5ca	a5ca	a5ca	*	2822,466a	*	8ea1a8a2,8ea1c6ea,a8a2,c6ea,8ea1a8a2v,8ea1c6eav,a8a2v,c6eav	74dc	e7939c,e2bda0	74dc,2f60	000074dc,00002f60	a5ca	a5ca	a5ca	a5ca	a5ca	a5ca	a5ca
857	a5cb	a5cb	a5cb	*	2823,466b	*	8ea1a8a3,8ea1c6eb,a8a3,c6eb,8ea1a8a3v,8ea1c6ebv,a8a3v,c6ebv	74e6	e793a6,e2bda1	74e6,2f61	000074e6,00002f61	a5cb	a5cb	a5cb	a5cb	a5cb	a5cb	a5cb
858	a5cc	a5cc	a5cc	*	2824,466c	*	8ea1a8a4,8ea1c6ec,a8a4,c6ec,8ea1a8a4v,8ea1c6ecv,a8a4v,c6ecv	7518	e79498,e2bda2	7518,2f62	00007518,00002f62	a5cc	a5cc	a5cc	a5cc	a5cc	a5cc	a5cc
859	a5cd	a5cd	a5cd	*	2825,466d	*	8ea1a8a5,8ea1c6ed,a8a5,c6ed,8ea1a8a5v,8ea1c6edv,a8a5v,c6edv	751f	e7949f,e2bda3	751f,2f63	0000751f,00002f63	a5cd	a5cd	a5cd	a5cd	a5cd	a5cd	a5cd
860	a5ce	a5ce	a5ce	*	2826,466e	*	8ea1a8a6,8ea1c6ee,a8a6,c6ee,8ea1a8a6v,8ea1c6eev,a8a6v,c6eev	7528	e2bda4,e794a8	2f64,7528	00002f64,00007528	a5ce	a5ce	a5ce	a5ce	a5ce	a5ce	a5ce
861	a5cf	a5cf	a5cf	*	466f	*	8ea1c6ef,c6ef,8ea1c6efv,c6efv	7529	e794a9	7529	00007529	a5cf	a5cf	a5cf	a5cf	a5cf	a5cf	a5cf
862	a5d0	a5d0	a5d0	*	2827,4670	*	8ea1a8a7,8ea1c6f0,a8a7,c6f0,8ea1a8a7v,8ea1c6f0v,a8a7v,c6f0v	7530	e2bda5,e794b0	2f65,7530	00002f65,00007530	a5d0	a5d0	a5d0	a5d0	a5d0	a5d0	a5d0
863	a5d1	a5d1	a5d1	*	4671	*	8ea1c6f1,c6f1,8ea1c6f1v,c6f1v	7531	e794b1	7531	00007531	a5d1	a5d1	a5d1	a5d1	a5d1	a5d1	a5d1
864	a5d2	a5d2	a5d2	*	4672	*	8ea1c6f2,c6f2,8ea1c6f2v,c6f2v	7532	e794b2	7532	00007532	a5d2	a5d2	a5d2	a5d2	a5d2	a5d2	a5d2
865	a5d3	a5d3	a5d3	*	4673	*	8ea1c6f3,c6f3,8ea1c6f3v,c6f3v	7533	e794b3	7533	00007533	a5d3	a5d3	a5d3	a5d3	a5d3	a5d3	a5d3
866	a5d4	a5d4	a5d4	*	2828,4674	*	8ea1a8a8,8ea1c6f4,a8a8,c6f4,8ea1a8a8v,8ea1c6f4v,a8a8v,c6f4v	758b	e2bda6,e7968b	2f66,758b	00002f66,0000758b	a5d4	a5d4	a5d4	a5d4	a5d4	a5d4	a5d4
867	a5d5	a5d5	a5d5	*	282b,4675	*	8ea1a8ab,8ea1c6f5,a8ab,c6f5,8ea1a8abv,8ea1c6f5v,a8abv,c6f5v	767d	e799bd,e2bda9	767d,2f69	0000767d,00002f69	a5d5	a5d5	a5d5	a5d5	a5d5	a5d5	a5d5
868	a5d6	a5d6	a5d6	*	282c,4676	*	8ea1a8ac,8ea1c6f6,a8ac,c6f6,8ea1a8acv,8ea1c6f6v,a8acv,c6f6v	76ae	e79aae,e2bdaa	76ae,2f6a	000076ae,00002f6a	a5d6	a5d6	a5d6	a5d6	a5d6	a5d6	a5d6
869	a5d7	a5d7	a5d7	*	282d,4677	*	8ea1a8ad,8ea1c6f7,a8ad,c6f7,8ea1a8adv,8ea1c6f7v,a8adv,c6f7v	76bf	e79abf,e2bdab	76bf,2f6b	000076bf,00002f6b	a5d7	a5d7	a5d7	a5d7	a5d7	a5d7	a5d7
870	a5d8	a5d8	a5d8	*	282e,4678	*	8ea1a8ae,8ea1c6f8,a8ae,c6f8,8ea1a8aev,8ea1c6f8v,a8aev,c6f8v	76ee	e79bae,e2bdac	76ee,2f6c	000076ee,00002f6c	a5d8	a5d8	a5d8	a5d8	a5d8	a5d8	a5d8
871	a5d9	a5d9	a5d9	*	282f,4679	*	8ea1a8af,8ea1c6f9,a8af,c6f9,8ea1a8afv,8ea1c6f9v,a8afv,c6f9v	77db	e79f9b,e2bdad	77db,2f6d	000077db,00002f6d	a5d9	a5d9	a5d9	a5d9	a5d9	a5d9	a5d9
872	a5da	a5da	a5da	*	2830,467a	*	8ea1a8b0,8ea1c6fa,a8b0,c6fa,8ea1a8b0v,8ea1c6fav,a8b0v,c6fav	77e2	e79fa2,e2bdae	77e2,2f6e	000077e2,00002f6e	a5da	a5da	a5da	a5da	a5da	a5da	a5da
873	a5db	a5db	a5db	*	2831,467b	*	8ea1a8b1,8ea1c6fb,a8b1,c6fb,8ea1a8b1v,8ea1c6fbv,a8b1v,c6fbv	77f3	e79fb3,e2bdaf	77f3,2f6f	000077f3,00002f6f	a5db	a5db	a5db	a5db	a5db	a5db	a5db
874	a5dc	a5dc	a5dc	*	2832,467c	*	8ea1a8b2,8ea1c6fc,a8b2,c6fc,8ea1a8b2v,8ea1c6fcv,a8b2v,c6fcv	793a	e7a4ba,e2bdb0	793a,2f70	0000793a,00002f70	a5dc	a5dc	a5dc	a5dc	a5dc	a5dc	a5dc
875	a5dd	a5dd	a5dd	*	2834,467d	*	8ea1a8b4,8ea1c6fd,a8b4,c6fd,8ea1a8b4v,8ea1c6fdv,a8b4v,c6fdv	79be	e7a6be,e2bdb2	79be,2f72	000079be,00002f72	a5dd	a5dd	a5dd	a5dd	a5dd	a5dd	a5dd
876	a5de	a5de	a5de	*	2835,467e	*	8ea1a8b5,8ea1c6fe,a8b5,c6fe,8ea1a8b5v,8ea1c6fev,a8b5v,c6fev	7a74	e7a9b4,e2bdb3	7a74,2f73	00007a74,00002f73	a5de	a5de	a5de	a5de	a5de	a5de	a5de
877	a5df	a5df	a5df	*	2836,4721	*	8ea1a8b6,8ea1c7a1,a8b6,c7a1,8ea1a8b6v,8ea1c7a1v,a8b6v,c7a1v	7acb	e7ab8b,e2bdb4	7acb,2f74	00007acb,00002f74	a5df	a5df	a5df	a5df	a5df	a5df	a5df
878	a5e0	a5e0	a5e0	*	4722	*	8ea1c7a2,c7a2,8ea1c7a2v,c7a2v	4e1e	e4b89e	4e1e	00004e1e	a5e0	a5e0	a5e0	a5e0	a5e0	a5e0	a5e0
879	a5e1	a5e1	a5e1	*	4723	*	8ea1c7a3,c7a3,8ea1c7a3v,c7a3v	4e1f	e4b89f	4e1f	00004e1f	a5e1	a5e1	a5e1	a5e1	a5e1	a5e1	a5e1
880	a5e2	a5e2	a5e2	*	4724	*	8ea1c7a4,c7a4,8ea1c7a4v,c7a4v	4e52	e4b992	4e52	00004e52	a5e2	a5e2	a5e2	a5e2	a5e2	a5e2	a5e2
881	a5e3	a5e3	a5e3	*	4725	*	8ea1c7a5,c7a5,8ea1c7a5v,c7a5v	4e53	e4b993	4e53	00004e53	a5e3	a5e3	a5e3	a5e3	a5e3	a5e3	a5e3
882	a5e4	a5e4	a5e4	*	4726	*	8ea1c7a6,c7a6,8ea1c7a6v,c7a6v	4e69	e4b9a9	4e69	00004e69	a5e4	a5e4	a5e4	a5e4	a5e4	a5e4	a5e4
883	a5e5	a5e5	a5e5	*	4727	*	8ea1c7a7,c7a7,8ea1c7a7v,c7a7v	4e99	e4ba99	4e99	00004e99	a5e5	a5e5	a5e5	a5e5	a5e5	a5e5	a5e5
884	a5e6	a5e6	a5e6	*	4728	*	8ea1c7a8,c7a8,8ea1c7a8v,c7a8v	4ea4	e4baa4	4ea4	00004ea4	a5e6	a5e6	a5e6	a5e6	a5e6	a5e6	a5e6
885	a5e7	a5e7	a5e7	*	4729	*	8ea1c7a9,c7a9,8ea1c7a9v,c7a9v	4ea6	e4baa6	4ea6	00004ea6	a5e7	a5e7	a5e7	a5e7	a5e7	a5e7	a5e7
886	a5e8	a5e8	a5e8	*	472a	*	8ea1c7aa,c7aa,8ea1c7aav,c7aav	4ea5	e4baa5	4ea5	00004ea5	a5e8	a5e8	a5e8	a5e8	a5e8	a5e8	a5e8
887	a5e9	a5e9	a5e9	*	472b	*	8ea1c7ab,c7ab,8ea1c7abv,c7abv	4eff	e4bbbf	4eff	00004eff	a5e9	a5e9	a5e9	a5e9	a5e9	a5e9	a5e9
888	a5ea	a5ea	a5ea	*	472c	*	8ea1c7ac,c7ac,8ea1c7acv,c7acv	4f09	e4bc89	4f09	00004f09	a5ea	a5ea	a5ea	a5ea	a5ea	a5ea	a5ea
889	a5eb	a5eb	a5eb	*	472d	*	8ea1c7ad,c7ad,8ea1c7adv,c7adv	4f19	e4bc99	4f19	00004f19	a5eb	a5eb	a5eb	a5eb	a5eb	a5eb	a5eb
890	a5ec	a5ec	a5ec	*	472e	*	8ea1c7ae,c7ae,8ea1c7aev,c7aev	4f0a	e4bc8a	4f0a	00004f0a	a5ec	a5ec	a5ec	a5ec	a5ec	a5ec	a5ec
891	a5ed	a5ed	a5ed	*	472f	*	8ea1c7af,c7af,8ea1c7afv,c7afv	4f15	e4bc95	4f15	00004f15	a5ed	a5ed	a5ed	a5ed	a5ed	a5ed	a5ed
892	a5ee	a5ee	a5ee	*	4730	*	8ea1c7b0,c7b0,8ea1c7b0v,c7b0v	4f0d	e4bc8d	4f0d	00004f0d	a5ee	a5ee	a5ee	a5ee	a5ee	a5ee	a5ee
893	a5ef	a5ef	a5ef	*	4731	*	8ea1c7b1,c7b1,8ea1c7b1v,c7b1v	4f10	e4bc90	4f10	00004f10	a5ef	a5ef	a5ef	a5ef	a5ef	a5ef	a5ef
894	a5f0	a5f0	a5f0	*	4732	*	8ea1c7b2,c7b2,8ea1c7b2v,c7b2v	4f11	e4bc91	4f11	00004f11	a5f0	a5f0	a5f0	a5f0	a5f0	a5f0	a5f0
895	a5f1	a5f1	a5f1	*	4733	*	8ea1c7b3,c7b3,8ea1c7b3v,c7b3v	4f0f	e4bc8f	4f0f	00004f0f	a5f1	a5f1	a5f1	a5f1	a5f1	a5f1	a5f1
896	a5f2	a5f2	a5f2	*	4734	*	8ea1c7b4,c7b4,8ea1c7b4v,c7b4v	4ef2	e4bbb2	4ef2	00004ef2	a5f2	a5f2	a5f2	a5f2	a5f2	a5f2	a5f2
897	a5f3	a5f3	a5f3	*	4735	*	8ea1c7b5,c7b5,8ea1c7b5v,c7b5v	4ef6	e4bbb6	4ef6	00004ef6	a5f3	a5f3	a5f3	a5f3	a5f3	a5f3	a5f3
898	a5f4	a5f4	a5f4	*	4736	*	8ea1c7b6,c7b6,8ea1c7b6v,c7b6v	4efb	e4bbbb	4efb	00004efb	a5f4	a5f4	a5f4	a5f4	a5f4	a5f4	a5f4
899	a5f5	a5f5	a5f5	*	4737	*	8ea1c7b7,c7b7,8ea1c7b7v,c7b7v	4ef0	e4bbb0	4ef0	00004ef0	a5f5	a5f5	a5f5	a5f5	a5f5	a5f5	a5f5
900	a5f6	a5f6	a5f6	*	4738	*	8ea1c7b8,c7b8,8ea1c7b8v,c7b8v	4ef3	e4bbb3	4ef3	00004ef3	a5f6	a5f6	a5f6	a5f6	a5f6	a5f6	a5f6
901	a5f7	a5f7	a5f7	*	4739	*	8ea1c7b9,c7b9,8ea1c7b9v,c7b9v	4efd	e4bbbd	4efd	00004efd	a5f7	a5f7	a5f7	a5f7	a5f7	a5f7	a5f7
902	a5f8	a5f8	a5f8	*	473a	*	8ea1c7ba,c7ba,8ea1c7bav,c7bav	4f01	e4bc81	4f01	00004f01	a5f8	a5f8	a5f8	a5f8	a5f8	a5f8	a5f8
903	a5f9	a5f9	a5f9	*	473b	*	8ea1c7bb,c7bb,8ea1c7bbv,c7bbv	4f0b	e4bc8b	4f0b	00004f0b	a5f9	a5f9	a5f9	a5f9	a5f9	a5f9	a5f9
904	a5fa	a5fa	a5fa	*	473c	*	8ea1c7bc,c7bc,8ea1c7bcv,c7bcv	5149	e58589	5149	00005149	a5fa	a5fa	a5fa	a5fa	a5fa	a5fa	a5fa
905	a5fb	a5fb	a5fb	*	473d	*	8ea1c7bd,c7bd,8ea1c7bdv,c7bdv	5147	e58587	5147	00005147	a5fb	a5fb	a5fb	a5fb	a5fb	a5fb	a5fb
906	a5fc	a5fc	a5fc	*	473e	*	8ea1c7be,c7be,8ea1c7bev,c7bev	5146	e58586	5146	00005146	a5fc	a5fc	a5fc	a5fc	a5fc	a5fc	a5fc
907	a5fd	a5fd	a5fd	*	473f	*	8ea1c7bf,c7bf,8ea1c7bfv,c7bfv	5148	e58588	5148	00005148	a5fd	a5fd	a5fd	a5fd	a5fd	a5fd	a5fd
908	a5fe	a5fe	a5fe	*	4740	*	8ea1c7c0,c7c0,8ea1c7c0v,c7c0v	5168	e585a8	5168	00005168	a5fe	a5fe	a5fe	a5fe	a5fe	a5fe	a5fe
909	a640	a640	a640	*	4741	*	8ea1c7c1,c7c1,8ea1c7c1v,c7c1v	5171	e585b1	5171	00005171	a640	a640	a640	a640	a640	a640	a640
910	a641	a641	a641	*	4742	*	8ea1c7c2,c7c2,8ea1c7c2v,c7c2v	518d	e5868d	518d	0000518d	a641	a641	a641	a641	a641	a641	a641
911	a642	a642	a642	*	4743	*	8ea1c7c3,c7c3,8ea1c7c3v,c7c3v	51b0	e586b0	51b0	000051b0	a642	a642	a642	a642	a642	a642	a642
912	a643	a643	a643	*	4744	*	8ea1c7c4,c7c4,8ea1c7c4v,c7c4v	5217	e58897	5217	00005217	a643	a643	a643	a643	a643	a643	a643
913	a644	a644	a644	*	4745	*	8ea1c7c5,c7c5,8ea1c7c5v,c7c5v	5211	e58891	5211	00005211	a644	a644	a644	a644	a644	a644	a644
914	a645	a645	a645	*	4746	*	8ea1c7c6,c7c6,8ea1c7c6v,c7c6v	5212	e58892	5212	00005212	a645	a645	a645	a645	a645	a645	a645
915	a646	a646	a646	*	4747	*	8ea1c7c7,c7c7,8ea1c7c7v,c7c7v	520e	e5888e	520e	0000520e	a646	a646	a646	a646	a646	a646	a646
916	a647	a647	a647	*	4748	*	8ea1c7c8,c7c8,8ea1c7c8v,c7c8v	5216	e58896	5216	00005216	a647	a647	a647	a647	a647	a647	a647
917	a648	a648	a648	*	4749	*	8ea1c7c9,c7c9,8ea1c7c9v,c7c9v	52a3	e58aa3	52a3	000052a3	a648	a648	a648	a648	a648	a648	a648
918	a649	a649	a649	*	474a	*	8ea1c7ca,c7ca,8ea1c7cav,c7cav	5308	e58c88	5308	00005308	a649	a649	a649	a649	a649	a649	a649
919	a64a	a64a	a64a	*	474b	*	8ea1c7cb,c7cb,8ea1c7cbv,c7cbv	5321	e58ca1	5321	00005321	a64a	a64a	a64a	a64a	a64a	a64a	a64a
920	a64b	a64b	a64b	*	474c	*	8ea1c7cc,c7cc,8ea1c7ccv,c7ccv	5320	e58ca0	5320	00005320	a64b	a64b	a64b	a64b	a64b	a64b	a64b
921	a64c	a64c	a64c	*	474d	*	8ea1c7cd,c7cd,8ea1c7cdv,c7cdv	5370	e58db0	5370	00005370	a64c	a64c	a64c	a64c	a64c	a64c	a64c
922	a64d	a64d	a64d	*	474e	*	8ea1c7ce,c7ce,8ea1c7cev,c7cev	5371	e58db1	5371	00005371	a64d	a64d	a64d	a64d	a64d	a64d	a64d
923	a64e	a64e	a64e	*	474f	*	8ea1c7cf,c7cf,8ea1c7cfv,c7cfv	5409	e59089	5409	00005409	a64e	a64e	a64e	a64e	a64e	a64e	a64e
924	a64f	a64f	a64f	*	4750	*	8ea1c7d0,c7d0,8ea1c7d0v,c7d0v	540f	e5908f	540f	0000540f	a64f	a64f	a64f	a64f	a64f	a64f	a64f
925	a650	a650	a650	*	4751	*	8ea1c7d1,c7d1,8ea1c7d1v,c7d1v	540c	e5908c	540c	0000540c	a650	a650	a650	a650	a650	a650	a650
926	a651	a651	a651	*	4752	*	8ea1c7d2,c7d2,8ea1c7d2v,c7d2v	540a	e5908a	540a	0000540a	a651	a651	a651	a651	a651	a651	a651
927	a652	a652	a652	*	4753	*	8ea1c7d3,c7d3,8ea1c7d3v,c7d3v	5410	e59090	5410	00005410	a652	a652	a652	a652	a652	a652	a652
928	a653	a653	a653	*	4754	*	8ea1c7d4,c7d4,8ea1c7d4v,c7d4v	5401	e59081	5401	00005401	a653	a653	a653	a653	a653	a653	a653
929	a654	a654	a654	*	4755	*	8ea1c7d5,c7d5,8ea1c7d5v,c7d5v	540b	e5908b	540b	0000540b	a654	a654	a654	a654	a654	a654	a654
930	a655	a655	a655	*	4756	*	8ea1c7d6,c7d6,8ea1c7d6v,c7d6v	5404	e59084	5404	00005404	a655	a655	a655	a655	a655	a655	a655
931	a656	a656	a656	*	4757	*	8ea1c7d7,c7d7,8ea1c7d7v,c7d7v	5411	e59091	5411	00005411	a656	a656	a656	a656	a656	a656	a656
932	a657	a657	a657	*	4758	*	8ea1c7d8,c7d8,8ea1c7d8v,c7d8v	540d	e5908d	540d	0000540d	a657	a657	a657	a657	a657	a657	a657
933	a658	a658	a658	*	4759	*	8ea1c7d9,c7d9,8ea1c7d9v,c7d9v	5408	e59088	5408	00005408	a658	a658	a658	a658	a658	a658	a658
934	a659	a659	a659	*	475a	*	8ea1c7da,c7da,8ea1c7dav,c7dav	5403	e59083	5403	00005403	a659	a659	a659	a659	a659	a659	a659
935	a65a	a65a	a65a	*	475b	*	8ea1c7db,c7db,8ea1c7dbv,c7dbv	540e	e5908e	540e	0000540e	a65a	a65a	a65a	a65a	a65a	a65a	a65a
936	a65b	a65b	a65b	*	475c	*	8ea1c7dc,c7dc,8ea1c7dcv,c7dcv	5406	e59086	5406	00005406	a65b	a65b	a65b	a65b	a65b	a65b	a65b
937	a65c	a65c	a65c	*	475d	*	8ea1c7dd,c7dd,8ea1c7ddv,c7ddv	5412	e59092	5412	00005412	a65c	a65c	a65c	a65c	a65c	a65c	a65c
938	a65d	a65d	a65d	*	475e	*	8ea1c7de,c7de,8ea1c7dev,c7dev	56e0	e59ba0	56e0	000056e0	a65d	a65d	a65d	a65d	a65d	a65d	a65d
939	a65e	a65e	a65e	*	475f	*	8ea1c7df,c7df,8ea1c7dfv,c7dfv	56de	e59b9e	56de	000056de	a65e	a65e	a65e	a65e	a65e	a65e	a65e
940	a65f	a65f	a65f	*	4760	*	8ea1c7e0,c7e0,8ea1c7e0v,c7e0v	56dd	e59b9d	56dd	000056dd	a65f	a65f	a65f	a65f	a65f	a65f	a65f
941	a660	a660	a660	*	4761	*	8ea1c7e1,c7e1,8ea1c7e1v,c7e1v	5733	e59cb3	5733	00005733	a660	a660	a660	a660	a660	a660	a660
942	a661	a661	a661	*	4762	*	8ea1c7e2,c7e2,8ea1c7e2v,c7e2v	5730	e59cb0	5730	00005730	a661	a661	a661	a661	a661	a661	a661
943	a662	a662	a662	*	4763	*	8ea1c7e3,c7e3,8ea1c7e3v,c7e3v	5728	e59ca8	5728	00005728	a662	a662	a662	a662	a662	a662	a662
944	a663	a663	a663	*	4764	*	8ea1c7e4,c7e4,8ea1c7e4v,c7e4v	572d	e59cad	572d	0000572d	a663	a663	a663	a663	a663	a663	a663
945	a664	a664	a664	*	4765	*	8ea1c7e5,c7e5,8ea1c7e5v,c7e5v	572c	e59cac	572c	0000572c	a664	a664	a664	a664	a664	a664	a664
946	a665	a665	a665	*	4766	*	8ea1c7e6,c7e6,8ea1c7e6v,c7e6v	572f	e59caf	572f	0000572f	a665	a665	a665	a665	a665	a665	a665
947	a666	a666	a666	*	4767	*	8ea1c7e7,c7e7,8ea1c7e7v,c7e7v	5729	e59ca9	5729	00005729	a666	a666	a666	a666	a666	a666	a666
948	a667	a667	a667	*	4768	*	8ea1c7e8,c7e8,8ea1c7e8v,c7e8v	5919	e5a499	5919	00005919	a667	a667	a667	a667	a667	a667	a667
949	a668	a668	a668	*	4769	*	8ea1c7e9,c7e9,8ea1c7e9v,c7e9v	591a	e5a49a	591a	0000591a	a668	a668	a668	a668	a668	a668	a668
950	a669	a669	a669	*	476a	*	8ea1c7ea,c7ea,8ea1c7eav,c7eav	5937	e5a4b7	5937	00005937	a669	a669	a669	a669	a669	a669	a669
951	a66a	a66a	a66a	*	476b	*	8ea1c7eb,c7eb,8ea1c7ebv,c7ebv	5938	e5a4b8	5938	00005938	a66a	a66a	a66a	a66a	a66a	a66a	a66a
952	a66b	a66b	a66b	*	476c	*	8ea1c7ec,c7ec,8ea1c7ecv,c7ecv	5984	e5a684	5984	00005984	a66b	a66b	a66b	a66b	a66b	a66b	a66b
953	a66c	a66c	a66c	*	476d	*	8ea1c7ed,c7ed,8ea1c7edv,c7edv	5978	e5a5b8	5978	00005978	a66c	a66c	a66c	a66c	a66c	a66c	a66c
954	a66d	a66d	a66d	*	476e	*	8ea1c7ee,c7ee,8ea1c7eev,c7eev	5983	e5a683	5983	00005983	a66d	a66d	a66d	a66d	a66d	a66d	a66d
955	a66e	a66e	a66e	*	476f	*	8ea1c7ef,c7ef,8ea1c7efv,c7efv	597d	e5a5bd	597d	0000597d	a66e	a66e	a66e	a66e	a66e	a66e	a66e
956	a66f	a66f	a66f	*	4770	*	8ea1c7f0,c7f0,8ea1c7f0v,c7f0v	5979	e5a5b9	5979	00005979	a66f	a66f	a66f	a66f	a66f	a66f	a66f
957	a670	a670	a670	*	4771	*	8ea1c7f1,c7f1,8ea1c7f1v,c7f1v	5982	e5a682	5982	00005982	a670	a670	a670	a670	a670	a670	a670
958	a671	a671	a671	*	4772	*	8ea1c7f2,c7f2,8ea1c7f2v,c7f2v	5981	e5a681	5981	00005981	a671	a671	a671	a671	a671	a671	a671
959	a672	a672	a672	*	4773	*	8ea1c7f3,c7f3,8ea1c7f3v,c7f3v	5b57	e5ad97	5b57	00005b57	a672	a672	a672	a672	a672	a672	a672
960	a673	a673	a673	*	4774	*	8ea1c7f4,c7f4,8ea1c7f4v,c7f4v	5b58	e5ad98	5b58	00005b58	a673	a673	a673	a673	a673	a673	a673
961	a674	a674	a674	*	4775	*	8ea1c7f5,c7f5,8ea1c7f5v,c7f5v	5b87	e5ae87	5b87	00005b87	a674	a674	a674	a674	a674	a674	a674
962	a675	a675	a675	*	4776	*	8ea1c7f6,c7f6,8ea1c7f6v,c7f6v	5b88	e5ae88	5b88	00005b88	a675	a675	a675	a675	a675	a675	a675
963	a676	a676	a676	*	4777	*	8ea1c7f7,c7f7,8ea1c7f7v,c7f7v	5b85	e5ae85	5b85	00005b85	a676	a676	a676	a676	a676	a676	a676
964	a677	a677	a677	*	4778	*	8ea1c7f8,c7f8,8ea1c7f8v,c7f8v	5b89	e5ae89	5b89	00005b89	a677	a677	a677	a677	a677	a677	a677
965	a678	a678	a678	*	4779	*	8ea1c7f9,c7f9,8ea1c7f9v,c7f9v	5bfa	e5afba	5bfa	00005bfa	a678	a678	a678	a678	a678	a678	a678
966	a679	a679	a679	*	477a	*	8ea1c7fa,c7fa,8ea1c7fav,c7fav	5c16	e5b096	5c16	00005c16	a679	a679	a679	a679	a679	a679	a679
967	a67a	a67a	a67a	*	477b	*	8ea1c7fb,c7fb,8ea1c7fbv,c7fbv	5c79	e5b1b9	5c79	00005c79	a67a	a67a	a67a	a67a	a67a	a67a	a67a
968	a67b	a67b	a67b	*	477c	*	8ea1c7fc,c7fc,8ea1c7fcv,c7fcv	5dde	e5b79e	5dde	00005dde	a67b	a67b	a67b	a67b	a67b	a67b	a67b
969	a67c	a67c	a67c	*	477d	*	8ea1c7fd,c7fd,8ea1c7fdv,c7fdv	5e06	e5b886	5e06	00005e06	a67c	a67c	a67c	a67c	a67c	a67c	a67c
970	a67d	a67d	a67d	*	477e	*	8ea1c7fe,c7fe,8ea1c7fev,c7fev	5e76	e5b9b6	5e76	00005e76	a67d	a67d	a67d	a67d	a67d	a67d	a67d
971	a67e	a67e	a67e	*	4821	*	8ea1c8a1,c8a1,8ea1c8a1v,c8a1v	5e74	e5b9b4	5e74	00005e74	a67e	a67e	a67e	a67e	a67e	a67e	a67e
972	a6a1	a6a1	a6a1	*	4822	*	8ea1c8a2,c8a2,8ea1c8a2v,c8a2v	5f0f	e5bc8f	5f0f	00005f0f	a6a1	a6a1	a6a1	a6a1	a6a1	a6a1	a6a1
973	a6a2	a6a2	a6a2	*	4823	*	8ea1c8a3,c8a3,8ea1c8a3v,c8a3v	5f1b	e5bc9b	5f1b	00005f1b	a6a2	a6a2	a6a2	a6a2	a6a2	a6a2	a6a2
974	a6a3	a6a3	a6a3	*	4824	*	8ea1c8a4,c8a4,8ea1c8a4v,c8a4v	5fd9	e5bf99	5fd9	00005fd9	a6a3	a6a3	a6a3	a6a3	a6a3	a6a3	a6a3
975	a6a4	a6a4	a6a4	*	4825	*	8ea1c8a5,c8a5,8ea1c8a5v,c8a5v	5fd6	e5bf96	5fd6	00005fd6	a6a4	a6a4	a6a4	a6a4	a6a4	a6a4	a6a4
976	a6a5	a6a5	a6a5	*	4826	*	8ea1c8a6,c8a6,8ea1c8a6v,c8a6v	620e	e6888e	620e	0000620e	a6a5	a6a5	a6a5	a6a5	a6a5	a6a5	a6a5
977	a6a6	a6a6	a6a6	*	4827	*	8ea1c8a7,c8a7,8ea1c8a7v,c8a7v	620c	e6888c	620c	0000620c	a6a6	a6a6	a6a6	a6a6	a6a6	a6a6	a6a6
978	a6a7	a6a7	a6a7	*	4828	*	8ea1c8a8,c8a8,8ea1c8a8v,c8a8v	620d	e6888d	620d	0000620d	a6a7	a6a7	a6a7	a6a7	a6a7	a6a7	a6a7
979	a6a8	a6a8	a6a8	*	4829	*	8ea1c8a9,c8a9,8ea1c8a9v,c8a9v	6210	e68890	6210	00006210	a6a8	a6a8	a6a8	a6a8	a6a8	a6a8	a6a8
980	a6a9	a6a9	a6a9	*	482a	*	8ea1c8aa,c8aa,8ea1c8aav,c8aav	6263	e689a3	6263	00006263	a6a9	a6a9	a6a9	a6a9	a6a9	a6a9	a6a9
981	a6aa	a6aa	a6aa	*	482b	*	8ea1c8ab,c8ab,8ea1c8abv,c8abv	625b	e6899b	625b	0000625b	a6aa	a6aa	a6aa	a6aa	a6aa	a6aa	a6aa
982	a6ab	a6ab	a6ab	*	482c	*	8ea1c8ac,c8ac,8ea1c8acv,c8acv	6258	e68998	6258	00006258	a6ab	a6ab	a6ab	a6ab	a6ab	a6ab	a6ab
983	a6ac	a6ac	a6ac	*	482d	*	8ea1c8ad,c8ad,8ea1c8adv,c8adv	6536	e694b6	6536	00006536	a6ac	a6ac	a6ac	a6ac	a6ac	a6ac	a6ac
984	a6ad	a6ad	a6ad	*	482e	*	8ea1c8ae,c8ae,8ea1c8aev,c8aev	65e9	e697a9	65e9	000065e9	a6ad	a6ad	a6ad	a6ad	a6ad	a6ad	a6ad
985	a6ae	a6ae	a6ae	*	482f	*	8ea1c8af,c8af,8ea1c8afv,c8afv	65e8	e697a8	65e8	000065e8	a6ae	a6ae	a6ae	a6ae	a6ae	a6ae	a6ae
986	a6af	a6af	a6af	*	4830	*	8ea1c8b0,c8b0,8ea1c8b0v,c8b0v	65ec	e697ac	65ec	000065ec	a6af	a6af	a6af	a6af	a6af	a6af	a6af
987	a6b0	a6b0	a6b0	*	4831	*	8ea1c8b1,c8b1,8ea1c8b1v,c8b1v	65ed	e697ad	65ed	000065ed	a6b0	a6b0	a6b0	a6b0	a6b0	a6b0	a6b0
988	a6b1	a6b1	a6b1	*	4832	*	8ea1c8b2,c8b2,8ea1c8b2v,c8b2v	66f2	e69bb2	66f2	000066f2	a6b1	a6b1	a6b1	a6b1	a6b1	a6b1	a6b1
989	a6b2	a6b2	a6b2	*	4833	*	8ea1c8b3,c8b3,8ea1c8b3v,c8b3v	66f3	e69bb3	66f3	000066f3	a6b2	a6b2	a6b2	a6b2	a6b2	a6b2	a6b2
990	a6b3	a6b3	a6b3	*	4834	*	8ea1c8b4,c8b4,8ea1c8b4v,c8b4v	6709	e69c89	6709	00006709	a6b3	a6b3	a6b3	a6b3	a6b3	a6b3	a6b3
991	a6b4	a6b4	a6b4	*	4835	*	8ea1c8b5,c8b5,8ea1c8b5v,c8b5v	673d	e69cbd	673d	0000673d	a6b4	a6b4	a6b4	a6b4	a6b4	a6b4	a6b4
992	a6b5	a6b5	a6b5	*	4836	*	8ea1c8b6,c8b6,8ea1c8b6v,c8b6v	6734	e69cb4	6734	00006734	a6b5	a6b5	a6b5	a6b5	a6b5	a6b5	a6b5
993	a6b6	a6b6	a6b6	*	4837	*	8ea1c8b7,c8b7,8ea1c8b7v,c8b7v	6731	e69cb1	6731	00006731	a6b6	a6b6	a6b6	a6b6	a6b6	a6b6	a6b6
994	a6b7	a6b7	a6b7	*	4838	*	8ea1c8b8,c8b8,8ea1c8b8v,c8b8v	6735	e69cb5	6735	00006735	a6b7	a6b7,fcac	a6b7	a6b7	a6b7	a6b7	a6b7
995	a6b8	a6b8	a6b8	*	4839	*	8ea1c8b9,c8b9,8ea1c8b9v,c8b9v	6b21	e6aca1	6b21	00006b21	a6b8	a6b8	a6b8	a6b8	a6b8	a6b8	a6b8
996	a6b9	a6b9	a6b9	*	483a	*	8ea1c8ba,c8ba,8ea1c8bav,c8bav	6b64	e6ada4	6b64	00006b64	a6b9	a6b9	a6b9	a6b9	a6b9	a6b9	a6b9
997	a6ba	a6ba	a6ba	*	483b	*	8ea1c8bb,c8bb,8ea1c8bbv,c8bbv	6b7b	e6adbb	6b7b	00006b7b	a6ba	a6ba	a6ba	a6ba	a6ba	a6ba	a6ba
998	a6bb	a6bb	a6bb	*	483c	*	8ea1c8bc,c8bc,8ea1c8bcv,c8bcv	6c16	e6b096	6c16	00006c16	a6bb	a6bb	a6bb	a6bb	a6bb	a6bb	a6bb
999	a6bc	a6bc	a6bc	*	483d	*	8ea1c8bd,c8bd,8ea1c8bdv,c8bdv	6c5d	e6b19d	6c5d	00006c5d	a6bc	a6bc	a6bc	a6bc	a6bc	a6bc	a6bc
1000	a6bd	a6bd	a6bd	*	483e	*	8ea1c8be,c8be,8ea1c8bev,c8bev	6c57	e6b197	6c57	00006c57	a6bd	a6bd	a6bd	a6bd	a6bd	a6bd	a6bd
1001	a6be	a6be	a6be	*	483f	*	8ea1c8bf,c8bf,8ea1c8bfv,c8bfv	6c59	e6b199	6c59	00006c59	a6be	a6be	a6be	a6be	a6be	a6be	a6be
1002	a6bf	a6bf	a6bf	*	4840	*	8ea1c8c0,c8c0,8ea1c8c0v,c8c0v	6c5f	e6b19f	6c5f	00006c5f	a6bf	a6bf	a6bf	a6bf	a6bf	a6bf	a6bf
1003	a6c0	a6c0	a6c0	*	4841	*	8ea1c8c1,c8c1,8ea1c8c1v,c8c1v	6c60	e6b1a0	6c60	00006c60	a6c0	a6c0	a6c0	a6c0	a6c0	a6c0	a6c0
1004	a6c1	a6c1	a6c1	*	4842	*	8ea1c8c2,c8c2,8ea1c8c2v,c8c2v	6c50	e6b190	6c50	00006c50	a6c1	a6c1	a6c1	a6c1	a6c1	a6c1	a6c1
1005	a6c2	a6c2	a6c2	*	4843	*	8ea1c8c3,c8c3,8ea1c8c3v,c8c3v	6c55	e6b195	6c55	00006c55	a6c2	a6c2	a6c2	a6c2	a6c2	a6c2	a6c2
1006	a6c3	a6c3	a6c3	*	4844	*	8ea1c8c4,c8c4,8ea1c8c4v,c8c4v	6c61	e6b1a1	6c61	00006c61	a6c3	a6c3	a6c3	a6c3	a6c3	a6c3	a6c3
1007	a6c4	a6c4	a6c4	*	4845	*	8ea1c8c5,c8c5,8ea1c8c5v,c8c5v	6c5b	e6b19b	6c5b	00006c5b	a6c4	a6c4	a6c4	a6c4	a6c4	a6c4	a6c4
1008	a6c5	a6c5	a6c5	*	4846	*	8ea1c8c6,c8c6,8ea1c8c6v,c8c6v	6c4d	e6b18d	6c4d	00006c4d	a6c5	a6c5	a6c5	a6c5	a6c5	a6c5	a6c5
1009	a6c6	a6c6	a6c6	*	4847	*	8ea1c8c7,c8c7,8ea1c8c7v,c8c7v	6c4e	e6b18e	6c4e	00006c4e	a6c6	a6c6	a6c6	a6c6	a6c6	a6c6	a6c6
1010	a6c7	a6c7	a6c7	*	4848	*	8ea1c8c8,c8c8,8ea1c8c8v,c8c8v	7070	e781b0	7070	00007070	a6c7	a6c7	a6c7	a6c7	a6c7	a6c7	a6c7
1011	a6c8	a6c8	a6c8	*	4849	*	8ea1c8c9,c8c9,8ea1c8c9v,c8c9v	725f	e7899f	725f	0000725f	a6c8	a6c8	a6c8	a6c8	a6c8	a6c8	a6c8
1012	a6c9	a6c9	a6c9	*	484a	*	8ea1c8ca,c8ca,8ea1c8cav,c8cav	725d	e7899d	725d	0000725d	a6c9	a6c9	a6c9	a6c9	a6c9	a6c9	a6c9
1013	a6ca	a6ca	a6ca	*	484b	*	8ea1c8cb,c8cb,8ea1c8cbv,c8cbv	767e	e799be	767e	0000767e	a6ca	a6ca	a6ca	a6ca	a6ca	a6ca	a6ca
1014	a6cb	a6cb	a6cb	*	2837,484c	*	8ea1a8b7,8ea1c8cc,a8b7,c8cc,8ea1a8b7v,8ea1c8ccv,a8b7v,c8ccv	7af9	e7abb9,e2bdb5	7af9,2f75	00007af9,00002f75	a6cb	a6cb	a6cb	a6cb	a6cb	a6cb	a6cb
1015	a6cc	a6cc	a6cc	*	2838,484d	*	8ea1a8b8,8ea1c8cd,a8b8,c8cd,8ea1a8b8v,8ea1c8cdv,a8b8v,c8cdv	7c73	e7b1b3,e2bdb6	7c73,2f76	00007c73,00002f76	a6cc	a6cc	a6cc	a6cc	a6cc	a6cc	a6cc
1016	a6cd	a6cd	a6cd	*	2839,484e	*	8ea1a8b9,8ea1c8ce,a8b9,c8ce,8ea1a8b9v,8ea1c8cev,a8b9v,c8cev	7cf8	e7b3b8,e2bdb7	7cf8,2f77	00007cf8,00002f77	a6cd	a6cd	a6cd	a6cd	a6cd	a6cd	a6cd
1017	a6ce	a6ce	a6ce	*	283a,484f	*	8ea1a8ba,8ea1c8cf,a8ba,c8cf,8ea1a8bav,8ea1c8cfv,a8bav,c8cfv	7f36	e7bcb6,e2bdb8	7f36,2f78	00007f36,00002f78	a6ce	a6ce	a6ce	a6ce	a6ce	a6ce	a6ce
1018	a6cf	a6cf	a6cf	*	283c,4850	*	8ea1a8bc,8ea1c8d0,a8bc,c8d0,8ea1a8bcv,8ea1c8d0v,a8bcv,c8d0v	7f8a	e7be8a,e2bdba	7f8a,2f7a	00007f8a,00002f7a	a6cf	a6cf	a6cf	a6cf	a6cf	a6cf	a6cf
1019	a6d0	a6d0	a6d0	*	283d,4851	*	8ea1a8bd,8ea1c8d1,a8bd,c8d1,8ea1a8bdv,8ea1c8d1v,a8bdv,c8d1v	7fbd	e7bebd,e2bdbb	7fbd,2f7b	00007fbd,00002f7b	a6d0	a6d0	a6d0	a6d0	a6d0	a6d0	a6d0
1020	a6d1	a6d1	a6d1	*	283e,4852	*	8ea1a8be,8ea1c8d2,a8be,c8d2,8ea1a8bev,8ea1c8d2v,a8bev,c8d2v	8001	e88081,e2bdbc	8001,2f7c	00008001,00002f7c	a6d1	a6d1	a6d1	a6d1	a6d1	a6d1	a6d1
1021	a6d2	a6d2	a6d2	*	4853	*	8ea1c8d3,c8d3,8ea1c8d3v,c8d3v	8003	e88083	8003	00008003	a6d2	a6d2	a6d2	a6d2	a6d2	a6d2	a6d2
1022	a6d3	a6d3	a6d3	*	283f,4854	*	8ea1a8bf,8ea1c8d4,a8bf,c8d4,8ea1a8bfv,8ea1c8d4v,a8bfv,c8d4v	800c	e8808c,e2bdbd	800c,2f7d	0000800c,00002f7d	a6d3	a6d3	a6d3	a6d3	a6d3	a6d3	a6d3
1023	a6d4	a6d4	a6d4	*	2840,4855	*	8ea1a8c0,8ea1c8d5,a8c0,c8d5,8ea1a8c0v,8ea1c8d5v,a8c0v,c8d5v	8012	e88092,e2bdbe	8012,2f7e	00008012,00002f7e	a6d4	a6d4	a6d4	a6d4	a6d4	a6d4	a6d4
1024	a6d5	a6d5	a6d5	*	2841,4856	*	8ea1a8c1,8ea1c8d6,a8c1,c8d6,8ea1a8c1v,8ea1c8d6v,a8c1v,c8d6v	8033	e880b3,e2bdbf	8033,2f7f	00008033,00002f7f	a6d5	a6d5	a6d5	a6d5	a6d5	a6d5	a6d5
1025	a6d6	a6d6	a6d6	*	2842,4857	*	8ea1a8c2,8ea1c8d7,a8c2,c8d7,8ea1a8c2v,8ea1c8d7v,a8c2v,c8d7v	807f	e881bf,e2be80	807f,2f80	0000807f,00002f80	a6d6	a6d6	a6d6	a6d6	a6d6	a6d6	a6d6
1026	a6d7	a6d7	a6d7	*	2843,4858	*	8ea1a8c3,8ea1c8d8,a8c3,c8d8,8ea1a8c3v,8ea1c8d8v,a8c3v,c8d8v	8089	e88289,e2be81	8089,2f81	00008089,00002f81	a6d7	a6d7	a6d7	a6d7	a6d7	a6d7	a6d7
1027	a6d8	a6d8	a6d8	*	4859	*	8ea1c8d9,c8d9,8ea1c8d9v,c8d9v	808b	e8828b	808b	0000808b	a6d8	a6d8	a6d8	a6d8	a6d8	a6d8	a6d8
1028	a6d9	a6d9	a6d9	*	485a	*	8ea1c8da,c8da,8ea1c8dav,c8dav	808c	e8828c	808c	0000808c	a6d9	a6d9	a6d9	a6d9	a6d9	a6d9	a6d9
1029	a6da	a6da	a6da	*	2844,485b	*	8ea1a8c4,8ea1c8db,a8c4,c8db,8ea1a8c4v,8ea1c8dbv,a8c4v,c8dbv	81e3	e887a3,e2be82	81e3,2f82	000081e3,00002f82	a6da	a6da	a6da	a6da	a6da	a6da	a6da
1030	a6db	a6db	a6db	*	2845,485c	*	8ea1a8c5,8ea1c8dc,a8c5,c8dc,8ea1a8c5v,8ea1c8dcv,a8c5v,c8dcv	81ea	e887aa,e2be83	81ea,2f83	000081ea,00002f83	a6db	a6db	a6db	a6db	a6db	a6db	a6db
1031	a6dc	a6dc	a6dc	*	2846,485d	*	8ea1a8c6,8ea1c8dd,a8c6,c8dd,8ea1a8c6v,8ea1c8ddv,a8c6v,c8ddv	81f3	e887b3,e2be84	81f3,2f84	000081f3,00002f84	a6dc	a6dc	a6dc	a6dc	a6dc	a6dc	a6dc
1032	a6dd	a6dd	a6dd	*	2847,485e	*	8ea1a8c7,8ea1c8de,a8c7,c8de,8ea1a8c7v,8ea1c8dev,a8c7v,c8dev	81fc	e887bc,e2be85	81fc,2f85	000081fc,00002f85	a6dd	a6dd	a6dd	a6dd	a6dd	a6dd	a6dd
1033	a6de	a6de	a6de	*	2848,485f	*	8ea1a8c8,8ea1c8df,a8c8,c8df,8ea1a8c8v,8ea1c8dfv,a8c8v,c8dfv	820c	e8888c,e2be86	820c,2f86	0000820c,00002f86	a6de	a6de	a6de	a6de	a6de	a6de	a6de
1034	a6df	a6df	a6df	*	2849,4860	*	8ea1a8c9,8ea1c8e0,a8c9,c8e0,8ea1a8c9v,8ea1c8e0v,a8c9v,c8e0v	821b	e8889b,e2be87	821b,2f87	0000821b,00002f87	a6df	a6df	a6df	a6df	a6df	a6df	a6df
1035	a6e0	a6e0	a6e0	*	284a,4861	*	8ea1a8ca,8ea1c8e1,a8ca,c8e1,8ea1a8cav,8ea1c8e1v,a8cav,c8e1v	821f	e8889f,e2be88	821f,2f88	0000821f,00002f88	a6e0	a6e0	a6e0	a6e0	a6e0	a6e0	a6e0
1036	a6e1	a6e1	a6e1	*	284b,4862	*	8ea1a8cb,8ea1c8e2,a8cb,c8e2,8ea1a8cbv,8ea1c8e2v,a8cbv,c8e2v	826e	e889ae,e2be89	826e,2f89	0000826e,00002f89	a6e1	a6e1	a6e1	a6e1	a6e1	a6e1	a6e1
1037	a6e2	a6e2	a6e2	*	284c,4863	*	8ea1a8cc,8ea1c8e3,a8cc,c8e3,8ea1a8ccv,8ea1c8e3v,a8ccv,c8e3v	8272	e889b2,e2be8a	8272,2f8a	00008272,00002f8a	a6e2	a6e2	a6e2	a6e2	a6e2	a6e2	a6e2
1038	a6e3	a6e3	a6e3	*	4864	*	8ea1c8e4,c8e4,8ea1c8e4v,c8e4v	827e	e889be	827e	0000827e	a6e3	a6e3	a6e3	a6e3	a6e3	a6e3	a6e3
1039	a6e4	a6e4	a6e4	*	284f,4865	*	8ea1a8cf,8ea1c8e5,a8cf,c8e5,8ea1a8cfv,8ea1c8e5v,a8cfv,c8e5v	866b	e899ab,e2be8d	866b,2f8d	0000866b,00002f8d	a6e4	a6e4	a6e4	a6e4	a6e4	a6e4	a6e4
1040	a6e5	a6e5	a6e5	*	2850,4866	*	8ea1a8d0,8ea1c8e6,a8d0,c8e6,8ea1a8d0v,8ea1c8e6v,a8d0v,c8e6v	8840	e8a180,e2be8e	8840,2f8e	00008840,00002f8e	a6e5	a6e5	a6e5	a6e5	a6e5	a6e5	a6e5
1041	a6e6	a6e6	a6e6	*	2851,4867	*	8ea1a8d1,8ea1c8e7,a8d1,c8e7,8ea1a8d1v,8ea1c8e7v,a8d1v,c8e7v	884c	e8a18c,e2be8f	884c,2f8f	0000884c,00002f8f	a6e6	a6e6	a6e6	a6e6	a6e6	a6e6	a6e6
1042	a6e7	a6e7	a6e7	*	2852,4868	*	8ea1a8d2,8ea1c8e8,a8d2,c8e8,8ea1a8d2v,8ea1c8e8v,a8d2v,c8e8v	8863	e8a1a3,e2be90	8863,2f90	00008863,00002f90	a6e7	a6e7	a6e7	a6e7	a6e7	a6e7	a6e7
1043	a6e8	a6e8	a6e8	*	4869	*	8ea1c8e9,c8e9,8ea1c8e9v,c8e9v	897f	e8a5bf	897f	0000897f	a6e8	a6e8	a6e8	a6e8	a6e8	a6e8	a6e8
1044	a6e9	a6e9	a6e9	*	486a	*	8ea1c8ea,c8ea,8ea1c8eav,c8eav	9621	e998a1	9621	00009621	a6e9	a6e9	a6e9	a6e9	a6e9	a6e9	a6e9
1045	a6ea	a6ea	a6ea	*	486b	*	8ea1c8eb,c8eb,8ea1c8ebv,c8ebv	4e32	e4b8b2	4e32	00004e32	a6ea	a6ea	a6ea	a6ea	a6ea	a6ea	a6ea
1046	a6eb	a6eb	a6eb	*	486c	*	8ea1c8ec,c8ec,8ea1c8ecv,c8ecv	4ea8	e4baa8	4ea8	00004ea8	a6eb	a6eb	a6eb	a6eb	a6eb	a6eb	a6eb
1047	a6ec	a6ec	a6ec	*	486d	*	8ea1c8ed,c8ed,8ea1c8edv,c8edv	4f4d	e4bd8d	4f4d	00004f4d	a6ec	a6ec	a6ec	a6ec	a6ec	a6ec	a6ec
1048	a6ed	a6ed	a6ed	*	486e	*	8ea1c8ee,c8ee,8ea1c8eev,c8eev	4f4f	e4bd8f	4f4f	00004f4f	a6ed	a6ed	a6ed	a6ed	a6ed	a6ed	a6ed
1049	a6ee	a6ee	a6ee	*	486f	*	8ea1c8ef,c8ef,8ea1c8efv,c8efv	4f47	e4bd87	4f47	00004f47	a6ee	a6ee	a6ee	a6ee	a6ee	a6ee	a6ee
1050	a6ef	a6ef	a6ef	*	4870	*	8ea1c8f0,c8f0,8ea1c8f0v,c8f0v	4f57	e4bd97	4f57	00004f57	a6ef	a6ef	a6ef	a6ef	a6ef	a6ef	a6ef
1051	a6f0	a6f0	a6f0	*	4871	*	8ea1c8f1,c8f1,8ea1c8f1v,c8f1v	4f5e	e4bd9e	4f5e	00004f5e	a6f0	a6f0	a6f0	a6f0	a6f0	a6f0	a6f0
1052	a6f1	a6f1	a6f1	*	4872	*	8ea1c8f2,c8f2,8ea1c8f2v,c8f2v	4f34	e4bcb4	4f34	00004f34	a6f1	a6f1	a6f1	a6f1	a6f1	a6f1	a6f1
1053	a6f2	a6f2	a6f2	*	4873	*	8ea1c8f3,c8f3,8ea1c8f3v,c8f3v	4f5b	e4bd9b	4f5b	00004f5b	a6f2	a6f2	a6f2	a6f2	a6f2	a6f2	a6f2
1054	a6f3	a6f3	a6f3	*	4874	*	8ea1c8f4,c8f4,8ea1c8f4v,c8f4v	4f55	e4bd95	4f55	00004f55	a6f3	a6f3	a6f3	a6f3	a6f3	a6f3	a6f3
1055	a6f4	a6f4	a6f4	*	4875	*	8ea1c8f5,c8f5,8ea1c8f5v,c8f5v	4f30	e4bcb0	4f30	00004f30	a6f4	a6f4	a6f4	a6f4	a6f4	a6f4	a6f4
1056	a6f5	a6f5	a6f5	*	4876	*	8ea1c8f6,c8f6,8ea1c8f6v,c8f6v	4f50	e4bd90	4f50	00004f50	a6f5	a6f5	a6f5	a6f5	a6f5	a6f5	a6f5
1057	a6f6	a6f6	a6f6	*	4877	*	8ea1c8f7,c8f7,8ea1c8f7v,c8f7v	4f51	e4bd91	4f51	00004f51	a6f6	a6f6	a6f6	a6f6	a6f6	a6f6	a6f6
1058	a6f7	a6f7	a6f7	*	4878	*	8ea1c8f8,c8f8,8ea1c8f8v,c8f8v	4f3d	e4bcbd	4f3d	00004f3d	a6f7	a6f7	a6f7	a6f7	a6f7	a6f7	a6f7
1059	a6f8	a6f8	a6f8	*	4879	*	8ea1c8f9,c8f9,8ea1c8f9v,c8f9v	4f3a	e4bcba	4f3a	00004f3a	a6f8	a6f8	a6f8	a6f8	a6f8	a6f8	a6f8
1060	a6f9	a6f9	a6f9	*	487a	*	8ea1c8fa,c8fa,8ea1c8fav,c8fav	4f38	e4bcb8	4f38	00004f38	a6f9	a6f9	a6f9	a6f9	a6f9	a6f9	a6f9
1061	a6fa	a6fa	a6fa	*	487b	*	8ea1c8fb,c8fb,8ea1c8fbv,c8fbv	4f43	e4bd83	4f43	00004f43	a6fa	a6fa	a6fa	a6fa	a6fa	a6fa	a6fa
1062	a6fb	a6fb	a6fb	*	487c	*	8ea1c8fc,c8fc,8ea1c8fcv,c8fcv	4f54	e4bd94	4f54	00004f54	a6fb	a6fb	a6fb	a6fb	a6fb	a6fb	a6fb
1063	a6fc	a6fc	a6fc	*	487d	*	8ea1c8fd,c8fd,8ea1c8fdv,c8fdv	4f3c	e4bcbc	4f3c	00004f3c	a6fc	a6fc	a6fc	a6fc	a6fc	a6fc	a6fc
1064	a6fd	a6fd	a6fd	*	487e	*	8ea1c8fe,c8fe,8ea1c8fev,c8fev	4f46	e4bd86	4f46	00004f46	a6fd	a6fd	a6fd	a6fd	a6fd	a6fd	a6fd
1065	a6fe	a6fe	a6fe	*	4921	*	8ea1c9a1,c9a1,8ea1c9a1v,c9a1v	4f63	e4bda3	4f63	00004f63	a6fe	a6fe	a6fe	a6fe	a6fe	a6fe	a6fe
1066	a740	a740	a740	*	4922	*	8ea1c9a2,c9a2,8ea1c9a2v,c9a2v	4f5c	e4bd9c	4f5c	00004f5c	a740	a740	a740	a740	a740	a740	a740
1067	a741	a741	a741	*	4923	*	8ea1c9a3,c9a3,8ea1c9a3v,c9a3v	4f60	e4bda0	4f60	00004f60	a741	a741	a741	a741	a741	a741	a741
1068	a742	a742	a742	*	4924	*	8ea1c9a4,c9a4,8ea1c9a4v,c9a4v	4f2f	e4bcaf	4f2f	00004f2f	a742	a742	a742	a742	a742	a742	a742
1069	a743	a743	a743	*	4925	*	8ea1c9a5,c9a5,8ea1c9a5v,c9a5v	4f4e	e4bd8e	4f4e	00004f4e	a743	a743	a743	a743	a743	a743	a743
1070	a744	a744	a744	*	4926	*	8ea1c9a6,c9a6,8ea1c9a6v,c9a6v	4f36	e4bcb6	4f36	00004f36	a744	a744	a744	a744	a744	a744	a744
1071	a745	a745	a745	*	4927	*	8ea1c9a7,c9a7,8ea1c9a7v,c9a7v	4f59	e4bd99	4f59	00004f59	a745	a745	a745	a745	a745	a745	a745
1072	a746	a746	a746	*	4928	*	8ea1c9a8,c9a8,8ea1c9a8v,c9a8v	4f5d	e4bd9d	4f5d	00004f5d	a746	a746	a746	a746	a746	a746	a746
1073	a747	a747	a747	*	4929	*	8ea1c9a9,c9a9,8ea1c9a9v,c9a9v	4f48	e4bd88	4f48	00004f48	a747	a747	a747	a747	a747	a747	a747
1074	a748	a748	a748	*	492a	*	8ea1c9aa,c9aa,8ea1c9aav,c9aav	4f5a	e4bd9a	4f5a	00004f5a	a748	a748	a748	a748	a748	a748	a748
1075	a749	a749	a749	*	492b	*	8ea1c9ab,c9ab,8ea1c9abv,c9abv	514c	e5858c	514c	0000514c	a749	a749	a749	a749	a749	a749	a749
1076	a74a	a74a	a74a	*	492c	*	8ea1c9ac,c9ac,8ea1c9acv,c9acv	514b	e5858b	514b	0000514b	a74a	a74a	a74a	a74a	a74a	a74a	a74a
1077	a74b	a74b	a74b	*	492d	*	8ea1c9ad,c9ad,8ea1c9adv,c9adv	514d	e5858d	514d	0000514d	a74b	a74b	a74b	a74b	a74b	a74b	a74b
1078	a74c	a74c	a74c	*	492e	*	8ea1c9ae,c9ae,8ea1c9aev,c9aev	5175	e585b5	5175	00005175	a74c	a74c	a74c	a74c	a74c	a74c	a74c
1079	a74d	a74d	a74d	*	492f	*	8ea1c9af,c9af,8ea1c9afv,c9afv	51b6	e586b6	51b6	000051b6	a74d	a74d	a74d	a74d	a74d	a74d	a74d
1080	a74e	a74e	a74e	*	4930	*	8ea1c9b0,c9b0,8ea1c9b0v,c9b0v	51b7	e586b7	51b7	000051b7	a74e	a74e	a74e	a74e	a74e	a74e	a74e
1081	a74f	a74f	a74f	*	4931	*	8ea1c9b1,c9b1,8ea1c9b1v,c9b1v	5225	e588a5	5225	00005225	a74f	a74f	a74f	a74f	a74f	a74f	a74f
1082	a750	a750	a750	*	4932	*	8ea1c9b2,c9b2,8ea1c9b2v,c9b2v	5224	e588a4	5224	00005224	a750	a750	a750	a750	a750	a750	a750
1083	a751	a751	a751	*	4933	*	8ea1c9b3,c9b3,8ea1c9b3v,c9b3v	5229	e588a9	5229	00005229	a751	a751	a751	a751	a751	a751	a751
1084	a752	a752	a752	*	4934	*	8ea1c9b4,c9b4,8ea1c9b4v,c9b4v	522a	e588aa	522a	0000522a	a752	a752	a752	a752	a752	a752	a752
1085	a753	a753	a753	*	4935	*	8ea1c9b5,c9b5,8ea1c9b5v,c9b5v	5228	e588a8	5228	00005228	a753	a753	a753	a753	a753	a753	a753
1086	a754	a754	a754	*	4936	*	8ea1c9b6,c9b6,8ea1c9b6v,c9b6v	52ab	e58aab	52ab	000052ab	a754	a754	a754	a754	a754	a754	a754
1087	a755	a755	a755	*	4937	*	8ea1c9b7,c9b7,8ea1c9b7v,c9b7v	52a9	e58aa9	52a9	000052a9	a755	a755	a755	a755	a755	a755	a755
1088	a756	a756	a756	*	4938	*	8ea1c9b8,c9b8,8ea1c9b8v,c9b8v	52aa	e58aaa	52aa	000052aa	a756	a756	a756	a756	a756	a756	a756
1089	a757	a757	a757	*	4939	*	8ea1c9b9,c9b9,8ea1c9b9v,c9b9v	52ac	e58aac	52ac	000052ac	a757	a757	a757	a757	a757	a757	a757
1090	a758	a758	a758	*	493a	*	8ea1c9ba,c9ba,8ea1c9bav,c9bav	5323	e58ca3	5323	00005323	a758	a758	a758	a758	a758	a758	a758
1091	a759	a759	a759	*	493b	*	8ea1c9bb,c9bb,8ea1c9bbv,c9bbv	5373	e58db3	5373	00005373	a759	a759	a759	a759	a759	a759	a759
1092	a75a	a75a	a75a	*	493c	*	8ea1c9bc,c9bc,8ea1c9bcv,c9bcv	5375	e58db5	5375	00005375	a75a	a75a	a75a	a75a	a75a	a75a	a75a
1093	a75b	a75b	a75b	*	493d	*	8ea1c9bd,c9bd,8ea1c9bdv,c9bdv	541d	e5909d	541d	0000541d	a75b	a75b	a75b	a75b	a75b	a75b	a75b
1094	a75c	a75c	a75c	*	493e	*	8ea1c9be,c9be,8ea1c9bev,c9bev	542d	e590ad	542d	0000542d	a75c	a75c	a75c	a75c	a75c	a75c	a75c
1095	a75d	a75d	a75d	*	493f	*	8ea1c9bf,c9bf,8ea1c9bfv,c9bfv	541e	e5909e	541e	0000541e	a75d	a75d	a75d	a75d	a75d	a75d	a75d
1096	a75e	a75e	a75e	*	4940	*	8ea1c9c0,c9c0,8ea1c9c0v,c9c0v	543e	e590be	543e	0000543e	a75e	a75e	a75e	a75e	a75e	a75e	a75e
1097	a75f	a75f	a75f	*	4941	*	8ea1c9c1,c9c1,8ea1c9c1v,c9c1v	5426	e590a6	5426	00005426	a75f	a75f	a75f	a75f	a75f	a75f	a75f
1098	a760	a760	a760	*	4942	*	8ea1c9c2,c9c2,8ea1c9c2v,c9c2v	544e	e5918e	544e	0000544e	a760	a760	a760	a760	a760	a760	a760
1099	a761	a761	a761	*	4943	*	8ea1c9c3,c9c3,8ea1c9c3v,c9c3v	5427	e590a7	5427	00005427	a761	a761	a761	a761	a761	a761	a761
1100	a762	a762	a762	*	4944	*	8ea1c9c4,c9c4,8ea1c9c4v,c9c4v	5446	e59186	5446	00005446	a762	a762	a762	a762	a762	a762	a762
1101	a763	a763	a763	*	4945	*	8ea1c9c5,c9c5,8ea1c9c5v,c9c5v	5443	e59183	5443	00005443	a763	a763	a763	a763	a763	a763	a763
1102	a764	a764	a764	*	4946	*	8ea1c9c6,c9c6,8ea1c9c6v,c9c6v	5433	e590b3	5433	00005433	a764	a764	a764	a764	a764	a764	a764
1103	a765	a765	a765	*	4947	*	8ea1c9c7,c9c7,8ea1c9c7v,c9c7v	5448	e59188	5448	00005448	a765	a765	a765	a765	a765	a765	a765
1104	a766	a766	a766	*	4948	*	8ea1c9c8,c9c8,8ea1c9c8v,c9c8v	5442	e59182	5442	00005442	a766	a766	a766	a766	a766	a766	a766
1105	a767	a767	a767	*	4949	*	8ea1c9c9,c9c9,8ea1c9c9v,c9c9v	541b	e5909b	541b	0000541b	a767	a767	a767	a767	a767	a767	a767
1106	a768	a768	a768	*	494a	*	8ea1c9ca,c9ca,8ea1c9cav,c9cav	5429	e590a9	5429	00005429	a768	a768	a768	a768	a768	a768	a768
1107	a769	a769	a769	*	494b	*	8ea1c9cb,c9cb,8ea1c9cbv,c9cbv	544a	e5918a	544a	0000544a	a769	a769	a769	a769	a769	a769	a769
1108	a76a	a76a	a76a	*	494c	*	8ea1c9cc,c9cc,8ea1c9ccv,c9ccv	5439	e590b9	5439	00005439	a76a	a76a	a76a	a76a	a76a	a76a	a76a
1109	a76b	a76b	a76b	*	494d	*	8ea1c9cd,c9cd,8ea1c9cdv,c9cdv	543b	e590bb	543b	0000543b	a76b	a76b	a76b	a76b	a76b	a76b	a76b
1110	a76c	a76c	a76c	*	494e	*	8ea1c9ce,c9ce,8ea1c9cev,c9cev	5438	e590b8	5438	00005438	a76c	a76c	a76c	a76c	a76c	a76c	a76c
1111	a76d	a76d	a76d	*	494f	*	8ea1c9cf,c9cf,8ea1c9cfv,c9cfv	542e	e590ae	542e	0000542e	a76d	a76d	a76d	a76d	a76d	a76d	a76d
1112	a76e	a76e	a76e	*	4950	*	8ea1c9d0,c9d0,8ea1c9d0v,c9d0v	5435	e590b5	5435	00005435	a76e	a76e	a76e	a76e	a76e	a76e	a76e
1113	a76f	a76f	a76f	*	4951	*	8ea1c9d1,c9d1,8ea1c9d1v,c9d1v	5436	e590b6	5436	00005436	a76f	a76f	a76f	a76f	a76f	a76f	a76f
1114	a770	a770	a770	*	4952	*	8ea1c9d2,c9d2,8ea1c9d2v,c9d2v	5420	e590a0	5420	00005420	a770	a770	a770	a770	a770	a770	a770
1115	a771	a771	a771	*	4953	*	8ea1c9d3,c9d3,8ea1c9d3v,c9d3v	543c	e590bc	543c	0000543c	a771	a771	a771	a771	a771	a771	a771
1116	a772	a772	a772	*	4954	*	8ea1c9d4,c9d4,8ea1c9d4v,c9d4v	5440	e59180	5440	00005440	a772	a772	a772	a772	a772	a772	a772
1117	a773	a773	a773	*	4955	*	8ea1c9d5,c9d5,8ea1c9d5v,c9d5v	5431	e590b1	5431	00005431	a773	a773	a773	a773	a773	a773	a773
1118	a774	a774	a774	*	4956	*	8ea1c9d6,c9d6,8ea1c9d6v,c9d6v	542b	e590ab	542b	0000542b	a774	a774	a774	a774	a774	a774	a774
1119	a775	a775	a775	*	4957	*	8ea1c9d7,c9d7,8ea1c9d7v,c9d7v	541f	e5909f	541f	0000541f	a775	a775	a775	a775	a775	a775	a775
1120	a776	a776	a776	*	4958	*	8ea1c9d8,c9d8,8ea1c9d8v,c9d8v	542c	e590ac	542c	0000542c	a776	a776	a776	a776	a776	a776	a776
1121	a777	a777	a777	*	4959	*	8ea1c9d9,c9d9,8ea1c9d9v,c9d9v	56ea	e59baa	56ea	000056ea	a777	a777	a777	a777	a777	a777	a777
1122	a778	a778	a778	*	495a	*	8ea1c9da,c9da,8ea1c9dav,c9dav	56f0	e59bb0	56f0	000056f0	a778	a778	a778	a778	a778	a778	a778
1123	a779	a779	a779	*	495b	*	8ea1c9db,c9db,8ea1c9dbv,c9dbv	56e4	e59ba4	56e4	000056e4	a779	a779	a779	a779	a779	a779	a779
1124	a77a	a77a	a77a	*	495c	*	8ea1c9dc,c9dc,8ea1c9dcv,c9dcv	56eb	e59bab	56eb	000056eb	a77a	a77a	a77a	a77a	a77a	a77a	a77a
1125	a77b	a77b	a77b	*	495d	*	8ea1c9dd,c9dd,8ea1c9ddv,c9ddv	574a	e59d8a	574a	0000574a	a77b	a77b	a77b	a77b	a77b	a77b	a77b
1126	a77c	a77c	a77c	*	495e	*	8ea1c9de,c9de,8ea1c9dev,c9dev	5751	e59d91	5751	00005751	a77c	a77c	a77c	a77c	a77c	a77c	a77c
1127	a77d	a77d	a77d	*	495f	*	8ea1c9df,c9df,8ea1c9dfv,c9dfv	5740	e59d80	5740	00005740	a77d	a77d	a77d	a77d	a77d	a77d	a77d
1128	a77e	a77e	a77e	*	4960	*	8ea1c9e0,c9e0,8ea1c9e0v,c9e0v	574d	e59d8d	574d	0000574d	a77e	a77e	a77e	a77e	a77e	a77e	a77e
1129	a7a1	a7a1	a7a1	*	4961	*	8ea1c9e1,c9e1,8ea1c9e1v,c9e1v	5747	e59d87	5747	00005747	a7a1	a7a1	a7a1	a7a1	a7a1	a7a1	a7a1
1130	a7a2	a7a2	a7a2	*	4962	*	8ea1c9e2,c9e2,8ea1c9e2v,c9e2v	574e	e59d8e	574e	0000574e	a7a2	a7a2	a7a2	a7a2	a7a2	a7a2	a7a2
1131	a7a3	a7a3	a7a3	*	4963	*	8ea1c9e3,c9e3,8ea1c9e3v,c9e3v	573e	e59cbe	573e	0000573e	a7a3	a7a3	a7a3	a7a3	a7a3	a7a3	a7a3
1132	a7a4	a7a4	a7a4	*	4964	*	8ea1c9e4,c9e4,8ea1c9e4v,c9e4v	5750	e59d90	5750	00005750	a7a4	a7a4	a7a4	a7a4	a7a4	a7a4	a7a4
1133	a7a5	a7a5	a7a5	*	4965	*	8ea1c9e5,c9e5,8ea1c9e5v,c9e5v	574f	e59d8f	574f	0000574f	a7a5	a7a5	a7a5	a7a5	a7a5	a7a5	a7a5
1134	a7a6	a7a6	a7a6	*	4966	*	8ea1c9e6,c9e6,8ea1c9e6v,c9e6v	573b	e59cbb	573b	0000573b	a7a6	a7a6	a7a6	a7a6	a7a6	a7a6	a7a6
1135	a7a7	a7a7	a7a7	*	4967	*	8ea1c9e7,c9e7,8ea1c9e7v,c9e7v	58ef	e5a3af	58ef	000058ef	a7a7	a7a7	a7a7	a7a7	a7a7	a7a7	a7a7
1136	a7a8	a7a8	a7a8	*	4968	*	8ea1c9e8,c9e8,8ea1c9e8v,c9e8v	593e	e5a4be	593e	0000593e	a7a8	a7a8	a7a8	a7a8	a7a8	a7a8	a7a8
1137	a7a9	a7a9	a7a9	*	4969	*	8ea1c9e9,c9e9,8ea1c9e9v,c9e9v	599d	e5a69d	599d	0000599d	a7a9	a7a9	a7a9	a7a9	a7a9	a7a9	a7a9
1138	a7aa	a7aa	a7aa	*	496a	*	8ea1c9ea,c9ea,8ea1c9eav,c9eav	5992	e5a692	5992	00005992	a7aa	a7aa	a7aa	a7aa	a7aa	a7aa	a7aa
1139	a7ab	a7ab	a7ab	*	496b	*	8ea1c9eb,c9eb,8ea1c9ebv,c9ebv	59a8	e5a6a8	59a8	000059a8	a7ab	a7ab	a7ab	a7ab	a7ab	a7ab	a7ab
1140	a7ac	a7ac	a7ac	*	496c	*	8ea1c9ec,c9ec,8ea1c9ecv,c9ecv	599e	e5a69e	599e	0000599e	a7ac	a7ac	a7ac	a7ac	a7ac	a7ac	a7ac
1141	a7ad	a7ad	a7ad	*	496d	*	8ea1c9ed,c9ed,8ea1c9edv,c9edv	59a3	e5a6a3	59a3	000059a3	a7ad	a7ad	a7ad	a7ad	a7ad	a7ad	a7ad
1142	a7ae	a7ae	a7ae	*	496e	*	8ea1c9ee,c9ee,8ea1c9eev,c9eev	5999	e5a699	5999	00005999	a7ae	a7ae	a7ae	a7ae	a7ae	a7ae	a7ae
1143	a7af	a7af	a7af	*	496f	*	8ea1c9ef,c9ef,8ea1c9efv,c9efv	5996	e5a696	5996	00005996	a7af	a7af	a7af	a7af	a7af	a7af	a7af
1144	a7b0	a7b0	a7b0	*	4970	*	8ea1c9f0,c9f0,8ea1c9f0v,c9f0v	598d	e5a68d	598d	0000598d	a7b0	a7b0	a7b0	a7b0	a7b0	a7b0	a7b0
1145	a7b1	a7b1	a7b1	*	4971	*	8ea1c9f1,c9f1,8ea1c9f1v,c9f1v	59a4	e5a6a4	59a4	000059a4	a7b1	a7b1	a7b1	a7b1	a7b1	a7b1	a7b1
1146	a7b2	a7b2	a7b2	*	4972	*	8ea1c9f2,c9f2,8ea1c9f2v,c9f2v	5993	e5a693	5993	00005993	a7b2	a7b2	a7b2	a7b2	a7b2	a7b2	a7b2
1147	a7b3	a7b3	a7b3	*	4973	*	8ea1c9f3,c9f3,8ea1c9f3v,c9f3v	598a	e5a68a	598a	0000598a	a7b3	a7b3	a7b3	a7b3	a7b3	a7b3	a7b3
1148	a7b4	a7b4	a7b4	*	4974	*	8ea1c9f4,c9f4,8ea1c9f4v,c9f4v	59a5	e5a6a5	59a5	000059a5	a7b4	a7b4	a7b4	a7b4	a7b4	a7b4	a7b4
1149	a7b5	a7b5	a7b5	*	4975	*	8ea1c9f5,c9f5,8ea1c9f5v,c9f5v	5b5d	e5ad9d	5b5d	00005b5d	a7b5	a7b5	a7b5	a7b5	a7b5	a7b5	a7b5
1150	a7b6	a7b6	a7b6	*	4976	*	8ea1c9f6,c9f6,8ea1c9f6v,c9f6v	5b5c	e5ad9c	5b5c	00005b5c	a7b6	a7b6	a7b6	a7b6	a7b6	a7b6	a7b6
1151	a7b7	a7b7	a7b7	*	4977	*	8ea1c9f7,c9f7,8ea1c9f7v,c9f7v	5b5a	e5ad9a	5b5a	00005b5a	a7b7	a7b7	a7b7	a7b7	a7b7	a7b7	a7b7
1152	a7b8	a7b8	a7b8	*	4978	*	8ea1c9f8,c9f8,8ea1c9f8v,c9f8v	5b5b	e5ad9b	5b5b	00005b5b	a7b8	a7b8	a7b8	a7b8	a7b8	a7b8	a7b8
1153	a7b9	a7b9	a7b9	*	4979	*	8ea1c9f9,c9f9,8ea1c9f9v,c9f9v	5b8c	e5ae8c	5b8c	00005b8c	a7b9	a7b9	a7b9	a7b9	a7b9	a7b9	a7b9
1154	a7ba	a7ba	a7ba	*	497a	*	8ea1c9fa,c9fa,8ea1c9fav,c9fav	5b8b	e5ae8b	5b8b	00005b8b	a7ba	a7ba	a7ba	a7ba	a7ba	a7ba	a7ba
1155	a7bb	a7bb	a7bb	*	497b	*	8ea1c9fb,c9fb,8ea1c9fbv,c9fbv	5b8f	e5ae8f	5b8f	00005b8f	a7bb	a7bb	a7bb	a7bb	a7bb	a7bb	a7bb
1156	a7bc	a7bc	a7bc	*	497c	*	8ea1c9fc,c9fc,8ea1c9fcv,c9fcv	5c2c	e5b0ac	5c2c	00005c2c	a7bc	a7bc	a7bc	a7bc	a7bc	a7bc	a7bc
1157	a7bd	a7bd	a7bd	*	497d	*	8ea1c9fd,c9fd,8ea1c9fdv,c9fdv	5c40	e5b180	5c40	00005c40	a7bd	a7bd	a7bd	a7bd	a7bd	a7bd	a7bd
1158	a7be	a7be	a7be	*	497e	*	8ea1c9fe,c9fe,8ea1c9fev,c9fev	5c41	e5b181	5c41	00005c41	a7be	a7be	a7be	a7be	a7be	a7be	a7be
1159	a7bf	a7bf	a7bf	*	4a21	*	8ea1caa1,caa1,8ea1caa1v,caa1v	5c3f	e5b0bf	5c3f	00005c3f	a7bf	a7bf	a7bf	a7bf	a7bf	a7bf	a7bf
1160	a7c0	a7c0	a7c0	*	4a22	*	8ea1caa2,caa2,8ea1caa2v,caa2v	5c3e	e5b0be	5c3e	00005c3e	a7c0	a7c0	a7c0	a7c0	a7c0	a7c0	a7c0
1161	a7c1	a7c1	a7c1	*	4a23	*	8ea1caa3,caa3,8ea1caa3v,caa3v	5c90	e5b290	5c90	00005c90	a7c1	a7c1	a7c1	a7c1	a7c1	a7c1	a7c1
1162	a7c2	a7c2	a7c2	*	4a24	*	8ea1caa4,caa4,8ea1caa4v,caa4v	5c91	e5b291	5c91	00005c91	a7c2	a7c2	a7c2	a7c2	a7c2	a7c2	a7c2
1163	a7c3	a7c3	a7c3	*	4a25	*	8ea1caa5,caa5,8ea1caa5v,caa5v	5c94	e5b294	5c94	00005c94	a7c3	a7c3	a7c3	a7c3	a7c3	a7c3	a7c3
1164	a7c4	a7c4	a7c4	*	4a26	*	8ea1caa6,caa6,8ea1caa6v,caa6v	5c8c	e5b28c	5c8c	00005c8c	a7c4	a7c4	a7c4	a7c4	a7c4	a7c4	a7c4
1165	a7c5	a7c5	a7c5	*	4a27	*	8ea1caa7,caa7,8ea1caa7v,caa7v	5deb	e5b7ab	5deb	00005deb	a7c5	a7c5	a7c5	a7c5	a7c5	a7c5	a7c5
1166	a7c6	a7c6	a7c6	*	4a28	*	8ea1caa8,caa8,8ea1caa8v,caa8v	5e0c	e5b88c	5e0c	00005e0c	a7c6	a7c6	a7c6	a7c6	a7c6	a7c6	a7c6
1167	a7c7	a7c7	a7c7	*	4a29	*	8ea1caa9,caa9,8ea1caa9v,caa9v	5e8f	e5ba8f	5e8f	00005e8f	a7c7	a7c7	a7c7	a7c7	a7c7	a7c7	a7c7
1168	a7c8	a7c8	a7c8	*	4a2a	*	8ea1caaa,caaa,8ea1caaav,caaav	5e87	e5ba87	5e87	00005e87	a7c8	a7c8	a7c8	a7c8	a7c8	a7c8	a7c8
1169	a7c9	a7c9	a7c9	*	4a2b	*	8ea1caab,caab,8ea1caabv,caabv	5e8a	e5ba8a	5e8a	00005e8a	a7c9	a7c9	a7c9	a7c9	a7c9	a7c9	a7c9
1170	a7ca	a7ca	a7ca	*	4a2c	*	8ea1caac,caac,8ea1caacv,caacv	5ef7	e5bbb7	5ef7	00005ef7	a7ca	a7ca	a7ca	a7ca	a7ca	a7ca	a7ca
1171	a7cb	a7cb	a7cb	*	4a2d	*	8ea1caad,caad,8ea1caadv,caadv	5f04	e5bc84	5f04	00005f04	a7cb	a7cb	a7cb	a7cb	a7cb	a7cb	a7cb
1172	a7cc	a7cc	a7cc	*	4a2e	*	8ea1caae,caae,8ea1caaev,caaev	5f1f	e5bc9f	5f1f	00005f1f	a7cc	a7cc	a7cc	a7cc	a7cc	a7cc	a7cc
1173	a7cd	a7cd	a7cd	*	4a2f	*	8ea1caaf,caaf,8ea1caafv,caafv	5f64	e5bda4	5f64	00005f64	a7cd	a7cd	a7cd	a7cd	a7cd	a7cd	a7cd
1174	a7ce	a7ce	a7ce	*	4a30	*	8ea1cab0,cab0,8ea1cab0v,cab0v	5f62	e5bda2	5f62	00005f62	a7ce	a7ce	a7ce	a7ce	a7ce	a7ce	a7ce
1175	a7cf	a7cf	a7cf	*	4a31	*	8ea1cab1,cab1,8ea1cab1v,cab1v	5f77	e5bdb7	5f77	00005f77	a7cf	a7cf	a7cf	a7cf	a7cf	a7cf	a7cf
1176	a7d0	a7d0	a7d0	*	4a32	*	8ea1cab2,cab2,8ea1cab2v,cab2v	5f79	e5bdb9	5f79	00005f79	a7d0	a7d0	a7d0	a7d0	a7d0	a7d0	a7d0
1177	a7d1	a7d1	a7d1	*	4a33	*	8ea1cab3,cab3,8ea1cab3v,cab3v	5fd8	e5bf98	5fd8	00005fd8	a7d1	a7d1	a7d1	a7d1	a7d1	a7d1	a7d1
1178	a7d2	a7d2	a7d2	*	4a34	*	8ea1cab4,cab4,8ea1cab4v,cab4v	5fcc	e5bf8c	5fcc	00005fcc	a7d2	a7d2	a7d2	a7d2	a7d2	a7d2	a7d2
1179	a7d3	a7d3	a7d3	*	4a35	*	8ea1cab5,cab5,8ea1cab5v,cab5v	5fd7	e5bf97	5fd7	00005fd7	a7d3	a7d3	a7d3	a7d3	a7d3	a7d3	a7d3
1180	a7d4	a7d4	a7d4	*	4a36	*	8ea1cab6,cab6,8ea1cab6v,cab6v	5fcd	e5bf8d	5fcd	00005fcd	a7d4	a7d4	a7d4	a7d4	a7d4	a7d4	a7d4
1181	a7d5	a7d5	a7d5	*	4a37	*	8ea1cab7,cab7,8ea1cab7v,cab7v	5ff1	e5bfb1	5ff1	00005ff1	a7d5	a7d5	a7d5	a7d5	a7d5	a7d5	a7d5
1182	a7d6	a7d6	a7d6	*	4a38	*	8ea1cab8,cab8,8ea1cab8v,cab8v	5feb	e5bfab	5feb	00005feb	a7d6	a7d6	a7d6	a7d6	a7d6	a7d6	a7d6
1183	a7d7	a7d7	a7d7	*	4a39	*	8ea1cab9,cab9,8ea1cab9v,cab9v	5ff8	e5bfb8	5ff8	00005ff8	a7d7	a7d7	a7d7	a7d7	a7d7	a7d7	a7d7
1184	a7d8	a7d8	a7d8	*	4a3a	*	8ea1caba,caba,8ea1cabav,cabav	5fea	e5bfaa	5fea	00005fea	a7d8	a7d8	a7d8	a7d8	a7d8	a7d8	a7d8
1185	a7d9	a7d9	a7d9	*	4a3b	*	8ea1cabb,cabb,8ea1cabbv,cabbv	6212	e68892	6212	00006212	a7d9	a7d9	a7d9	a7d9	a7d9	a7d9	a7d9
1186	a7da	a7da	a7da	*	4a3c	*	8ea1cabc,cabc,8ea1cabcv,cabcv	6211	e68891	6211	00006211	a7da	a7da	a7da	a7da	a7da	a7da	a7da
1187	a7db	a7db	a7db	*	4a3d	*	8ea1cabd,cabd,8ea1cabdv,cabdv	6284	e68a84	6284	00006284	a7db	a7db	a7db	a7db	a7db	a7db	a7db
1188	a7dc	a7dc	a7dc	*	4a3e	*	8ea1cabe,cabe,8ea1cabev,cabev	6297	e68a97	6297	00006297	a7dc	a7dc	a7dc	a7dc	a7dc	a7dc	a7dc
1189	a7dd	a7dd	a7dd	*	4a3f	*	8ea1cabf,cabf,8ea1cabfv,cabfv	6296	e68a96	6296	00006296	a7dd	a7dd	a7dd	a7dd	a7dd	a7dd	a7dd
1190	a7de	a7de	a7de	*	4a40	*	8ea1cac0,cac0,8ea1cac0v,cac0v	6280	e68a80	6280	00006280	a7de	a7de	a7de	a7de	a7de	a7de	a7de
1191	a7df	a7df	a7df	*	4a41	*	8ea1cac1,cac1,8ea1cac1v,cac1v	6276	e689b6	6276	00006276	a7df	a7df	a7df	a7df	a7df	a7df	a7df
1192	a7e0	a7e0	a7e0	*	4a42	*	8ea1cac2,cac2,8ea1cac2v,cac2v	6289	e68a89	6289	00006289	a7e0	a7e0	a7e0	a7e0	a7e0	a7e0	a7e0
1193	a7e1	a7e1	a7e1	*	4a43	*	8ea1cac3,cac3,8ea1cac3v,cac3v	626d	e689ad	626d	0000626d	a7e1	a7e1	a7e1	a7e1	a7e1	a7e1	a7e1
1194	a7e2	a7e2	a7e2	*	4a44	*	8ea1cac4,cac4,8ea1cac4v,cac4v	628a	e68a8a	628a	0000628a	a7e2	a7e2	a7e2	a7e2	a7e2	a7e2	a7e2
1195	a7e3	a7e3	a7e3	*	4a45	*	8ea1cac5,cac5,8ea1cac5v,cac5v	627c	e689bc	627c	0000627c	a7e3	a7e3	a7e3	a7e3	a7e3	a7e3	a7e3
1196	a7e4	a7e4	a7e4	*	4a46	*	8ea1cac6,cac6,8ea1cac6v,cac6v	627e	e689be	627e	0000627e	a7e4	a7e4	a7e4	a7e4	a7e4	a7e4	a7e4
1197	a7e5	a7e5	a7e5	*	4a47	*	8ea1cac7,cac7,8ea1cac7v,cac7v	6279	e689b9	6279	00006279	a7e5	a7e5	a7e5	a7e5	a7e5	a7e5	a7e5
1198	a7e6	a7e6	a7e6	*	4a48	*	8ea1cac8,cac8,8ea1cac8v,cac8v	6273	e689b3	6273	00006273	a7e6	a7e6	a7e6	a7e6	a7e6	a7e6	a7e6
1199	a7e7	a7e7	a7e7	*	4a49	*	8ea1cac9,cac9,8ea1cac9v,cac9v	6292	e68a92	6292	00006292	a7e7	a7e7	a7e7	a7e7	a7e7	a7e7	a7e7
1200	a7e8	a7e8	a7e8	*	4a4a	*	8ea1caca,caca,8ea1cacav,cacav	626f	e689af	626f	0000626f	a7e8	a7e8	a7e8	a7e8	a7e8	a7e8	a7e8
1201	a7e9	a7e9	a7e9	*	4a4b	*	8ea1cacb,cacb,8ea1cacbv,cacbv	6298	e68a98	6298	00006298	a7e9	a7e9	a7e9	a7e9	a7e9	a7e9	a7e9
1202	a7ea	a7ea	a7ea	*	4a4c	*	8ea1cacc,cacc,8ea1caccv,caccv	626e	e689ae	626e	0000626e	a7ea	a7ea	a7ea	a7ea	a7ea	a7ea	a7ea
1203	a7eb	a7eb	a7eb	*	4a4d	*	8ea1cacd,cacd,8ea1cacdv,cacdv	6295	e68a95	6295	00006295	a7eb	a7eb	a7eb	a7eb	a7eb	a7eb	a7eb
1204	a7ec	a7ec	a7ec	*	4a4e	*	8ea1cace,cace,8ea1cacev,cacev	6293	e68a93	6293	00006293	a7ec	a7ec	a7ec	a7ec	a7ec	a7ec	a7ec
1205	a7ed	a7ed	a7ed	*	4a4f	*	8ea1cacf,cacf,8ea1cacfv,cacfv	6291	e68a91	6291	00006291	a7ed	a7ed	a7ed	a7ed	a7ed	a7ed	a7ed
1206	a7ee	a7ee	a7ee	*	4a50	*	8ea1cad0,cad0,8ea1cad0v,cad0v	6286	e68a86	6286	00006286	a7ee	a7ee	a7ee	a7ee	a7ee	a7ee	a7ee
1207	a7ef	a7ef	a7ef	*	4a51	*	8ea1cad1,cad1,8ea1cad1v,cad1v	6539	e694b9	6539	00006539	a7ef	a7ef	a7ef	a7ef	a7ef	a7ef	a7ef
1208	a7f0	a7f0	a7f0	*	4a52	*	8ea1cad2,cad2,8ea1cad2v,cad2v	653b	e694bb	653b	0000653b	a7f0	a7f0	a7f0	a7f0	a7f0	a7f0	a7f0
1209	a7f1	a7f1	a7f1	*	4a53	*	8ea1cad3,cad3,8ea1cad3v,cad3v	6538	e694b8	6538	00006538	a7f1	a7f1	a7f1	a7f1	a7f1	a7f1	a7f1
1210	a7f2	a7f2	a7f2	*	4a54	*	8ea1cad4,cad4,8ea1cad4v,cad4v	65f1	e697b1	65f1	000065f1	a7f2	a7f2	a7f2	a7f2	a7f2	a7f2	a7f2
1211	a7f3	a7f3	a7f3	*	4a55	*	8ea1cad5,cad5,8ea1cad5v,cad5v	66f4	e69bb4	66f4	000066f4	a7f3	a7f3	a7f3	a7f3	a7f3	a7f3	a7f3
1212	a7f4	a7f4	a7f4	*	4a56	*	8ea1cad6,cad6,8ea1cad6v,cad6v	675f	e69d9f	675f	0000675f	a7f4	a7f4	a7f4	a7f4	a7f4	a7f4	a7f4
1213	a7f5	a7f5	a7f5	*	4a57	*	8ea1cad7,cad7,8ea1cad7v,cad7v	674e	e69d8e	674e	0000674e	a7f5	a7f5	a7f5	a7f5	a7f5	a7f5	a7f5
1214	a7f6	a7f6	a7f6	*	4a58	*	8ea1cad8,cad8,8ea1cad8v,cad8v	674f	e69d8f	674f	0000674f	a7f6	a7f6	a7f6	a7f6	a7f6	a7f6	a7f6
1215	a7f7	a7f7	a7f7	*	4a59	*	8ea1cad9,cad9,8ea1cad9v,cad9v	6750	e69d90	6750	00006750	a7f7	a7f7	a7f7	a7f7	a7f7	a7f7	a7f7
1216	a7f8	a7f8	a7f8	*	4a5a	*	8ea1cada,cada,8ea1cadav,cadav	6751	e69d91	6751	00006751	a7f8	a7f8	a7f8	a7f8	a7f8	a7f8	a7f8
1217	a7f9	a7f9	a7f9	*	4a5b	*	8ea1cadb,cadb,8ea1cadbv,cadbv	675c	e69d9c	675c	0000675c	a7f9	a7f9	a7f9	a7f9	a7f9	a7f9	a7f9
1218	a7fa	a7fa	a7fa	*	4a5c	*	8ea1cadc,cadc,8ea1cadcv,cadcv	6756	e69d96	6756	00006756	a7fa	a7fa	a7fa	a7fa	a7fa	a7fa	a7fa
1219	a7fb	a7fb	a7fb	*	4a5d	*	8ea1cadd,cadd,8ea1caddv,caddv	675e	e69d9e,ee8789	675e,e1c9	0000675e,0000e1c9	fcf1,a7fb	a7fb	a7fb	a7fb	a7fb	a7fb	fcf1,a7fb
1220	a7fc	a7fc	a7fc	*	4a5e	*	8ea1cade,cade,8ea1cadev,cadev	6749	e69d89	6749	00006749	a7fc	a7fc	a7fc	a7fc	a7fc	a7fc	a7fc
1221	a7fd	a7fd	a7fd	*	4a5f	*	8ea1cadf,cadf,8ea1cadfv,cadfv	6746	e69d86	6746	00006746	a7fd	a7fd	a7fd	a7fd	a7fd	a7fd	a7fd
1222	a7fe	a7fe	a7fe	*	4a60	*	8ea1cae0,cae0,8ea1cae0v,cae0v	6760	e69da0	6760	00006760	a7fe	a7fe	a7fe	a7fe	a7fe	a7fe	a7fe
1223	a840	a840	a840	*	4a61	*	8ea1cae1,cae1,8ea1cae1v,cae1v	6753	e69d93	6753	00006753	a840	a840	a840	a840	a840	a840	a840
1224	a841	a841	a841	*	4a62	*	8ea1cae2,cae2,8ea1cae2v,cae2v	6757	e69d97	6757	00006757	a841	a841	a841	a841	a841	a841	a841
1225	a842	a842	a842	*	4a63	*	8ea1cae3,cae3,8ea1cae3v,cae3v	6b65	e6ada5	6b65	00006b65	a842	a842	a842	a842	a842	a842	a842
1226	a843	a843	a843	*	4a64	*	8ea1cae4,cae4,8ea1cae4v,cae4v	6bcf	e6af8f	6bcf	00006bcf	a843	a843	a843	a843	a843	a843	a843
1227	a844	a844	a844	*	4a65	*	8ea1cae5,cae5,8ea1cae5v,cae5v	6c42	e6b182	6c42	00006c42	a844	a844	a844	a844	a844	a844	a844
1228	a845	a845	a845	*	4a66	*	8ea1cae6,cae6,8ea1cae6v,cae6v	6c5e	e6b19e	6c5e	00006c5e	a845	a845	a845	a845	a845	a845	a845
1229	a846	a846	a846	*	4a67	*	8ea1cae7,cae7,8ea1cae7v,cae7v	6c99	e6b299	6c99	00006c99	a846	a846	a846	a846	a846	a846	a846
1230	a847	a847	a847	*	4a68	*	8ea1cae8,cae8,8ea1cae8v,cae8v	6c81	e6b281	6c81	00006c81	a847	a847	a847	a847	a847	a847	a847
1231	a848	a848	a848	*	4a69	*	8ea1cae9,cae9,8ea1cae9v,cae9v	6c88	e6b288	6c88	00006c88	a848	a848	a848	a848	a848	a848	a848
1232	a849	a849	a849	*	4a6a	*	8ea1caea,caea,8ea1caeav,caeav	6c89	e6b289	6c89	00006c89	a849	a849	a849	a849	a849	a849	a849
1233	a84a	a84a	a84a	*	4a6b	*	8ea1caeb,caeb,8ea1caebv,caebv	6c85	e6b285	6c85	00006c85	a84a	a84a	a84a	a84a	a84a	a84a	a84a
1234	a84b	a84b	a84b	*	4a6c	*	8ea1caec,caec,8ea1caecv,caecv	6c9b	e6b29b	6c9b	00006c9b	a84b	a84b	a84b	a84b	a84b	a84b	a84b
1235	a84c	a84c	a84c	*	4a6d	*	8ea1caed,caed,8ea1caedv,caedv	6c6a	e6b1aa	6c6a	00006c6a	a84c	a84c	a84c	a84c	a84c	a84c	a84c
1236	a84d	a84d	a84d	*	4a6e	*	8ea1caee,caee,8ea1caeev,caeev	6c7a	e6b1ba	6c7a	00006c7a	a84d	a84d	a84d	a84d	a84d	a84d	a84d
1237	a84e	a84e	a84e	*	4a6f	*	8ea1caef,caef,8ea1caefv,caefv	6c90	e6b290	6c90	00006c90	a84e	a84e	a84e	a84e	a84e	a84e	a84e
1238	a84f	a84f	a84f	*	4a70	*	8ea1caf0,caf0,8ea1caf0v,caf0v	6c70	e6b1b0	6c70	00006c70	a84f	a84f	a84f	a84f	a84f	a84f	a84f
1239	a850	a850	a850	*	4a71	*	8ea1caf1,caf1,8ea1caf1v,caf1v	6c8c	e6b28c	6c8c	00006c8c	a850	a850	a850	a850	a850	a850	a850
1240	a851	a851	a851	*	4a72	*	8ea1caf2,caf2,8ea1caf2v,caf2v	6c68	e6b1a8	6c68	00006c68	a851	a851	a851	a851	a851	a851	a851
1241	a852	a852	a852	*	4a73	*	8ea1caf3,caf3,8ea1caf3v,caf3v	6c96	e6b296	6c96	00006c96	a852	a852	a852	a852	a852	a852	a852
1242	a853	a853	a853	*	4a74	*	8ea1caf4,caf4,8ea1caf4v,caf4v	6c92	e6b292	6c92	00006c92	a853	a853	a853	a853	a853	a853	a853
1243	a854	a854	a854	*	4a75	*	8ea1caf5,caf5,8ea1caf5v,caf5v	6c7d	e6b1bd	6c7d	00006c7d	a854	a854	a854	a854	a854	a854	a854
1244	a855	a855	a855	*	4a76	*	8ea1caf6,caf6,8ea1caf6v,caf6v	6c83	e6b283	6c83	00006c83	a855	a855	a855	a855	a855	a855	a855
1245	a856	a856	a856	*	4a77	*	8ea1caf7,caf7,8ea1caf7v,caf7v	6c72	e6b1b2	6c72	00006c72	a856	a856	a856	a856	a856	a856	a856
1246	a857	a857	a857	*	4a78	*	8ea1caf8,caf8,8ea1caf8v,caf8v	6c7e	e6b1be	6c7e	00006c7e	a857	a857	a857	a857	a857	a857	a857
1247	a858	a858	a858	*	4a79	*	8ea1caf9,caf9,8ea1caf9v,caf9v	6c74	e6b1b4	6c74	00006c74	a858	a858	a858	a858	a858	a858	a858
1248	a859	a859	a859	*	4a7a	*	8ea1cafa,cafa,8ea1cafav,cafav	6c86	e6b286	6c86	00006c86	a859	a859	a859	a859	a859	a859	a859
1249	a85a	a85a	a85a	*	4a7b	*	8ea1cafb,cafb,8ea1cafbv,cafbv	6c76	e6b1b6	6c76	00006c76	a85a	a85a	a85a	a85a	a85a	a85a	a85a
1250	a85b	a85b	a85b	*	4a7c	*	8ea1cafc,cafc,8ea1cafcv,cafcv	6c8d	e6b28d	6c8d	00006c8d	a85b	a85b	a85b	a85b	a85b	a85b	a85b
1251	a85c	a85c	a85c	*	4a7d	*	8ea1cafd,cafd,8ea1cafdv,cafdv	6c94	e6b294	6c94	00006c94	a85c	a85c	a85c	a85c	a85c	a85c	a85c
1252	a85d	a85d	a85d	*	4a7e	*	8ea1cafe,cafe,8ea1cafev,cafev	6c98	e6b298	6c98	00006c98	a85d	a85d	a85d	a85d	a85d	a85d	a85d
1253	a85e	a85e	a85e	*	4b21	*	8ea1cba1,cba1,8ea1cba1v,cba1v	6c82	e6b282	6c82	00006c82	a85e	a85e	a85e	a85e	a85e	a85e	a85e
1254	a85f	a85f	a85f	*	4b22	*	8ea1cba2,cba2,8ea1cba2v,cba2v	7076	e781b6	7076	00007076	a85f	a85f	a85f	a85f	a85f	a85f	a85f
1255	a860	a860	a860	*	4b23	*	8ea1cba3,cba3,8ea1cba3v,cba3v	707c	e781bc	707c	0000707c	a860	a860	a860	a860	a860	a860	a860
1256	a861	a861	a861	*	4b24	*	8ea1cba4,cba4,8ea1cba4v,cba4v	707d	e781bd	707d	0000707d	a861	a861	a861	a861	a861	a861	a861
1257	a862	a862	a862	*	4b25	*	8ea1cba5,cba5,8ea1cba5v,cba5v	7078	e781b8	7078	00007078	a862	a862	a862	a862	a862	a862	a862
1258	a863	a863	a863	*	4b26	*	8ea1cba6,cba6,8ea1cba6v,cba6v	7262	e789a2	7262	00007262	a863	a863	a863	a863	a863	a863	a863
1259	a864	a864	a864	*	4b27	*	8ea1cba7,cba7,8ea1cba7v,cba7v	7261	e789a1	7261	00007261	a864	a864	a864	a864	a864	a864	a864
1260	a865	a865	a865	*	4b28	*	8ea1cba8,cba8,8ea1cba8v,cba8v	7260	e789a0	7260	00007260	a865	a865	a865	a865	a865	a865	a865
1261	a866	a866	a866	*	4b29	*	8ea1cba9,cba9,8ea1cba9v,cba9v	72c4	e78b84	72c4	000072c4	a866	a866	a866	a866	a866	a866	a866
1262	a867	a867	a867	*	4b2a	*	8ea1cbaa,cbaa,8ea1cbaav,cbaav	72c2	e78b82	72c2	000072c2	a867	a867	a867	a867	a867	a867	a867
1263	a868	a868	a868	*	4b2b	*	8ea1cbab,cbab,8ea1cbabv,cbabv	7396	e78e96	7396	00007396	a868	a868	a868	a868	a868	a868	a868
1264	a869	a869	a869	*	4b2c	*	8ea1cbac,cbac,8ea1cbacv,cbacv	752c	e794ac	752c	0000752c	a869	a869	a869	a869	a869	a869	a869
1265	a86a	a86a	a86a	*	4b2d	*	8ea1cbad,cbad,8ea1cbadv,cbadv	752b	e794ab	752b	0000752b	a86a	a86a	a86a	a86a	a86a	a86a	a86a
1266	a86b	a86b	a86b	*	4b2e	*	8ea1cbae,cbae,8ea1cbaev,cbaev	7537	e794b7	7537	00007537	a86b	a86b	a86b	a86b	a86b	a86b	a86b
1267	a86c	a86c	a86c	*	4b2f	*	8ea1cbaf,cbaf,8ea1cbafv,cbafv	7538	e794b8	7538	00007538	a86c	a86c	a86c	a86c	a86c	a86c	a86c
1268	a86d	a86d	a86d	*	4b30	*	8ea1cbb0,cbb0,8ea1cbb0v,cbb0v	7682	e79a82	7682	00007682	a86d	a86d	a86d	a86d	a86d	a86d	a86d
1269	a86e	a86e	a86e	*	4b31	*	8ea1cbb1,cbb1,8ea1cbb1v,cbb1v	76ef	e79baf	76ef	000076ef	a86e	a86e	a86e	a86e	a86e	a86e	a86e
1270	a86f	a86f	a86f	*	4b32	*	8ea1cbb2,cbb2,8ea1cbb2v,cbb2v	77e3	e79fa3	77e3	000077e3	a86f	a86f	a86f	a86f	a86f	a86f	a86f
1271	a870	a870	a870	*	4b33	*	8ea1cbb3,cbb3,8ea1cbb3v,cbb3v	79c1	e7a781	79c1	000079c1	a870	a870	a870	a870	a870	a870	a870
1272	a871	a871	a871	*	4b34	*	8ea1cbb4,cbb4,8ea1cbb4v,cbb4v	79c0	e7a780	79c0	000079c0	a871	a871	a871	a871	a871	a871	a871
1273	a872	a872	a872	*	4b35	*	8ea1cbb5,cbb5,8ea1cbb5v,cbb5v	79bf	e7a6bf	79bf	000079bf	a872	a872	a872	a872	a872	a872	a872
1274	a873	a873	a873	*	4b36	*	8ea1cbb6,cbb6,8ea1cbb6v,cbb6v	7a76	e7a9b6	7a76	00007a76	a873	a873	a873	a873	a873	a873	a873
1275	a874	a874	a874	*	4b37	*	8ea1cbb7,cbb7,8ea1cbb7v,cbb7v	7cfb	e7b3bb	7cfb	00007cfb	a874	a874	a874	a874	a874	a874	a874
1276	a875	a875	a875	*	4b38	*	8ea1cbb8,cbb8,8ea1cbb8v,cbb8v	7f55	e7bd95	7f55	00007f55	a875	a875	a875	a875	a875	a875	a875
1277	a876	a876	a876	*	4b39	*	8ea1cbb9,cbb9,8ea1cbb9v,cbb9v	8096	e88296	8096	00008096	a876	a876	a876	a876	a876	a876	a876
1278	a877	a877	a877	*	4b3a	*	8ea1cbba,cbba,8ea1cbbav,cbbav	8093	e88293	8093	00008093	a877	a877	a877	a877	a877	a877	a877
1279	a878	a878	a878	*	4b3b	*	8ea1cbbb,cbbb,8ea1cbbbv,cbbbv	809d	e8829d	809d	0000809d	a878	a878	a878	a878	a878	a878	a878
1280	a879	a879	a879	*	4b3c	*	8ea1cbbc,cbbc,8ea1cbbcv,cbbcv	8098	e88298	8098	00008098	a879	a879	a879	a879	a879	a879	a879
1281	a87a	a87a	a87a	*	4b3d	*	8ea1cbbd,cbbd,8ea1cbbdv,cbbdv	809b	e8829b	809b	0000809b	a87a	a87a	a87a	a87a	a87a	a87a	a87a
1282	a87b	a87b	a87b	*	4b3e	*	8ea1cbbe,cbbe,8ea1cbbev,cbbev	809a	e8829a	809a	0000809a	a87b	a87b	a87b	a87b	a87b	a87b	a87b
1283	a87c	a87c	a87c	*	4b3f	*	8ea1cbbf,cbbf,8ea1cbbfv,cbbfv	80b2	e882b2	80b2	000080b2	a87c	a87c	a87c	a87c	a87c	a87c	a87c
1284	a87d	a87d	a87d	*	4b40	*	8ea1cbc0,cbc0,8ea1cbc0v,cbc0v	826f	e889af	826f	0000826f	a87d	a87d	a87d	a87d	a87d	a87d	a87d
1285	a87e	a87e	a87e	*	4b41	*	8ea1cbc1,cbc1,8ea1cbc1v,cbc1v	8292	e88a92	8292	00008292	a87e	a87e	a87e	a87e	a87e	a87e	a87e
1286	a8a1	a8a1	a8a1	*	4b42	*	8ea1cbc2,cbc2,8ea1cbc2v,cbc2v	828b	e88a8b	828b	0000828b	a8a1	a8a1	a8a1	a8a1	a8a1	a8a1	a8a1
1287	a8a2	a8a2	a8a2	*	4b43	*	8ea1cbc3,cbc3,8ea1cbc3v,cbc3v	828d	e88a8d	828d	0000828d	a8a2	a8a2	a8a2	a8a2	a8a2	a8a2	a8a2
1288	a8a3	a8a3	a8a3	*	2854,4b44	*	8ea1a8d4,8ea1cbc4,a8d4,cbc4,8ea1a8d4v,8ea1cbc4v,a8d4v,cbc4v	898b	e8a68b,e2be92	898b,2f92	0000898b,00002f92	a8a3	a8a3	a8a3	a8a3	a8a3	a8a3	a8a3
1289	a8a4	a8a4	a8a4	*	2855,4b45	*	8ea1a8d5,8ea1cbc5,a8d5,cbc5,8ea1a8d5v,8ea1cbc5v,a8d5v,cbc5v	2ec6,89d2	e8a792,e2be93	89d2,2f93	000089d2,00002f93	a8a4	a8a4	a8a4	a8a4	a8a4	a8a4	a8a4
1290	a8a5	a8a5	a8a5	*	2856,4b46	*	8ea1a8d6,8ea1cbc6,a8d6,cbc6,8ea1a8d6v,8ea1cbc6v,a8d6v,cbc6v	8a00	e8a880,e2be94	8a00,2f94	00008a00,00002f94	a8a5	a8a5	a8a5	a8a5	a8a5	a8a5	a8a5
1291	a8a6	a8a6	a8a6	*	2857,4b47	*	8ea1a8d7,8ea1cbc7,a8d7,cbc7,8ea1a8d7v,8ea1cbc7v,a8d7v,cbc7v	8c37	e8b0b7,e2be95	8c37,2f95	00008c37,00002f95	a8a6	a8a6	a8a6	a8a6	a8a6	a8a6	a8a6
1292	a8a7	a8a7	a8a7	*	2858,4b48	*	8ea1a8d8,8ea1cbc8,a8d8,cbc8,8ea1a8d8v,8ea1cbc8v,a8d8v,cbc8v	8c46	e8b186,e2be96	8c46,2f96	00008c46,00002f96	a8a7	a8a7	a8a7	a8a7	a8a7	a8a7	a8a7
1293	a8a8	a8a8	a8a8	*	2859,4b49	*	8ea1a8d9,8ea1cbc9,a8d9,cbc9,8ea1a8d9v,8ea1cbc9v,a8d9v,cbc9v	8c55	e8b195,e2be97	8c55,2f97	00008c55,00002f97	a8a8	a8a8	a8a8	a8a8	a8a8	a8a8	a8a8
1294	a8a9	a8a9	a8a9	*	285b,4b4a	*	8ea1a8db,8ea1cbca,a8db,cbca,8ea1a8dbv,8ea1cbcav,a8dbv,cbcav	8c9d	e8b29d,e2be99	8c9d,2f99	00008c9d,00002f99	a8a9	a8a9	a8a9	a8a9	a8a9	a8a9	a8a9
1295	a8aa	a8aa	a8aa	*	285c,4b4b	*	8ea1a8dc,8ea1cbcb,a8dc,cbcb,8ea1a8dcv,8ea1cbcbv,a8dcv,cbcbv	8d64	e8b5a4,e2be9a	8d64,2f9a	00008d64,00002f9a	a8aa	a8aa	a8aa	a8aa	a8aa	a8aa	a8aa
1296	a8ab	a8ab	a8ab	*	285d,4b4c	*	8ea1a8dd,8ea1cbcc,a8dd,cbcc,8ea1a8ddv,8ea1cbccv,a8ddv,cbccv	8d70	e8b5b0,e2be9b	8d70,2f9b	00008d70,00002f9b	a8ab	a8ab	a8ab	a8ab	a8ab	a8ab	a8ab
1297	a8ac	a8ac	a8ac	*	285e,4b4d	*	8ea1a8de,8ea1cbcd,a8de,cbcd,8ea1a8dev,8ea1cbcdv,a8dev,cbcdv	8db3	e8b6b3,e2be9c	8db3,2f9c	00008db3,00002f9c	a8ac	a8ac	a8ac	a8ac	a8ac	a8ac	a8ac
1298	a8ad	a8ad	a8ad	*	285f,4b4e	*	8ea1a8df,8ea1cbce,a8df,cbce,8ea1a8dfv,8ea1cbcev,a8dfv,cbcev	8eab	e8baab,e2be9d	8eab,2f9d	00008eab,00002f9d	a8ad	a8ad	a8ad	a8ad	a8ad	a8ad	a8ad
1299	a8ae	a8ae	a8ae	*	2860,4b4f	*	8ea1a8e0,8ea1cbcf,a8e0,cbcf,8ea1a8e0v,8ea1cbcfv,a8e0v,cbcfv	8eca	e8bb8a,e2be9e	8eca,2f9e	00008eca,00002f9e	a8ae	a8ae	a8ae	a8ae	a8ae	a8ae	a8ae
1300	a8af	a8af	a8af	*	2861,4b50	*	8ea1a8e1,8ea1cbd0,a8e1,cbd0,8ea1a8e1v,8ea1cbd0v,a8e1v,cbd0v	8f9b	e8be9b,e2be9f	8f9b,2f9f	00008f9b,00002f9f	a8af	a8af	a8af	a8af	a8af	a8af	a8af
1301	a8b0	a8b0	a8b0	*	2862,4b51	*	8ea1a8e2,8ea1cbd1,a8e2,cbd1,8ea1a8e2v,8ea1cbd1v,a8e2v,cbd1v	8fb0	e8beb0,e2bea0	8fb0,2fa0	00008fb0,00002fa0	a8b0	a8b0	a8b0	a8b0	a8b0	a8b0	a8b0
1302	a8b1	a8b1	a8b1	*	4b52	*	8ea1cbd2,cbd2,8ea1cbd2v,cbd2v	8fc2	e8bf82	8fc2	00008fc2	a8b1	a8b1	a8b1	a8b1	a8b1	a8b1	a8b1
1303	a8b2	a8b2	a8b2	*	4b53	*	8ea1cbd3,cbd3,8ea1cbd3v,cbd3v	8fc6	e8bf86	8fc6	00008fc6	a8b2	a8b2	a8b2	a8b2	a8b2	a8b2	a8b2
1304	a8b3	a8b3	a8b3	*	4b54	*	8ea1cbd4,cbd4,8ea1cbd4v,cbd4v	8fc5	e8bf85	8fc5	00008fc5	a8b3	a8b3	a8b3	a8b3	a8b3	a8b3	a8b3
1305	a8b4	a8b4	a8b4	*	4b55	*	8ea1cbd5,cbd5,8ea1cbd5v,cbd5v	8fc4	e8bf84	8fc4	00008fc4	a8b4	a8b4	a8b4	a8b4	a8b4	a8b4	a8b4
1306	a8b5	a8b5	a8b5	*	4b56	*	8ea1cbd6,cbd6,8ea1cbd6v,cbd6v	5de1	e5b7a1	5de1	00005de1	a8b5	a8b5	a8b5	a8b5	a8b5	a8b5	a8b5
1307	a8b6	a8b6	a8b6	*	2864,4b57	*	8ea1a8e4,8ea1cbd7,a8e4,cbd7,8ea1a8e4v,8ea1cbd7v,a8e4v,cbd7v	9091	e2bea2,e98291	2fa2,9091	00002fa2,00009091	a8b6	a8b6	a8b6	a8b6	a8b6	a8b6	a8b6
1308	a8b7	a8b7	a8b7	*	4b58	*	8ea1cbd8,cbd8,8ea1cbd8v,cbd8v	90a2	e982a2	90a2	000090a2	a8b7	a8b7	a8b7	a8b7	a8b7	a8b7	a8b7
1309	a8b8	a8b8	a8b8	*	4b59	*	8ea1cbd9,cbd9,8ea1cbd9v,cbd9v	90aa	e982aa	90aa	000090aa	a8b8	a8b8	a8b8	a8b8	a8b8	a8b8	a8b8
1310	a8b9	a8b9	a8b9	*	4b5a	*	8ea1cbda,cbda,8ea1cbdav,cbdav	90a6	e982a6	90a6	000090a6	a8b9	a8b9	a8b9	a8b9	a8b9	a8b9	a8b9
1311	a8ba	a8ba	a8ba	*	4b5b	*	8ea1cbdb,cbdb,8ea1cbdbv,cbdbv	90a3	e982a3	90a3	000090a3	a8ba	a8ba	a8ba	a8ba	a8ba	a8ba	a8ba
1312	a8bb	a8bb	a8bb	*	2865,4b5c	*	8ea1a8e5,8ea1cbdc,a8e5,cbdc,8ea1a8e5v,8ea1cbdcv,a8e5v,cbdcv	9149	e98589,e2bea3	9149,2fa3	00009149,00002fa3	a8bb	a8bb	a8bb	a8bb	a8bb	a8bb	a8bb
1313	a8bc	a8bc	a8bc	*	2866,4b5d	*	8ea1a8e6,8ea1cbdd,a8e6,cbdd,8ea1a8e6v,8ea1cbddv,a8e6v,cbddv	91c6	e98786,e2bea4	91c6,2fa4	000091c6,00002fa4	a8bc	a8bc	a8bc	a8bc	a8bc	a8bc	a8bc
1314	a8bd	a8bd	a8bd	*	2867,4b5e	*	8ea1a8e7,8ea1cbde,a8e7,cbde,8ea1a8e7v,8ea1cbdev,a8e7v,cbdev	91cc	e9878c,e2bea5	91cc,2fa5	000091cc,00002fa5	a8bd	a8bd	a8bd	a8bd	a8bd	a8bd	a8bd
1315	a8be	a8be	a8be	*	4b5f	*	8ea1cbdf,cbdf,8ea1cbdfv,cbdfv	9632	e998b2	9632	00009632	a8be	a8be	a8be	a8be	a8be	a8be	a8be
1316	a8bf	a8bf	a8bf	*	4b60	*	8ea1cbe0,cbe0,8ea1cbe0v,cbe0v	962e	e998ae	962e	0000962e	a8bf	a8bf	a8bf	a8bf	a8bf	a8bf	a8bf
1317	a8c0	a8c0	a8c0	*	4b61	*	8ea1cbe1,cbe1,8ea1cbe1v,cbe1v	9631	e998b1	9631	00009631	a8c0	a8c0	a8c0	a8c0	a8c0	a8c0	a8c0
1318	a8c1	a8c1	a8c1	*	4b62	*	8ea1cbe2,cbe2,8ea1cbe2v,cbe2v	962a	e998aa	962a	0000962a	a8c1	a8c1	a8c1	a8c1	a8c1	a8c1	a8c1
1319	a8c2	a8c2	a8c2	*	4b63	*	8ea1cbe3,cbe3,8ea1cbe3v,cbe3v	962c	e998ac	962c	0000962c	a8c2	a8c2	a8c2	a8c2	a8c2	a8c2	a8c2
1320	a8c3	a8c3	a8c3	*	4b64	*	8ea1cbe4,cbe4,8ea1cbe4v,cbe4v	4e26	e4b8a6	4e26	00004e26	a8c3	a8c3	a8c3	a8c3	a8c3	a8c3	a8c3
1321	a8c4	a8c4	a8c4	*	4b65	*	8ea1cbe5,cbe5,8ea1cbe5v,cbe5v	4e56	e4b996	4e56	00004e56	a8c4	a8c4	a8c4	a8c4	a8c4	a8c4	a8c4
1322	a8c5	a8c5	a8c5	*	4b66	*	8ea1cbe6,cbe6,8ea1cbe6v,cbe6v	4e73	e4b9b3	4e73	00004e73	a8c5	a8c5	a8c5	a8c5	a8c5	a8c5	a8c5
1323	a8c6	a8c6	a8c6	*	4b67	*	8ea1cbe7,cbe7,8ea1cbe7v,cbe7v	4e8b	e4ba8b	4e8b	00004e8b	a8c6	a8c6	a8c6	a8c6	a8c6	a8c6	a8c6
1324	a8c7	a8c7	a8c7	*	4b68	*	8ea1cbe8,cbe8,8ea1cbe8v,cbe8v	4e9b	e4ba9b	4e9b	00004e9b	a8c7	a8c7	a8c7	a8c7	a8c7	a8c7	a8c7
1325	a8c8	a8c8	a8c8	*	4b69	*	8ea1cbe9,cbe9,8ea1cbe9v,cbe9v	4e9e	e4ba9e	4e9e	00004e9e	a8c8	a8c8	a8c8	a8c8	a8c8	a8c8	a8c8
1326	a8c9	a8c9	a8c9	*	4b6a	*	8ea1cbea,cbea,8ea1cbeav,cbeav	4eab	e4baab	4eab	00004eab	a8c9	a8c9	a8c9	a8c9	a8c9	a8c9	a8c9
1327	a8ca	a8ca	a8ca	*	4b6b	*	8ea1cbeb,cbeb,8ea1cbebv,cbebv	4eac	e4baac	4eac	00004eac	a8ca	a8ca	a8ca	a8ca	a8ca	a8ca	a8ca
1328	a8cb	a8cb	a8cb	*	4b6c	*	8ea1cbec,cbec,8ea1cbecv,cbecv	4f6f	e4bdaf	4f6f	00004f6f	a8cb	a8cb	a8cb	a8cb	a8cb	a8cb	a8cb
1329	a8cc	a8cc	a8cc	*	4b6d	*	8ea1cbed,cbed,8ea1cbedv,cbedv	4f9d	e4be9d	4f9d	00004f9d	a8cc	a8cc	a8cc	a8cc	a8cc	a8cc	a8cc
1330	a8cd	a8cd	a8cd	*	4b6e	*	8ea1cbee,cbee,8ea1cbeev,cbeev	4f8d	e4be8d	4f8d	00004f8d	a8cd	a8cd	a8cd	a8cd	a8cd	a8cd	a8cd
1331	a8ce	a8ce	a8ce	*	4b6f	*	8ea1cbef,cbef,8ea1cbefv,cbefv	4f73	e4bdb3	4f73	00004f73	a8ce	a8ce	a8ce	a8ce	a8ce	a8ce	a8ce
1332	a8cf	a8cf	a8cf	*	4b70	*	8ea1cbf0,cbf0,8ea1cbf0v,cbf0v	4f7f	e4bdbf	4f7f	00004f7f	a8cf	a8cf	a8cf	a8cf	a8cf	a8cf	a8cf
1333	a8d0	a8d0	a8d0	*	4b71	*	8ea1cbf1,cbf1,8ea1cbf1v,cbf1v	4f6c	e4bdac	4f6c	00004f6c	a8d0	a8d0	a8d0	a8d0	a8d0	a8d0	a8d0
1334	a8d1	a8d1	a8d1	*	4b72	*	8ea1cbf2,cbf2,8ea1cbf2v,cbf2v	4f9b	e4be9b	4f9b	00004f9b	a8d1	a8d1	a8d1	a8d1	a8d1	a8d1	a8d1
1335	a8d2	a8d2	a8d2	*	4b73	*	8ea1cbf3,cbf3,8ea1cbf3v,cbf3v	4f8b	e4be8b	4f8b	00004f8b	a8d2	a8d2	a8d2	a8d2	a8d2	a8d2	a8d2
1336	a8d3	a8d3	a8d3	*	4b74	*	8ea1cbf4,cbf4,8ea1cbf4v,cbf4v	4f86	e4be86	4f86	00004f86	a8d3	a8d3	a8d3	a8d3	a8d3	a8d3	a8d3
1337	a8d4	a8d4	a8d4	*	4b75	*	8ea1cbf5,cbf5,8ea1cbf5v,cbf5v	4f83	e4be83	4f83	00004f83	a8d4	a8d4	a8d4	a8d4	a8d4	a8d4	a8d4
1338	a8d5	a8d5	a8d5	*	4b76	*	8ea1cbf6,cbf6,8ea1cbf6v,cbf6v	4f70	e4bdb0	4f70	00004f70	a8d5	a8d5	a8d5	a8d5	a8d5	a8d5	a8d5
1339	a8d6	a8d6	a8d6	*	4b77	*	8ea1cbf7,cbf7,8ea1cbf7v,cbf7v	4f75	e4bdb5	4f75	00004f75	a8d6	a8d6	a8d6	a8d6	a8d6	a8d6	a8d6
1340	a8d7	a8d7	a8d7	*	4b78	*	8ea1cbf8,cbf8,8ea1cbf8v,cbf8v	4f88	e4be88	4f88	00004f88	a8d7	a8d7	a8d7	a8d7	a8d7	a8d7	a8d7
1341	a8d8	a8d8	a8d8	*	4b79	*	8ea1cbf9,cbf9,8ea1cbf9v,cbf9v	4f69	e4bda9	4f69	00004f69	a8d8	a8d8	a8d8	a8d8	a8d8	a8d8	a8d8
1342	a8d9	a8d9	a8d9	*	4b7a	*	8ea1cbfa,cbfa,8ea1cbfav,cbfav	4f7b	e4bdbb	4f7b	00004f7b	a8d9	a8d9	a8d9	a8d9	a8d9	a8d9	a8d9
1343	a8da	a8da	a8da	*	4b7b	*	8ea1cbfb,cbfb,8ea1cbfbv,cbfbv	4f96	e4be96	4f96	00004f96	a8da	a8da	a8da	a8da	a8da	a8da	a8da
1344	a8db	a8db	a8db	*	4b7c	*	8ea1cbfc,cbfc,8ea1cbfcv,cbfcv	4f7e	e4bdbe	4f7e	00004f7e	a8db	a8db	a8db	a8db	a8db	a8db	a8db
1345	a8dc	a8dc	a8dc	*	4b7d	*	8ea1cbfd,cbfd,8ea1cbfdv,cbfdv	4f8f	e4be8f	4f8f	00004f8f	a8dc	a8dc	a8dc	a8dc	a8dc	a8dc	a8dc
1346	a8dd	a8dd	a8dd	*	4b7e	*	8ea1cbfe,cbfe,8ea1cbfev,cbfev	4f91	e4be91	4f91	00004f91	a8dd	a8dd	a8dd	a8dd	a8dd	a8dd	a8dd
1347	a8de	a8de	a8de	*	4c21	*	8ea1cca1,cca1,8ea1cca1v,cca1v	4f7a	e4bdba	4f7a	00004f7a	a8de	a8de	a8de	a8de	a8de	a8de	a8de
1348	a8df	a8df	a8df	*	4c22	*	8ea1cca2,cca2,8ea1cca2v,cca2v	5154	e58594	5154	00005154	a8df	a8df	a8df	a8df	a8df	a8df	a8df
1349	a8e0	a8e0	a8e0	*	4c23	*	8ea1cca3,cca3,8ea1cca3v,cca3v	5152	e58592	5152	00005152	a8e0	a8e0	a8e0	a8e0	a8e0	a8e0	a8e0
1350	a8e1	a8e1	a8e1	*	4c24	*	8ea1cca4,cca4,8ea1cca4v,cca4v	5155	e58595	5155	00005155	a8e1	a8e1	a8e1	a8e1	a8e1	a8e1	a8e1
1351	a8e2	a8e2	a8e2	*	4c25	*	8ea1cca5,cca5,8ea1cca5v,cca5v	5169	e585a9	5169	00005169	a8e2	a8e2	a8e2	a8e2	a8e2	a8e2	a8e2
1352	a8e3	a8e3	a8e3	*	4c26	*	8ea1cca6,cca6,8ea1cca6v,cca6v	5177	e585b7	5177	00005177	a8e3	a8e3	a8e3	a8e3	a8e3	a8e3	a8e3
1353	a8e4	a8e4	a8e4	*	4c27	*	8ea1cca7,cca7,8ea1cca7v,cca7v	5176	e585b6	5176	00005176	a8e4	a8e4	a8e4	a8e4	a8e4	a8e4	a8e4
1354	a8e5	a8e5	a8e5	*	4c28	*	8ea1cca8,cca8,8ea1cca8v,cca8v	5178	e585b8	5178	00005178	a8e5	a8e5	a8e5	a8e5	a8e5	a8e5	a8e5
1355	a8e6	a8e6	a8e6	*	4c29	*	8ea1cca9,cca9,8ea1cca9v,cca9v	51bd	e586bd	51bd	000051bd	a8e6	a8e6	a8e6	a8e6	a8e6	a8e6	a8e6
1356	a8e7	a8e7	a8e7	*	4c2a	*	8ea1ccaa,ccaa,8ea1ccaav,ccaav	51fd	e587bd	51fd	000051fd	a8e7	a8e7	a8e7	a8e7	a8e7	a8e7	a8e7
1357	a8e8	a8e8	a8e8	*	4c2b	*	8ea1ccab,ccab,8ea1ccabv,ccabv	523b	e588bb	523b	0000523b	a8e8	a8e8	a8e8	a8e8	a8e8	a8e8	a8e8
1358	a8e9	a8e9	a8e9	*	4c2c	*	8ea1ccac,ccac,8ea1ccacv,ccacv	5238	e588b8	5238	00005238	a8e9	a8e9	a8e9	a8e9	a8e9	a8e9	a8e9
1359	a8ea	a8ea	a8ea	*	4c2d	*	8ea1ccad,ccad,8ea1ccadv,ccadv	5237	e588b7	5237	00005237	a8ea	a8ea	a8ea	a8ea	a8ea	a8ea	a8ea
1360	a8eb	a8eb	a8eb	*	4c2e	*	8ea1ccae,ccae,8ea1ccaev,ccaev	523a	e588ba	523a	0000523a	a8eb	a8eb	a8eb	a8eb	a8eb	a8eb	a8eb
1361	a8ec	a8ec	a8ec	*	4c2f	*	8ea1ccaf,ccaf,8ea1ccafv,ccafv	5230	e588b0	5230	00005230	a8ec	a8ec	a8ec	a8ec	a8ec	a8ec	a8ec
1362	a8ed	a8ed	a8ed	*	4c30	*	8ea1ccb0,ccb0,8ea1ccb0v,ccb0v	522e	e588ae	522e	0000522e	a8ed	a8ed	a8ed	a8ed	a8ed	a8ed	a8ed
1363	a8ee	a8ee	a8ee	*	4c31	*	8ea1ccb1,ccb1,8ea1ccb1v,ccb1v	5236	e588b6	5236	00005236	a8ee	a8ee	a8ee	a8ee	a8ee	a8ee	a8ee
1364	a8ef	a8ef	a8ef	*	4c32	*	8ea1ccb2,ccb2,8ea1ccb2v,ccb2v	5241	e58981	5241	00005241	a8ef	a8ef	a8ef	a8ef	a8ef	a8ef	a8ef
1365	a8f0	a8f0	a8f0	*	4c33	*	8ea1ccb3,ccb3,8ea1ccb3v,ccb3v	52be	e58abe	52be	000052be	a8f0	a8f0	a8f0	a8f0	a8f0	a8f0	a8f0
1366	a8f1	a8f1	a8f1	*	4c34	*	8ea1ccb4,ccb4,8ea1ccb4v,ccb4v	52bb	e58abb	52bb	000052bb	a8f1	a8f1	a8f1	a8f1	a8f1	a8f1	a8f1
1367	a8f2	a8f2	a8f2	*	4c35	*	8ea1ccb5,ccb5,8ea1ccb5v,ccb5v	5352	e58d92	5352	00005352	a8f2	a8f2	a8f2	a8f2	a8f2	a8f2	a8f2
1368	a8f3	a8f3	a8f3	*	4c36	*	8ea1ccb6,ccb6,8ea1ccb6v,ccb6v	5354	e58d94	5354	00005354	a8f3	a8f3	a8f3	a8f3	a8f3	a8f3	a8f3
1369	a8f4	a8f4	a8f4	*	4c37	*	8ea1ccb7,ccb7,8ea1ccb7v,ccb7v	5353	e58d93	5353	00005353	a8f4	a8f4	a8f4	a8f4	a8f4	a8f4	a8f4
1370	a8f5	a8f5	a8f5	*	4c38	*	8ea1ccb8,ccb8,8ea1ccb8v,ccb8v	5351	e58d91	5351	00005351	a8f5	a8f5	a8f5	a8f5	a8f5	a8f5	a8f5
1371	a8f6	a8f6	a8f6	*	4c39	*	8ea1ccb9,ccb9,8ea1ccb9v,ccb9v	5366	e58da6	5366	00005366	a8f6	a8f6	a8f6	a8f6	a8f6	a8f6	a8f6
1372	a8f7	a8f7	a8f7	*	4c3a	*	8ea1ccba,ccba,8ea1ccbav,ccbav	5377	e58db7	5377	00005377	a8f7	a8f7	a8f7	a8f7	a8f7	a8f7	a8f7
1373	a8f8	a8f8	a8f8	*	4c3b	*	8ea1ccbb,ccbb,8ea1ccbbv,ccbbv	5378	e58db8	5378	00005378	a8f8	a8f8	a8f8	a8f8	a8f8	a8f8	a8f8
1374	a8f9	a8f9	a8f9	*	4c3c	*	8ea1ccbc,ccbc,8ea1ccbcv,ccbcv	5379	e58db9	5379	00005379	a8f9	a8f9	a8f9	a8f9	a8f9	a8f9	a8f9
1375	a8fa	a8fa	a8fa	*	4c3d	*	8ea1ccbd,ccbd,8ea1ccbdv,ccbdv	53d6	e58f96	53d6	000053d6	a8fa	a8fa	a8fa	a8fa	a8fa	a8fa	a8fa
1376	a8fb	a8fb	a8fb	*	4c3e	*	8ea1ccbe,ccbe,8ea1ccbev,ccbev	53d4	e58f94	53d4	000053d4	a8fb	a8fb	a8fb	a8fb	a8fb	a8fb	a8fb
1377	a8fc	a8fc	a8fc	*	4c3f	*	8ea1ccbf,ccbf,8ea1ccbfv,ccbfv	53d7	e58f97	53d7	000053d7	a8fc	a8fc	a8fc	a8fc	a8fc	a8fc	a8fc
1378	a8fd	a8fd	a8fd	*	4c40	*	8ea1ccc0,ccc0,8ea1ccc0v,ccc0v	5473	e591b3	5473	00005473	a8fd	a8fd	a8fd	a8fd	a8fd	a8fd	a8fd
1379	a8fe	a8fe	a8fe	*	4c41	*	8ea1ccc1,ccc1,8ea1ccc1v,ccc1v	5475	e591b5	5475	00005475	a8fe	a8fe	a8fe	a8fe	a8fe	a8fe	a8fe
1380	a940	a940	a940	*	4c42	*	8ea1ccc2,ccc2,8ea1ccc2v,ccc2v	5496	e59296	5496	00005496	a940	a940	a940	a940	a940	a940	a940
1381	a941	a941	a941	*	4c43	*	8ea1ccc3,ccc3,8ea1ccc3v,ccc3v	5478	e591b8	5478	00005478	a941	a941	a941	a941	a941	a941	a941
1382	a942	a942	a942	*	4c44	*	8ea1ccc4,ccc4,8ea1ccc4v,ccc4v	5495	e59295	5495	00005495	a942	a942	a942	a942	a942	a942	a942
1383	a943	a943	a943	*	4c45	*	8ea1ccc5,ccc5,8ea1ccc5v,ccc5v	5480	e59280	5480	00005480	a943	a943	a943	a943	a943	a943	a943
1384	a944	a944	a944	*	4c46	*	8ea1ccc6,ccc6,8ea1ccc6v,ccc6v	547b	e591bb	547b	0000547b	a944	a944	a944	a944	a944	a944	a944
1385	a945	a945	a945	*	4c47	*	8ea1ccc7,ccc7,8ea1ccc7v,ccc7v	5477	e591b7	5477	00005477	a945	a945	a945	a945	a945	a945	a945
1386	a946	a946	a946	*	4c48	*	8ea1ccc8,ccc8,8ea1ccc8v,ccc8v	5484	e59284	5484	00005484	a946	a946	a946	a946	a946	a946	a946
1387	a947	a947	a947	*	4c49	*	8ea1ccc9,ccc9,8ea1ccc9v,ccc9v	5492	e59292	5492	00005492	a947	a947	a947	a947	a947	a947	a947
1388	a948	a948	a948	*	4c4a	*	8ea1ccca,ccca,8ea1cccav,cccav	5486	e59286	5486	00005486	a948	a948	a948	a948	a948	a948	a948
1389	a949	a949	a949	*	4c4b	*	8ea1cccb,cccb,8ea1cccbv,cccbv	547c	e591bc	547c	0000547c	a949	a949	a949	a949	a949	a949	a949
1390	a94a	a94a	a94a	*	4c4c	*	8ea1cccc,cccc,8ea1ccccv,ccccv	5490	e59290	5490	00005490	a94a	a94a	a94a	a94a	a94a	a94a	a94a
1391	a94b	a94b	a94b	*	4c4d	*	8ea1cccd,cccd,8ea1cccdv,cccdv	5471	e591b1	5471	00005471	a94b	a94b	a94b	a94b	a94b	a94b	a94b
1392	a94c	a94c	a94c	*	4c4e	*	8ea1ccce,ccce,8ea1cccev,cccev	5476	e591b6	5476	00005476	a94c	a94c,fbd1	9154,a94c	a94c	a94c	a94c	a94c
1393	a94d	a94d	a94d	*	4c4f	*	8ea1cccf,cccf,8ea1cccfv,cccfv	548c	e5928c	548c	0000548c	a94d	a94d	a94d	a94d	a94d	a94d	a94d
1394	a94e	a94e	a94e	*	4c50	*	8ea1ccd0,ccd0,8ea1ccd0v,ccd0v	549a	e5929a	549a	0000549a	a94e	a94e	a94e	a94e	a94e	a94e	a94e
1395	a94f	a94f	a94f	*	4c51	*	8ea1ccd1,ccd1,8ea1ccd1v,ccd1v	5462	e591a2	5462	00005462	a94f	a94f	a94f	a94f	a94f	a94f	a94f
1396	a950	a950	a950	*	4c52	*	8ea1ccd2,ccd2,8ea1ccd2v,ccd2v	5468	e591a8	5468	00005468	a950	a950	a950	a950	a950	a950	a950
1397	a951	a951	a951	*	4c53	*	8ea1ccd3,ccd3,8ea1ccd3v,ccd3v	548b	e5928b	548b	0000548b	a951	a951	a951	a951	a951	a951	a951
1398	a952	a952	a952	*	4c54	*	8ea1ccd4,ccd4,8ea1ccd4v,ccd4v	547d	e591bd	547d	0000547d	a952	a952	a952	a952	a952	a952	a952
1399	a953	a953	a953	*	4c55	*	8ea1ccd5,ccd5,8ea1ccd5v,ccd5v	548e	e5928e	548e	0000548e	a953	a953	a953	a953	a953	a953	a953
1400	a954	a954	a954	*	4c56	*	8ea1ccd6,ccd6,8ea1ccd6v,ccd6v	56fa	e59bba	56fa	000056fa	a954	a954	a954	a954	a954	a954	a954
1401	a955	a955	a955	*	4c57	*	8ea1ccd7,ccd7,8ea1ccd7v,ccd7v	5783	e59e83	5783	00005783	a955	a955	a955	a955	a955	a955	a955
1402	a956	a956	a956	*	4c58	*	8ea1ccd8,ccd8,8ea1ccd8v,ccd8v	5777	e59db7	5777	00005777	a956	a956	a956	a956	a956	a956	a956
1403	a957	a957	a957	*	4c59	*	8ea1ccd9,ccd9,8ea1ccd9v,ccd9v	576a	e59daa	576a	0000576a	a957	a957	a957	a957	a957	a957	a957
1404	a958	a958	a958	*	4c5a	*	8ea1ccda,ccda,8ea1ccdav,ccdav	5769	e59da9	5769	00005769	a958	a958	a958	a958	a958	a958	a958
1405	a959	a959	a959	*	4c5b	*	8ea1ccdb,ccdb,8ea1ccdbv,ccdbv	5761	e59da1	5761	00005761	a959	a959	a959	a959	a959	a959	a959
1406	a95a	a95a	a95a	*	4c5c	*	8ea1ccdc,ccdc,8ea1ccdcv,ccdcv	5766	e59da6	5766	00005766	a95a	a95a	a95a	a95a	a95a	a95a	a95a
1407	a95b	a95b	a95b	*	4c5d	*	8ea1ccdd,ccdd,8ea1ccddv,ccddv	5764	e59da4	5764	00005764	a95b	a95b	a95b	a95b	a95b	a95b	a95b
1408	a95c	a95c	a95c	*	4c5e	*	8ea1ccde,ccde,8ea1ccdev,ccdev	577c	e59dbc	577c	0000577c	a95c	a95c	a95c	a95c	a95c	a95c	a95c
1409	a95d	a95d	a95d	*	4c5f	*	8ea1ccdf,ccdf,8ea1ccdfv,ccdfv	591c	e5a49c	591c	0000591c	a95d	a95d	a95d	a95d	a95d	a95d	a95d
1410	a95e	a95e	a95e	*	4c60	*	8ea1cce0,cce0,8ea1cce0v,cce0v	5949	e5a589	5949	00005949	a95e	a95e	a95e	a95e	a95e	a95e	a95e
1411	a95f	a95f	a95f	*	4c61	*	8ea1cce1,cce1,8ea1cce1v,cce1v	5947	e5a587	5947	00005947	a95f	a95f	a95f	a95f	a95f	a95f	a95f
1412	a960	a960	a960	*	4c62	*	8ea1cce2,cce2,8ea1cce2v,cce2v	5948	e5a588	5948	00005948	a960	a960	a960	a960	a960	a960	a960
1413	a961	a961	a961	*	4c63	*	8ea1cce3,cce3,8ea1cce3v,cce3v	5944	e5a584	5944	00005944	a961	a961	a961	a961	a961	a961	a961
1414	a962	a962	a962	*	4c64	*	8ea1cce4,cce4,8ea1cce4v,cce4v	5954	e5a594	5954	00005954	a962	a962	a962	a962	a962	a962	a962
1415	a963	a963	a963	*	4c65	*	8ea1cce5,cce5,8ea1cce5v,cce5v	59be	e5a6be	59be	000059be	a963	a963	a963	a963	a963	a963	a963
1416	a964	a964	a964	*	4c66	*	8ea1cce6,cce6,8ea1cce6v,cce6v	59bb	e5a6bb	59bb	000059bb	a964	a964	a964	a964	a964	a964	a964
1417	a965	a965	a965	*	4c67	*	8ea1cce7,cce7,8ea1cce7v,cce7v	59d4	e5a794	59d4	000059d4	a965	a965	a965	a965	a965	a965	a965
1418	a966	a966	a966	*	4c68	*	8ea1cce8,cce8,8ea1cce8v,cce8v	59b9	e5a6b9	59b9	000059b9	a966	a966	a966	a966	a966	a966	a966
1419	a967	a967	a967	*	4c69	*	8ea1cce9,cce9,8ea1cce9v,cce9v	59ae	e5a6ae	59ae	000059ae	a967	a967	a967	a967	a967	a967	a967
1420	a968	a968	a968	*	4c6a	*	8ea1ccea,ccea,8ea1cceav,cceav	59d1	e5a791	59d1	000059d1	a968	a968	a968	a968	a968	a968	a968
1421	a969	a969	a969	*	4c6b	*	8ea1cceb,cceb,8ea1ccebv,ccebv	59c6	e5a786	59c6	000059c6	a969	a969	a969	a969	a969	a969	a969
1422	a96a	a96a	a96a	*	4c6c	*	8ea1ccec,ccec,8ea1ccecv,ccecv	59d0	e5a790	59d0	000059d0	a96a	a96a	a96a	a96a	a96a	a96a	a96a
1423	a96b	a96b	a96b	*	4c6d	*	8ea1cced,cced,8ea1ccedv,ccedv	59cd	e5a78d	59cd	000059cd	a96b	a96b	a96b	a96b	a96b	a96b	a96b
1424	a96c	a96c	a96c	*	4c6e	*	8ea1ccee,ccee,8ea1cceev,cceev	59cb	e5a78b	59cb	000059cb	a96c	a96c	a96c	a96c	a96c	a96c	a96c
1425	a96d	a96d	a96d	*	4c6f	*	8ea1ccef,ccef,8ea1ccefv,ccefv	59d3	e5a793	59d3	000059d3	a96d	a96d	a96d	a96d	a96d	a96d	a96d
1426	a96e	a96e	a96e	*	4c70	*	8ea1ccf0,ccf0,8ea1ccf0v,ccf0v	59ca	e5a78a	59ca	000059ca	a96e	a96e	a96e	a96e	a96e	a96e	a96e
1427	a96f	a96f	a96f	*	4c71	*	8ea1ccf1,ccf1,8ea1ccf1v,ccf1v	59af	e5a6af	59af	000059af	a96f	a96f	a96f	a96f	a96f	a96f	a96f
1428	a970	a970	a970	*	4c72	*	8ea1ccf2,ccf2,8ea1ccf2v,ccf2v	59b3	e5a6b3	59b3	000059b3	a970	a970	a970	a970	a970	a970	a970
1429	a971	a971	a971	*	4c73	*	8ea1ccf3,ccf3,8ea1ccf3v,ccf3v	59d2	e5a792	59d2	000059d2	a971	a971,fbf4	9158,a971	a971	a971	a971	a971
1430	a972	a972	a972	*	4c74	*	8ea1ccf4,ccf4,8ea1ccf4v,ccf4v	59c5	e5a785	59c5	000059c5	a972	a972	a972	a972	a972	a972	a972
1431	a973	a973	a973	*	4c75	*	8ea1ccf5,ccf5,8ea1ccf5v,ccf5v	5b5f	e5ad9f	5b5f	00005b5f	a973	a973	a973	a973	a973	a973	a973
1432	a974	a974	a974	*	4c76	*	8ea1ccf6,ccf6,8ea1ccf6v,ccf6v	5b64	e5ada4	5b64	00005b64	a974	a974	a974	a974	a974	a974	a974
1433	a975	a975	a975	*	4c77	*	8ea1ccf7,ccf7,8ea1ccf7v,ccf7v	5b63	e5ada3	5b63	00005b63	a975	a975	a975	a975	a975	a975	a975
1434	a976	a976	a976	*	4c78	*	8ea1ccf8,ccf8,8ea1ccf8v,ccf8v	5b97	e5ae97	5b97	00005b97	a976	a976	a976	a976	a976	a976	a976
1435	a977	a977	a977	*	4c79	*	8ea1ccf9,ccf9,8ea1ccf9v,ccf9v	5b9a	e5ae9a	5b9a	00005b9a	a977	a977	a977	a977	a977	a977	a977
1436	a978	a978	a978	*	4c7a	*	8ea1ccfa,ccfa,8ea1ccfav,ccfav	5b98	e5ae98	5b98	00005b98	a978	a978	a978	a978	a978	a978	a978
1437	a979	a979	a979	*	4c7b	*	8ea1ccfb,ccfb,8ea1ccfbv,ccfbv	5b9c	e5ae9c	5b9c	00005b9c	a979	a979	a979	a979	a979	a979	a979
1438	a97a	a97a	a97a	*	4c7c	*	8ea1ccfc,ccfc,8ea1ccfcv,ccfcv	5b99	e5ae99	5b99	00005b99	a97a	a97a	a97a	a97a	a97a	a97a	a97a
1439	a97b	a97b	a97b	*	4c7d	*	8ea1ccfd,ccfd,8ea1ccfdv,ccfdv	5b9b	e5ae9b	5b9b	00005b9b	a97b	a97b	a97b	a97b	a97b	a97b	a97b
1440	a97c	a97c	a97c	*	4c7e	*	8ea1ccfe,ccfe,8ea1ccfev,ccfev	5c1a	e5b09a	5c1a	00005c1a	a97c	a97c	a97c	a97c	a97c	a97c	a97c
1441	a97d	a97d	a97d	*	4d21	*	8ea1cda1,cda1,8ea1cda1v,cda1v	5c48	e5b188	5c48	00005c48	a97d	a97d	a97d	a97d	a97d	a97d	a97d
1442	a97e	a97e	a97e	*	4d22	*	8ea1cda2,cda2,8ea1cda2v,cda2v	5c45	e5b185	5c45	00005c45	a97e	a97e	a97e	a97e	a97e	a97e	a97e
1443	a9a1	a9a1	a9a1	*	4d23	*	8ea1cda3,cda3,8ea1cda3v,cda3v	5c46	e5b186	5c46	00005c46	a9a1	a9a1	a9a1	a9a1	a9a1	a9a1	a9a1
1444	a9a2	a9a2	a9a2	*	4d24	*	8ea1cda4,cda4,8ea1cda4v,cda4v	5cb7	e5b2b7	5cb7	00005cb7	a9a2	a9a2	a9a2	a9a2	a9a2	a9a2	a9a2
1445	a9a3	a9a3	a9a3	*	4d25	*	8ea1cda5,cda5,8ea1cda5v,cda5v	5ca1	e5b2a1	5ca1	00005ca1	a9a3	a9a3	a9a3	a9a3	a9a3	a9a3	a9a3
1446	a9a4	a9a4	a9a4	*	4d26	*	8ea1cda6,cda6,8ea1cda6v,cda6v	5cb8	e5b2b8	5cb8	00005cb8	a9a4	a9a4	a9a4	a9a4	a9a4	a9a4	a9a4
1447	a9a5	a9a5	a9a5	*	4d27	*	8ea1cda7,cda7,8ea1cda7v,cda7v	5ca9	e5b2a9	5ca9	00005ca9	a9a5	a9a5	a9a5	a9a5	a9a5	a9a5	a9a5
1448	a9a6	a9a6	a9a6	*	4d28	*	8ea1cda8,cda8,8ea1cda8v,cda8v	5cab	e5b2ab	5cab	00005cab	a9a6	a9a6	a9a6	a9a6	a9a6	a9a6	a9a6
1449	a9a7	a9a7	a9a7	*	4d29	*	8ea1cda9,cda9,8ea1cda9v,cda9v	5cb1	e5b2b1	5cb1	00005cb1	a9a7	a9a7	a9a7	a9a7	a9a7	a9a7	a9a7
1450	a9a8	a9a8	a9a8	*	4d2a	*	8ea1cdaa,cdaa,8ea1cdaav,cdaav	5cb3	e5b2b3	5cb3	00005cb3	a9a8	a9a8	a9a8	a9a8	a9a8	a9a8	a9a8
1451	a9a9	a9a9	a9a9	*	4d2b	*	8ea1cdab,cdab,8ea1cdabv,cdabv	5e18	e5b898	5e18	00005e18	a9a9	a9a9	a9a9	a9a9	a9a9	a9a9	a9a9
1452	a9aa	a9aa	a9aa	*	4d2c	*	8ea1cdac,cdac,8ea1cdacv,cdacv	5e1a	e5b89a	5e1a	00005e1a	a9aa	a9aa	a9aa	a9aa	a9aa	a9aa	a9aa
1453	a9ab	a9ab	a9ab	*	4d2d	*	8ea1cdad,cdad,8ea1cdadv,cdadv	5e16	e5b896	5e16	00005e16	a9ab	a9ab	a9ab	a9ab	a9ab	a9ab	a9ab
1454	a9ac	a9ac	a9ac	*	4d2e	*	8ea1cdae,cdae,8ea1cdaev,cdaev	5e15	e5b895	5e15	00005e15	a9ac	a9ac	a9ac	a9ac	a9ac	a9ac	a9ac
1455	a9ad	a9ad	a9ad	*	4d2f	*	8ea1cdaf,cdaf,8ea1cdafv,cdafv	5e1b	e5b89b	5e1b	00005e1b	a9ad	a9ad	a9ad	a9ad	a9ad	a9ad	a9ad
1456	a9ae	a9ae	a9ae	*	4d30	*	8ea1cdb0,cdb0,8ea1cdb0v,cdb0v	5e11	e5b891	5e11	00005e11	a9ae	a9ae	a9ae	a9ae	a9ae	a9ae	a9ae
1457	a9af	a9af	a9af	*	4d31	*	8ea1cdb1,cdb1,8ea1cdb1v,cdb1v	5e78	e5b9b8	5e78	00005e78	a9af	a9af	a9af	a9af	a9af	a9af	a9af
1458	a9b0	a9b0	a9b0	*	4d32	*	8ea1cdb2,cdb2,8ea1cdb2v,cdb2v	5e9a	e5ba9a	5e9a	00005e9a	a9b0	a9b0	a9b0	a9b0	a9b0	a9b0	a9b0
1459	a9b1	a9b1	a9b1	*	4d33	*	8ea1cdb3,cdb3,8ea1cdb3v,cdb3v	5e97	e5ba97	5e97	00005e97	a9b1	a9b1	a9b1	a9b1	a9b1	a9b1	a9b1
1460	a9b2	a9b2	a9b2	*	4d34	*	8ea1cdb4,cdb4,8ea1cdb4v,cdb4v	5e9c	e5ba9c	5e9c	00005e9c	a9b2	a9b2	a9b2	a9b2	a9b2	a9b2	a9b2
1461	a9b3	a9b3	a9b3	*	4d35	*	8ea1cdb5,cdb5,8ea1cdb5v,cdb5v	5e95	e5ba95	5e95	00005e95	a9b3	a9b3	a9b3	a9b3	a9b3	a9b3	a9b3
1462	a9b4	a9b4	a9b4	*	4d36	*	8ea1cdb6,cdb6,8ea1cdb6v,cdb6v	5e96	e5ba96	5e96	00005e96	a9b4	a9b4	a9b4	a9b4	a9b4	a9b4	a9b4
1463	a9b5	a9b5	a9b5	*	4d37	*	8ea1cdb7,cdb7,8ea1cdb7v,cdb7v	5ef6	e5bbb6	5ef6	00005ef6	a9b5	a9b5	a9b5	a9b5	a9b5	a9b5	a9b5
1464	a9b6	a9b6	a9b6	*	4d38	*	8ea1cdb8,cdb8,8ea1cdb8v,cdb8v	5f26	e5bca6	5f26	00005f26	a9b6	a9b6	a9b6	a9b6	a9b6	a9b6	a9b6
1465	a9b7	a9b7	a9b7	*	4d39	*	8ea1cdb9,cdb9,8ea1cdb9v,cdb9v	5f27	e5bca7	5f27	00005f27	a9b7	a9b7	a9b7	a9b7	a9b7	a9b7	a9b7
1466	a9b8	a9b8	a9b8	*	4d3a	*	8ea1cdba,cdba,8ea1cdbav,cdbav	5f29	e5bca9	5f29	00005f29	a9b8	a9b8	a9b8	a9b8	a9b8	a9b8	a9b8
1467	a9b9	a9b9	a9b9	*	4d3b	*	8ea1cdbb,cdbb,8ea1cdbbv,cdbbv	5f80	e5be80	5f80	00005f80	a9b9	a9b9	a9b9	a9b9	a9b9	a9b9	a9b9
1468	a9ba	a9ba	a9ba	*	4d3c	*	8ea1cdbc,cdbc,8ea1cdbcv,cdbcv	5f81	e5be81	5f81	00005f81	a9ba	a9ba	a9ba	a9ba	a9ba	a9ba	a9ba
1469	a9bb	a9bb	a9bb	*	4d3d	*	8ea1cdbd,cdbd,8ea1cdbdv,cdbdv	5f7f	e5bdbf	5f7f	00005f7f	a9bb	a9bb	a9bb	a9bb	a9bb	a9bb	a9bb
1470	a9bc	a9bc	a9bc	*	4d3e	*	8ea1cdbe,cdbe,8ea1cdbev,cdbev	5f7c	e5bdbc	5f7c	00005f7c	a9bc	a9bc	a9bc	a9bc	a9bc	a9bc	a9bc
1471	a9bd	a9bd	a9bd	*	4d3f	*	8ea1cdbf,cdbf,8ea1cdbfv,cdbfv	5fdd	e5bf9d	5fdd	00005fdd	a9bd	a9bd	a9bd	a9bd	a9bd	a9bd	a9bd
1472	a9be	a9be	a9be	*	4d40	*	8ea1cdc0,cdc0,8ea1cdc0v,cdc0v	5fe0	e5bfa0	5fe0	00005fe0	a9be	a9be	a9be	a9be	a9be	a9be	a9be
1473	a9bf	a9bf	a9bf	*	4d41	*	8ea1cdc1,cdc1,8ea1cdc1v,cdc1v	5ffd	e5bfbd	5ffd	00005ffd	a9bf	a9bf	a9bf	a9bf	a9bf	a9bf	a9bf
1474	a9c0	a9c0	a9c0	*	4d42	*	8ea1cdc2,cdc2,8ea1cdc2v,cdc2v	5ff5	e5bfb5	5ff5	00005ff5	a9c0	a9c0	a9c0	a9c0	a9c0	a9c0	a9c0
1475	a9c1	a9c1	a9c1	*	4d43	*	8ea1cdc3,cdc3,8ea1cdc3v,cdc3v	5fff	e5bfbf	5fff	00005fff	a9c1	a9c1	a9c1	a9c1	a9c1	a9c1	a9c1
1476	a9c2	a9c2	a9c2	*	4d44	*	8ea1cdc4,cdc4,8ea1cdc4v,cdc4v	600f	e6808f	600f	0000600f	a9c2	a9c2	a9c2	a9c2	a9c2	a9c2	a9c2
1477	a9c3	a9c3	a9c3	*	4d45	*	8ea1cdc5,cdc5,8ea1cdc5v,cdc5v	6014	e68094	6014	00006014	a9c3	a9c3	a9c3	a9c3	a9c3	a9c3	a9c3
1478	a9c4	a9c4	a9c4	*	4d46	*	8ea1cdc6,cdc6,8ea1cdc6v,cdc6v	602f	e680af	602f	0000602f	a9c4	a9c4	a9c4	a9c4	a9c4	a9c4	a9c4
1479	a9c5	a9c5	a9c5	*	4d47	*	8ea1cdc7,cdc7,8ea1cdc7v,cdc7v	6035	e680b5	6035	00006035	a9c5	a9c5	a9c5	a9c5	a9c5	a9c5	a9c5
1480	a9c6	a9c6	a9c6	*	4d48	*	8ea1cdc8,cdc8,8ea1cdc8v,cdc8v	6016	e68096	6016	00006016	a9c6	a9c6	a9c6	a9c6	a9c6	a9c6	a9c6
1481	a9c7	a9c7	a9c7	*	4d49	*	8ea1cdc9,cdc9,8ea1cdc9v,cdc9v	602a	e680aa	602a	0000602a	a9c7	a9c7	a9c7	a9c7	a9c7	a9c7	a9c7
1482	a9c8	a9c8	a9c8	*	4d4a	*	8ea1cdca,cdca,8ea1cdcav,cdcav	6015	e68095	6015	00006015	a9c8	a9c8	a9c8	a9c8	a9c8	a9c8	a9c8
1483	a9c9	a9c9	a9c9	*	4d4b	*	8ea1cdcb,cdcb,8ea1cdcbv,cdcbv	6021	e680a1	6021	00006021	a9c9	a9c9	a9c9	a9c9	a9c9	a9c9	a9c9
1484	a9ca	a9ca	a9ca	*	4d4c	*	8ea1cdcc,cdcc,8ea1cdccv,cdccv	6027	e680a7	6027	00006027	a9ca	a9ca	a9ca	a9ca	a9ca	a9ca	a9ca
1485	a9cb	a9cb	a9cb	*	4d4d	*	8ea1cdcd,cdcd,8ea1cdcdv,cdcdv	6029	e680a9	6029	00006029	a9cb	a9cb	a9cb	a9cb	a9cb	a9cb	a9cb
1486	a9cc	a9cc	a9cc	*	4d4e	*	8ea1cdce,cdce,8ea1cdcev,cdcev	602b	e680ab	602b	0000602b	a9cc	a9cc	a9cc	a9cc	a9cc	a9cc	a9cc
1487	a9cd	a9cd	a9cd	*	4d4f	*	8ea1cdcf,cdcf,8ea1cdcfv,cdcfv	601b	e6809b	601b	0000601b	a9cd	a9cd	a9cd	a9cd	a9cd	a9cd	a9cd
1488	a9ce	a9ce	a9ce	*	4d50	*	8ea1cdd0,cdd0,8ea1cdd0v,cdd0v	6216	e68896	6216	00006216	a9ce	a9ce	a9ce	a9ce	a9ce	a9ce	a9ce
1489	a9cf	a9cf	a9cf	*	4d51	*	8ea1cdd1,cdd1,8ea1cdd1v,cdd1v	6215	e68895	6215	00006215	a9cf	a9cf	a9cf	a9cf	a9cf	a9cf	a9cf
1490	a9d0	a9d0	a9d0	*	4d52	*	8ea1cdd2,cdd2,8ea1cdd2v,cdd2v	623f	e688bf	623f	0000623f	a9d0	a9d0	a9d0	a9d0	a9d0	a9d0	a9d0
1491	a9d1	a9d1	a9d1	*	4d53	*	8ea1cdd3,cdd3,8ea1cdd3v,cdd3v	623e	e688be	623e	0000623e	a9d1	a9d1	a9d1	a9d1	a9d1	a9d1	a9d1
1492	a9d2	a9d2	a9d2	*	4d54	*	8ea1cdd4,cdd4,8ea1cdd4v,cdd4v	6240	e68980	6240	00006240	a9d2	a9d2	a9d2	a9d2	a9d2	a9d2	a9d2
1493	a9d3	a9d3	a9d3	*	4d55	*	8ea1cdd5,cdd5,8ea1cdd5v,cdd5v	627f	e689bf	627f	0000627f	a9d3	a9d3	a9d3	a9d3	a9d3	a9d3	a9d3
1494	a9d4	a9d4	a9d4	*	4d56	*	8ea1cdd6,cdd6,8ea1cdd6v,cdd6v	62c9	e68b89	62c9	000062c9	a9d4	a9d4	a9d4	a9d4	a9d4	a9d4	a9d4
1495	a9d5	a9d5	a9d5	*	4d57	*	8ea1cdd7,cdd7,8ea1cdd7v,cdd7v	62cc	e68b8c	62cc	000062cc	a9d5	a9d5	a9d5	a9d5	a9d5	a9d5	a9d5
1496	a9d6	a9d6	a9d6	*	4d58	*	8ea1cdd8,cdd8,8ea1cdd8v,cdd8v	62c4	e68b84	62c4	000062c4	a9d6	a9d6	a9d6	a9d6	a9d6	a9d6	a9d6
1497	a9d7	a9d7	a9d7	*	4d59	*	8ea1cdd9,cdd9,8ea1cdd9v,cdd9v	62bf	e68abf	62bf	000062bf	a9d7	a9d7	a9d7	a9d7	a9d7	a9d7	a9d7
1498	a9d8	a9d8	a9d8	*	4d5a	*	8ea1cdda,cdda,8ea1cddav,cddav	62c2	e68b82	62c2	000062c2	a9d8	a9d8	a9d8	a9d8	a9d8	a9d8	a9d8
1499	a9d9	a9d9	a9d9	*	4d5b	*	8ea1cddb,cddb,8ea1cddbv,cddbv	62b9	e68ab9	62b9	000062b9	a9d9	a9d9	a9d9	a9d9	a9d9	a9d9	a9d9
1500	a9da	a9da	a9da	*	4d5c	*	8ea1cddc,cddc,8ea1cddcv,cddcv	62d2	e68b92	62d2	000062d2	a9da	a9da	a9da	a9da	a9da	a9da	a9da
1501	a9db	a9db	a9db	*	4d5d	*	8ea1cddd,cddd,8ea1cdddv,cdddv	62db	e68b9b	62db	000062db	a9db	a9db	a9db	a9db	a9db	a9db	a9db
1502	a9dc	a9dc	a9dc	*	4d5e	*	8ea1cdde,cdde,8ea1cddev,cddev	62ab	e68aab	62ab	000062ab	a9dc	a9dc	a9dc	a9dc	a9dc	a9dc	a9dc
1503	a9dd	a9dd	a9dd	*	4d5f	*	8ea1cddf,cddf,8ea1cddfv,cddfv	62d3	e68b93	62d3	000062d3	a9dd	a9dd	a9dd	a9dd	a9dd	a9dd	a9dd
1504	a9de	a9de	a9de	*	4d60	*	8ea1cde0,cde0,8ea1cde0v,cde0v	62d4	e68b94	62d4	000062d4	a9de	a9de	a9de	a9de	a9de	a9de	a9de
1505	a9df	a9df	a9df	*	4d61	*	8ea1cde1,cde1,8ea1cde1v,cde1v	62cb	e68b8b	62cb	000062cb	a9df	a9df	a9df	a9df	a9df	a9df	a9df
1506	a9e0	a9e0	a9e0	*	4d62	*	8ea1cde2,cde2,8ea1cde2v,cde2v	62c8	e68b88	62c8	000062c8	a9e0	a9e0	a9e0	a9e0	a9e0	a9e0	a9e0
1507	a9e1	a9e1	a9e1	*	4d63	*	8ea1cde3,cde3,8ea1cde3v,cde3v	62a8	e68aa8	62a8	000062a8	a9e1	a9e1	a9e1	a9e1	a9e1	a9e1	a9e1
1508	a9e2	a9e2	a9e2	*	4d64	*	8ea1cde4,cde4,8ea1cde4v,cde4v	62bd	e68abd	62bd	000062bd	a9e2	a9e2	a9e2	a9e2	a9e2	a9e2	a9e2
1509	a9e3	a9e3	a9e3	*	4d65	*	8ea1cde5,cde5,8ea1cde5v,cde5v	62bc	e68abc	62bc	000062bc	a9e3	a9e3	a9e3	a9e3	a9e3	a9e3	a9e3
1510	a9e4	a9e4	a9e4	*	4d66	*	8ea1cde6,cde6,8ea1cde6v,cde6v	62d0	e68b90,eeb2a6	62d0,eca6	000062d0,0000eca6	9dc4,a9e4	a9e4	a9e4	a9e4	a9e4	a9e4	9dc4,a9e4
1511	a9e5	a9e5	a9e5	*	4d67	*	8ea1cde7,cde7,8ea1cde7v,cde7v	62d9	e68b99	62d9	000062d9	a9e5	a9e5	a9e5	a9e5	a9e5	a9e5	a9e5
1512	a9e6	a9e6	a9e6	*	4d68	*	8ea1cde8,cde8,8ea1cde8v,cde8v	62c7	e68b87	62c7	000062c7	a9e6	a9e6	a9e6	a9e6	a9e6	a9e6	a9e6
1513	a9e7	a9e7	a9e7	*	4d69	*	8ea1cde9,cde9,8ea1cde9v,cde9v	62cd	e68b8d	62cd	000062cd	a9e7	a9e7	a9e7	a9e7	a9e7	a9e7	a9e7
1514	a9e8	a9e8	a9e8	*	4d6a	*	8ea1cdea,cdea,8ea1cdeav,cdeav	62b5	e68ab5	62b5	000062b5	a9e8	a9e8	a9e8	a9e8	a9e8	a9e8	a9e8
1515	a9e9	a9e9	a9e9	*	4d6b	*	8ea1cdeb,cdeb,8ea1cdebv,cdebv	62da	e68b9a	62da	000062da	a9e9	a9e9	a9e9	a9e9	a9e9	a9e9	a9e9
1516	a9ea	a9ea	a9ea	*	4d6c	*	8ea1cdec,cdec,8ea1cdecv,cdecv	62b1	e68ab1	62b1	000062b1	a9ea	a9ea	a9ea	a9ea	a9ea	a9ea	a9ea
1517	a9eb	a9eb	a9eb	*	4d6d	*	8ea1cded,cded,8ea1cdedv,cdedv	62d8	e68b98	62d8	000062d8	a9eb	a9eb	a9eb	a9eb	a9eb	a9eb	a9eb
1518	a9ec	a9ec	a9ec	*	4d6e	*	8ea1cdee,cdee,8ea1cdeev,cdeev	62d6	e68b96	62d6	000062d6	a9ec	a9ec	a9ec	a9ec	a9ec	a9ec	a9ec
1519	a9ed	a9ed	a9ed	*	4d6f	*	8ea1cdef,cdef,8ea1cdefv,cdefv	62d7	e68b97	62d7	000062d7	a9ed	a9ed	a9ed	a9ed	a9ed	a9ed	a9ed
1520	a9ee	a9ee	a9ee	*	4d70	*	8ea1cdf0,cdf0,8ea1cdf0v,cdf0v	62c6	e68b86	62c6	000062c6	a9ee	a9ee	a9ee	a9ee	a9ee	a9ee	a9ee
1521	a9ef	a9ef	a9ef	*	4d71	*	8ea1cdf1,cdf1,8ea1cdf1v,cdf1v	62ac	e68aac	62ac	000062ac	a9ef	a9ef	a9ef	a9ef	a9ef	a9ef	a9ef
1522	a9f0	a9f0	a9f0	*	4d72	*	8ea1cdf2,cdf2,8ea1cdf2v,cdf2v	62ce	e68b8e,eeb992	62ce,ee52	000062ce,0000ee52	a077,a9f0	a9f0	a9f0	a9f0	a9f0	a9f0	a077,a9f0
1523	a9f1	a9f1	a9f1	*	4d73	*	8ea1cdf3,cdf3,8ea1cdf3v,cdf3v	653e	e694be	653e	0000653e	a9f1	a9f1	a9f1	a9f1	a9f1	a9f1	a9f1
1524	a9f2	a9f2	a9f2	*	4d74	*	8ea1cdf4,cdf4,8ea1cdf4v,cdf4v	65a7	e696a7	65a7	000065a7	a9f2	a9f2	a9f2	a9f2	a9f2	a9f2	a9f2
1525	a9f3	a9f3	a9f3	*	4d75	*	8ea1cdf5,cdf5,8ea1cdf5v,cdf5v	65bc	e696bc	65bc	000065bc	a9f3	a9f3	a9f3	a9f3	a9f3	a9f3	a9f3
1526	a9f4	a9f4	a9f4	*	4d76	*	8ea1cdf6,cdf6,8ea1cdf6v,cdf6v	65fa	e697ba	65fa	000065fa	a9f4	a9f4	a9f4	a9f4	a9f4	a9f4	a9f4
1527	a9f5	a9f5	a9f5	*	4d77	*	8ea1cdf7,cdf7,8ea1cdf7v,cdf7v	6614	e69894	6614	00006614	a9f5	a9f5	a9f5	a9f5	a9f5	a9f5	a9f5
1528	a9f6	a9f6	a9f6	*	4d78	*	8ea1cdf8,cdf8,8ea1cdf8v,cdf8v	6613	e69893	6613	00006613	a9f6	a9f6	a9f6	a9f6	a9f6	a9f6	a9f6
1529	a9f7	a9f7	a9f7	*	4d79	*	8ea1cdf9,cdf9,8ea1cdf9v,cdf9v	660c	e6988c	660c	0000660c	a9f7	a9f7	a9f7	a9f7	a9f7	a9f7	a9f7
1530	a9f8	a9f8	a9f8	*	4d7a	*	8ea1cdfa,cdfa,8ea1cdfav,cdfav	6606	e69886	6606	00006606	a9f8	a9f8	a9f8	a9f8	a9f8	a9f8	a9f8
1531	a9f9	a9f9	a9f9	*	4d7b	*	8ea1cdfb,cdfb,8ea1cdfbv,cdfbv	6602	e69882	6602	00006602	a9f9	a9f9	a9f9	a9f9	a9f9	a9f9	a9f9
1532	a9fa	a9fa	a9fa	*	4d7c	*	8ea1cdfc,cdfc,8ea1cdfcv,cdfcv	660e	e6988e	660e	0000660e	a9fa	a9fa	a9fa	a9fa	a9fa	a9fa	a9fa
1533	a9fb	a9fb	a9fb	*	4d7d	*	8ea1cdfd,cdfd,8ea1cdfdv,cdfdv	6600	e69880	6600	00006600	a9fb	a9fb	a9fb	a9fb	a9fb	a9fb	a9fb
1534	a9fc	a9fc	a9fc	*	4d7e	*	8ea1cdfe,cdfe,8ea1cdfev,cdfev	660f	e6988f	660f	0000660f	a9fc	a9fc	a9fc	a9fc	a9fc	a9fc	a9fc
1535	a9fd	a9fd	a9fd	*	4e21	*	8ea1cea1,cea1,8ea1cea1v,cea1v	6615	e69895	6615	00006615	a9fd	a9fd	a9fd	a9fd	a9fd	a9fd	a9fd
1536	a9fe	a9fe	a9fe	*	4e22	*	8ea1cea2,cea2,8ea1cea2v,cea2v	660a	e6988a	660a	0000660a	a9fe	a9fe	a9fe	a9fe	a9fe	a9fe	a9fe
1537	aa40	aa40	aa40	*	4e23	*	8ea1cea3,cea3,8ea1cea3v,cea3v	6607	e69887	6607	00006607	aa40	aa40	aa40	aa40	aa40	aa40	aa40
1538	aa41	aa41	aa41	*	4e24	*	8ea1cea4,cea4,8ea1cea4v,cea4v	670d	e69c8d	670d	0000670d	aa41	aa41	aa41	aa41	aa41	aa41	aa41
1539	aa42	aa42	aa42	*	4e25	*	8ea1cea5,cea5,8ea1cea5v,cea5v	670b	e69c8b	670b	0000670b	aa42	aa42	aa42	aa42	aa42	aa42	aa42
1540	aa43	aa43	aa43	*	4e26	*	8ea1cea6,cea6,8ea1cea6v,cea6v	676d	e69dad	676d	0000676d	aa43	aa43	aa43	aa43	aa43	aa43	aa43
1541	aa44	aa44	aa44	*	4e27	*	8ea1cea7,cea7,8ea1cea7v,cea7v	678b	e69e8b	678b	0000678b	aa44	aa44	aa44	aa44	aa44	aa44	aa44
1542	aa45	aa45	aa45	*	4e28	*	8ea1cea8,cea8,8ea1cea8v,cea8v	6795	e69e95	6795	00006795	aa45	aa45	aa45	aa45	aa45	aa45	aa45
1543	aa46	aa46	aa46	*	4e29	*	8ea1cea9,cea9,8ea1cea9v,cea9v	6771	e69db1	6771	00006771	aa46	aa46	aa46	aa46	aa46	aa46	aa46
1544	aa47	aa47	aa47	*	4e2a	*	8ea1ceaa,ceaa,8ea1ceaav,ceaav	679c	e69e9c	679c	0000679c	aa47	aa47	aa47	aa47	aa47	aa47	aa47
1545	aa48	aa48	aa48	*	4e2b	*	8ea1ceab,ceab,8ea1ceabv,ceabv	6773	e69db3	6773	00006773	aa48	aa48	aa48	aa48	aa48	aa48	aa48
1546	aa49	aa49	aa49	*	4e2c	*	8ea1ceac,ceac,8ea1ceacv,ceacv	6777	e69db7	6777	00006777	aa49	aa49	aa49	aa49	aa49	aa49	aa49
1547	aa4a	aa4a	aa4a	*	4e2d	*	8ea1cead,cead,8ea1ceadv,ceadv	6787	e69e87	6787	00006787	aa4a	aa4a	aa4a	aa4a	aa4a	aa4a	aa4a
1548	aa4b	aa4b	aa4b	*	4e2e	*	8ea1ceae,ceae,8ea1ceaev,ceaev	679d	e69e9d	679d	0000679d	aa4b	aa4b	aa4b	aa4b	aa4b	aa4b	aa4b
1549	aa4c	aa4c	aa4c	*	4e2f	*	8ea1ceaf,ceaf,8ea1ceafv,ceafv	6797	e69e97	6797	00006797	aa4c	aa4c	aa4c	aa4c	aa4c	aa4c	aa4c
1550	aa4d	aa4d	aa4d	*	4e30	*	8ea1ceb0,ceb0,8ea1ceb0v,ceb0v	676f	e69daf	676f	0000676f	aa4d	aa4d	aa4d	aa4d	aa4d	aa4d	aa4d
1551	aa4e	aa4e	aa4e	*	4e31	*	8ea1ceb1,ceb1,8ea1ceb1v,ceb1v	6770	e69db0	6770	00006770	aa4e	aa4e	aa4e	aa4e	aa4e	aa4e	aa4e
1552	aa4f	aa4f	aa4f	*	4e32	*	8ea1ceb2,ceb
Download .txt
gitextract_6vwfdfgt/

├── .gitignore
├── CHANGES
├── MANIFEST.in
├── README.txt
├── build_cmap.py
├── cmaprsrc/
│   ├── README.txt
│   ├── cid2code_Adobe_CNS1.txt
│   ├── cid2code_Adobe_GB1.txt
│   ├── cid2code_Adobe_Japan1.txt
│   └── cid2code_Adobe_Korea1.txt
├── docs/
│   ├── cid.obj
│   ├── index.html
│   ├── layout.obj
│   ├── objrel.obj
│   ├── programming.html
│   └── style.css
├── pdfminer/
│   ├── __init__.py
│   ├── arcfour.py
│   ├── ascii85.py
│   ├── cmap/
│   │   └── __init__.py
│   ├── cmapdb.py
│   ├── converter.py
│   ├── encodingdb.py
│   ├── fontmetrics.py
│   ├── glyphlist.py
│   ├── latin_enc.py
│   ├── layout.py
│   ├── lzw.py
│   ├── pdfcolor.py
│   ├── pdfdevice.py
│   ├── pdffont.py
│   ├── pdfinterp.py
│   ├── pdfparser.py
│   ├── pdftypes.py
│   ├── pslexer.py
│   ├── psparser.py
│   ├── rijndael.py
│   ├── runlength.py
│   └── utils.py
├── samples/
│   ├── Makefile
│   ├── README
│   ├── jo.html.ref
│   ├── jo.tex
│   ├── jo.txt.ref
│   ├── jo.xml.ref
│   ├── nonfree/
│   │   ├── dmca.html.ref
│   │   ├── dmca.txt.ref
│   │   ├── dmca.xml.ref
│   │   ├── f1040nr.html.ref
│   │   ├── f1040nr.txt.ref
│   │   ├── f1040nr.xml.ref
│   │   ├── i1040nr.html.ref
│   │   ├── i1040nr.txt.ref
│   │   ├── i1040nr.xml.ref
│   │   ├── kampo.html.ref
│   │   ├── kampo.txt.ref
│   │   ├── kampo.xml.ref
│   │   ├── naacl06-shinyama.html.ref
│   │   ├── naacl06-shinyama.txt.ref
│   │   ├── naacl06-shinyama.xml.ref
│   │   ├── nlp2004slides.html.ref
│   │   ├── nlp2004slides.txt.ref
│   │   └── nlp2004slides.xml.ref
│   ├── simple1.html.ref
│   ├── simple1.txt.ref
│   ├── simple1.xml.ref
│   ├── simple2.html.ref
│   ├── simple2.txt.ref
│   ├── simple2.xml.ref
│   ├── simple3.html.ref
│   ├── simple3.txt.ref
│   └── simple3.xml.ref
├── setup.py
├── tests/
│   ├── __init__.py
│   ├── layout_test.py
│   ├── parser_test.py
│   ├── samples_test.py
│   ├── support_test.py
│   └── util.py
└── tools/
    ├── conv_afm.py
    ├── conv_cmap.py
    ├── conv_glyphlist.py
    ├── dumppdf.py
    ├── latin2ascii.py
    ├── pdf2html.cgi
    ├── pdf2txt.py
    ├── pdfexplore.py
    ├── prof.py
    └── runapp.py
Download .txt
SYMBOL INDEX (671 symbols across 33 files)

FILE: build_cmap.py
  function runcmd (line 8) | def runcmd(args):
  function clean (line 13) | def clean():
  function main (line 22) | def main():

FILE: pdfminer/arcfour.py
  class Arcfour (line 7) | class Arcfour:
    method __init__ (line 8) | def __init__(self, key):
    method process (line 18) | def process(self, data):

FILE: pdfminer/ascii85.py
  function ascii85decode (line 12) | def ascii85decode(data):
  function asciihexdecode (line 49) | def asciihexdecode(data):

FILE: pdfminer/cmapdb.py
  class CMapError (line 34) | class CMapError(Exception): pass
  class CMap (line 37) | class CMap:
    method __init__ (line 39) | def __init__(self, code2cid=None):
    method is_vertical (line 42) | def is_vertical(self):
    method use_cmap (line 45) | def use_cmap(self, cmap):
    method decode (line 57) | def decode(self, code):
    method dump (line 71) | def dump(self, out=sys.stdout, code2cid=None, code=None):
  class IdentityCMap (line 83) | class IdentityCMap:
    method __init__ (line 85) | def __init__(self, vertical):
    method is_vertical (line 88) | def is_vertical(self):
    method decode (line 91) | def decode(self, code):
  class UnicodeMap (line 106) | class UnicodeMap:
    method __init__ (line 108) | def __init__(self, cid2unichr=None):
    method get_unichr (line 111) | def get_unichr(self, cid):
    method dump (line 115) | def dump(self, out=sys.stdout):
  class FileCMap (line 120) | class FileCMap(CMap):
    method __init__ (line 122) | def __init__(self):
    method __repr__ (line 126) | def __repr__(self):
    method is_vertical (line 129) | def is_vertical(self):
    method set_attr (line 132) | def set_attr(self, k, v):
    method add_code2cid (line 135) | def add_code2cid(self, code, cid):
  class FileUnicodeMap (line 150) | class FileUnicodeMap(UnicodeMap):
    method __init__ (line 152) | def __init__(self):
    method __repr__ (line 156) | def __repr__(self):
    method set_attr (line 159) | def set_attr(self, k, v):
    method add_cid2unichr (line 162) | def add_cid2unichr(self, cid, code):
  class PyCMap (line 179) | class PyCMap(CMap):
    method __init__ (line 181) | def __init__(self, name, module):
    method __repr__ (line 186) | def __repr__(self):
    method is_vertical (line 189) | def is_vertical(self):
  class PyUnicodeMap (line 193) | class PyUnicodeMap(UnicodeMap):
    method __init__ (line 195) | def __init__(self, name, module, vertical):
    method __repr__ (line 203) | def __repr__(self):
  class CMapDB (line 207) | class CMapDB:
    class CMapNotFound (line 212) | class CMapNotFound(CMapError): pass
    method _load_data (line 215) | def _load_data(klass, name):
    method get_cmap (line 231) | def get_cmap(klass, name):
    method get_unicode_map (line 245) | def get_unicode_map(klass, name, vertical=False):
  class CMapParser (line 255) | class CMapParser(PSStackParser):
    method __init__ (line 257) | def __init__(self, cmap, fp):
    method run (line 262) | def run(self):
    method do_keyword (line 268) | def do_keyword(self, pos, token):
  function main (line 386) | def main(argv):

FILE: pdfminer/converter.py
  class PDFLayoutAnalyzer (line 18) | class PDFLayoutAnalyzer(PDFTextDevice):
    method __init__ (line 20) | def __init__(self, rsrcmgr, pageno=1, laparams=None):
    method begin_page (line 26) | def begin_page(self, page, ctm):
    method end_page (line 33) | def end_page(self, page):
    method begin_figure (line 41) | def begin_figure(self, name, bbox, matrix):
    method end_figure (line 45) | def end_figure(self, _):
    method render_image (line 51) | def render_image(self, name, stream):
    method paint_path (line 58) | def paint_path(self, gstate, stroke, fill, evenodd, path):
    method render_char (line 90) | def render_char(self, matrix, font, fontsize, scaling, rise, cid):
    method handle_undefined_char (line 102) | def handle_undefined_char(self, font, cid):
    method receive_layout (line 106) | def receive_layout(self, ltpage):
  class PDFPageAggregator (line 110) | class PDFPageAggregator(PDFLayoutAnalyzer):
    method __init__ (line 112) | def __init__(self, rsrcmgr, pageno=1, laparams=None):
    method receive_layout (line 116) | def receive_layout(self, ltpage):
    method get_result (line 119) | def get_result(self):
  class PDFConverter (line 125) | class PDFConverter(PDFLayoutAnalyzer):
    method __init__ (line 127) | def __init__(self, rsrcmgr, outfp, pageno=1, laparams=None):
    method write_image (line 131) | def write_image(self, image):
  class TextConverter (line 156) | class TextConverter(PDFConverter):
    method __init__ (line 158) | def __init__(self, rsrcmgr, outfp, pageno=1, laparams=None,
    method write_text (line 163) | def write_text(self, text):
    method receive_layout (line 166) | def receive_layout(self, ltpage):
    method render_image (line 183) | def render_image(self, name, stream):
    method paint_path (line 185) | def paint_path(self, gstate, stroke, fill, evenodd, path):
  class HTMLConverter (line 191) | class HTMLConverter(PDFConverter):
    method __init__ (line 208) | def __init__(self, rsrcmgr, outfp, pageno=1, laparams=None,
    method write (line 231) | def write(self, text):
    method write_header (line 234) | def write_header(self):
    method write_footer (line 239) | def write_footer(self):
    method write_text (line 244) | def write_text(self, text):
    method place_rect (line 247) | def place_rect(self, color, borderwidth, x, y, w, h):
    method place_border (line 256) | def place_border(self, color, borderwidth, item):
    method place_image (line 259) | def place_image(self, item, borderwidth, x, y, w, h):
    method place_text (line 268) | def place_text(self, color, text, x, y, size):
    method begin_textbox (line 276) | def begin_textbox(self, color, borderwidth, x, y, w, h, writing_mode):
    method put_text (line 285) | def put_text(self, text, fontname, fontsize):
    method put_newline (line 295) | def put_newline(self):
    method end_textbox (line 298) | def end_textbox(self, color):
    method receive_layout (line 304) | def receive_layout(self, ltpage):
    method close (line 366) | def close(self):
  class XMLConverter (line 370) | class XMLConverter(PDFConverter):
    method __init__ (line 372) | def __init__(self, rsrcmgr, outfp, pageno=1, laparams=None, outdir=None):
    method write_header (line 377) | def write_header(self):
    method write_footer (line 381) | def write_footer(self):
    method write_text (line 384) | def write_text(self, text):
    method receive_layout (line 387) | def receive_layout(self, ltpage):
    method close (line 459) | def close(self):

FILE: pdfminer/encodingdb.py
  function name2unicode (line 8) | def name2unicode(name):
  class EncodingDB (line 17) | class EncodingDB:
    method get_encoding (line 38) | def get_encoding(cls, name, diff=None):

FILE: pdfminer/layout.py
  class IndexAssigner (line 11) | class IndexAssigner:
    method __init__ (line 13) | def __init__(self, index=0):
    method run (line 16) | def run(self, obj):
  class LAParams (line 25) | class LAParams:
    method __init__ (line 27) | def __init__(self, line_overlap=0.5, char_margin=2.0, line_margin=0.5,...
    method __repr__ (line 50) | def __repr__(self):
  class LTItem (line 55) | class LTItem:
    method analyze (line 57) | def analyze(self, laparams):
  class LTText (line 61) | class LTText:
    method __repr__ (line 63) | def __repr__(self):
    method get_text (line 67) | def get_text(self):
  class LTComponent (line 71) | class LTComponent(LTItem):
    method __init__ (line 73) | def __init__(self, bbox):
    method __repr__ (line 77) | def __repr__(self):
    method set_bbox (line 80) | def set_bbox(self, bbox):
    method is_empty (line 90) | def is_empty(self):
    method is_hoverlap (line 93) | def is_hoverlap(self, obj):
    method hdistance (line 97) | def hdistance(self, obj):
    method hoverlap (line 104) | def hoverlap(self, obj):
    method is_voverlap (line 111) | def is_voverlap(self, obj):
    method vdistance (line 115) | def vdistance(self, obj):
    method voverlap (line 122) | def voverlap(self, obj):
  class LTCurve (line 130) | class LTCurve(LTComponent):
    method __init__ (line 132) | def __init__(self, linewidth, pts):
    method get_pts (line 137) | def get_pts(self):
  class LTLine (line 141) | class LTLine(LTCurve):
    method __init__ (line 143) | def __init__(self, linewidth, p0, p1):
  class LTRect (line 147) | class LTRect(LTCurve):
    method __init__ (line 149) | def __init__(self, linewidth, rect):
  class LTImage (line 154) | class LTImage(LTComponent):
    method __init__ (line 156) | def __init__(self, name, stream, bbox):
    method __repr__ (line 168) | def __repr__(self):
  class LTAnon (line 174) | class LTAnon(LTItem, LTText):
    method __init__ (line 176) | def __init__(self, text):
    method get_text (line 179) | def get_text(self):
  class LTChar (line 183) | class LTChar(LTComponent, LTText):
    method __init__ (line 185) | def __init__(self, matrix, font, fontsize, scaling, rise, text, textwi...
    method __repr__ (line 226) | def __repr__(self):
    method get_text (line 232) | def get_text(self):
    method is_compatible (line 235) | def is_compatible(self, obj):
  class LTContainer (line 240) | class LTContainer(LTComponent):
    method __init__ (line 242) | def __init__(self, bbox):
    method __iter__ (line 246) | def __iter__(self):
    method __len__ (line 249) | def __len__(self):
    method add (line 252) | def add(self, obj):
    method extend (line 255) | def extend(self, objs):
    method analyze (line 259) | def analyze(self, laparams):
  class LTExpandableContainer (line 264) | class LTExpandableContainer(LTContainer):
    method __init__ (line 266) | def __init__(self):
    method add (line 269) | def add(self, obj):
  class LTTextContainer (line 275) | class LTTextContainer(LTExpandableContainer, LTText):
    method __init__ (line 277) | def __init__(self):
    method get_text (line 281) | def get_text(self):
  class LTTextLine (line 285) | class LTTextLine(LTTextContainer):
    method __repr__ (line 287) | def __repr__(self):
    method _insert_anon_spaces (line 290) | def _insert_anon_spaces(self, word_margin):
    method add (line 293) | def add(self, obj):
    method analyze (line 297) | def analyze(self, laparams):
    method is_empty (line 306) | def is_empty(self):
    method find_neighbors (line 314) | def find_neighbors(self, plane, ratio):
  class LTTextLineHorizontal (line 317) | class LTTextLineHorizontal(LTTextLine):
    method __init__ (line 319) | def __init__(self):
    method _insert_anon_spaces (line 323) | def _insert_anon_spaces(self, word_margin):
    method add (line 336) | def add(self, obj):
    method find_neighbors (line 340) | def find_neighbors(self, plane, ratio):
    method median_charheight (line 352) | def median_charheight(self):
  class LTTextLineVertical (line 362) | class LTTextLineVertical(LTTextLine):
    method _insert_anon_spaces (line 364) | def _insert_anon_spaces(self, word_margin):
    method find_neighbors (line 373) | def find_neighbors(self, plane, ratio):
  class LTTextBox (line 382) | class LTTextBox(LTTextContainer):
    method __init__ (line 384) | def __init__(self):
    method __repr__ (line 388) | def __repr__(self):
  class LTTextBoxHorizontal (line 393) | class LTTextBoxHorizontal(LTTextBox):
    method __init__ (line 395) | def __init__(self):
    method add (line 399) | def add(self, obj):
    method analyze (line 403) | def analyze(self, laparams):
    method _pos_in_box (line 407) | def _pos_in_box(self, obj):
    method _sort_lines (line 417) | def _sort_lines(self):
    method get_writing_mode (line 429) | def get_writing_mode(self):
    method paragraphs (line 432) | def paragraphs(self, indent_treshold):
  class LTTextBoxVertical (line 462) | class LTTextBoxVertical(LTTextBox):
    method analyze (line 464) | def analyze(self, laparams):
    method get_writing_mode (line 468) | def get_writing_mode(self):
  class LTTextGroup (line 472) | class LTTextGroup(LTTextContainer):
    method __init__ (line 474) | def __init__(self, objs):
  class LTTextGroupLRTB (line 478) | class LTTextGroupLRTB(LTTextGroup):
    method analyze (line 480) | def analyze(self, laparams):
  class LTTextGroupTBRL (line 487) | class LTTextGroupTBRL(LTTextGroup):
    method analyze (line 489) | def analyze(self, laparams):
  class LTLayoutContainer (line 497) | class LTLayoutContainer(LTContainer):
    method __init__ (line 499) | def __init__(self, bbox):
    method get_textlines (line 503) | def get_textlines(self, laparams, objs):
    method get_textboxes (line 567) | def get_textboxes(self, laparams, lines):
    method group_textboxes (line 597) | def group_textboxes(self, laparams, boxes):
    method analyze (line 657) | def analyze(self, laparams):
  class LTFigure (line 682) | class LTFigure(LTLayoutContainer):
    method __init__ (line 684) | def __init__(self, name, bbox, matrix):
    method __repr__ (line 692) | def __repr__(self):
    method analyze (line 697) | def analyze(self, laparams):
  class LTPage (line 703) | class LTPage(LTLayoutContainer):
    method __init__ (line 705) | def __init__(self, pageid, bbox, rotate=0):
    method __repr__ (line 710) | def __repr__(self):
  class Plane (line 722) | class Plane:
    method __init__ (line 724) | def __init__(self, objs=None, gridsize=50):
    method __repr__ (line 732) | def __repr__(self):
    method __iter__ (line 735) | def __iter__(self):
    method __len__ (line 738) | def __len__(self):
    method __contains__ (line 741) | def __contains__(self, obj):
    method _getrange (line 744) | def _getrange(self, area):
    method add (line 751) | def add(self, obj):
    method remove (line 762) | def remove(self, obj):
    method find (line 771) | def find(self, area):

FILE: pdfminer/lzw.py
  class CorruptDataError (line 8) | class CorruptDataError(Exception):
  class LZWDecoder (line 11) | class LZWDecoder:
    method __init__ (line 13) | def __init__(self, fp):
    method readbits (line 21) | def readbits(self, bits):
    method feed (line 45) | def feed(self, code):
    method run (line 80) | def run(self):
  function lzwdecode (line 95) | def lzwdecode(data):

FILE: pdfminer/pdfcolor.py
  class PDFColorSpace (line 10) | class PDFColorSpace:
    method __init__ (line 12) | def __init__(self, name, ncomponents):
    method __repr__ (line 16) | def __repr__(self):

FILE: pdfminer/pdfdevice.py
  class PDFDevice (line 7) | class PDFDevice:
    method __init__ (line 9) | def __init__(self, rsrcmgr):
    method __repr__ (line 13) | def __repr__(self):
    method close (line 16) | def close(self):
    method set_ctm (line 19) | def set_ctm(self, ctm):
    method begin_tag (line 22) | def begin_tag(self, tag, props=None):
    method end_tag (line 24) | def end_tag(self):
    method do_tag (line 26) | def do_tag(self, tag, props=None):
    method begin_page (line 29) | def begin_page(self, page, ctm):
    method end_page (line 31) | def end_page(self, page):
    method begin_figure (line 33) | def begin_figure(self, name, bbox, matrix):
    method end_figure (line 35) | def end_figure(self, name):
    method paint_path (line 38) | def paint_path(self, graphicstate, stroke, fill, evenodd, path):
    method render_image (line 40) | def render_image(self, name, stream):
    method render_string (line 42) | def render_string(self, textstate, seq):
  class PDFTextDevice (line 46) | class PDFTextDevice(PDFDevice):
    method render_string (line 48) | def render_string(self, textstate, seq):
    method render_string_horizontal (line 68) | def render_string_horizontal(self, seq, matrix, point, font, fontsize,...
    method render_string_vertical (line 87) | def render_string_vertical(self, seq, matrix, point, font, fontsize, s...
    method render_char (line 106) | def render_char(self, matrix, font, fontsize, scaling, rise, cid):
  class TagExtractor (line 110) | class TagExtractor(PDFDevice):
    method __init__ (line 112) | def __init__(self, rsrcmgr, outfp):
    method render_string (line 118) | def render_string(self, textstate, seq):
    method begin_page (line 133) | def begin_page(self, page, ctm):
    method end_page (line 137) | def end_page(self, page):
    method begin_tag (line 141) | def begin_tag(self, tag, props=None):
    method end_tag (line 149) | def end_tag(self):
    method do_tag (line 154) | def do_tag(self, tag, props=None):

FILE: pdfminer/pdffont.py
  function get_widths (line 18) | def get_widths(seq):
  function get_widths2 (line 40) | def get_widths2(seq):
  class FontMetricsDB (line 63) | class FontMetricsDB:
    method get_metrics (line 66) | def get_metrics(klass, fontname):
  class Type1FontHeaderParser (line 70) | class Type1FontHeaderParser(PSStackParser):
    method __init__ (line 82) | def __init__(self, data):
    method get_encoding (line 86) | def get_encoding(self):
    method do_keyword (line 98) | def do_keyword(self, pos, token):
  function getdict (line 111) | def getdict(data):
  class CFFFont (line 152) | class CFFFont:
    class INDEX (line 235) | class INDEX:
      method __init__ (line 237) | def __init__(self, fp):
      method __repr__ (line 246) | def __repr__(self):
      method __len__ (line 249) | def __len__(self):
      method __getitem__ (line 252) | def __getitem__(self, i):
      method __iter__ (line 256) | def __iter__(self):
    method __init__ (line 259) | def __init__(self, name, fp):
    method getstr (line 338) | def getstr(self, sid):
  class TrueTypeFont (line 344) | class TrueTypeFont:
    class CMapNotFound (line 346) | class CMapNotFound(Exception): pass
    method __init__ (line 348) | def __init__(self, name, fp):
    method create_unicode_map (line 358) | def create_unicode_map(self):
  class PDFFontError (line 423) | class PDFFontError(PDFException): pass
  class PDFUnicodeNotDefined (line 424) | class PDFUnicodeNotDefined(PDFFontError): pass
  class PDFFont (line 430) | class PDFFont:
    method __init__ (line 432) | def __init__(self, descriptor, widths, default_width=None):
    method __repr__ (line 447) | def __repr__(self):
    method is_vertical (line 450) | def is_vertical(self):
    method is_multibyte (line 453) | def is_multibyte(self):
    method decode (line 456) | def decode(self, s):
    method get_ascent (line 462) | def get_ascent(self):
    method get_descent (line 464) | def get_descent(self):
    method get_width (line 467) | def get_width(self):
    method get_height (line 472) | def get_height(self):
    method char_width (line 478) | def char_width(self, cid):
    method char_disp (line 481) | def char_disp(self, cid):
    method string_width (line 484) | def string_width(self, s):
  class PDFSimpleFont (line 488) | class PDFSimpleFont(PDFFont):
    method __init__ (line 490) | def __init__(self, descriptor, widths, spec):
    method to_unichr (line 511) | def to_unichr(self, cid):
  class PDFType1Font (line 522) | class PDFType1Font(PDFSimpleFont):
    method __init__ (line 524) | def __init__(self, rsrcmgr, spec):
    method __repr__ (line 547) | def __repr__(self):
  class PDFTrueTypeFont (line 550) | class PDFTrueTypeFont(PDFType1Font):
    method __repr__ (line 552) | def __repr__(self):
  class PDFType3Font (line 555) | class PDFType3Font(PDFSimpleFont):
    method __init__ (line 557) | def __init__(self, rsrcmgr, spec):
    method __repr__ (line 572) | def __repr__(self):
  class PDFCIDFont (line 576) | class PDFCIDFont(PDFFont):
    method __init__ (line 578) | def __init__(self, rsrcmgr, spec):
    method __repr__ (line 641) | def __repr__(self):
    method is_vertical (line 644) | def is_vertical(self):
    method is_multibyte (line 647) | def is_multibyte(self):
    method decode (line 650) | def decode(self, bytes):
    method char_disp (line 653) | def char_disp(self, cid):
    method to_unichr (line 657) | def to_unichr(self, cid):
  function main (line 666) | def main(argv):

FILE: pdfminer/pdfinterp.py
  class PDFResourceError (line 24) | class PDFResourceError(PDFException): pass
  class PDFInterpreterError (line 25) | class PDFInterpreterError(PDFException): pass
  class PDFTextState (line 37) | class PDFTextState:
    method __init__ (line 39) | def __init__(self):
    method __repr__ (line 52) | def __repr__(self):
    method copy (line 60) | def copy(self):
    method reset (line 74) | def reset(self):
  class PDFGraphicState (line 79) | class PDFGraphicState:
    method __init__ (line 81) | def __init__(self):
    method copy (line 90) | def copy(self):
    method __repr__ (line 101) | def __repr__(self):
  class PDFResourceManager (line 107) | class PDFResourceManager:
    method __init__ (line 114) | def __init__(self, caching=True):
    method get_procset (line 118) | def get_procset(self, procs):
    method get_cmap (line 128) | def get_cmap(self, cmapname, strict=False):
    method get_font (line 135) | def get_font(self, objid, spec):
  class PDFContentParser (line 177) | class PDFContentParser(PSStackParser):
    method __init__ (line 179) | def __init__(self, streams):
    method get_inline_data (line 190) | def get_inline_data(self, pos, target='EI'):
    method flush (line 214) | def flush(self):
    method do_keyword (line 220) | def do_keyword(self, pos, token):
  class PDFPageInterpreter (line 240) | class PDFPageInterpreter:
    method __init__ (line 242) | def __init__(self, rsrcmgr, device):
    method dup (line 246) | def dup(self):
    method init_resources (line 251) | def init_resources(self, resources):
    method init_state (line 292) | def init_state(self, ctm):
    method push (line 307) | def push(self, obj):
    method pop (line 310) | def pop(self, n):
    method get_current_state (line 317) | def get_current_state(self):
    method set_current_state (line 320) | def set_current_state(self, state):
    method do_q (line 325) | def do_q(self):
    method do_Q (line 328) | def do_Q(self):
    method do_cm (line 333) | def do_cm(self, a1, b1, c1, d1, e1, f1):
    method do_w (line 338) | def do_w(self, linewidth):
    method do_J (line 341) | def do_J(self, linecap):
    method do_j (line 344) | def do_j(self, linejoin):
    method do_M (line 347) | def do_M(self, miterlimit):
    method do_d (line 350) | def do_d(self, dash, phase):
    method do_ri (line 353) | def do_ri(self, intent):
    method do_i (line 356) | def do_i(self, flatness):
    method do_gs (line 359) | def do_gs(self, name):
    method do_m (line 364) | def do_m(self, x, y):
    method do_l (line 367) | def do_l(self, x, y):
    method do_c (line 370) | def do_c(self, x1, y1, x2, y2, x3, y3):
    method do_v (line 373) | def do_v(self, x2, y2, x3, y3):
    method do_y (line 376) | def do_y(self, x1, y1, x3, y3):
    method do_h (line 379) | def do_h(self):
    method do_re (line 382) | def do_re(self, x, y, w, h):
    method do_S (line 390) | def do_S(self):
    method do_s (line 394) | def do_s(self):
    method do_f (line 398) | def do_f(self):
    method do_f_a (line 404) | def do_f_a(self):
    method do_B (line 408) | def do_B(self):
    method do_B_a (line 412) | def do_B_a(self):
    method do_b (line 416) | def do_b(self):
    method do_b_a (line 420) | def do_b_a(self):
    method do_n (line 424) | def do_n(self):
    method do_W (line 427) | def do_W(self):
    method do_W_a (line 430) | def do_W_a(self):
    method do_CS (line 434) | def do_CS(self, name):
    method do_cs (line 437) | def do_cs(self, name):
    method do_G (line 440) | def do_G(self, gray):
    method do_g (line 444) | def do_g(self, gray):
    method do_RG (line 448) | def do_RG(self, r, g, b):
    method do_rg (line 452) | def do_rg(self, r, g, b):
    method do_K (line 456) | def do_K(self, c, m, y, k):
    method do_k (line 460) | def do_k(self, c, m, y, k):
    method do_SCN (line 465) | def do_SCN(self):
    method do_scn (line 472) | def do_scn(self):
    method do_SC (line 479) | def do_SC(self):
    method do_sc (line 481) | def do_sc(self):
    method do_sh (line 485) | def do_sh(self, name):
    method do_BT (line 489) | def do_BT(self):
    method do_ET (line 492) | def do_ET(self):
    method do_BX (line 496) | def do_BX(self):
    method do_EX (line 499) | def do_EX(self):
    method do_MP (line 503) | def do_MP(self, tag):
    method do_DP (line 505) | def do_DP(self, tag, props):
    method do_BMC (line 507) | def do_BMC(self, tag):
    method do_BDC (line 509) | def do_BDC(self, tag, props):
    method do_EMC (line 511) | def do_EMC(self):
    method do_Tc (line 515) | def do_Tc(self, space):
    method do_Tw (line 518) | def do_Tw(self, space):
    method do_Tz (line 521) | def do_Tz(self, scale):
    method do_TL (line 524) | def do_TL(self, leading):
    method do_Tf (line 527) | def do_Tf(self, fontid, fontsize):
    method do_Tr (line 535) | def do_Tr(self, render):
    method do_Ts (line 538) | def do_Ts(self, rise):
    method do_Td (line 542) | def do_Td(self, tx, ty):
    method do_TD (line 548) | def do_TD(self, tx, ty):
    method do_Tm (line 555) | def do_Tm(self, a,b,c,d,e,f):
    method do_T_a (line 559) | def do_T_a(self):
    method do_TJ (line 565) | def do_TJ(self, seq):
    method do_Tj (line 572) | def do_Tj(self, s):
    method do__q (line 575) | def do__q(self, s):
    method do__w (line 579) | def do__w(self, aw, ac, s):
    method do_BI (line 585) | def do_BI(self): # never called
    method do_ID (line 587) | def do_ID(self): # never called
    method do_EI (line 589) | def do_EI(self, obj):
    method do_Do (line 602) | def do_Do(self, xobjid):
    method process_page (line 630) | def process_page(self, page):
    method render_contents (line 648) | def render_contents(self, resources, streams, ctm=MATRIX_IDENTITY):
    method execute (line 654) | def execute(self, streams):
  class PDFTextExtractionNotAllowed (line 685) | class PDFTextExtractionNotAllowed(PDFInterpreterError): pass
  function process_pdf (line 687) | def process_pdf(rsrcmgr, device, fp, pagenos=None, maxpages=0, password='',

FILE: pdfminer/pdfparser.py
  class PDFSyntaxError (line 19) | class PDFSyntaxError(PDFException): pass
  class PDFNoValidXRef (line 20) | class PDFNoValidXRef(PDFSyntaxError): pass
  class PDFNoOutlines (line 21) | class PDFNoOutlines(PDFException): pass
  class PDFDestinationNotFound (line 22) | class PDFDestinationNotFound(PDFException): pass
  class PDFAlreadyParsed (line 23) | class PDFAlreadyParsed(PDFException): pass
  class PDFEncryptionError (line 24) | class PDFEncryptionError(PDFException): pass
  class PDFPasswordIncorrect (line 25) | class PDFPasswordIncorrect(PDFEncryptionError): pass
  class PDFBaseXRef (line 35) | class PDFBaseXRef:
    method get_trailer (line 37) | def get_trailer(self):
    method get_objids (line 40) | def get_objids(self):
    method get_pos (line 43) | def get_pos(self, objid):
  class PDFXRef (line 47) | class PDFXRef(PDFBaseXRef):
    method __init__ (line 49) | def __init__(self):
    method load (line 53) | def load(self, parser):
    method load_trailer (line 87) | def load_trailer(self, parser):
    method load_fallback (line 101) | def load_fallback(self, parser, debug=0):
    method get_trailer (line 118) | def get_trailer(self):
    method get_objids (line 121) | def get_objids(self):
    method get_pos (line 124) | def get_pos(self, objid):
  class PDFXRefStream (line 132) | class PDFXRefStream(PDFBaseXRef):
    method __init__ (line 134) | def __init__(self):
    method __repr__ (line 140) | def __repr__(self):
    method load (line 143) | def load(self, parser):
    method get_trailer (line 164) | def get_trailer(self):
    method get_objids (line 167) | def get_objids(self):
    method get_pos (line 172) | def get_pos(self, objid):
  class PDFPage (line 198) | class PDFPage:
    method __init__ (line 220) | def __init__(self, doc, pageid, attrs):
    method __repr__ (line 248) | def __repr__(self):
  class PDFDocument (line 252) | class PDFDocument:
    method __init__ (line 269) | def __init__(self, caching=True):
    method _parse_next_object (line 281) | def _parse_next_object(self, parser):
    method _parse_objstream (line 294) | def _parse_objstream(self, stream):
    method _parse_whole (line 311) | def _parse_whole(self, parser):
    method _parse_everything (line 322) | def _parse_everything(self):
    method _getobj (line 335) | def _getobj(self, objid):
    method set_parser (line 417) | def set_parser(self, parser):
    method initialize (line 449) | def initialize(self, password=''):
    method decrypt_rc4 (line 506) | def decrypt_rc4(self, objid, genno, data):
    method readobj (line 512) | def readobj(self):
    method find_obj_ref (line 520) | def find_obj_ref(self, objid):
    method getobj (line 531) | def getobj(self, objid):
    method get_pages (line 542) | def get_pages(self):
    method get_outlines (line 571) | def get_outlines(self):
    method lookup_name (line 591) | def lookup_name(self, cat, key):
    method get_dest (line 613) | def get_dest(self, name):
  class PDFParser (line 628) | class PDFParser(PSStackParser):
    method __init__ (line 645) | def __init__(self, fp):
    method set_document (line 650) | def set_document(self, doc):
    method do_keyword (line 660) | def do_keyword(self, pos, token):
    method find_xref (line 719) | def find_xref(self):
    method read_xref_from (line 733) | def read_xref_from(self, start, xrefs):
    method read_xref (line 765) | def read_xref(self):
  class PDFStreamParser (line 781) | class PDFStreamParser(PDFParser):
    method __init__ (line 791) | def __init__(self, data):
    method flush (line 794) | def flush(self):
    method do_keyword (line 797) | def do_keyword(self, pos, token):

FILE: pdfminer/pdftypes.py
  class PDFObject (line 24) | class PDFObject(PSObject): pass
  class PDFException (line 26) | class PDFException(PSException): pass
  class PDFTypeError (line 27) | class PDFTypeError(PDFException): pass
  class PDFValueError (line 28) | class PDFValueError(PDFException): pass
  class PDFNotImplementedError (line 29) | class PDFNotImplementedError(PSException): pass
  class PDFObjRef (line 34) | class PDFObjRef(PDFObject):
    method __init__ (line 36) | def __init__(self, doc, objid, _):
    method __repr__ (line 43) | def __repr__(self):
    method resolve (line 46) | def resolve(self):
  function resolve1 (line 51) | def resolve1(x):
  function resolve_all (line 61) | def resolve_all(x):
  function decipher_all (line 76) | def decipher_all(decipher, objid, genno, x):
  function typecheck_value (line 91) | def typecheck_value(x, type, strict=STRICT):
  function stream_value (line 106) | def stream_value(x):
  class PDFStream (line 114) | class PDFStream(PDFObject):
    method __init__ (line 116) | def __init__(self, attrs, rawdata, decipher=None):
    method set_objid (line 125) | def set_objid(self, objid, genno):
    method __repr__ (line 129) | def __repr__(self):
    method __contains__ (line 137) | def __contains__(self, name):
    method __getitem__ (line 140) | def __getitem__(self, name):
    method get (line 143) | def get(self, name, default=None):
    method get_any (line 146) | def get_any(self, names, default=None):
    method get_filters (line 152) | def get_filters(self):
    method decode (line 158) | def decode(self):
    method get_data (line 223) | def get_data(self):
    method get_rawdata (line 228) | def get_rawdata(self):

FILE: pdfminer/pslexer.py
  function t_COMMENT (line 15) | def t_COMMENT(t):
  function t_HEXSTRING (line 23) | def t_HEXSTRING(t):
  function t_INT (line 35) | def t_INT(t):
  function t_FLOAT (line 40) | def t_FLOAT(t):
  function t_LITERAL (line 46) | def t_LITERAL(t):
  function t_OPERATOR (line 58) | def t_OPERATOR(t):
  function t_instring (line 64) | def t_instring(t):
  function t_instring_lparen (line 78) | def t_instring_lparen(t):
  function t_instring_rparen (line 87) | def t_instring_rparen(t):
  function repl_string_escape (line 111) | def repl_string_escape(m):
  function repl_string_octal (line 114) | def repl_string_octal(m):
  function t_instring_contents (line 121) | def t_instring_contents(t):
  function t_error (line 133) | def t_error(t):

FILE: pdfminer/psparser.py
  class PSException (line 12) | class PSException(Exception): pass
  class PSEOF (line 13) | class PSEOF(PSException): pass
  class PSSyntaxError (line 14) | class PSSyntaxError(PSException): pass
  class PSTypeError (line 15) | class PSTypeError(PSException): pass
  class PSValueError (line 16) | class PSValueError(PSException): pass
  function handle_error (line 18) | def handle_error(exctype, msg, strict=STRICT):
  class PSObject (line 27) | class PSObject:
  class PSLiteral (line 32) | class PSLiteral(PSObject):
    method __init__ (line 45) | def __init__(self, name):
    method __repr__ (line 48) | def __repr__(self):
  class PSKeyword (line 52) | class PSKeyword(PSObject):
    method __init__ (line 64) | def __init__(self, name):
    method __repr__ (line 67) | def __repr__(self):
  class PSSymbolTable (line 71) | class PSSymbolTable:
    method __init__ (line 78) | def __init__(self, klass):
    method intern (line 82) | def intern(self, name):
  function literal_name (line 102) | def literal_name(x):
  function keyword_name (line 108) | def keyword_name(x):
  class PSBaseParser (line 129) | class PSBaseParser:
    method __init__ (line 133) | def __init__(self, fp):
    method _convert_token (line 141) | def _convert_token(self, token):
    method flush (line 155) | def flush(self):
    method close (line 158) | def close(self):
    method setpos (line 163) | def setpos(self, newpos):
    method nextline (line 168) | def nextline(self):
    method nexttoken (line 177) | def nexttoken(self):
  class PSStackParser (line 185) | class PSStackParser(PSBaseParser):
    method __init__ (line 187) | def __init__(self, fp):
    method reset (line 191) | def reset(self):
    method setpos (line 197) | def setpos(self, newpos):
    method push (line 201) | def push(self, *objs):
    method pop (line 204) | def pop(self, n):
    method popall (line 209) | def popall(self):
    method add_results (line 214) | def add_results(self, *objs):
    method start_type (line 218) | def start_type(self, pos, type):
    method end_type (line 223) | def end_type(self, type):
    method do_keyword (line 231) | def do_keyword(self, pos, token):
    method nextobject (line 234) | def nextobject(self):

FILE: pdfminer/rijndael.py
  function KEYLENGTH (line 14) | def KEYLENGTH(keybits): return (keybits)//8
  function RKLENGTH (line 15) | def RKLENGTH(keybits): return (keybits)//8+28
  function NROUNDS (line 16) | def NROUNDS(keybits): return (keybits)//32+6
  function GETU32 (line 697) | def GETU32(x): return struct.unpack('>L', x)[0]
  function PUTU32 (line 698) | def PUTU32(x): return struct.pack('>L', x)
  function GETU32 (line 701) | def GETU32(x): return struct.unpack('>I', x)[0]
  function PUTU32 (line 702) | def PUTU32(x): return struct.pack('>I', x)
  function rijndaelSetupEncrypt (line 707) | def rijndaelSetupEncrypt(key, keybits):
  function rijndaelSetupDecrypt (line 783) | def rijndaelSetupDecrypt(key, keybits):
  function rijndaelEncrypt (line 825) | def rijndaelEncrypt(rk, nrounds, plaintext):
  function rijndaelDecrypt (line 928) | def rijndaelDecrypt(rk, nrounds, ciphertext):
  class RijndaelDecryptor (line 1032) | class RijndaelDecryptor:
    method __init__ (line 1033) | def __init__(self, key, keybits=256):
    method decrypt (line 1039) | def decrypt(self, ciphertext):
  class RijndaelEncryptor (line 1044) | class RijndaelEncryptor:
    method __init__ (line 1045) | def __init__(self, key, keybits=256):
    method encrypt (line 1051) | def encrypt(self, plaintext):

FILE: pdfminer/runlength.py
  function rldecode (line 11) | def rldecode(data):

FILE: pdfminer/utils.py
  function apply_png_predictor (line 7) | def apply_png_predictor(pred, colors, columns, bitspercomponent, data):
  function mult_matrix (line 57) | def mult_matrix(matrix1, matrix2):
  function translate_matrix (line 65) | def translate_matrix(matrix, point):
  function apply_matrix_pt (line 71) | def apply_matrix_pt(matrix, point):
  function apply_matrix_norm (line 77) | def apply_matrix_norm(matrix, norm):
  function uniq (line 88) | def uniq(objs):
  function fsplit (line 97) | def fsplit(pred, objs):
  function drange (line 109) | def drange(v0, v1, d):
  function get_bound (line 115) | def get_bound(pts):
  function pick (line 126) | def pick(seq, func, maxobj=None):
  function choplist (line 136) | def choplist(n, seq):
  function trailiter (line 145) | def trailiter(iterable, skipfirst=False):
  function nunpack (line 161) | def nunpack(b, default=0):
  function decode_text (line 214) | def decode_text(s):
  function htmlescape (line 221) | def htmlescape(s, encoding='ascii'):
  function bbox2str (line 229) | def bbox2str(bbox):
  function matrix2str (line 233) | def matrix2str(matrix):
  function set_debug_logging (line 237) | def set_debug_logging():
  class ObjIdRange (line 241) | class ObjIdRange:
    method __init__ (line 245) | def __init__(self, start, nobjs):
    method __repr__ (line 249) | def __repr__(self):
    method get_start_id (line 252) | def get_start_id(self):
    method get_end_id (line 255) | def get_end_id(self):
    method get_nobjs (line 258) | def get_nobjs(self):
  function create_bmp (line 263) | def create_bmp(data, bits, width, height):

FILE: tests/layout_test.py
  function test_small_elements_get_plane_grid_placement (line 8) | def test_small_elements_get_plane_grid_placement():
  function test_slightly_higher_text (line 15) | def test_slightly_higher_text():
  function test_paragraph_indents (line 24) | def test_paragraph_indents():
  function test_centered_text (line 35) | def test_centered_text():
  function test_big_letter_with_title (line 43) | def test_big_letter_with_title():
  function test_big_letter_spanning_multiple_lines (line 53) | def test_big_letter_spanning_multiple_lines():
  function test_space_chars_only (line 65) | def test_space_chars_only():

FILE: tests/parser_test.py
  function get_tokens (line 26) | def get_tokens(s):
  function get_objects (line 39) | def get_objects(s):
  function withoutpos (line 52) | def withoutpos(tokens):
  function test_tokens (line 55) | def test_tokens():
  function test_objects (line 73) | def test_objects():
  function test_byte_strings_are_parsed_as_bytes (line 88) | def test_byte_strings_are_parsed_as_bytes():
  function test_detect_escaped_parens_in_string (line 99) | def test_detect_escaped_parens_in_string():
  function test_true_false_keywords_translate_to_bool (line 106) | def test_true_false_keywords_translate_to_bool():
  function test_hexstring_without_delimiter (line 112) | def test_hexstring_without_delimiter():
  function test_octal_string_over_byte_value (line 119) | def test_octal_string_over_byte_value():

FILE: tests/samples_test.py
  function runcmd (line 13) | def runcmd(args):
  function pytest_generate_tests (line 19) | def pytest_generate_tests(metafunc):
  function test_convert_sample (line 42) | def test_convert_sample(samplepath, tmpdir):

FILE: tests/support_test.py
  function test_arcfour (line 8) | def test_arcfour():
  function test_ascii85decode (line 13) | def test_ascii85decode():
  function test_asciihexdecode (line 17) | def test_asciihexdecode():
  function test_lzwdecode (line 22) | def test_lzwdecode():
  function test_lzwdecode_garbage (line 25) | def test_lzwdecode_garbage():
  function test_lzwdecode_invalid (line 31) | def test_lzwdecode_invalid():
  function test_RijndaelDecryptor (line 36) | def test_RijndaelDecryptor():
  function test_RijndaelEncryptor (line 42) | def test_RijndaelEncryptor():
  function test_rldecode (line 48) | def test_rldecode():
  function test_nunpack (line 52) | def test_nunpack():
  function test_trailiter (line 63) | def test_trailiter():

FILE: tests/util.py
  function eq_ (line 8) | def eq_(a, b, msg=None):
  class TestData (line 12) | class TestData:
    method __init__ (line 13) | def __init__(self, datadirpath):
    method filepath (line 16) | def filepath(self, relative_path, *args):
  function pages_from_pdf (line 28) | def pages_from_pdf(path, **laparams):
  function extract_from_elem (line 46) | def extract_from_elem(elem, lookfor):
  function extract_textboxes (line 55) | def extract_textboxes(elem):

FILE: tools/conv_afm.py
  function main (line 5) | def main(argv):

FILE: tools/conv_cmap.py
  function process_cid2code (line 7) | def process_cid2code(fp, check_codecs=[]):
  function main (line 115) | def main(argv):

FILE: tools/conv_glyphlist.py
  function main (line 5) | def main(argv):

FILE: tools/dumppdf.py
  function e (line 17) | def e(s):
  function dumpxml (line 22) | def dumpxml(out, obj, codec=None):
  function dumptrailers (line 85) | def dumptrailers(out, doc):
  function dumpallobjs (line 92) | def dumpallobjs(out, doc, codec=None):
  function dumpoutline (line 108) | def dumpoutline(outfp, fname, objids, pagenos, password='',
  function dumppdf (line 156) | def dumppdf(outfp, fname, objids, pagenos, password='',
  function main (line 187) | def main(argv):

FILE: tools/latin2ascii.py
  function latin2ascii (line 108) | def latin2ascii(s):
  function main (line 112) | def main(argv):

FILE: tools/pdf2txt.py
  function main (line 12) | def main(argv):

FILE: tools/pdfexplore.py
  class bcolors (line 8) | class bcolors:
  function intarg (line 16) | def intarg(default=None):
  class PDFExploreCmd (line 29) | class PDFExploreCmd(cmd.Cmd):
    method __init__ (line 32) | def __init__(self, pdf_path):
    method _cached_objects (line 44) | def _cached_objects(self):
    method _get_refs (line 47) | def _get_refs(self):
    method precmd (line 63) | def precmd(self, line):
    method do_debug (line 68) | def do_debug(self, arg):
    method do_status (line 75) | def do_status(self, arg):
    method do_xref (line 86) | def do_xref(self, arg):
    method do_setpos (line 104) | def do_setpos(self, arg):
    method do_rtok (line 110) | def do_rtok(self, arg):
    method do_ptok (line 127) | def do_ptok(self, arg):
    method do_robj (line 133) | def do_robj(self, arg):
    method do_sobj (line 140) | def do_sobj(self, arg):
    method do_dbgobj (line 159) | def do_dbgobj(self, arg):
    method do_readall (line 167) | def do_readall(self, arg):
    method do_dumpdata (line 173) | def do_dumpdata(self, arg):
    method do_whatisread (line 182) | def do_whatisread(self, arg):
    method do_refs (line 187) | def do_refs(self, arg):
    method do_deadrefs (line 197) | def do_deadrefs(self, arg):
    method do_quit (line 204) | def do_quit(self, arg):
  function parse_args (line 211) | def parse_args():

FILE: tools/prof.py
  function prof_main (line 4) | def prof_main(argv):

FILE: tools/runapp.py
  class WebAppHandler (line 17) | class WebAppHandler(SimpleHTTPRequestHandler):
    method do_POST (line 21) | def do_POST(self):
    method send_head (line 24) | def send_head(self):
    method run_cgi (line 27) | def run_cgi(self):
  function main (line 87) | def main(argv):
Copy disabled (too large) Download .json
Condensed preview — 89 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (12,017K chars).
[
  {
    "path": ".gitignore",
    "chars": 71,
    "preview": "*.pyc\n/build\n/dist\n/MANIFEST\n__pycache__\n/pdfminer/cmap/*.gz\n*.egg-info"
  },
  {
    "path": "CHANGES",
    "chars": 1490,
    "preview": "Changes\n=======\n\nVersion 1.3.1 -- 2016/11/05\n---------------------------\n\n* Replaced root loggers with module-wide logge"
  },
  {
    "path": "MANIFEST.in",
    "chars": 110,
    "preview": "include *.txt\ninclude *.py\ninclude CHANGES\ngraft cmaprsrc\ngraft docs\ngraft pdfminer\ngraft samples\ngraft tools\n"
  },
  {
    "path": "README.txt",
    "chars": 73,
    "preview": "See docs/index.html\n\npytest is needed to run tests in the 'tests' folder."
  },
  {
    "path": "build_cmap.py",
    "chars": 1317,
    "preview": "import sys\nimport os\nimport os.path as op\nfrom subprocess import Popen\n\nBASEPATH = op.dirname(__file__)\n\ndef runcmd(args"
  },
  {
    "path": "cmaprsrc/README.txt",
    "chars": 2916,
    "preview": "README.txt for cmaprsrc\n\nThis directory contains Adobe CMap resources. CMaps are required \nto decode text data written i"
  },
  {
    "path": "cmaprsrc/cid2code_Adobe_CNS1.txt",
    "chars": 2046762,
    "preview": "# cid2code.txt (Version 08/23/2009)\n#\n# The data in this table contains nineteen tab-delimited columns of\n# information."
  },
  {
    "path": "cmaprsrc/cid2code_Adobe_GB1.txt",
    "chars": 1900416,
    "preview": "# cid2code.txt (Version 08/28/2009)\n#\n# The data in this table contains 14 tab-delimited columns of\n# information. The c"
  },
  {
    "path": "cmaprsrc/cid2code_Adobe_Japan1.txt",
    "chars": 2681742,
    "preview": "# cid2code.txt (Version 08/11/2009)\n#\n# The data in this table contains 32 tab-delimited columns of\n# information. The c"
  },
  {
    "path": "cmaprsrc/cid2code_Adobe_Korea1.txt",
    "chars": 1028252,
    "preview": "# cid2code.txt (Version 08/11/2009)\n#\n# The data in this table contains 11 tab-delimited columns of\n# information. The c"
  },
  {
    "path": "docs/cid.obj",
    "chars": 6880,
    "preview": "%TGIF 4.1.45-QPL\nstate(0,37,100.000,0,0,0,16,1,9,1,1,2,0,1,0,1,1,'NewCenturySchlbk-Bold',1,103680,0,0,1,10,0,0,1,1,0,16,"
  },
  {
    "path": "docs/index.html",
    "chars": 18974,
    "preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\">\n<html>\n<head>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"style.css\""
  },
  {
    "path": "docs/layout.obj",
    "chars": 12140,
    "preview": "%TGIF 4.2.2\nstate(0,37,100.000,0,0,0,16,1,9,1,1,0,0,0,0,1,1,'Helvetica-Bold',1,69120,0,0,1,5,0,0,1,1,0,16,0,0,1,1,1,1,10"
  },
  {
    "path": "docs/objrel.obj",
    "chars": 6080,
    "preview": "%TGIF 4.2.2\nstate(0,37,100.000,0,0,0,16,1,9,1,1,1,0,0,2,1,1,'Helvetica-Bold',1,69120,0,0,1,10,0,0,1,1,0,16,0,0,1,1,1,1,1"
  },
  {
    "path": "docs/programming.html",
    "chars": 8417,
    "preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\">\n<html>\n<head>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"style.css\""
  },
  {
    "path": "docs/style.css",
    "chars": 114,
    "preview": "blockquote { background: #eeeeee; }\nh1 { border-bottom: solid black 2px; }\nh2 { border-bottom: solid black 1px; }\n"
  },
  {
    "path": "pdfminer/__init__.py",
    "chars": 92,
    "preview": "#!/usr/bin/env python3\n__version__ = '1.3.1'\n\nif __name__ == '__main__': print(__version__)\n"
  },
  {
    "path": "pdfminer/arcfour.py",
    "chars": 726,
    "preview": "\"\"\" Python implementation of Arcfour encryption algorithm.\n\nThis code is in the public domain.\n\n\"\"\"\n\nclass Arcfour:\n    "
  },
  {
    "path": "pdfminer/ascii85.py",
    "chars": 2124,
    "preview": "#!/usr/bin/env python3\n\n\"\"\" Python implementation of ASCII85/ASCIIHex decoder (Adobe version).\n\nThis code is in the publ"
  },
  {
    "path": "pdfminer/cmap/__init__.py",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "pdfminer/cmapdb.py",
    "chars": 11483,
    "preview": "#!/usr/bin/env python3\n\n\"\"\" Adobe character mapping (CMap) support.\n\nCMaps provide the mapping between character codes a"
  },
  {
    "path": "pdfminer/converter.py",
    "chars": 18374,
    "preview": "import os.path\nimport logging\n\nfrom .pdfdevice import PDFTextDevice\nfrom .pdffont import PDFUnicodeNotDefined\nfrom .pdft"
  },
  {
    "path": "pdfminer/encodingdb.py",
    "chars": 1472,
    "preview": "import re\nfrom .psparser import PSLiteral\nfrom .glyphlist import glyphname2unicode\nfrom .latin_enc import ENCODING\n\n\nSTR"
  },
  {
    "path": "pdfminer/fontmetrics.py",
    "chars": 25238,
    "preview": "#!/usr/bin/env python3\n\n\"\"\" Font metrics for the Adobe core 14 fonts.\n\nFont metrics are used to compute the boundary of "
  },
  {
    "path": "pdfminer/glyphlist.py",
    "chars": 117221,
    "preview": "#!/usr/bin/env python2\n\n\"\"\" Mappings from Adobe glyph names to Unicode characters.\n\nIn some CMap tables, Adobe glyph nam"
  },
  {
    "path": "pdfminer/latin_enc.py",
    "chars": 7836,
    "preview": "#!/usr/bin/env python3\n\n\"\"\" Standard encoding tables used in PDF.\n\nThis table is extracted from PDF Reference Manual 1.6"
  },
  {
    "path": "pdfminer/layout.py",
    "chars": 26942,
    "preview": "import logging\nfrom itertools import combinations\n\nfrom .utils import (INF, get_bound, uniq, fsplit, drange, bbox2str, m"
  },
  {
    "path": "pdfminer/lzw.py",
    "chars": 2809,
    "preview": "import io\nimport logging\n\n\nlogger = logging.getLogger(__name__)\n\n\nclass CorruptDataError(Exception):\n    pass\n\nclass LZW"
  },
  {
    "path": "pdfminer/pdfcolor.py",
    "chars": 652,
    "preview": "from .psparser import LIT\n\n\n##  PDFColorSpace\n##\nLITERAL_DEVICE_GRAY = LIT('DeviceGray')\nLITERAL_DEVICE_RGB = LIT('Devic"
  },
  {
    "path": "pdfminer/pdfdevice.py",
    "chars": 4999,
    "preview": "import sys\nfrom .utils import mult_matrix, translate_matrix\nfrom .utils import htmlescape, bbox2str\nfrom .pdffont import"
  },
  {
    "path": "pdfminer/pdffont.py",
    "chars": 25999,
    "preview": "#!/usr/bin/env python3\n\nimport sys\nimport io\nimport struct\nfrom .cmapdb import CMapDB, CMapParser, FileUnicodeMap, CMap\n"
  },
  {
    "path": "pdfminer/pdfinterp.py",
    "chars": 23591,
    "preview": "import io\nimport re\nimport logging\n\nfrom .cmapdb import CMapDB, CMap\nfrom .psparser import PSTypeError, PSEOF\nfrom .pspa"
  },
  {
    "path": "pdfminer/pdfparser.py",
    "chars": 29608,
    "preview": "import io\nimport re\nimport struct\nimport hashlib as md5\nimport logging\n\nfrom .psparser import PSStackParser, PSSyntaxErr"
  },
  {
    "path": "pdfminer/pdftypes.py",
    "chars": 7777,
    "preview": "from functools import partial\nimport zlib\nfrom .lzw import lzwdecode\nfrom .ascii85 import ascii85decode, asciihexdecode\n"
  },
  {
    "path": "pdfminer/pslexer.py",
    "chars": 4075,
    "preview": "import re\nimport ply.lex as lex\n\nstates = (\n    ('instring', 'exclusive'),\n)\n\ntokens = (\n    'COMMENT', 'HEXSTRING', 'IN"
  },
  {
    "path": "pdfminer/psparser.py",
    "chars": 8713,
    "preview": "import re\nimport logging\n\nfrom .utils import choplist\nfrom . import pslexer\n\nSTRICT = False\n\n\n##  PS Exceptions\n##\nclass"
  },
  {
    "path": "pdfminer/rijndael.py",
    "chars": 44292,
    "preview": "\"\"\" Python implementation of Rijndael encryption algorithm.\n\nThis code is in the public domain.\n\nThis code is based on a"
  },
  {
    "path": "pdfminer/runlength.py",
    "chars": 1504,
    "preview": "#!/usr/bin/env python3\n#\n# RunLength decoder (Adobe version) implementation based on PDF Reference\n# version 1.4 section"
  },
  {
    "path": "pdfminer/utils.py",
    "chars": 8439,
    "preview": "import struct\nfrom sys import maxsize as INF\n\n\n##  PNG Predictor\n##\ndef apply_png_predictor(pred, colors, columns, bitsp"
  },
  {
    "path": "samples/Makefile",
    "chars": 1286,
    "preview": "# GNUMakefile for test\n\nRM=rm -f\nCMP=:\nPYTHON=python2\n\nPDF2TXT=PYTHONPATH=.. $(PYTHON) ../tools/pdf2txt.py -p1 -V\n\nHTMLS"
  },
  {
    "path": "samples/README",
    "chars": 1503,
    "preview": "This directory contains sample PDF files.\n\nThese files (including ones in nonfree/ subdirectory) can be\ndistributed free"
  },
  {
    "path": "samples/jo.html.ref",
    "chars": 3310,
    "preview": "<html><head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n</head><body>\n<span style=\"position:abs"
  },
  {
    "path": "samples/jo.tex",
    "chars": 1478,
    "preview": "\\documentclass[landscape,twocolumn]{tarticle}\n\n\\setlength{\\hoffset}{-0.6in}\n\\setlength{\\voffset}{-0.7in}\n\n\\setlength{\\te"
  },
  {
    "path": "samples/jo.txt.ref",
    "chars": 969,
    "preview": "  序\n\n \n\nわたくしといふ現象は\n假定された有機交流電燈の\nひとつの青い照明です\n(あらゆる透明な幽霊の複合体)\n風景やみんなといっしょに\nせはしくせはしく明滅しながら\nいかにもたしかにともりつづける\n因果交流電燈の\nひとつの青い照明で"
  },
  {
    "path": "samples/jo.xml.ref",
    "chars": 85062,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<pages>\n<page id=\"1\" bbox=\"0.000,0.000,792.000,612.000\" rotate=\"0\">\n<textbox id="
  },
  {
    "path": "samples/nonfree/dmca.html.ref",
    "chars": 7457,
    "preview": "<html><head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n</head><body>\n<span style=\"position:abs"
  },
  {
    "path": "samples/nonfree/dmca.txt.ref",
    "chars": 2032,
    "preview": "THE DIGITAL MILLENNIUM COPYRIGHT ACT OF 1998\nU.S. Copyright Office Summary\n\nDecember 1998\n\nINTRODUCTION\n\nThe  Digital  M"
  },
  {
    "path": "samples/nonfree/dmca.xml.ref",
    "chars": 170595,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<pages>\n<page id=\"1\" bbox=\"0.000,0.000,612.000,792.000\" rotate=\"0\">\n<textbox id="
  },
  {
    "path": "samples/nonfree/f1040nr.html.ref",
    "chars": 59287,
    "preview": "<html><head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n</head><body>\n<span style=\"position:abs"
  },
  {
    "path": "samples/nonfree/f1040nr.txt.ref",
    "chars": 4862,
    "preview": "OMB No.  1545-0074\n2007 \n \n,  20\n \nIdentifying  number  (see  page  8)\n \n\n I\n\nCheck  if:\n \n\nndividual\n \nEstate  or  Trus"
  },
  {
    "path": "samples/nonfree/f1040nr.xml.ref",
    "chars": 432986,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<pages>\n<page id=\"1\" bbox=\"0.000,0.000,611.976,791.968\" rotate=\"0\">\n<textbox id="
  },
  {
    "path": "samples/nonfree/i1040nr.html.ref",
    "chars": 17776,
    "preview": "<html><head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n</head><body>\n<span style=\"position:abs"
  },
  {
    "path": "samples/nonfree/i1040nr.txt.ref",
    "chars": 5688,
    "preview": "Leadpct: 0% Pt. size: 9.5 ❏ Draft\nUserid: ________ DTD INSTR04\nPAGER/SGML\n(Init. & date)\nFileid:\nD:\\USERS\\8fllb\\document"
  },
  {
    "path": "samples/nonfree/i1040nr.xml.ref",
    "chars": 531263,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<pages>\n<page id=\"1\" bbox=\"0.000,0.000,612.000,1008.000\" rotate=\"0\">\n<textbox id"
  },
  {
    "path": "samples/nonfree/kampo.html.ref",
    "chars": 43973,
    "preview": "<html><head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n</head><body>\n<span style=\"position:abs"
  },
  {
    "path": "samples/nonfree/kampo.txt.ref",
    "chars": 2797,
    "preview": "平成 ™— 年 › 月 ™œ 日 金曜日\n\n官\n\n報\n\n第 ›Ÿ˜ž 号\n\n›\n\n政令第百四十九号\n道路交通法施行令の一部を改正する政令\n内閣は、道路交通法の一部を改正する法律(平成十九年法律第九十号)の一部の施行に伴い、並び\nに道路交通法"
  },
  {
    "path": "samples/nonfree/kampo.xml.ref",
    "chars": 242796,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<pages>\n<page id=\"1\" bbox=\"0.000,0.000,595.000,842.000\" rotate=\"0\">\n<textbox id="
  },
  {
    "path": "samples/nonfree/naacl06-shinyama.html.ref",
    "chars": 6883,
    "preview": "<html><head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n</head><body>\n<span style=\"position:abs"
  },
  {
    "path": "samples/nonfree/naacl06-shinyama.txt.ref",
    "chars": 3470,
    "preview": "Preemptive Information Extraction using Unrestricted Relation Discovery\n\nYusuke Shinyama\n\nSatoshi Sekine\n\nNew York Unive"
  },
  {
    "path": "samples/nonfree/naacl06-shinyama.xml.ref",
    "chars": 305774,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<pages>\n<page id=\"1\" bbox=\"0.000,0.000,595.000,842.000\" rotate=\"0\">\n<textbox id="
  },
  {
    "path": "samples/nonfree/nlp2004slides.html.ref",
    "chars": 1182,
    "preview": "<html><head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n</head><body>\n<span style=\"position:abs"
  },
  {
    "path": "samples/nonfree/nlp2004slides.txt.ref",
    "chars": 85,
    "preview": "コンパラブルな新聞記事からの\n固有表現の発見\n\n新山 祐介\n関根 聡\nComputer Science Department\nNew York University\n\n\f"
  },
  {
    "path": "samples/nonfree/nlp2004slides.xml.ref",
    "chars": 8479,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<pages>\n<page id=\"1\" bbox=\"0.000,0.000,800.000,600.000\" rotate=\"0\">\n<textbox id="
  },
  {
    "path": "samples/simple1.html.ref",
    "chars": 2013,
    "preview": "<html><head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n</head><body>\n<span style=\"position:abs"
  },
  {
    "path": "samples/simple1.txt.ref",
    "chars": 77,
    "preview": "Hello \n\nWorld\n\nHello \n\nWorld\n\nH e l l o \n\nW o r l d\n\nH e l l o \n\nW o r l d\n\n\f"
  },
  {
    "path": "samples/simple1.xml.ref",
    "chars": 6188,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<pages>\n<page id=\"1\" bbox=\"0.000,0.000,612.000,792.000\" rotate=\"0\">\n<textbox id="
  },
  {
    "path": "samples/simple2.html.ref",
    "chars": 823,
    "preview": "<html><head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n</head><body>\n<span style=\"position:abs"
  },
  {
    "path": "samples/simple2.txt.ref",
    "chars": 1,
    "preview": "\f"
  },
  {
    "path": "samples/simple2.xml.ref",
    "chars": 443,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<pages>\n<page id=\"1\" bbox=\"0.000,0.000,612.000,792.000\" rotate=\"0\">\n<line linewi"
  },
  {
    "path": "samples/simple3.html.ref",
    "chars": 1245,
    "preview": "<html><head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n</head><body>\n<span style=\"position:abs"
  },
  {
    "path": "samples/simple3.txt.ref",
    "chars": 40,
    "preview": "World\n\norld\n\nあいうえおあいうえお W\n\nHelloHello\n\n\f"
  },
  {
    "path": "samples/simple3.xml.ref",
    "chars": 3686,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<pages>\n<page id=\"1\" bbox=\"0.000,0.000,612.000,792.000\" rotate=\"0\">\n<textbox id="
  },
  {
    "path": "setup.py",
    "chars": 1696,
    "preview": "#!/usr/bin/env python3\nfrom setuptools import setup\nfrom pdfminer import __version__\n\nDESC = \"\"\"pdfminer3k is a Python 3"
  },
  {
    "path": "tests/__init__.py",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "tests/layout_test.py",
    "chars": 3314,
    "preview": "import os.path as op\n\nfrom pdfminer.layout import *\nfrom .util import eq_, TestData, pages_from_pdf, extract_textboxes\n\n"
  },
  {
    "path": "tests/parser_test.py",
    "chars": 4009,
    "preview": "import io\n\nfrom pdfminer.psparser import PSBaseParser, PSStackParser, KWD, LIT, PSEOF\nfrom .util import eq_\n\nTESTDATA = "
  },
  {
    "path": "tests/samples_test.py",
    "chars": 2197,
    "preview": "# Run pdf2txt on files in 'samples' (on the same level as this unit's parent folder) and compare\n# them with their respe"
  },
  {
    "path": "tests/support_test.py",
    "chars": 3035,
    "preview": "# test for support units around pdfminer\n\nfrom pytest import raises\n\nfrom pdfminer import arcfour, ascii85, lzw, rijndae"
  },
  {
    "path": "tests/util.py",
    "chars": 1813,
    "preview": "import py.path\n\nfrom pdfminer.pdfparser import PDFParser, PDFDocument\nfrom pdfminer.pdfinterp import PDFResourceManager,"
  },
  {
    "path": "tools/conv_afm.py",
    "chars": 1339,
    "preview": "#!/usr/bin/env python3\nimport sys\nimport fileinput\n\ndef main(argv):\n    fonts = {}\n    for line in fileinput.input():\n  "
  },
  {
    "path": "tools/conv_cmap.py",
    "chars": 4817,
    "preview": "#!/usr/bin/env python3\nimport sys\nimport os.path\nimport gzip\nimport pickle as pickle\n\ndef process_cid2code(fp, check_cod"
  },
  {
    "path": "tools/conv_glyphlist.py",
    "chars": 649,
    "preview": "#!/usr/bin/env python3\nimport sys\nimport fileinput\n\ndef main(argv):\n    state = 0\n    for line in fileinput.input():\n   "
  },
  {
    "path": "tools/dumppdf.py",
    "chars": 6919,
    "preview": "#!/usr/bin/env python3\n#\n# dumppdf.py - dump pdf contents in XML format.\n#\n#  usage: dumppdf.py [options] [files ...]\n# "
  },
  {
    "path": "tools/latin2ascii.py",
    "chars": 2297,
    "preview": "#!/usr/bin/env python3\n#\n#  latin2ascii.py - converts latin1 characters into ascii.\n#\n\nimport sys\n\n\"\"\" Mappings from Lat"
  },
  {
    "path": "tools/pdf2html.cgi",
    "chars": 7169,
    "preview": "#!/usr/bin/python -O\n#\n# pdf2html.cgi - Gateway script for converting PDF into HTML.\n#\n# Security consideration for publ"
  },
  {
    "path": "tools/pdf2txt.py",
    "chars": 3423,
    "preview": "#!/usr/bin/env python3\nimport sys\nimport io\nimport getopt\n\nfrom pdfminer.pdfinterp import PDFResourceManager, process_pd"
  },
  {
    "path": "tools/pdfexplore.py",
    "chars": 7420,
    "preview": "import cmd, sys\nfrom argparse import ArgumentParser\n\nfrom pdfminer.pdftypes import PDFObjRef\nfrom pdfminer.psparser impo"
  },
  {
    "path": "tools/prof.py",
    "chars": 823,
    "preview": "#!/usr/bin/env python3\nimport sys\n\ndef prof_main(argv):\n    import getopt\n    import hotshot, hotshot.stats\n    def usag"
  },
  {
    "path": "tools/runapp.py",
    "chars": 3548,
    "preview": "#!/usr/bin/env python3\n##\n##  WebApp class runner\n##\n##  usage:\n##    $ runapp.py pdf2html.cgi\n##\n\nimport sys\nimport url"
  }
]

About this extraction

This page contains the full source code of the jaepil/pdfminer3k GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 89 files (9.6 MB), approximately 2.5M tokens, and a symbol index with 671 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!